@charset "UTF-8";

:root{
    --color_w:#fff;
    --color_b:#000;
    --color_main1:#003670;
    --color_main2:#BBCCE9;
    --color_main3:#F4F3F3;
    --color_gray1:#D9D9D9;
    --color_gray2:#6D6D6D;
    --color_gray3:#3E3A39;
    --color_gray4:#DDE0E6;
}

body {
  font-family: "Russo One","Noto Sans Japanese", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:"wdth" 100;    
  color: var(--color_gray3);
  background: var(--color_main3);
  font-weight: 400;
  font-size: 16px;
  font-size: 1rem; 
}

*{
    box-sizing: border-box;
}

/*共通*/
a{
    text-decoration-line: none;
    color: var(--color_gray3);}
.color-w,.color-w a{
    color:var(--color_w);}
.color-main1,.color-main1 a{
    color:var(--color_main1);}
.color-main2,.color-main2 a{
    color:var(--color_main2);}
.color-main3,.color-main3 a{
    color:var(--color_main3);}
.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);}
.back-w{
    background-color:var(--color_w);}
.back-b{
    background-color:#000;}
.back-main1{
    background-color:var(--color_main1);}
.back-main2{
    background-color:var(--color_main2);}
.back-main3{
    background-color:var(--color_main3);}
.back-gray1{
    background-color:var(--color_gray1);}
.back-gray2{
    background-color:var(--color_gray2);}
.back-gray3{
    background-color:var(--color_gray3);}
.font-small{
    font-size: 90%;}
.font-bold{
    font-weight: bold;}
.font-en{
    font-family: "Russo One",sans-serif !important;
    font-weight: 100;
}
.font-jp{
  font-family: "Noto Sans Japanese", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif !important;    
}
.text-c{
    text-align: center;}
.text-r{
    text-align: right;}
.pc_only{
    display: block;}
.sp_only{
    display: none;}
a img:hover{
    filter: brightness(120%);}

li{
    list-style: none;}

/* 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;
}
.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;
}
.pt30{
    padding-top: 3em;
}
.pl10{
    padding-left: 1em;
}
.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: 1em auto 5em;
    width: 100%;
}
/* ページ送り */
.wp-pagenavi{
    margin: 3em 0 5em;
    width: 100%;
    text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span{
    border:none !important;
    margin: 0 5px !important;
    color: var(--color_gray2);
}
.wp-pagenavi a:hover, .wp-pagenavi span.current{
    color: var(--color_w);
    background-color: var(--color_main3);
    border-radius: 50%;
    padding: 5px 10px;
}
.blog-f .wp-pagenavi,.news-archive-f .wp-pagenavi{
    text-align: right;
}


/*ヘッダー*/
header {
  padding: 0;
  position: relative;
  width: 100%; }
header img{
    width: 100%;
    height: auto;
	/* じわっと画像が表示される */
 	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,#header-child{
  width: 100%;
  height: 60px;
  padding: 0;
  line-height: 60px;
  position: fixed;
  z-index: 50;
    background-color: var(--color_main3);
    margin-bottom: 1em;
}
#header h1 img,#header-child h1{
    text-align: center;
}
#header h1 img,#header-child h1 img{
    height: 50px;
    width: auto;
    vertical-align: middle;
    padding-left: 2%;
}
.menu_close {
  position: absolute;
  top: -67px;
  right: -9px; }

.menu_close div:first-child {
  width: 30px;
  height: 3px;
  background: var(--color_w);
  margin-bottom: 8px;
  transform: rotate(45deg);
  position: absolute;
  top: 5px;
  left: -29px; }

.menu_close div:last-child {
  width: 30px;
  height: 3px;
  background: var(--color_w);
  margin-bottom: 8px;
  transform: rotate(-45deg);
  position: absolute;
  top: 5px;
  left: -29px; }

