@charset "UTF-8";


p{
    line-height: 170%; /* すべてのpで行間を広めにとった */
}

.sponsor .container{
    max-width:670px; /* パワポの改行位置に従った */
    padding:24px 24px 32px 24px; /* news_n.htmlの方に従った */
    width:auto;
    }

.slideshow{
    margin: 10px auto;
    max-width: 900px; /* containerより横長にしている */
    position: relative; /* 画像上に画像をposition absoluteでのせるために設定している */
    overflow: hidden; /* 消すとスライドショーの前後のチラ見せが画面横いっぱいに広がってします */
}

.slideshow .bx-viewport{
    overflow: visible !important; /* このimportは必要、消すとスライドショーの前後のチラ見せが無くなってしまう */
}

.bx-wrapper .bx-prev{
    left: -100px; /* チラ見せする横幅 */
}

.bx-wrapper .bx-next {
    right: -100px; /* チラ見せする横幅 */
}

.bx-wrapper{
    margin-bottom: 32px;
}

/* スライドショーの画像の影や枠線や背景色などを消去している */
.bx-wrapper .bx-viewport {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border:none;
    background-color:transparent;
    }

.title_text{
    font-weight: bold;
    text-shadow: 2.5px 2.5px 2px black; /* 水平方向の距離、垂直方向の距離、影のぼかし半径、影色 */
    color: whitesmoke;
    position: absolute; /* スライドショーの上に表示するために設定している（絶対的な位置指定） */
    top: 6%;
    left: 55%;
}
@media screen and (max-width: 414px) {
    .title_text{
        top: 8%;
        left: 50%;
    }
  }
@media screen and (max-width: 351px) {
    .title_text{
        left: 43%;
    }
  }

.white_logos{
    position: absolute; /* スライドショーの上に表示するために設定している（絶対的な位置指定） */
    top: 70%;
    left: 57%;
    margin: auto;
    display: flex; /* 画像を横並びするため */
    display: -webkit-box; /* これがないとsafariで表示が崩れる */
    flex-wrap: nowrap; /*折り返さないよう指定*/
    height: auto;
    object-fit: contain; /*縦横比を崩さず画像を表示*/
}
@media screen and (max-width: 659px) {
    .white_logos {
        width: 25%;
        top: 9%;
        left: 4%;
    }
  }

.white_logos .formula{
    width: 150px;
}
@media screen and (max-width: 659px) {
    .white_logos .formula {
       margin-bottom: 4px;
    }
  }

.white_logos .solar{
    width: 100px;
}

    
.sponsor h2{
    padding-left: 34px; /* 34pxはアイコン画像のサイズ */
    line-height: 34px; /* 同上 */
    background: url(../images/midashi_icon.png) no-repeat; /* no-repeatを外すと繰り返す */
}

.list_link{
    margin-top: 24px; /* 24pxはcontainerのpaddingを参考にした */
    margin-left: 60px; /* 60pxは適当（３文字くらい） */
}

.logo_pv_img{
    max-width: 95%; /* 少しcontainerより小さくなるように */
    display: flex;
    display: -webkit-box;
    flex-wrap: nowrap;
    margin: 30px auto;
}
@media screen and (max-width: 723px) {
    .logo_pv_img {
        display: unset;
    }
  }

figure{
    margin: 0;
}
@media screen and (max-width: 723px) {
    figure {
            position: relative;
            width: 100%;
            margin-bottom: 24px;
            margin-top: 16px;
        }
    figure:before {
          content:"";
          display: block;
          /* padding-top: 64%; */
        }
    figure iframe {
          /* position: absolute; */
          top: 0;
          left: 0;
          width: 100%;
          /* height: 100%; */
        }
  }

.logo_pv_img figcaption{
    text-align: center;
}
@media screen and (max-width: 723px) {
    figcaption{ 
       /* display: none;  */
    }
  }

.logo_pv_img .logo{
    margin: 10px auto;
    object-fit: contain;
}

.logo_pv_img .logo.formula{
    width: 220px;
    margin: 65px 35px;
}
@media screen and (max-width: 723px) {
    .logo_pv_img .logo.formula {
       display: none; 
    }
  }

.logo_pv_img .logo.solar{
    width: 190px;
    margin: 60px 50px;
}
@media screen and (max-width: 723px) {
    .logo_pv_img .logo.solar{ 
       display: none; 
    }
  }


/* カルーセルの改行 */
.br-01::before {
    content: "\A" ;
    white-space: pre ;
}
.br-02::before {
    content: "\A" ;
    white-space: pre ;
}
.br-03::before {
    content: "\A" ;
    white-space: pre ;
}
.br-04::before {
    content: "\A" ;
    white-space: pre ;
}

/* カルーセルのフォントサイズ */
.text-size-01{
    font-size: 14px;
}
.text-size-02{
    font-size: 16px;
}
.text-size-03{
    font-size: 24px;
}
@media screen and (max-width: 731px) {
    .text-size-01{
        font-size: 12px;
    }
    .text-size-02{
        font-size: 14px;
    }
    .text-size-03{
        font-size: 16px;
    }
  }
@media screen and (max-width: 500px) {
    .text-size-02{
        font-size: 12px;
    }
    .text-size-03{
        font-size: 12px;
    }
  }

p span{
    line-height: unset;
}
.cal-text{
    line-height: 1.5;
}