@charset "UTF-8";


body {
  font-family: "Noto Sans 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:#cacaca;
    --color_gray2:#616161;
    --color_gray3:#1c1c1c;
    --color_red:#a60726;
    --color_main1:#185398;}

/*共通*/
select{
    height: auto !important;
    background: #fff !important;
}
a{
    text-decoration-line: none;
    color: var(--color_gray1);}
.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);}
.color-red,.color-red a{
    color:var(--color_red);}
.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;}
.font-en{
    font-family: "Noto Sans JP", serif;  
    font-weight: 300;
    }
.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: 90px 0 3em;
    width: 100%;
}
/* ページ送り */
.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: 10px 0;
    position: fixed;
    width: 100%; 
    max-width: 1200px;
    margin: 0 auto;
    left:50%;
    transform:translateX(-50%);
    background-color: var(--color_b);
    z-index: 500;}
header h1 a{
    position:absolute;
    top: 10%;
    right: 30px;
    font-size: 5rem;
    z-index: 500;
    font-weight: 300;
    line-height: 0.7;
    color: var(--color_w);
    text-align: right;
}
header h1 a span{
    font-size: 2.8rem;
}
/*ヘッダー画像*/
.header-img{
    max-width: 1200px;
    margin: 1em auto 1em;
    width: 95%;
}
.header-img img{
    width: 100%;
    height: auto;
	/* じわっと画像が表示される */
 	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

#global-nav h1 img{
    width: 150px;
    height: auto;
}
.fadein{
	/* じわっと画像が表示される */
 	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;    
}
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
} 
/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

#header-child{
  width: 100%;
  height: 70px;
  padding: 0;
}
#header-child h1{
    width: 50%;
    padding-left: 1em;
}
#header-child h1 a{
    font-size: 2.3rem;
    position: unset;
    line-height: 0.8;
}
#header-child h1 a span{
    font-size: 1.3rem;
}    
#header-child .menu-f{
    width: 50%;
}
#container{
    padding-top: 80px;
}
.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;
}
.new{
    padding-left: 10px;
    font-weight: 600;
    font-size: 1rem;
}

/* ハンバーガーメニュー */
nav {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 60%;
  max-width: 350px;
  height: 100vh;
  height: 100svh;
  background:var(--color_b);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 700;
  opacity: 0;
  border-left: 1px solid rgba(255,255,255,0.5);
}
.open nav {
  right: 0;
  opacity: 1;   
  transition: 1s;
}
.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: center;
    width: 100px;
    margin-right: 10px;
    height: 30px;
    line-height: 28px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 15px;
}
nav .inner #SNS li::after,
.inner ul#STARRY li::after{
    background-color: transparent;
}
.inner ul#STARRY li a{
    color: var(--color_w);
    padding: 0 !important;
    font-weight: 300;
    font-size:1rem; 
}
.inner ul#STARRY li:hover{
    background-color: var(--color_w);
    transition: 0.5s;
}
.inner ul#STARRY li:hover a{
    color: var(--color_b);
}
/* SHOPサブメニュー */
nav .inner ul li.shopmenu ul.sub-menu li{
    display: none;
}
nav .inner ul li.shopmenu:hover ul.sub-menu li{
    display: block;
    transition: 0.3s;
}

nav .inner ul li ul.sub-menu li{
    padding-left: 10px;
    border-left: 1px solid rgba(255,255,255,0.5);
}
nav .inner #SNS{
    margin: 2em 0;
}
nav .inner #SNS li{
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: var(--color_b);
    border-radius: 50%;
    line-height: 35px;
    padding: 0;
    margin-right: 20px;
}
nav .inner #SNS li img{
    vertical-align: middle;
    width: 50%;
    filter: brightness(0) invert(1);
}
nav .inner #SNS li a{
    padding: 0;
}
nav .inner #SNS li:hover{
    background-color: var(--color_w);
}
nav .inner #SNS li:hover img{
    filter: brightness(0);
    transition: 0.5s;
}
/* toggle_btn */
.toggle_btn {
  display: block;
    position: fixed;
  top: 22px;
  right: 20px;
  width: 55px;
  height: 55px;
  transition: all .5s;
  cursor: pointer;
  z-index: 9999;
}
.header-top .toggle_btn{
  z-index: 500;    
  top: 5px;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  height: 1px;
  background-color: var(--color_w);
  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.8);
  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;
}
/* Granslate */
header .gtranslate_wrapper{
    position: fixed;
    top: 13px;
    right: 350px;
    left: unset !important;
    z-index: 200;
}
.child .gtranslate_wrapper{
    position: absolute;
    top: 33px;
    right: 200px;    
    left: unset !important;
}
.gt_switcher{
    border-radius: 20px;
}

