@charset "utf-8";
/*==================================
SWITCH DOT LINE WCS-CSS 4.1
https://www.switchdotline.net/
Edit:2024 -
LastUpdate:20240711
==================================*/
/* FONTS */
/*
Source Han Sans JP Medium
font-family: "source-han-sans-japanese", sans-serif;
font-weight: 500;
font-style: normal;

Source Han Sans JP Bold
font-family: "source-han-sans-japanese", sans-serif;
font-weight: 700;
font-style: normal;

DNPShueiMinPr6N M
font-family: "dnp-shuei-mincho-pr6n", sans-serif;
font-weight: 500;
font-style: normal;

DNPShueiMinPr6N B
font-family: "dnp-shuei-mincho-pr6n", sans-serif;
font-weight: 600;
font-style: normal;

Scandia Medium
font-family: "scandia-web", sans-serif;
font-weight: 500;
font-style: normal;

Scandia Bold
font-family: "scandia-web", sans-serif;
font-weight: 700;
font-style: normal;

Scandia Bold Italic
font-family: "scandia-web", sans-serif;
font-weight: 700;
font-style: italic;

PF Fuel Decay
font-family: "pf-fuel-decay", sans-serif;
font-weight: 400;
font-style: normal;

Epicursive Script Regular
font-family: "epicursive", sans-serif;
font-weight: 400;
font-style: normal;
*/

/*==================================
*** CORE ***
==================================*/
html {
  font-size: 14px;
  overflow-x: hidden;
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: #030709;
  line-height: 160%;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #edece6;
  text-align: center;
  letter-spacing: 0.02em;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
  min-height: -webkit-fill-available;
}

a img {
  border: none;
}

article {
  display: block;
  padding: 0;
  margin: 0;
}

section {
  margin: 0;
}

/*==================================
CSS ANIMATION
==================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*==================================
EMBED MOV RATIO
==================================*/
/* EMBED VIDEO */
.embed_video {
  margin: 15px auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*==================================
SPLIDE
==================================*/
/* SLIDE-FULLSCREEN */
.slide-fullscreen .slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(90vh - 30px);
  padding: 0;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 8s 1s linear;
  transform: scale(1.04);
}

.slide-fullscreen .splide__slide[class*="-active"] .slide {
  transform: scale(1);
}

.slide-fullscreen .splide__slide.anm-started .slide_inner {
  animation-name: slide-fadeIn;
}

.slide-fullscreen .splide__slide.anm-finished .slide_inner {
  animation-name: slide-fadeOut;
}

/* SLIDE MEDIA */
.slide-media_slide_voice,
.slide-media_slide_movie {
  margin: 0 0 45px 0;
}

.slide-media_slide_voice .splide__slide img,
.slide-media_slide_movie .splide__slide img {
  width: 86vw;
}

