body {
  /*font-family: "Cardo", serif;*/
  font-family: ryo-display-plusn,sans-serif;

  background-color: #000!important;
  font-size: 14px;
}

body.chinese {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "Microsoft JhengHei", "微軟正黑體", sans-serif;
}

.__bodynoscroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  /* font-family: ryo-display-plusn,sans-serif; */
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  color: #fff;
}

body.english h3,body.english h4,body.english h5,body.english h6{
  text-transform: none;
}
body.english h1 span,body.english h2 span{
  display: none;
}

p {
  color: #fff;
}

h1 {
  font-size: 30px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 50px;
  }
}

h4 {
  font-size: 20px;
}
@media (min-width: 768px) {
  h4 {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  h4 {
    font-size: 24px;
  }
}

p, span, a, label, input, button, li {
  /* font-family: ryo-display-plusn,sans-serif; */
  letter-spacing: 2px;
}

.usercontent h1 {
  font-size: 36px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .usercontent h1 {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .usercontent h1 {
    font-size: 50px;
  }
}
.usercontent h2 {
  font-size: 26px;
  margin-bottom: 15px;
  text-transform: uppercase;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .usercontent h2 {
    font-size: 34px;
  }
}
@media (min-width: 1200px) {
  .usercontent h2 {
    font-size: 36px;
  }
}
.usercontent h3 {
  font-size: 18px;
  margin-bottom: 15px;
  text-transform: none;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .usercontent h3 {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .usercontent h3 {
    font-size: 20px;
  }
}
.usercontent p {
  font-size: 14px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .usercontent p {
    font-size: 16px;
  }
}

.wrapper {
  position: relative;
  margin-top: 0;
  transition: all 1s ease;
  /*overflow-x: hidden;*/
}

/* Variables */
.wrapper {
  position: relative;
}

.header {
  padding: 0 15px;
  position: fixed;
  background-color: #fff;
  top: 0;
  width: 100%;
  height: auto;
  left: 0;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
}

body.admin-bar .header {
  top: 32px;
}

@media screen and (max-width:991px) {
  body.admin-bar .header {
    top: 46px;
  }
  
}

@media (min-width: 992px) {
  .header {
    background-color: transparent;
    position: fixed;
  }
}
.header:hover, .header:focus {
  background-color: #000;
}
@media screen and (max-width:991px) {
  .header {
    background-color: #000;
  }
  .pconly {
    display: none!important;
  }
}
@media (min-width: 992px) {
  .header:hover .header-nav ul li a, .header:focus .header-nav ul li a {
    color: #fff;
  }
}
.header-image {
  width: 90px;
}
.header-image img {
  width: 100%;
}
.header-nav {
  width: 100vw;
  height: 100vh;
  position: fixed;
  right: -100%;
  top: 70px;
  background-color: #fff;
  transition: all 0.4s ease;
}
.header-nav.__active {
  right: 0;
}
@media (min-width: 992px) {
  .header-nav.__active {
    right: auto;
  }
}
@media (min-width: 992px) {
  .header-nav {
    position: relative;
    right: auto;
    top: auto;
    background-color: transparent;
    width: auto;
    height: 70px;
  }
}
.header-nav ul {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .header-nav ul {
    align-items: center;
    flex-direction: row;
  }
}
.header-nav ul li {
  height: auto;
  display: flex;
  position: relative;
  flex-direction: column;
}
@media (min-width: 992px) {
  .header-nav ul li {
    flex-direction: row;
    height: 70px;
    align-items: center;
  }
  .header-nav ul li:hover > a::before, .header-nav ul li:focus > a::before {
    width: 100%;
  }
}
.header-nav ul li a {
  position: relative;
}
.header-nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s ease;
}
.header-nav ul li a.__active::before {
  width: 100%;
}
@media (min-width: 992px) {
  .header-nav ul li.megamenu:hover ul, .header-nav ul li.megamenu:focus ul {
    display: flex;
  }
}
.header-nav ul li.megamenu ul {
  width: 100%;
  height: auto;
  left: 0%;
  margin: 0;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
  display: none;
  padding-left: 15px;
}
@media (min-width: 992px) {
  .header-nav ul li.megamenu ul {
    padding: 15px 0;
    top: 70px;
    position: fixed;
    display: none;
  }
}
.header-nav ul li.megamenu ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: auto;
}
@media (min-width: 992px) {
  .header-nav ul li.megamenu ul li {
    height: 100%;
  }
}
.header-nav ul li.megamenu ul li a {
  color: #000;
  transition: all 0.3s ease;
  text-transform: uppercase;
  height: 70px;
  width: 100%;
}
@media (min-width: 992px) {
  .header-nav ul li.megamenu ul li a {
    margin-bottom: 20px;
    height: 100%;
    width: auto;
  }
}
.header-nav ul li.megamenu ul li a:hover, .header-nav ul li.megamenu ul li a:focus {
  color: grey;
}
.header-nav ul li.megamenu ul li a::before {
  content: none;
}
.header-nav ul li.megamenu ul li ul {
  position: relative;
  height: auto;
  margin: 0;
  bottom: auto;
  left: auto;
  top: auto;
  display: none;
  padding-left: 30px;
}
@media (min-width: 992px) {
  .header-nav ul li.megamenu ul li ul {
    justify-content: flex-start;
    flex-direction: column;
    display: flex;
    padding: 0;
  }
}
.header-nav ul li.megamenu ul li ul li {
  width: 100%;
}
@media (min-width: 992px) {
  .header-nav ul li.megamenu ul li ul li {
    margin-bottom: 15px;
  }
  .header-nav ul li.megamenu ul li ul li:last-of-type {
    margin-bottom: 0;
  }
}
.header-nav ul li.megamenu ul li ul li a {
  width: 100%;
  font-size: 12px;
}
@media (min-width: 992px) {
  .header-nav ul li.megamenu ul li ul li a {
    margin-bottom: 0;
  }
}
.header-nav ul li a {
  padding: 0 10px;
  height: 70px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width:991px) {
  .header-nav ul li a {
    padding: 0 20px!important;
    font-size: 18px!important;
  }
}
@media (min-width: 992px) {
  .header-nav ul li a {
    color: #fff;
  }
}
@media (min-width: 992px) {
  .header-nav ul li a:hover::before, .header-nav ul li a:focus::before {
    width: 100%;
  }
}
.header-nav ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.4s ease;
  width: 0%;
  height: 2px;
  /*background-color: #000;*/
}
.header-aux {
  display: none;
}
@media (min-width: 992px) {
  .header-aux {
    display: block;
  }
}
.header-aux svg {
  width: 30px;
  height: 30px;
}
.header-burger {
  width: auto;
  cursor: pointer;
  height: 70px;
  background-color: coral;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  outline: none;
  background-color: transparent;
}
@media (min-width: 992px) {
  .header-burger {
    display: none;
  }
}
.header-burger:focus {
  outline: none;
}
.header-burger.__active span {
  background-color: transparent;
}
.header-burger.__active span::before {
  top: -2px;
  transform: rotate(45deg);
}
.header-burger.__active span::after {
  top: -1px;
  transform: rotate(135deg);
}
.header-burger span {
  width: 30px;
  height: 3px;
  background-color: #FFF;
  position: relative;
}
.header-burger span::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #FFF;
  transition: all 0.3s ease;
}
.header-burger span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #FFF;
  transition: all 0.3s ease;
}










