@charset "utf-8";

/*---------------------------------------------
	body
---------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  width: 100%;
  font-size: 1.6rem;
  background: #500000;
  line-height: 1.8;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  font-weight: 400;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  overflow: hidden;
  color: #fff;
  position: relative;
  box-sizing: border-box;
}


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

.mincho {
  font-family: 'Shippori Mincho', serif;
}

/*---------------------------------------------
	Anchor
---------------------------------------------*/
a {
  outline: none;
  pointer-events: all;
}

a:link {
  color: #fff;
  text-decoration: none;
}

a:visited {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #b3566d;
  text-decoration: none;
}

a:active {
  color: #b3566d;
  text-decoration: none;
}

a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*---------------------------------------------
	p
---------------------------------------------*/
p {
  margin-bottom: 1em;
}

.only_pc {
  display: block;
}

.only_pc_inline {
  display: inline;
}

.only_sp {
  display: none;
}

.only_sp_inline {
  display: none;
}

.only_pc_line {
  display: inline-block;
  padding: 0 5px;
}

.sp_br {
  display: none;
}

.pc_br {
  display: inline;
}

.br_580 {
  display: none;
}

/*---------------------------------------------
 ** ON OFF hover
---------------------------------------------*/
.hover {
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.hover:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: 'alpha( opacity=70 )';
}

#header {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 0 2%;
  box-sizing: border-box;
}

#sns {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 5px 0;
  position: relative;
}

#sns>a {
  width: 40%;
  max-width: 500px;
  position: absolute;
  top: 8px;
  left: 0;
}

#sns ul {
  width: 38%;
  max-width: 460px;
  display: flex;
  margin: 0 0 0 auto;
  justify-content: flex-end;
}

#sns ul li {
  padding: 1% 10px 10px;
}

#sns ul li:nth-child(1) {
  width: 12%;
}

#sns ul li:nth-child(2) {
  width: 3%;
}

#sns ul li:nth-child(3) {
  width: 5%;
}

#sns ul li:nth-child(4) {
  width: 5%;
}

#sns ul li:nth-child(5) {
  width: 60%;
}

#sns ul li:nth-child(5) a {
  display: block;
}

.bg_blue {
  width: 90%;
  max-width: 1200px;
  background: #00003c;
  margin: 0 auto;
  padding-bottom: 5%;
}

#main {
  width: 90%;
  margin: 0 auto;
  z-index: 0;
  position: relative;
}

#main #title {
  width: 55%;
  margin: 5% 0 5% 5%;
  z-index: 2;
  position: relative;
}

#main #title h1 {
  margin-bottom: 5%;
  text-align: center;
}

#main #title h1 img:nth-child(1) {
  width: 90%;
  margin: 0 auto 2%;
}


#main #title h1+p {
  text-align: center;
}

.main_icon {
  width: 18%;
  position: absolute;
  top: 0;
  right: 0;
}

.main_bg {
  width: 42%;
  z-index: 1;
  position: absolute;
  right: 8%;
  top: -3%;
  animation-name: blur;
  animation-timing-function: ease-out;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  pointer-events: none;
}

@keyframes blur {
  0% {
    filter: blur(100px);
    opacity: 0;
  }

  100% {
    filter: blur(0px);
    opacity: 1;
  }
}

.main_anc {
  width: 80%;
  max-width: 630px;
  margin: 0 auto 5%;
}

.main_anc li a {
  display: block;
  margin-bottom: 5%;
  position: relative;
}

.main_anc li a::after {
  content: '';
  width: 5%;
  height: 20px;
  display: block;
  background: url(../img/arrow01.png) no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 15px;
  right: 5px;
  transition: all 0.5s;
}


.main_anc li a:hover::after {
  transform: translateY(5px);
}

.main_anc li a {
  transition: all 0.5s;
  display: block;
  padding: 10px 0 0;
  box-sizing: border-box;
}

.main_anc li a:hover {
  background: #ffffff57;
}

.main_btn {
  width: 90%;
  max-width: 850px;
  margin: 0 auto 5%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 5%;
}

.main_btn li {
  width: 32%;
  margin-bottom: 3%;
}

.main_btn li a {
  transition: all 0.5s;
  display: block;
}

.main_btn li a:hover {
  background: #ffffff57;
  border-radius: 50px;
}

[id^='anc_'] {
  padding-top: 20px;
  margin-top: -20px;
  display: block;
  pointer-events: none;
}

#main_arrow {
  width: 60px;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: 0%;
  right: 0;
  left: 0;
  transition: all 0.5s;
}

#main_arrow:hover {
  transform: translateY(20px);
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(20px);
  }

  100% {
    transform: translateY(0px);
  }
}

#main #title h1+p br.br_1300 {
  display: none;
}

