@charset "UTF-8";

/* ==========================================================================
  Base
  ========================================================================== */

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
}

.pc {
display: block;
}

.sp {
display: none;
}

main {
  display: block;
}

a {
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

a:hover img {
  opacity: .7;
}

a:hover,
a img {
  -webkit-transition: .2s linear;
  transition: .2s linear;
}

.wrapper {
	  position: relative;
	  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	  font-weight: 100;
	  -webkit-text-size-adjust: 100%;
	  -webkit-font-smoothing: antialiased;
	  -moz-osx-font-smoothing: grayscale;
	  -webkit-backface-visibility: hidden;
	  backface-visibility: hidden;
	  -webkit-font-feature-settings: "palt" 1;
	  font-feature-settings: "palt" 1;
	  color: #000;
	  line-height: 1.8;
	  background: url(../images/bg_paper.jpg) #fff;
	  max-width: 100vw;
	  overflow-x: hidden;
}

@media screen and (min-width: 768px) {
 .wrapper {
    min-width: 1200px;
  }
 }

/*  SP */
@media screen and (max-width: 767px) {
  .pc {
	  display: none;
  }
  
  .sp {
	  display: block;
  }
  
  a:hover img {
    opacity: 1;
  }
  
}

/* ==========================================================================
  MV
  ========================================================================== */

.mv-area {
	width: 100%;
	height: 650px;
	max-height: 750px;
	margin: 0 auto;
	background: url(../images/bg_01.jpg) #fff;
	background-size: cover;
  padding-top: 10px;
}
.mv-area h1 {
  text-align: center;
}
.mv-area h1 img {
	width: auto;
    height: 570px;
    margin: 30px auto 0;
}



@media screen and (min-width: 767px) {

}
@media screen and (max-width: 767px) {
.mv-area {
	position: static;
	width: 100%;
	padding: 3%;
	height: auto;
	max-width: none;
	max-height: none;
	display: block;
}
.mv-area h1 {
	width: 100%;
	margin: 0 auto;
	display: block;
    justify-content: center;
    align-items: center;
}
.mv-area h1 img{
	max-height: none;
	width: 100%;
	height: auto;
	margin: 0;
}
}
/* ==========================================================================
  nav
  ========================================================================== */
  
.nav-area {
	position:  relative;
	width: 100%;
	height: 55px;
	background-image: url(../images/bg_02.jpg);
}

.main-nav {
	max-width: 700px;
	margin: 0 auto;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none
}



.main-nav li a {
	display: block;
	position: relative;
	padding: 7px 30px;
	font-size: 18px;
	color: #fff;
    text-decoration: none;
}
.main-nav li a img {
  height: 25px;
}
.main-nav li:hover {
	opacity: 0.7;
	transition: 0.3s;
}

@media screen and (min-width: 768px) {

.main-nav li a:after {
	content: url(../images/nav_on.png);
	position: absolute;
	left: 0;
	top: 15px;
	webkit-transition: .2s linear;
	transition: .2s linear;
	opacity: 0;
}

.main-nav li a:hover:after {
	opacity: 1;
}
}

@media screen and (max-width: 767px) {
.nav-area {
	display: none;
	position: fixed;
	top: 0;
	z-index: 50;
	left: 0;
	padding-bottom: 16px;
	height: auto;
}
	
.main-nav {
	display: block;
}

.main-nav li {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
}

.main-nav li a {
	display: block;
	position: relative;
	padding: 16px 4%;
}

.main-nav li img {
	height: 18px;
	width: auto;
}

.main-nav li a img {
  height: 20px;
}

}

.menu {
  z-index: 200;
  position: fixed;
  cursor: pointer;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 30px;
  }
  
@media screen and (min-width: 768px) { 
	  .menu {
		  display: none;
	  }
}

.menu span {
    transition: all 0.2s;
    background: #942d18;
    position: absolute;
    left: 0;
    width: 40px;
    height: 3px;
}

.menu span:nth-child(1) { top: 5px; }
.menu span:nth-child(2) { top: 16px; }
.menu span:nth-child(3) { top: 27px; }

.active span {
  transition: all 0.2s;
}

  .active span:nth-child(1),
  .active span:nth-child(3) {
    transform-origin: center center;
    -webkit-transform-origin: center center; 
    background: #fff;
 }
 
  .active span:nth-child(1) {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    top: 14px;
}

  .active span:nth-child(2) {
    display: none;
 }
 
  .active span:nth-child(3) {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 40px;
    top: 14px;
 }


/* ==========================================================================
  共通 tit
  ========================================================================== */
 .cont-ttl {
	margin-bottom: 60px;
	text-align: center;
	width: 100%;
	height: 60px;
	z-index: 10;
  }
  .cont-ttl img {
	height: 60px;
	width: auto;
  }
 .cont-area {
	 position: relative;
	 width: 100%;
	 padding: 60px 0 0;
	 text-align: center;
	 color: #000;
	 font-size: 16px;
}

.lead {
	font-size: 1.2em;
}
 .cont-inner {
	width: 1200px;
	margin: 0 auto 100px;
    text-align: center;
}
 .cont-text {
  line-height: 2.5;
  color: #000;
}
.attention {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-size: 0.8em;
	line-height: 1.6em;
}
.comingsoon {
	font-size: 1.5em;
	margin: 80px auto;
}
@media screen and (max-width: 767px) {

.cont-ttl {
	margin-bottom: 40px;
	height: 55px;
  }
  .cont-ttl img {
	height: 50px;
  }
 .cont-area {
	 width: 100%;
	 padding: 10% 0 0;
	 font-size: 13px;
}
.lead {
	margin-bottom: 10%;
}
 .cont-inner {
	width: 90%;
	margin: 0 auto;
}
 .cont-text {
  line-height: 2.5;
}
}
/* ==========================================================================
  news
  ========================================================================== */
#news {
	margin: 0 auto;
	padding-bottom: 1px;
	background: url("../images/bg_03.jpg") repeat;
}

