@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&display=swap");

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-style: normal;
}

select {
  margin: 0 0 0 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
}

p,
address,
blockquote,
pre,
div,
abbr,
acronym,
dfn,
cite,
q,
code,
kbd,
samp,
var,
dl,
ol,
ul,
caption,
th {
  font-weight: normal;
  font-style: normal;
}

ul,
li,
ol {
  list-style: none;
}

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ul,
dl,
dt,
dd {
  -webkit-text-size-adjust: 100%;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1.6 !important;
  color: #232323;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

/* ---------------------------------------------
    共通レイアウト
--------------------------------------------- */
.pc {
  display: block;
}

.sp {
  display: none;
}

.tab-sp {
  display: none;
}

@media screen and (max-width: 1080px) {
  .sp {
    display: none;
  }

  .tab-sp {
    display: block;
  }

  .pc {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }

  .tab-sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

.cx_smartphoneview #cx_commonPageTopBtn {
  width: 52px;
  height: 52px;
  bottom: 15px;
}

.cx_smartphoneview #cx_commonPageTopBtn a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  font-size: 22px;
}


/* ============================================ */
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.small {
  font-size: 70%;
}

#fp-wrap a {
  color: #232323;
}

/* == 全体背景 ========================================== */
#fp-wrap {
  border-top: none;
  border-bottom: none;
  margin: 0 auto;
  background-color: #fefde3;
  position: relative;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  color: #232323;
}

.fp-wrap__top {
  background: #fefde3 url(../img/bg2.png) repeat-y center top;
  background-size: 100%;
}

@media screen and (max-width: 1080px) {
  .fp-wrap__top {
    background-image: none;
  }

}

.fadeUp {
animation-name: fadeUpAnime;/*アニメーションの定義名*/
animation-duration:500ms;/*アニメーション変化時間 ※デフォルト*/
animation-fill-mode:forwards;/*アニメーションの開始と終了時の状態を指定*/
opacity:0;
}

/*アニメーションの開始から終了までを指定する*/
@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(60px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.delay-time02{
animation-delay: 0.2s;
}
.delay-time04{
animation-delay: 0.4s;
}

.delay-time06{
animation-delay: 0.6s;
}
.timing-ease{
animation-timing-function:ease;
}

.timing-ease-in{
animation-timing-function:ease-in;
}

.timing-ease-out{
animation-timing-function:ease-out;
}

.timing-ease-in-out{
animation-timing-function:ease-in-out;  
}

.timing-linear{
animation-timing-function:linear; 
}

.timing-steps{
animation-timing-function:steps(4, end);  
}

.timing-cubic-bezier{
animation-timing-function:cubic-bezier(.17,.67,.67,.51);  
}


#info-top{
  background: rgba(255,255,255,.6);
  padding: 35px;
  width: 94%;
  max-width: 1000px;
  margin: 50px auto 80px auto;
  box-sizing: border-box;
   border: 1px solid #cccba9;

}
#info-top .info-top__title{
  font-size: 22px;
  font-weight: 700;
  padding-bottom: 10px;
  color: #000;
  border-bottom: 1px solid #cccba9;
}
#info-top .info-top__text{
  margin-top: 20px;
  line-height: 1.8;
  font-size: 18px;
   font-weight: 600;
}
#info-top .info-top__date{
  text-align: right;
  margin-top: 15px;

}
@media screen and (max-width: 768px) {
  #info-top{
  width: 100%;
  padding: 20px ;
  margin: 20px auto 40px auto;
  box-sizing: border-box;
 
}
#info-top .info-top__title{
  font-size: 18px;
  padding-bottom: 8px;

}
#info-top .info-top__text{
  margin-top: 15px;
  line-height: 1.6;
  font-size: 15px;
}
#info-top .info-top__date{
 font-size: 15px;
  margin-top: 15px;

}
  }

/* == メインビジュアル ========================================== */
#fp-wrap .l-mainvisual {
  width: 100%;
  height: 640px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: url(../img/bg.jpg) no-repeat center top;
  background-size: cover;
}

#fp-wrap .l-mainvisual .l-mainvisual__img {
  width: 235px;
}

.l-mainvisual__logo {
  width: 410px;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 2;
}

.l-mainvisual__photo {
  width: 100%;
  max-width: 1200px;
  height: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.l-mainvisual__photo img {
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 1200px) {
  #fp-wrap .l-mainvisual {
    width: 100%;
    height: 53.33vw;
    margin: 0 auto;
    position: relative;
  }

  .l-mainvisual__photo {
    width: 102%;
    height: 53.33vw;
  }

  .l-mainvisual__logo {
    width: 32vw;
  }
}

@media screen and (max-width: 768px) {
  #fp-wrap .l-mainvisual {
    width: 100%;
    height: auto;
    margin: 0 auto;
    position: relative;
  }
}

/* ---------------------------------------------
    グローバルナビ
--------------------------------------------- */

#nav {
  background: url(../img/nav_bg.png) repeat-x center top;
  background-size: contain;
}

#nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

#nav ul li {
  width: 25%;
  background: #fff000;
  box-sizing: border-box;
}

#nav ul li#nav-sns {
  background: transparent;
  border-right: 1px solid #ffc355;
  position: relative;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#nav ul li a img {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

#nav ul li a:hover img {
  opacity: 0.6;
}

#nav ul li#nav-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: auto;
}

#nav ul li#nav-sns ul li {
  background: none;
  border-right: none;
  width: 64px;
  padding: 0 7px;
}

#nav ul li#nav-sns p {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 0 rgba(212, 67, 7, 1);
  padding-left: 30px;
}

@media screen and (max-width: 1200px) {
  #nav ul li#nav-sns {
    height: 10vw;
  }
}

@media screen and (max-width: 1080px) {
  #nav ul li#nav-sns ul li {
    width: 5vw;
    padding: 0 0.5vw;
  }

  #nav ul li#nav-sns p {
    color: #fff;
    font-size: 2vw;
    font-weight: bold;
    text-shadow: 1px 1px 0 rgba(212, 67, 7, 1);
    padding-left: 2.5vw;
  }
}

@media screen and (max-width: 768px) {
  #nav ul li {
    width: 50%;
  }

  #nav ul li#nav-sns {
    height: 21.33vw;
    background: url(../img/nav_bg.png) repeat-x center top;
    background-size: contain;
  }

  #nav ul li#nav-sns ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 70%;
    margin: 0 auto;
  }

  #nav ul li#nav-sns ul li {
    background: none;
    border-right: none;
    width: 50%;
    padding: 0 6%;
  }

  #nav ul li#nav-sns p {
    display: none;
  }
}

