@charset "UTF-8";


body {
  font-family: 'Playfair Display',"Noto Serif JP", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  color: var(--color_gray1);
  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:#f6f6f6;
    --color_gray2:#616161;
    --color_gray3:#1c1c1c;
    --color_red:#a60726;}

/*共通*/
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-gray3,.color-gray3 a{
    color:var(--color_gray3);}
.color-b,.color-b a{
    color:var(--color_b);}
.back-w{
    background-color:var(--color_w);}
.back-gray1{
    background-color:var(--color_gray1);}
.back-gray2{
    background-color:var(--color_gray2);}
.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;}
.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;
}
.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{
    padding: 1em auto 5em;
    width: 100%;
}
/*　バックライン　*/
.back_line{
    background-image: url(../images/back_line.png);
    background-repeat: repeat;
}
/* ページ送り */
.wp-pagenavi{
    margin: 3em 0 5em;
    width: 100%;
    text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span{
    border:1px solid #fff !important;
    padding: 3px 7px !important;
    margin: 5px !important;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current{
    color: var(--color_b);
    background-color: var(--color_w);
    border:1px solid #fff;
}

/*ヘッダー*/
header {
  padding: 0;
  position: relative;
  width: 100%; }
/*ヘッダー画像*/
.header-img-back{
    position: relative;    
}
.header-img-back img{
    object-fit: cover;
    object-position: top center;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
	/* じわっと画像が表示される */
 	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
    filter: blur(12px);
}
.header-img{
    position: absolute;
    max-width: 1600px;
    width: 90%;
    height: calc(100vh - 100px);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.header-img img{
    object-fit: contain;
    filter: unset;    
}
header .logo-top{    
    width: 100%;
    position: absolute;
    top: 5%;
    left: 3%;
    filter: drop-shadow(2px 0px 2px rgba(0,0,0,0.3));
	/* じわっと画像が表示される */
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
} 
header .logo-top img{
    width: 200px;
    height: auto;
}
#global-nav h1 img{
    width: 150px;
    height: auto;
}


@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
} 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

#header-child{
  width: 100%;
  height: 50px;
  padding: 0;
}
#header-child h1 img{
    height: 50px;
    width: auto;
    vertical-align: middle;
}
.menu_close {
  position: absolute;
  top: -67px;
  right: -9px; }

.menu_close div:first-child {
  width: 30px;
  height: 3px;
  background: var(--color_gray4);
  margin-bottom: 8px;
  transform: rotate(45deg);
  position: absolute;
  top: 5px;
  left: -29px; }

.menu_close div:last-child {
  width: 30px;
  height: 3px;
  background: var(--color_gray4);
  margin-bottom: 8px;
  transform: rotate(-45deg);
  position: absolute;
  top: 5px;
  left: -29px; }

.header_space {
  width: 100%;
  height: 100px;
  display: none; }

.txt_link:hover {
  opacity: 0.7; }