/* SLIDE PHOTO GALLERY */
.slide-gallery {
  height: 0;
  padding-bottom: 100%;
  margin: 0 auto;
  background-color: #030709;
  background-image: url(../common/mesh.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  position: relative;
  overflow: hidden;
}

.slide-gallery .splide {
  position: absolute;
  height: 100%;
}

.slide-gallery .splide__track {
  height: 100%;
  max-height: 100%;
  min-height: 100%;
}

.slide-gallery .splide__slide {
  display: flex;
  justify-content: center;
}

.slide-gallery .splide__slide img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  align-self: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

/* NAVIGATION */
.splide__pagination {
  justify-content: flex-start !important;
  padding: 0 !important;
  margin: 0 auto !important;
  bottom: -20px !important;
  width: 100% !important;
}

.splide__pagination__page {
  width: 30px !important;
  height: 5px !important;
  margin: 0 10px 0 0 !important;
  border-radius: 0 !important;
  background: #edece6 !important;
  opacity: 0.3 !important;
  transition: 0.4s !important;
}

.splide__pagination__page.is-active,
.splide__pagination__page:hover {
  background: #6adbc7 !important;
  transform: scale(1) !important;
  opacity: 1 !important;
}

.slide-media_slide_voice .splide__pagination,
.slide-media_slide_movie .splide__pagination {
  width: 86vw !important;
}

/*==================================
GALLERY 3列
==================================*/
.grid_gallery ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.grid_gallery ul li {
  width: calc(100% / 3);
  padding: 0;
  margin: 0;
}

.grid_gallery ul li a {
  display: block;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.grid_gallery ul li a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 5px solid rgba(0, 0, 0, 0);
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

.grid_gallery ul li a:hover:after,
.grid_gallery ul li a:active:after {
  background-color: rgba(255, 255, 255, 0.5);
  border: 5px solid #e71280;
}

.grid_gallery ul li a img {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

/*==================================
GALLERY ICON
==================================*/
.grid_gallery_icon ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: center;
  padding: 0;
  margin: -10px -10px 0 -10px;
  list-style: none;
}

.grid_gallery_icon ul li {
  width: calc(100% / 3);
  padding: 10px;
  margin: 0;
}

.grid_gallery_icon input[type="radio"] {
  display: none;
}

.grid_gallery_icon ul li label {
  display: block;
  margin: 0 auto;
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.4s;
}

.grid_gallery_icon ul li label:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 5px solid rgba(0, 0, 0, 0);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 45%;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

.grid_gallery_icon ul li label:hover:after,
.grid_gallery_icon ul li label:active:after {
  background-color: rgba(255, 255, 255, 0.5);
  border: 5px solid #e71280;
}

.grid_gallery_icon input[type="radio"]:checked + label:after {
  background-image: url(../common/icon-checked.svg);
  background-color: rgba(231, 18, 128, 0.8);
  border: 5px solid rgba(0, 0, 0, 0);
}

.grid_gallery_icon ul li label img {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 50%;
}

/*==================================
INTRO ANIMATION
==================================*/
#intro_ani {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background-color: #030709;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
  animation: fixed 1.6s ease-in-out 0s 1 forwards;
}

#intro_ani .logo_fade {
  width: 100vw;
  height: 10px;
  background-image: url(../common/logo-26ers_site.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  animation: logo_fade 1.2s ease-in-out 0s 1 forwards;
}

/* intro_ani */
@keyframes fixed {
  0%,
  80% {
    opacity: 1;
  }
  90% {
    z-index: 200;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

@keyframes logo_fade {
  0%,
  100% {
    opacity: 0;
  }
  30%,
  80% {
    opacity: 1;
  }
}

/*==================================
LAYOUT - EDIT
==================================*/
#content-area {
  background-image: url(../common/bg-graphic.jpg);
  background-position: center;
  background-repeat: repeat;
  background-size: 150%;
  position: relative;
  top: 0;
}

article {
  padding: 45px 0 60px 0;
}

article#page-index {
  padding: 0;
}

section {
  padding: 60px 0 90px 0;
  margin: 45px 0 15px 0;
  /* background-color: rgba(3, 7, 9, 0.96); */
  background-color: rgba(3, 7, 9, 1);
  position: relative;
}

section:before,
footer:before {
  content: "";
  display: block;
  width: 100vw;
  height: 9px;
  background-image: url(../common/dotline-color.png);
  background-position: center top;
  background-repeat: repeat;
  background-size: 10px;
  position: absolute;
  left: 0;
  top: 0;
}

section:after {
  content: "";
  display: block;
  width: 100vw;
  height: 9px;
  background-image: url(../common/dotline-color.png);
  background-position: center top;
  background-repeat: repeat;
  background-size: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.device_width {
  width: 86vw;
  padding: 0;
  margin: 0 auto;
  text-align: left;
}

/*==================================
FIXED HEADER
==================================*/
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 60px;
  background-color: rgba(3, 7, 9, 0.93);
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  transition: 0.4s;
  font-family: "scandia-web", sans-serif;
  font-weight: 500;
  font-style: normal;
}

header a {
  color: #d0e712;
}

header.header_bg {
  background-color: rgba(3, 7, 9, 1);
  border-bottom: 1px solid #5c5c5c;
}

/* HEAD LOGO */
header #head_logo {
  display: block;
  width: 60px;
  height: 60px;
  padding: 0;
  background-image: url(../common/logo-26ers.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 64%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

/* NAV */
header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 60px;
  position: absolute;
  right: 90px;
  top: 0;
}

header#header-after nav {
  right: 60px;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

header nav ul li {
  display: block;
  padding: 0;
  margin: 0;
  position: relative;
}

header nav ul li a,
header nav ul li.member_id {
  display: inline-block;
  height: 30px;
  padding: 0 15px;
  color: #d0e712;
  line-height: 30px;
  font-weight: 700;
  font-style: italic;
  position: relative;
  transition: 0.4s;
}

header nav ul li.member_id {
  font-size: 1.1rem;
}

header nav ul li a:hover {
  text-decoration: none;
  color: #6adbc7;
}

header nav ul li a:after {
  content: "";
  display: block;
  width: 10px;
  height: 30px;
  background-image: url(../common/slash_left-normal.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -5px;
  top: 0;
}

header nav ul li:last-of-type a:after {
  background: none;
}

header nav ul li a.btn-head_imp {
  padding: 0 16px 0 20px;
  margin-right: 5px;
  background-color: #d0e712;
  color: #030709;
  transition: 0.4s;
}

header nav ul li a.btn-head_imp:after {
  content: "";
  width: 9px;
  height: 30px;
  border-top: 30px solid #d0e712;
  border-right: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: -9px;
  top: 0;
  transition: 0.4s;
}

header nav ul li a:hover.btn-head_imp {
  background-color: #6adbc7;
}

header nav ul li a:hover.btn-head_imp:after {
  border-top-color: #6adbc7;
}

/* header nav ul li .dps_num {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
  background-color: #e71280;
  position: absolute;
  left: -30px;
  top: 0;
} */

/* MENU ICON */
header #menu_icon {
  display: block;
  width: 50px;
  height: 60px;
  background-color: #e71280;
  background-image: url(../common/icon-menu.svg);
  background-position: right 16px center;
  background-repeat: no-repeat;
  background-size: 24px;
  position: fixed;
  right: 0;
  top: 0;
  transition: 0.4s;
  cursor: pointer;
}

header #menu_icon:before {
  content: "";
  display: block;
  width: 17px;
  height: 60px;
  border-bottom: 60px solid #e71280;
  border-left: 17px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: 50px;
  top: 0;
  transition: 0.4s;
}

header #menu_icon:hover {
  background-color: #6adbc7;
}

header #menu_icon:hover:before,
header #menu_icon:active:before {
  border-bottom: 60px solid #6adbc7;
}

/*==================================
FOOTER
==================================*/
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 45px 7vw 60px 7vw;
  margin: 45px 0 0 0;
  color: #edece6;
  background-color: #030709;
  position: relative;
}

footer a {
  color: #edece6;
}

footer ul.link_list {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 15px 0;
  list-style: none;
  text-align: left;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
}

footer ul.link_list li a {
  display: inline-block;
  padding: 0 0 5px 0;
  margin: 10px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  text-decoration: none;
}

footer ul.link_list li a:hover,
footer ul.link_list li a:active {
  border-bottom: 2px solid #6adbc7;
}

footer .credit {
  display: block;
  padding: 0;
  margin: 0;
  text-align: left;
  font-size: 0.96rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 500;
  font-style: normal;
}

footer .credit .site_logo {
  display: block;
  width: 86vw;
  height: 10px;
  padding: 0;
  margin: 0 0 8px 0;
  background-image: url(../common/logo-26ers_site.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
}

footer .credit .copyright {
  color: #9c9c9c;
  padding: 0;
  margin: 0;
  font-size: 0.72rem;
}

footer .link_official {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 90px;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  right: 7vw;
  bottom: 60px;
}

footer .link_official .logo-flow a {
  display: block;
  width: 70px;
  height: 24px;
  padding: 0;
  margin: 0 0 15px 0;
  background-image: url(../common/logo-flow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer .link_official .logo-flow a:hover {
  background-image: url(../common/logo-flow_color.svg);
}

footer .link_official .logo-26ers a {
  display: block;
  width: 45px;
  height: 45px;
  padding: 0;
  margin: 0;
  background-image: url(../common/logo-26ers.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer .link_official .logo-26ers a:hover {
  background-image: url(../common/logo-26ers_color.svg);
}

/*==================================
INDEX BANNER
==================================*/
#index_banner {
  padding: 9px 0;
  margin: 0 0 15px 0;
  background-color: #030709;
}

.slide-index_banner .splide__slide {
  opacity: 0.3;
}

.slide-index_banner .is-active {
  opacity: 1;
}

/*==================================
ENTRY PANEL LIST&GRID
==================================*/
.panel_list,
.panel_grid {
  display: block;
  margin: 0;
}

.panel_list .panel_item,
.panel_grid .panel_item {
  display: block;
  padding: 0;
  margin: 0;
}

.panel_list .panel_item a,
.panel_grid .panel_item a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  padding: 0 0 45px 0;
  color: #edece6;
  transition: 0.4s;
}

/* #index_news .panel_list .panel_item a {
  padding: 20px 0 30px 0;
  border-top: 1px solid #3a3e35;
} */

.panel_list .panel_item a:hover,
.panel_list .panel_item a:active,
.panel_grid .panel_item a:hover,
.panel_grid .panel_item a:active {
  color: #6adbc7;
  text-decoration: none;
}

.panel_list .panel_item-thm,
.panel_grid .panel_item-thm {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 20px 0;
  position: relative;
}

.panel_grid a .panel_item-thm:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

.panel_grid a:hover .panel_item-thm:after,
.panel_grid a:active .panel_item-thm:after {
  background-color: rgba(255, 255, 255, 0.1);
}

.panel_list .panel_detail,
.panel_grid .panel_detail {
  width: 100%;
}

.panel_list .panel_detail {
  padding-top: 20px;
  border-top: 1px solid #3a3e35;
}

.panel_list .panel_item-thm + .panel_detail {
  padding-top: 0;
  border-top: none;
}

.panel_list .panel_detail h3,
.panel_grid .panel_detail h3 {
  padding: 0;
  margin: 1rem 0 0 0;
  line-height: 100%;
  font-size: 1.6rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/*==================================
SELECT ENTRY
==================================*/
#select_entry {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0 0 30px 0;
}

#select_entry .select_group {
  padding: 0;
  margin: 0 0 5px 0;
}

#select_entry select {
  padding: 0 20px 0 8px;
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
  background-image: url(../common/slash_category.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  color: #edece6;
  text-align: center;
  font-size: 1rem;
  font-family: "scandia-web", "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: 0.4s;
}

#select_entry select:first-of-type {
  padding: 0 20px 0 0;
}

#select_entry select:hover,
#select_entry select:active {
  color: #6adbc7;
}

