@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

:is(ul, ol)[class] {
  list-style: "";
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.46;
}

button,
input,
label {
  line-height: 1.1;
}

a[class] {
  will-change: opacity;
  text-decoration: none;
}

a:not([class]) {
  display: inline-block;
  will-change: opacity;
  color: #3666CB;
  text-decoration-skip-ink: auto;
}

a.disabled {
  cursor: auto;
  pointer-events: none;
  opacity: 0.5;
}

a:not(.disabled):hover {
  opacity: 0.7;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  pointer-events: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

button:not(disabled, .disabled) {
  cursor: pointer;
}

p {
  line-height: 2;
}

a,
button {
  color: var(--clr-primary);
  transition: all .3s;
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: transparent;
}

iframe,
iframe:focus {
  outline: none;
}

table {
  border-collapse: collapse;
}

td,
math,
time[datetime*=":"] {
  font-variant-numeric: tabular-nums lining-nums;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  margin: -1px;
  padding: 0;
  border: 0;
  clip-path: inset(50%);
  word-wrap: normal !important;
}

img {
  pointer-events: none;
}

@font-face {
  font-family: 'CCArtSans';
  font-weight: 700;
  font-style: normal;
  src: url('../../fonts/CCArtSans-Bold.otf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Sawarabi Gothic';
  font-weight: 400;
  font-style: normal;
  src: url('../../fonts/SawarabiGothic-Regular.ttf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Oswald';
  font-weight: 400;
  font-style: normal;
  src: url('../../fonts/Oswald-Regular.ttf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  font-weight: 500;
  font-style: normal;
  src: url('../../fonts/Jost-Medium.ttf') format('opentype');
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  font-weight: 600;
  font-style: normal;
  src: url('../../fonts/Jost-SemiBold.ttf') format('opentype');
  font-display: swap;
}

:root {
  --clr-neutral-100: #fff;
  --clr-neutral-200: #efefef;
  --clr-neutral-300: #eaeaea;
  --clr-neutral-400: #ededff;
  --clr-neutral-500: #edf5fc;
  --clr-neutral-600: #ddefff;
  --clr-neutral-700: #666;
  --clr-neutral-800: #999;
  --clr-neutral-900: #333;

  --clr-primary: #2b2f31;
  --clr-purple-400: #663CC4;
  --clr-red-400: #FF0000;

  --clr-border-400: #aaa;
  --clr-border-500: #ccc;
  --clr-border-600: #333;

  --clr-link: #2680EA;

  --clr-pink-200: #ff89B5;

  --clr-blue-500: #4fc0e0;
  --clr-bg-menu: #f0f0f0;
  --clr-gray-700: #707070;
  --font-primary: "Sawarabi Gothic", "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "メイリオ", "ＭＳ Ｐゴシック", "Osaka‐等幅", sans-serif;
  --font-secondary: "Jost", -apple-system, system-ui, sans-serif;
  --font-quaternary: "Oswald", -apple-system, system-ui, sans-serif;
}

body {
  position: relative;
  height: 100%;
  line-height: 1.5;
  color: var(--clr-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  background-color: var(--clr-background);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  word-break: break-all;
}

body.is-index::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% - 46%);
  height: 18%;
  width: 600px;
  height: 1090px;
  content: '';
  background-image: url(/img/index/bg_footer_right.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  aspect-ratio: 1;
}

body:has(main.is-small-content) {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
}

body.is-hamburger-open {
  overflow: hidden;
}

body:not(.is-bg-black) {
  --primary-text-color: var(--clr-primary);
  --primary-border-color: var(--clr-primary);
}

.ff-primary {
  font-family: var(--font-primary);
}

.ff-secondary {
  font-family: var(--font-secondary);
}

.ff-quaternary {
  font-family: var(--font-quaternary);
}

/* Color
  --------------------------------------------------------*/
.bg-white {
  background-color: var(--clr-neutral-100);
}

.clr-white {
  color: var(--clr-neutral-100);
}

.clr-primary {
  color: var(--clr-primary);
}

.clr-red-400 {
  color: var(--clr-red-400);
}

/* Layout
--------------------------------------------------------*/
main {
  padding-top: 82px;
  padding-bottom: 200px;
}

.sec-wrap {
  --max-width: 1200px;
  --padding: 80px;
  width: min(var(--max-width), 100% - var(--padding));
  margin-inline: auto;
}

.sec-wrap.full-wrap {
  --max-width: 100%;
  --padding: 12.152vw;
}

.sec-wrap.no-side-column {
  --max-width: 760px;
}

.sec-wrap.w-986 {
  --max-width: 986px;
}

.sec-wrap.w-996 {
  --max-width: 996px;
}

.sec-wrap.w-1000 {
  --max-width: 1000px;
}

.pt-100 {
  padding-top: 100px;
}

.is-bg-black {
  border-bottom: 1px solid var(--clr-neutral-100);
  background-color: var(--clr-primary);
}

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

.fs18 {
  font-size: 18px;
}

.fs16 {
  font-size: 16px;
}

.fs14 {
  font-size: 14px;
}

.fs12 {
  font-size: 12px;
}

.fw-regular {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-bold {
  font-weight: 700;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

.grid-auto-col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(var(--min-col-size, 280px), 100%), 1fr));
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-4-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.col-gap-10 {
  column-gap: 10px;
}

.col-gap-15 {
  column-gap: 15px;
}

.col-gap-20 {
  column-gap: 20px;
}

.col-gap-25 {
  column-gap: 25px;
}

.col-gap-30 {
  column-gap: 30px;
}

.col-gap-40 {
  column-gap: 40px;
}

.col-gap-45 {
  column-gap: 45px;
}

.col-gap-60 {
  column-gap: 60px;
}

.col-gap-80 {
  column-gap: 80px;
}

.row-gap-10 {
  row-gap: 10px;
}

.row-gap-20 {
  row-gap: 20px;
}

.row-gap-30 {
  row-gap: 30px;
}

.row-gap-40 {
  row-gap: 40px;
}

.row-gap-45 {
  row-gap: 45px;
}

.row-gap-60 {
  row-gap: 60px;
}

.mt-60 {
  margin-top: 60px;
}

/* ===== Flex Utilities ===== */
.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.items-start {
  align-items: flex-start;
}

.items-center {
  align-items: center;
}

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.pcnone {
  display: none;
}

.sticky-side {
    position: sticky;
    top: 15%;
}

/* ------------ Lists ------------- */
.sec-ttl {
  line-height: 1.4;
  font-family: var(--font-secondary);
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.sub-ttl {
  font-size: 30px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
}

.date-badge-box {
  display: inline-flex;
  min-width: 147px;
  align-items: center;
}

.event-content .date-badge-box {
    min-width: 150px;
}

.date-badge-box time {
  font-family: var(--font-quaternary);
}

.badge-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-block;
  min-width: 48px;
  height: 18px;
  margin-left: 20px;
  padding-inline: 10px;
  color: var(--clr-neutral-100);
  font-family: var(--font-secondary);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

.serect-live-badge {
  min-width: 116px;
  height: 33px;
  border: 1px solid transparent;
  color: var(--clr-neutral-100);
  font-family: var(--font-secondary);
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--clr-blue-500);
  line-height: 2;
}

.purple-badge {
  background-color: var(--clr-purple-400);
}

.black-badge {
  background-color: var(--clr-primary);
}

.blue-badge {
  background-color: var(--clr-blue-500);
}

.word-break,
.album-name {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* Category */
.ttl-wrap {
  padding-bottom: 20px;
  color: var(--primary-text-color);
  border-bottom: 1px solid var(--primary-border-color);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.sec-schedule .ttl-wrap {
  border-bottom: 0;
}

.ttl-wrap .cate-list {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 500;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.sec-disco .ttl-wrap .cate-list {
  gap: 10px;
}

.ttl-wrap .cate-item a {
  color: var(--primary-text-color);
  font-size: 18px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.sec-schedule .cate-list .cate-link,
.sec-disco .cate-list .cate-link {
  padding-inline: 15px;
  border-radius: 100vw;
  border: 1px solid var(--clr-primary);
}

.news-card:first-child {
  border-top: 1px solid var(--clr-primary);
}

.news-card {
  padding: 30px 20px;
  border-bottom: 1px solid var(--clr-primary);
  cursor: pointer;
  transition: background-color .5s;
}

.news-card:hover {
  background-color: var(--clr-bg-menu);
}

.news-card:hover .news-link {
  opacity: 1;
}

.news-card .news-link {
  display: flex;
  align-items: center;
  column-gap: 70px;
  word-break: break-word;
}

.news-ttl,
.blog-ttl {
  line-height: 1.5;
  font-size: 14px;
  flex: 1;
}

.sec-blog.sec-fc-new {
  background-color: transparent;
}

.sec-blog .date-badge-box time,
.sec-blog .news-ttl,
.sec-blog .pagination,
.sec-blog .pagination a {
  color: var(--clr-neutral-100);
}

.sec-blog .sec-ttl {
  color: var(--clr-blue-500);
}

.sec-blog .news-card:first-child {
  border-top: 1px solid var(--clr-neutral-100);
}

.sec-blog .news-card {
  border-bottom: 1px solid var(--clr-neutral-100);
}

.sec-blog .news-card:hover {
  background-color: var(--clr-gray-700);
}

.news-content {
  margin-top: 20px;
}

.sec-schedule .news-content {
  margin-top: unset;
}

.sec-schedule .event-fc-ttl {
  margin-bottom: 20px;
}

.sec-blog.blog-list .news-content .news-link {
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.like-count-div {
  display: flex;
  justify-content: center;
  column-gap: 10px;
}

.like-count-div img {
  display: inline-block;
}

.like-count-div span {
  font-family: var(--font-quaternary);
  color: var(--clr-neutral-100);
  padding-top: 4px;
}

.sec-schedule .event-fc-ttl .date-ttl {
  display: inline-block;
  min-width: 50px;
  line-height: 1.56;
  margin-right: 20px;
  font-family: var(--font-quaternary);
  font-size: 61px;
  font-weight: 400;
  text-align: right;
}

.sec-schedule .event-fc-ttl .year-ttl {
  font-family: var(--font-quaternary);
  font-size: 40px;
  font-weight: 400;
}

.sec-schedule .event-content+.event-content {
  margin-top: 50px;
}

/* Buttons
  --------------------------------------------------------*/
.btn {
  --btn-bg-clr: var(--clr-primary);
  --btn-border-clr: var(--clr-primary);
  --btn-font-clr: var(--clr-neutral-100);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  height: 43px;
  line-height: 1.5;
  padding: 10px 50px;
  border: 1px solid var(--btn-border-clr);
  border-radius: 100vw;
  color: var(--btn-font-clr);
  font-family: var(--font-secondary);
  background-color: var(--btn-bg-clr);
  cursor: pointer;
  transition: 0.5s background-color, 0.5s border-color, 0.5s color;
  letter-spacing: 1.6px;
}

.sec-contact .btn {
  border-radius: 4px;
  height: 56px;
  letter-spacing: 0;
  line-height: 1.7;
  font-weight: 400;
  font-family: var(--font-primary);
}

.btn:not(.disabled):is(:hover, :focus-visible, :active) {
  border-color: var(--btn-bg-clr);
  color: var(--btn-bg-clr);
  background-color: var(--btn-font-clr);
  outline: none;
  opacity: 1;
}

.btn-wrap {
  display: flex;
  margin-top: 40px;
  justify-content: center;
  gap: 20px;
}

form .btn-wrap,
.sec-monthly .btn-wrap {
  margin-top: 60px;
}

.btn-primary {
  flex: 0 1 280px;
}

.btn-secondary {
  --btn-bg-clr: var(--clr-gray-700);
  --btn-border-clr: var(--clr-neutral-700);
  --btn-font-clr: var(--clr-neutral-100);
  flex: 0 1 280px;
  font-weight: 400;
}

.btn-container {
  display: flex;
  justify-content: flex-end;
}

.btn-link {
  padding-top: 30px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 500;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.btn-icon::before {
  display: inline-block;
  width: 19px;
  height: 8px;
  background: url(/img/common/ico_arrow_right.svg) no-repeat center/cover;
  content: '';
}

.btn-link.clr-white {
  position: relative;
  color: var(--clr-neutral-100);
}

.btn-link.clr-white .btn-icon::before {
  background: url(/img/common/ico_arrow_right_white.svg) no-repeat center/cover;
}

/* Checkbox
  --------------------------------------------------------*/
input[type="checkbox"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  appearance: none;
}

.custom-checkbox {
  position: relative;
  padding-left: 24px;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 18px;
  height: 18px;
  margin: auto;
  border: 2px solid var(--clr-neutral-800);
  border-radius: 2px;
  content: '';
}

.custom-checkbox::after {
  position: absolute;
  top: 10px;
  left: 6px;
  width: 6px;
  height: 12px;
  margin-top: -7px;
  transform: rotate(45deg);
  content: '';
  border-right: 3px solid var(--clr-neutral-100);
  border-bottom: 3px solid var(--clr-neutral-100);
  opacity: 0;
}

input[type="checkbox"]:checked+.custom-checkbox::after,
input[type="checkbox"]:focus-visible+.custom-checkbox::after {
  opacity: 1;
}

input[type="checkbox"]:checked+.custom-checkbox::before,
input[type="checkbox"]:focus-visible+.custom-checkbox::before {
  border-color: transparent;
  background: var(--clr-blue-500);
}

/* Header
  --------------------------------------------------------*/
.is-index .header-wrap.hide {
  transform: translateY(-100%);
}

.header-wrap {
  position: fixed;
  width: 100%;
  transform: translateY(0);
  z-index: 999;
  transition: transform 0.5s ease-in-out;
}

.main-header {
  display: flex;
  background-color: var(--clr-neutral-100);
  justify-content: space-between;
  align-items: center;
  padding-right: 72px;
}

.is-hamburger-open .main-header {
  border-bottom: unset;
  position: relative;
  z-index: 1000;
}

.is-hamburger-open .header-inner {
  border-bottom: unset;
}

.is-hamburger-open .header-inner .main-logo {
  max-width: 175px;
}

.header-inner .main-logo {
  max-width: 332px;
  transition: max-width 0.3s ease-in-out, opacity .5s;
}

.logged-in .nav-official {
  justify-content: flex-end;
}

.main-header .header-inner .header-nav-pc .nav-fc {
  margin-top: 10px;
  justify-content: flex-end;
}

.main-header .header-inner .header-nav-pc .nav-fc li a {
  color: var(--clr-neutral-800);
}

.hamburger-menu {
  display: none;
}

.head-ttl {
  font-size: 56px;
  font-weight: 300;
}

.header-nav-wrap {
  display: flex;
  justify-content: space-between;
  column-gap: 55px;
}

.header-nav-pc .header-social-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav-pc .header-social-list li {
  display: flex;
  align-items: center;
}

.header-social-item .icon-youtube {
  height: 26px;
}

/* Footer
  --------------------------------------------------------*/
.main-footer {
  position: relative;
  padding-bottom: 40px;
  color: var(--clr-neutral-100);
  font-size: 14px;
  font-weight: 400;
  background-color: var(--clr-primary);
}

.main-footer a {
  color: var(--clr-neutral-100);
}

.main-footer .footer-nav-wrap {
  display: flex;
  position: relative;
  padding-top: 40px;
  z-index: 99;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.main-footer .footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.main-footer .footer-social-list {
  display: flex;
  gap: 20px;
}

.main-footer .footer-social-list svg.icon-footer-tiktok {
  filter: unset;
}

.main-footer .footer-copy {
  line-height: 1.2;
  margin-top: 40px;
  color: var(--clr-neutral-800);
}

/* Pagination
  --------------------------------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-primary);
  gap: 20px;
  font-weight: 400;
  padding-top: 50px;
}

.pagination> :not(.pagi-ico) {
  opacity: 0.38;
}

.pagination .pagi-active {
  opacity: 1;
}

.sec-blog .pagination .pagi-ico {
  filter: invert(1);
}

.back-to-list-wrap {
  display: flex;
  padding-top: 50px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--clr-border-500);
}

.back-to-list-wrap a {
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  align-items: baseline;
  gap: 5px;
}

.hamburger-menu {
  display: block;
  position: fixed;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  top: 0;
  padding-top: 84px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
}

.hamburger-btn {
  display: block;
  position: relative;
  width: 52px;
  height: 24px;
  border: unset;
  z-index: 1000;
  background-color: unset;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.hamburger-btn span {
  display: block;
  position: absolute;
  width: 52px;
  height: 1px;
  margin: auto;
  background-color: var(--clr-primary);
  -webkit-transition: all .3s;
  transition: all .3s;
  inset: 0;
}

.hamburger-btn span:nth-child(1) {
  -webkit-transform: translateY(-12px);
  transform: translateY(-12px);
}

.hamburger-btn span:nth-child(3) {
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
}

.is-hamburger-open .hamburger-btn span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-40deg);
}

.is-hamburger-open .hamburger-btn span:nth-child(2) {
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  opacity: 0;
}

.is-hamburger-open .hamburger-btn span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  transform: rotate(40deg);
}

.is-hamburger-open .hamburger-menu-inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.is-hamburger-open .hamburger-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .3s ease-in-out;
}

.hamburger-menu .page-links {
  max-width: 150px;
  margin-inline: auto;
}

.hamburger-menu .upper-nav {
  background-color: var(--clr-bg-menu);
}

.hamburger-menu .lower-nav {
  background-color: var(--clr-primary);
}

.hamburger-menu .cmn-nav-list {
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.hamburger-menu .cmn-nav-list li+li {
  padding-top: 20px;
}

.hamburger-menu .lower-nav .cmn-nav-list .cmn-nav-link {
  color: var(--clr-blue-500);
}

.hamburger-menu-items {
  display: grid;
  grid-template-rows: auto auto;
  min-height: 100%;
  background-color: var(--clr-primary);
}

.hamburger-menu-items .upper-nav,
.hamburger-menu-items .lower-nav {
  padding-block: 100px;
  display: flex;
  align-items: center;
}

/* ------- Contact ------- */
.ttl-with-line {
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
  border-bottom: 2px solid var(--clr-primary);
}

.ttl-with-line strong {
  font-size: 32px;
}

.ttl-with-line small {
  font-size: 24px;
}

.ttl-with-line.ttl-lg {
  font-size: 48px;
}

.contact-ttl-wrap {
  margin-bottom: 50px;
}

.sec-contact.business-comf .contact-ttl-wrap {
  margin-bottom: unset;
}

.contact-ttl-wrap .ttl-wrap {
  margin-bottom: 30px;
}

.contact-ttl-wrap .ttl-info {
  display: flex;
  gap: 50px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.contact-ttl-wrap .contact-item {
  letter-spacing: 1.8px;
  cursor: pointer;
  padding-inline: 5px;
  width: fit-content;
}

.sec-faq .categories a.active,
.sec-faq .categories a:hover,
.contact-ttl-wrap .contact-item.active,
.contact-item:not(.active):hover,
.cate-list .cate-link:hover,
.cate-list .cate-link.active {
  background: var(--clr-primary);
  color: var(--clr-neutral-100);
  opacity: 1;
}

.contact-ttl-wrap .contact-item.active:hover,
.sec-faq .categories a.active:hover,
.cate-list .cate-link.active:hover {
  opacity: 0.7;
}

.video-wrapper.logged-in .player-content-ttl {
  display: none;
}

.video-wrapper .player-content-ttl {
  position: absolute;
  inset: 0;
  font-size: 26px;
  line-height: 1.5;
  color: var(--clr-neutral-100);
  font-family: var(--font-secondary);
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .5s;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  cursor: pointer;
}

.video-wrapper {
  position: relative;
}

.video-wrapper.logged-in::before {
  content: "";
  position: absolute;
  inset: 0;
  transition: background-color 0.3s ease;
  z-index: 1;
  cursor: pointer;
}

.video-wrapper.logged-in:hover::before {
  background-color: rgba(255, 255, 255, 0.193);
}

.video-wrapper:hover .player-content-ttl {
  opacity: 1;
}

#payment_type_annual .wSelect-options,
#payment_type_renewal .wSelect-options {
  height: 160px !important;
}

#payment_type_monthly .wSelect-options {
  height: 130px !important;
}

#convenience_fields .wSelect-options {
  height: 260px !important;
}

.general-contact-form .wSelect-options {
  height: 330px !important;
  padding: 20px 30px;
}

.password_rule {
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

.mb100 {
  margin-bottom: 100px !important;
}

@media (max-width: 768px) {
  .sp-text-left {
    text-align: left;
  }

  body.is-hamburger-open {
    position: fixed;
    overflow-y: hidden;
  }

  .is-hamburger-open .hamburger-menu {
    transition: none;
  }

  .header-nav-pc .header-social-list {
    margin-top: 30px;
    gap: 21px;
    align-items: center;
  }

  .hamburger-menu {
    padding-top: 61px;
  }

  .sec-wrap {
    --max-width: 600px;
    --padding: 40px;
  }

  .sec-wrap.full-wrap {
    --padding: 40px;
  }

  main {
    padding-top: 61px;
  }

  .spnone {
    display: none !important;
  }

  .pcnone {
    display: block;
  }

  .main-footer .footer-nav-wrap {
    align-items: start;
    flex-direction: column;
    padding-top: 65px;
  }

  .main-footer .footer-nav-list {
    flex-direction: column;
    gap: 20px;
  }

  /* menu */
  .main-header {
    padding-right: 27px;
  }

  .main-header .main-logo img {
    width: 154px;
  }

  .hamburger-btn {
    width: 39px;
    height: 20px;
  }

  /* List */
  .news-card .news-link {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .news-ttl,
  .blog-ttl {
    letter-spacing: 1.4px;
  }

  .news-card {
    padding: 20px;
  }

  body.is-index::after {
    position: absolute;
    bottom: 502px;
    right: 0;
    content: '';
    background-image: url(/img/index/bg_footer_sp.png);
    background-position: top right;
    width: 246px;
    height: 655px;
  }

  .sec-wrap.w-996 {
    --max-width: 600px;
  }

  .nav-ttl {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    margin-bottom: 20px;
  }

  .nav-ttl .cate-list {
    gap: 30px;
  }

  .ttl-wrap {
    flex-direction: column;
  }

  .ttl-wrap .cate-list {
    flex-shrink: 1;
  }

  .sec-disco .ttl-wrap .cate-item:first-child {
    flex-basis: 100%;
  }

  .sec-schedule .sec-ttl {
    margin-bottom: unset;
  }

  .sec-schedule .event-fc-ttl .date-ttl {
    margin-right: 13px;
    font-size: 48px;
  }

  .sec-schedule .event-fc-ttl .year-ttl {
    font-size: 30px;
  }

  /* ----- Contact ----- */
  .contact-ttl-wrap {
    margin-bottom: 40px;
  }

  .contact-ttl-wrap .ttl-wrap {
    margin-bottom: 50px;
  }

  .contact-ttl-wrap .ttl-info {
    flex-direction: column;
    gap: 20px;
  }

  .hamburger-btn span {
    width: 39px;
  }

  .main-footer .footer-copy {
    margin-top: 20px;
  }

  .btn:not(.disabled):is(:hover, :focus-visible, :active) {
    border-color: var(--btn-font-clr);
    color: var(--btn-font-clr);
    background-color: var(--btn-bg-clr);
  }
}

@media (max-width: 390px) {
  .btn-wrap {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .password_rule span {
    font-size: 3vw;
  }
}