/* ---------------------------------------------
    共通メインレイアウト
--------------------------------------------- */
#fp-contents {
  width: 100%;
  margin: 0 auto;
  padding-bottom: 60px;
}

.fp-contents__sorayomi {
  padding-bottom: 0 !important;
}

@media screen and (max-width: 768px) {
  #fp-contents {
    padding-bottom: 40px;
  }
}

/* ---------------------------------------------
    OA情報
--------------------------------------------- */

#oainfo {
  width: 94%;
  margin: 50px auto 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
  border: 6px solid #fff000;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
}

#oainfo .premium-overview {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;

  line-height: 1.7;
}

#oainfo .premium-oa-date {
  font-size: 25px;
  font-weight: 600;
  padding-left: 150px;
  background: url(../img/oainfo.png) no-repeat left top;
  background-size: 136px;
}

@media screen and (max-width: 1200px) {
  #oainfo {
    margin-top: 40px;
    padding: 24px;
  }
}

@media screen and (max-width: 768px) {
  #oainfo {
    width: 94%;
    margin: 30px auto 0 auto;
    border-radius: 10px;
    border: 4px solid #fff000;
    padding: 16px;
  }

  #oainfo .premium-overview {
    font-size: 15px;
    margin-top: 6px;
    line-height: 1.6;
  }

  #oainfo .premium-oa-date {
    font-size: 18px;
    line-height: 1.5;
    padding-left: 0;
    padding-top: 36px;
    background: url(../img/oainfo.png) no-repeat left top;
    background-size: 110px;
  }
}
/* ---------------------------------------------
    ニュース
--------------------------------------------- */

#news {
  width: 94%;
  max-width: 1200px;
  position: relative;
}

#news,
#movie,
#program,
#mokugeki {
  margin-top: 80px;
  margin-right: auto;
  margin-left: auto;
}

#news h2,
#movie h2,
#program h2 {
  width: 54%;
  max-width: 540px;
}

.news_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.news_list li {
  width: calc((100% - 90px) / 4);
  margin-right: 30px;
}

.news_list li img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.news_list li:nth-child(-n + 4) {
  margin-top: 0;
}

.news_list li:nth-child(4n) {
  margin-right: 0;
}

.news_list li a {
  display: block;
  color: #232323;
  background: #fff;
  box-shadow: 0 3px 0 #e6e5c9;
  border-radius: 10px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.news_list li a img {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.news_list li a:hover {
  background-color: #ffebbf;
  box-shadow: 0 3px 0 #ffd08d;
}

.news_list .clickArea .news_image {
  background: #000;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.news_list .clickArea .news_image img {
  transition: 1s all;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: contain;
  aspect-ratio: 16 / 9;
}

.news_list li a:hover img {
  opacity: 0.8;
}

.news_list li a .txtArea {
  padding: 20px;
}

.news_list li a .txtArea .date {
  color: #ff8001;
  font-weight: 600;
}

.news_list li a .txtArea .ttl {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;

  font-weight: 700;
}

.news-link {
  width: 380px;
  position: absolute;
  top: 0;
  right: 0;
}

.news-link a {
  display: block;
  background-image:url(../img/arrow1.png),url(../img/nav_bg.png) ;
  background-repeat: no-repeat,repeat-x;
  background-position: right 20px center,left center;
   background-size: 30px,42px;
  text-align: center;
  color: #FFF!important;
  text-shadow: 1px 1px 1px rgba(204,51,0,.4);
  padding: 24px 0;
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

@media screen and (min-width: 767px) {
  .news-link a:hover {
  background-image:url(../img/arrow1.png),url(../img/nav_bg.png) ;
  background-repeat: no-repeat,repeat-x;
  background-position: right 16px center,left center;
   background-size: 30px,42px;
  text-align: center;
    opacity: 0.6;
  }
}

@media screen and (max-width: 1200px) {

  #news,
  #movie,
  #program,
  #mokugeki {
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
  }

  .news_list li {
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
  }

  .news_list li a .txtArea {
    padding: 14px;
  }

  .news_list li a .txtArea .ttl {
    font-size: 16px;
  }


  .news-link a {
    padding: 24px 0;
    line-height: 1;
    font-size: 16px;
  }
}

@media screen and (max-width: 1080px) {
  .news-link {
    width: 36vw;
  }

  .news-link a {
    display: block;
    background-image:url(../img/arrow1.png),url(../img/nav_bg.png) ;
  background-repeat: no-repeat,repeat-x;
  background-position: right 2vw center,left center;
   background-size: 3vw,4.2vw;
    padding: 2.4vw 0;
    line-height: 1;
    font-size: 1.8vw;
  }

  .news-link a:hover {
    background-image:url(../img/arrow1.png),url(../img/nav_bg.png) ;
  background-repeat: no-repeat,repeat-x;
  background-position: right 1.6vw center,left center;
   background-size: 3vw,4.2vw;

  }
}

@media screen and (max-width: 768px) {

  #news,
  #movie,
  #program,
  #mokugeki {
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
  }

  #news h2,
  #movie h2,
  #program h2 {
    width: 100%;
  }

  .news_list {
    margin-top: 5px;
  }

  .news_list li {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
  }

  .news_list li:nth-child(-n + 4) {
    margin-top: 16px;
  }

  .news_list li:nth-child(4n) {
    margin-right: 0;
  }

  .news_list li:nth-child(2n) {
    margin-right: 0;
  }

  .news_list li a {
    display: block;
    border-radius: 10px;
    -webkit-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
  }

  .news_list li a .txtArea {
    padding: 12px 10px;
  }

  .news_list li a .txtArea .date {
    font-size: 14px;
  }

  .news_list li a .txtArea .ttl {
    font-size: 15px;
    margin-top: 4px;

  }

  .news-link {
    width: 100%;
    margin-top: 30px;
    position: relative;
    top: auto;
    right: auto;
  }

  .news-link a,
  .news-link a:hover {
    background-image:url(../img/arrow1.png),url(../img/nav_bg.png) ;
    background-repeat: no-repeat,repeat-x;
    background-position: right 5.33vw center,left center;
    background-size: 6.4vw,8vw;
    padding: 5.33vw 0;
    line-height: 1;
    font-size: 4vw;
    text-shadow: 1px 1px 0px rgba(204,51,0,.4);
   
  }
}