#select_entry select:focus {
  outline: none;
}

/*==================================
ENTRY PAGER
==================================*/
.pager {
  display: block;
  width: 86vw;
  padding: 0;
  margin: 0 auto;
}

.pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pager ul li {
  padding: 0;
  margin: 0 8px;
  font-size: 1.4rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.pager ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  margin: 0;
  color: #edece6;
  line-height: 100%;
  font-weight: bold;
  opacity: 0.5;
  transition: 0.4s;
}

.pager ul li a.selected,
.pager ul li a:hover {
  color: #edece6;
  text-decoration: none;
  opacity: 1;
}

.pager ul li a.selected {
  cursor: default;
}

.pager ul li a.pager-left {
  width: 15px;
  background-image: url(../common/icon-pager_prev.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
}

.pager ul li a.pager-right {
  width: 15px;
  background-image: url(../common/icon-pager_next.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px;
}

/*==================================
BTN PREV_NEXT
==================================*/
.btn-prevnext {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0;
  margin: 0 auto;
  background-color: #030709;
  background-image: url(../common/mesh.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  position: relative;
  line-height: 30px;
  font-family: "scandia-web", "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
}

#page_mypage .btn-prevnext {
  background-color: #a7ba10;
  background-image: none;
}

.btn-prevnext a,
.btn-prevnext button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(100% / 2.2);
  height: 30px;
  padding: 0 40px;
  background-color: #d0e712;
  background-repeat: no-repeat;
  background-size: 12px;
  border: none;
  color: #030709;
  position: absolute;
  top: 0;
}

#page_mypage .btn-prevnext a,
#page_mypage .btn-prevnext button {
  background-color: #030709;
  color: #d0e712;
}

.btn-prevnext a:hover,
.btn-prevnext a:active,
.btn-prevnext button:hover,
.btn-prevnext button:active {
  text-decoration: none;
}

.btn-prevnext a.prev,
.btn-prevnext button.prev {
  background-image: url(../common/icon-link_prev.svg);
  background-position: left 10px center;
  justify-content: left;
  left: 0;
  transition: 0.4s;
}

#page_mypage .btn-prevnext a.prev,
#page_mypage .btn-prevnext button.prev {
  background-image: url(../common/icon-link_prev_color.svg);
}

.btn-prevnext a.next,
.btn-prevnext button.next {
  background-image: url(../common/icon-link_next.svg);
  background-position: right 10px center;
  justify-content: right;
  right: 0;
  transition: 0.4s;
}

#page_mypage .btn-prevnext a.next,
#page_mypage .btn-prevnext button.next {
  background-image: url(../common/icon-link_next_color.svg);
}

.btn-prevnext a.prev:before,
.btn-prevnext button.prev:before {
  content: "";
  border-top: 30px solid #d0e712;
  border-right: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: -9px;
  transition: 0.4s;
}

#page_mypage .btn-prevnext a.prev:before,
#page_mypage .btn-prevnext button.prev:before {
  border-top: 30px solid #030709;
}

.btn-prevnext a.next:before,
.btn-prevnext button.next:before {
  content: "";
  border-bottom: 30px solid #d0e712;
  border-left: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  left: -9px;
  transition: 0.4s;
}

#page_mypage .btn-prevnext a.next:before,
#page_mypage .btn-prevnext button.next:before {
  border-bottom: 30px solid #030709;
}

.btn-prevnext a:hover.prev,
.btn-prevnext a:hover.next,
.btn-prevnext a:active.prev,
.btn-prevnext a:active.next,
.btn-prevnext button:hover.prev,
.btn-prevnext button:hover.next,
.btn-prevnext button:active.prev,
.btn-prevnext button:active.next {
  background-color: #6adbc7;
}

.btn-prevnext a:hover.prev:before,
.btn-prevnext a:active.prev:before,
.btn-prevnext button:hover.prev:before,
.btn-prevnext button:active.prev:before {
  border-top: 30px solid #6adbc7;
}

.btn-prevnext a:hover.next:before,
.btn-prevnext a:active.next:before,
.btn-prevnext button:hover.next:before,
.btn-prevnext button:active.next:before {
  border-bottom: 30px solid #6adbc7;
}

/* FORM_BTN */
.comment_form .btn-prevnext,
.user_icon .btn-prevnext {
  font-size: 0.86rem;
}

.comment_form .btn-prevnext a.prev,
.comment_form .btn-prevnext button.prev {
  background-color: #9c9c9c;
}

.comment_form .btn-prevnext a.prev:before,
.comment_form .btn-prevnext button.prev:before {
  border-top: 30px solid #9c9c9c;
}

.comment_form .btn-prevnext a:hover.prev,
.comment_form .btn-prevnext a:active.prev,
.comment_form .btn-prevnext button:hover.prev,
.comment_form .btn-prevnext button:active.prev {
  background-color: #6adbc7;
}

