@charset "UTF-8";


body {
  font-family: "Red Hat Display","Noto Serif JP", sans-serif;
  color: var(--color_w);
  background: var(--color_b);
  font-weight: 300;
  font-size: 16px;
  font-size: 1rem; }
*{
    box-sizing: border-box;
}

:root{
    --color_w:#fff;    
    --color_b:#000;
    --color_gray1:#262626;
    --color_gray2:#5D5D5D;
    --color_main:#B7B8A1;}

/*共通*/
select{
    height: auto !important;
    background: #fff !important;
}
a{
    text-decoration-line: none;
    color: var(--color_gray4);}
.color-w,.color-w a{
    color:var(--color_w);}
.color-gray1,.color-gray1 a{
    color:var(--color_gray1);}
.color-gray2,.color-gray2 a{
    color:var(--color_gray2);}
.color-main,.color-main a{
    color:var(--color_main);}
.color-b,.color-b a{
    color:var(--color_b);}
.back-w{
    background-color:var(--color_w);}
.back-gray1{
    background-color:var(--color_gray1);}
.back-gray3{
    background-color:var(--color_gray3);}
.back-b{
    background-color:var(--color_b);}
.font-small{
    font-size: 90%;}
.font-bold{
    font-weight: bold;}
.font-ita{
    font-style: italic;}
.text-c{
    text-align: center;}
.font-en,.font-en a{
    font-family: 'MADE Mirage',sans-serif;}
.img-main img{
    filter: invert(84%) sepia(5%) saturate(833%) hue-rotate(24deg) brightness(87%) contrast(88%) !important;

}
.pc_only{
    display: block;}
.sp_only{
    display: none;}
a img:hover{
    opacity: 0.8;
    transition: 0.5s;}
li{
    list-style: none;}
.ob-c{
    object-position: center center;
}
.ob-b{
    object-position: bottom center;
}
.ob-t{
    object-position: top center;
}

/* Flex  ------------------------------------*/
.flexwrap{
 display: -webkit-flex;
 display: flex;
 flex-wrap: wrap;
 -webkit-flex-wrap: wrap;
}
.flexnowrap{
 display: -webkit-flex;
 display: flex;
 flex-wrap: nowrap;
 -webkit-flex-wrap: nowrap;
}
.JCfs{
 justify-content: flex-start;
 -webkit-justify-content: flex-start;
}
.JCfe{
 justify-content: flex-end;
 -webkit-justify-content: flex-end;
}
.JCc{
 justify-content: center;
 -webkit-justify-content: center;
}
.JCsb{
 justify-content: space-between;
 -webkit-justify-content: space-between;
}
.AIc{
    align-items: center;
    -webkit-align-items: center;
}
.AIs{
    align-items: stretch;
    -webkit-align-items: stretch;
}
.AIe{
    align-items: end;
    -webkit-align-items: end;
}
.mt05{
    margin-top: 0.5em;
}
.mt10{
    margin-top: 1em;
}
.mt20{
    margin-top: 2em;
}
.mt30{
    margin-top: 3em;
}
.mb05{
    margin-bottom: 0.5em;
}
.mb10{
    margin-bottom: 1em;
}
.mb20{
    margin-bottom: 2em;
}
.mb30{
    margin-bottom: 3em;
}
.mb50{
    margin-bottom: 5em;
}
.pl10{
    padding-left: 1em;
}
.pb30{
    padding-bottom: 3em;
}
.pt30{
    padding-top: 3em;
}

.line-h17{
    line-height: 1.7;
}
/*アニメチラつき防止*/
.preload .wow.slideInRight,
.preload .wow.fadeIn {
	opacity: 0 !important;
}
.clearfix:after {
  content: " ";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  line-height: 0; }
.wrapper {
  width: 100%; 
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.area{
    margin: 80px auto 1em;
    width: 100%;
    padding: 2em 0 1em;
}
/* ページ送り */
.wp-pagenavi{
    margin: 3em 0 5em;
    width: 100%;
    text-align: right;
}
.film-f .wp-pagenavi,
.photo-f .wp-pagenavi{
    text-align: center !important;
}
.wp-pagenavi a, .wp-pagenavi span{
    border-radius: 50%;
    background-color: var(--color_main);
    color: var(--color_b);
    padding: 3px 10px !important;
    margin: 5px !important;
    border: none !important;
}
.wp-pagenavi a, .wp-pagenavi span.pages{
    background-color: var(--color_b) !important;
    color: var(--color_main);
}
.wp-pagenavi a:hover{
    background-color: var(--color_main) !important;
    color: var(--color_b);
    transition: 0.3s;
}

/*ヘッダー*/
header {
  padding: 0;
  position: fixed;
  z-index: 9999;
  width: 100%; 
  height: 80px;
  background-color: var(--color_b);
  border-bottom: 1px solid var(--color_main);
}
/*ヘッダー画像*/
.header{
    width: 80%;
    height: 80px;
    margin: auto;
}
header .header-logo{    
    width: 50%;
	/* じわっと画像が表示される */
 	animation: fadeIn 1s ease 0s 1 normal;
    -webkit-animation: fadeIn 1s ease 0s 1 normal;
} 
header .header-logo img{
    width: auto;
    height: 40px;
}
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
} 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/*　見出し　*/
h2 {
  padding: 1.5rem 0.3rem 0.3rem;
  font-size: 4em;
  font-weight: 300;
}

/* ハンバーガーメニュー */
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background:var(--color_b);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 700;
  opacity: 0;
  background-image: url(../images/menu_back.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
.open nav {
  right: 0;
  opacity: 1;   
}
nav .inner {
  width: 95%;
  height: 100vh;
  padding: 100px 30px;
  margin: auto;
}
nav .inner .inner-box{
    position: relative;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
nav .inner .img-main{
    width: 40%;
    text-align: center;
}
nav .inner .menu-main_menu-container{
    width: 60%;
}
nav .inner .img-main img{
    width: 90%;
    max-width: 300px;
    height: auto;
}
nav .inner ul {
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;    
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    width: 80%;
    list-style: none;
    margin: 0 0 0 auto;
    padding: 0;
}
nav .inner ul li {
  width: 50%;
  margin: 0;
  text-align: left;
  z-index: 444;
}
nav .inner ul li:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: rgba(255,255,255,0.5);
  transition-duration: 1s;
}
nav .inner ul li:hover:after{
  width: 50%;
}
nav .inner ul li a {
  display: block;
  color: var(--color_w);
  font-size: 16px;
  padding: 15px 0;
  text-decoration: none;
  transition-duration: 0.2s;
  font-weight: 900;
}
nav .inner ul li:nth-last-child(-n+4){
    width: 50px;
}    

/* toggle_btn */
.toggle_btn {
  display: block;
  position: fixed;
  top: 20px;
  right: calc(10% - 50px);
  width: 55px;
  height: 55px;
  transition: all .5s;
  cursor: pointer;
  z-index: 9999;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 3px;
  background-color: var(--color_w);
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  width: 35px;
  top: 10px;
  left: 13px;
}
.toggle_btn span:nth-child(2) {
  width: 35px;
  top: 20px;
  left: 13px;
}
.toggle_btn span:nth-child(3) {
  width: 35px;
  top: 30px;
  left: 13px;
}
.toggle_btn:hover{
    color: --var(--color_main);   
}
.open .toggle_btn{
    position: fixed;
}
.open .toggle_btn span {
  background-color: var(--color_w);
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-320deg);
  transform: translateY(10px) rotate(-320deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  width: 35px;
  left: 13px;    
  -webkit-transform: translateY(-10px) rotate(320deg);
  transform: translateY(-10px) rotate(320deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0.5;
  z-index: 2;
  cursor: pointer;
}

/* PAGE TOP*/

#page_top{
  width: 30px;
  height: auto;
  position: fixed;
  right: 30px;
  bottom: -50px;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 30px;
  height: auto;
  text-decoration: none;
}
#page_top a::before{
  content: url(../images/pageup.svg);
  position: absolute;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  filter: brightness(0) invert(1);
}
/*HEADER MENU共通*/
header .header-top-menu{
    position: relative;
    z-index: 9999;
}
header .header-top-menu ul{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: flex-end;
    -webkit-justify-content: flex-end;
    align-items: center;
    -webkit-align-items: center;
    z-index: 9999;
}
header .header-menu-starry ul{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;    
}
header .header-top-menu li{
    text-align: right;
    padding-right: 10px;
    margin: 0 10px;
    height: 30px;
    line-height: 30px;
}
.inner ul#STARRY li a,
header .header-top-menu li a{
    display: block;
    color: var(--color_w);
    padding: 0 10px;
    font-weight: bold;}

/* submenu */
  ul#Primary li {
    position: relative;
  }
  ul#Primary .sub-menu {
    position: absolute;
    top: -45px;
    left: -30%;
    overflow: hidden;
    width: 250px !important;
    height: 0;
    transition: .8s;
    transform: translateY(-8%);
    opacity: 0;
    z-index: 555;
  }
 .footer-box-r ul#Primary .sub-menu{
    top: -45px;
    left: -40%; 
}
  ul#Primary li:hover .sub-menu {
    height: auto;
    transform: translateY(0);
    opacity: 1;
    z-index: 555;
  }
 .footer-box-r ul#Primary .sub-menu li,
  ul#Primary .sub-menu li {
    display: block;
    margin-left: 0;
    padding: 0;
    background-color: var(--color_b);
    border-bottom: 1px solid #ddd;
    width: 100%;
  }
