/*
紺色
#0a3382
*/

*{
font-family: 'Markazi Text', serif;
font-family: 'Shippori Mincho B1', serif;
}

/* STARRY */
/*新規会員登録*/
/*ログインせずに購入ボタン非表示*/
.stry-ec03-enrollment,
button#btn3.stry-ec03-continue{
display:none !important;
}

a {
  color: #333 !important;
}

a:hover{
    color:#820a62 !important;
}

a img {
	display: inline-block;
	padding: 0.3em;
	transition: .3s;
	transform: scale(1);
	color: #333;
}
a img:hover {
	transform: scale(1.05);
}

.pc_none{
    display: none;
}

.sp_none{
    display: block;
}

.small-font{
    font-size: 85%;
}
/*紺色*/
.main-color{
    color:#0a3382;
}

/* 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;
}

body{
  min-height: 100vh;
  flex-flow: column;
  display: flex;
}
#content,
.page{
    flex: 1;
    margin-bottom:30px;
}

/*画像中央合わせ*/
.aligncenter {
display: block;
margin: 0 auto;
}

.red{
    color:#ff0000;
}

/* ------------- スクロールフェードインDown用 ------------- */
.fadeInDown {
 -webkit-animation-fill-mode:both;
 -ms-animation-fill-mode:both;
 animation-fill-mode:both;
 -webkit-animation-duration:1s;
 -ms-animation-duration:1s;
 animation-duration:1s;
 -webkit-animation-name: fadeInDown;
 animation-name: fadeInDown;
 visibility: visible !important;
}
@-webkit-keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); }
}
@keyframes fadeInDown {
 0% { opacity: 0; -webkit-transform: translateY(20px); -ms-transform: translateY(20px); transform: translateY(20px); }
 100% { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); transform: translateY(0); }
}

/* ------------- ページ全体フェードイン用 ------------- */
.pagein{
    display: none;
}

/* ===========================================
 * NAVI デザイン
=========================================== */

.main-navigation{
    margin-top: 40px;
    width: 75%;
    text-align: right;
    z-index: 9999;
}
.main-navigation li {
  display: inline-block;
  list-style: outside none none;
  margin: 0.5em 1.2em;
  padding: 0;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 16px;
  letter-spacing: 0.1em;    
}
.main-navigation li {
  position: relative;
  display: inline-block;
  padding: 0 10px;
}
.main-navigation li:before{
  width: 17px;
  height: 17px;    
  content: '';/*何も入れない*/
  display: inline-block;
  background-image: url(../images/moon.svg);
  background-size: contain;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(13%) sepia(95%) saturate(2014%) hue-rotate(213deg) brightness(96%) contrast(102%);
  transform: scale(-1, 1);
  position: absolute;
    top: 30%;
    left: -10px;
}
.main-navigation li.fanclub ul li:before{
  background-image: url(../images/moon-fc.svg);
    
}
#main-menu a:hover:before{
  content: '';
  position: absolute;
  top: 49%;
  left: -25px;
  display: inline-block;
  width: 20px;
  height: 5px;
  background-color: #0a3382;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.main-navigation li:after{
  border-right: 1px solid #0a3382; 
}
.main-navigation ul li.menu-item-has-children {
        position: relative; /* 子メニュー表示の基準値とする */
    }

/* 子メニュー用の設定 */
.main-navigation ul li .sub-menu {
        display: none; /* はじめは非表示 */
        width: 350px; /* 子メニューを表示する横幅 */
        line-height: 2;
        z-index: 1; /* 重ね順を上にする */
        position: absolute;
        top: 35px;
        left: -80px;
        text-align: left;
        background: #fff;
        margin: 0;
        padding: 10px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        border-radius: 5px;
    }

/* 子メニューの行間を設定 */
    .main-navigation ul li .sub-menu li {
        display: block;
        margin-bottom: 7px;
        text-align: left;
    }

.sub-menu li{
    height: 40px;
    line-height: 40px;
}

/* 一番下の子メニューの余白を調整 */
.main-navigation ul li .sub-menu li:last-child {
        margin-bottom: 0;
    }

/* マウスオーバーした時に、子メニューを表示させる */
.main-navigation ul li:hover .sub-menu {
    display: block;
    }

/* 子メニューがあるとき、メニューの右に下矢印をつけます。 */
.main-navigation ul li.menu-item-has-children > a::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        margin: 0 0 0 5px;
        border-right: 1px solid #0a3382;
        border-bottom: 1px solid #0a3382;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }
