@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: 700ms;
  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: 560px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background: url(../img/bg.jpg) no-repeat center center;
  background-size: cover;
}


.l-mainvisual__box{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.l-mainvisual__logo{
  width: 380px;
  position: absolute;
  left: 420px;
  top: 150px;
}

.l-mainvisual__photo1 {
  width: 400px;
  position: absolute;
  top: 5px;
  left: 45px;
}
.l-mainvisual__photo2 {
  width: 368px;
  position: absolute;
  top: 35px;
  right: 45px;
}



@media screen and (max-width: 1200px) {
  #fp-wrap .l-mainvisual {
    width: 100%;
    height: 48.33vw;
    margin: 0 auto;
    position: relative;
  }
  
.l-mainvisual__logo{
  width: 31.67vw;
  position: absolute;
  left: 35vw;
  top: 13.33vw;
}

.l-mainvisual__photo1 {
  width: 33.33vw;
  position: absolute;
  top: 0.42vw;
  left: 2.5vw;
}
.l-mainvisual__photo2 {
  width: 30.67vw;
  position: absolute;
  top: 2.92vw;
  right: 2.5vw;
}
}

@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;
}



@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 35px;
}

#oainfo .premium-overview {
  font-size: 18px;
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.8;
  letter-spacing: .08em;
}

#oainfo .premium-oa-date {
  font-size: 25px;
  font-weight: 600;
  padding-left: 160px;
  letter-spacing: .05em;
  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: 85px;
  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;
  height: 100%;
}

.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.55;
  margin-top: 8px;
  letter-spacing: .05em;
  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;
  }

  .news_list li a .txtArea .date {
    font-size: 14px;
  }

  .news_list li a .txtArea .ttl {
    font-size: 15px;
    margin-top: 5px;
  }
  .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 p{
  font-size: 20px;
font-weight: 700;
padding: 0 0 10px 0;

}
.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: 380px;
  margin: 30px auto 0 auto;
  padding-bottom: 0!important;
  
}

.movie-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) {
  .movie-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;
  }
}

.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: 1080px) {
  .movie-list li p{
  font-size: 18px;
  padding: 0 0 10px 0;
}
  .movie-link {
    width: 36vw;
    margin-top: 3.2vw;
   
  }

  .movie-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;
  }

  .movie-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;

  }
  .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 li p{
  font-size: 17px;
  padding: 0 0 10px 0;

 }
  .movie-list {
    display: block;
    margin-top: 0;
  }
  .movie-list li {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
  }
  .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%;
   margin-top: 20px;
  }

  .movie-link a,
  .movie-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-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;
  background-size: 30px;
  box-shadow: 0 3px 0 #e6e5c9;
  border-radius: 10px;
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
  width: 100%;
  height: 100%;

}

.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 26px;
  line-height: 1.6;
font-size: 17px;
font-weight: 700;
    letter-spacing: .06em;
}

.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: 20px 20px 25px 20px;

  }

  .program-list li {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
    margin-top: 20px;
    font-size: 16px;
  }

  .program-list li a {

    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: 15px 14px 25px 14px;
    line-height: 1.6;
    font-weight: 600;
    font-size: 14px;
  }

  .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: 0;
    background: transparent url(../img/arrow2.png) no-repeat right 10px bottom 10px;
    background-size: 20px;
    height: 100%;
  }
.program-list li a{
  padding-bottom: 0;
}
  .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 100px 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;
    letter-spacing: .08em;
}

#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: -35px;
  left: -60px;
}

#intro .intro_img2 {
  width: 224px;
  position: absolute;
  bottom: 0px;
  right: -40px;
}