#news .news-lead p{
  font-size: 35px;
	font-weight: bold;
  margin-bottom: 30px;
  color: #1a463b;
}
#news .news-lead p span {
  font-weight: bold;
  font-size: 40px;
  color: #9d3825;
}
#news .news-lead a{
   color: #52769c;
}
.youtube-area p{
  font-size: 18px;
  color: #1a463b;
  margin-top: 10px;
}
#news iframe {
  width: 730px;
  height: 400px;
}

.news-btn {
	background-color: #9e3825;
    color: #fff;
    width: 500px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    -webkit-transition: .3s;
    transition: .3s;
    text-align: center;
    margin: 0 auto 50px;
	  padding: 15px;
    position: relative;
    font-size: 20px;
	display: block;
} 
.news-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 12px;
    height: 12px;
    margin-top: -9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.news-btn:hover {
	opacity: 0.7;
	transition: 0.3s
}
.news-btn a {
  text-decoration: none;
  color: #fff;
  display: block;
}
@media screen and (max-width: 767px) { 
	#news {
		padding-bottom: 50px;
	}
	#news .news-lead {
	    font-size: 22px;
	}
	#news .news-lead p{
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
	}
  #news .news-lead p span {
    font-size: 20px;
  }
  #news iframe {
    width: 100%;
    height: auto;
  }
  .news-btn {
    width: 100%;
  }
}
/* ==========================================================================
  about
  ========================================================================== */
#about {
  background-image: url(../images/bg_01.jpg);
  margin: 0 auto;
  padding-bottom: 20px;
} 
#about .cont-inner {
	position: relative;
}
#about .about-cont {
  display: flex;
  justify-content: center;
}
#about .about-cont img {
  width: 450px;
  margin-right: 40px;
  height: 100%;
}
#about .about-img {
	width: 100px;
  margin: 70px auto;
}
#about .cont-inner p{
  z-index: 2;
  line-height: 2;
  letter-spacing: 2px;
  font-size: 17px;
}
@media screen and (max-width: 767px) {
#about .cont-inner {
	width: 90%;
	margin: 0 auto;
	background-size: 50%;
	padding-bottom: 10px;
}
#about .about-cont {
  flex-direction: column-reverse;
}
#about .about-cont img {
  width: 100%;
}
#about .cont-inner p{
    font-size: 15px;
	letter-spacing: 1px;
	line-height: 1.5;
}
#about .about-img {
	width: 25%;
  margin: 30px auto;
}
.cont-text {
  margin-bottom: 50px;
}

}
/* ==========================================================================
  cast
  ========================================================================== */