/*　見出し　*/
h2 {
  padding: 1.5rem 0.3rem;
  font-size: 2em;
  color: var(--color_main1);
  font-family: "Russo One",sans-serif !important;
  font-weight: 100;
    margin: 2em 0 1em;
}
h2 span{
    font-size: 14px;
}
/* ハンバーガーメニュー */
nav {
  display: block;
  position: fixed;
  top: -100%;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background:var(--color_main1);
  overflow-x: hidden;
  overflow-y:auto;
  z-index: 700;
  opacity: 0;
}
.open nav {
  top: 0;
  opacity: 1;
  transition: 0.5s;
}
nav .inner {
  width: 50%;
  padding: 5em 2em 2em;
  margin: auto;
}
nav .inner .navlogo{
    margin-bottom: 1.5em;
}
nav .inner .navlogo img{
    width: 250px;
    height: auto;
    filter: brightness(0) invert(1);
}
nav .inner ul {
display: -webkit-flex;
display: flex;
flex-flow: column wrap;
height: 450px;    
    list-style: none;
  margin: auto;
  padding: 0;
  width: 90%;
}
nav .inner ul li {
  box-sizing: border-box;
  width: 50%;
  position: relative;
  margin: 0;
  text-align: left;
}
nav .inner ul li a {
  display: block;
  color: var(--color_w);
  font-size: 1.0em;
  padding: 0;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li img{
    width: auto !important;
    height: 25px !important;
}
nav .inner ul li a img{
    filter: brightness(0) invert(1);}
nav .inner ul li ul.sub-menu li{
    width: 100%;
    padding-left: 15px;
    border-left:1px solid #fff;
    
}
nav ul#STARRY{
 display: -webkit-flex;
 display: flex;
 flex-wrap: wrap;
 -webkit-flex-wrap: wrap;
 justify-content: space-between;
 -webkit-justify-content: space-between;    
 flex-flow: unset;
 height: auto;
}
nav ul#STARRY li{
    width: calc((100% - 60px)/3);
    background: var(--color_w);
    text-align: center;
}
.dashicons, .dashicons-before:before{
    vertical-align:sub !important;
}
nav ul#STARRY li a{
    color: var(--color_main1);    
}

/* toggle_btn */
.toggle_btn {
  display: block;
  position: fixed;
  top: 5px;
  right: 20px;
  width: 55px;
  height: 55px;
  transition: all .5s;
  cursor: pointer;
  z-index: 9999;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: var(--color_main1);
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 14px;
  left: 13px;
}
.toggle_btn span:nth-child(2) {
  top: 22px;
  left: 13px;
}
.toggle_btn span:nth-child(3) {
  top: 30px;
  left: 13px;
}
.open .toggle_btn span {
  background-color: var(--color_w);
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(6px) rotate(-315deg);
  transform: translateY(6px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color_main1);
  z-index: 2;
  cursor: pointer;
}

/* PAGE TOP*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: -50px;
  opacity: 0.6;
  border-radius: 50%;
    z-index: 1;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-weight: 900;
  content: url(../images/pageup.svg);
  font-size: 25px;
  color: var(--color_gray2);
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* 共通　*/
#container{
    padding-top: 60px;
}

/* single共通*/
.single-f h3{
    margin: 1em auto;
}
.single-thum{
    width: 100%;
    margin-bottom: 1em;    
}
.single-thum img{
    width: 100%;
    height: auto;
}


/*トップ ---------------- */
.header-top-menu{
    position: fixed;
    top: 15px;
    right: 80px;
    width: 30%;
    z-index: 9999;
}
.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;
}
.header-menu-starry ul{
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    justify-content: center;
    -webkit-justify-content: center;    
}
nav .inner .header-menu-starry ul li{
    margin: 10px !important;
    width: calc((100% - 40px)/2);
    border: 1px solid var(--color_main1);
    background: none !important;
}
nav .inner .header-menu-starry ul li a{
    padding:0.1em 1em !important;}