.footer-box-r ul#Primary .sub-menu li{
    width: 250px !important;
}
 
  ul#Primary .menu-item-has-children:nth-last-child(1) .sub-menu,
  ul#Primary .menu-item-has-children:nth-last-child(2) .sub-menu {
    right: 0;
    left: auto;
  }
 
  ul#Primary .sub-menu li a {
    padding: 1em;
  }

/* header*/
header nav .inner .header-menu-starry ul li{
    margin: 10px !important;
    width: calc((100% - 40px)/2);
    border: 1px solid #fff;
    background: none !important;
}
header nav .inner .header-menu-starry ul li a{
    padding:0.1em 1em !important;
}
header .header-top-menu li:hover{
    transition: 0.5s;
    border-bottom: 3px solid var(--color_main);
}
header .header-top-menu li a:hover{
    transition: 0.5s;
    color: var(--color_main);
}

/* TOP画像 */
.top-box .top-img{
    position: relative;
    overflow: hidden;
}
.top-back{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/home_top_back.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom center;    
    right: -400px;
    top: 200px;
    z-index: -1;
}
.top-gra{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0) 20%, var(--color_b) 90%);
    z-index: 10;
    top: 0;
    left: 0;
}
.top-box .top-img-img{
    margin-top: 6%;
    width: 40%;
    border-radius: 0 50px 0 0;
    filter: grayscale(100%);
	/* じわっと画像が表示される */
 	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;    
}
.top-box h1.logo-top{
    position: absolute;    
    z-index: 15;       
    top:50%;
    left:55%;
    transform:translate(-55%,-50%);    
    mix-blend-mode: exclusion;
	/* じわっと画像が表示される */
 	animation: fadeIn 2.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 2.5s ease 0s 1 normal; 
}
.top-box .top-img .logo-top img{
    max-width: 860px;
}