/*　見出し　*/
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: 400px;
  height: 100vh;
  height: 100svh;
  background:var(--color_b);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 700;
  opacity: 0;
}
.open nav {
  right: 0;
  opacity: 1;   
}
.header-top nav{
  z-index: 500;    
}
nav .inner {
  width: 95%;
  padding: 100px 30px;
  margin: 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;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav .inner ul li {
  width: 100%;
  position: relative;
  margin: 0;
  text-align: left;
}
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: 100%;
}
nav .inner ul li a {
  display: block;
  color: var(--color_w);
  font-size: 16px;
  padding: 10px 0;
  text-decoration: none;
  transition-duration: 0.2s;
  font-weight: 300;
}
.inner ul#STARRY{
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;    
    align-items: center;
    -webkit-align-items: center;
    margin: 30px auto;
}
.inner ul#STARRY li{
    text-align: right;
    width: 100px;
    padding: 0 10px 0 0;
    margin-right: 10px;
    height: 30px;
    line-height: 30px;
    background-color: var(--color_w);
}
.inner ul#STARRY li a{
    color: var(--color_b);
    padding: 0 !important;
    font-weight: bold;
    font-size:12px; 
}
.inner ul#STARRY li:hover{
    background-color: var(--color_b);
    transition: 0.5s;
}
.inner ul#STARRY li a:hover{
    color: var(--color_w);
}
nav .inner ul li ul.sub-menu li{
    padding-left: 10px;
}
nav .inner #SNS{
    margin: 2em 0;
}
nav .inner #SNS li{
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: var(--color_gray3);
    border-radius: 50%;
    line-height: 35px;
    padding: 0;
    margin-right: 20px;
}
nav .inner #SNS li img{
    vertical-align: middle;
}
nav .inner #SNS li a{
    padding: 0;
}
nav .inner #SNS li:hover{
    background-color: var(--color_w);
}
nav .inner #SNS li img:hover{
    filter: brightness(0);
    transition: 0.5s;
}
/* toggle_btn */
.toggle_btn {
    position: fixed;
}
#global-nav .toggle_btn span {
  background-color: var(--color_w);
}
.toggle_btn {
  display: block;
  /*position: fixed;*/
  top: 10px;
  right: 20px;
  width: 55px;
  height: 55px;
  transition: all .5s;
  cursor: pointer;
  z-index: 9999;
}
.header-top .toggle_btn{
  z-index: 500;    
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 1px;
  background-color: var(--color_b);
  border-radius: 4px;
  transition: all .5s;
}
#header-child .toggle_btn span {
  background-color: var(--color_w);
}
.toggle_btn span:nth-child(1) {
  width: 35px;
  top: 10px;
  left: 13px;
}
.toggle_btn span:nth-child(2) {
  width: 30px;
  top: 20px;
  left: 18px;
}
.toggle_btn span:nth-child(3) {
  width: 25px;
  top: 30px;
  left: 23px;
}
.toggle_btn p{
    margin: 55px 0 0 5px;
    color: #333;
}
.toggle_btn:hover{
    color: #25a4a3;   
}
.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(-340deg);
  transform: translateY(10px) rotate(-340deg);
}
.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(340deg);
  transform: translateY(-10px) rotate(340deg);
}



/*============
#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;
}

/* 止まるメニュー　*/
#global-nav {
    position: absolute;
    z-index: 400;
    width: 100%;
}
#global-nav.m_fixed {
	left: 0;
	position: fixed;
	top: 0;
    z-index: 450;
}

/* 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.png);
  position: absolute;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
.sns{
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}
.sns-box{
    width: 50px;
    height: 30px;
    text-align: center;
    display: table-cell; vertical-align: middle;
}
.sns .fab, .sns .far{
    color:var(--color_g);
}
.sns .fab:hover, .sns .far:hover{
    color:var(--color_gl);
}
/* Granslate */
header .gtranslate_wrapper{
    position: fixed;
    top: 13px !important;
    right: 350px !important;
    left: unset !important;
    z-index: 200;
}
.child .gtranslate_wrapper{
    position: absolute;
    top: 0 !important;
    right: 260px !important;    
    left: unset !important;
}


/*トップ ---------------- */
/* STARRY アイコン背景*/
li.entry{    
    background-image: url(../images/icon-entry.png);
    background-position: center left 5px;
    background-repeat: no-repeat;    
    background-size: 25px;
}
li.entry:hover{    
    background-image: url(../images/icon-entry_w.png);
}
li.login{    
    background-image: url(../images/icon-login.png);
    background-position: center left 5px;
    background-repeat: no-repeat;    
    background-size: 25px;
}
li.login:hover{    
    background-image: url(../images/icon-login_w.png);
}
li.logout{    
    background-image: url(../images/icon-logout.png);
    background-position: center left 5px;
    background-repeat: no-repeat;    
    background-size: 25px;
}
li.logout:hover{    
    background-image: url(../images/icon-logout_w.png);
}
li.account{    
    background-image: url(../images/icon-acount.png);
    background-position: center left 5px;
    background-repeat: no-repeat;    
    background-size: 25px;
}
li.account:hover{    
    background-image: url(../images/icon-acount_w.png);
}