.header-top-menu li{
    text-align: center;
    box-sizing: border-box;
    margin: 0 10px;
    width: 70px;
    height: 30px;
    line-height: 28px;
}
.header-top-menu li a{
    display: block;
    font-size: 13px;
    color: var(--color_main1);
}
.header-menu{
    position: relative;
    z-index: 100;
}
/* TOP IMAGES */
.top-back{
    position: relative;
    z-index: -1;
    background:url('/wp-content/themes/moi-e-sport/images/back_img.svg') no-repeat;
    background-size: 80%;
    background-position: bottom center;
    width: 100%;
    padding-bottom: 200px;
}
.top-img{
    aspect-ratio: 3 / 2;    
}
.top-img img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
}
.top-store{
    position: absolute;
    left:50%;
    transform:translateX(-50%);
    bottom: 3%;
    width: 60%;
    max-width: 850px;
}
.top-store p{
    text-align: center;
    width: 100%;
}
.more-btn{
    width: 100%;
}

/*古いブラウザ用　---------　一度追加していたら不要*/
@-webkit-keyframes moredown {
    0% {opacity: 0}
    100% {opacity: 1}
} 

.top-store-box{
    margin: 15px;
    width: calc((100% - 90px)/3);
}
.top-store-box img{
    padding: 10px;
    width: 100%;
    height: auto;
    background-color: var(--color_w);
    border-radius: 15px;
}

.logo-top{    
	/* じわっと画像が表示される */
 	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
    z-index: 11;
} 
.logo-top img{
}
.top-f{
    max-width: 1400px;
    margin: 2em auto 0;
    width: 95%;
}
.front-l{
    width: 65%;
    padding: 10px;
}
.front-r{
    width: 35%;
    padding: 10px;
}
.front-l .menu-box div{
    width: calc((100% - 80px)/4);
    aspect-ratio: 1 / 1;        
    margin: 10px;
    background-color: var(--color_main1);
    position: relative;
    border: 3px solid var(--color_w);
}
.front-l .fc div{
    border: 3px solid var(--color_main2);    
}
.front-l .menu-box div img{
    position: absolute;
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: 1; 
}
.front-l .menu-box div h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    color: var(--color_w);
    margin: 0;
    padding: 0;
    z-index: 2;
    font-size: 1.2em;
}
.front-l .menu-box div h2 span{
    font-size: 12px;
}
.front-r h2{
    margin: 0;
    padding: 0 0 0.5em;
}
.front-r .news-box{
    background-color: unset;
    padding: 10px 5px;
    margin: 0 0 20px;
}
.front-r .news-box h3{
    font-size: 12px;
    width: 100%;
}

/* TOP NEWS */
.top-news-f h2{
    margin: 0;
    width: 20%;
    text-align: center;
    position: relative;
}
.top-news-f h2::after{
    position: absolute;
    content: '';/*何も入れない*/ 
    display: inline-block;
    width: 150px;/*画像の幅*/
    height: 150px;/*画像の高さ*/
    background-image: url(/wp-content/themes/moi-e-sport/images/news_back.png);
    background-size: contain;
    vertical-align: middle; 
    background-repeat: no-repeat;
    top:50%;
    left:35%;
    transform:translateY(-50%);
    z-index: -1;
}
.news-f{
    width: 80%;}