.comment_form .btn-prevnext a:hover.prev:before,
.comment_form .btn-prevnext a:active.prev:before,
.comment_form .btn-prevnext button:hover.prev:before,
.comment_form .btn-prevnext button:active.prev:before {
  border-top: 30px solid #6adbc7;
}

/*==================================
BTN ENTRY TEXT
==================================*/
.btn-entry_text {
  display: block;
  margin: 15px 0 0 0;
  position: relative;
  line-height: 30px;
  font-size: 0.86rem;
  font-family: "scandia-web", "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.btn-entry_text + p,
.btn-entry_text + div,
.btn-entry_text + img {
  margin-top: 20px !important;
}

p + .btn-entry_text {
  margin-top: 10px !important;
}

.btn-entry_text a {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 30px 0 15px;
  background-color: #2c340b;
  background-image: url(../common/icon-link_next_color.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 12px;
  border: none;
  color: #d0e712;
  position: relative;
  transition: 0.4s;
}

.btn-entry_text a:hover,
.btn-entry_text a:active {
  background-color: #6adbc7;
  color: #030709;
  text-decoration: none;
  background-image: url(../common/icon-link_next.svg);
}

.btn-entry_text a:before {
  content: "";
  border-top: 30px solid #2c340b;
  border-right: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: -9px;
  transition: 0.4s;
}

.btn-entry_text a:hover:before,
.btn-entry_text a:active:before {
  border-top: 30px solid #6adbc7;
}

/*==================================
BTN WIDE TEXT
==================================*/
.btn-wide_text a {
  display: block;
  padding: 1rem 0;
  margin: 0;
  background-image: url(../common/icon-link_light.svg);
  background-position: right 8px center;
  background-repeat: no-repeat;
  background-size: 12px;
  border-bottom: 1px solid #edece6;
  border-top: 1px solid #edece6;
  color: #edece6;
  text-align: center;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
  position: relative;
  transition: 0.4s;
}

.btn-wide_text a + a {
  border-top: none;
}

.btn-wide_text a:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #030709;
  position: absolute;
  right: 28px;
  top: 0;
}

.btn-wide_text a:hover,
.btn-wide_text a:active {
  background-color: #edece6;
  background-image: url(../common/icon-link_next.svg);
  color: #030709;
  text-decoration: none;
}

/* REVERSE */
#page_mypage .btn-wide_text a,
#login_window .btn-wide_text a {
  background-image: url(../common/icon-link_next.svg);
  border-bottom: 1px solid #030709;
  border-top: 1px solid #030709;
  color: #030709;
}

#login_window .btn-wide_text a {
  background-color: #d0e712;
}

#page_mypage .btn-wide_text a:after,
#login_window .btn-wide_text a:after {
  background-color: #d0e712;
}

#page_mypage .btn-wide_text a:hover,
#page_mypage .btn-wide_text a:active,
#login_window .btn-wide_text a:hover,
#login_window .btn-wide_text a:active {
  background-color: #030709;
  background-image: url(../common/icon-link_light.svg);
  color: #edece6;
}

/*==================================
COMMON CATEGORY AREA
==================================*/
ul.category_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  color: #6adbc7;
  font-size: 0.86rem;
  font-family: "scandia-web", "source-han-sans-japanese", sans-serif;
  font-style: normal;
}

ul.category_area li {
  height: 20px;
  line-height: 20px;
  padding: 0 15px 0 0;
  margin: 0 6px 5px 0;
  background-image: url(../common/slash_category_color.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  letter-spacing: 0;
}

ul.category_area li.label {
  padding: 0 8px 0 10px;
  margin-right: 15px;
  background-color: #6adbc7;
  background-image: none;
  color: #030709;
  font-style: italic;
  position: relative;
}

ul.category_area li.label:after {
  content: "";
  border-top: 20px solid #6adbc7;
  border-right: 6px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: -6px;
  top: 0;
}

/*==================================
BTN PAGETOP
==================================*/
a.fixed_pagetop {
  display: block;
  width: calc(7vw - 1px);
  height: 40px;
  padding: 0;
  margin: 0;
  border-left: 1px solid #030709;
  border-top: 1px solid #030709;
  background-color: #d0e712;
  background-image: url(../common/icon-pagetop.svg);
  background-position: center top 8px;
  background-repeat: no-repeat;
  background-size: 12px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 100;
  transition: 0.4s;
}

a:hover.fixed_pagetop {
  background-color: #6adbc7;
}

/*==================================
ANCHOR LINK
==================================*/
.anchor {
  display: block !important;
  padding-top: 120px !important;
  margin-top: -120px !important;
  position: absolute;
}

/*==================================
MAINVISUAL AREA
==================================*/
#mainvisual_area {
  width: 100vw;
  height: 90vh;
  position: relative;
  background-color: #030709;
}

/* MAINVISUAL SLIDE */
#mainvisual_slide {
  height: calc(90vh - 30px);
  padding: 0;
  margin: 0;
  background-color: #000;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#mainvisual_slide:after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../common/mainvisual_title-dark.svg);
  background-position: center top 30%;
  background-repeat: no-repeat;
  background-size: 84vw;
  position: absolute;
  left: 0;
  top: 0;
  /* mix-blend-mode: overlay; */
  filter: drop-shadow(2px 2px 0 rgba(255, 255, 255, 1));
}

.login_after #mainvisual_slide:after {
  background-position: center top 20%;
}

#mainvisual_slide div.slide {
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* LOGIN BEFORE */
.login_before #mainvisual_slide #slide-01 {
  background-image: url(../upload_file_20260101/mainvisual_before-01sp.jpg);
}

.login_before #mainvisual_slide #slide-02 {
  background-image: url(../upload_file_20260101/mainvisual_before-02sp.jpg);
}

/* LOGIN AFTER */
.login_after #mainvisual_slide #slide-01,
.page_birthday #mainvisual_slide #slide-01 {
  background-image: url(../upload_file_20260101/mainvisual-01sp.jpg);
  background-position: center top;
}

.login_after #mainvisual_slide #slide-02,
.page_birthday #mainvisual_slide #slide-02 {
  background-image: url(../upload_file_20260101/mainvisual-02sp.jpg);
  background-position: center top;
}

/* MAINVISUAL BIRTHDAY */
.page_birthday #mainvisual_slide:after {
  /* display: none; */
  background-image: none;
  background-color: rgba(0, 0, 0, 0.7);
  mix-blend-mode: normal;
  filter: drop-shadow(3px 3px 0 rgba(0, 0, 0, 0));
}