/*MENU共通*/
#global-nav .menu-starry_menu-container ul,
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;
}
#global-nav .menu-starry_menu-container ul,
header .header-menu-starry ul{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;    
}
#global-nav .menu-starry_menu-container li,
header .header-top-menu li{
    text-align: right;
    padding-right: 5px;
    margin: 0 10px;
    width: 120px;
    height: 30px;
    line-height: 30px;
}
#global-nav .menu-starry_menu-container li a,
header .header-top-menu li a{
    display: block;
    font-size: 90%;
    padding: 0 10px;
    font-weight: bold;}
/* TOP 上部だけ色変更*/
.header-top header .header-top-menu li.entry {
    background-image: url(../images/icon-entry_w.png);
}
.header-top header .header-top-menu li.entry:hover{
    background-image: url(../images/icon-entry.png);
}
.header-top header .header-top-menu li.login {
    background-image: url(../images/icon-login_w.png);
}
.header-top header .header-top-menu li.login:hover{
    background-image: url(../images/icon-login.png);
}
.header-top header .header-top-menu li.logout {
    background-image: url(../images/icon-logout_w.png);
}
.header-top header .header-top-menu li.logout:hover{
    background-image: url(../images/icon-logout.png);
}
.header-top header .header-top-menu li.account {
    background-image: url(../images/icon-acount_w.png);
}
.header-top header .header-top-menu li.account:hover{
    background-image: url(../images/icon-acount.png);
}


/*TOP MENU上*/
header .header-top-menu{
    position: fixed;
    top: 10px;
    right: 65px;
    width: 50%;
    z-index: 100;
}
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{
    background-color: var(--color_b);
    
}
header .header-top-menu li:hover{
    background-color: var(--color_w);
    transition: 0.5s;
}
header .header-top-menu li a:hover{
    color:#000;
    transition: 0.5s;
}

/*　header-child*/
#header-child .menu-starry_menu-container ul li{
    background-color: var(--color_w);   
    width: 110px;
}
#header-child .menu-starry_menu-container ul li:hover{
    background-color: var(--color_b);   
}
#header-child .menu-starry_menu-container ul li a{
    color: #000;
}
#header-child .menu-starry_menu-container ul li a:hover{
    color: #fff;
}
#header-child .header-top-menu{
    position: fixed;
    top: 20px;
    right: 65px;
    width: 30%;
    z-index: 100;
}


/* TOP BANNER */
/* Slick 一瞬縦並びを回避　*/
.slider-banner{
  display: none;
}
.slider-banner.slick-initialized{
  display: block; /*slick-initializedが付与されたら表示*/
}

.slider-f{
    max-width: 1200px;
    width: 80%;
    margin: 1em 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 NEWS */
h2.title{
    position: relative;
    font-size: 60px;
    font-weight: 400;
    padding-top: 1em;
    padding-bottom: 5px;
    border-bottom: 3px solid #000;
    margin-bottom: 2em;
}
h2.title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    width: 3%;
    height: 3px;
    background: #fff;/*左*/
}

