@charset "utf-8";
/*========================================================
      common
=========================================================*/
:root {
  /* color */
  --base: #262626;
  --main: #1a1a1a;;
  --font: #ffffff;
  --fc: #404040;
  --accent: #edea39;
  --font-size-xs: clamp(1.2rem, 1.14rem + 0.18vw, 1.4rem);
  --font-size-md: clamp(1.4rem, 1.34rem + 0.18vw, 1.6rem);
  --font-size-lg: clamp(1.6rem, 1.54rem + 0.18vw, 1.8rem);
  --font-size-xl: clamp(1.8rem, 1.61rem + 0.55vw, 2.4rem);
  --font-size-xxl: clamp(2.8rem, 2.41rem + 1.10vw, 4rem);
  --font-size-ttl-md: clamp(3.2rem, 2.43rem + 2.20vw, 5.6rem);

  /* font */
  --en: "Playfair Display", serif;
  --ja: "Noto Sans JP", sans-serif;
}
::selection {
  background:  #e5e5e5;
  color: var(--base);
}
::-moz-selection {
  background:  #e5e5e5;
  color: var(--base);
}
html {
  font-size: 10px;
  scroll-behavior: smooth;
  scrollbar-color: var(--base) var(--font);
}
img {
  user-drag: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}
body {
  font-size: var(--font-size-md);
  font-family: var(--ja);
  font-weight: 400;
  animation: fadeIn 2s forwards;
  letter-spacing: 0.05rem;
  position: relative;
  color: var(--font);
  background: var(--main);
  margin: 0;
  overflow: hidden;
}
body.is-scrollable {
  overflow: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  text-decoration: none;
  color: initial;
  transition: 0.4s all;
}
p a{
    overflow-wrap: anywhere;
}
a:hover {
  opacity: 0.5;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
.en {
  font-family: var(--en);
}
.wrap {
  margin: 0 6.25% 0 6.25%;
}
.flex {
  display: flex;
}
h2 {
  font-size: clamp(5.2rem, 3.65rem + 4.40vw, 10rem);
  color: var(--font);
  font-family: var(--en);
  font-weight: normal;
  line-height: 1;
}
h2 .jp{
  font-size: var(--font-size-lg);
  font-family: var(--ja);
}
.more{
  font-family: var(--en);
  position: relative;
  width: 100%;
  max-width: 220px;
}
.more a{
  color: var(--font);
  padding: 18px 0;
  border: 1px solid var(--font);
  display: block;
  text-align: center;
}
.more a:hover{
  opacity: 1;
  background: var(--font) ;
  color: var(--base);
  letter-spacing: 0.05em;
}
.more::after{
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 8px);
  right: -13px;
  width: 32px;
  height: 9px;
  border: none;
  border-right: 2px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: skew(45deg);
  transition: .3s;
}
.more:hover::after{
  right: -20px;
  width: 32px;
}
 .cvBtn li a{
  font-family: var(--en);
  color: var(--base);
  background: var(--accent);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: 0.4s;
  position: relative;
  text-align: center;
}
.cvBtn li a:hover{
  opacity: 1;
}
.cvBtn li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* width: 80px; */
  height: 8.88vh;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: 0.4s;
}
.cvBtn li a:hover::before {
  width: 90px;
  height: 90px;
  border-color: var(--font);
}
.wave{
  position: relative;
  z-index: 1;
  width: 90%;
  display: block;
  margin: 0 0 0 auto;
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.loading.fade-out {
  animation: fadeOut 1s forwards;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.loading__logo {
  opacity: 0;
  transform: translateY(20px);
  transition: all 3s ease;
  max-width: 400px;
  width: 100%;
}
.loading.animate .loading__logo {
  animation: logo_fade 4s 0.5s forwards;
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
.mainContents {
  opacity: 1;
  visibility: visible;
}
body.is-loading .mainContents {
  opacity: 0;
}
@media screen and (max-width: 1000px) {
  .pc {
    display: none;
    }
  .sp {
    display: block;
  }
  .wave{
    width: 100%;
  }
  a:hover{
    opacity: 1;
  }
  .more a:hover{
    background: none;
    color: var(--font);
  }
}
@media screen and (max-width: 500px) {
  .more{
    max-width: 130px;
  }
  .more a{
    padding: 12px 0;
    font-size: 1.2rem;
  }
  .loading {
    z-index: 1000;
  }
  .loading__logo {
    max-width: 80%;
  }
  .more::after {
    top: calc(50% - 6px);
    right: -9px;
    width: 23px;
    height: 6px;
}
}
@media screen and (max-width: 350px) {
  h2{
    font-size: 4.8rem;
  }
}
/*========================================================
      animation
=========================================================*/
.box {
  opacity: 0;
}
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0px);
  }
}
.anime-up {
  opacity: 0;
  transform: translateY(20px);
}
.anime-up.displayed {
  opacity: 1;
  transform: translateY(0);
}
.anime-up.displayed span {
  animation: showText 1s backwards;
  display: inline-table;
  line-height: 1.2;
}
.anime-up.displayed > span {
  overflow: hidden;
}
.anime-up.displayed > span > span {
  animation: showTextFromBottom 0.8s backwards;
}
.anime-up.displayed .jp > span > span {
  animation: showTextFromBottom 0.8s backwards;
}
.scroll-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.scroll-in-up {
  transform: translate(0, 50px);
}
.scroll-opacity {
  opacity: 1;
  transform: translate(0, 0);
}
/*========================================================
      header
=========================================================*/
header{
  background: var(--main);
  width: 10%;
  min-width: 144px;
  position: fixed;
  height: 100vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--base) var(--font);
  z-index: 999;
}
header .logo{
    text-align: center;
    margin: 3.5vh 0 2.5vh;
    padding: 0 24px;
}
header .logo img {
    /* width: 50px; */
    margin: 0 auto;
    height: 7.33vh;
    object-fit: contain;
}
header .nav{
    padding: 0 12.5%;
}
header .nav li{
  margin-bottom: 2.2vh;
  line-height: 1;
}
header .nav li:last-child{
  margin-bottom: 0;
}
header .nav li a{
  color: var(--font);
  font-family: var(--en);
  font-weight: bold;
  font-size: clamp(1.2rem, 1.152rem + 0.22vw, 1.3rem);
  white-space: nowrap;
}
header .sns{
    padding: 0 16.67% 24px;
    margin-top: 3.2vh;
    flex-flow: wrap;
    gap: 8px;
}
header .cvBtn{
  margin-top: 3vh;
  padding: 0 16.67%;
  display: grid;
  justify-content: center;
}
header .cvBtn li:first-child{
  margin-bottom: 1.6vh;
}
header .sns li{
  width: calc((100% - 24px) / 3);
}
header .sns li a{
    /* width: 18px; */
    display: block;
    text-align: center;
    margin: 0 auto;
}
header .sns li a img {
    height: 16px;
    object-fit: contain;
}
header .sns li .lang{
  color: var(--font);
  font-family: var(--en);
  font-size: 1.2rem;
}
@media screen and (max-width: 1200px) {
  header{
    width: 12%;
    min-width: auto;
  }
  header .nav li a{
    white-space: normal;
  }
}
@media screen and (max-width: 1000px) {
  header{
    width: 100%;
    position: fixed;
    height: 64px;
    z-index: 999;
    border-bottom: 2px solid var(--font);
  }
  header .logo{
    text-align: right;
    width: 120px;
    margin: 0;
    padding: 17px 0 0 16px;
  }
  header .nav{
    padding: 0 10.67%;
  }
  header .sns{
    padding: 0;
    margin-top: 0;
  }
  header .cvBtn{
    padding: 0;
    display: flex;
    gap: 10px;
    margin-top: 0;
  }
  header .sns li a img{
    height: 20px;
  }
  header .logo img{
    width: 150px;
    height: auto;
  }
}
@media screen and (max-width: 375px) {
  header .sns{
    /* gap: 10px; */
  }
}
/*========================================================
      hamburger
=========================================================*/
@media screen and (max-width: 1000px) {
.hamburger {
  position: fixed;
  top: 23px;
  right: 16px;
  z-index: 150;
  width: 24px;
  height: 14px;
  cursor: pointer;
}
.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}
.hamburger.is-active span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}
.hamburger span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 2px;
  background-color: var(--font);
  transition: transform .3s;
}
.hamburger.is-active span {
  background-color: #ffffff;
}
.hamburger span:nth-child(1) {
  top: 30%;
}
.hamburger span:nth-child(2) {
  top: 90%;
}
.drawer {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 130;
  width: 100%;
  height: 100vh;
  background-color: var(--main);
  transform: translateX(100vw);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  visibility: hidden;
  top: var(--drawer-top, 0); /* JavaScriptで取得した位置に配置 */
  height: calc(100vh - var(--drawer-top, 0px)); /* 画面下までの高さに調整 */
}
.drawer.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
}
.drawer-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 0 50px 0;
  overflow: scroll;
}
.drawer__nav{
  width: 70%;
  padding: 80px 0;
}
.drawer__list {
  display: flex;
  row-gap: 40px;
  flex-wrap: wrap;
  margin-top: 90px;
}
.drawer__item{
  width:50%;
}
.drawer__link {
  color: var(--font);
  font-family: var(--en);
  font-size: 2.4rem;
}
.hamFlex{
  gap: 20px;
  justify-content: space-between;
  margin-top: 60px;
}
.nav2{
    margin-top: 40px;
    text-align: center;
}
.nav2 li{
    display: inline-block;
}
.nav2 li a{
  color: var(--font);
  font-size: 1.2rem;
  padding-right: 10px;
  border-right: 1px solid var(--font);
  margin-left: 4px;
}
.nav2 li:last-child a{
  border: none;
}
}
@media screen and (max-width: 500px) {
  .drawer__nav{
    width: 100%;
    padding: 64px 0;
  }
  .drawer-inner {
display: flex;
  justify-content: center;
  align-items: flex-start; /* 中央ではなく上寄せにする */
  height: 100%;
  overflow-y: auto;
  padding: 20px 20px; /* ここでのpadding-topは純粋な余白として使用 */
  }
  .drawer__list{
    row-gap: 24px;
    margin-top: 40px;
  }
  .hamFlex{
    margin-top: 40px;
  }
  .nav2{
    margin-top: 24px;
  }
}
/*========================================================
      main
=========================================================*/
#main{
  position: relative;
}
#main .mainImg{
    width: 90%;
    margin: 0 0 0 auto;
    text-align: right;
    position: relative;
    height: 100vh;
}
#main .mainImg::after{  
  content: "";
  position: fixed;
  width: 90%;
  height: 100vh;
  right: 0;
  background: url(../img/main_260521.jpg?1) no-repeat;
  background-size: cover;
  background-position: top center;
  z-index: -999;
}
#main .mainImg::before{
  content: "";
  position: absolute;
  background: url(../img/main_logo.png) no-repeat;
  background-size: contain;
  max-width: 750px;
  width: 100%;
  aspect-ratio: 750 / 158;
  left: 6.56%;
  bottom: 92px;
}
@media screen and (max-width: 1400px) {
  #main .mainImg::before{
    max-width: 600px;
    bottom: 40px;
  }
}
@media screen and (max-width: 1000px) {
  #main .mainImg{
    width: 100%;
    height: 90vh;
  }
  #main .mainImg::after{  
  width: 100%;
  height: 100vh;
  right: 0;
  background: url(../img/main_sp_260521.jpg?1) no-repeat;
  background-size: cover;
  background-position: center 33%;
}
  #main .mainImg::before{
    width: 80%;
    height: 13%;
    bottom: 178px;
}
#main .cvBtn2{
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 40px;
  z-index: 1;
  left: 5.56%;
  gap: 10px;
}
#main .cvBtn2 li a{
  font-family: var(--en);
  color: var(--base);
  width: 120px;
  height: 120px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  position: relative;
  font-size: 1.8rem;
  text-align: center;
}
#main .cvBtn2 li a:hover{
  opacity: 1;
}
#main .cvBtn2 li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: 0.4s;
}
#main .cvBtn2 li a:hover::before {
  width: 90px;
  height: 90px;
  border-color: var(--accent);
}
}
@media screen and (max-width: 500px) {
  #main{
  height: 85vh;
  }
  #main .mainImg::after{ 
    background-position: center;
  }
  .drawer__link {
    font-size: 1.8rem;
  }
  #main .cvBtn2 li a{
    width: 80px;
    height: 80px;
    font-size: 1.4rem;
  }
  #main .cvBtn2 li a::before{
      width: 80px;
      height: 80px;
  }
  #main .mainImg::before{
    bottom: 158px;
  }
}
/*========================================================
      topics
=========================================================*/
#topics{
  padding: 100px 0 0;
  width: 90%;
  margin: 0 0 0 auto;
  background: var(--base);
  overflow: hidden;
}
/* slider */
.sliderArea {
  padding-left: 6.25%;
}
.sliderArea.w300 {
  max-width: 300px;
}
.slider .slick-slide {
  margin: 0 25px;
}
.sliderArea {
  overflow: hidden;
}
.slick-slide img {
  width: 100%;
  height: auto;
  border: 1px solid #4d4d4d;
}
.slick-prev,
.slick-next {
  z-index: 1;
}
.slick-prev:before,
.slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: 1;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.slider .slick-slide{
  margin: 0 10px;  .
}
.slider .slick-list {
  margin: 0 -10px;
  padding-left: 0 !important;
  padding-right: 15% !important;
}
.thumb .slick-slide:hover {
  opacity: .7;
}
.slick-dots {
  display: none !important;
}
.arrow_box{
  gap: 12px;
  /* padding-left: 6.25%; */
}
.arrow_box img{
  max-width: 53px;
  /* width: 10%; */
  cursor: pointer;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.arrow_box2{
  gap: 12px;
  /* padding-left: 5.56%; */
}
.arrow_box2 img{
  max-width: 53px;
  width: 10%;
  cursor: pointer;
  transition: .4s all;
}
.arrow_box2 img:hover{
  opacity: .5;
}
.viewMorePc,
.viewMoreSp {
    position: relative;
    border: 1px solid var(--font);
    font-size: var(--font-size-xs);
    text-align: center;
}
.viewMorePc::before,
.viewMoreSp::before{
    content: "";
	display: block;
	width: 30px;
	height: 1px;
	background: var(--font);
	position: absolute;
	top: 0;
	bottom: 0;
	right: -15px;
	margin: auto;
}
.viewMorePc::after{
    content: "";
	display: block;
	width: 10px;
	height: 1px;
	background: var(--font);
	rotate: 30deg;
	position: absolute;
	right: -15px;
	top: 0;
	bottom: 0;
    margin-top: 22px;
}
.viewMoreSp::after{
    content: "";
	display: block;
	width: 10px;
	height: 1px;
	background: var(--font);
	rotate: 30deg;
	position: absolute;
	right: -15px;
	top: 0;
	bottom: 0;
    margin-top: 22px;
}
.viewMorePc {
    padding: 15px 55px;
}
.viewMoreSp {
    padding: 15px 55px;
    margin-top: 35px;
}
.viewMoreWrap{
    width: 60%;
}
.viewMoreWrap2{
    justify-content: right;
}
.arrow_box img{
  transition: .4s;
}
.arrow_box img:hover{
  opacity: 0.5;
}
@media screen and (max-width: 1000px) {
  #topics{
    width: 100%;
    padding: 64px 0 0;
  }
  .arrow_box2 img:hover{
    opacity: 1;
  }
}
@media screen and (max-width: 500px) {
.sliderArea {
  max-width: 100%;
  padding-left: 5.56%;
}
.arrow_box img{
    width: 40px;
    object-fit: contain;
}
.arrow_box2 img{
  max-width: 100%;
  width: 42px;
}
.slick-dotted.slick-slider{
  margin-bottom: 16px !important;
}
}
/*========================================================
      news
=========================================================*/
#news{
  padding: 100px 0 230px;
  width: 90%;
  margin: -1px 0 -160px auto;
  background: var(--base);
}
#news .flex{
  align-items: end;
  justify-content: space-between;
}
#news .newsItem{
    margin-top: 40px;
}
#news .newsItem li {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--font);
}
#news .newsItem li:last-child{
  margin-bottom: 0;
}
#news .newsItem li a{
    display: flex;
    align-items: center;
    width: 100%;
    font-size: var(--font-size-md);
}
#news .newsItem li .date{
  /* padding-right: 32px; */
  width: 130px;
}
#news .newsItem li .date .year{
  display: block;
  font-family: var(--en);
  color: var(--font);
  font-size: var(--font-size-lg);
  font-weight: bold;
  margin-bottom: -10px;
}
#news .newsItem li .date .monthAndDay{
  font-family: var(--en);
  color: var(--font);
  font-size: var(--font-size-xxl);
  font-weight: bold;
  line-height: 1.5;
}
#news .newsItem li .category span{
  font-family: var(--en);
  color: var(--font);
}
#news .newsItem li .category .release{
  background: #e53333;
}
#news .newsItem li .category .live{
  background: #f06500;
}
#news .newsItem li .category .event{
  background: #C6A25F;
}
#news .newsItem li .category .radio{
  background: #00B736;
}
#news .newsItem li .category .tv{
  background: #8600B0;
}
#news .newsItem li .category .magazine{
  background: #002DED;
}
#news .newsItem li .category .other{
  background: #b1b1b1;
}
#news .newsItem li .category span{
  background-color: var(--font);
  font-weight: bold;
  text-align: center;
  font-size: 1.2rem;
  padding: 5px 0;
  width: 80px;
  display: block;
}
#news .newsItem li .dateCategory{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 32px;
}
#news .newsItem li .newsTtl{
    color: var(--font);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 1000px) {
  #news{
    width: 100%;
    margin: -10px 0 -1px 0;
    padding: 64px 0 0;
  }
  #news .newsItem{
  margin-top: 32px;
  }
  #news .newsItem li {
  margin-bottom: 32px;
  padding-bottom: 32px;
  }
  #news .newsItem li a{
  display: block;
  }
  #news .newsItem li .newsTtl{
   display: -webkit-box; 
  -webkit-box-orient: vertical; 
  /* -webkit-line-clamp: 2; */
  overflow: hidden; 
  white-space: normal;
  }
  #news .newsItem li .dateCategory{
    margin-bottom: 12px;
  }
  #news .newsItem li .date{
    width: 120px;
    /* padding-right: 20px; */
  }
  #news .more {
    margin: 32px 0 0 auto;
  }
  #news .newsItem li:last-child{
    margin-bottom: 32px;
  }
