@charset "utf-8";
/* CSS Document */
/*WEB-------------フォント-------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

* {
    font-family: 'Noto Sans JP', sans-serif, "Font Awesome 5 Free";
}

body {
    font-family: 'Noto Sans JP', sans-serif, "Font Awesome 5 Free";
    font-size: 16px;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
    line-height: 2;

}

h1,
h2,
h3,
h4,
h5,
h6,
p,
td,
li {
    font-family: 'Noto Sans JP', sans-serif, "Font Awesome 5 Free";
}

/*-------------アンカー・ボタン アウトラインなし-------------*/
a.active.focus,
a.active:focus,
a.focus,
a:active.focus,
a:active:focus,
a:focus,
button.active.focus,
button.active:focus,
button.focus,
button:active.focus,
button:active:focus,
button:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: 0;
    outline-color: transparent;
    outline-width: 0;
    outline-style: none;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}


body {
    background-image: url(../img/TL11_lp_img_bg_pc.png);
    background-repeat: repeat-y;
    background-attachment: fixed;
    background-position: top center;
    background-size: 100% auto;
}
@media only screen and (max-width: 576px){
    body {
    background-image: url(../img/TL11_lp_img_bg_tab_sp.png);
    background-repeat: repeat-y;
    background-attachment: fixed;
    background-position: top center;
    background-size: 100% auto;
}

}


/*-------------フルスクリーン　余白なし-------------*/
.no-gutters {
    margin: 0;
    padding: 0;
}

.container {
    background-color: transparent;
}

.container-fluid {
    padding: 0;
    background-color: transparent;
}

.border_purple_top {
    border-top: 1px solid #935795;
}



/*////////////////////////////////////////////

【カラーコード】
メインカラー
#E8364E
サブ1
#7268AA
サブ2
#488977
サブ3
#F3F5C1
テキストブラック
#333（現在と同様でお願いします。）
【ライブ会場別カラー】また必要な時に再度共有いたします！
Room A
#C34869
RoomB
#7268aa（サブ1と同色）
RoomC
#B1A83D
RoomD
#488977（サブ2と同色）
RoomE
#6892B5

////////////////////////////////////////////*/

/*.bg_img{
    background-image: url(../img/TL11_img_bg.png);
    background-repeat: repeat-y;
    background-size: cover;
}*/

.bg_red {
    background-color: #E8364E;
}

.bg_blue {
    background-color: #7268AA;
}

.bg_green {
    background-color: #488977;
}

.bg_lgreen {
    background-color: #B1A83D;
}

/*----テキストカラー--------------------*/
.text_white {
    color: #fff;
}

.text_red {
    color: #E8364E;
    /*--　メインカラー　--*/
}
.text_blue {
    color: #7268AA;
    
}


.text_green {
    color: #488977;
    /*--　サブカラー　--*/
}
.text_yellow {
    color: #B1A83D;
    /*--　サブカラー　--*/
}

.text_gry {
    color: #d3d3d3;
}




/*---text_link--------------*/
/*----- メイン　----- */
.text_link a {
    color: #E8364E;
    text-decoration: none;
}

.text_link a:hover {
    color: #7268AA;
    text-decoration: underline;
}

/*----- サブ　----- */
.text_link_2 a {
    color: #7268AA;
    text-decoration: none;
}

.text_link_2 a:hover {
    color: #E8364E;
    text-decoration: underline;
}

/*---ボタンカラー--------------*/

.btn-main {
    color: #fff;
    border-color: #E8364E;
    background-color: #E8364E;
}

.btn-main:hover {
    color: #E8364E;
    background-color: rgba(232, 54, 78, 0.1);
}

.btn-sub {
    color: #fff;
    border-color: #7268AA;
    background-color: #7268AA;
}

.btn-sub:hover {
    color: #7268AA;
    background-color: rgba(114, 104, 170, 0.1);
}

/*---fontsize---------------*/
.f12 {
    font-size: 12px;
}

.f14 {
    font-size: 14px;
}

.f16 {
    font-size: 16px;
}

.f18 {
    font-size: 18px;
}

.f20 {
    font-size: 20px;
}

.f22 {
    font-size: 22px;
}
.f25{
    font-size: 25px;
}
.f30 {
    font-size: 30px;
}

.weight_600 {
    font-weight: 600;
}
.weight_700 {
    font-weight: 700;
}

/*-----line-height-----------------*/
.lh_1 {
    line-height: 1.2;
}

/*-----padding-top100px-------------------*/
.mt-100{
    margin-top: 100px;
}
@media only screen and (max-width: 576px){
    .mt-100{margin-top: 60px;}
}

.px-sm{
    padding-right: 0;
    padding-left: 15px;
}
@media only screen and (min-width: 577px){
.px-sm{
    padding-left: 15px;
    padding-right: 15px;
}    
}

/*-------------　PC・SP画像切り替え------------- */
.pc {
    display: block;
}

.sp {
    display: none;
}