/* TOP MOVIE*/
.top-video-f{
    
}
.top-video-f .video{
    max-width: 1200px;
    margin: auto;
    width: 95%;
    padding: 5px;
    border: solid 1px var(--color_gray2);
}
/*背景サムネイルありの場合*/
.video-backon{
    filter: unset;
    position: absolute;    
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}
.video-back img:not(.video){
    position: relative;
    filter: blur(12px) grayscale(1);
    object-fit: cover;
    width: 100%;
    height: 100vh;
}
.news-f{
    max-width: 1200px;
    width: 95%;
    margin: auto;
}
.news-box-first{
    padding: 30px 15px;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
}
.news-box{
    padding: 20px 15px;
    border-bottom: 1px solid #fff;
}
.news-box-first:hover,
.news-box:hover{
    background-color: var(--color_gray3);
    transition: 0.5s;
}
a .news-box-first:hover,
a .news-box:hover{
    transition: 0.5s;
    background-image: url(../images/more_r.png);
}
.news-back{
    background-image: url(../images/more.png);
    background-position: center right 10px;
    background-repeat: no-repeat;    
}
.news-box-first .cat,
.news-box .cat{
    padding: 3px 7px;
    border: 1px solid #fff;
    margin-left: 10px;
}
.more{
    padding-right: 50px;
}
.moreall{
    text-align: center;
    margin: 2em auto;
    width: 95%;
    max-width: 350px;
    border: 1px solid #fff;
    background-color: rgba(255,255,255,0.1);
    font-size: 24px;
}
a .moreall{
    padding: 20px 30px;
    display: block;
}
.moreall:hover{
    transition: 0.5s;
    background-color: #fff;
    color:var(--color_b);
}
a .moreall:hover{
    color:var(--color_b);
}
.moreall img:hover{
    filter: brightness(0);
}
.wp-video{
    width: 100% !important;
}
.wp-video-shortcode,
.video iframe {
  aspect-ratio: 16 / 9;
  width: 100% !important;
  height: auto;
}


/*アーカイブ */
.subtitle{
    position: relative;
    font-size: 12px;
    font-weight: 400;
    padding-top: 1em;
    padding-bottom: 7px;
    border-bottom: 2px solid #000;
    margin-bottom: 100px;    
}
.subtitle::before {
    content: '';
    position: absolute;
    bottom: -7px;
    width: 2%;
    height: 2px;
    background: #fff;/*左*/
}
.subtitle-jp{
    position: absolute;
    font-size: 80%;
    margin-top: -1em;
    
}

/*NEWS ---------------- */
.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{
    margin-bottom: 100px;
}
.cat-menu div{
    border:1px solid var(--color_w);
    margin: 10px;
    width: 80px;
    height: 25px;
    line-height: 23px;
    text-align: center;
    font-size: 80%;
}
.cat-menu div:hover{
    background-color: var(--color_w);    
    transition: 0.5s;
}
.cat-menu div a{
    display: block;
}
.cat-menu div a:hover{
    color: var(--color_b);
    transition: 0.5s;
}
.cat-menu .current{
    border:1px solid var(--color_w);
    background-color: var(--color_w);
    color: var(--color_b);
}

/*SINGLE ---------------- */
.single_title{
    text-align: left !important;
    font-size: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: 50px;
}
.single_contents{
    padding-bottom: 20px;
    border-bottom: 1px solid #fff;    
    margin-bottom: 10px;
}
.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-f1{
     width: 100%;
   position: relative;
    text-align: right;
    margin-top: 2em;
}
.prof-f1-text h1{
    font-size: 60px;
}
.prof-f1-text h2{
    padding: 0;
}
.prof-f1-text{
    text-align: left;
    position: absolute;
    top: 20px;
    left: 0;
    line-height: 2;
}
.prof-f1-text h3{
    font-size: 120%;
    margin: 10px 0;
}
.prof-f1-text img{
    width: 250px;
    height: auto;
}
.prof-f1-text #SNS{
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;    
    align-items: center;
    -webkit-align-items: center;
}
.prof-f1-text #SNS li{
    background-color: var(--color_gray3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin: 10px 10px 10px 0;
}
.prof-f1-text #SNS img{
    width: 30px;
    height: auto;
    vertical-align: middle;
}
.prof-f2{
    width: 100%;
    background-image: url(../images/biography.png);
    background-position: top left;
    background-repeat: no-repeat; 
    padding-top: 130px;
}
.prof-f2 .photo{
    width: 30%;
    text-align: center;
}
.prof-f2 .photo img{
    width: 80%;
    height: auto;
    margin: auto;
}
.prof-f2 .text{
    width: 70%;
    font-size: 90%;
    line-height: 1.8;
}
.prof-f2 .text p{
    margin-bottom: 30px;
}
.prof-f2 .coffee{
    border: 1px solid #fff;
    padding: 20px;
    margin: 20px auto;
}
.prof-f2 .coffee .box1{
    width: 35%;
    text-align: right;
}
.prof-f2 .coffee .box1 img{
    width: 100%;
    height: auto;
}
.prof-f2 .coffee .box2{
    width: 60%;
    padding-left: 20px;
}
.prof-f2 .coffee p{
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    text-align: center;
    font-size: 130%;
}
.prof-f2 .coffee dd{
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: #fff;
    border-radius: 50%;
    margin: 10px 0;
    text-align: center;
}
.prof-f2 .coffee dd img{
    width: 30px;
    height: auto;
    vertical-align: middle;
    filter: brightness(0);
}
.prof-f2 .coffee dt{
    margin: 10px 0;
    width: calc(100% - 40px);
    padding-left: 20px;
    line-height: 40px;
}
.prof-f3{
    width: 100%;
    background-image: url(../images/award.png);
    background-position: top left;
    background-repeat: no-repeat;         
    padding-top: 150px;
    font-size: 90%;
}
.prof-f3 .box1{
    width: 60%;
}
.prof-f3 .box1 p{
    margin-bottom: 20px;
}
.prof-f3 .box1 li:first-child{
    border-top: 1px solid #fff;
}
.prof-f3 .box1 li{
    padding: 15px;
    border-bottom: 1px solid #fff;
}
.prof-f3 .box2{
    width: 30%;
    text-align: right;
}
.prof-f3 .box2 img{
    width: 90%;
    height: auto;
}