/* TOP BANNER */
/* Slick 一瞬縦並びを回避　*/
.slider-banner{
  display: none;
}
.slider-banner.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}

.slider-f{
    max-width: 1200px;
    width: 80%;
    margin: 0 auto;
}
.slider-banner{
}
/*Slick中央拡大*/
.slider-banner img {
  transform: scale(.6);
  transition: transform .3s;
}
.slider-banner .slick-center img {
  transform: scale(.8);
}
.slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 30px;
}
img.slide-arrow{
  transform: scale(1);
  width: 50px;
  height: auto;
}
.prev-arrow {
  left: -60px;
}
.next-arrow {
  right: -60px;
}

/* TOP共通*/
.f-frame,
.news-f{
    max-width: 1400px;
    width: 95%;
    margin: auto;
    line-height: 1.7;
}

/* TITLE共通 */
h2.title{
    position: relative;
    font-family: 'MADE Mirage',sans-serif;    
    font-size: 60px;
    font-weight: 700;
    padding-left: 1em;
    color: var(--color_main);
    margin-bottom: 1em;
}
h2.title::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 50px;
    height: 70%;
    background-image:url(../images/title_icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;    
    left: 0;
}

/* TOP MOVIE+MEMBERSHIP背景　*/
.top-back2-f{
    position: relative;
    width: 100%;
}
.top-back2{
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../images/home_middle_background.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;    
    z-index: -1;
    top: -10%;
}