#main-menu a{
    color:#0a3382 !important;
}


/* ===========================================
 * SP用NAVI デザイン
=========================================== */

/*メニューボタンを追加する*/
.drawer-menu {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    right: 0;
	width: 250px;/*メニューの横幅*/
	height: 100%;/*メニューの縦幅*/
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(90deg);
    transform: perspective(500px) rotateY(90deg);
    opacity: 0;
	/*↓メニュー枠線のデザイン。ご自由に*/
    background: #fff;
	box-shadow: 0 0 0 5px #fff;
    border: 1px solid #0a3382;
    padding: .2em .5em;
    color: #0a3382;
	border-radius:10px 0 0 10px;
	/*↑メニュー枠線のデザイン*/
}

/*ボタンを押したときの左側の黒い部分*/
.close-menu {
    position: fixed;
    top: 0;
    right: 255px;	/*メニューの横幅を増やしたらrightも増やす*/
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
}

.bar {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
	width: 40px;/*横線の幅*/
	height: 1px;/*横線の太さ*/
	background: #0a3382;/*ボタンの色*/
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
}

.bar.middle {
    top: 10px;
    opacity: 1;
}

.bar.bottom {
    top: 20px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}

.menu-btn {
    position: fixed;
    display: block;
	top: 10px;
    right: 5px;
	width: 40px;
	height: 30px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
		color: #0a3382;
    z-index: 21474836479;/*重なり順を一番上に*/
}

.check:checked ~ .drawer-menu {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 2147483646;
}

.check:checked ~ .contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-250px);
    -ms-transform: translateX(-250px);
    transform: translateX(-250px);
}

.check:checked ~ .menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
    width: 56px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
    width: 56px;
    top: 40px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background: rgba(0,0,0,.5);
    visibility: visible;
    opacity: 1;
	z-index: 2147483647;/*重なり順を一番上に*/
}

.menu-btn:hover .bar {
    background: #888;
}

.menu-btn:hover .menu-btn__text {
    color: #888;
}

.menu-btn__text {
    position: absolute;
    bottom: -12px;
    left: 0;
    right: 0;
    margin: auto;
    color: #0a3382;
    -webkit-transition: all .5s;
    transition: all .5s;
    display: block;
    visibility: visible;
    opacity: 1;
	font-size:13px;
}

.check {
    display: none;
}

.drawer-menu ul {
  position:relative;
	width:100%;
	list-style: none;
}

.drawer-menu li {
 margin-left: 20px;/*各メニューリストの左余白*/
border-bottom: 1px solid #0a3382;/*各メニューリストの下線*/
}

.drawer-menu li a {
    display: block;
	height: 50px;/*各メニューリストの縦幅*/
    line-height: 50px;/*各メニューリストの縦幅*/
    font-size: 15px;
    -webkit-transition: all .8s;
    transition: all .8s;
}

.sub-menu li{
    border-bottom:none;
    border-top: 1px dotted #0a3382;/*各メニューリストの下線*/
}

/*メニューボタンここまで*/


/* ===========================================
 * ヘッダー
=========================================== */
#header {
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  box-shadow:  5px 5px 5px rgba(0,0,0,0.1);
}
.header{
}
#top-logo{
    width: 20%;
    margin: 20px 0;
}
#top-logo a{
    color:#0a3382 !important;
}
#top-logo img{
    width: auto;
    height: 130px;
}
.logo-title{
    font-size: 14px;
    font-weight: normal;
}