@media screen and (max-width: 1300px) {
  #main #title h1+p br.br_1300 {
    display: inline;
  }


}

@media screen and (max-width: 1000px) {
  #main #title {
    width: 65%;
    margin: 5% 0 5% 2%;
  }
}

#ballet3 {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto 5%;
}

#ballet3>div {
  width: 95%;
  margin-left: 0;
  margin-bottom: 5%;
}

#ballet3 h2 {
  margin-bottom: 3%;
}

#ballet3 h2+p {
  width: 83%;
  margin-left: 14%;
  margin-bottom: 4%;
}

#ballet3>div>div {
  width: 84%;
  margin-left: 12%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#ballet3>div>div>div {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3%;
  font-size: 90%;
}

#ballet3>div>div>div dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 1.4;
  margin-bottom: 3%;
}

#ballet3>div>div dl dt {
  width: 11rem;
  margin-bottom: 2.5%;
  white-space: nowrap;
}

#ballet3>div>div dl dd {
  width: calc(100% - 12rem);
  margin-bottom: 2.5%;
}

#ballet3>#anc_no01 dl dt {
  width: 8.5rem;
}

#ballet3>#anc_no01 dl dd {
  width: calc(100% - 9.5rem);
}



#ballet3>div>div p {
  margin-bottom: 4%;
}

#ballet3 .ticket_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

#ballet3 .ticket_btn a {
  width: 49%;
  display: block;
}

#ballet3 .ticket_btn a:hover {
  filter: brightness(1.4);
}

#ballet3>div>div>picture {
  width: 45%;
  margin-bottom: 3%;
}

.attention {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 80%;
}

@media screen and (max-width: 1100px) {
  #ballet3 h2+p {
    width: 90%;
    margin-left: 10%;
  }

  #ballet3>div>div {
    width: 90%;
    margin-left: 10%;
  }
}

#anc_about {
  width: 90%;
  max-width: 960px;
  margin: 3% auto;
}

#anc_about div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}


.about_img {
  width: 30%;
}

.about_img p {
  width: 100%;
  text-align: center;
  font-size: 75%;
  margin-top: 5px;
}

.about_img p a:link,
.about_img p a:visited {
  text-decoration: underline;
}


.about_img p a:hover,
.about_img p a:active {
  text-decoration: none;
  color: #fff;
}

.about_text {
  width: 65%;
}

.about_text h2 {
  max-width: 400px;
  margin-bottom: 4%;
}

.about_text p:nth-of-type(1) {
  font-size: 120%;
  line-height: 1.6;
  margin-bottom: 5%;
}

@media screen and (max-width: 1100px) {
  .about_text p:nth-of-type(2) {
    font-size: 90%;
  }

}

.bg_blue_bg {
  background: #00003c;
  background-size: 100% auto;
  overflow: hidden;
}

#anc_tempt {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 5% 0;
  position: relative;
  z-index: 1;
}

#anc_tempt h2 {
  margin-bottom: 5%;
  position: relative;
  z-index: 3;
}

#anc_tempt .tempt {
  width: 97%;
  margin: 0 auto 5%;
  text-align: center;
  position: relative;
}

#anc_tempt .tempt01::before {
  content: '';
  width: 100%;
  height: 700px;
  display: block;
  background: url(../img/tempt_bg02_sp.png) no-repeat right top;
  background-size: 100% auto;
  position: absolute;
  top: -20%;
  right: -18%;
  z-index: -1;
}

#anc_tempt .tempt02::before {
  content: '';
  width: 80%;
  height: 800px;
  display: block;
  background: url(../img/tempt_bg03_sp.png) no-repeat right top;
  background-size: 100% auto;
  position: absolute;
  top: -25%;
  left: -20%;
  z-index: -1;
}

#anc_tempt .tempt h3 {
  width: 100%;
  max-width: 250px;
  margin-bottom: 1%;
}

#anc_tempt .tempt h4 {
  width: 82%;
  margin: 0 auto 1%;
  font-size: 170%;
  text-align: left;
}

#anc_tempt .tempt p {
  width: 85%;
  margin: 0 auto 5% 10%;
  text-align: left;
}

#anc_tempt .tempt img {
  width: 90%;
  margin: 0 auto 5%;
}

#anc_tempt .tempt ul {
  width: 90%;
  margin: 3% auto;
  max-width: 650px;
}

#anc_tempt .tempt ul li {
  font-size: 120%;
  line-height: 1.5;
  padding: 2% 5%;
  box-sizing: border-box;
  background: #500000;
  margin: 2% auto 3%;
}

#anc_price {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 5% 0;
  position: relative;
  z-index: 0;

}