@media only screen and (max-width: 576px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

.pc_md {
    display: block;
}

.sp_md {
    display: none;
}
@media only screen and (max-width: 767px) {
    .pc_md {
        display:none;
    }

    .sp_md {
        display: block;
    }
}


.title_text{
    font-size: 20px;
}
@media only screen and (max-width: 576px){
    .title_text{
    font-size: 14px;
}
}
/*----ページデザイン------------------------*/
.toyohashi_week{
    width: 100%;
}
@media only screen and (min-width: 768px){
 .toyohashi_week{
    width: 650px;
}   
}

.live-text-center {
    text-align: center;
}

.live-text {
    display: inline-block;
    max-width: 500px;
}

.text_middle_p {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.text_middle_c {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    color: #fff;


}
.text_middle_c a {
    color: #fff;
}

.text_middle_c a:hover {
    color: #fff;
    text-decoration: none;
}

ul.card_list {
    display: flex;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul.card_list li {
    position: relative;
    display: block;
    text-decoration: none;
    padding: 5px 25px 5px 5px;
    color: #fff;
    width: 100%;
    height: 100%;
    font-size: 1rem;
    line-height: 2;
    font-weight: 600;


}


ul.card_list li ::after {
    content: ""; 
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    position: absolute;
    top: 30%;
    right: 10px;
    text-align: right;
    transform: rotate(135deg);
   

}

.card_list li a{
    color:#fff;
}
.card_list li a:hover{
    color:#fff;
    text-decoration: none;
}



.btn-red {
    position: relative;
    color: #fff;
    background-color: #E8364E;
    border-color: #E8364E;
    border-radius: 50px;
    padding: 5px 100px;
    font-size: 30px;
    font-weight: 600;
}
.btn-red::after {
    content: "";
    display: block;
    font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f0a9';
  color: #fff;
    position: absolute;
    top: -10px;
    right: 2px;
    font-size: 50px;
}
.btn-red:hover{
    color:#fff;
}

.btn-detail {
    position: relative;
    color: #fff;
    background-color: #7268AA;
    border-color: #7268AA;
    border-radius: 0;
    padding: 5px 10px;
    
    width: 50%;
}
.btn-detail::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 35%;
    right: 10px;
    text-align: right;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}
.btn-detail:hover{
    color:#fff;
}
@media only screen and (max-width: 767px){
    .btn-detail {    
    width: 80%;
}
}





.description_pad{
    padding-right: 5%;
    padding-left: 15px;
    max-width: 600px;
 }

@media only screen and (max-width: 767px){
    .description_pad{
    padding: 5% 10%;

 }
}

.description{
    border-top:3px solid #E8364E;
}

@media only screen and (max-width: 767px){
.description{
    border-top:none;
}
}

.top_letter:first-letter {
    color: #E8364E;
    font-size: 30px;
    font-weight: bold;
}
.arrow_red{
       background-image: url(../img/arrow_red.png);
        background-repeat: no-repeat;
    padding-left: 70px;
    height: 64px;
    line-height: 64px;

}
@media only screen and (max-width: 576px){
 .arrow_red{
       background-image: url(../img/arrow_red.png);
       background-size: contain;
        background-repeat: no-repeat;
    padding-left: 45px;
    height: 40px;
    line-height: 32px;

}   

}



.arrow_blue{
    background-image: url(../img/check_purple.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 25px;
    height: 20px;
    line-height: 25px;
}

.arrow_green{
    background-image: url(../img/check_green.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 25px;
    height: 20px;
    line-height: 25px;
}
.arrow_yellow{
    background-image: url(../img/check_yellow.png);
    background-size: contain;
    background-repeat: no-repeat;
    padding-left: 25px;
    height: 20px;
    line-height: 25px;
}

.card{
    background-color: transparent;
}

.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 0 1.25rem;
}
@media only screen and (max-width: 767px){
   .card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem 0;
} 
}


/*-----slickのバック------------------------------------*/
.slickArea {
  background: linear-gradient(180deg, transparent 0%, transparent 50%, #F3F5C1 50%, #F3F5C1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

/*-----slickのスタイル--------------------------------*/
.slider {
    width: 100%;
    margin: 0 auto 80px;
  }
  .slick-slide img {
    width: 100%;
    height: auto;
  }
  .toyohashi_lp{
    width: 100%;
  }
  .toyohashi_lp .slick-slide{
     margin: 5px;
  }
  .prev-arrow,
.next-arrow {
  position: absolute;
  top: 50%;
  margin: 0;
  padding: 0;
  line-height: 1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}
.prev-arrow {
  left: -40px;
  z-index:10;
}

.next-arrow {
  right: -40px;
}
@media only screen and (max-width: 768px){

.prev-arrow {
  left: 120px;
  z-index:10;
}

.next-arrow {
  right: 120px;
}
}
@media only screen and (max-width: 576px){
  .toyohashi_lp .slick-slide{
     margin: 0;
  }

.prev-arrow {
  left: 55px;
  z-index:10;
}

.next-arrow {
  right: 55px;
}
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
    color: #488977;
    font-size: 12px;
     /* hover時の色を変更 */
}
.slick-dots li button:before
{
    /*font-family: 'slick';*/
    font-size: 10px;
    line-height: 10px;

    position: absolute;
    top: 0;
    left: 0;

    width: 10px;
    height: 10px;

    /* 元のcontentプロパティの値だとfont-sizeを変更した際に位置がずれてしまうので値を変更 */
    /* content: '•'; */
    content: '●';
    text-align: center;

    opacity: .25;
    color: #488977;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: #488977; 
    font-size:12px;/* active時の色を変更 */
}
.slick-active li button:after {
    /*font-family: 'slick';*/
    font-size: 10px;
    line-height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    content: '•';
    text-align: center;
    opacity: .25;
    color: #488977;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots{
    bottom: -50px;
}

/*-----ページトップへ-------------------------*/
#page_top {
    width: 30px;
    height: 30px;
    position: fixed;
    right: 0;
    bottom: 0;
    background: rgba(72, 137, 119, 0.6);
    border-radius: 50%;
}

#page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
}

#page_top a::before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
    content: '\f106';
    font-size: 20px;
    color: #fff;
    position: absolute;
    width: 30px;
    height: 30px;
    top: -30px;
    bottom: 0;
    right: 35px;
    left: 0;
    margin: auto;
    text-align: center;
}

/*----------------------------------------------------------*/

 