@charset "UTF-8";

/* reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td,aside,figure {margin: 0;padding: 0;}
address,caption,cite,code,dfn,em,strong,th,var {font-style: normal;}
table {border-collapse: collapse;border-spacing: 0;}
caption,th {text-align: left;}
object, embed {vertical-align: top;}
hr,legend {display: none;}
h1,h2,h3,h4,h5,h6 {font-size: 100%;}
img,abbr,acronym,fieldset {border: 0;}
li {list-style-type: none;}


/* base
----------------------------------------*/
html{
	font-size: 62.5%;
	overflow: auto;
}
body{
	width: 100%;
	color: #000;
	font-family: "游ゴシック","Yu Gothic","游ゴシック体",YuGothic,"Hiragino Kaku Gothic ProN","Hiragino Sans","ヒラギノ角ゴ ProN","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1;
	overflow: hidden;
  overflow-wrap: anywhere;
	box-sizing: border-box;
	word-break: normal;
	-webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
	box-sizing: border-box
}
h1,h2,h3,h4,h5,h6{
	font-feature-settings: "palt";
	letter-spacing: 0.03em;
} 
a:link {color:#000;text-decoration:underline;}
a:visited {color:#000;text-decoration:underline;}
a:active, a:hover {color:#000;text-decoration:none;}

img{
	vertical-align: bottom;
}

.spview{display: none;}

@media screen and (max-width: 767px){
	.pcview{display: none;}
	.spview{display: block;}
}


/* mv
----------------------------------------*/
.mv{
  position: relative;
  background-color: #fff;
}
.mv::before{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0 70%, 100% 50%, 100% 100%, 0 100%);
  background-color: #000;
  content: "";
}
.mv .inner{
  position: relative;
  max-width: 1100px;
  height: 500px;
  margin: 0 auto;
  background: url(mv.jpg) center;
  background-size: cover;
  z-index: 10;
}

@media screen and (max-width: 767px){
  .mv .inner{
    height: auto;
    padding-top: 66.66666666666667%;
    background: url(mv-sp.jpg) center;
    background-size: cover;
  }
}


/* series
----------------------------------------*/
.series{
  padding: 15px 0;
  background-color: #fff;
}
.series .inner{
  position: relative;
  max-width: 900px;
  width: 94%;
  margin: 0 auto;
  text-align: center;
}
.series .inner::before{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ccc;
  content: "";
}
.series .title{
  position: relative;
  display: inline-block;
  padding: 0 15px;
  background-color: #fff;
  font-feature-settings: "palt";
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 1.5;
}
.series .title span{
  display: inline-block;
}
.series .title b{
  font-size: 140%;
}

@media screen and (max-width: 767px){
  .series .inner::before{
    background-color: transparent;
  }
  .series .title{
    padding: 0;
    font-size: 5.3vw;
  }
}


/* title
----------------------------------------*/
.maintitle{
  padding: 10px 0 25px;
  background-color: #000;
}
.maintitle .inner{
  max-width: 900px;
  width: 94%;
  margin: 0 auto;
  text-align: center;
}
.maintitle .inner .number{
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 7px;
  color: #cf0027;
  font-family: Arial, Helvetica;
  font-size: 2.1rem;
  font-weight: 700;
}
.maintitle .inner .number::before{
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #cf0027;
  content: "";
}
.maintitle .inner .number span{
  font-size: 150%;
}
h1{
  color: #fff;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 767px){
  h1{
    font-size: 7vw;
  }
  .maintitle .inner .number{
    font-size: 4.5vw;
  }
}


/* layout
----------------------------------------*/
.wrapper img{
	width: 100%;
	height: auto;
}
.wrapper::before{
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background: url(bg.jpg) no-repeat top;
  background-size: cover;
  content: "";
  z-index: -100;
}
.main .inner{
  max-width: 1100px;
  width: 94%;
  margin: 0 auto;
  padding: 60px 3%;
  background-color: rgba(255,255,255,0.8);
}

@media screen and (max-width: 767px){
  .main .inner{
    padding: 40px 3%;
  }
}


/* navi
----------------------------------------*/
.navi{
  max-width: 900px;
  width: 94%;
  margin: 20px auto;
  background-color: #cf0027;
}
.navi-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.navi-list li{
  position: relative;
  width: calc(100% / 3);
  padding: 17px 20px;
}
.navi-list li::before{
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: calc(100% - 40px);
  background-color: #e54562;
  content: "";
  transform: translateY(-50%);
}
.navi-list li .number{
  color: #fff;
  font-family: Arial, Helvetica;
  font-size: 2.1rem;
  font-weight: 700;
}
.navi-list li .number span{
  font-size: 150%;
}
.navi-list li .title{
  color: #fff;
  margin-top: 3px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
.navi-list a{
  transition: 0.8s;
}
.navi-list a{
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  text-decoration: none;
}
.navi-list a:hover{
  opacity: 1;
}
.navi-list .commingsoon{
  opacity: 0.7;
}

@media screen and (max-width: 767px){
  .navi-list li{
    width: 100%;
    padding: 5px 10px;
  }
  .navi-list li::before{
    top: 0;
    left: 50%;
    width: 94%;
    height: 2px;
    transform: translateX(-50%) translateY(0);
  }
  .navi-list li:first-child::before{
    background-color: transparent;
  }
}


/* lead
----------------------------------------*/
.lead{
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 50px;
  background-color: #f2f2f2;
}
.lead p{
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width: 767px){
  .lead{
    padding: 20px;
  }
}
 

/* section
----------------------------------------*/
.section{
  max-width: 800px;
  margin: 0 auto;
  margin-top: 70px;
}
.section + .section{
  margin-top: 80px;
}
.section-heading{
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: solid 3px #cf0027;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.section p{
  margin-bottom: 1em;
  font-size: 1.6rem;
  line-height: 2;
}
.section p:last-of-type{
  margin-bottom: 0;
}
.section p.note{
  color: #666;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px){
  .section{
    margin-top: 50px;
  }
  .section + .section{
    margin-top: 60px;
  }
  .section-heading{
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 2.6rem;
  }
}


/* photo
----------------------------------------*/
.photo{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto;
}
.photo .image{
  width: 37.5%;
}
.photo .caption{
  width: 58.75%;
  font-size: 1.4rem;
  line-height: 1.8;
}
.photo .caption span{
  font-size: 130%;
  font-weight: 700;
}

@media screen and (max-width: 767px){
  .photo{
    width: 90%;
    margin: 30px auto;
  }
  .photo .image{
    width: 100%;
  }
  .photo .caption{
    width: 100%;
    margin-top: 20px;
  }
}


/* figure
----------------------------------------*/
.figure{
  max-width: 700px;
  margin: 50px auto;
}
.figure .title{
  margin-bottom: 10px;
  padding: 10px 0 10px 17px;
  border-left: solid 7px #cf0027;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 767px){
  .figure{
    margin: 30px auto;
  }
  .figure .title{
    padding: 5px 0 5px 10px;
    border-left: solid 5px #cf0027;
  }
}


/* link
----------------------------------------*/
.link{
  display: flex;
  flex-wrap: wrap;
  max-width: 800px;
  width: 94%;
  margin: 60px auto;
}
.link-heading{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  background-color: #000;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.link-list{
  width: calc(100% - 20%);
  padding: 20px 30px;
  background-color: #fff;
  border: solid 1px #000;
}
.link-list li + li{
  margin-top: 1.5em;
}
.link-list li span{
  display: block;
  margin-bottom: 5px;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.5;
}
.link-list li a{
  font-size: 1.6rem;
  line-height: 1.5;
  text-decoration: none;
}
.link-list li a:hover{
  text-decoration: underline;
}

@media screen and (max-width: 767px){
  .link{
    margin: 40px auto;
  }
  .link-heading{
    width: 100%;
    padding: 10px;
    font-size: 2.0rem;
  }
  .link-list{
    width: 100%;
    padding: 15px;
  }
}


/* contact
----------------------------------------*/
.contact{
  padding: 70px 0;
  background-color: #fff;
}
.contact .inner{
  max-width: 800px;
  width: 94%;
  margin: 0 auto;
}
.logo-list li:first-child{
  max-width: 300px;
  width: 37.5%;
  margin: 0 auto;
}
.logo-list li:last-child{
  max-width: 500px;
  width: 62.5%;
  margin: 40px auto 0;
}
.textlink{
  margin-top: 50px;
  text-align: center;
}
.textlink {
  font-size: 2.0rem;
}
.textlink span{
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}
.textlink a{
  text-decoration: none;
}
.textlink a:hover{
  text-decoration: underline;
}
.about{
  margin-top: 50px;
  padding: 30px;
  background-color: #f2f2f2;
}
.about .title{
  margin-bottom: 15px;
  font-size: 2.0rem;
  font-weight: 700;
}
.about .detail{
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 767px){
  .contact{
    padding: 50px 0;
  }
  .logo-list li:first-child{
    width: 65%;
  }
  .logo-list li:last-child{
    width: 94%;
    margin: 30px auto 0;
  }
  .textlink{
    margin-top: 30px;
    font-size: 1.8rem;
  }
  .about{
    margin-top: 30px;
    padding: 20px 15px;
  }
  .about .title{
    margin-bottom: 10px;
  }
}


/* pagetop
----------------------------------------*/
.pagetop{
	position: fixed;
	bottom: 1em;
	right: 1em;
}
.pagetop img{
	width: 50px;
	height: 50px;
}
.pagetop a {
  display: block;
  transition: 0.5s;
}
.pagetop a:hover{
    opacity: 0.8;
}

@media screen and (max-width: 767px){
	.pagetop{
		position: fixed;
		bottom: 0.5em;
		right: 0.5em;
	}
	.pagetop img{
		width: 40px;
		height: 40px;
	}
}


/* footer
----------------------------------------*/
.footer-bottom{
  background-color: #fff;
}
div.localFooter{
	padding: 20px;
	text-align: left;
	line-height: 1.6;
}