#news .newsItem li .category{
  width: 100%;
}
}
/*========================================================
      member info
=========================================================*/
#memberInfo{
  padding: 30px 0 260px;
  width: 90%;
  margin: 0 0 -170px auto;
  background: var(--base);
}
#memberInfo h2{
  font-size: var(--font-size-ttl-md);
}
#memberInfo .wrap{
}
#memberInfo .memBox{
    justify-content: space-between;
  margin-top: 50px;
}
#memberInfo .memInfo{
  width: 50%;
  border: 1px solid var(--font);
  text-align: center;
}
#memberInfo .memInfo p{
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 30px 0;
  width: 90%;
  margin: 0 auto;
  font-size: 1.3rem;
}
#memberInfo .memInfo .name span{
  font-size: 2rem;
}
#memberInfo .memInfo .join{
  border: none;
}
#memberInfo .rBox{
    width: 45.77%;
}
#memberInfo .rBox .ttl{
  position: relative;
  padding: 0 0 20px 48px;
  border-bottom: 1px solid var(--font);
  margin-bottom: 35px;
  font-size: 1.2rem;
}
#memberInfo .rBox .ttl span{
  font-size: var(--font-size-md);
}
#memberInfo .rBox .ttl::before{
  content: "";
  position: absolute;
  background: url(../img/icon_info.png) no-repeat;
  background-size: contain;
  aspect-ratio: 1 / 1;
  max-width: 20px;
  width: 100%;
  top: 2px;
  left: 20px;
}
#memberInfo .rBox ul li{
  position: relative;
  padding: 0 24px 35px 56px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--font);
}
#memberInfo .rBox ul li::before{
  content: "";
  position: absolute;
  background: url(../img/icon_mail.png) no-repeat;
  background-size: contain;
  aspect-ratio: 100 / 73;
  max-width: 22px;
  width: 100%;
  top: 5px;
  left: 20px;
}
#memberInfo .rBox ul li a{
    color: var(--font);
}
#memberInfo .rBox .more{
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1000px) {
  #memberInfo{
    width: 100%;
    padding: 80px 0 200px;
  }
  #memberInfo .memBox{
    display: block;
    margin-top: 32px;
  }
  #memberInfo .memInfo{
    width: 100%;
  }
  #memberInfo .rBox{
    width: 100%;
    margin-top: 40px;
  }
  #memberInfo .rBox .more{
    margin: 32px 0 0 auto;
  }
}
/*========================================================
      video
=========================================================*/
#video{
  width: 90%;
  margin: -2px 0 -170px auto;
  background: var(--main);
  padding: 120px 0 250px;
  overflow-x: hidden;
}
#video .ttlFlex {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
#video .js-modal-video{
  /* margin-top: 50px; */
  position: relative;
  display: inline-block;
  width: 100%;
}
#video .js-modal-video::before{
  content: "";
  position: absolute;
  background: url(../img/play.png?1) no-repeat;
  background-size: contain;
  /* max-width: 167px;
  max-height: 167px; */
  width: 80px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