.page_birthday #user_birthday {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 240px;
  padding: 5px 0;
  margin: 0;
  background-color: #d0e712;
  /* box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.2); */
  position: absolute;
  left: calc(50% - 120px);
  top: calc(50% - 200px);
  z-index: 1;
}

.page_birthday #user_birthday .user_date {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  background-color: #d0e712;
  color: #030709;
}

.page_birthday #user_birthday .user_date ul {
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.page_birthday #user_birthday .user_date ul li {
  display: block;
  line-height: 100%;
  letter-spacing: -0.05em;
}

.page_birthday #user_birthday .user_date ul li:nth-of-type(1) {
  font-size: 7rem;
}

.page_birthday #user_birthday .user_date ul li:nth-of-type(2) {
  font-size: 1rem;
}

.page_birthday #user_birthday .user_message {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 15px 0 25px 0;
  margin: 0;
  background-color: #030709;
  color: #d0e712;
  border-left: 2px dotted #030709;
  font-family: "epicursive", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  position: relative;
}

.page_birthday #user_birthday .user_message p {
  padding: 0;
  margin: 0;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 1);
  font-size: 4rem;
  line-height: 120% !important;
  transform: rotate(-10deg);
}

.page_birthday #user_birthday .user_message p span:nth-of-type(1) {
  display: block;
  color: #e71280;
}

.page_birthday #user_birthday .user_message p span:nth-of-type(2) {
  display: block;
  color: #d0e712;
}

.page_birthday #user_birthday .user_message p span:nth-of-type(3) {
  display: block;
  color: #6adbc7;
}

.page_birthday #user_birthday .user_birth_link a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 25px 0 15px;
  background-color: #d0e712;
  background-image: url(../common/icon-link_next.svg);
  background-position: right 5px center;
  background-repeat: no-repeat;
  background-size: 12px;
  color: #030709;
  font-size: 0.9rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  right: 0;
  bottom: -25px;
  transition: 0.4s;
}

.page_birthday #user_birthday .user_birth_link a:after {
  content: "";
  width: 9px;
  height: 30px;
  border-top: 30px solid #d0e712;
  border-left: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  left: -9px;
  top: 0;
  transition: 0.4s;
}

.page_birthday #user_birthday .user_birth_link a:hover,
.page_birthday #user_birthday .user_birth_link a:active {
  background-color: #6adbc7;
  text-decoration: none;
}

.page_birthday #user_birthday .user_birth_link a:hover:after,
.page_birthday #user_birthday .user_birth_link a:active:after {
  border-top: 30px solid #6adbc7;
}

/* TICKER */
#index_ticker {
  display: block;
  width: 100vw;
  height: 30px;
  background-color: rgba(3, 7, 9, 1);
  color: #edece6;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
}

#index_ticker a {
  color: #edece6;
}

#index_ticker a:hover {
  color: #6adbc7;
  text-decoration: none;
}

#index_ticker .slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  height: 30px;
  margin: 0 120px;
  font-size: 0.9rem;
}

#index_ticker .slide .ticker_date {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 15px;
  margin: 0;
  background-color: #d0e712;
  color: #030709;
  font-size: 1rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: italic;
  position: relative;
}

#index_ticker .slide .ticker_date:before {
  content: "";
  width: 10px;
  height: 30px;
  border-bottom: 30px solid #d0e712;
  border-left: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  left: -9px;
  top: 0;
}

#index_ticker .slide .ticker_date:after {
  content: "";
  width: 10px;
  height: 30px;
  border-top: 30px solid #d0e712;
  border-right: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: -9px;
  top: 0;
}

#index_ticker .slide p {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  padding: 0 0 0 20px;
  margin: 0;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
}

/*==================================
MEMBER CONTENTS
==================================*/
.slide-index_membercontents {
  margin-bottom: 35px;
}

.slide-index_membercontents .splide__slide {
  opacity: 0.5;
}

.slide-index_membercontents .is-active {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  opacity: 1;
}

.slide-index_membercontents a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transition: 0.4s;
}

.slide-index_membercontents a.member-gots:active:after {
  background-color: rgba(0, 140, 91, 0.3);
}

.slide-index_membercontents a.member-iwasaki:active:after {
  background-color: rgba(84, 32, 126, 0.3);
}

.slide-index_membercontents a.member-take:active:after {
  background-color: rgba(240, 218, 0, 0.3);
}

.slide-index_membercontents a.member-keigo:active:after {
  background-color: rgba(0, 62, 128, 0.3);
}

.slide-index_membercontents a.member-kohshi:active:after {
  background-color: rgba(205, 17, 50, 0.3);
}

.slide-index_membercontents .update {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 70%;
  height: 30px;
  padding: 0 10px 0 0;
  margin: 0;
  background-color: #d0e712;
  color: #edece6;
  position: absolute;
  left: 0;
  bottom: 15px;
  z-index: 10;
  font-size: 1rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.slide-index_membercontents .update:after {
  content: "";
  width: 10px;
  height: 30px;
  border-top: 30px solid #d0e712;
  border-right: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: -9px;
  top: 0;
}

.slide-index_membercontents .member-gots .update {
  background-color: #008c5b;
}

.slide-index_membercontents .member-gots .update:after {
  border-top: 30px solid #008c5b;
}

.slide-index_membercontents .member-iwasaki .update {
  background-color: #54207e;
}

.slide-index_membercontents .member-iwasaki .update:after {
  border-top: 30px solid #54207e;
}

.slide-index_membercontents .member-take .update {
  background-color: #f0da00;
  color: #030709;
}

.slide-index_membercontents .member-take .update:after {
  border-top: 30px solid #f0da00;
}

.slide-index_membercontents .member-keigo .update {
  background-color: #003e80;
}

.slide-index_membercontents .member-keigo .update:after {
  border-top: 30px solid #003e80;
}

.slide-index_membercontents .member-kohshi .update {
  background-color: #cd1132;
}

.slide-index_membercontents .member-kohshi .update:after {
  border-top: 30px solid #cd1132;
}

/*==================================
VOICE
==================================*/
.slide-media_slide_voice .splide__slide {
  opacity: 0.5;
}

.slide-media_slide_voice .is-active {
  opacity: 1;
}

/*==================================
VIDEO
==================================*/
.slide-media_slide_movie .splide__slide {
  opacity: 0.5;
}

.slide-media_slide_movie .is-active {
  opacity: 1;
}

/*==================================
ENTRY
==================================*/
.content-block {
  display: block;
  padding: 5px 0 0 0;
  margin: 0;
  background-color: #d0e712;
  background-image: url(../common/dotline.png);
  background-position: center top;
  background-repeat: repeat;
  background-size: 10px;
}

.content-inner {
  display: block;
  padding: 30px 0 60px 0;
  margin: 0;
  background-color: #030709;
}

.content-title {
  padding: 0 5px 20px 5px;
  margin: 0 0 25px 0;
  border-bottom: 1px solid #d0e712;
}

.comment_form .content-title,
#page_from_staff .content-title,
#page_error .content-title {
  margin: 0;
  border-bottom: none;
}