/* TOP MOVIE*/
.top-video-f .video{
    max-width: 1400px;
    margin: auto;
    width: 95%;
    padding: 15px;
    border-radius: 0 50px;
    border: 4px solid var(--color_main);    
    position: relative;
    overflow: hidden;
}
.top-video-f .top-video-thum img{
    width: 100%;
    height: auto;
    border-radius: 0 50px;
    border: 4px solid var(--color_main);
}
.top-video-f .mejs-poster{
    background-color: rgba(0,0,0,0.5);
}
.top-video-f .mejs-poster img,
.top-video-f .mejs-poster{
    border-radius: 0 50px;
    filter: grayscale(100) blur(20px);
    width: calc(100% + 40px) !important;
    height: calc(100% + 40px) !important;
    margin: -20px;
}
/*動画バー*/
.top-video-f .mejs-controls{    
    border-radius: 0 0 0 50px;
}
/*動画バー*/
.top-video-f .wp-video-shortcode,
.top-video-f iframe{
    border-radius: 0 50px;
    overflow: hidden
}
/* 再生ボタン */
.top-video-f .mejs-overlay-button{
    filter: invert(79%) sepia(18%) saturate(224%) hue-rotate(24deg) brightness(89%) contrast(94%)!important;    
}

/* TOP NEWS */
.news-box{
    margin-right: 20px;        
    width: calc((100% - 40px)/3);
    border: 1px solid var(--color_main);
    border-radius: 0 20px;
    padding: 20px;
}
.news-box:last-child{
    margin-right: 0;        
}
.news-box a{
    display: block;
}
.news-box:hover{
    background-color: var(--color_main);
    transition: 0.5s;
}
.news-box p{
    margin: 0.5em 0 3em;
    font-weight: 400;
    font-size: 16px;
}
.single-f .cat,
.news-box .cat{
    border-radius: 15px;
    padding: 5px 15px;
    color: var(--color_b);
    background-color: var(--color_main);
    margin-right: 10px;
    font-weight: 700;
    font-size: 12px;
}
.news-box h3{
    font-size: 20px;
    margin-bottom: 1em;
}
.moreall {
    margin: 2em auto;
      display: block;
      position: relative;
      text-align: center;
      padding: 12px 30px 12px 0;
      max-width: 200px;
      font-size: 16px;
      font-weight: bold;
      color: var(--color_b);
      background-color: var(--color_main);
      border-radius: 25px 0;
      text-decoration: none;
    }
.moreall::before {
      content: "";
      position: absolute;
      width: 20px;
      height: 20px;
      top: 50%;
      right: 30px;
      transform: translateY(-50%);
      background: var(--color_b);
      mask: url("../images/news-more.svg") no-repeat center right / contain;
      -webkit-mask: url("../images/news-more.svg") no-repeat center right / contain;
    }
.moreall:hover {
      background-color: transparent;
      color: var(--color_main);
    }
.moreall:hover::before {
      background: var(--color_main);
    }

.wp-video{
    width: 100% !important;
}
.wp-video-shortcode,
.video iframe {
  aspect-ratio: 16 / 9;
  width: 100% !important;
  height: auto;
}

/*　TOP MEMBERSHIP　*/
.top-membership{
    position: relative;
}
.top-membership h2.title{
    top: 2.5em;
}
.top-membership-f{
    padding: 15em 3em 3em;
    background-image: url(../images/fanclub.png),url(../images/top_membership_f.svg);
    background-position: bottom 3px right,bottom center;
    background-size: 60%,contain;
    background-repeat: no-repeat,no-repeat;
}
.top-membership-f h3{
    font-weight: 900;
    font-size: 64px;
    padding: 0 0 0.5em;
}
.top-membership-f .top-membership-text{
    margin-bottom: 3em;
}
.top-membership-f .moreall{
    margin: 2em 0;
    max-width: 300px;
}


/*アーカイブ */