/*トップ ---------------- */

/*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: center;
    margin: 0 10px;
    width: 120px;
    height: 30px;
    line-height: 28px;
}
#global-nav .menu-starry_menu-container li a{
    display: block;
    font-size: 1rem;
    padding: 0 10px;
    color: var(--color_w);
}
header .header-top-menu li a{
    display: block;
    color: var(--color_w);
}

/*TOP MENU上*/
/* STARRY　*/    
ul#STARRY_nav{        
    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;
}        
ul#STARRY_nav li{
    height: 30px;
    line-height: 30px;
    }    
#STARRY_nav li img{
    width: auto;
    height: 30px;
    filter: brightness(0) invert(1);
    }    
#STARRY_nav li:hover img{
    filter: brightness(0);
    transition: 0.3s;
}
#header-child #STARRY_nav li{
    width: 30px;
    padding: 0;
    text-align: center;
    }

header .header-top-menu{
    position: absolute;
    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: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{
    border:1px solid var(--color_w);   
    width: 110px;
    border-radius: 15px;
}
#header-child .menu-starry_menu-container ul li:hover{
    border:1px solid var(--color_w);   
}
#header-child .menu-starry_menu-container ul li a{
    color: var(--color_w);
}
#header-child .menu-starry_menu-container ul li a:hover{
    color: var(--color_b);
}
#header-child .header-top-menu{
    position: unset;
    width: calc(100% - 70px);
    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-bottom: 5px;
    border-bottom: 3px solid #000;
    margin-bottom: 1em;
}
h2.title::before {
    content: '';
    position: absolute;
    bottom: -3px;
    width: 3%;
    height: 3px;
    background: #fff;/*左*/
}
.news-f{
    max-width: 1200px;
    width: 95%;
    margin: auto;
}
.news-box{
    margin-bottom: 1em;
    padding: 20px 15px;
    background-color: var(--color_gray3);
    width: 100%;
}
.news-box:hover{
    background-color: var(--color_b);
    transition: 0.5s;
}
.news-box .cat{
    padding: 3px 7px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
    margin-left: 10px;
    background-color: var(--color_main1);
}
.more{
    padding-right: 50px;
    width: 150px;
}
.moreall{
    text-align: center;
    margin: 2em auto;
    width: 95%;
    max-width: 350px;
    font-size: 24px;
}
.moreall img{
    vertical-align: middle;
}
a .moreall{
    padding: 20px 30px;
    display: block;
    text-decoration: none;
}
.moreall:hover{
    transition: 0.5s;
    background-color: #fff;
    color:var(--color_b);
}
a .moreall:hover{
    color:var(--color_b);
}
.moreall:hover img{
    filter: brightness(0);
}
/* TOP動画 */
.movie{
    margin: 1em auto 4em;
}
.movie .wp-video{
    width: 100% !important;
}


/*アーカイブ */
.subtitle{
    position: relative;
    font-size: 12px;
    font-weight: 400;
    padding-top: 1em;
    padding-bottom: 7px;
    border-bottom: 2px solid #000;
    margin-bottom: 4em;    
}
.subtitle::before {
    content: '';
    position: absolute;
    bottom: -7px;
    width: 2%;
    height: 2px;
    background: #fff;/*左*/
}
.subtitle-jp{
    position: absolute;
    font-size: 80%;
    margin-top: -1em;
}
.news-f div a{
    width: 100%;
}