#page_about .content-title {
  padding-bottom: 0;
  border-bottom: none;
}

.content-title h3 {
  padding: 0;
  margin: 0 0 20px 0;
  line-height: 140%;
  font-size: 1.5rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
}

#page_error .content-title h3 {
  margin-bottom: 0;
}

.content-block_title {
  padding: 0 5px 15px 5px;
  margin: 0;
}

.content-block_title h3 {
  padding: 0;
  margin: 0;
  line-height: 140%;
  font-size: 1.5rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.content-detail {
  padding: 0 5px;
  margin: 0;
}

.content-detail + .content-title {
  margin-top: 75px;
}

.content-detail p {
  line-height: 180%;
}

.content-detail p a {
  text-decoration: underline;
}

.content-detail img {
  display: block;
  padding: 0;
  margin: 30px 0;
  position: relative;
}

.content-detail .splide img {
  margin: 0;
}

.content-detail hr {
  margin: 30px 0;
  border-color: #3a3e35;
}

.content-detail .caption_area p {
  padding: 2px 0;
  margin: 0;
  font-size: 0.86rem;
  opacity: 0.8;
}

/*==================================
COMMENT AREA
==================================*/
#comment_area {
  padding: 0;
  margin: 60px 0 0 0;
}

#comment_area .comment_list {
  padding: 15px 0 0 0;
  margin: 0;
}

#comment_area .comment_post {
  display: block;
  padding: 20px 5px 20px 2rem;
  margin: 0;
  border-top: 1px solid #3a3e35;
}

#comment_area .comment_post:first-of-type {
  border-top: none;
}

#comment_area .comment_post h4.poster_name {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 2rem;
  padding: 0;
  margin: 0 0 0 -2rem;
  line-height: 1.2rem;
  font-size: 1.2rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
}

#comment_area .comment_post h4.poster_name img {
  display: block;
  width: 2rem;
  height: 2rem;
  padding: 0;
  margin: 0 0.8rem 0 0;
  border-radius: 50%;
}

#comment_area .comment_post .poster_entry {
  display: block;
  padding: 0 0 0 0.8rem;
  font-size: 0.94rem;
}

#comment_area .comment_post .poster_date {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  min-height: 15px;
  padding: 0 0 0 25px;
  margin: 5px 0 0 0;
  background-image: url(../common/icon-clock.svg);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 15px;
  font-size: 0.86rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 500;
  opacity: 0.5;
}

#comment_area .comment_post .poster_date span {
  display: block;
  padding: 0;
  margin: 0;
}

#comment_area .comment_post .poster_date span.time:before {
  content: "|";
  margin: 0 0.8rem;
}

/* MEMBER COMMENT */
.comment_post.member-comment h4,
.comment_post.member-comment p {
  color: #6adbc7;
}

/* PAGER */
#comment_area .pager {
  margin-top: 30px;
}

/* INPUT */
#comment-input textarea {
  width: 100%;
  min-height: 20rem;
  padding: 15px;
  margin: 0 0 15px 0;
  border: none;
  background-color: #030709;
  background-image: url(../common/mesh.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  color: #edece6;
  outline: 2px solid #edece6;
}

#comment-input textarea:focus {
  background-color: #edece6;
  background-image: none;
  outline: 2px solid#d0e712;
  color: #030709;
}

#comment-input textarea::placeholder {
  color: #edece6;
  font-style: italic;
}

#comment-input #check_input_text {
  display: block;
  padding: 15px;
  background-color: #030709;
  background-image: url(../common/mesh.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  color: #6adbc7;
}

/* COMPLETE */
.complete_message {
  padding: 0;
  margin: 0 0 60px 0;
  background-image: none;
}

.complete_message .content-inner {
  padding: 0 0 56.25% 0;
  background-image: url(../upload_file_20260101/comment-complete.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.complete_message .content-inner:after {
  content: "Thanx!!!!!";
  color: #e71280;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.5);
  font-size: 3rem;
  font-family: "epicursive", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: right;
  line-height: 100%;
  position: absolute;
  right: -20px;
  bottom: 0;
  transform: rotate(-15deg);
}

/*==================================
MYPAGE
==================================*/
#page_mypage {
  background-color: #d0e712;
}

#page_mypage h2 {
  color: #030709;
}

#page_mypage h3 {
  font-size: 1.8rem;
}

#page_mypage h3:after {
  content: "_";
}

#mypage-dsp_message {
  margin-bottom: 30px;
  background-color: #e71280;
  color: #030709;
}

#mypage-dsp_message .content-inner {
  padding: 15px;
  margin: 0 0 45px 0;
  background-color: #e71280;
}

#mypage-membership,
#mypage-mycollection,
#mypage-user_icon {
  color: #030709;
}

#mypage-membership .content-inner,
#mypage-mycollection .content-inner,
#mypage-user_icon .content-inner {
  background-color: #d0e712;
}

#mypage-dsp_message .message_list {
  display: block;
  padding: 10px 5px;
  margin: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
}

#mypage-dsp_message .message_list:last-of-type {
  padding: 10px 5px 0 5px;
}

#membership_detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
  margin: 0 0 30px 0;
}

/* MEMBERS CARD */
#membership_detail .memberscard_area {
  width: 100%;
  padding: 0 0 30px 0;
}

#membership_detail .memberscard_inner {
  margin: 0 auto;
  position: relative;
  padding-bottom: 63.3%;
  height: 0;
  overflow: hidden;
}

#membership_detail .memberscard {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-image: url(../common/memberscard-normal.jpg);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
}

/* #membership_detail .memberscard.status-gold {
  background-image: url(../common/memberscard-sample.jpg);
} */

#membership_detail .memberscard:before {
  content: "";
  display: block;
  width: 15px;
  height: 1px;
  background-color: #d0e712;
  position: absolute;
  left: 0;
  top: calc(50% - 0.5px);
  z-index: 1;
}

/* #membership_detail .memberscard:after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #d0e712;
  position: absolute;
  right: 0;
  top: calc(50% - 0.5px);
  z-index: 1;
} */