/* ---------------------------------------------
    番組動画
--------------------------------------------- */

#movie {
  width: 94%;
  max-width: 1200px;
  position: relative;
}

.movie-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.movie-list li {
  width: calc((100% - 5%) / 2);
  margin-right: 5%;


}

.movie-list li:last-child {
  margin-right: 0;
}

.movie-list__inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie-list__inner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.movie-link {
  width: 100%;
  max-width: 380px;
  position: absolute;
  top: 0;
  right: 0;
}

.movie-link a {
  display: block;
  background: #fff000 url(../img/arrow1.png) no-repeat right 20px center;
  background-repeat: no-repeat;
  background-size: 30px;
  color: #232323;
  padding: 24px 0;
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.movie-link__shirabetemitara a {
  background-color: #fff000;
  background-image: url(../img/icon_shirabetemitara.png), url(../img/arrow1.png),url(../img/nav_bg.png);
  background-repeat: no-repeat, no-repeat,repeat-x;
  background-position: left 75px center, right 20px center,left center;
  padding: 24px 0 24px 140px;
  color: #FFF!important;
   text-shadow: 1px 1px 1px rgba(204,51,0,.4);
  background-size: 48px, 30px,42px;
}

.movie-link__shirabetemitara a:hover {
  opacity: 0.6;
  background-image: url(../img/icon_shirabetemitara.png), url(../img/arrow1.png),url(../img/nav_bg.png);
  background-repeat: no-repeat, no-repeat,repeat-x;
  background-position: left 75px center, right 16px center,left center;
  padding: 24px 0 24px 140px;
  background-size: 48px, 30px,42px;
}

@media screen and (max-width: 1200px) {
  .movie-link a {
    line-height: 1;
    font-size: 16px;
  }
}

@media screen and (max-width: 1080px) {
  .movie-link {
    width: 36vw;
    max-width: 36vw;
  }

  .movie-link a {
    display: block;
    background: #fff000 url(../img/arrow1.png) no-repeat right 2vw center;
    background-repeat: no-repeat;
    background-size: 3vw;
    padding: 2.4vw 0;
    line-height: 1;
    font-size: 1.8vw;
  }

  .movie-link__shirabetemitara a {
    background-image: url(../img/icon_shirabetemitara.png), url(../img/arrow1.png),url(../img/nav_bg.png);
    background-repeat: no-repeat, no-repeat,repeat-x;
    background-position: left 6vw center, right 2vw center,left center;
    padding: 2.4vw 0 2.4vw 12.5vw;
    background-size: 4.2vw, 3vw,4.2vw;
  }

  .movie-link__shirabetemitara a:hover {
    opacity: 0.6;
    background-image: url(../img/icon_shirabetemitara.png), url(../img/arrow1.png),url(../img/nav_bg.png);
    background-repeat: no-repeat, no-repeat,repeat-x;
    background-position: left 6vw center, right 1.6vw center,left center;
    padding: 2.4vw 0 2.4vw 12.5vw;
    background-size: 4.2vw, 3vw,4.2vw;
  }
}

@media screen and (max-width: 768px) {
  .movie-list {
    display: block;
    margin-top: 0;
  }

  .movie-list li {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }

  .movie-list li:last-child {
    margin-right: 0;
    margin-top: 30px;
  }

  .movie-list__inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }

  .movie-list__inner iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
  }

  .movie-link {
    width: 100%;
    max-width: 100%;
    margin: 30px auto 0 auto;
    position: relative;
  }

  .movie-link a {
    display: block;
    background: #fff000 url(../img/arrow1.png) no-repeat right 2vw center;
    background-repeat: no-repeat;
    background-size: 3vw;
    padding: 5.33vw 0;
    line-height: 1;
    font-size: 4vw;
  }
  .movie-link__shirabetemitara a,
  .movie-link__shirabetemitara a:hover {
    opacity: 1;
    background-image: url(../img/icon_shirabetemitara.png), url(../img/arrow1.png),url(../img/nav_bg.png);
    background-repeat: no-repeat, no-repeat,repeat-x;
    background-position: left 22vw center, right 5.33vw center,left center;
    padding: 5.33vw 0 5.33vw 35vw;
    background-size: 10vw, 6.4vw,8vw;
    text-shadow: 1px 1px 0px rgba(204,51,0,.4);
  }
}

/* ---------------------------------------------
    コーナー紹介
--------------------------------------------- */

#program {
  width: 94%;
  max-width: 1200px;
}

.program-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 30px;
}

.program-list li {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-top: 30px;
  background: #fff;
  border-radius: 10px;
  font-size: 18px;
}

.program-list li a {
  display: block;
  background: url(../img/arrow2.png) no-repeat right 14px bottom 14px;
  padding-bottom: 20px;
  background-size: 30px;
  box-shadow: 0 3px 0 #e6e5c9;
  border-radius: 10px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.program-list li a img {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.program-list li a:hover img {
  opacity: 0.8;
}

.program-list li a:hover {
  background: #ffebbf url(../img/arrow2.png) no-repeat right 10px bottom 14px;
  background-size: 30px;
  box-shadow: 0 3px 0 #ffd08d;
}

.program-list p {
  padding: 20px 24px;
  line-height: 1.6;
  font-weight: 700;
}

.program-list li img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.program-list li:nth-child(-n + 3) {
  margin-top: 0;
}

.program-list li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  .program-list p {
    padding: 14px;
  }

  .program-list li {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-top: 20px;
    font-size: 16px;
  }

  .program-list li a {
    padding-bottom: 30px;
    background: url(../img/arrow2.png) no-repeat right 12px bottom 10px;
    background-size: 24px;
  }

  .program-list li a:hover {
    background: #ffebbf url(../img/arrow2.png) no-repeat right 8px bottom 10px;
    background-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .program-list {
    margin-top: 10px;
  }

  .program-list li {
    width: calc((100% - 16px) / 2);
    margin-right: 16px;
    margin-top: 16px;
    font-size: 15px;
  }

  .program-list li:nth-child(-n + 3) {
    margin-top: 16px;
  }

  .program-list p {
    padding: 10px;
  }

  .program-list li:nth-child(3n) {
    margin-right: 16px;
  }

  .program-list li:nth-child(2n) {
    margin-right: 0;
  }

  .program-list li a,
  .program-list li a:hover {
    padding-bottom: 20px;
    background: transparent url(../img/arrow2.png) no-repeat right 10px bottom 10px;
    background-size: 20px;
  }

  .program-list li a:hover {
    box-shadow: 0 3px 0 #e6e5c9;
  }

}

/* ----------------------------------------
  モクゲキ！
 ---------------------------------------- */

#mokugeki {
  background: url(../img/bg3.jpg) no-repeat center top;
  background-size: cover;
  padding: 60px 0;
}

.mokugeki-box {
  width: 94%;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .85);
  border-radius: 20px;
  border: 5px solid #FFF;
  box-sizing: border-box;
  padding: 50px 50px 40px 50px;
}