/* ===========================================
 * 共通
=========================================== */
.page__title{
  background:-webkit-linear-gradient(to right, #fff 30%, #0a3382 50%,#fff 70%);
  background:-moz-linear-gradient(to right, #fff 30%, #0a3382 50%,#fff 70%);
  background:linear-gradient(to right, #fff 30%, #0a3382 50%,#fff 70%);
    font-size: 24px;
}  

.title-song{
    margin: 10px 0 30px;
    text-align: center;
    border-bottom: 2px solid #0a3382;
}
.title-song-news{
    margin: 10px 0;
    text-align: center;
    border-bottom: 2px solid #0a3382;
}

#contentInner{
    position: relative;
}

footer{
    width: 100%;
    bottom: 0; /*下に固定*/       
}

/* ===========================================
 * TOPページ
=========================================== */

.banner-f{
    margin: 20px auto 80px;
    width: 800px;
    height: auto;
    text-align: center;
    display: flex;
    justify-content: center;
}
.banner__item img{
    height: auto;
}
.news-f{
    margin: 20px auto 80px;
    width: 800px;
    height: auto;
}
.news-box{
    margin: 5px 0 30px;
    border-bottom: 1px #0a3382 solid;
    overflow: hidden;
    font-weight: normal;
    font-size: 16px;
}
.news-cat-box{
    min-width: 80px;
    padding: 2px 8px 2px 5px;
    background: #0a3382;   
    color:#Fff;
    text-align: center;
    display: inline-block;
    font-size: 12px;
}
.news-cat-box:before{
    content: '★';
}
.more{
    padding: 2px 10px;
    background: linear-gradient(-135deg,#4c48c2, #0a3382);    
    color:#eee;
    font-size: 90%;
}
.more a:hover{
    background: #322d9a;    
    color:#fff;
}

.flex{
    justify-content: center;
}

/* ===========================================
 * NEWS
=========================================== */


/* ===========================================
 * PROFILE
=========================================== */

.prof-overview{
    margin: 10px auto;
    padding: 20px 0;
    width: 100%;
    font-size: 110%;
    background: #eee;
    text-align: center;
    font-weight: normal;
}
.profile__img img{
    max-height: 500px;
    width: auto;
}
.profile-sns{
    width: 100%;
    color:#92d1d7;
}
.profile-sns-box{
    display: inline-block;
    margin: 10px 10px 0 0;
    width: auto;
    padding: 3px 10px 3px 0;
    text-align: center;
    border-radius: 10px;
}
.profile-sns-box a{
    display: block;
    color:#0a3382;
}
.profile-sns-box img{
    padding: 0;
    vertical-align: sub;
}


/* ===========================================
 * SHOP
=========================================== */

.shop-box{
    margin: 25px;
    width: calc((100% - 200px) / 4);
    height: auto;
}
.shop-box img{
    width: 100%;
    height: auto;
    border:1px solid #ccc;
}

.shop-box .font-small{
    font-size: 80%;
}

/* ===========================================
 * BLOG
=========================================== */
.blog-f{
    margin-top: 20px;
}

.blog-thum{
    float: left;
    margin: 0 10px 0;
    width: 150px;
    height: 150px;
    max-width: 200px;
    text-align: center;
    background: #eee;
    display: table-cell;
    line-height: 140px;
}
.blog-thum img{
    width: auto;
    max-width: 150px;
    max-height: 150px;
    vertical-align: middle;
    object-fit: cover;
}
.blog-title,
.blog-title a{
    font-size: 100%;
    font-weight: normal;
}
.blog-title-date{
    font-size: 90%;
    font-weight: normal;
}
.blog-f img{
    margin: auto;
    display: block;
    height: auto;
    width: 80%;
}


/* ===========================================
 * VIDEO
=========================================== */
.video-box{
    margin: 10px;
    display: inline-block;
    width: 47%;
    height: auto;
}
.video-box h2{
    min-height: 30px;
    font-size: 120%;
    font-weight: 900;
    margin-bottom: 10px;
}
.video-box span{
    font-size: 12px;
}

/* ===========================================
 * PHOTO
=========================================== */

.photo-menu{
    margin: 10px;
    width: 150px;
    height: 50px;
    line-height: 50px;
    border: #0a3382 1px solid;
    text-align: center;
    display: inline-block;
}
.photo-menu a{
    display: block;
    color: #0a3382;    
}
.photo-menu a:hover{
    color: #eee !important;
    background: linear-gradient(-135deg, #4c48c2, #0a3382);
}
.photo-menu-on{
    margin: 10px;
    width: 150px;
    height: 50px;
    line-height: 50px;
    border: #0a3382 1px solid;
    background: #0a3382;
    text-align: center;
    display: inline-block;
}
.photo-menu-on a{
    display: block;
    color: #fff;    
}
.photo-menu-on a:hover{
    color: #fff;
    background: #0a3382;
}
.photo-box{
    margin: 10px;
    float: left;
    width: 360px;
    height: 280px;
}
.photo-thum{
    margin: 0 0 10px;
    text-align: center;
    border: 1px solid #0a3382;
    width: 360px;
    height: 200px;
}
.photo-thum img{
    padding: 5px;
    width: auto;
    height: 200px;
}
.photo-title{
    min-height: 30px;
    font-size: 100%;
    font-weight: normal;
    margin-bottom: 10px;
}
.photo-title span{
    font-size: 90%;
    font-weight: normal;
}
.photo-f{
    text-align: center;
}
.photo-f img{    
    height: auto;
}
.photo-list{
    margin: 50px 0 0 0;
    background: #0a3382;
    text-align: center;
    height: 25px;
    line-height: 25px;
}
.photo-list a{
    color:#fff !important;
    display: block;
}
.photo-list a:hover{
    background: #fff;
    color: #0a3382 !important;
}
.wp-video{
    margin: auto;
}
.video-f{
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;    
}
.video-f iframe{
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%; 
}

/* ===========================================
 * soliloquy
=========================================== */


.topics-box{
    margin: 5px 0 30px;
    padding-bottom: 20px;
    border-bottom: 1px #0a3382 solid;
    overflow: hidden;
    font-weight: normal;
    font-size: 16px;
}


/* ===========================================
 * MEMBER CARD
=========================================== */

.membercard-f{
    position: relative;
    width: 500px;
    height: auto;
    margin: auto;
}
.membercard-f img{
    border-radius: 15px;
    border: 1px solid #8c7864;
    width: 100%;
    height: auto;
}
.member-info{
    position: absolute;
    display: inline-block;
    bottom: 25px;
    left:50px;
}
.info-course{
    position: absolute;
    width: 150px;
    text-align: center;
    font-size: 26px;
    bottom: 25px;
    left:50px;
    color: #eee;
}
.info-number{
    position: absolute;
    font-size: 24px;
    bottom: 100px;
    left: 63%;    
    color: #eee;
}
.info-name{
    position: absolute;
    font-size: 24px;
    bottom: 55px;
    left:55%;   
    color: #eee;
}
.info-date{
    position: absolute;
    bottom: 25px;
    left:52%;    
    color: #eee;
    font-size: 12px;
}
.info-date a{
    color: #eee !important;
}

/* ===========================================
 * Gtranslate
=========================================== */
#gtranslate_wrapper{
    top:5px !important;
    left:30px !important;
}



/* ===========================================
 * SYSTEM
=========================================== */
.login__bottom a:hover{
    background: #92d1d7;
    color:#fff !important;
}

/*新規登録部分の調整*/
td.stry-member-info-input-cell select{
    border:  1px solid #8b8d91;
}
.stry-entry01-maiintable{
    margin: 0 0 20px;
}

input, textarea, button{
    padding: 0 5px;
}
.payment-button-ok,
.stry-entry08-payment-button{
    background: #0a3382;
    border:2px solid #8b8d91;
    padding: 5px 55px;
}
.stry-paymethodinfobox img{
    width: 80%;
    height: auto;
}
.stry-paymethodinfobox{
    border: none !important;
    max-width: 320px;
}
button, input, select, textarea{
    border:  1px solid #8b8d91;    
}
.starry_border{
    margin: 10px 0;
    padding: 0 0 5px;
    border-bottom: 1px dotted #0a3382;
}
.starry_left{
    display: inline-block;
    width: 230px;
}
.starry_right{
    display: inline-block;
}
.starry_margin-bottom{
    margin-bottom: 100px;
}


button, input, select, textarea{
    padding: 0 10px;
}

/* ======================================== */

@media screen and (max-width: 1400px) {
.main-navigation li {
  margin: 0.5em;
  padding: 0 10px;
}
.page__title{
  background:-webkit-linear-gradient(to right, #fff 15%, #0a3382 50%,#fff 85%);
  background:-moz-linear-gradient(to right, #fff 15%, #0a3382 50%,#fff 85%);
  background:linear-gradient(to right, #fff 15%, #0a3382 50%,#fff 85%);    
}
}
@media screen and (max-width: 834px) {
#main-menu a{
    font-size: 90%;
    }
.main-navigation li {
  margin: 0.5em;
  padding: 0;
}

.news-f{
    margin: auto;
    width: 95%;
}    
}



/* ===========================================
 * SP用
=========================================== */


@media screen and (max-width: 768px) {
.sub-menu li{
    height: 50px;
    line-height: 50px;
}        
    
.banner-f{
    width: 90%;
    margin: auto;
 }
.flex--sp>div{
    text-align: center;
}    
.news-box{
    padding: 0 10px;
}    
.video-box{
    margin: 10px;
    display: inline-block;
    width: 45%;
}
.main__head{
    margin: 20px auto;
    }
.shop-box{
    margin: 25px;
    width: calc((100% - 150px) / 3);
    height: auto;
}    
}

/* ===========================================
 * mobile
=========================================== */
@media screen and (max-width: 601px) {        
.pc_none{
    display: block;
}

.sp_none{
    display: none;
}    
#main-menu a:hover:before{
  display: none;
}
#top-logo{
    width: auto;
    margin: 30px 0 20px;
}
.logo-name {
  font-size: 30px;
  line-height: 1.5;
  padding: 0 20%;
}    
.logo-name img{
    width: auto;
    height: 100px;
}  
    
.banner__item img{
    width: 60%;
    height: auto;
}
.news-cat-box{
    margin: 0 0 10px;
}    
.page__title{
  background:-webkit-linear-gradient(to right, #fff 5%, #0a3382 50%,#fff 95%);
  background:-moz-linear-gradient(to right, #fff 5%, #0a3382 50%,#fff 95%);
  background:linear-gradient(to right, #fff 5%, #0a3382 50%,#fff 95%);
    padding: 3% 1.25%;
    font-size: 20px;
}    
.title-song{
    margin: 15px 0;
    font-size: 120%;
}    
.prof-overview{
    font-size: 90%;
    padding: 10px;
}    
.profile__img img{
   height: auto;
}
.shop-box{
    margin: 10px;
    width: calc((100% - 40px) / 2);
    height: auto;
}
.shop-box h3{
    font-size: 90%;
    }
    
/* ===========================================
 * VIDEO
=========================================== */
.video-box{
    width: 95%;
}
.video-box h2{
    height: auto;
}            
.photo-box{
    margin: 10px auto 40px;
    float: none;
    width: 90%;
    height: auto;
}
.photo-thum{
    margin: 0 auto 10px;
    text-align: center;
    box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
    width: 100%;
    height: auto;
}
    
.blog-f iframe{
     width: 330px;
     height: 186px; 
}
    
.blog-thum{
    float: none;
    margin: auto;
    width: 80%;
    height: auto;
    display: revert;
}
.blog-thum img{
    width: 90%;
    height: auto;
    max-height: fit-content;
}
.blog-title{
    font-size: 16px;
}    
.blog-title-date{
    font-size: 14px;
    }
.sche-f,.video-f{
    z-index: 0;
    }
.video-f iframe{
    width: 100%;
    } 
.container--m img{
    text-align: center;        
    }
.login__bottom p{
    padding: 0 5px;
}
.membercard-f{
    width: 95%;
}    
.member-info span{
    font-size: 85%;
    }
.info-course{
    width: 120px;
    font-size: 18px;
    bottom: 20px;
    left:35px;
}
.info-number{
    font-size: 24px;
    bottom: 70px;
}
.info-name{
    font-size: 18px;
    bottom: 44px;
    left:52%;    
}
.info-date{
    bottom: 20px;
    right:5%;    
    font-size: 11px;
}    
    
    
/* ===========================================
 * Gtranslate
=========================================== */
#gtranslate_wrapper{
    top:10px !important;
    left:10px !important;
}    
.switcher{
    font-size: 90% !important;
    width: 145px !important;
        
    }
     
}

@media screen and (max-width: 400px) {
    
.page__title{
  font-size: 14px;
}    
.info-course{
    width: 100px;
    font-size: 18px;
    bottom: 18px;
    left:30px;
}
.info-number{
    font-size: 20px;
    bottom: 62px;
}
.info-name{
    font-size: 18px;
    bottom: 38px;
    left:52%;    
}
.info-date{
    font-size: 10px;
    bottom: 20px;
    right:3%;  
    line-height: 1;    
    word-break: break-all;
} 
}

@media screen and (max-width: 360px) {
.info-number{
    font-size: 18px;
    bottom: 55px;
}
 .info-name{
    bottom: 35px;
}
.info-date{
    bottom: 19px;} 
}

@media screen and (max-width: 300px) {
.info-course{
    width: 70px;
    font-size: 16px;
    bottom: 10px;
    left:25px;
}
.info-number{
    font-size: 18px;
    bottom: 45px;
    }    
.info-name{
    font-size: 14px;
    bottom: 25px;
    }  
.info-date{
    font-size: 6px;
    bottom: 4px;
    right:3%;  
    line-height: 1;
}     
}