#membership_detail .memberscard .number {
  display: block;
  width: calc(100% - 15px);
  padding: 0;
  margin: 0;
  color: #d0e712;
  text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.5);
  font-size: 2.4rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-align: left;
  line-height: 100%;
  position: absolute;
  left: 25px;
}

#membership_detail .memberscard .card_user_icon {
  display: block;
  width: 110px;
  height: 0;
  padding-bottom: 110px;
  margin: 0 auto;
  position: absolute;
  right: 20px;
  overflow: hidden;
}

#membership_detail .memberscard .card_user_icon img {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 50%;
  /* border: 2px solid #d0e712; */
}

#membership_detail .memberscard .btn-user_icon {
  display: block;
  width: 100%;
  margin: 0;
  line-height: 30px;
  font-size: 0.78rem;
  font-family: "scandia-web", "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: absolute;
  left: 0;
  bottom: 15px;
}

#membership_detail .memberscard .btn-user_icon a {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 30px;
  padding: 0 30px 0 15px;
  background-color: #2c340b;
  background-image: url(../common/icon-link_next_color.svg);
  background-position: right 5px center;
  background-repeat: no-repeat;
  background-size: 12px;
  border: none;
  color: #d0e712;
  position: relative;
  transition: 0.4s;
}

#membership_detail .memberscard .btn-user_icon a:hover,
#membership_detail .memberscard .btn-user_icon a:active {
  background-color: #6adbc7;
  color: #030709;
  text-decoration: none;
  background-image: url(../common/icon-link_next.svg);
}

#membership_detail .memberscard .btn-user_icon a:before {
  content: "";
  border-top: 30px solid #2c340b;
  border-right: 9px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: -9px;
  transition: 0.4s;
}

#membership_detail .memberscard .btn-user_icon a:hover:before,
#membership_detail .memberscard .btn-user_icon a:active:before {
  border-top: 30px solid #6adbc7;
}

/* MEMBER INFO */
#membership_detail dl {
  width: 100%;
  padding: 0;
  margin: 0;
}

#membership_detail dl dt {
  padding: 0 0 5px 0;
  margin: 15px 0 0 0;
  border-bottom: 1px solid #030709;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
}

#membership_detail dl dt:first-of-type {
  margin: 0;
}

#membership_detail dl dd {
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.03);
  background-image: url(../common/mesh.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
  mix-blend-mode: multiply;
  font-weight: 700;
}

#mypage-mycollection .grid_gallery {
  margin: 0 0 30px 0;
}

/*==================================
LOGIN
==================================*/
#login_window {
  padding-bottom: 0;
  margin: 0;
  background-color: rgba(0, 0, 0, 0);
}

#login_window:before,
#login_window:after {
  display: none;
}

#login_window .device_width {
  width: 100vw;
  padding-bottom: 30px;
  background-color: #d0e712;
}
#login_window .device_width:after {
  content: "";
  display: block;
  width: 100vw;
  height: 9px;
  background-image: url(../common/dotline-color.png);
  background-position: center top;
  background-repeat: repeat;
  background-size: 10px;
  position: absolute;
  left: 0;
  bottom: 0;
}

#login_window .content-block {
  padding: 5px 0 0 0;
  margin: 15px 0 30px 0;
  color: #d0e712;
}

#login_window .content-inner {
  padding: 45px 25px;
  position: relative;
}

#login_window .content-block_title h3 {
  font-size: 2rem;
}

#login_window .content-block_title h3:after {
  content: "_";
}

#login_window .btn-wide_text {
  width: 86vw;
  margin: 15px auto 0 auto;
}

#login_window ul.link_text_list {
  display: block;
  width: 86vw;
  padding: 0;
  margin: 45px auto 0 auto;
  list-style: none;
  color: #030709;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
}

#login_window ul.link_text_list li {
  padding: 0;
  margin: 10px 0;
}

#login_window ul.link_text_list a {
  display: block;
  padding: 8px 15px 8px 30px;
  margin: 0;
  color: #030709;
  background-color: #d0e712;
  background-image: url(../common/icon-link_next.svg);
  background-position: left 10px center;
  background-repeat: no-repeat;
  background-size: 12px;
  line-height: 100%;
  border-radius: 4px;
}

#login_window ul.link_text_list a:hover,
#login_window ul.link_text_list a:active {
  background-color: #030709;
  background-image: url(../common/icon-link_light.svg);
  color: #edece6;
  text-decoration: none;
}

#login_form .form_input_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 0;
}

#login_form .inpit_block {
  display: block;
  width: 100%;
  margin: 0 0 15px 0;
  text-align: left;
}

#login_form .inpit_block input {
  width: 100%;
  padding: 10px 15px;
  margin: 0;
  border: 1px solid #d0e712;
  background-color: #030709;
  font-size: 1.2rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
}

#login_form .inpit_block input::placeholder {
  color: #d0e712;
  font-size: 1rem;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
  opacity: 0.5;
}

#login_form .inpit_block input:focus {
  outline: 1px solid #d0e712;
  background-color: #d0e712;
  color: #030709;
}

#login_form .inpit_block label {
  display: block;
  padding: 0;
  margin: 0 0 5px 0;
  font-size: 0.9rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 500;
  font-style: normal;
}

#login_form .form_btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 15px 0 0 0;
}

#login_form .form_btn_area a,
#login_form .form_btn_area button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: calc(50% - 15px);
  height: 45px;
  margin: 0 0 0 5px;
  border: none;
  background-color: #d0e712;
  color: #030709;
  font-size: 1.3rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 500;
  font-style: normal;
  position: relative;
  transition: 0.4s;
}

#login_form .form_btn_area a.btn-login_back {
  margin: 0 15px 0 0;
  background-color: #181e0a;
  color: #d0e712;
}

#login_form .form_btn_area a.btn-login_back:after {
  content: "";
  border-top: 45px solid #181e0a;
  border-right: 13px solid transparent;
  box-sizing: border-box;
  position: absolute;
  right: -13px;
  transition: 0.4s;
}

#login_form .form_btn_area a.btn-login,
#login_form .form_btn_area button.btn-login {
  margin: 0 0 0 15px;
}

#login_form .form_btn_area a.btn-login:after,
#login_form .form_btn_area button.btn-login:after {
  content: "";
  border-bottom: 45px solid #d0e712;
  border-left: 13px solid transparent;
  box-sizing: border-box;
  position: absolute;
  left: -13px;
  transition: 0.4s;
}

#login_form .form_btn_area a:hover,
#login_form .form_btn_area button:hover {
  background-color: #6adbc7;
  color: #030709;
  text-decoration: none;
}