.mokugeki-box .logo {
  width: 580px;
  margin: 0 auto;
}

.mokugeki-box__lead {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 15px;
  padding-bottom: 10px;
}

.mokugeki-box__item {
  background: #fff000;
  margin: 20px 0 0 0;
  box-shadow: 0 3px 0 #ebdd04;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 20px 40px;
}

.mokugeki-box__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.mokugeki-box__link .mokugeki-box__text {
  width: 45%;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 700;
  padding-left: 50px;
  letter-spacing: 1px;
}

.mokugeki-box__mail .mokugeki-box__text {
  background: url(../img/icon_mail.png) no-repeat left center;
  background-size: 30px;
}

.mokugeki-box__mail .mokugeki-box__text span {
  color: #294ee9;
}

.mokugeki-box__movie .mokugeki-box__text {
  background: url(../img/icon_movie.png) no-repeat left center;
  background-size: 30px;
}

.mokugeki-box__movie .mokugeki-box__text span {
  color: #f63752;
}

.mokugeki-box__link .mokugeki-box__btn {
  width: 55%;
}

.mokugeki-box__btn {
  width: 100%;
}

.mokugeki-box__btn a {
  display: block;
  text-align: center;
  color: #FFF !important;
  padding: 24px 0;
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

.mokugeki-box__mail .mokugeki-box__btn a {
  background: #294ee9 url(../img/arrow_blue.png) no-repeat right 20px center;
  background-size: 30px;
}

.mokugeki-box__movie .mokugeki-box__btn a {
  background: #f63752 url(../img/arrow_red.png) no-repeat right 20px center;
  background-size: 30px;
}

.mokugeki-box__info {
  margin-top: 10px;
  font-size: 14px;
}

.mokugeki-box__info img {
  width: 140px;
  margin: 0 5px 5px 0;
}

.mokugeki-box__attention {
  font-size: 16px;
  font-weight: 500;
  margin-top: 30px;
  line-height: 1.6;
}

@media screen and (max-width: 1080px) {
  .mokugeki-box__btn a {
    padding: 2.4vw 0;
    font-size: 1.8vw;

  }
}

@media screen and (min-width: 767px) {
  .mokugeki-box__mail .mokugeki-box__btn a:hover {
    background: #294ee9 url(../img/arrow_blue.png) no-repeat right 16px center;
    background-size: 30px;
    opacity: 0.6;
  }

  .mokugeki-box__movie .mokugeki-box__btn a:hover {
    background: #f63752 url(../img/arrow_red.png) no-repeat right 16px center;
    background-size: 30px;
    opacity: 0.6;
  }
}

@media screen and (max-width: 768px) {
  #mokugeki {
    padding: 50px 0;

  }

  .mokugeki-box {
    border-radius: 10px;
    border: 4px solid #FFF;
    padding: 35px 10px 25px 10px;
    width: 96%;
  }

  .mokugeki-box .logo {
    width: 96%;
    margin: 0 auto;
  }

  .mokugeki-box__lead {
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    margin-top: 15px;
    padding: 0 6px;
    padding-bottom: 0;
  }

  .mokugeki-box__item {
    margin: 20px 0 0 0;
    padding: 16px;
    box-shadow: 0 4px 0 #ebdd04;
  }

  .mokugeki-box__link {
    display: block;
    overflow: hidden;
  }

  .mokugeki-box__link .mokugeki-box__text {
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
    text-align: center;
    padding-left: 0;
    letter-spacing: 1px;
  }

  .mokugeki-box__mail .mokugeki-box__text {
    background: none;
  }

  .mokugeki-box__mail .mokugeki-box__text:before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 15px;
    background: url(../img/icon_mail.png) no-repeat left center;
    background-size: 20px;
  }

  .mokugeki-box__movie .mokugeki-box__text {
    background: none;
  }

  .mokugeki-box__movie .mokugeki-box__text:before {
    content: "";
    display: inline-block;
    width: 35px;
    height: 15px;
    background: url(../img/icon_movie.png) no-repeat left center;
    background-size: 20px;
  }

  .mokugeki-box__link .mokugeki-box__btn {
    width: 100%;
  }

  .mokugeki-box__btn {
    width: 100%;
    margin-top: 10px;
  }

  .mokugeki-box__btn a {
    padding: 5.33vw 0;
    line-height: 1;
    font-size: 4vw;
  }

  .mokugeki-box__mail .mokugeki-box__btn a {
    background: #294ee9 url(../img/arrow_blue.png) no-repeat right 5.33vw center;
    background-size: 6.4vw;
  }

  .mokugeki-box__movie .mokugeki-box__btn a {
    background: #f63752 url(../img/arrow_red.png) no-repeat right 5.33vw center;
    background-size: 6.4vw;
  }

  .mokugeki-box__info {
    margin-top: 20px;
    font-size: 14px;
  }

  .mokugeki-box__info img {
    width: 140px;
    margin: 0 5px 5px 0;
  }

  .mokugeki-box__attention {
    font-size: 14px;
    font-weight: 500;
    margin-top: 20px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

/* ---------------------------------------------
    イットとは
--------------------------------------------- */

#intro {
  width: 100%;
  max-width: 1000px;
  padding: 50px 0 350px 0;
  overflow: hidden;
  margin: 60px auto 0 auto;
  background: url(../img/bg3.jpg) no-repeat center top;
  background-size: cover;
  border-radius: 30px;
  position: relative;
}

#intro h2 {
  width: 330px;
  margin: 0 auto;
}

#intro p {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  color: #232323;
  line-height: 2;
  font-weight: 700;
}

#intro p span {
  display: block;
  font-size: 30px;
  line-height: 1.7;
  padding-bottom: 30px;
  font-weight: 800;
}