/*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: 0;
}

/*カテゴリ ---------------- */
.cat-menu{
    margin-bottom: 50px;
}
.cat-menu div{
    border-bottom: 1px solid rgba(255,255,255,0.2);
    border-right: 1px solid rgba(255,255,255,0.2);
    margin: 10px;
    width: 80px;
    height: 25px;
    line-height: 23px;
    text-align: center;
    font-size: 80%;
    background-color: var(--color_main1);
}
.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);
}
.cat-menu .current a{
    color: var(--color_b);
}

/*SINGLE ---------------- */
.single_title{
    text-align: left !important;
    font-size: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    margin-bottom: 30px;
}
.single_contents{
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 10px;
}
.single_contents p{
    line-height: 1.8;
}
.single_contents a{
    text-decoration: underline;
}
.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{
    max-width: 800px;
    margin: auto;
}
.prof-f h2{
    margin:0 auto 1em;
}
.prof-img{
}
.prof-img img{
    width: 100%;
    height: auto;
}
.prof-f1 h3{
    font-weight: 300;
    font-size: 3rem;
    margin: 0.5em auto;
}
.prof-f1{
    line-height: 1.8;
}
.prof-f2 h3{
    font-weight: 300;
    font-size: 1.5rem;
    margin: 2em auto 0.5em;
}
.prof-f2{
    font-size: 0.85rem;
    line-height: 2;
}
.bio-l{
    width: 120px;
}
.bio-r{
    width: calc(100% - 120px);
}
.prof-f .bio-l.cat-menu{
    margin-bottom: 0;
}
.prof-f .bio-l.cat-menu:hover{
    background-color: unset;
}
.prof-f .bio-r .day{
    margin: 0.5em 0;
    line-height: 1.5;
}
.prof-f .bio-r h3{
    margin: 0.5em 0;
}
.prof-f .bio-box{
    margin: 1.5em 0 1em;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 1.5em;
}
.prof-f .bio-r a{
    word-wrap: break-word;
    line-height: 1.2;
    text-decoration: underline;
    font-size: 0.9rem;
}
.prof-f .bio-r a:hover{
    color: var(--color_main1);
    transition: 0.3s;
}


/*BLOG  ---------------- */
.blog-img{
    width: 30%;
}
.blog-img img{
    width: 100%;
    height: auto;
}
.blog-title{
    width: 70%;
    padding-left: 1em;
}
/* gallery  */
.photo-box{
    width: calc((100% - 120px)/4);
    margin: 10px;
}
.box-img{
    aspect-ratio: 4 / 3;
    width: 100%;
}
.photo-box h3{
    margin: 8px 0;
}
.photo-box .day{
    font-size: 0.9rem;
}
.box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-single img{
    width: calc((100% - 30px)/3);
    margin: 5px;
}


/* 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 10px 4em;
    width: calc((100% - 80px) / 4);    
    height: auto;
    text-align: center;
}
.fc-content img{
    width: 100%;
    margin-bottom: 0.5em;
    max-width: 80px;
    filter: invert(40%) sepia(0%) saturate(710%) hue-rotate(190deg) brightness(94%) contrast(100%);
}
.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 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 div:hover a{
    color: #000;
    transition: 0.5s;
}

/* FC BLOG ---------------- */
.blog-f h3{
    font-size: 130%;
}
.blog-single iframe{
    aspect-ratio: 16 / 9;
    max-width: 800px;
    width: 100%;
    height: 100%;
}
.blog-single img{
    width: 100%;
    max-width: 525px;
    margin: 10px;
}