#anc_price::before {
  content: '';
  width: 100%;
  height: 600px;
  background: url(../img/tempt_bg01_sp.png) no-repeat center top;
  background-size: 100% auto;
  display: block;
  opacity: 0.4;
  transition: all 0.5s;
  position: absolute;
  top: -50%;
  right: -20%;
  z-index: 0;
}

#anc_price h2 {
  margin-bottom: 3%;
}

#anc_price .price {
  width: 90%;
  max-width: 650px;
  margin: 0 auto 3%;
  text-align: center;
}

#anc_price .price h3 {
  width: 99%;
  font-size: 170%;
  margin-bottom: 3%;
  margin-left: 1%;
}

#anc_price .price02 {
  width: 80%;
  max-width: 500px;
  margin: 5% auto 3%;
}

@media screen and (max-width: 1000px) {
  #anc_price .price h3 {
    font-size: 160%;
  }
}

#anc_contact {
  width: 90%;
  max-width: 900px;
  border: 1px solid #fff;
  margin: 0 auto;
  padding: 1.5% 3%;
  box-sizing: border-box;
}

#anc_contact h2 {
  font-size: 120%;
}

#anc_contact p {
  width: 99%;
  font-size: 115%;
  margin-bottom: 0;
  margin-left: 1%;
}

#anc_contact p span {
  font-size: 120%;
  display: inline-block;
  margin-right: 3%;
}

#anc_contact p a:last-of-type {
  display: inline-block;
  margin-left: 3%;
}

#anc_contact p a:last-of-type:link,
#anc_contact p a:last-of-type:visited {
  text-decoration: underline;
}

#anc_contact p a:last-of-type:hover,
#anc_contact p a:last-of-type:active {
  text-decoration: none !important;
}

@media screen and (max-width: 1050px) {
  #anc_contact {
    max-width: 620px;
  }

  #anc_contact h2 {
    text-align: center;
  }

  #anc_contact p a:nth-of-type(2) {
    display: block;
    margin-left: 0;
    text-align: center;
  }
}

#anc_nav {
  width: 90%;
  max-width: 1140px;
  margin: 3% auto;
  padding: 2% 0;
  border-top: 1px solid #a68948;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

nav ul {
  width: 55%;
  margin: 3px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

nav ul li {
  width: 25%;
  display: block;
  line-height: 1.2;
  font-size: 110%;
  border-right: 1px solid #a68948;
  text-align: center;
  box-sizing: border-box;
}

nav ul li a {
  padding: 0 0 0 0;
  display: block;
  text-align: center;
  transition: all 0.5s;
}

nav ul li a:hover {
  background: #a68948;
  color: #fff;
}

nav ul li:first-child {
  border-left: 1px solid #a68948;
}

nav>a {
  width: 35%;
  display: block;
}

#nav {
  display: none;
}

#header.navOpen nav ul {
  display: flex;
}

#header nav ul li {
  width: 50%;
}

#header nav.only_pc {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  position: absolute;
  top: 850px;
  right: 0;
  left: 0;
}

#header nav.only_pc ul li {
  width: 20%;
}

#header nav.only_pc ul li a {
  transition: all 0.5s;
}

#header nav.only_pc ul li a:hover {
  transform: scale(1.1);
  margin-top: 5px;
}


@media screen and (max-width: 1000px) {

  nav ul li {
    font-size: 90%;
  }

  nav ul li a {
    background-size: auto 20px;
    margin: 30px 0 0 0;
  }

  nav ul li a:hover {
    background-size: auto 20px;
  }
}


footer {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 5px 0 0.5%;
}

.foot_data {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 3%;
}

.foot_data li {
  text-indent: -70px;
  margin-left: 70px;
}

footer>div {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 2%;
  position: relative;
}


footer>div>a>img {
  width: 80%;
  max-width: 460px;
  margin-bottom: 5px;
  position: absolute;
  top: 10px;
  left: 0;
}

#foot_sns {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

#foot_sns ul {
  width: 80%;
  max-width: 500px;
  display: flex;
  margin: 0 0 0 auto;
  justify-content: flex-end;
}

#foot_sns ul li {
  padding: 1% 10px 10px;
}

#foot_sns ul li:nth-child(1) {
  width: 12%;
}

#foot_sns ul li:nth-child(2) {
  width: 3%;
}

#foot_sns ul li:nth-child(3) {
  width: 5%;
}

#foot_sns ul li:nth-child(4) {
  width: 5%;
}

#foot_sns ul li:nth-child(5) a {
  display: block;
}



#pageTop {
  position: fixed;
  bottom: -70px;
  right: 10px;
  z-index: 5;
}

#pageTop a {
  display: block;
  width: 50px;
  height: 140px;
  background: url(../img/pagetop.png) no-repeat;
  background-size: 100%;
  -moz-border-radius: 0px;
  -webkit-border-radius: 0px;
  border-radius: 0px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}