/*Custom*/
.header-nav ul li a img {
  height: 20px;
  margin-right: 1em;
}
.header-nav ul li.reser:after {
 content: "";
  width: 2px;
  height:20px;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) skewX(160deg);
  transform: translateY(-50%) skewX(160deg);
  background:  #fff;
}

.header-nav ul li.longarr {
 position: relative;
    display: inline-block;
    width: 60px;
    height: 2px;
    margin: 0;
    border-radius: 9999px;
    background-color: #ffffff;
}


.header-nav ul li.longarr::before,
.header-nav ul li.longarr::after {
  content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 12px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: calc(100% - 1px) 50%;
}

.header-nav ul li.longarr::before {
  transform: rotate(45deg);
}

.header-nav ul li.longarr::after {
  transform: rotate(-45deg);
}


.main{
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (min-width: 992px) {

}


.top_bg_movie {
  width: 100%;
}
.background_movie_wrap {
  position: relative;
  height: 90vh;
  width: 100%;
}
@media (orientation: portrait) and (max-width: 430px){
  .background_movie_wrap {
    height: 36vh;
    margin-top: 70px;
  }
}
.background_movie_wrap video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    position: absolute;
    object-position: center;
    top: 0;
    left: 0;
}

.top {
    position: relative;
    /*position: absolute;*/
    z-index: 1;
    top: 0;
    width: 100%;
    padding: 0 1em 2em;
}



