@charset "UTF-8";
body {
  font-family: 'Lucida Grande','Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: #000;
  line-height: 1.6;
}

.mincho {
  font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", serif;
}

.inner {
  width: 960px;
  margin: 0 auto;
  padding: 0 4%;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 750px) {
  .inner {
    width: 100%;
    padding: 0 4%;
  }
}
.header {
  border-top: 4px solid #e60000;
  padding: 12px 0;
}
.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header_logo {
  width: 100px;
}
.header .header_credit {
  font-size: 12px;
}

@media screen and (max-width: 750px) {
  .header {
    padding: 12px 0;
  }
  .header .header_logo {
    width: 60px;
    margin-right: 10px;
  }
  .header .header_credit {
    font-size: 10px;
  }
}
.mv {
  height: 480px;
  background: url(../images/mv_bg.png) center center no-repeat #ce9b82;
  display: flex;
  align-items: center;
}
.mv .mv_box {
  background: #fff;
  padding: 30px;
  width: 500px;
  height: 280px;
  transform: translateY(-40px);
}
.mv .mv_logo {
  text-align: center;
  margin-bottom: 5px;
}
.mv h1 {
  text-align: center;
  color: #e60000;
  font-weight: bold;
  font-size: 46px;
  line-height: 1;
  margin-bottom: 25px;
}
.mv h1 span {
  border-bottom: 5px solid #e60000;
}
.mv h1 + p {
  padding-left: 10px;
}

@media screen and (max-width: 750px) {
  .mv {
    height: auto;
    padding: 8% 4% 45%;
    background: url(../images/mv_bg_sp.png) center bottom no-repeat #ce9b82;
    background-size: 100%;
  }
  .mv .mv_box {
    padding: 4%;
    width: 100%;
    height: auto;
    transform: translateY(0px);
  }
  .mv .mv_logo {
    width: 100px;
    margin: 0 auto 5px;
  }
  .mv h1 {
    text-align: center;
    color: #e60000;
    font-weight: bold;
    font-size: 28px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .mv h1 span {
    border-bottom: 3px solid #e60000;
    padding-bottom: 3px;
  }
  .mv h1 + p {
    padding-left: 0px;
    font-size: 12px;
  }
}
.main {
  background: #f7f3e8;
  padding: 60px 0;
}

.contents {
  background: #FFF;
  width: 960px;
  margin: 0 auto;
  padding: 60px;
}

.title01 {
  position: relative;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  z-index: 10;
  margin-bottom: 30px;
}
.title01 span {
  z-index: 10;
  background: #fff;
  padding: 0 30px;
}
.title01::before {
  content: "";
  width: 100%;
  height: 5px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-2px);
  z-index: -1;
}

.movie {
  margin: 0 auto 60px;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .main {
    padding: 30px 0;
  }

  .contents {
    width: 100%;
    padding: 4%;
  }

  .title01 {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .title01 span {
    z-index: 10;
    background: #fff;
    padding: 0 15px;
  }
  .title01::before {
    content: "";
    width: 100%;
    height: 3px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-2px);
    z-index: -1;
  }

  .movie {
    margin: 0 auto 30px;
  }
}
.accordion dt {
  position: relative;
  cursor: pointer;
  padding: 12px 20px;
  background: #e60000;
  margin-bottom: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 50px;
  transition: all .3s;
}
.accordion dt span {
  display: inline-block;
  background: #fff;
  color: #e60000;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 100px;
  font-size: 12px;
  text-align: center;
  margin-right: 20px;
  vertical-align: middle;
  transition: all .3s;
}
.accordion dt.active {
  background: #730000;
}
.accordion dt.active span {
  color: #730000;
}
.accordion dt::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -2px;
  width: 25px;
  height: 4px;
  background: #fff;
  transition: all .2s ease-out;
}
.accordion dt::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -12px;
  width: 4px;
  height: 25px;
  background: #fff;
  transition: all .2s ease-out;
}
.accordion dt.active::before {
  display: none;
}
.accordion dt.active::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion dd {
  display: none;
  padding: 10px;
  margin-bottom: -10px;
}
.accordion dd h3 {
  font-family: "ヒラギノ明朝 Pro W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝";
  color: #e60000;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.accordion dd h3 a {
  text-decoration: underline;
  margin-left: 10px;
}
.accordion dd h3 a:hover {
  text-decoration: none;
}
.accordion dd p {
  text-indent: 1em;
  margin-bottom: 30px;
}
.accordion dd p em {
  border-bottom: 2px solid #e60000;
}

@media screen and (min-width: 751px) {
  .accordion dt:hover {
    background: #730000;
  }
  .accordion dt:hover span {
    color: #730000;
  }
}
.footer {
  background: #000;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 12px;
}

#page-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
}
#page-top a {
  display: block;
  width: 50px;
  height: 50px;
  background: #e60000;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  position: relative;
  transition: all .3s;
}
#page-top a:hover {
  background: #730000;
}
#page-top::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateX(50%) translateY(-25%) rotate(-45deg);
}

@media screen and (max-width: 750px) {
  .accordion dt {
    position: relative;
    cursor: pointer;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 50px;
  }
  .accordion dt span {
    display: inline-block;
    background: #fff;
    color: #e60000;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 100px;
    font-size: 10px;
    margin-right: 15px;
    vertical-align: middle;
    transition: all .3s;
  }
  .accordion dt::after {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    margin-top: -2px;
    width: 19px;
    height: 2px;
    background: #fff;
    transition: all .2s ease-out;
  }
  .accordion dt::before {
    display: block;
    content: '';
    position: absolute;
    top: 50%;
    right: 23px;
    margin-top: -10px;
    width: 2px;
    height: 19px;
    background: #fff;
    transition: all .2s ease-out;
  }
  .accordion dd {
    display: none;
    padding: 10px;
    margin-bottom: -10px;
  }
  .accordion dd h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .accordion dd p {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .footer {
    background: #000;
    padding: 15px;
    text-align: center;
    color: #fff;
    font-size: 10px;
  }

  #page-top {
    position: fixed;
    bottom: 4%;
    right: 4%;
  }
  #page-top a {
    display: block;
    width: 40px;
    height: 40px;
  }
  #page-top::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateX(50%) translateY(-25%) rotate(-45deg);
  }
}
.bnr_pc {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.bnr_sp {
  display: none;
}

@media screen and (max-width: 750px) {
  .bnr_pc {
    display: none;
  }

  .bnr_sp {
    display: block;
    width: 92%;
    position: fixed;
    bottom: 3%;
    right: 4%;
    z-index: 100;
  }
}