.news-box{
   width: 100%; 
    background-color: rgba(255,255,255,0.2);
    padding: 20px 10px;
    margin: 0 0 10px;
}
.news-box p{
    font-size: 14px;
    margin-bottom: 0;
}
.single-f .name,
.report-text .name,
.news-box .name{
    background-color: var(--color_main1);
    color: var(--color_w);
    margin-right: 10px;
    padding: 3px 10px;
    font-size: 12px;
    line-height: 1;
}
.news-box h3{
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}
.report-box:hover,
.news-box:hover{
    transition: 0.5s ease-in-out;
    box-shadow: 5px 5px 5px 1px rgba(17, 6, 162, .1);
    background-color: var(--color_gray1);    
}
.more{
    position: relative;
    margin-left: auto;
    margin-bottom: 1em;
    padding-left: 20px;
    width: 220px;
    font-size: 12px;
    color: var(--color_w);
    background-color: var(--color_main1);
    letter-spacing: 0.1em;
    height: 40px;
    line-height: 40px;
    z-index: 1;
}
.more a{
    color: var(--color_w);
    display: block;
}
.more p{
    position: absolute;
    top:50%;
    right:10%;
    transform:translateY(-50%);    
}
.more:hover p{
    right:5%;
    transition: 0.5s ease-in-out;
}
.banner-f div{
    width: calc((100% - 60px)/3);
    height: auto;
    margin: 10px;
    padding: 10px;
}
.banner-f div img{
    object-fit: contain;
    width: 100%;
    height: auto;
}