@media screen and (min-width:992px) {
  .pc_only {
          display: block;
      }

    .sp_only {
         display: none!important;
       
    }
    
}
@media screen and (max-width:991px) { 
    .pc_only  {
        display: none!important;
    }
    .sp_only {
         display: block;
       
    }
}
.pub3em {
  padding: 3em 0;
}
.mt6em {
  margin-top: 6em;
}
.mt3em {
  margin-top: 3em;
}

@media screen and (max-width:991px) { 
  .pub3em {
    padding: 1.5em 0;
  }
  .mt6em {
    margin-top: 3em;
  }
  .mt3em {
    margin-top: 1.5em;
  }
}
.concept_up,
.concept_dn,
.concent_dn {
  width: 100%;
  position: relative;
  display: flex;
}
.concept_up{
  flex-direction: row-reverse;
}
.concept_up .container,
.concept_dn .container,
.concent_dn .container{
  display: flex;
}
.concept_up_bg,
.concept_dn_bg {
  position: relative;

}
.concept_up_bg img {
     max-width: 50vw;
    /* position: absolute; */
    right: 0;
    z-index: 0;
    max-height: 600px;
    width: auto;
}
.concept_dn_bg img {
  max-width: 50vw;
  /* position: absolute; */
  left: 0;
  z-index: 0;
  max-height: 600px;
  width: auto;
}
@media screen and (max-width:991px) { 
  .concept_up,
  .concent_dn,
  .concept_dn {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    position: relative;
  }
  .concept_up_bg,
  .concept_dn_bg {
    position: relative;

  }
  .concept_up_bg img {
    position: relative;
    max-width: 100vw;
    right: 0;
    z-index: 0;
    max-height: 600px;
    width: auto;
  }
  .concept_dn_bg img {
    position: relative;
    max-width: 100%;
    left: 0;
    z-index: 0;
    max-height: 600px;
    width: auto;
  }
}
@media screen and (max-width:425px) {
  .concept_up_bg img,
  .concept_dn_bg img  {
    max-width: 100vw;
    width: 100%;
  }

}

.container, .concept_up_txt, .concept_dn_txt {
  position: relative;
}
.concept_up_txt,
.concept_dn_txt {
  z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
}

/* .concept_dn_txt  {
  align-items: end;
} 
.concept_dn_txt h2,
.concept_dn_txt h3 {
  text-align: right!important;
} */
@media screen and (max-width:991px) { 
  .concept_dn_txt  {
    align-items: center;
  } 
  .concept_dn_txt h2,
  .concept_dn_txt h3 {
    text-align: center!important;
  }
}



.concept_up_txt h2,
.concept_dn_txt h2 {
  /* font-family: ryo-display-plusn,sans-serif; */
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 2px;
}
.concept_up_txt h2 span,
.concept_dn_txt h2 span {
  font-size: 1rem;
  display: none;
  line-height: 2;
  letter-spacing: 12px;
}



.concept_up_txt h3,
.concept_dn_txt h3 {
  font-size: 2.0rem;
  line-height: 1.5;
  letter-spacing: 3px;
  margin: 1rem 0;
  font-weight: 500;
}

.linktobi a {
  color: #fff;
  font-size: 1.4rem;
  line-height: 2;
  text-decoration: none;
  letter-spacing: 3px;

}
.linktobi a img {
  height: 30px;
  border-radius: 2px;
} 