#cast {
  background-image: url(../images/cast_bg.jpg);
  margin: 0 auto;
  padding-bottom: 20px;
}
.cast-inner {
  display: flex;
  justify-content: space-evenly;
}
.cast-inner .cast-cont {
  width: 20%;
}
.cast-cont .name img {
  height: 35px;
  width: auto;
  margin: 20px auto;
}
.cast-cont p {
  color: #fff;
  font-size: 17px;
}
.cast-cont .comment {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .cast-inner {
    display: block;
  }
  .cast-inner .cast-cont {
    width: 70%;
    margin: 0 auto 40px;
  }
  .cast-img {
    width: 80%;
  }
  .cast-cont .name img {
    height: 25px;
    margin: 10px auto;
  }
  .cast-cont p {
    font-size: 15px;
}
}
 /* ==========================================================================
haishin
  ========================================================================== */
#haishin {
	margin: 0 auto;
	background: url("../images/bg_01.jpg") repeat;
	padding-bottom: 10px;
}
.haishin-lead {
  font-size: 23px;
  position: relative;
  width: 650px;
  margin: 0 auto 50px;
  line-height: 1.2;
}
.haishin-lead .imageLeft {
  position: absolute;
  left: 0;
  height: 100%;
  width: 28px;
}
.haishin-lead .imageRight {
  position: absolute;
  right: 0;
  height: 100%;
  width: 28px;
}
.haishin-lead .dot-text{
  padding-top: 0.4em;
  background-position: top left -4px;
  background-repeat: repeat-x;
  background-size: 1.2em 0.3em;
  background-image: radial-gradient(0.15em 0.15em at center center,#9d3825,#9d3825 100%,transparent);
}
.haishin-lead .coution {
  font-size: 15px;
}
.haishin-lead a {
  color: #1a463b;
}
.season-ttl {
	color: #52769c;
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 20px;
}
.haishin-box{
	width: 950px;
	margin: 0 auto 50px;
}

.haishin-box .haishin-number {
  padding: 0 65px;
  text-align: center;
  background-color: #1a463bb5;
  height: 50px;
  margin-bottom: 50px;
}
.haishin-box .haishin-number img {
	width: 70px;
  margin-top: 12px;
}
.haishin-box .content {
	display: flex;
}
.haishin-box .content ul {
	display: flex;
}
.haishin-box .content .img-area li {
	width: 200px;
	margin-right: 30px;
	list-style: none;
}
.haishin-box .content .img-area li .name {
	font-size: 14px;
	margin-top: 20px;
}
.haishin-box .content .img-area li .small {
	font-size: 10px;
	text-align: left;
}
.haishin-box .content .img-area li .name-mt3 {
	font-size: 14px;
	margin-top: 3px;
}
.haishin-box .txt-area  {
	width: 490px;
	font-size: 16px;
	line-height: 2;
	text-align: left;
  margin: 0 auto;
}
.haishin-date {
  width: 100%;
  color: #1a463b;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  padding: 10px 0;
  border-top: 3px solid #1a463b;
  border-bottom: 3px solid #1a463b;
  margin-bottom: 20px;
}
.haishin-youtube {
	margin-right: 30px;
}
.haishin-youtube img {
	width: 453px;
}
.acc-btn .btn-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: Helvetica;
  font-size: 12px;
}
.cs-text {
  font-size: 30px;
  text-align: center;
  color: #1a463b;
}

@media screen and (max-width: 767px) {
	#haishin {
	padding-bottom: 10px;
	}
  .haishin-lead {
    font-size: 18px;
    width: 100%;
    margin: 0 auto 50px;
    line-height: 1.8;
}
.haishin-box .haishin-number {
  margin-bottom: 30px;
}
	.haishin-box{
	width: 90%;
	margin: 0 auto 50px;
}
	.haishin-box .content {
	display: block;
}
	.haishin-box .cast {
	font-size: 20px;
}
	.haishin-date {
	font-size: 18px;
}
	.haishin-box .content .img-area li:last-child {
	margin-right: 0;
}
	.haishin-box .txt-area {
    width: 100%;
    font-size: 14px;
	margin-top: 30px;
}
.haishin-youtube {
	margin-right: 0;
}
.haishin-youtube img {
	width: 100%;
}
.cs-text {
  font-size: 20px;
}

}

/*============================
アーカイブ
============================*/
.none {
  display: none;
}
.archive-ttl {
  position: relative;
  text-align: center;
  max-width: 950px;
  margin: 0 auto;
}