#video .sliderArea{
  margin-top: 40px;
}
#video iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
}
#video .videoTtl{
  margin-bottom: 20px;
  font-size: var(--font-size-md);
}
#video .more{
  max-width: 231px;
}
#video .more a{
  font-size: 1.2rem;
  padding: 16px;
}
#video .more span{
  font-family: var(--ja);
}
body.video-noscroll {
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  #video{
    width: 100%;
    margin: -10px 0 -80px 0;
    padding: 64px 0 150px;
  }
  /* #video .js-modal-video{
    margin-top: 32px;
  } */
  #video .js-modal-video::before{
    max-width: 120px;
    max-height: 120px;
  }
  #video .js-modal-video::before{
    max-width: 56px;
    max-height: 56px;
  }
}
@media screen and (max-width: 500px) {
  #video{
    margin: -10px 0 -40px 0;
    padding: 64px 0 90px;
  }
  #video .more{
    width: 180px;
  }
  #video .more a{
    padding: 12px 16px;
  }
}

/*========================================================
      fanclub
=========================================================*/
#fanclub{
  background: var(--fc);
  padding: 100px 0 120px;
  width: 90%;
  margin: -10px 0 -10px auto;
  position: relative;
  z-index: 1;
}
/* #fanclub::before{
  content: "";
  position: absolute;
  background: url(../img/fanclub_bg.png);
  background-repeat: repeat-x;
  background-size: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.07;
} */
#fanclub h2{
  position: relative;
}
#fanclub h2::before{
  content: "FAN CLUB ONLY";
  position: absolute;
  top: -20px;
  left: 0;
  font-family: var(--en);
  font-size: var(--font-size-lg);
  color: var(--accent);
}
  h2.forMember{
    color: var(--accent);
  }
  h2.forMember::before{
    display: none;
  }
  #fanclub h3{
    font-size: var(--font-size-ttl-md);
    font-weight: normal;
    line-height: 1;
    font-family: var(--en);
  }
  #fanclub h3::before{
    content: "FAN CLUB ONLY";
    position: absolute;
    top: -24px;
    left: 0;
    font-family: var(--en);
    font-size: var(--font-size-lg);
    color: var(--accent);
  }