@media screen and (max-width:991px) { 
  .concept_up_txt h2,
  .concept_dn_txt h2 {
    font-size: 1.6rem;
    text-align: center!important;
  }
  .concept_up_txt h2 span,
  .concept_dn_txt h2 span  {
    font-size: .6rem;
    letter-spacing: 6px;
    display: none;
  }
  .concept_up_txt h3,
  .concept_dn_txt h3 {
    font-size: 1.2rem;
  }
  .linktobi a {
    font-size: 1.2rem;
  }
}

.linktobi a span.longarr,
span.longarr {
position: relative;
    display: inline-block;
    width: 80px;
    height: 2px;
    margin: 5px 0;
    border-radius: 9999px;
    background-color: #ffffff;
}


.linktobi a span.longarr::before,
.linktobi a span.longarr::after,
span.longarr::before,
span.longarr::after  {
  content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 12px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: calc(100% - 1px) 50%;
}

.linktobi a span.longarr::before,
span.longarr::before  {
  transform: rotate(45deg);
}

.linktobi a span.longarr::after,
span.longarr::after {
  transform: rotate(-45deg);
}
.linktobi a:hover {
  text-decoration: none;
  color: #fff;
  font-weight: 800;
 transition: all 0.3s ease;
}

@media screen and (min-width:1440px) {
 .vh40 {
  min-height: 40vh;
 }
 }


section .flex {
  display: flex;
}
.flex-one, .flex-two {
  width: 50%;
  display: flex;
}
.flex-one img{
  opacity: 0.6;
}
@media screen and (max-width:991px) { 
  section .flex {
  flex-direction: column;
  }
  .flex-one, .flex-two {
  width: 100%;

  }
  .txtwithbg img {
    overflow: hidden;
        max-height: 40vh;
        height: auto;
  }
}
.txtwithbg {
  position: relative;
}
.txtwithbg h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 800;
  filter: drop-shadow(0 0 0.75rem black);
  font-size: 1.4rem;
}

.txtwithbg a:hover h3{
  font-size: 1.5rem;
  transition: all 0.3s ease;

}
.txtwithbg h3 span {
  display: block;
  font-size: 1rem;
}
.txtwithbg img {
 /*filter: grayscale(70%);*/
 width: 100%;
}
.nofilter img{
  filter:  none!important;
}
.txtwithbg h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 800;
  filter: drop-shadow(0 0 0.75rem black);
  font-size: 3rem;
}
@media screen and (max-width:991px) { 
  .txtwithbg h2{
            width: 100%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 2rem;
  }
  .txtwithbg h2 span {
    font-size: 1rem!important;
  }
}
.txtwithbg a:hover h3{
  transition: all 0.3s ease;

}
.txtwithbg h2 span {
  display: block;
  font-size: 1.8rem;
}
.txtwithbg a:hover h2{
  font-size: 3.4rem;
  transition: all 0.3s ease;

}

h2.news {
  text-align: center;
}
h2.news span {
    font-size: 1rem;
  display: block;
  line-height: 2;
  letter-spacing: 12px;
}
ul.news {
  margin: 3em 0;
  padding-left: 0;
  list-style: none;
  border-bottom: 1px solid #fff;
  padding-bottom: 2em;
}
ul.news li {
  display: flex;
  flex-wrap: nowrap;
}
ul.news  a,
.morebtn a  {
  color: #fff;
}