#login_form .form_btn_area a:hover.btn-login_back {
  background-color: #9c9c9c;
}

#login_form .form_btn_area a:hover.btn-login_back:after {
  border-top: 45px solid #9c9c9c;
}

#login_form .form_btn_area a:hover.btn-login:after,
#login_form .form_btn_area button:hover.btn-login:after {
  border-bottom: 45px solid #6adbc7;
}

/* ERROR_MSG */
#login_form .error_msg {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 5px 15px;
  margin: 0 0 20px 0;
  background-color: rgba(231, 18, 128, 0.2);
  border-left: 5px solid #e71280;
  color: #e71280;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
}

/*==================================
ERROR & What's PAGE
==================================*/
#page_error .btn-wide_text,
#page_about .btn-wide_text {
  margin: 30px 0;
}

#page_error .slide-normal_single,
#page_about .slide-normal_single {
  margin: 0 0 45px 0;
}

#page_error .content-block {
  background-color: #e71280;
}

#page_error h2 {
  color: #e71280;
}

/* ABOUT PAGE */
#page_about .content-title h3 {
  color: #d0e712;
  font-size: 2rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: normal;
}

#page_about .content-title h3:after {
  content: "_";
}

#page_about #about_panel {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding: 10px 0 0 0;
}

#page_about .panel_detail {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0 0 45px 0;
  border-top: 1px solid #93a40f;
  position: relative;
}

#page_about .panel_detail:last-of-type {
  margin-bottom: 0;
}

#page_about .panel_detail h4 {
  padding: 0;
  margin: 20px 0 0 0;
  font-size: 1.4rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
}

#page_about .panel_detail p {
  font-size: 0.9rem;
  opacity: 0.8;
}

#page_about .panel_detail .en_sub_title {
  padding: 0 10px 0 0;
  background-color: #030709;
  color: #93a40f;
  position: absolute;
  left: 0;
  top: -13px;
  font-size: 0.8rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: italic;
}

#page_about .inner_block {
  display: block;
  padding: 20px;
  margin: 0 0 45px 0;
  background-color: #030709;
  background-image: url(../common/mesh.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 8px;
}

#page_about .inner_block h4 {
  display: block;
  padding: 0;
  margin: 5px 0;
  color: #d0e712;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
  font-size: 1.3rem;
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 600;
  font-style: normal;
}

#page_about .inner_block h4 span {
  display: block;
  padding: 2px 0 0 0;
}

/*==================================
LOGIN BEFORE BLUR
==================================*/
body.login-before .panel_item-thm:after,
body.login-before #index_voice .splide__slide:after,
body.login-before #index_movie .splide__slide:after {
  content: "";
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  backdrop-filter: blur(8px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

/*==================================
COMMON MENU
==================================*/
#menu {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.4s;
}

#menu .menu_modal {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  left: 0;
  top: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}

#menu .menu_window {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-start;
  width: 90%;
  min-height: 100vh;
  padding: 60px 0;
  text-align: right;
  background-color: #6adbc7;
  font-size: 1.5rem;
  font-family: "scandia-web", sans-serif;
  font-weight: 700;
  font-style: italic;
  position: absolute;
  right: -80%;
  top: 0;
  transition: 0.4s;
}

#menu .menu_window a {
  display: inline-block;
  height: 1.8rem;
  padding: 0 30px 0 30px;
  line-height: 1.8rem;
  color: #030709;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  transition: 0.2s;
}

#menu .menu_window a:after {
  content: "";
  width: 8px;
  height: 1.8rem;
  border-bottom: 1.8rem solid rgba(0, 0, 0, 0);
  border-left: 8px solid transparent;
  box-sizing: border-box;
  position: absolute;
  left: -8px;
  bottom: 0;
  transition: 0.2s;
}

#menu .menu_window a:hover,
#menu .menu_window a:active {
  text-decoration: none;
  background-color: #030709;
  color: #edece6;
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0);
}

#menu .menu_window a:hover:after,
#menu .menu_window a:active:after {
  content: "";
  border-bottom: 1.8rem solid #030709;
}

#menu .menu_window ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#menu .menu_window ul li {
  padding: 0;
  margin: 25px 0 0 0;
}

#menu .menu_window ul li.sub {
  margin: 5px 0 0 0;
  font-size: 1.2rem;
}

/* LOGOUT */
#menu .menu_window ul li.logout {
  margin-top: 45px;
  font-size: 1.2rem;
}

#menu .menu_window ul li.logout a {
  background-color: rgba(0, 0, 0, 0.3);
  color: #edece6;
  text-shadow: none;
}

#menu .menu_window ul li.logout a:after {
  border-bottom: 1.8rem solid rgba(0, 0, 0, 0.3);
}

#menu .menu_window ul li.logout a:hover {
  background-color: #e71280;
  color: #edece6;
}

#menu .menu_window ul li.logout a:hover:after {
  content: "";
  border-bottom: 2rem solid #e71280;
}

/* Click After */
#menu.open {
  z-index: 100;
  opacity: 1;
}

#menu.open .menu_window {
  right: 0;
}

/* Close */
#menu_close {
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  margin: 0;
  background-image: url(../common/icon-close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  transition: 0.4s;
}

#menu_close:hover,
#menu_close:active {
  border: 2px solid #030709;
}

/*==================================
TEXT
==================================*/
h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  line-height: 140%;
}

p {
  line-height: 160%;
  padding: 5px 0;
  margin: 0;
}

a {
  color: #d0e712;
  text-decoration: none;
  transition: 0.4s;
}

a:hover,
a:active {
  color: #6adbc7;
  text-decoration: underline;
}

.marker {
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 2px;
  margin-right: 2px;
  background-color: #d0e712;
  color: #1c1c1c;
  border-radius: 2px;
  transition: 0.2s;
}

.marker:active {
  background-color: #e71280;
  color: #fff;
  text-decoration: none;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}

.caption {
  display: block;
  font-size: 0.8rem !important;
}

.inline_caption {
  display: inline;
  font-size: 0.8rem !important;
}

h1 {
  font-size: 3rem;
  letter-spacing: 0;
}

h2 {
  width: 86vw;
  text-align: left;
  font-size: 4rem;
  font-family: "pf-fuel-decay", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 0;
  margin: 0 auto 20px auto;
  line-height: 100%;
  letter-spacing: 0;
}

/*==========================================*/
.fix {
  overflow: hidden;
  zoom: 1;
}

.none {
  display: none;
}

.display_sp {
  display: block !important;
}

.display_pc {
  display: none !important;
}
