@charset "UTF-8";
/*----------------------------------------------------------------------------*/

/* TOP */
#item_detail {
  font-size: 18px;
  background-color: black;
  color: #000;
}

/* sec1 */
#item_detail #sec1 .inner {
  background-color: #000;
  padding: 50px 0;
}

#item_detail #sec1 .about {
  color: #fff;
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#item_detail #sec1 .about img {
  width: 40%;
}

#item_detail #sec1 .about div {
  width: 55%;
}

#item_detail #sec1 .about .title {
  font-size: 23px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}

#item_detail #sec1 .about p.caption {
  margin-top: 30px;
}

/* movie */
#movie .mov{
    width: 80%;
    margin: 0 auto 100px;
}

/* sec2 */
#sec2 {
  background-image: url(_image/sec2_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

#sec2 .btf_40 {
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

#sec2 .btf_40 .item {
  width: 48%;
}

#sec2 .btf_40 p.title {
  font-size: 23px;
  font-weight: bold;
  margin: 30px 0 20px;
}

/* btf01 */
#btf01 {
    text-align: center;
}

#btf01 .inner {
    width: 70%;
    margin: 0 auto;
}

.btf_title {
    text-align: center;
    background-color: #e50012;
    margin: 100px 0 70px;
}

.btf_title img {
    width: 50%;
}

#btf01 img.img1 {
    width: 90%;
}

img.accordion_btn {
    width: 35%;
}

/* btf02 */
#btf02 {
    margin: 0 auto;
}

#btf02 .inner {
    width: 70%;
    margin: 0 auto;
}

#btf02 .img_area {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
}

#btf02 .img_area img:first-of-type {
    margin-bottom: 30px;
}

/* accordion */
.accordion_area {
  position: relative;
  padding: 50px 0 0;
}

img.accordion_img {
    margin-top: 70px;
}

.accordion {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  gap: 6px;
  right: 20%;
}

.accordion a {
  width: 16%;
}

.accordion a:hover {
  opacity: 0.5;
}

.accordion-content {
  display: none;
}

.accordion-header {
    position: relative;
    width: 100%;
}

.accordion-header:after {
    display: block;
    background-image: url(_image/open.png);
    background-size: cover;
    content: '';
    width: 410px;
    height: 40px;
    position: absolute;
    transform: translate(0, -1%);
    z-index: 999;
    top: 20px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

.accordion-header.close::after {
    background-image: url(_image/colse.png);
    transition: all 0.3s;
    transform: translate(0, 0);
}

.reservation_btn {
    display: block;
    margin: 5% auto 50px;
    background-image: url(_image/reservation.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    width: 323px;
    height: 45px;
}

.reservation_btn:hover {
    background-image: url(_image/reservation_red.png);
}

/* lightbox */

.lb-nav a.lb-next {
    position: absolute;
    right: -120px!important;
    opacity: 1!important;
}

.lb-nav a.lb-prev {
    position: absolute;
    left: -130px!important;
}

.lb-container {
    position: relative;
}

.lb-data .lb-close {
    position: absolute;
    top: 0;
    right: 5%;  
}

.lb-nav a.lb-prev {
  opacity: 1!important; 
}

.flex {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 50px;
}

/* info */
#info {
  width: 80%;
  margin: 0 auto;
  padding: 100px 0 50px;
  text-align: center;
}

#info .border_area {
  padding: 50px;
  border: 1px solid #fff;
}

#info .border_area img.logo {
  width: 35%;
  margin: 0 auto;
}

#info .border_area h2 {
  font-size: 25px;
  margin: 30px 0 50px;
}

#info .border_area .info_detail {
  display: flex;
  justify-content: left;
  align-items: center;
  width: 40%;
  margin: 0 auto 20px;
}

#info .border_area .info_detail:last-of-type {
  margin-bottom: 0;
}

#info .border_area .info_detail p {
  width: 50%;
  font-weight: bold;
  color: #fff;
  text-align: left;
}

#info .border_area .info_detail p.title {
  width: 40%;
  font-size: 15px;
  background: #fff;
  color: black;
  padding: 5px;
  margin-right: 20px;
  text-align: center;
}

p.btf_caption {
  color: #fff;
  text-align: center;
  margin: 100px 0 50px;
}

#copyright1 {
  width: auto;
  margin: 30px auto 140px;
  color: #fff;
}
#copyright1 p {
  font-size: 12px;
  text-align: center;
}

.btnBuy {
  margin-top: 50px;
}

@media screen and (max-width: 667px) {
  /* TOP */
  #item_detail {
    font-size: 3.5vw;
  }

  #item_detail #sec1 .about .title {
    font-size: 17px;
  }

  #sec2 .btf_40 p.title {
    font-size: 17px;
  }

  /* sec1 */
  #item_detail #sec1 .about {
    flex-direction: column;
    padding: 30px 0;
  }

  #item_detail #sec1 .about img {
    width: 70%;
    margin-bottom: 30px;
  }

  #item_detail #sec1 .about div {
    width: 100%;
  }

  /* movie */
    #movie .mov {
        margin-bottom: 50px;
    }

  /* sec2 */
  #sec2 {
    padding: 50px 0;
  }

  #sec2 .btf_40 {
    flex-direction: column;
  }

  #sec2 .btf_40 .item {
    width: 100%;
  }

  #sec2 .btf_40 .item:first-of-type {
    margin-bottom: 50px;
  }

  .btf_title {
    margin: 50px 0;
  }

  .btf_title img {
    width: 100%;
  }

  /* accordion */
  .accordion {
    width: 100%;
    right: 10%;
    justify-content: space-around;
  }

  .accordion_area {
    padding: 20px 0 0;
  }

  .reservation_btn {
        margin: 30px auto;
    }

  .accordion a {
    width: 30%;
  }

  img.accordion_img {
    margin-top: 30px;
  }

  #btf01 .inner {
    width: 90%;
  }

  .accordion-header:after {
    width: 230px;
    height: 23px;
    transform: translate(0, -38%);
  }

  #btf02 .inner {
    width: 90%;
  }

  /* info */
  #info {
    padding: 50px 0;
  }

  #info .border_area {
    padding: 30px 20px;
  }

  #info .border_area img.logo {
    width: 80%;
  }

  #info .border_area h2 {
    margin: 30px 0;
    font-size: 17px;
  }

  #info .border_area .info_detail {
    width: 100%;
  }

  #info .border_area .info_detail p {
    text-align: center;
  }

  #copyright1 {
    width: 96%;
    margin: 5vw auto 0;
  }

  #copyright1 p {
    font-size: 2.5vw;
    text-align: center;
  }

  p.btf_caption {
    margin: 50px auto;
  }

  .lb-nav a.lb-next {
        right: 0!important;
    }

    .lb-nav a.lb-prev {
        left: 0!important;     
    }

    .lb-data .lb-close {
        right: 15px;
        top: -50px;
    }


  .btnBuy {
    margin-top: 30px;
  }
}