#intro .intro_img1 {
  width: 274px;
  position: absolute;
  bottom: -10px;
  left: -60px;
}

#intro .intro_img2 {
  width: 224px;
  position: absolute;
  bottom: 0px;
  right: -40px;
}

#intro .intro_img3 {
  width: 367px;
  position: absolute;
  bottom: -50px;
  left: 280px;
}

@media screen and (max-width: 1080px) {
  #intro {
    padding: 5vw 0 35vw 0;
  }

  #intro .intro_img1 {
    width: 27.4vw;
    position: absolute;
    bottom: -1vw;
    left: -6vw;
  }

  #intro .intro_img2 {
    width: 23.7vw;
    position: absolute;
    bottom: 0px;
    right: -4vw;
  }

  #intro .intro_img3 {
    width: 36.7vw;
    position: absolute;
    bottom: -5vw;
    left: 28vw;
  }
}

@media screen and (max-width: 768px) {
  #intro {
    padding: 8vw 0 42vw 0;
    border-radius: 20px;
  }

  #intro h2 {
    width: 50%;
    margin: 0 auto;
  }

  #intro p {
    margin-top: 4vw;
    font-size: 16px;
    color: #232323;
    line-height: 1.8;

  }

  #intro p span {
    display: block;
    font-size: 20px;
    padding-bottom: 30px;
  }

  #intro .intro_img1 {
    width: 32vw;
    position: absolute;
    bottom: -1vw;
    left: -6vw;
  }

  #intro .intro_img2 {
    width: 27vw;
    position: absolute;
    bottom: 0px;
    right: -6vw;
  }

  #intro .intro_img3 {
    width: 44vw;
    position: absolute;
    bottom: -5vw;
    left: 24vw;
  }
}

/* ---------------------------------------------
    下層ページ共通
--------------------------------------------- */


.page {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 0 0;
}

.page-title h2 {
  font-size: 40px;
  font-weight: 700;
  background: url(../img/icon.png) no-repeat left center;
  background-size: 70px;
  padding: 10px 0 10px 80px;
}

#page-header {
  background: url(../img/bg4.jpg) no-repeat center center;
  background-size: cover;

}

.page-header__box {
  padding: 20px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  background: url(../photo/top_main.png) no-repeat right bottom -10px;
  background-size: 340px;
}

.page-header__box h1 {
  width: 30%;
  max-width: 300px;
  padding-left: 3%;
}

@media screen and (max-width: 1080px) {
  .page {
    padding: 40px 0 0 0;
  }

  .page-title h2 {
    font-size: 34px;
    background: url(../img/icon.png) no-repeat left center;
    background-size: 50px;
    padding: 0px 0 0px 60px;
  }

  .page-header__box {
    margin: 0 auto;
    background: url(../photo/top_main.png) no-repeat right bottom -10px;
    background-size: 300px;
  }
}

@media screen and (max-width: 768px) {
  .page {
    padding: 30px 0 0 0;
  }

  #page-header {
    background: url(../img/bg4.jpg) no-repeat center center;
    background-size: cover;

  }

  .page-header__box {
    padding: 3.2vw 0;
    width: 100%;
    background: url(../photo/top_main.png) no-repeat right bottom -10px;
    background-size: 48vw;
  }

  .page-header__box h1 {
    width: 40%;
    max-width: 40%;
    padding-left: 3%;
  }

  .page-title h2 {
    font-size: 24px;
    background: url(../img/icon.png) no-repeat left center;
    background-size: 30px;
    padding: 0px 0 0px 40px;
  }
}

/* ---------------------------------------------
    出演者
--------------------------------------------- */

#cast ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 20px;

}

#cast ul li {
  width: calc((100% - 90px) / 4);
  margin-right: 30px;
  margin-top: 30px;
  background: #FFF;
  border-radius: 10px;
  padding: 0 0 20px 0;
  text-align: center;
}

#cast ul li img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

#cast ul li:nth-child(-n + 4) {
  margin-top: 0;
}

#cast ul li:nth-child(4n) {
  margin-right: 0;
}

#cast ul li dd {
  padding-top: 20px;
}

#cast ul li .cast-name {
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

#cast ul li .cast-info {
  color: #666;
  font-size: 14px;
  margin-top: 10px;
  line-height: 1.3;

}

@media screen and (max-width: 1200px) {
  #cast ul li {
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
    margin-top: 20px;

  }

  #cast ul li .cast-name {
    font-size: 20px;

  }
}

@media screen and (max-width: 1080px) {
  #cast ul li {
    width: calc((100% - 60px) / 3);
    margin-right: 30px;
    margin-top: 30px;

  }

  #cast ul li:nth-child(-n + 4) {
    margin-top: 0;
  }

  #cast ul li:nth-child(4n) {
    margin-right: 30px;
    margin-top: 30px;
  }

  #cast ul li:nth-child(-n + 3) {
    margin-top: 0;

  }

  #cast ul li:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  #cast ul {
    margin-top: 15px;
  }

  #cast ul li {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-top: 15px;
    padding: 0 0 15px 0;
  }

  #cast ul li:nth-child(4n) {
    margin-right: 0;
    margin-top: 15px;
  }

  #cast ul li:nth-child(-n + 3) {
    margin-top: 0;
  }

  #cast ul li:nth-child(3n) {
    margin-right: 15px;
    margin-top: 15px;
  }

  #cast ul li:nth-child(-n + 2) {
    margin-top: 0;

  }

  #cast ul li:nth-child(2n) {
    margin-right: 0;
  }

  #cast ul li dd {
    padding-top: 15px;
  }

  #cast ul li .cast-name {
    font-size: 17px;
    letter-spacing: 0;
  }

  #cast ul li .cast-info {
    font-size: 13px;
    margin-top: 6px;


  }
}

/* ---------------------------------------------
    ソラよみ
--------------------------------------------- */

.sorayomi-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  background: url(../img/gachapin.png) no-repeat left 30px bottom -320px;
  background-size: 320px;
  padding-bottom: 60px;
  margin-top: 20px;
  position: relative;
}
.sorayomi-box .copy{
  position: absolute;
  bottom: 10px;
  color: #666;
  font-size: 10px!important;
  font-weight: 500;
  left: 338px;
  margin-top: 0!important;
}

.sorayomi-box .sorayomi-box__info {
  width: 30%;

  box-sizing: border-box;
}

.sorayomi-box .sorayomi-box__info p {
  font-weight: 700;
  font-size: 20px;
  margin-top: 20px;
}

