/* カスタマイズ用CSS */

/* フォント 読み込み*/
/*
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
*/

/*
@font-face {
    font-family: 'BAHNSCHRIFT';
    src: url(/html/user_data/assets/font/Bahnschrift.otf);
}
ギザギザになってしまうので、DINフォントに変更
*/

@font-face {
    font-family: 'DIN 2014';
    src: url(/html/user_data/assets/font/DIN2014-Regular.woff) format('woff'),
         url(/html/user_data/assets/font/DIN2014-Regular.ttf) format('ttf');
}

.FontDIN {
    font-family: 'DIN 2014';
}

html {
    font-size: 62.5%;
}

@media only screen and (max-width: 769px){
    html {
    font-size: 50%;
    }
}


.ec-role li {
    list-style: none;
}

/* タイトル と　タイトル下テキスト */
h2 {
    font-weight: bold;
    color: #B4174A;
    font-size: 3.5rem;
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 3rem;
}

.ttl-text {
    text-align: center;
    margin-bottom: 5rem;
}

@media only screen and (min-width: 768px){
    h2 {
        margin-top: 10rem;
        margin-bottom: 5rem;
    }
}
/* ボタン部分 */
.ec-inlineBtn--top {
    background-color: #B4174A;
    border-color: #B4174A;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -moz-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}

.Btn-pink {
    width: 100%;
    font-size: 1.5rem;
    margin-top: 3rem;
}

.Btn-pink-wrap {
    text-align: center;
}

@media only screen and (min-width: 768px) {
    .ec-inlineBtn--top:hover {
        background-color: #fff;
        border: 1px solid #B4174A;
        color: #B4174A;
        -webkit-box-shadow: 0 1rem 2rem rgba(0, 0, 0, .15);
           -moz-box-shadow: 0 1rem 2rem rgba(0, 0, 0, .15);
                box-shadow: 0 1rem 2rem rgba(0, 0, 0, .15);
         /*
        -webkit-transform: translateY(-2px);
           -moz-transform: translateY(-2px);
            -ms-transform: translateY(-2px);
             -o-transform: translateY(-2px);
                transform: translateY(-2px);
        */
    }
    .ec-inlineBtn--top:active {
        -webkit-box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .15);
           -moz-box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .15);
                box-shadow: 0 .5rem 2rem rgba(0, 0, 0, .15);
        /*
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0);
        */
    }
    .Btn-pink {
    width: 50%;
    font-size: 1.8rem;
    margin-top: 8rem;
}
}

/* おすすめブロックのボタン文字 */
.recommendGrid a {
    color: #fff;
    font-weight: normal;
}

.btn-pink02 {
    margin-top: 3rem;
}

/* ヘッダー */
.ec-headerRole,
.ec-headerNaviRole{
    padding: 0;
}

.ec-headerRole .ec-headerRole__title {
    margin-left: 40px;
}

.ec-layoutRole__header{
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ec-headerTitle .ec-headerTitle__title a{
    margin-bottom: 0;
}
.ec-headerTitle .ec-headerTitle__title{
    text-align: left;
}
.ec-headerNav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 769px){
    .ec-layoutRole__header{
        padding: 10px 20px 10px 10px;
    }
    .ec-headerTitle .ec-headerTitle__title {
        width: 50%;
    }
}

@media only screen and (min-width: 768px){
    .ec-layoutRole__header {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
    
    .ec-headerRole {
        width: 40%;
        padding: 20px;
    }
    
    .ec-headerNaviRole {
        width: 60%;
        padding: 20px;
    }
}


/* カテゴリーNavi */
.ec-categoryNaviRole {
    max-width: 100%;
    background: #A44858;
    margin-bottom: 3rem;
}

.ec-itemNav__nav li a {
    color: #fff;
    background: #A44858;
    font-weight: normal;
    -webkit-transition: background-color 0.3s, color 0.3s;
    -moz-transition: background-color 0.3s, color 0.3s;
    -o-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
}

@media only screen and (min-width: 768px) {
    .ec-itemNav__nav li a:hover,
    .ec-itemNav__nav li a:active {
        color: #A44858;
    }
}
/* MainVisual */
.ec-sliderRole,
.ec-layoutRole .ec-layoutRole__contents{
    max-width: 100%;
}

.ec-sliderRole{
   padding-left: 0; /* 20px; */
   padding-right: 0; /* 20px; */
}

.main_visual_text {
    text-align: center;
    margin-top: 3rem;
    font-weight: bold;
    line-height: 2;
    color: #000;
}

@media only screen and (max-width: 480px) {
    .main_visual_text {
        font-size: 1.2rem;
    }
}

/* バナー */
.ec-topicRole {
    background: #fff;
}

.banner__big {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 3rem;
}

.banner__big-right {
    background: #A44858;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.banner__big-right-box {
    font-size: 1.5rem;
    line-height: 1.6;
    padding: 2rem;
}

.banner__big-right-text:not(:last-child) {
    padding-bottom: 3rem;
}

.br-pc {
    display: none;
}

@media only screen and (min-width: 768px){
    .banner__big {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
           -moz-box-orient: horizontal;
           -moz-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin-top: 13rem;
    }
    
    .banner__big-left,
    .banner__big-right {
    width: 50%;
    }
    
    .br-pc {
    display: block
    }
}

/*　おすすめ */


/* SAKURA ACADEMY */
.ec-academy__list {
    -webkit-padding-start: 0;
       -moz-padding-start: 0;
            padding-inline-start: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ec-academy__list li {
    width: 50%;
    padding: 1rem;
}

@media only screen and (min-width: 768px) {
    .ec-academy__list {
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
    }
}
/* IROHA FILMS */
.ec-films__list {
    -webkit-padding-start: 0;
       -moz-padding-start: 0;
            padding-inline-start: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ec-films__list li {
    padding: 2rem;
}

@media only screen and (min-width: 768px) {
    .ec-films__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
           -moz-box-orient: horizontal;
           -moz-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}
/* IDOL GOODS */
.ec-goods__list {
    -webkit-padding-start: 0;
       -moz-padding-start: 0;
            padding-inline-start: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
}

.ec-goods__list-item {
        width: 50%;
        padding: 1rem;
    }

@media only screen and (min-width: 768px){
    .ec-goods__list {
        width: 70%;
    }
}

/* 劇団SAKURA */

.ec-gekidan__list {
    -webkit-padding-start: 0;
       -moz-padding-start: 0;
            padding-inline-start: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
       -moz-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.ec-gekidan__list li {
    padding: 2rem;
}

.ec-gekidanRole {
    margin-bottom: 3rem;
}

@media only screen and (min-width: 768px){
    .ec-gekidanRole {
        margin-bottom: 15rem;
    }
    .ec-gekidan__list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
           -moz-box-orient: horizontal;
           -moz-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}
/* フッター */
.ec-footerRole {
    background: #A44858;
}

@media only screen and (min-width: 768px){
    .ec-footerTitle {
       padding-top: 20rem;
    }
}