ul.news  a:hover,
.morebtn a:hover {
  text-decoration: none;
  font-size: 1.1rem;
  color: #fff;
  transition: all .1s ease;
}
ul.news li {
  padding: .8em 0;
}
ul.news li p.date {
  letter-spacing: 3px;
  margin-right: 2em;
  transition: all .1s ease;
}
.morebtn {
  text-align: right;
}
footer {
  background-color: #383838;
}
.flcl {
  flex-direction: column;
}
.footer_logo img {
  width: 200px;
}
.reserve_box {
  display: flex;
  border: 1px solid #FFFFFF;
  padding: 2em;
  margin: 2em 0;
  justify-content: space-between;
      align-items: end;
      position: relative;
}
.telbox a,
.telbox a:hover {
  text-decoration: none;
  color: #fff;
}
.laguage_box ul {
  list-style: none;
  display: flex;
  justify-content: center;
    align-items: center;
}
.laguage_box ul li {
  margin: 0 1em;
  position: relative;

}
.laguage_box ul li a {
  text-decoration: none;
  color: #fff;
}
.laguage_box ul li a img {
  height: 30px;
  margin-right: 1em;
}
.laguage_box ul li.longarr {
 position: relative;
    display: inline-block;
    width: 60px;
    height: 2px;
    margin: 0;
    border-radius: 9999px;
    background-color: #ffffff;
}


.laguage_box ul li.longarr::before,
.laguage_box ul li.longarr::after {
  content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 12px;
    height: 2px;
    border-radius: 9999px;
    background-color: #ffffff;
    transform-origin: calc(100% - 1px) 50%;
}

.laguage_box ul li.longarr::before {
  transform: rotate(45deg);
}

.laguage_box ul li.longarr::after {
  transform: rotate(-45deg);
}
.laguage_box ul li.reser:after {
 content: "";
  width: 2px;
  height:20px;
  display: block;
  position: absolute;
  top: 50%;
  right: -14px;
  -webkit-transform: translateY(-50%) skewX(160deg);
  transform: translateY(-50%) skewX(160deg);
  background:  #fff;
}

@media screen and (max-width:991px) { 
  .detail_info ul li .title {
    width: 30%!important;
  }
  .english .detail_info ul li .title {
    width: 50%!important;
  }
  .detail_info ul li .descrip {
    width: 70%;
  }
  .reserve_box {
    flex-direction: column;
    align-items: center;
  }
  .telbox {
    text-align: center;
    margin-bottom: 1em;
  }
  .laguage_box ul {
    padding-left: 0;
  }
}

@media screen and (max-width:425px) {
  .telbox h3 {
    font-size: 1.2rem;
  }
  .laguage_box ul li {
    font-size: .8rem;
    margin: 0 6px;
  }
  .laguage_box ul li a img {
    height: 20px;
  }
  .laguage_box ul li.longarr {
    width: 30px;
  }
  .laguage_box ul li.reser:after {
    right: -5px;
  }
}

.detail_info ul {
  padding-left: 0;
}

.detail_info ul li {
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  color: #fff;
  /* font-family: ryo-display-plusn,sans-serif; */
  padding: 1em;
}
.detail_info ul hr {
  border-top:1px solid #fff;

}
.detail_info ul li .title {
  width: 15%;
  font-weight: 600;
}
.english .detail_info ul li .title {
  width: 20%;
}
.footer_btm p {
  font-size: .8em;
  font-weight: 400;
}


/*Concept*/
.top_bg,
.top_bg_img {
  position: relative;
}
.top_bg_img img {
  width: 100%;
}
.top_bg_img h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 800;
  filter: drop-shadow(0 0 0.75rem black);
  font-size: 3.2rem;
}
.top_bg_img h1 span {
  display: none;
  font-size: 1.2rem;
  letter-spacing: 4px;
}


.tatesetumei {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8em 0;
}

 .vertical {
        writing-mode: vertical-rl;
        /* font-family: ryo-display-plusn,sans-serif; */
        line-height: 1.8;
        letter-spacing: 16px;
        font-size: 2.0rem;
    }

.english .tatesetumei .vertical {
  margin-left: 15px;
  margin-right: 15px;
  writing-mode: horizontal-tb;
  text-transform: none;
  letter-spacing: 4px;
}



.concept_up_bg video {
     max-width: 50vw;
    position: absolute;
    right: 0;
    z-index: 0;
    max-height: 600px;
    width: auto;
     filter: brightness(70%) contrast(120%) saturate(70%);
    margin-top: 10em;
}

h3.movh3 {
  font-size: 1.8rem;
  /*filter: drop-shadow(0 0 0.75rem #000);*/
  line-height: 2;
}