.sorayomi-box .sorayomi-box__cast {
  width: 70%;
  box-sizing: border-box;
  padding-left: 60px;

}

.sorayomi-box .sorayomi-box__cast ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 0;

}

.sorayomi-box .sorayomi-box__cast li {
  width: calc((100% - 50px) / 3);
  margin-right: 25px;
  margin-top: 25px;
  background: #FFF;
  border-radius: 10px;

  text-align: center;
}

.sorayomi-box .sorayomi-box__cast li img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.sorayomi-box .sorayomi-box__cast li:nth-child(-n + 3) {
  margin-top: 0;
}

.sorayomi-box .sorayomi-box__cast li:nth-child(3n) {
  margin-right: 0;
}

.sorayomi-box .sorayomi-box__cast dd {
  padding: 24px 0 24px 20px;

}

.mon dd {
  background: url(../img/sorayomi_mon.png) no-repeat left 10px center;
  background-size: 50px;
}

.tue dd {
  background: url(../img/sorayomi_tue.png) no-repeat left 10px center;
  background-size: 50px;
}

.wed dd {
  background: url(../img/sorayomi_wed.png) no-repeat left 10px center;
  background-size: 50px;
}

.thu dd {
  background: url(../img/sorayomi_thu.png) no-repeat left 10px center;
  background-size: 50px;
}

.fri dd {
  background: url(../img/sorayomi_fri.png) no-repeat left 10px center;
  background-size: 50px;
}

.sorayomi-box .sorayomi-box__cast dd .cast-name {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
}

.sorayomi-sns {
  background: url(../img/bg3.jpg) no-repeat center center;
  background-size: cover;
  padding: 50px 0;
}

.sorayomi-sns .sorayomi-sns__box {
  width: 500px;
  margin: 0 auto;
  background: #FFF;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
}

.sorayomi-sns .sorayomi-sns__box p {
  font-weight: 600;
  font-size: 20px;
}

.sorayomi-sns .sorayomi-sns__box p span {
  color: #219dcf;
}

.sorayomi-sns .sorayomi-sns__box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 20px auto 0 auto;
  box-sizing: border-box;
  width: 200px;
}

.sorayomi-sns .sorayomi-sns__box ul li {
  box-sizing: border-box;
  width: 70px;
  padding: 0 10px;

}

.sorayomi-sns .sorayomi-sns__box ul li a img {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

@media screen and (min-width: 767px) {
  .sorayomi-sns .sorayomi-sns__box ul li a:hover img {
    opacity: .6;
  }
}

@media screen and (max-width: 1160px) {
  .sorayomi-box {
    background: url(../img/gachapin.png) no-repeat left 4vw bottom 0;
    background-size: 28vw;
    padding-bottom: 5vw;
    margin-top: 20px;
  }
  .sorayomi-box .copy{
  position: absolute;
  bottom: 10px;
  font-weight: 500;
  left: 33vw;
  margin-top: 0!important;
}

  .sorayomi-box .sorayomi-box__info {
    width: 40%;
    box-sizing: border-box;
  }

  .sorayomi-box .sorayomi-box__info p {
    font-size: 18px;
  }

  .sorayomi-box .sorayomi-box__cast {
    width: 60%;
    box-sizing: border-box;
    padding-left: 30px;

  }

  .sorayomi-box .sorayomi-box__cast ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;

  }

  .sorayomi-box .sorayomi-box__cast li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-top: 20px;
    background: #FFF;
    border-radius: 10px;

    text-align: center;
  }

  .sorayomi-box .sorayomi-box__cast li img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .sorayomi-box .sorayomi-box__cast li:nth-child(-n + 3) {
    margin-top: 20px;
  }

  .sorayomi-box .sorayomi-box__cast li:nth-child(3n) {
    margin-right: 20px;
  }

  .sorayomi-box .sorayomi-box__cast li:nth-child(-n + 2) {
    margin-top: 0;
  }

  .sorayomi-box .sorayomi-box__cast li:nth-child(2n) {
    margin-right: 0;
  }

  .sorayomi-box .sorayomi-box__cast dd {
    padding: 24px 0 24px 20px;

  }

  .mon dd {
    background: url(../img/sorayomi_mon.png) no-repeat left 6px center;
    background-size: 44px;
  }

  .tue dd {
    background: url(../img/sorayomi_tue.png) no-repeat left 6px center;
    background-size: 44px;
  }

  .wed dd {
    background: url(../img/sorayomi_wed.png) no-repeat left 6px center;
    background-size: 44px;
  }

  .thu dd {
    background: url(../img/sorayomi_thu.png) no-repeat left 6px center;
    background-size: 44px;
  }

  .fri dd {
    background: url(../img/sorayomi_fri.png) no-repeat left 6px center;
    background-size: 44px;
  }

  .sorayomi-box .sorayomi-box__cast dd .cast-name {
    font-size: 18px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
  }

}

@media screen and (max-width: 768px) {
  .sorayomi-box {
    background: none;
    margin-top: 15px;
    padding-bottom: 8vw;
  }
    .sorayomi-box .copy{
  position: absolute;
  bottom: 2vw;
  font-weight: 500;
  left: auto;
  right: 11vw;
  margin-top: 0!important;
}

  .sorayomi-box .sorayomi-box__info {
    width: 100%;

    box-sizing: border-box;
    background: url(../img/gachapin.png) no-repeat center bottom -42vw;
    background-size: 50vw;
    padding-bottom: 54vw;
    position: relative;
  }

  .sorayomi-box .sorayomi-box__info p {

    font-size: 16px;
    text-align: center;

  }

  .sorayomi-box .sorayomi-box__cast {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0;

  }

  .sorayomi-box .sorayomi-box__cast ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 0;

  }

  .sorayomi-box .sorayomi-box__cast li {
    width: calc((100% - 15px) / 2);
    margin-right: 15px;
    margin-top: 15px;
    background: #FFF;
    border-radius: 10px;

    text-align: center;
  }

  .sorayomi-box .sorayomi-box__cast li img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }

  .sorayomi-box .sorayomi-box__cast li:nth-child(-n + 3) {
    margin-top: 15px;
  }

  .sorayomi-box .sorayomi-box__cast li:nth-child(3n) {
    margin-right: 15px;
  }

  .sorayomi-box .sorayomi-box__cast li:nth-child(-n + 2) {
    margin-top: 0;
  }

  .sorayomi-box .sorayomi-box__cast li:nth-child(2n) {
    margin-right: 0;
  }

  .sorayomi-box .sorayomi-box__cast dd {
    padding: 20px 0 20px 20px;

  }

  .mon dd {
    background: url(../img/sorayomi_mon.png) no-repeat left 10px center;
    background-size: 36px;
  }

  .tue dd {
    background: url(../img/sorayomi_tue.png) no-repeat left 10px center;
    background-size: 36px;
  }

  .wed dd {
    background: url(../img/sorayomi_wed.png) no-repeat left 10px center;
    background-size: 36px;
  }

  .thu dd {
    background: url(../img/sorayomi_thu.png) no-repeat left 10px center;
    background-size: 36px;
  }

  .fri dd {
    background: url(../img/sorayomi_fri.png) no-repeat left 10px center;
    background-size: 36px;
  }

  .sorayomi-box .sorayomi-box__cast dd .cast-name {
    font-size: 16px;


  }

  .sorayomi-sns {
    padding: 40px 0;
  }

  .sorayomi-sns .sorayomi-sns__box {
    width: 90%;
    padding: 20px;
  }

  .sorayomi-sns .sorayomi-sns__box p {
    font-size: 16px;
  }

  .sorayomi-sns .sorayomi-sns__box ul {
    width: 42%;
  }

  .sorayomi-sns .sorayomi-sns__box ul li {
    box-sizing: border-box;
    width: 50%;
    padding: 0 6%;
  }
}