.archive-ttl .archive-item {
	color: #1a463b;
	font-size: 30px;
	font-weight: 900;
	padding: 0 0 30px;
  border-top: double 8px #d08a2a;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .archive-ttl .archive-item {
      width: 90%;
      margin: 0 auto;
    }
  }
.archive-ttl .archive-item :hover {
  opacity: 0.7;
  transition: 0.3s;
}
.archive-ttl .archive-item img {
  width: 150px;
}
@media screen and (max-width: 767px){
  .archive-ttl .archive-item img {
    width: 100px;
  }
}

.archive-ttl .archive-item:hover {
  cursor: pointer;
}

.acc-btn {
  position: absolute;
  bottom: 15px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .acc-btn {
    bottom: 15px;
    height: 45px;
    width: 20px;
	margin-right: 5%;
  }
}

.acc-btn .btn-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: Helvetica;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
	.acc-btn .btn-text{
		left: -7px;
	}
}
.btn-icon {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 767px) {
  .btn-icon {
    width: 20px;
    height: 20px;
  }
}

.btn-icon p {
  position: absolute;
  background: #c95a52;
}

.btn-icon p:first-child {
  top: 0;
  left: 48%;
  width: 3px;
  height: 30px;
}

@media screen and (max-width: 767px) {
  .btn-icon p:first-child {
    height: 20px;
    left: 45%;
  }
}

.btn-icon p:last-child {
  top: 15px;
  left: 10px;
  width: 30px;
  height: 3px;
}

@media screen and (max-width: 767px) {
 .btn-icon p:last-child {
    width: 20px;
    top: 9px;
    left: 0px;
  }
}

.acc-active {
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: rotate(45deg) translate(-7px, 0);
          transform: rotate(45deg) translate(-7px, 0);
}

@media screen and (max-width: 767px) {
 .acc-active {
    -webkit-transform: rotate(45deg) translate(0, 0);
            transform: rotate(45deg) translate(0, 0);
  }
}

.archive-ep {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: none;
}



/* ==========================================================================
twitter
  ========================================================================== */
#twitter {
	position: relative;
	min-height: 600px;
  background-image: url(../images/bg_04.jpg);
	padding-bottom: 10px;
}
#twitter .twitter-box {
	width:348px;
	margin: 0 auto;
}
.twt-img {
	width: 180px;
	position: absolute;
    top: 590px;
    right: -40px;
	z-index: 1;
}
.twt-img img {
	width: 180px;
}
@media screen and (max-width: 767px) {
#twitter {
	margin: 0 auto;
	min-height: auto;
}
#twitter .twitter-box {
	max-width: calc(100% - 20px);
    width: 80%;
    margin: 0 auto;
    position: static;
}
}
 /* ==========================================================================
footer
  ========================================================================== */

.footer-area {
  background-image: url(../images/bg_04.jpg);
	padding: 20px 0;
}


.footer-copy {
  font-size: 12px;
  color: #ffffff;
  text-align: center;
}

@media screen and (max-width: 767px) {
.footer-area {
	padding: 20px 5%;
}
.footer-copy {
	font-size: 10px;
}
}






.comson {
  pointer-events: none;
}

.comson::after {
  display: none;
}



a.floating {
  display: block;
  position: fixed;
  z-index: 100;
  bottom: 30px;
  left: 50%;
  margin-left: -450px;
  width: 900px;
  padding: 10px 0 10px 60px;
  border-radius: 10px;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  border: 2px solid #fff;
  font-size: 24px;
  color: #fff;
  font-weight: bold;
  background: #00a6e9;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  a.floating {
    bottom: 10px;
    left: 4%;
    margin: 0;
    width: 92%;
    padding: 5px 0 10px 40px;
    line-height: 1.4;
    font-size: 14px;
  }
}

a.floating::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 150.5px;
  height: 118.5px;
  /*background: url(../images/campaign_present.png) no-repeat;*/
  background-size: 100% auto;
}

@media screen and (max-width: 768px) {
  a.floating::before {
    left: -10px;
    width: 86px;
    height: 67.71429px;
  }
}

a.floating span {
  font-size: 80%;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  a.floating span {
    font-size: 10px;
  }
}

a.floating:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  a.floating:hover {
    opacity: 1;
  }
}

a.floating:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 15px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