@media screen and (max-width: 1000px) {
  #fanclub{
    width: 100%;
  }
  #fanclub h3::before{
    font-size: 1.3rem; 
    top: -16px;   
  }
  h2.forMember{
    text-align: center;
  }
  h2.forMember .jp{
    display: block;
    text-align: center;
  }
  h2.forMember::before{
    left: 50% !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
  }
}
@media screen and (max-width: 500px) {
  #fanclub{
    padding: 100px 0 70px;
    margin: -10px 0 -1px auto;
  }
  h2.forMember .jp{
    font-size: 1.3rem;
    margin-top: 10px;
  }
}
/*========================================================
      ticket_event
=========================================================*/
#ticket_event{
    padding-top: 90px;
}
#ticket_event h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  border-bottom: 36px solid var(--main);
  width: 100%;
  z-index: -1;
}
#ticket_event ul.eventList{
  gap: 20px;
  margin-top: 52px;
}
#ticket_event ul.eventList li{
  width: calc((100% - 20px) / 3);
}
#ticket_event .eventList li a{
  position: relative;
  display: block;
    transition: .4s all;
}
#ticket_event .eventList li a:hover{
  opacity: 1;
}
#ticket_event .more{
  margin: 0 0 0 auto;
  margin-top: 20px;
}
#ticket_event .eventList img{
  margin-bottom: 10px;
}
#ticket_event .eventList .eventTtl{
  margin-bottom: 10px;
  color: var(--font);
  font-size: var(--font-size-md);
}
#ticket_event .eventList .entry{
  color: var(--accent);
  font-size: 1.2rem;
}
@media screen and (min-width: 1001px) {
  #ticket_event li figure {
    position: relative;
    overflow: hidden;
  }
  #ticket_event li figure img{
    transition: all 0.5s;
  }
  #ticket_event li a:hover figure img {
    transform: scale(1.1);
}
  #ticket_event li a:hover p{
    text-decoration: underline;
  }
}
@media screen and (max-width: 1000px) {
  #ticket_event{
    padding-top: 60px;
  }
  #ticket_event h2::after{
    bottom: -10px;
    border-bottom: 25px solid var(--main);
  }
  #ticket_event ul.eventList{
    gap: 10px;
    margin-top: 32px;
  }
  #ticket_event ul.eventList li{
    width: calc((100% - 10px) / 2);
  }
  #ticket_event ul.eventList li:nth-child(3){
    display: none;
  }
  #ticket_event .more {
    margin: 32px 0 0 auto;
  }
}
@media screen and (max-width: 500px) {
  #ticket_event .more{
    margin: 16px 0 0 auto;
  }
  #ticket_event h3::after {
    bottom: -12px;
    border-bottom: 24px solid var(--main);
}
  #ticket_event ul.eventList li{
    width: 100%;
  }
  #ticket_event ul.eventList li:nth-child(2){
    display: none;
  }
  #ticket_event .eventList img{
    width: 100%;
    margin: 0 auto 10px;
  }
}
/*========================================================
      dilife
=========================================================*/
#dilife{
  padding-top: 100px;
}
#dilife .flex{
  align-items: center;
  gap: 15.46%;
  width: 94%;
  padding: 70px 0 65px 0;
  margin: 0 0 0 auto;
  background: var(--main);
  position: relative;
  z-index: 1;
}
#dilife .ttl{
  padding-left: 80px;
  width: 370px;
}
#dilife h3{
    margin-bottom: 16px;
}
#dilife .thumbnail img{
    max-width: 548px;
    width: 100%;
}
#dilife .dilifeTtL{
  margin-bottom: 40px;
}
@media screen and (min-width: 1500px) {
  #dilife .thumbnail img{
    max-width: 700px;
  }
}
@media screen and (max-width: 1200px) {
  #dilife h2 .jp{
    display: block;
  }
  #dilife .flex{
    gap: 5%;
  }
}
@media screen and (max-width: 1000px) {
  #dilife{
  padding-top: 64px;
  }
  #dilife .flex{
  margin: 0 5.56% 0 5.56%;
  width: auto;
  display: block;
  padding: 83px 8px 64px;
  }
  #dilife .ttl{
  padding-left: 0;
  width: 100%;
  }
  #dilife h3::before{
    left: 50% !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
  }
  #dilife h3 {
    text-align: center;
  }
  #dilife .thumbnail{
    text-align: center;
}
  #dilife .thumbnail img{
    margin: 0 auto 24px;
  }
  #dilife .more{
    margin: 0 auto;
  }
  #dilife .date{
    text-align: center;
  }
  #dilife .dilifeTtL{
    text-align: center;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 500px) {
  #dilife .thumbnail img{
    max-width: 260px;
    margin: 0 auto 32px;
  }
}
/*========================================================
      ticket_event
=========================================================*/
#ditv{
    padding-top: 130px;
}
#ditv h3::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  border-bottom: 36px solid var(--main);
  width: 100%;
  z-index: -1;
}
#ditv ul.tvList{
  gap: 20px;
  margin-top: 52px;
}
#ditv ul.tvList li{
  width: calc(50% - 10px);
}
#ditv .tvList li a{
  position: relative;
  display: block;
    transition: .4s all;
}
#ditv .tvList li a:hover{
  opacity: 1;
}
#ditv .more{
  margin: 24px 0 0 auto;
}
/* #ditv .tvList img{
  margin-bottom: 10px;
} */
#ditv .tvList .date{
  margin: 16px 0 0 0;
}
#ditv .tvList .date,
#ditv .tvList .tvTtl{
  color: var(--font);
  font-size: var(--font-size-md);
  margin-bottom: 5px;
}
@media screen and (min-width: 1001px) {
  #ditv li figure {
    position: relative;
    overflow: hidden;
  }
  #ditv li figure img{
    transition: all 0.8s;
  }
  #ditv li a:hover figure img {
    transform: scale(1.1);
}
  #ditv li a:hover p{
    text-decoration: underline;
  }
}
@media screen and (max-width: 1000px) {
  #ditv{
    padding-top: 80px;
  }
  #ditv h2::after{
    bottom: -10px;
    border-bottom: 25px solid var(--main);
  }
  #ditv ul.tvList{
    gap: 10px;
    margin-top: 32px;
  }
  #ditv ul.tvList li{
    width: 100%;
  }
  #ditv ul.tvList li:last-child{
    display: none;
  }
  #ditv li img{
    border-radius: 4px;
  }
  #ditv .more {
    margin: 32px 0 0 auto;
  }
}
@media screen and (max-width: 500px) {
  #ditv .more{
    margin: 16px 0 0 auto;
  }
  #ditv h3::after {
    bottom: -12px;
    border-bottom: 24px solid var(--main);
}
}
/*========================================================
      blog
=========================================================*/
#staffBlog{
  padding: 195px 0 0;
  margin: 0 0 0 auto;
  position: relative;
  z-index: 1;
}
#staffBlog .flex{
  align-items: end;
  justify-content: space-between;
}
#staffBlog .blogItem{
    margin-top: 40px;
}
#staffBlog .blogItem li {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--font);
}
#staffBlog .blogItem li:last-child{
  margin-bottom: 0;
}
#staffBlog .blogItem li a{
    display: flex;
    align-items: center;
    width: 100%;
}
#staffBlog .blogItem li .dateCategory{
  width: 11.64%;
}
#staffBlog .blogItem li .date .year{
  display: block;
  font-family: var(--en);
  color: var(--font);
  font-size: var(--font-size-lg);
  font-weight: bold;
  margin-bottom: -10px;
}
#staffBlog .blogItem li .date .monthAndDay{
  font-family: var(--en);
  color: var(--font);
  font-size: var(--font-size-xxl);
  font-weight: bold;
}
#staffBlog .blogItem li .blogTtl{
    color: var(--font);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: var(--font-size-md);
}
@media screen and (max-width: 1000px) {
  #staffBlog{
    width: 100%;
    margin: -10px 0 -1px 0;
    padding: 100px 0 0;
  }
  #staffBlog .blogItem{
  margin-top: 32px;
  }
  #staffBlog .blogItem li {
  margin-bottom: 32px;
  padding-bottom: 32px;
  }
  #staffBlog .blogItem li a{
  display: block;
  }
  #staffBlog .blogItem li .blogTtl{
   display: -webkit-box; 
  -webkit-box-orient: vertical; 
  -webkit-line-clamp: 2;
  overflow: hidden; 
  white-space: normal;
  }
  #staffBlog .blogItem li .dateCategory{
    margin-bottom: 12px;
  }
  #staffBlog .blogItem li .date{
    padding-right: 20px;
  }  
  #staffBlog .more {
    margin: 32px 0 0 auto;
  }
  #staffBlog .newsItem li:last-child{
    margin-bottom: 32px;
  }
}
/*========================================================
      d6Goods
=========================================================*/
#d6Goods{
  padding-top: 120px;
}
#d6Goods .flex{
  align-items: center;
  gap: 15.46%;
  width: 94%;
  padding: 70px 0 70px 0;
  margin: 0 0 0 auto;
  background: var(--main);
  position: relative;
  z-index: 1;
}
#d6Goods .ttl{
  padding-left: 80px;
  width: 370px;
}
#d6Goods h3{
    margin-bottom: 16px;
}
#d6Goods .thumbnail img{
    max-width: 548px;
    width: 100%;
}
#d6Goods .d6GoodsTtL{
  margin-bottom: 40px;
  font-size: var(--font-size-md);
  letter-spacing: 0.025rem;
}
@media screen and (min-width: 1500px) {
  #d6Goods .thumbnail img{
    max-width: 700px;
  }
}
@media screen and (max-width: 1200px) {
  #d6Goods h2 .jp{
    display: block;
  }
  #d6Goods .flex{
    gap: 5%;
  }
}
@media screen and (max-width: 1000px) {
  #d6Goods{
  padding-top: 64px;
  }
  #d6Goods .flex{
  margin: 0 5.56% 0 5.56%;
  width: auto;
  display: block;
  padding: 83px 8px 64px;
  }
  #d6Goods .ttl{
  padding-left: 0;
  width: 100%;
  }
  #d6Goods .d6GoodsTtL{
    text-align: center;
    margin-bottom: 24px;
  }
  #d6Goods h3::before{
    left: 50% !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
  }
  #d6Goods h3 {
    text-align: center;
  }
  #d6Goods .thumbnail{
    text-align: center;
}
  #d6Goods .thumbnail img{
  margin: 0 auto 24px;
  }
  #d6Goods .more{
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  #d6Goods .thumbnail img{
    max-width: 260px;
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 375px) {
  #d6Goods h3{
    font-size: 4.2rem;
  }
}