/* ---------------------------------------------
    しらべてみたら
--------------------------------------------- */

.shirabetemitara-main {
  background: url(../img/bg3.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px 0;
  margin-top: 20px;
}

.shirabetemitara-main__box {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .85);
  border-radius: 20px;
  border: 5px solid #FFF;
  box-sizing: border-box;
  padding: 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.shirabetemitara-main__logo {
  width: 34%;
}

.shirabetemitara-main__info {
  width: 66%;
  box-sizing: border-box;
  padding-left: 5%;
}

.shirabetemitara-main__lead {
  font-weight: 700;
  font-size: 20px;
}
.shirabetemitara-main__link {
  background: #fff000;
  box-shadow: 0 3px 0 #ebdd04;
  border-radius: 10px;
  margin: 20px 0 0 0;
  box-sizing: border-box;
  padding: 25px 0;
  text-align: center;
}

.shirabetemitara-main__link p {
  font-weight: 700;
  font-size: 18px;
}

.shirabetemitara-main__btn {
  width: 90%;
  max-width: 360px;
  margin: 15px auto 0 auto;
}

.shirabetemitara-main__btn a {
  display: block;
  text-align: center;
  color: #FFF !important;
  padding: 24px 0;
  line-height: 1;
  font-size: 18px;
  font-weight: 700;
  border-radius: 100px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  background: #f63752 url(../img/arrow_red.png) no-repeat right 20px center;
  background-size: 30px;
}

.shirabetemitara-info {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0 30px 0;
}

.shirabetemitara-info__year {
  background-color: #725705;
  background: linear-gradient(to right, #ffa800 0%, #f15b1c 50%, #f15b1c 100%);
  background: -webkit-linear-gradient(to right, #ffa800 0%, #f15b1c 50%, #f15b1c 100%);
  line-height: 1;
  font-size: 24px;
  font-weight: 600;
  padding: 10px 20px;
  color: #FFF;
  border-radius: 100px;
}

.shirabetemitara-info__text {
  font-weight: 700;
  font-size: 18px;
  margin-top: 30px;
  line-height: 1.8;

}

@media screen and (min-width: 767px) {
  .shirabetemitara-main__btn a:hover {
    background: #f63752 url(../img/arrow_red.png) no-repeat right 16px center;
    background-size: 30px;
    opacity: 0.6;
  }
}

@media only screen and (max-width: 1080px) {
  .shirabetemitara-main__logo {
    width: 44%;
  }
  .shirabetemitara-main__info {
    width: 56%;
    box-sizing: border-box;
    padding-left: 4%;
  }

  .shirabetemitara-main__lead br {
    display: none;
  }

  .shirabetemitara-main__box {
    padding: 30px;
  }
  .shirabetemitara-main__btn a {
    padding: 2.4vw 0;
    font-size: 1.8vw;

  }
}

@media only screen and (max-width: 768px) {
.shirabetemitara-main{
  margin-top: 15px;
  }
  .shirabetemitara-main__box {
    border-radius: 10px;
    border: 4px solid #FFF;
    padding: 10px;
    display: -webkit-box;
    display: block;
  }

  .shirabetemitara-main__logo {
    width: 100%;
  }

  .shirabetemitara-main__info {
    width: 100%;
    box-sizing: border-box;
    padding-left: 0%;
  }

  .shirabetemitara-main__lead {
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
     text-align: center;

  }
 .shirabetemitara-main__lead br {
    display: block;

  }
  .shirabetemitara-main__link {
    border-radius: 10px;
    margin: 15px 0 0 0;
    box-sizing: border-box;
    padding: 15px 0;
    text-align: center;
  }

  .shirabetemitara-main__link p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
  }

  .shirabetemitara-main__btn {
    width: 100%;
    max-width: 90%;
    margin-top:10px ;
  }

  .shirabetemitara-main__btn a {
    padding: 5.33vw 0;
    line-height: 1;
    font-size: 4vw;
    background: #f63752 url(../img/arrow_red.png) no-repeat right 5.33vw center;
    background-size: 6.4vw;

  }
  .shirabetemitara-info {
    margin: 0 auto;
    padding: 30px 0 20px 0;
  }

  .shirabetemitara-info__year {
    font-size: 16px;
    padding: 10px 20px;
  }

  .shirabetemitara-info__text {
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    line-height: 1.5;
    padding: 0 10px;
  }
}

.shirabetemitara-list {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  border-top: 1px solid #cccba9;
}

.shirabetemitara-list li {
  margin-top: 0;
  border-bottom: 1px solid #cccba9;
   background-color: rgba(255,255,255,.8);
}

.shirabetemitara-list__year p {
  font-size: 28px;
  font-weight: 600;
  background: url(../img/icon.png) no-repeat left 10px center;
  background-size: 30px;
  padding: 0 0 0 55px;
}

.shirabetemitara-list__item {
  margin-top: 0;
}

.shirabetemitara-list__item li {
  border-bottom: none;
  margin: 15px 0 0 0;
  background-color: transparent;
}


.shirabetemitara-list__item li:first-child {
  margin-top: 0;
}
.shirabetemitara-list__year {
  cursor: pointer;
  background:url(../img/open2.png) no-repeat right 30px center;
  background-size:30px;
  line-height: 1.3;
  -webkit-transition: color 0.1s ease-out;
  transition: color 0.1s ease-out;
  align-items: center;
  padding: 30px 20px;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
}

.shirabetemitara-list dt.open {
  background: #f4f3e5 url(../img/close2.png) no-repeat right 30px center;
  background-size: 30px;
}

.shirabetemitara-list__item dt.open {
  background: #fff000 url(../img/close.png) no-repeat right 20px center;

  background-size: 30px;
}

.shirabetemitara-list__item dl {
  box-shadow: 0 2px 0 #e6e5c9;
  border-radius: 10px;
}

.shirabetemitara-list__item dt {
  cursor: pointer;
  background: #FFF url(../img/open.png) no-repeat right 20px center;
  background-size: 30px;
  line-height: 1.3;
  padding: 18px 30px;
  border-radius: 10px;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
}

.shirabetemitara-list__date {
  color: #666;
  font-size: 15px;
  font-weight: 500;
}

.shirabetemitara-list__title {
  font-size: 20px;
  font-weight: 600;
  margin-top: 4px;
}

.shirabetemitara-list dd {
  display: none;
  padding: 0 30px 40px 30px;
  background: #f4f3e5;
}

.shirabetemitara-list__item dd {
  background: #FFF;
  display: none;
  line-height: 1.7;
  padding: 25px 35px 40px 35px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;

}

.shirabetemitara-list__item dd p {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: break-word;
}

.shirabetemitara-list__item dd p span {
  color: #fb6d1d;
  border-bottom: 1px solid #cccba9;
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 0 0 6px 0;
  margin-top: 6px;

}

@media screen and (min-width: 767px) {
  .shirabetemitara-list dt:hover {
    background-color: #f4f3e5;
  }

  .shirabetemitara-list__item dt:hover {
    background-color: #fff000;
  }
}


@media only screen and (max-width: 768px) {
  .shirabetemitara-list {
    width: 100%;
  }

  .shirabetemitara-list__year p {
    font-size: 20px;
    background: url(../img/icon.png) no-repeat left 8px center;
    background-size: 24px;
    padding: 0 0 0 40px;

  }

  .shirabetemitara-list__item {
    margin-top: 0;
  }
  .shirabetemitara-list__item li {
    border-bottom: none;
    margin: 10px 0 0 0;
  }

  .shirabetemitara-list__item li:first-child {
    margin-top: 0;

  }

  .shirabetemitara-list__year {
    cursor: pointer;
    background: url(../img/open2.png) no-repeat right 20px center;
      background-size: 24px;
    padding: 24px 10px;
  }

  .shirabetemitara-list dt.open {
    background: #f4f3e5 url(../img/close2.png) no-repeat right 20px center;
    background-size: 24px;
  }


  .shirabetemitara-list__item dt.open {
    background: #fff000 url(../img/close.png) no-repeat right 15px center;
    background-size: 20px;
  }

  .shirabetemitara-list__item dl {
    border-radius: 10px;
  }

  .shirabetemitara-list__item dt {
    cursor: pointer;
    background: #FFF url(../img/open.png) no-repeat right 15px center;
    background-size: 20px;
    padding: 14px 50px 14px 20px;
    border-radius: 10px;
  }
  .shirabetemitara-list__date {
    font-size: 13px;
  }

  .shirabetemitara-list__title {
    font-size: 16px;
    margin-top: 5px;
  }
  .shirabetemitara-list dd {
    display: none;
    padding: 0 16px 30px 16px;
  }
  .shirabetemitara-list__item dd {
    background: #FFF;
    display: none;
    line-height: 1.6;
    padding: 20px 20px 30px 20px;
    font-size: 15px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }

  .shirabetemitara-list__item dd p {
    font-size: 15px;
    line-height: 1.6;
  }

  .shirabetemitara-list__item dd p span {
    font-size: 15px;
    margin-bottom: 10px;
    padding-bottom: 5px;
  }
}
.shirabetemitara-archive {
  width: 94%;
  max-width: 1200px;
  margin: 50px auto 0 auto;
  box-sizing: border-box;
  border-radius: 20px;
  border: 6px solid #fff000;
  background: #FFF;
  padding: 30px 40px;
}
.shirabetemitara-archive__title{
  font-size: 20px;
  font-weight: 700;
}
.shirabetemitara-archive__title span{
  color: #ff8001;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  padding-left: 15px;
}
.shirabetemitara-archive__list{
 display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.shirabetemitara-archive__list li {
  width: calc((100% - 80px) / 5);
  margin-right: 20px;
  margin-top: 20px;
}
.shirabetemitara-archive__list li a{
  display: block;
  text-align: center;
  border-radius: 100px;
  line-height: 1;
  padding: 18px 0;
  font-weight: 700;
  background: #fff000;
  font-size: 18px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}
.shirabetemitara-archive__list li:nth-child(5n) {
  margin-right: 0;
}
@media screen and (min-width: 767px) {
.shirabetemitara-archive__list li a:hover{
  background-color: #ff8001;
  color: #FFF!important;
}
}

@media only screen and (max-width: 1000px) {
.shirabetemitara-archive {
  padding: 20px 25px;
}
.shirabetemitara-archive__list li a{
  font-size: 17px;
}
  }
@media only screen and (max-width: 768px) {
.shirabetemitara-archive {
  margin: 30px auto 0 auto;
  border-radius: 10px;
  border:4px solid #fff000;
  padding: 20px 15px;
}
.shirabetemitara-archive__title{
  font-size: 18px;
 
}
.shirabetemitara-archive__title span{
  font-size: 14px;
  padding-left: 10px;
}

.shirabetemitara-archive__list li {
  width: calc((100% - 10px) / 2);
  margin-right: 10px;
  margin-top: 15px;
}
.shirabetemitara-archive__list li a{
  line-height: 1;
  padding: 16px 0;
  font-weight: 700;
  background: #fff000;
  font-size: 15px;
}
.shirabetemitara-archive__list li:nth-child(5n) {
  margin-right: 10px;
}
.shirabetemitara-archive__list li:nth-child(2n) {
  margin-right: 0;
}
  }