/*NEWS ---------------- */
.news-box-f{
    100%;
}
.news-l ul li{
    padding: 0 0 20px;
}
.news-r{
    width: calc(100% - 150px);
}
.news-box-f .text{
    width: 100%;
    padding-left: 15px;
}
.news-box-f .text .day{
    font-size: 14px;
}
.news-box-f .text h3{
    font-size: 26px;
    font-weight: 700;
}
.news-box-f .cat{
    border-radius: 15px;
    padding: 5px 10px;
    color: var(--color_b);
    background-color: var(--color_main);
    margin-left: 10px;
    font-weight: 700;
    font-size: 12px;
}
.news-box-f .text .text-ex{
    color: #6D6D6D;
    font-weight: 700;
    line-height: 1.8;
    word-break: break-word;
}
.news-box-f .text .more{
    font-weight: 700;
    font-size: 26px;
}
.news-single{
    width: 95%;
    margin: auto;
    max-width: 1200px;
}
.news-single p{
    font-size: 100%;
}
.news-day{
    height: 45px;
    line-height: 45px;
    padding-right: 20px;
}
.news-single .cat-menu{
    margin-bottom: 30px;
}

/*カテゴリ ---------------- */
.cat-menu div{
    margin: 10px;
    height: 25px;
    padding: 0 10px;
    line-height: 23px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}
.cat-menu div:hover{
    transition: 0.5s;
}
.cat-menu div a{
    display: block;
    color: var(--color_w);
}
.cat-menu div a:hover{
    border-bottom:2px solid var(--color_main);
    transition: 0.3s;
}
.cat-menu .current{
    border-bottom:2px solid var(--color_main);
    color: var(--color_main);
}
.single-f .cat-menu div{
    background-color: var(--color_main);
    border-radius: 15px;
    color: var(--color_b);
    font-weight: 700;
    margin: 0 10px 0 0;
}

/*SINGLE ---------------- */
.single-f .cat{
    padding: 5px 10px;    
}
.single_title{
    text-align: left !important;
    font-size: 36px;
    padding-bottom: 20px;
    color: var(--color_main);
    font-weight: 600;
}
.single_contents{
    padding-bottom: 40px;
    margin-bottom: 10px;
}
.single_contents img{
    width: 100%;
    height: auto;
    border-radius: 15px;
}
.single_contents p{
    line-height: 1.8;
}
.site-main{
    width: 95%;
    margin: 0 auto 3em;
    max-width: 1200px;
}
.postlink{
    width: 100%;
    margin-left: auto;
    margin-bottom: 40px;
}
.postlink div{
    margin: 0 10px;
    width: 100px;
    text-align: right;
}

/*Profile ---------------- */
.prof-f{
    position: relative;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
}
.prof-back{
    background-attachment: fixed;
    background:linear-gradient(to bottom right, rgba(0,0,0,0.5) 10%, rgba(0,0,0,0) 40%);
    z-index: -1;
    position: relative;
    height: calc(100% - 300px);
}
.prof-f h2{
    margin: 2em auto;
}
.prof-box{
    width: 50%;
    max-width: 500px;
    font-weight: 600;
    line-height: 1.8;
    line-break:strict;
}
.prof-box .l{
    width: 40%;    
    padding-bottom: 10px;
}
.prof-box .r{
    width: 60%;    
    padding-bottom: 10px;
}

/*Blog ---------------- */
.blog-f .l{
    width: 150px;
}
.blog-f .r{
    width: calc(100% - 150px);
}
.blog-f .r h3{
    margin: 0.5em 0;
}
.blog-f .r .thum{
    width: 30%;
    aspect-ratio:4 / 3;
}
.blog-f .r .thum img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.blog-f .r .text{
    width: 70%;    
    padding-left: 15px;
}
.blog-f .r .text .text-ex{
    font-size: 90%;
}
.blog-f .r .text .more{
    font-weight: 700;
    margin-top: 1em;
}

/*FILMOGRAPHY ---------------- */
.film-box{
    width: calc((100% - 20px)/2);
    border-bottom: 1px solid var(--color_main);
    padding: 0 0 2%;
    margin-bottom: 3em;
}
.film-box h3{
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 0.7em;
}
.film-box .day{
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0.5em;
}
.film-box .name{
    margin-bottom: 0.5em;    
}
.film-box .list-box{
    margin: 5px 10px 10px 0;
    padding: 5px;
    font-size: 90%;
    border: 1px solid var(--color_main);
    color: var(--color_main);
    border-radius: 0 15px;
}
.film-box .list-box:hover{
    background-color: var(--color_w);
    transition: 0.5s;
}
.film-box .list-box a{
    display: block;
    padding: 0 5px;
    font-weight: 700;
}
.film-box .list-box a:hover{
    color: var(--color_b);
    -webkit-filter: brightness(0);
    filter: brightness(0);
    transition: 0.5s;
}