@media screen and (max-width: 1080px) {
  #intro {
    padding: 5vw 0 10vw 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 18vw 0;
    border-radius: 20px;
  }

  #intro h2 {
    width: 50%;
    margin: 0 auto;
  }

  #intro p {
    margin-top: 4vw;
    font-size: 4vw;
    color: #232323;
    line-height: 1.8;

  }

  #intro p span {
    display: block;
    font-size: 5.33vw;
    padding-bottom: 8vw;
  }

  #intro .intro_img1 {
    width: 32vw;
    position: absolute;
    bottom: -1vw;
    left: -6vw;
  }

  #intro .intro_img2 {
    width: 27vw;
    position: absolute;
    bottom: 0px;
    right: -8vw;
  }

  #intro .intro_img3 {
    width: 44vw;
    position: absolute;
    bottom: -6vw;
    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(../img/header_caster.png) no-repeat right 10px bottom -60px;
  background-size: 260px;
}

.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-header {
  background: url(../img/bg4.jpg) no-repeat center center;
  background-size: 110%;

}
  .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(../img/header_caster.png) no-repeat right 1vw bottom -6vw;
    background-size: 26vw;
  }
}

@media screen and (max-width: 768px) {
  .page {
    padding: 30px 0 0 0;
  }

  #page-header {
    background: url(../img/bg4.jpg) no-repeat center bottom;
    background-size: 120%;

  }

  .page-header__box {
    padding: 3.2vw 0;
    width: 100%;
    background: url(../img/header_caster.png) no-repeat right 2.67vw bottom -7.2vw;
    background-size: 35vw;
  }

  .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;


  }
}

/* ---------------------------------------------
    やざピン
--------------------------------------------- */

.yazapin-box {
  width: 100%;
  padding-bottom: 0;
  position: relative;
}

.yazapin-box .copy {
  position: absolute;
  bottom: 6px;
  color: #666;
  font-size: 10px !important;
  font-weight: 500;
  right: 290px;
  margin-top: 0 !important;
}

.yazapin-box .yazapin-box__logo {
  width: 400px;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
  z-index: 2;
}

.yazapin-box .yazapin-box__contents p.txt {
  font-weight: 700;
  font-size: 20px;
  margin-top: 20px;
  text-align: center;
  line-height: 1.8;
}
.yazapin-box .yazapin-box__contents .txt2{
  color: #17b525;
  font-weight: 700;
}
.yazapin-box .yazapin-box__contents .txt3{
  color: #2183bf;
  font-weight: 700;
}
.yazapin-box .yazapin-box__contents .txt4{
  color: #f24a02;
   font-weight: 700;
}
.yazapin-box .yazapin-box__contents {
  width: 94%;
  position: relative;
  z-index: 1;
  max-width: 1160px;
  box-sizing: border-box;
  background: #eaf6fc;
  border-radius: 30px;
  border: 10px solid #2f96d1;
  margin: -100px auto 0 auto;
  padding-bottom: 20px;
   position: relative;
   background-image: url(../img/yazapin_gachapin.png), url(../img/yazapin_yazawa.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 310px, 320px;
  background-position: right 0 bottom, left -10px bottom;
   padding: 90px 50px 40px 50px;
}
.yazapin-box .yazapin-info__box {
  width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 1);
  padding: 0 0 20px 0;
  border-radius: 10px;
  margin-top: 25px;
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 3px 0 rgba(156,208,232,.4);
}
.yazapin-box .yazapin-info__title{
  background: #2183bf;
  font-size: 18px;
  color: #FFF;
  font-weight: 600;
  padding: 8px 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.yazapin-box .yazapin-info__title1{
  background: #17b525;
}
.yazapin-info__btn{
  width: 80%;
  margin: 0 auto;
}
.yazapin-info__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;
}
.yazapin-info__btn a {
  background: #ff5a34 url(../img/arrow_orange.png) no-repeat right 20px center;
  background-size: 30px;
}
.yazapin-box .yazapin-info__box p {
  font-weight: 600;
  font-size: 18px;
  margin-top: 15px;
}
.yazapin-box .yazapin-info__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;
}

.yazapin-box .yazapin-info__box ul li {
  box-sizing: border-box;
  width: 70px;
  padding: 0 10px;

}