/*========================================================
      magazine
=========================================================*/
#dimag{
  padding-top: 100px;
}
#dimag .flex{
  align-items: center;
  gap: 26.77%;
  width: 94%;
  padding: 80px 0 70px 0;
  margin: 0 0 0 auto;
  background: var(--main);
  position: relative;
  z-index: 1;
}
#dimag .ttl{
  padding-left: 80px;
}
#dimag h2{
    font-size: clamp(5.2rem, 13.866vw, 7.5rem);
}
#dimag .vol{
  font-family: var(--en);
  font-size: var(--font-size-xl);
  margin-bottom: 50px;
  line-height: 1;
}
#dimag .vol span{
  font-size: var(--font-size-xxl);
}
#dimag .thumbnail{
  display: flex;
}
#dimag .thumbnail img{
  max-width: 205px;
  width: 100%;
  transform: rotate(10deg);
  margin-left: -40px;
}
@media screen and (min-width: 1700px) {
  #dimag .thumbnail img {
    max-width: 265px;
  }
}
@media screen and (max-width: 1310px) {
  #dimag .flex{
    gap: 20%;
  }
}
@media screen and (max-width: 1200px) {
  #dimag h2 .jp{
    display: block;
  }
  #dimag .flex{
    gap: 14%;
  }
  #dimag .thumbnail img {
    max-width: 185px;
}
}
@media screen and (max-width: 1000px) {
  #dimag{
  padding-top: 64px;
  }
  #dimag h3{
    text-align: center;
  }
  #dimag h3::before{
    left: 50% !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    font-size: 1.3rem;
    top: -16px;
  }
  #dimag .flex{
  margin: 0 5.56% 0 5.56%;
  width: auto;
  display: block;
  padding: 83px 8px 64px;
  }
  #dimag .ttl{
  padding-left: 0;
  }
  #dimag h2::before{
    left: 50% !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
  }
  #dimag h2 {
    text-align: center;
  }
  #dimag h2 .jp{
    text-align: center;
  }
  #dimag .thumbnail{
    text-align: center;
    justify-content: center;
    margin-left: 60px;
}
  #dimag .thumbnail img{
    margin-bottom: 34px;
    max-width: 150px;
  }
  #dimag .more{
    margin: 0 auto;
  }
  #dimag .vol{
    text-align: center;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 500px) {
  #dimag .thumbnail{
    margin-left: 0;
  }
  #dimag .thumbnail img{
    max-width: 100px;
    margin: 0px -16px 32px -8px;
  }
}
@media screen and (max-width: 375px) {
  #dimag h2{
    font-size: 4.2rem;
  }
}
/*========================================================
      download
=========================================================*/
#wallpaper{
  padding-top: 55px;
}
#wallpaper .flex{
  align-items: center;
  gap: 16.46%;
  width: 94%;
  padding: 60px 0 60px 0;
  margin: 0 0 0 auto;
  background: var(--main);
  position: relative;
  z-index: 1;
}
#wallpaper .ttl{
  padding-left: 80px;
}
#wallpaper h3.setting{
  margin-bottom: 50px;
}
#wallpaper h3.setting::before{
  display: none;
}
#wallpaper .thumbnail {
  position: relative;
  width: 100%;
  max-width: 473px;
}
#wallpaper .thumbnail .thumpc {
  position: relative;
  width: 100%;
  aspect-ratio: 1116 / 642;
  background: url(../img/download_pc.png) no-repeat center / contain;
}
#wallpaper .thumbnail .thumpc img {
  position: absolute;
  width: 84.5%;
  top: 47%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: inset(0 5%);
}
#wallpaper .thumbnail .thumsp {
  position: absolute;
  width: 21%;
  aspect-ratio: 234 / 482;
  bottom: 0;
  right: 0;
  background: url(../img/download_sp.png) no-repeat center / contain;
}
#wallpaper .thumbnail .thumsp::before {
  content: "";
  position: absolute;
  background: url(../img/download_sp_parts.png) no-repeat center / contain;
  aspect-ratio: 120 / 21;
  width: 55%;
  top: 4%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#wallpaper .thumbnail .thumsp img {
  position: absolute;
  width: 90%;
  top: 3%;
  right: 4%;
  clip-path: inset(0 1% round 12px);
}
@media screen and (min-width: 1700px) {
  #wallpaper .thumbnail {
    max-width: 700px;
  }
}
@media screen and (max-width: 1310px) {
  #wallpaper .flex{
    gap: 9.46%;
  }
}
@media screen and (max-width: 1200px) {
  #wallpaper h2 .jp{
    display: block;
  }
  #wallpaper .flex{
    gap: 0;
  }
  #wallpaper .ttl{
    width: 50%;
  }
  #wallpaper .thumbnail{
    width: 400px;
  }
}
@media screen and (max-width: 1000px) {
  #wallpaper{
  padding-top: 24px;
  }
  #wallpaper h3::before{
    left: 50% !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
    font-size: 1.3rem;
    top: -16px;
}
  #wallpaper .flex{
  margin: 0 5.56% 0 5.56%;
  width: auto;
  display: block;
  padding: 83px 8px 64px;
  }
  #wallpaper h3{
    text-align: center;
  }
  #wallpaper h3.setting{
    margin-bottom: 24px;
  }
  #wallpaper .ttl{
    width: 100%;
  padding-left: 0;
  }
  #wallpaper h2::before{
    left: 50% !important;
    transform: translateX(-50%) !important;
    -webkit-transform: translateX(-50%) !important;
    -ms-transform: translateX(-50%) !important;
  }
  #wallpaper h2 {
    text-align: center;
  }
  #wallpaper h2 .jp{
    text-align: center;
  }
  #wallpaper .thumbnail {
    text-align: center;
    width: 90%;
    margin: 0 auto 32px;
}
  #wallpaper .thumbnail img{
  margin-bottom: 32px;
  }
  #wallpaper .more{
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  #wallpaper .thumbnail img{
    max-width: 260px;
    margin: 0 auto 32px;
  }
  #wallpaper h2{
    font-size: 4.8rem;
  }
}
/*========================================================
      shop
=========================================================*/
#shop{
  width: 90%;
  margin: -160px 0 -1px auto;
  padding: 240px 0 120px;
  background:var(--main);
  position: relative;
  overflow: hidden;
}
#shop::before{
  content: "";
  position: absolute;
  background: url(../img/di-logo_bg.png) no-repeat center / contain;
  aspect-ratio: 406 / 536;
  width: 406px;
  right: 6.17%;
  top: 200px;
}
#shop h3{
  font-size: var(--font-size-ttl-md);
  font-weight: normal;
  line-height: 1;
  font-family: var(--en);
}
#shop h3::before{
  content: "FAN CLUB ONLY";
  position: absolute;
  top: -24px;
  left: 0;
  font-family: var(--en);
  font-size: var(--font-size-lg);
  color: var(--accent);
}
#shop h3.setting::before{
  display: none;
}
#shop .flex{
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}
#shop .relaseInfo{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
#shop .relaseInfo figure{
  width: calc(50% - 20px);
}
#shop .relaseInfo .detail{
  width: calc(50% - 20px);
}
#shop .relaseInfo .detail .date{
  color: var(--accent);
  font-size: var(--font-size-lg);
}
#shop .relaseInfo .detail .ttl{
  font-size: var(--font-size-xl);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--font);
}
#shop .relaseInfo .detail .privilege{
  font-size: var(--font-size-md);
}
@media screen and (max-width: 1000px) {
  #shop{
    width: 100%;
  }
  #shop::before{
    width: 156px;
  }
  #shop .more{
    margin: 32px 0 0 auto;
  }
  #shop .relaseInfo{
    display: block;
  }
  #shop .relaseInfo figure{
    width: 100%;
    margin-bottom: 32px;
  }
  #shop .relaseInfo .detail{
    width: 100%;
  }
}
@media screen and (max-width: 500px) {

}
/*========================================================
      cv
=========================================================*/
#cv{
  height: 85vh;
  position: relative;
  width: 90%;
  margin: -10px 0 0 auto;
}
#cv .wrap{
    position: absolute;
    bottom: 40px;
}
#cv img{
    max-width: 740px;
    width: 100%;
}
#cv .cvBtn{
    display: flex;
    gap: 20px;
    margin-top: 24px;
}
#cv .cvBtn li a{
  width: 120px;
  height: 120px;
  font-size: var(--font-size-xl);
}
#cv .cvBtn li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: 0.4s;
}
#cv  .cvBtn li a:hover::before {
  width: 130px;
  height: 130px;
  border-color: var(--font);
}
@media screen and (max-width: 1000px) {
  #cv{
    width: 100%;
  }
  #cv .cvBtn li a{
    font-size: 1.8rem;
  }
  #cv img{
     max-width: 600px;
     width: 90%;
  }
}
@media screen and (max-width: 500px) {
  #cv .cvBtn{
    gap: 10px;
  }
  #cv .cvBtn li a{
    width: 80px;
    height: 80px;
    font-size: 1.4rem;
  }
  #cv .cvBtn li a::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: 0.4s;
  }
  #cv .cvBtn li a:hover::before {
    width: 90px;
    height: 90px;
    border-color: var(--accent);
  }
}
/*========================================================
      bnr
=========================================================*/
#bnr{
  padding: 70px 0 90px;
  width: 90%;
  margin: -10px 0 0 auto;
  background: #D8D8D8;
  background: linear-gradient(90deg,rgba(216, 216, 216, 1) 0%, rgba(241, 241, 241, 1) 50%, rgba(216, 216, 216, 1) 100%);
}
#bnr .bnrList{
  display: flex;
  flex-wrap: wrap;
  gap: 20px 10px;
}
#bnr .bnrList li{
  width: calc((100% - 40px) / 5);
}
#bnr .bnrList li a{
  transition: .4s all;
}
#bnr .bnrList li a:hover{
  opacity: 0.6;
}
#bnr .bnrList li a img{
  border: 2px solid #ccc;
}
@media screen and (max-width: 1000px) {
  #bnr{
    width: 100%;
    margin: 0;
    padding: 40px 0 40px;
  }
  #bnr .bnrList{
    gap: 10px;
  }
  #bnr .bnrList li {
    width: calc((100% - 30px) / 4);
  }
  #bnr .bnrList li a:hover{
    opacity: 1;
  }
}
@media screen and (max-width: 500px) {
  #bnr .bnrList{
    gap: 10px;
  }
  #bnr .bnrList li {
    width: calc((100% - 10px) / 2);
  }
}
/*========================================================
      footer
=========================================================*/
footer{
  background: var(--main);
  padding: 80px 0 80px;
  width: 90%;
  margin: 0 0 0 auto;
}
footer .nav2{
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--font);
}
footer .nav2 li{
  display: inline-block;
}
footer .nav2 li a{
  color: var(--font);
  font-size: var(--font-size-xs);
  padding-right: 10px;
  border-right: 1px solid var(--font);
  margin-left: 4px;
}
footer .nav2 li:last-child a{
border: none;
}
footer .flex{
  justify-content: space-between;
}
footer .logo li a img{
  max-width: 328px;
  width: 100%;
}
footer .copylight{
  font-size: 1.0rem;
  text-align: right;
  letter-spacing: 0.1rem;
  line-height: 1.8;
}
footer .copylight a{
  color: var(--font);
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1000px) {
  footer{
    width: 100%;
    padding: 20px 0;
    border-top: 2px solid var(--font);
  }
  footer .copylight{
  text-align: center;
  }
  footer .flex{
    justify-content: center;
  }
}
/*==============
    notfound
===============*/
#notfound h2 {
    /* text-align: center; */
}
#notfound h3 {
    font-size: 2rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 48px;
    border-bottom: 0;
}
#notfound .center {
    text-align: center;
}
#notfound .center a {
    font-size: 1.6rem;
    font-family: var(--en);
    padding: 15px 0;
    border: 1px solid var(--black);
    width: 100%;
    display: block;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 5px;
    transition: 0.4s all;
}
#notfound .center a:hover {
    opacity: 0.5;
}
@media screen and (max-width: 500px) {
    #notfound h3 {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }
    #notfound .center a {
        padding: 16px 0;
        max-width: initial;
        width: 100%;
    }
}
/*==============
    asct
===============*/
#asct .container {
    width: 100%;
}
#asct .container dl {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}
#asct .container dl:last-child {
    border-bottom: none;
}
#asct .container dl dt {
    width: 10%;
    font-weight: bold;
}
#asct .container dl dd {
    width: 80%;
}
@media screen and (max-width: 768px) {
    #asct .container dl dt {
        width: 20%;
    }
}
@media screen and (max-width: 500px) {
    #asct .container dl {
        display: block;
    }
    #asct .container dl dt {
        width: 100%;
        margin-bottom: 5px;
    }
    #asct .container dl dd {
        width: 100%;
    }
}
/*==============
    pp
===============*/
#pp .boxWrap,
#ma .boxWrap,
#siteaccess .boxWrap {
    margin-bottom: 56px;
    line-height: 1.8;
}
#pp .boxWrap h3,
#ma .boxWrap h3,
#siteaccess .boxWrap h3 {
    font-size: 1.8rem;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--font);
    margin-bottom: 22px;
    color: var(--accent);
}
#pp .boxWrap .indent,
#ma .boxWrap .indent,
#siteaccess .boxWrap .indent {
    text-indent: -1.8rem;
    padding-left: 1.8rem;
    display: block;
}
#pp .boxWrap a,
#ma .boxWrap a,
#siteaccess .boxWrap a {
    text-decoration: underline;
}
@media screen and (max-width: 500px) {
    #pp .boxWrap h3,
    #ma .boxWrap h3,
    #siteaccess .boxWrap h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    #pp .boxWrap,
    #ma .boxWrap,
    #siteaccess .boxWrap {
        margin-bottom: 32px;
    }
}
/*==============
    ma
===============*/
#ma{
  background: var(--base);
  width: 100%;
  margin: 0;
  padding: 200px 0 100px;
}
#ma h5{
  font-family: var(--en);
  font-size: clamp(3.2rem, 7.27vw, 4rem);
  margin-bottom: 48px;
}
#ma .maTtl{
    font-size: 1.8rem;
    padding-bottom: 17px;
    margin-bottom: 19px;
    line-height: 1.8;
    font-weight: bold;
}
#pp .boxWrap h4,
#ma .boxWrap h4 {
    font-weight: bold;
    margin-bottom: 1rem;
}
#ma .boxWrap .indent2 {
    text-indent: -1.8rem;
    padding-left: 4rem;
    display: block;
}
@media screen and (max-width: 500px) {
    #ma{
      padding: 100px 0 40px;      
    }
    #ma h5{
      margin-bottom: 32px;
    }
    #pp .boxWrap h4,
    #ma .boxWrap h4 {
        font-size: 1.4rem;
    }
}
/*==============
    faq
===============*/
.faqtitle {
    pointer-events: none;
}
#faq a {
    color: var(--sub-color);
}
#faq .wrapper li {
    margin-bottom: 56px;
}
#faq .wrapper li:last-child {
    margin-bottom: 0;
    line-height: 1.8;
}
@media screen and (max-width: 768px) {
    .faqtitle {
        pointer-events: all;
    }
    .toggle {
        display: none;
    }
    #faq.subpage h3 {
        font-size: 1.4rem;
        border-bottom: none;
        text-indent: -2.8rem;
        padding-left: 2.8rem;
        background: var(--gray);
        padding: 16px;
        padding-left: calc(2.8rem + 16px);
    }
    .toggle li {
        padding: 0 16px;
        font-size: 1.4rem;
    }
    #faq .wrapper li {
        margin-bottom: 24px;
    }
}
/*  26.05.21  */
#memberInfo .memInfo p.name {
    border-bottom: none;
    padding-bottom: 0;
}
#wallpaper .thumbnail .thumpc img {
    clip-path: inset(0 1% 0% 8%);
    left: 47%;
}
/* 251007 add */
#popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s, visibility 0.3s;
}
.popup-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}
#popup-overlay.off {
    display: none !important;
}
#popup-content {
    /* background-color: #000;
    width: 90%;
    max-width: 900px; */
    width: auto;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#popup-content .inner {
    padding: 10px;
}
#popup-content .ttl {
    font-size: 16px;
    margin-bottom: 16px;
}
#close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: transparent;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    z-index: 999;
}
.popup-image-area img {
    height: 60vh;
    object-fit: contain;
}
.no-scroll {
    overflow: hidden !important;
    position: fixed;
    width: 100%;
}
@media screen and (max-width: 1000px) {
  #popup-content {
    width: 90%;
  }
  .popup-image-area img {
    height: auto;
  }
}