/*FILMOGRAPHY ---------------- */
.film-f h3{
    font-size: 36px;
    font-weight: 300;
}
.film-f h3 span{
    font-size: 12px;
    padding: 0 10px;
}
.film-f h4{
    font-weight: 300;
    font-size: 24px;
    margin: 10px 0;
}
.film1{
    padding-bottom: 100px;
    background-image: url(../images/film.png);
    background-position: top right 20%;
    background-repeat: no-repeat;        
}
.film2{
    padding: 100px 0;
    background-image: url(../images/drama.png);
    background-position: top left;
    background-repeat: no-repeat;        
}
.film3{
    padding: 100px 0;
    background-image: url(../images/disco.png);
    background-position: center right;
    background-repeat: no-repeat;        
}
.film-box{
    margin: 10px;
    width: calc((100% - 40px)/2);
    border-bottom: 1px solid var(--color_w);
}
.film-box-up{
    border-top: 1px solid var(--color_w);
}

.film-box .list-box-cinema{
    margin-right: 10px;
    margin-bottom: 10px;
    height: 25px;
    line-height: 23px;
    font-size: 85%;
    background-color: var(--color_gray2);
    border: 1px solid var(--color_gray2);
    border-radius: 25px;
    padding: 0 20px;
}
.film-box .list-box{
    margin-right: 10px;
    margin-bottom: 10px;
    height: 25px;
    line-height: 23px;
    font-size: 90%;
    border: 1px solid var(--color_w);
    border-radius: 25px;
}
.film-box .list-box:hover{
    background-color: var(--color_w);
    transition: 0.5s;
}
.film-box .list-box-cinema a,
.film-box .list-box a{
    display: block;
    padding: 0 20px;
}
.film-box .list-box a:hover{
    color: var(--color_b);
    -webkit-filter: brightness(0);
    filter: brightness(0);
    transition: 0.5s;
}
.film-box .list-box img{
    width: auto;
    height: 20px;
    vertical-align: middle;
}
.film-box .list-box img:hover{
    -webkit-filter: brightness(0);
    filter: brightness(0);
    transition: 0.5s;
}

.disco-box{
    margin: 10px;
    width: calc((100% - 80px)/4);
}
.disco-img{
    padding: 10px;
    background-color: var(--color_gray1);
    border: 1px solid var(--color_w);    
    margin-bottom: 0.5em;
}
.disco-box img{
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
}
.disco-box h3{
    font-size: 100%;
    margin: 15px 0;
    line-height: 1.6;
    word-break: break-word;
}
.disco-single-l{
    width: 35%;
}
.disco-single-l img{
    width: 100%;
    height: auto;
    padding: 5px;
    border: 1px solid var(--color_gray1);
}
.disco-single-r{
    width: 65%;
    line-height: 1.7;
    padding: 0 10px;
}
.disco-single-r img{
    width: auto;
    height: 300px;
    margin: 0 10px 10px;
}