.yazapin-box .yazapin-info__box ul li a img {
  -webkit-transition: 0.2s ease-out;
  transition: 0.2s ease-out;
}

@media screen and (min-width: 767px) {
   .yazapin-info__btn a:hover {
    background: #ff5a34 url(../img/arrow_orange.png) no-repeat right 16px center;
    background-size: 30px;
    opacity: 0.6;
  }
  .yazapin-box .yazapin-info__box ul li a:hover img{
    opacity: .6;
  } 
}

@media screen and (max-width: 1100px) {
  .yazapin-info__btn a {
    padding: 2.4vw 0;
    font-size: 1.8vw;

  }
  .yazapin-box {
    width: 100%;
  }
  .yazapin-box .yazapin-box__logo {
    width: 40vw;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
    z-index: 2;
  }

  .yazapin-box .yazapin-box__contents {
    width: 100%;
    border-radius: 20px;
    border: 8px solid #2f96d1;
    margin: -10vw auto 0 auto;
     padding: 9vw 0 4vw 0;
    background-image: url(../img/yazapin_gachapin.png), url(../img/yazapin_yazawa.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 28vw, 28vw;
    background-position: right -1vw bottom, left -3.5vw bottom;
  }
  .yazapin-box .copy {
    position: absolute;
    bottom: 10px;
    font-weight: 500;
    right: 24vw;
    margin-top: 0 !important;
  }
  .yazapin-box .yazapin-box__contents p.txt {
    font-size: 18px;
  }
  .yazapin-box .yazapin-box__contents .yazapin-info__txt{
    font-size: 17px;
  }
  .yazapin-box .yazapin-info__box {
    margin-top: 2vw;
    width: 50vw;
  }

}
@media screen and (max-width: 768px) {
.yazapin-info__btn{
  width: 92%;
  margin: 0 auto;
}
 .yazapin-info__btn a {
    padding: 5.33vw 0;
    line-height: 1;
    font-size: 4vw;
  }

  .yazapin-info__btn a {
    background: #ff5a34 url(../img/arrow_orange.png) no-repeat right 5.33vw center;
    background-size: 6.4vw;
  }
 .yazapin-box{
  margin-top: 10px;
 }
  .yazapin-box .copy {
    position: absolute;
    bottom: 1vw;
    font-size: 1.6vw !important;
    font-weight: 500;
    left: auto;
    right: 1.5vw;
    margin-top: 0 !important;
  }
  .yazapin-box .yazapin-box__logo {
    width: 53.33vw;

  }
  .yazapin-box .yazapin-info__title{
  font-size: 16px;
 
}
  .yazapin-box .yazapin-box__contents {
    width: 100%;
    border-radius: 20px;
    border: 1.33vw solid #2f96d1;
    margin: -13.33vw auto 0 auto;
    padding: 11vw 0 40vw 0;
    background-image: url(../img/yazapin_gachapin.png), url(../img/yazapin_yazawa.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 34vw, 34vw;
    background-position: right 10vw bottom -14vw, left 8vw bottom -14vw;
  }
  .yazapin-box .yazapin-box__contents p.txt {
    font-size: 16px;
    text-align: center;

  }
  .yazapin-box .yazapin-info__box {
    width: 90%;
    padding: 0 0 20px 0;
     background: rgba(255, 255, 255, 1);
     margin-top: 20px;
      box-shadow: 0 4px 0 rgba(156,208,232,.4);
  }
  .yazapin-box .yazapin-info__box .yazapin-info__txt {
    font-size: 16px;
  }
  .yazapin-box .yazapin-info__box ul {
    width: 42%;
    margin-top: 10px;
  }
  .yazapin-box .yazapin-info__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.8;
  letter-spacing: .04em;
  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: 15px;
  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.7;
  }

  .shirabetemitara-list__item dd p span {
    font-size: 15px;
    margin-bottom: 12px;
    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;
  }
}