/* SHOP ---------------- */
.shop-box{
    margin: 20px;
    width: calc((100% - 160px)/4);
}
.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;
    filter: drop-shadow(2px 4px 6px rgba(28,28,28,1));
    z-index: 1;
}
.membercard-f a{
    color: var(--color_gray3);
}
.membercard-f img{
    width: 100%;
    height: auto;
    border-radius: 20px;
}
.member-info{
    position: absolute;
    text-align: left;
    color: var(--color_gray3);
}
.member-info.number{
    bottom: 12%;
    left: 3%;
    font-size: 1rem;
    z-index: 10;
}
.member-info.name{
    bottom: 4%;
    font-size: 1.5rem;
    left:3%;
    z-index: 10;
}
.member-info.info-date{
    bottom: 4%;
    right: 3%;
    z-index: 10;

}
.membercard-over{
  background: linear-gradient(rgba(255,255,255,0) 80%,rgba(255,255,255,1)95%);
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  z-index: 5;
}
/* 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: 300px;
    border: 1px solid #fff;
    background-color: rgba(255,255,255,0.1);
    font-size: 1.2rem;    
     cursor: pointer;
}
#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: 50px;    
}
.footer-menu{
    margin: 20px auto;
    width: 95%;
}
.footer-box-l{
    width: 30%;
    padding: 0 15px;
}
.footer-box-l .logo{
    text-align: center;
    margin: 1em auto;
}
.footer-box-l .logo a{
    font-size: 2rem;
}
/*STARRY MENU*/
.footer-box-l ul#STARRY{
    margin: 10px auto;
    width: 80%;
    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: calc((100% - 40px)/2);
    margin: 10px 10px 10px 0;
    text-align: center;
    height: 40px;
    line-height: 38px;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 20px;
}
.footer-box-l ul#STARRY li:hover{
    background-color: var(--color_w);
    transition: 0.5s;
}
.footer-box-l ul#STARRY li:hover a{
    color: #000;
    transition: 0.5s;
}
.footer-box-l #STARRY li a{
    color: var(--color_w);
    font-weight: 600;
    font-size: 1.2rem;
    display: block;
    font-weight: 300;
}
/*SNS MENU*/
.prof-f1 #SNS,
.footer-box-l ul#SNS{
 display: -webkit-flex;
 display: flex;
 flex-wrap: wrap;
 -webkit-flex-wrap: wrap;
 margin: 0 auto;
}
.prof-f1 #SNS{
 justify-content: flex-start;
 -webkit-justify-content: flex-start;
}
.footer-box-l ul#SNS{
 justify-content: center;
 -webkit-justify-content: center;
}
.prof-f1 #SNS li,
.footer-box-l ul#SNS li{
    padding: 0;
    text-align: center;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    padding: 10px;
}
.footer-box-l ul#SNS li{
    border: unset;
    width: 60px;
    height: 60px;
    line-height: 60px;
}
.prof-f1 #SNS li{
    width: 40px;
    margin: 2em 1em 1em 0;
    height: 40px;
}
.prof-f1 #SNS li a,
.footer-box-l #SNS li a{
    display: block;
    line-height: 0;
}
.prof-f1 #SNS img,
.footer-box-l #SNS img{
    width: 65%;
    filter: invert(40%) sepia(0%) saturate(710%) hue-rotate(190deg) brightness(94%) contrast(100%);
}
.prof-f1 #SNS img{
    vertical-align: unset;
    width: 100%;
}
.prof-f1 #SNS li:hover,
.footer-box-l #SNS li:hover{
    background-color: var(--color_w);
}
.prof-f1 #SNS li:hover img,
.footer-box-l #SNS li:hover img{
    -webkit-filter: brightness(0);
    filter: brightness(0);
}
.footer-box-r{
    width: 70%;
    padding: 0 10px;
    margin-bottom: 100px;
}
.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% / 3);
    margin: 5px 0;
    position: relative;
    padding: 10px;
}
.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;
}
li.menu-item-has-children:after{
    background-color: transparent !important;
}
.footer-box-r ul#Primary li:hover:after{
  width: 90%;
}
.footer-box-r ul#Primary li a{
    font-size: 1.2rem;
    text-decoration-line: none;
    color: var(--color_gray1);
}
.footer-box-r ul#Primary li.shopmenu .sub-menu{
    display: none;
}
.footer-box-r ul#Primary li.shopmenu:hover .sub-menu{
    display: block;
}
.footer-box-r ul.sub-menu li{
    width: 100% !important;
    padding: 5px 10px 5px 15px;
    margin: 0 !important;
    border-left: 1px solid rgba(255,255,255,0.5);
    height: 30px !important;
}
.footer-box-r ul.sub-menu li:first-child{
    margin: 10px 0 0 0 !important;    
}

.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; }