/* FC TOP ---------------- */
.fc-f{
    line-height: 1.7;
}
.fc-box h3{
    font-size: 150%;    
    font-weight: 300;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color_gray2);
}
.fc-box h3 span{
    font-size: 12px;        
}
.fc-box{
    padding: 50px;
}
.fc-info{
    font-size: 90%;
    margin: 20px auto;
    line-height: 1.8;
}
.fc-content{
    margin: 10px;
    width: calc((100% - 80px) / 4);    
    height: auto;
    text-align: center;
}
.fc-content img{
    width: 100%;
    margin-bottom: 0.5em;
}
.fc-btn div{
    width: calc((100% - 40px)/2);
    height: 60px;
    line-height: 58px;
    border: 1px solid #fff;
    text-align: center;
    font-size: 130%;
}
.fc-btn div:hover{
    background-color: #fff;
    color: #000;
    transition: 0.5s;
}
.fc-btn div img{
    filter: brightness(0) invert(1);
    vertical-align: middle;
    padding-right: 10px;
    width: auto;
    height: 45px;
}
.fc-btn div img:hover{
    filter: brightness(0);    
    transition: 0.5s;
}
.fc-btn div span{
    font-size: 12px;
}
.fc-btn div a{
    display: block;
    color: #fff;
}
.fc-btn div:hover,
.fc-btn div:hover{
    transition: 0.5s;
}
.fc-btn .btn1{
    background-image: url(../images/icon-entry_w.png);
    background-position: center left 50px;
    background-repeat: no-repeat;        
}
.fc-btn .btn2{
    background-image: url(../images/icon-login_w.png);
    background-position: center left 50px;
    background-repeat: no-repeat;        
}
.fc-btn .btn1:hover{
    background-image: url(../images/icon-entry.png);
}
.fc-btn .btn2:hover{
    background-image: url(../images/icon-login.png);
}
.fc-btn div a:hover{
    color: #000;
    transition: 0.5s;
}



/* FC MENU ---------------- */

/* FC BLOG ---------------- */
.blog-f h3{
    font-size: 130%;
}

/* FC VIDEO ---------------- */
.news-single .cat-menu .top_video{
    display: none;
}
.video-box{
    margin: 20px;
    width: calc((100% - 120px)/3);
}
.video-box img{
    aspect-ratio: 16 / 9;        
    width: 100%;
    height: auto;
    margin-bottom: 0.5em;
}
.video-box h3{
    margin-bottom: 0.5em;    
}