/* FC TOP ---------------- */
.fc-f h2{
    font-size: 36px;    
    font-weight: 300;
    padding-bottom: 10px;    
}
.fc-f .title{
    font-size: 4rem;
    font-weight: 900;
}
.fc-f ul#STARRY{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;   
    justify-content: flex-start;
    -webkit-justify-content: flex-start;    
}
.fc-f ul#STARRY li{
    border: 1px solid var(--color_main);
    padding: 5px 15px;
    margin: 0.5em;
    border-radius: 20px;
}
.fc-f .r{
    margin-top: 2em;
}
.fc-box-f{
    width: 80%;
    margin: auto;
    max-width: 1000px;
}
.fc-box{
    width: calc((100% - 80px) / 4);
    padding: 20px;
}
.fc-box a{
    display: block;
    aspect-ratio:4 / 3;
}
.fc-box p{
    margin: 2% auto;
    color: var(--color_w);
    font-size: 12px;
    text-align: center;
}
.fc-info{
    font-size: 90%;
    margin: 20px auto;
    line-height: 1.8;
}
.fc-box img{
    padding: 20px;
    width: 100%;
    height: 100%;
    margin-bottom: 0.5em;
}

/* FC VIDEO ---------------- */
.cat-menu .top_video{
    display: none;
}
.video-box{
    margin: 20px;
    width: calc((100% - 120px)/3);
}
.video-box .box-img{
    aspect-ratio: 16 / 9;        
    overflow: hidden;
    border-radius: 15px;
}
.video-box .box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.video-box h3{
    margin: 0.5em 0;    
}

/* FC Photo ---------------- */
.photo-box{
    margin: 20px;
    width: calc((100% - 120px)/3);
}
.box-img{
    position: relative;    
}
.photo-box .box-img{
    aspect-ratio: 1 / 1;        
    overflow: hidden;
    border-radius: 15px;
}
.photo-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0.5em;
}
.photo-box .fc-only img{
    filter: blur(3px);
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    margin: -3px;
}
.fc-cat{
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 80%;
    font-weight: 700;
}
.photo-box h3{
    font-size: 110%;
    margin: 0.5em 0;    
    line-height: 1.6;
}
.photo-single a{
    width: calc((100% - 100px)/4);
    height: auto;    
    margin: 10px;
}
.photo-single img{
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;      
    object-fit:cover;
    margin: 5px;
    overflow: hidden;
 }

/* FC present ---------------- */
.present-single input[type="checkbox"]{
    width: 25px;
    
}
.present-single h2{
    font-size: 3em;
    margin-bottom: 1em;
}

/* SHOP ---------------- */
.cat-menu ul li{
    width: 50px;
    text-align: center;
}


/* CARD ---------------- */
.membercard-f{
    position: relative;
    filter: drop-shadow(4px 4px 6px rgba(183,184,161,0.3));
}
.membercard-box{
    width: 50%;
    padding: 10px;
}
.membercard-f img{
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.member-info{
    position: absolute;
    text-align: left;
}
.member-info.number{
    bottom: 7%;
    left: 5%;
    font-size: 12px;
}
.member-info.name{
    bottom: 6%;
    font-size: 18px;
    left:50%;
    transform:translateX(-50%);    
}
.member-info.info-date{
    bottom: 7%;
    right: 5%;
    font-size: 12px;
}
.membercard-box-r{
    padding: 0 12%;
}
.membercard-box-r h3{
    width: 100%;
    font-size: 32px;
    font-weight: 700;
}
.membercard-info .l,
.membercard-info .r{
    width: 50%;
}
.membercard-info .l{
    color: var(--color_main);
    font-weight: 700;
    padding: 15px 5px;
}
.membercard-info .r{
    color: var(--color_w);
    padding: 15px 5px;
}

/*　会員限定　*/
.starry-f{
    background-image: url(../images/error_back.svg);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 60%;
    height: 100vh;
}
.starry-f h2{
    font-weight: 900;    
}
.starry-f .stry-error01-block01{
    display: none;
}
.starry-f  button{
    border-radius: 0 25px;
}
.starry-f .stry-errorbox{
    border: none;
    text-align: left !important;
    max-width: 100%;
}
.starry-f .stry-function-line01{
    text-align:  left !important;
}
#div_support02 button{
    border-radius: 0 25px;
    padding: 5px 20px;
}