.reservation_box {
  background-image: url(../image/bg_gradation.jpg);
    background-position: top;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    border: none;
  
}

section.reserve_box {
  background-color: #fff;
  margin: 0;
  padding: 0 0 4em 0;
  border: none;
  margin-bottom: -4em;
}
.bk {
  color: #000;
}
.bk2 {
  color: #9fa1a2;
}
.reserve_in_box ul {
  list-style: none;
  display: flex;
  padding-left: 0;
}
.reserve_in_box ul a {
  width: calc(100%/3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2em 1em;
  border: 1px solid #000;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
}
.reserve_in_box ul a {
  text-decoration: none;
  color: #000;
}
.reserve_in_box ul a:nth-child(1),
.reserve_in_box ul a:nth-child(2) {
  margin-right: 10px;
}

.mt12em {
  margin-top: 22em;
}

@media screen and (max-width:991px) {  
  .top_bg_img h1 {
    font-size: 2.0rem;
  }
  .top_bg_img h1 span {
    font-size: .8rem;
  }
  .top_bg{
    padding-top: 60px;
  }
  h3.movh3 {
    font-size: 1.2rem;
  }
  .tatesetumei{
    padding: 4em 0 1em;
  }
  .vertical {
    font-size: 1.4em;
  }
  .concept_up_bg video {
    max-width: 70%;
  }
  section.reserve_box {
    margin-bottom: -2em;
  }
  .reserve_in_box ul {
    flex-direction: column;
  }
  .reserve_in_box ul a {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1em;
    font-size: 1em;
  }
}
@media screen and (max-width:425px) { 

.mt12em {
  margin-top: 8em;
}

}

/*Course*/
ul.course {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 1em;
  grid-row-gap: 1em;
}
ul.course li img{
  width: 100%;
  transition: transform .6s ease;
  
}
ul.course li:hover img {
  transform: scale(1.05); 
}




/*navtab*/
.course_detail {
  position: relative;
}
.course_detail > .container {
  position: relative;
}
.nopad {
  padding: 0!important;
}
img.coursetop {
  width: 100%;
  max-height: 491px;
}
.content{
  width: 100%;
  height: auto;
  margin: 0 auto;

}
.nav-pills{
  width: 100%;
}
.nav-link {
  padding: 0!important;
}
.nav-item{
  width: calc(100%/3);
}
.nav-pills .nav-link{
  font-weight: bold;
  /*padding-top: 13px;*/
  text-align: center;
  background: #000;
  color: #fff;
  border-radius: 30px;
  height: auto;
}
.nav-pills .nav-link h3 {
  margin: 1em 0;
}
.nav-pills .nav-link.active{
  background: #000;
  color: #fff;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
      color: #fff;
    background-color: #000!important;
}
.tab-content{
    /*position: absolute;*/
    width: 100%;
    height: auto;
    /*margin-top: -50px;*/
    background: #000;
    color: #fff;
    border-radius: 0px;
    z-index: 2;
    padding: 1em 0;
    margin-bottom: 50px;
}
.tab-content button{
  border-radius: 15px;
  width: 100px;
  margin: 0 auto;
  float: right;
}
.nav-pills .nav-link img,
.nav-pills .nav-link h3 {
  filter: grayscale(10%) blur(0.2px);
}
.nav-pills .nav-link.active img,
.nav-pills .nav-link.active h3 {
  filter: none;
  /* color: yellow; */
  font-weight: 800;
  /* font-size: 2rem; */
}
}
p.caution {
  color: #fff;
}
/*navtab end*/



.obi {
  position: relative;
}
.obi h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-weight: 800;
  filter: drop-shadow(0 0 0.75rem black);
  font-size: 1.4rem;
}

.obi img {
  width: 100%;
}
.obi h2 {
  /* font-family: ryo-display-plusn,sans-serif; */
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 2px;
}
.obi h2 span {
  font-size: 1rem;
  display: block;
  line-height: 2;
  letter-spacing: 12px;
}


ul.course_in {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-column-gap: 10px;
grid-row-gap: 10px;
list-style: none;
padding-left: 0;
}