/* FC Photo ---------------- */
.photo-box{
    margin: 20px;
    width: calc((100% - 120px)/3);
}
.box-img{
    position: relative;    
}
.photo-box img{
    aspect-ratio: 4 / 3;        
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    margin-bottom: 0.5em;
}
.fc-cat{
    position: absolute;
    top: 5px;
    width: 100px;
    height: 20px;
    line-height: 20px;
    font-size: 80%;
    padding-left: 10px;
}
.fc-cat-back{
    background: linear-gradient(-45deg, rgba(0,0,0,0) 16%, var(--color_gray2) 0);
}
.photo-box h3{
    font-size: 110%;
    margin-bottom: 0.5em;    
    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 Photo ---------------- */
.wpcf7-form{
    margin-top: 2em;
}
.wpcf7-submit{
    margin: 2em 0;
    width: 200px;
    background: var(--color_gray3);
    color:var(--color_w);
    border: 1px solid #fff;
}

/* FC present ---------------- */
.present-single input[type="checkbox"]{
    width: 25px;
    
}
.present-single h2{
    font-size: 3em;
    margin-bottom: 1em;
}

/* SHOP ---------------- */
.shop-box{
    margin: 20px;
    width: calc((100% - 120px)/3);
}
.shop-box img{
    aspect-ratio: 1 / 1;        
    width: 100%;
    object-fit: contain;
    margin-bottom: 0.5em;
    background-color: var(--color_gray3);
}
.shop-box h3{
    margin-bottom: 0.5em;  
}

/* CARD ---------------- */
.membercard-f{
    position: relative;
    max-width: 800px;
    margin: auto;
    filter: drop-shadow(2px 4px 6px rgba(28,28,28,1));
}
.membercard-f img{
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.member-info{
    position: absolute;
    text-align: left;
}
.member-info.number{
    bottom: 4%;
    left: 3%;
}
.member-info.name{
    bottom: 4%;
    font-size: 16px;
    left:50%;
    transform:translateX(-50%);    
}
.member-info.info-date{
    bottom: 4%;
    right: 3%;
}

/* CONTACT */
#div_support01 .stry-tableodd{
    background-color: unset !important;
}
#div_support01 td.stry-support01-column01, td.stry-support01-column02{
    border: unset !important;
}
#btn2{
    text-align: center;
    margin: 2em auto;
    width: 95%;
    max-width: 350px;
    border: 1px solid #fff;
    background-color: rgba(255,255,255,0.1);
    font-size: 24px;    
    font-family: 'Playfair Display', serif;
}
#btn2:hover{
    background-color: var(--color_w);
    color: var(--color_b);
    transition: 0.5s;
}

/*フッター*/
footer{
    margin-top: auto;    
    background-color: var(--color_gray3);
    color: var(--color_gray1);
    padding-top: 30px;    
}
.footer-menu{
    margin: 20px auto;
    width: 95%;
}
.footer-box-l{
    width: 30%;
}
.footer-box-l .logo img{
    width: 100%;
    height: auto;
    max-width: 200px;
}
/*STARRY MENU*/
.footer-box-l ul#STARRY{
    margin: 10px 0;
    max-width: 300px;
    width: 80%;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    justify-content: flex-start;
    -webkit-justify-content: flex-start;
    align-items: center;
    -webkit-align-items: center;
}
.footer-box-l ul#STARRY li{
    width: calc((100% - 40px)/2);
    margin: 10px 10px 10px 0;
    text-align: right;
    background-color: var(--color_w);
    height: 30px;
    line-height: 30px;
    padding: 0 10px 0 0;
}
.footer-box-l ul#STARRY li:hover{
    background-color: var(--color_b);
    transition: 0.5s;
}
.footer-box-l ul#STARRY li a:hover{
    color: #fff;
    transition: 0.5s;
}
.footer-box-l ul#STARRY li img:hover{
    filter: brightness(0) invert(1);
}
.footer-box-l #STARRY li a{
    color: var(--color_b);
    font-weight: 600;
    font-size: 12px;
    display: block;
    font-weight: bold;
}
.footer-box-l ul#STARRY li img{
    vertical-align: middle;
    width: auto;
    height: 23px;
}
/*SNS MENU*/
.footer-box-l ul#SNS{
 display: -webkit-flex;
 display: flex;
 flex-wrap: wrap;
 -webkit-flex-wrap: wrap;
 justify-content: flex-start;
 -webkit-justify-content: flex-start;
 margin: 0 auto;
}
.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-l #SNS img{
    width: 30px;
    height: auto;
    vertical-align: middle;
}
.footer-box-l #SNS li:hover{
    background-color: var(--color_w);
}
.footer-box-l #SNS li img:hover{
    -webkit-filter: brightness(0);
    filter: brightness(0);
}

.footer-box-r{
    width: 50%;
    margin-bottom: 100px;
}
.footer-box-r ul#Primary{
    height: 250px;
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-direction:column;
    width: auto;
}
.footer-box-r ul#Primary li{
    width: calc(100% / 3);
    height: 30px;
    line-height: 30px;
    margin: 10px 0;
    position: relative;
}
.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_gray1);
}
.footer-box-r ul.sub-menu li{
    width: 100% !important;
    padding-left: 10px;
}

.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; }