/*フッター*/
footer{
    margin-top: auto;    
    color: var(--color_gray1);
    padding-top: 30px;    
}
.footer-back{
    margin: 20px 0 0;
    width: calc(100% - 30px);
    background: linear-gradient(to bottom, var(--color_b), var(--color_gray1));
    background-image: url(../images/footer-back.svg);
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;    
    padding: 150px 0 0;
}
.footer-box-l{
    width: 50%;
}
.footer-box-l .logo{
    text-align: center;
}
.footer-box-l .logo img{
    width: 100%;
    height: auto;
    max-width: 350px;
    filter: invert(84%) sepia(5%) saturate(833%) hue-rotate(24deg) brightness(87%) contrast(88%);
}
/*STARRY MENU*/
.footer-box-l ul#STARRY{
    margin: 10px 0;
    width: 100%;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    justify-content: center;
    -webkit-justify-content: center;
    align-items: center;
    -webkit-align-items: center;
}
.footer-box-l ul#STARRY li{
    width: 80px;
    margin: 10px 10px 10px 0;
    text-align: center;
    border: 1px solid var(--color_main);
    border-radius: 15px;
    height: 30px;
    line-height: 28px;
}
.footer-box-l ul#STARRY li:hover{
    background-color: var(--color_main);
    transition: 0.5s;
}
.footer-box-l ul#STARRY li a:hover{
    color: var(--color_b);
    transition: 0.5s;
}
.footer-box-l #STARRY li a{
    color: var(--color_main);
    font-weight: 600;
    font-size: 14px;
    display: block;
    font-weight: bold;
}
.fc-f ul#STARRY li.account,
.fc-f ul#STARRY li.entry,
.footer-box-l ul#STARRY li.account,
.footer-box-l ul#STARRY li.entry{
    background: var(--color_main);
}
.fc-f ul#STARRY li.account:hover,
.fc-f ul#STARRY li.entry:hover,
.footer-box-l ul#STARRY li.account:hover,
.footer-box-l ul#STARRY li.entry:hover{
    background: var(--color_b);    
    transition: 0.5s;
}
.fc-f ul#STARRY li.account a,
.fc-f ul#STARRY li.entry a,
.footer-box-l #STARRY li.account a,
.footer-box-l #STARRY li.entry a{
    color: var(--color_b);
}
.fc-f ul#STARRY li.account a:hover,
.fc-f ul#STARRY li.entry a:hover,
.footer-box-l #STARRY li.account a:hover,
.footer-box-l #STARRY li.entry a:hover{
    color: var(--color_w);
    transition: 0.5s;
}

.footer-box-r{
    width: 50%;
}
.footer-box-r ul#Primary{
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.footer-box-r ul#Primary li{
    width: calc(100% / 2);
    height: 30px;
    line-height: 30px;
    margin: 10px 0;
    position: relative;
     z-index: 444;
}
.footer-box-r ul#Primary li:nth-last-child(-n+4){
    width: 40px;
}
.footer-box-r ul#Primary li:after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: rgba(255,255,255,0.5);
  transition-duration: 1s;
}
.footer-box-r ul#Primary li:hover:after{
  width: 90%;
}
.footer-box-r ul#Primary li a{
    font-size: 90%;
    text-decoration-line: none;
    color: var(--color_w);
}
.footer-box-l ul#SNS li{
    padding: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    margin: 0 20px 0 0;
    background-color: var(--color_b);
    border-radius: 50%;
    line-height: 35px;
}
.footer-box-r #SNS img{
    width: 30px;
    height: auto;
    vertical-align: middle;
}

.copy {
  background-color: var(--color_b);
  text-align: center;
  font-size: 12px;
  line-height: 2;
  padding: 10px 0;}
.copy p a:hover {
  opacity: 0.7; }