/*NEWS ---------------- */
.news-menu{
    width: 100%;
    margin: 1em 0;
}
ul.news-menu li{
    margin: 10px 0;
    padding: 5px 20px;
    font-size: 12px;
}
.news-menu .active{
    text-decoration-line: underline;
}
.content-area .news-box-f{
    width: 100%;
    margin: 0;
}
.content-area a .news-box{
    margin: 0;
}
.content-area .news-box .content{
    width: 100%;
    padding: 0 10px;   
} 
.news-single{
    width: 95%;
    margin: auto;
    max-width: 1200px;
}
.news-single h2.single_title{
    position: relative;
    font-family: "Russo One","Noto Sans Japanese", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.news-single h2.single_title::before{
    background: unset;
    padding-left: 0;
}
.news-box .tag span,
.single-f .tag span{
    padding: 4px 15px;
    border: 1px solid var(--color_main1);
    border-radius: 20px;
    font-size: 12px;
    color: var(--color_main1);
}
.news-single .cat{
    background-color: var(--color_gray2);
    margin-right: 1em;
    padding: 4px 15px;
    border-radius: 20px;
}
.news-single .text img{
    margin: 10px 0; 
}
.news-single p{
    font-size: 100%;
}

/*report ---------------- */
.report-box{
    width: 100%;
    padding: 15px;
    background-color: rgba(255,255,255,0.1);
}
.report-thum{
    width: 30%;
    max-width: 200px;
    height: auto;
    aspect-ratio: 4 / 3;        
}
.report-thum img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.report-text{
    width: 70%;
    padding: 0 10px 0 20px;
}
.report-text h3{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.7;
    margin: 10px 0;
}
.report-text span{
    padding: 3px 10px;
    border:1px solid var(--color_main1);
    border-radius: 20px;
    font-size: 10px;
    color: var(--color_main1);
}
.single-f .report-text{
    padding: 0;
}

/*SINGLE ---------------- */

.single_title{
    text-align: left !important;
    font-size: 36px;
}
.single_contents{
    margin-bottom: 30px;
}
.single_contents p{
    line-height: 1.8;
}
.site-main{
    width: 95%;
    margin: auto;
    max-width: 1400px;
    padding-top: 40px;
}

/* FC BLOG ---------------- */
.blog-box-f{
    width: 95%;
    max-width: 1000px;
    margin: auto;
}
.blog-box .thum{
    margin: 10px;
    aspect-ratio: 4 / 3;     
    width: 250px;
    height: auto;
    border:1px solid var(--color_main2);
    border-radius: 20px;    
} 
.blog-box .thum img{
    vertical-align: middle;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.content-area a .blog-box{
    margin: 0;
    padding: 10px 0;
    position: unset;
    overflow:inherit;
    background-color: unset;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    border-radius: 20px;
}
.content-area .blog-box:hover{
    background-color: var(--color_main2);
}
.content-area .blog-box p{
    font-size: 14px;
}
.content-area .blog-box .content{
    width: calc(100% - 270px);
    padding: 0 10px 0 20px;   
} 


/* 動画配信 ---------------- */
.video-single-f h2 span,
.video-f h2 span{
    font-size: 1em;
}
.video-single-f .day,
.video-f .day{
    font-size: 12px;
    border: 1px solid var(--color_main1);
    border-radius: 20px;
    color: var(--color_main1);    
    padding: 5px;
    width: 95%;
    max-width: 200px;
    text-align: center;
}
.video-f h3{
    font-size: 14px;
    line-height: 1.7;
}

/* SHOP ---------------- */
a.shop-box{
    width: calc((100% - 200px)/5);
    margin: 20px;
}
.shop-box img{
    aspect-ratio: 1 / 1;        
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
    margin-bottom: 0.5em;
    background-color: var(--color_main2);
}
.shop-box h3{
    margin-bottom: 0.5em;  
}

/* RESERVATION ---------------- */
.am-lite-footer-link{
    display: none
}


/* BBS ---------------- */
.wpforo-logout{
    display: none !important;
}


/*company ---------------- */

.company div{
    margin-bottom: 1em;    
}
.company .name{
    background-color: var(--color_main1);
    color: var(--color_w);
    width: 100px;
    font-size: 90%;
    text-align: center;
    padding: 5px 0;
}
.company .info{
    width: calc(100% - 100px);
    padding-left: 10px;
    line-height: 1.7;
}
.company .info img{
    vertical-align: middle;    
}
.company .info .logo{
    width: calc(100% - 200px);    
    height: auto;
}
.company .info .cname{
    width: 200px;
}

.fc-f .content{
    line-height: 1.7;
}
/*フッター*/
footer{
    margin-top: auto;    
    padding-top: 30px;    
    width: 100%;
    overflow: hidden;
}
.footer-menu{
    margin: 20px auto;
    width: 90%;
}
.footer-menu-box{
    width: 50%;
    box-sizing: border-box;
}
.footer-menu-box img{
    max-width: 300px;
}
/*title*/
.footer-menu-box p{
    text-align: center;
    font-size: 150%;
    font-weight: 300;
}
/*STARRY MENU*/
.footer-menu-box ul#STARRY{
    margin: 20px auto;
    width: 60%;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    flex-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    justify-content: center;
    -webkit-justify-content: center;
}
.footer-menu-box ul#STARRY li{
    margin: 10px;
    border:1px solid var(--color_w);
    padding: 10px 20px;
    border-radius: 20px;
}
.footer-menu-box ul#STARRY li.entry{
    background-color: var(--color_w);
}
.footer-menu-box ul#STARRY a{
    display: block;
    font-weight: bold;
    color: var(--color_w);
    font-size: 14px;
}
.footer-menu-box ul#STARRY li.entry a{
    color: var(--color_main1);
}
/*SNS MENU*/
.footer-menu-box #SNS img{
    width: 20px;
    height: auto;    
    margin: 0 10px 0 0;
    filter: brightness(0) invert(1);
}
.footer-menu-box ul#Primary,
.footer-menu-box ul#SNS{
 display: -webkit-flex;
 display: flex;
 flex-wrap: wrap;
 -webkit-flex-wrap: wrap;
 justify-content: flex-start;
 -webkit-justify-content: flex-start;
 align-items: center;
 -webkit-align-items: center;
 margin: auto;
}
.footer-menu li{
    list-style: none;
    padding: 15px;
}
.footer-menu #Primary li{
    width: 50%;
}
.footer-menu ul.sub-menu li{
    width: 100% !important;
    padding: 0.2em 0.5em !important;
}
.footer-menu ul.sub-menu li a{
    padding: 1.2em 0;
}
.footer-menu li a{
    font-size: 13px;
    text-decoration-line: none;
    color: var(--color_w);
}
.footer-menu-box ul#SNS li{
    padding-left: 15px;
}
.copy {
  background-color: var(--color_main1);
  text-align: center;
  font-size: 12px;
  line-height: 2;
  padding: 15px 0;}
.copy p a:hover {
  opacity: 0.7; }