ul.course_in  img {
  width: 100%;
}



@media screen and (max-width:991px) {  
  .nav-pills .nav-link h3{
    font-size: 1.2rem;
  }
  .obi h2 {
    font-size: 2rem;
  }
}

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

}



/*About*/
.about_movie {
  width: 80%;
  margin: 0 10%;
}
.about_movie video {
  width: 100%;
}

.about_pic_box img {
  width: 100%;
}

@media screen and (max-width:991px) {  
  .about_movie {
  width: 100%;
  margin: 0;
  }
}

/*Accessページ*/
.page_in_logo {
  display: flex;
}
.page_in_logo img {
  width: 30%;
  margin: 10% auto;
}
.pic_box {

}
.flex {
  display: flex;
  gap: 10px;

}

.left, .right {
  width: 50%;
  gap:10px;
}
.left img {
  min-height: 344px;
}
.left img,
.right img {
  width: 100%;
}
.right.flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.address_up {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}
.omise_left img {
  width: 100%;
}
.omise_right h3 {
  margin-left: 40px;
  font-size: 1.4rem;
  border-bottom:1px solid #fff;
  padding: 10px 40px 10px 0;
}
.omise_right ul {
  list-style: none;
}
.omise_right ul li {
  display: flex;
  padding: .4em;
}


.omise_right ul li p.title {
  width: 30%;
}

.omise_right ul li p.descrip {
  width: 70%;
}



@media screen and (max-width:991px) { 
  .left, .right{
    width: 100%;
  }
  .pic_box .flex {
    flex-wrap: wrap;
  }
  .address_up {
    grid-template-columns: repeat(1, 1fr);
  }
  .omise_right ul {
    padding-left: 0;
  }
  .omise_right h3 {
    margin-left: 0;
  }
  .omise_left{
    max-height: 200px;
    overflow: hidden;
  }
  .omise_left img {
    object-fit: fit;
    object-position: center;
  }
}









.pagination{
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

/* .pagination ul{
  margin: 0;
  padding: 0;
  list-style-type: none;
} */

.pagination .page-numbers{
  display: inline-block;
  padding: 10px 18px;
  color: #fff;
}


.pagination .page-numbers{
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  text-align: center;
}

.pagination .page-numbers.current{
  background-color: #fff;
  border-radius: 100%;
  color: #000;
}

.btn_reserve_wrap {
  flex-basis: 280px;
}

.btn_shop_reserve {
  width: 100%;
  max-width: 298px;
  display: block;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  font-family: "Shippori Mincho", serif;
  border: 1px solid #fff;
  position: relative;
  transition: all 0.3s;
  margin: 0 auto;
  margin-top: 0px;
  z-index: 1;
}

.btn_shop_reserve::after {
  content: "";
  background-image: url(../image/arrow_white.svg);
  width: 38px;
  height: 10px;
  background-size: cover;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s;
  z-index: 10;
}
.btn_shop_reserve:hover {
  opacity: 0.6;
  text-decoration: none;
  color: #fff;
}

.btn_shop_reserve:hover::after {
  right: 10px;
}
.anchor-offset {
    /* 1. 上部に余白（パディング）を追加して下に押し下げる */
    padding-top: 70px; 
    /* 2. 要素の上マージンを負の値にして、余白分の空間を相殺し、レイアウトの流れを元に戻す */
    margin-top: -70px; 
}

.common_page_main_section{
  margin-top: 8em;
  margin-bottom: 2em;
}
.common_page_main_section table{
  color: #FFF;
  margin-top: 2em;
  margin-bottom: 2em;
  margin: auto;
}
.common_page_main_section table tr{
  border-bottom: 1px solid #FFF;
}

/* モバイル対応：画面が狭い時に1列にする */
@media screen and (max-width: 600px) {
    .common_page_main_section table th, .common_page_main_section table td {
        display: block;
        width: 100%;
    }
    .common_page_main_section table th {
        border-bottom: none;
        padding-bottom: 5px;
        font-size: small;
    }
}
