@charset "utf-8";

#splash {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  transition: all 1s;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

#splash.hide {
  transition-delay: 0.5s;
  opacity: 0;
  visibility: hidden;
}

#splash .splash_logo {
  position: absolute;
  left: calc(50% - 80px);
  top: calc(50% - 80px);
  -webkit-perspective: 240px;
  perspective: 240px;
}

#splash .splash_logo img {
  width: 160px;
  height: 160px;
  animation: splash-logo ease-out 2.5s 1;
}

@media screen and (max-width: 768px) {
  #splash .splash_logo {
    left: calc(50% - 60px);
    top: calc(50% - 60px);
    -webkit-perspective: 180px;
    perspective: 180px;
  }

  #splash .splash_logo img {
    width: 120px;
    height: 120px;
  }
}

@keyframes splash-logo {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

.mv_cont {
  width: 100%;
  height: 624px;
  position: relative;
  z-index: 0;
}

.mv_cont h1 {
  font-size: 6vw;
  color: #756659;
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.mv_sns {
  position: absolute;
  width: 58px;
  top: 50%;
  right: 122px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.mv_sns a {
  display: block;
  margin-bottom: 20px;
}

.cat_link {
  position: absolute;
  bottom: 5%;
  right: 122px;
}

.cat_link .link_btn p::after {
  transform: rotate(90deg);
}

.main_cont {
  width: 100%;
  min-width: 1200px;
}

.contact_cont {
  width: 100%;
  background: #FFF8EF;
  padding-bottom: 80px;
}

.contact_box {
  /*
  max-width: 920px;
  width: 90%;
  */
  width: 1040px;
  margin: auto;
  position: relative;
}

.contact_box h2 {
  position: absolute;
  top: -45px;
  left: 0;
  font-size: 7rem;
  color: #756659;
}

.contact_flex_box {
  padding-top: 90px;
}

.contact_child {
  width: 31%;
  font-size: 1.6rem;
  color: #2E2721;
  text-align: center;
}

.contact_child img {
  width: auto;
  height: 75px;
}

.contact_txt {
  margin: 35px 0;
  min-height: 2.4em;
}

.link_btn {
  display: inline-block;
  font-size: 1.8rem;
  color: #756659;
  width: auto;
  height: 50px;
  padding: 13px 15px;
  background-color: #FFF;
  border-radius: 25px;
  border: 1px solid #756659;
  margin: auto;
  transition: .6s;
}

.link_btn:hover {
  background-color: #FFDFD5;
}

.link_btn p {
  position: relative;
  padding-right: 40px;
}

.link_btn p::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 26px;
  border-radius: 13px;
  border: 1px solid #756659;
  background: url('/assets/img/common/icon_arrow_btn.svg') no-repeat;
  background-image: 100%;
  background-position: center;
  top: -2px;
  right: 0;
}

.contact_coution {
  font-size: 1.4rem;
  color: #2E2721;
  margin-top: 40px;
  text-align: center;
}

.contact_coution a {
  position: relative;
  display: inline-block;
  transition: .3s;
}

.contact_coution a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 1px;
  background-color: #E37F60;
  transition: .3s;
}
.contact_coution a:hover::after {
  width: 100%;
}

.contact_coution span {
  font-size: 1.7rem;
  color: #E37F60;
  font-weight: bold;
}

.scroll_margin {
  margin-top: -160px;
  padding-top: 160px;
}


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

  .mv_cont {
    height: 500px;
  }

  .main_cont {
    min-width: auto;
  }

  .mv_cont h1 {
    font-size: 6rem;
    left: 20px;
    top: auto;
    bottom: 20px;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }

  .mv_sns {
    width: 48px;
    right: 20px;
    top: 30%;
  }

  .mv_sns a {
    margin-bottom: 10px;
  }

  .contact_box {
    width: 90%;
  }

  .contact_box h2 {
    font-size: 6rem;
    top: -40px;
  }

  .contact_child {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 40px;
  }

  /* .contact_flex_box .contact_child:first-child { */
  .contact_flex_box .contact_child {
    padding-bottom: 40px;
    border-bottom: 1px solid #2E2721;
  }

  .contact_flex_box .contact_child:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  .contact_txt {
    margin: 12px 0 20px 0;
  }

  .link_btn {
    font-size: 1.5rem;
    height: 40px;
    border-radius: 20px;
    padding: 10px 30px;
  }

  .link_btn p {
    padding-right: 35px;
  }

  .link_btn p::after {
    top: -4px;
  }

  .contact_coution {
    font-size: 1.2rem;
    text-align: center;
  }

  .contact_coution span {
    font-size: 1.5rem;
  }

  .scroll_margin {
    margin-top: -80px;
    padding-top: 80px;
  }

}

/*---------------------------------------------------------------------------------------------

POP UP

---------------------------------------------------------------------------------------------*/

.popup {
  background: transparent;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}

.popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 1082px;
  max-width: 1082px;
  width: 90%;
  height: 743px;
  padding: 20px;
  background-color: #FFF;
  z-index: 999;
}

.black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 998;
  cursor: pointer;
}

.popup.is-show {
    opacity: 1;
    visibility: visible;
}

.popup-close {
  position: absolute;
  top: -25px;
  right: -25px;
  width: 57px;
  height: 57px;
}

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

  .popup-inner {
    padding: 10px;
    height: 250px;
    min-width: auto;
  }

  .popup-inner iframe {
    width: 98% !important;
    height: 200px !important;
    margin: auto;
    display: block;
  }

  .popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
  }

}

/*---------------------------------------------------------------------------------------------

SLIDER（MV）

---------------------------------------------------------------------------------------------*/

/*
.top_mv_cont {
  width: 100%;
  position: relative;
}

.fade_slide .slide {
  width: 100%;
  height: 950px;
}

.fade_slide .slide.mv01 {
  background: url('/assets/img/top/slide_mv01.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.fade_slide .slide.mv02 {
  background: url('/assets/img/top/slide_mv02.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.fade_slide .slide.mv03 {
  background: url('/assets/img/top/slide_mv03.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.fade_slide .slide.mv04 {
  background: url('/assets/img/top/slide_mv04.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}
*/

.top_mv_cont {
  width: 100%;
  position: relative;
}

.top_mv_cont::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  background: url("/assets/img/top/main_mv.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.top_mv_cont .full_box_video video {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

/* for IE */
@media all and (-ms-high-contrast: none) {
  .top_mv_cont {
    overflow: hidden;
  }

  .top_mv_cont .full_box_video video {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
    min-width: 100%;
    min-height: 100%;
    height: auto;
    width: auto;
  }
}

.top_mv_cont .overlap_contents {
  position: relative;
  height: 950px;
  z-index: 0;
}

.top_mv_cont .overlap_contents .mv_sns {
  top: 28%;
}

.top_mv_cont .overlap_contents .mv_tit {
  position: absolute;
  left: 7%;
  top: 20%;
}

.top_mv_cont .overlap_contents .mv_tit h1 {
  font-size: 5vw;
  color: #756659;
  line-height: 1.8;
}

.top_mv_cont .overlap_contents .scroll_icon {
  position: absolute;
  left: 7%;
  bottom: 20%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.top_mv_cont .overlap_contents .scroll_icon p {
  position: relative;
  font-size: 1.6rem;
  color: #2E2721;
}

@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.top_mv_cont .overlap_contents .scroll_icon p::after {
  content: "";
  background: url('/assets/img/top/icon-mv_arrow.svg') no-repeat;
  position: absolute;
  bottom: -70px;
  left: 3px;
  width: 10px;
  height: 65px;
  animation: 1.5s fuwafuwa infinite;
}

@media screen and (min-width: 769px) and (max-width: 1366px) {

  /*
  .fade_slide .slide {
    height: 768px;
  }

  .fade_slide .slide.mv01,
  .fade_slide .slide.mv02,
  .fade_slide .slide.mv03,
  .fade_slide .slide.mv04{
    background-position: center left;
  }
  */

  .top_mv_cont .overlap_contents {
    height: 768px;
  }

  .top_mv_cont .overlap_contents .mv_tit {
    top: 25%;
  }

  .top_mv_cont .overlap_contents .mv_tit h1 {
    font-size: 7rem;
  }

  .top_mv_cont .overlap_contents .mv_sns {
    top: 35%;
  }

  .top_mv_cont .overlap_contents .scroll_icon {
    bottom: 15%;
  }

}

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

  /*
  .fade_slide .slide {
    width: 100%;
    height: 80vh;
  }
  */

  .top_mv_cont .overlap_contents {
    height: 80vh;
  }

  .top_mv_cont .overlap_contents .mv_tit {
    top: auto;
    bottom: 2vh;
    left: 5%;
    letter-spacing: 0.2em;
  }

  .top_mv_cont .overlap_contents .scroll_icon {
    left: auto;
    right: 5%;
    bottom: 0;
    /* bottom: 30px; */
  }

  .top_mv_cont .overlap_contents .scroll_icon p {
    font-size: 1.4rem;
  }

}

/*---------------------------------------------------------------------------------------------

TOP

---------------------------------------------------------------------------------------------*/

.top_info_cont {
  width: 100%;
  margin-bottom: 180px;
}

.top_info_inner {
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.top_info_box {
  width: 100%;
  position: relative;
  margin-bottom: 150px;
}

.top_info_box img {
  width: 580px;
  height: auto;
}

.top_info {
  position: absolute;
  width: 590px;
  height: 400px;
  background: #FFF8EF;
  padding: 40px 70px;
  z-index: 0;
}

.top_info.left {
  left: 60px;
  bottom: -60px;
}

.top_info.right {
  right: 60px;
  bottom: -60px;
}

.top_info_tit {
  font-size: 3.6rem;
  color: #756659;
  line-height: 1.5;
  margin-bottom: 20px;
}

.top_info_read {
  font-size: 1.8rem;
  color: #2E2721;
  line-height: 1.8;
  margin-bottom: 40px;
}

.info_btn_box {
  text-align: right;
}

.top_movie_box {
  max-width: 960px;
  width: 90%;
  margin: 0 auto;
}

.top_movie_box video {
  width: 100%;
}

.parallax_bg {
  width: 100%;
  height: 340px;
  background: url('/assets/img/top/bg-inside.jpg') no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.top_banner_cont {
  margin-top: 90px;
  text-align: center;
}

.top_banner_cont img {
  max-width: 100%;
}

.top_message_cont {
  width: 100%;
  height: 680px;
  background: url('/assets/img/top/bg-top_message.jpg') no-repeat;
  background-size: cover;
  background-position: center left;
  margin: 180px auto;
  /* margin: 90px auto 180px; */
}

.top_message_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.top_message {
  margin-top: 90px;
}

.top_message_txt {
  font-size: 2rem;
  line-height: 1.8;
  color: #2E2721;
  margin-bottom: 40px;
}

.message_btn_box {
  text-align: right;
}

.top_shoplist_cont {
  width: 100%;
  padding: 200px 0 200px 0;
}

.top_shoplist_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  position: relative;
}

.top_shoplist_inner h2 {
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 10rem;
  color: #756659;
  z-index: 1;
}

.top_shoplist_box {
  padding-left: 60px;
  padding-right: 60px;
}

a.top_shoplist {
  width: 31%;
  height: 533px;
  position: relative;
  opacity: 1;
  transition: .6s;
  border-radius: 16px;
}

.top_shoplist.list01 {
  display: block;
  background: url('/assets/img/top/bg-shoplist01.png') no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: .6s;
}

.top_shoplist.list02 {
  display: block;
  background: url('/assets/img/top/bg-shoplist02.png') no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 30px;
  opacity: 1;
  transition: .6s;
}

.top_shoplist.list03 {
  display: block;
  background: url('/assets/img/top/bg-shoplist03.png') no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 60px;
  opacity: 1;
  transition: .6s;
}

.top_shoplist.list04 {
  display: block;
  background: url('/assets/img/top/bg-shoplist04.png?r=2') no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transition: .6s;
}

.top_shoplist.list05 {
  display: block;
  background: url('/assets/img/top/bg-shoplist05.png') no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 30px;
  opacity: 1;
  transition: .6s;
}

.top_shoplist.list06 {
  display: block;
  background: url('/assets/img/top/bg-shoplist06.png') no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 60px;
  opacity: 1;
  transition: .6s;
}

a.top_shoplist.list01:hover,
a.top_shoplist.list02:hover,
a.top_shoplist.list03:hover,
a.top_shoplist.list04:hover,
a.top_shoplist.list05:hover,
a.top_shoplist.list06:hover {
  opacity: 0.6;
}

.top_shoplist .more_link_bg {
  width: 100%;
  height: 90px;
  border-radius: 0 0 16px 16px;
}

.top_shoplist .more_link_bg .more_link_txt {
  margin-top: 25px;
  /* padding-right: 40px; */
  font-size: 2.8rem;
}

.top_shoplist .more_link_bg::after {
  bottom: 25px;
  left: 85%;
}

.top_shoplist_btn_box {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}

.top_shoplist_btn_box .link_btn {
  height: 100px;
  border-radius: 50px;
  padding: 35px 100px;
  font-size: 2.3rem;
  background: #756659;
  color: #FFF;
  transition: .6s;
}

.top_shoplist_btn_box a.link_btn:hover {
  background: #E37F60;
}

.top_shoplist_btn_box .link_btn p {
  padding-right: 40px;
}

.top_shoplist_btn_box .link_btn p::after {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #FFF;
  background: url('/assets/img/common/icon_arrow_btn_w.svg') no-repeat;
  background-size: 24px;
  background-position: center;
  top: -10px;
  right: -60px;
}

.news_cont {
  width: 100%;
  background: #FFF8EF;
  padding-bottom: 100px;
}

.news_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.news,
.media {
  width: 534px;
  position: relative;
}

.news h2,
.media h2 {
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 10rem;
  color: #756659;
}

.news_wrap {
  padding-top: 100px;
}

.news_head p:first-of-type {
  font-size: 1.6rem;
  color: #2E2721;
}

.news_head p:last-of-type {
  background: #FFF;
  padding: 5px 10px;
  border-radius: 30px;
  color: #2E2721;
  margin-left: 15px;
}

.news_topics {
  width: 100%;
  min-height: 140px;
  border-top: 1px solid #AFAFAF;
  padding: 0px 20px;
}

.news_topics.last {
  border-bottom: 1px solid #AFAFAF;
}

.news_topics a {
  font-size: 1.8rem;
  color: #2E2721;
  transition: color .6s;
}

.news_topics a:hover {
  color: #E37F60;
}

.news_head {
  margin-bottom: 15px;
}

.media_head p {
  font-size: 1.8rem;
  line-height: 1.5;
  color: #2E2721;
}

.insta_cont {
  width: 100%;
  padding-top: 150px;
}

.insta_inner {
  max-width: 1920px;
  width: 100%;
  margin: auto;
}

.insta_tit_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  position: relative;
}

.insta_inner h2 {
  position: absolute;
  top: -45px;
  left: 0;
  font-size: 7rem;
  color: #756659;
  z-index: 1;
}

.insta_wrap {
  width: 100%;
}

.insta_box {
  width: 49.68%;
}

.insta_box:last-of-type .insta_columns {
  margin-bottom: 1.3%;
}

.news_btn_box {
  width: 100%;
  text-align: right;
  margin-top: 30px;
}

.news_banner_box {
  max-width: 880px;
  width: 100%;
  margin: 50px auto 0 auto;
}

.news_banner_box a {
  width: 49%;
  opacity: 1;
  transition: .6s;
  margin-bottom: 20px;
}

.news_banner_box a:hover {
  opacity: 0.6;
}

#item02,
#item08 {
  margin-bottom: 4%;
}

.insta_columns {
  margin-bottom: 1.3%;
}

.w33 {
  width: 32.5%;
}

.w66 {
  width: 66.2%;
}

.insta_block {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

#item02.scroll_u.delighter {
  transition-delay: .1s;
}

#item03.scroll_u.delighter {
  transition-delay: .2s;
}

#item04.scroll_u.delighter {
  transition-delay: .3s;
}

#item05.scroll_u.delighter {
  transition-delay: .4s;
}

#item06.scroll_u.delighter {
  transition-delay: .5s;
}

#item07.scroll_u.delighter {
  transition-delay: .6s;
}

#item08.scroll_u.delighter {
  transition-delay: .7s;
}

#item09.scroll_u.delighter {
  transition-delay: .8s;
}

#item10.scroll_u.delighter {
  transition-delay: .9s;
}

#item11.scroll_u.delighter {
  transition-delay: 1s;
}

#item12.scroll_u.delighter {
  transition-delay: 1.1s;
}

.insta_block a {
  position: absolute;
  top: 0;
  left: 0;
}

#item01 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item02 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item03 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item04 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item05 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item06 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item07 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item08 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item09 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item10 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item11 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#item12 a {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.insta_btn_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  text-align: right;
  margin-top: 20px;
}

.top_link_cont {
  width: 100%;
    padding: 100px 0 150px 0;
}

.top_link_inner {
  max-width: 1200px;
    width: 90%;
    margin: auto;
}

.top_link_box01 {
  margin-bottom: 1.3%;
}

.top_link_box01 .top_link {
  width: 598px;
  height: 320px;
}

.top_link_box02 .top_link {
  width: 1200px;
  height: 270px;
}

.top_link {
  color: #FFF;
  padding: 40px;
}

.top_link.company {
  background: url('/assets/img/top/bg-top_company.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.top_link.recruit {
  background: url('/assets/img/top/bg-top_recruit.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.top_link.safety {
  background: url('/assets/img/top/bg-top_safety.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.top_link_tit {
  font-size: 7.2rem;
  margin-bottom: 20px;
}

.top_link_box02 .top_link_tit {
  font-size: 4.5rem;
}

.top_link_txt {
  font-size: 1.8rem;
  margin-bottom: 45px;
}

.top_link span {
  position: relative;
  text-align: right;
  font-size: 1.6rem;
  padding-right: 40px;
  display: block;
}

.top_link span::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background: url('/assets/img/common/icon_arrow_btn_w.svg') no-repeat;
  background-size: 17px;
  background-position: center;
  border: 1px solid #FFF;
  border-radius: 15px;
  display: block;
  top: -5px;
  right: 5px;
}

.top_link_cont a {
  display: block;
  opacity: 1;
  transition: .3s;
}

.top_link_cont a:hover {
  opacity: 0.6;
}

.bg-brown {
  background: #5F5146;
}

.info_left,
.info_right {
  z-index: 1;
}

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

  .top_mv_cont .mv_sns {
    top: 30%;
  }

  .mv_tit {
    bottom: 0;
    top: auto;
  }

  .mv_tit h1 {
    font-size: 2.8rem;
  }

  .scroll_icon {
    bottom: 0;
  }

  .scroll_icon p {
    font-size: 1.4rem;
  }

  a.top_shoplist {
    width: calc(50% - 8px);
    height: 250px;
    margin-top: 0;
  }

  .top_banner_cont {
    margin-top: 30px;
  }

  .top_message_cont {
    height: auto;
    background: none;
    margin: 70px auto 100px auto;
    /* margin: 30px auto 100px auto; */
  }

  .top_message {
    margin-top: 30px;
  }

  .top_message_txt {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .top_info_cont {
    /* margin-bottom: 100px; */
    margin-bottom: 0;
  }

  .top_info_box {
    margin-bottom: 60px;
  }

  .top_info_tit {
    font-size: 2.5rem;
  }

  .top_info_read {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .top_info {
    position: static;
    width: 100%;
    height: auto;
    padding: 20px;
    background: none;
  }

  .parallax_bg {
    height: 150px;
    background: url('/assets/img/top/bg-inside_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }

  .bg_info_sp01 {
    position: absolute;
    width: 90%;
    height: 200px;
    background: #FFF8EF;
    top: -30px;
    left: 0;
    z-index: -1;
  }

  .bg_info_sp02 {
    position: absolute;
    width: 90%;
    height: 200px;
    background: #FFF8EF;
    top: -20px;
    right: 0;
    z-index: -1;
  }

  .top_info_box img {
    width: 90%;
    height: auto;
  }

  .info_left {
    text-align: left;
  }

  .info_right {
    text-align: right;
  }

  .top_movie_box {
    max-width: 100%;
    width: 100%;
  }

  .top_shoplist_cont {
    padding: 120px 0;
  }

  .top_shoplist_inner h2 {
    font-size: 6rem;
    top: -45px;
  }

  .top_shoplist_box {
    padding-left: 0;
    padding-right: 0;
  }

  .top_shoplist {
    width: 49%;
    height: 250px;
    margin-bottom: 10px;
  }

  .top_shoplist.list01,
  .top_shoplist.list02 {
    margin-top: 0;
  }

  .top_shoplist.list03,
  .top_shoplist.list04,
  .top_shoplist.list05,
  .top_shoplist.list06 {
    margin-top: 8px;
  }

  .top_shoplist .more_link_bg {
    height: 60px;
  }

  .top_shoplist .more_link_bg .more_link_txt {
    font-size: 1.6rem;
    margin-top: 10px;
    /* padding-right: 20px; */
  }

  .top_shoplist .more_link_bg::after {
    bottom: 17px;
    left: 76%;
  }

  .top_shoplist_btn_box {
    margin-top: 30px;
  }

  .top_shoplist_btn_box .link_btn {
    width: 100%;
    height: 70px;
    padding: 24px;
    border-radius: 35px;
    font-size: 1.8rem;
  }

  .top_shoplist_btn_box .link_btn p::after {
    width: 42px;
    height: 42px;
    border-radius: 21px;
    right: 0;
  }

  .news,
  .media {
    width: 100%;
  }

  .media {
    margin-top: 100px;
  }

  .news h2,
  .media h2 {
    top: -40px;
    font-size: 6rem;
  }

  .news_cont {
    padding-bottom: 80px;
  }

  .news_wrap {
    padding-top: 60px;
  }

  .insta_cont {
    padding-top: 120px;
  }

  .insta_inner h2 {
    font-size: 6rem;
  }

  .insta_box {
    width: 90%;
    margin: auto;
  }

  .top_link_box01 .top_link {
    width: 100%;
    height: 160px;
  }

  .top_link_box02 .top_link {
    width: 100%;
  }

  .top_link {
    padding: 20px;
  }

  .top_link.company {
    background: url('/assets/img/top/bg-top_company_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    height: 160px;
  }

  .top_link.recruit {
    background: url('/assets/img/top/bg-top_recruit_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    height: 180px;
  }

  .top_link.safety {
    background: url('/assets/img/top/bg-top_safety_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    height: 175px;
  }

  .top_link_tit {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }

  .top_link_box02 .top_link_tit {
    font-size: 2.1rem;
  }

  .top_link_txt {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .top_link span {
    font-size: 1.4rem;
    padding-right: 30px;
  }

  .top_link span::after {
    width: 22px;
    height: 22px;
    border-radius: 11px;
    background-size: 13px;
    top: -2px;
  }

  .top_link_cont a {
    margin-bottom: 10px;
  }

  .news_banner_box a {
    width: 100%;
    margin-bottom: 15px;
    display: block;
  }

}

/*---------------------------------------------------------------------------------------------

SHOPLIST

---------------------------------------------------------------------------------------------*/

.shoplist_tit {
  max-width: 950px;
  width: 90%;
  margin: 130px auto;
  color: #2E2721;
}

.shoplist_tit p {
  font-size: 2.2rem;
  line-height: 1.8;
  display: inline-block;
}

.shoplist_tit span {
  display: block;
  margin-top: 20px;
  font-size: 1.6rem;
  color: #2E2721;
}

.mv_cont.mv_shoplist {
  background: url('/assets/img/shoplist/mv_shoplist.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.tag_box {
  margin: 60px auto;
}

.tab-buttons.shoplist>p {
  width: 25%;
}

.tab-buttons.shoplist p:nth-of-type(4) {
  border-right: none;
}

.tab-buttons.shoplist p.active:nth-of-type(4) {
  border-right: 1px solid #756659;
}

.tab-buttons.shoplist p:last-of-type {
  border-left: 1px solid #756659;
    border-right: none;
}

.tag_box .tag {
  width: 192px;
    height: 40px;
    color: #756659;
    text-align: center;
    font-size: 1.4rem;
    padding-left: 10px;
    margin: 0 15px;
    position: relative;
}

.tag_box .tag p {
  display: inline-block;
  margin-left: 15px;
}

.tag_box .tag:nth-of-type(2) p {
  margin-left: 35px;
}

.tag_box .tag.tag01::before {
  position: absolute;
  content: "";
  background: url('/assets/img/shop/common/icon-tag01.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 12px;
  height: 20px;
  top: 0;
  left: 20px;
}

.tag_box .tag.tag02::before {
  position: absolute;
  content: "";
  background: url('/assets/img/shop/common/icon-tag02.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 15px;
  top: 0;
  left: 20px;
}

.tag_box .tag.tag03::before {
  position: absolute;
  content: "";
  background: url('/assets/img/shop/common/icon-tag03.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 14px;
  height: 20px;
  top: 0;
  left: 20px;
}

.tag_box .tag.tag04::before {
  position: absolute;
  content: "";
  background: url('/assets/img/shop/common/icon-tag04.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 20px;
  height: 20px;
  top: 0;
  left: 20px;
}

.shop_link_box {
  width: 48%;
  margin-bottom: 50px;
  color: #2E2721;
}

.shop_link_box:nth-of-type(odd) {
  margin-right: 4%;
}

.shop_link_box a {
  opacity: 1;
  transition: .6s;
}

.shop_link_box a:hover {
  opacity: 0.6;
}

.shop_link_info {
  width: 95%;
  margin: auto;
}

.shop_link_name {
  font-size: 2.2rem;
  margin-top: 30px;
}

.shop_link_name span {
  color: #f00;
  font-size: 1.6rem;
  margin-left: 20px;
}

.shop_link_access {
  font-size: 1.8rem;
  margin-top: 15px;
}

.shop_icon_box {
  margin-top: 20px;
}

.shop_icon {
  display: block;
    width: 40px;
    height: 40px;
    border: 1px solid #756659;
    border-radius: 20px;
    background: #FFF;
    position: relative;
    margin-right: 5px;
}

.shop_icon::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.shop_icon.type01::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 20px;
  background: url('/assets/img/shop/common/icon-tag01.svg') no-repeat;
  background-size: 100%;
  background-position: center;
}

.shop_icon.type02::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 15px;
  background: url('/assets/img/shop/common/icon-tag02.svg') no-repeat;
  background-size: 100%;
  background-position: center;
}

.shop_icon.type03::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 20px;
  background: url('/assets/img/shop/common/icon-tag03.svg') no-repeat;
  background-size: 100%;
  background-position: center;
}

.shop_icon.type04::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url('/assets/img/shop/common/icon-tag04.svg') no-repeat;
  background-size: 100%;
  background-position: center;
}


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

  .shoplist_tit {
    margin: 100px auto 70px auto;
  }

  .shoplist_tit p {
    font-size: 1.6rem;
  }

  .mv_cont.mv_shoplist {
    background: url('/assets/img/shoplist/mv_shoplist_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }

  .tag_box {
    margin: 30px auto;
  }

  .tag_box .tag {
    width: 48%;
    height: 35px;
    margin: 2% 1%;
    font-size: 1.2rem;
  }

  .tag_box .tag.tag01::before {
    width: 9px;
    height: 16px;
    left: 15px;
  }

  .tag_box .tag.tag02::before {
    width: 16px;
    height: 12px;
    left: 15px;
  }

  .tag_box .tag.tag03::before {
    width: 12px;
    height: 16px;
    left: 15px;
  }

  .tag_box .tag.tag04::before {
    width: 16px;
    height: 16px;
    left: 15px;
  }

  .tag_box .tag:nth-of-type(2) p {
    margin-left: 15px;
  }

  .tab-buttons.shoplist>p {
    padding-top: 25px;
  }

  .shop_link_box {
    width: 100%;
    margin: 0 auto 30px auto;
  }

  .shop_link_box:nth-of-type(odd) {
    margin-right: auto;
  }

  .shop_link_info {
    width: 100%;
  }

  .shop_link_name {
    font-size: 2rem;
    margin-top: 20px;
    font-weight: 500;
  }

  .shop_link_name span {
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }

  .shop_link_access {
    font-size: 1.6rem;
    margin-top: 9px;
  }

  .shop_icon_box {
    margin-top: 10px;
  }

  .shop_icon {
    width: 28px;
    height: 28px;
    border-radius: 14px;
  }

  .shop_icon.type01::after {
    width: 9px;
    height: 16px;
  }

  .shop_icon.type02::after {
    width: 16px;
    height: 12px;
  }

  .shop_icon.type03::after {
    width: 12px;
    height: 16px;
  }

  .shop_icon.type04::after {
    width: 16px;
    height: 16px;
  }

}

/*---------------------------------------------------------------------------------------------

SHOP（個別ページ）

---------------------------------------------------------------------------------------------*/

.mv_cont h1.shop_name {
  font-size: 5vw;
  font-weight: 300;
  line-height: 1.5;
}

.mv_cont h1.shop_name.meowsmugs {
  font-size: 4vw;
}

.shop_info_cont {
  width: 100%;
  padding-bottom: 110px;
}

.shop_info_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.shop_info_inner h2 {
  font-size: 4.8rem;
  color: #756659;
  margin-bottom: 60px;
}

.shop_info_map {
  width: 446px;
  margin-right: 30px;
}

.shop_info_map .shop_banners .shop_banner {
  margin-top: 30px;
}

.company_info_list.shop div.company_info_child:first-child {
  margin-left: 0;
  width: 170px;
  min-width: 170px;
}

.shop_tag_list {
  width: 100%;
  margin-bottom: 30px;
}

.shop_tag {
  display: block;
    width: 192px;
    min-height: 40px;
    border: 1px solid #756659;
    background: #FFF;
    border-radius: 100vh;
    font-size: 1.4rem;
    color: #756659;
    padding: 10px 10px 10px 30px;
    text-align: center;
    position: relative;
    margin-right: 10px;
    margin-bottom: 10px;
}

.shop_tag.tag01::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 20px;
  background: url('/assets/img/shop/common/icon-tag01.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.shop_tag.tag02::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 14px;
  background: url('/assets/img/shop/common/icon-tag02.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.shop_tag.tag03::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 20px;
  background: url('/assets/img/shop/common/icon-tag03.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.shop_tag.tag04::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: url('/assets/img/shop/common/icon-tag04.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.shop_info_banner {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}

.shop_info_banner img {
  max-width: 500px;
  width: 100%;
  height: auto;
}

.shop_info_btn {
  width: 100%;
  margin-top: 30px;
  text-align: right;
}

.cat_list_cont {
  width: 100%;
}

.cat_list_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.cat_list_inner h2 {
  font-size: 4.8rem;
  color: #756659;
  margin-bottom: 60px;
}

.cat_list_box {
  width: 100%;
  margin-bottom: 50px;
}

.cat_box {
  width: calc(25% - 12px);
  margin: 8px;
  background: #FFF;
  color: #2E2721;
  text-align: center;
}

.cat_list_box .cat_box:nth-of-type(1) {
  margin-left: 0;
}

.cat_list_box .cat_box:nth-of-type(4) {
  margin-right: 0;
}

.cat_name {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 25px auto 15px auto;
}

.cat_data {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.cat_sns a {
  width: 50px;
  height: 50px;
}

.shop_charge_cont {
  width: 100%;
  background: #FFF8EF;
  padding-bottom: 100px;
  margin-bottom: 100px;
}

.shop_charge_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  position: relative;
  padding-top: 80px;
}

.shop_charge_inner h2 {
  font-size: 4.8rem;
  color: #756659;
  position: absolute;
  top: -25px;
  left: 0;
}

.shop_charge {
  width: 80%;
  margin: 0 auto;
}

.shop_day {
  width: 20%;
  height: 70px;
  border-right: 1px solid #756659;
  background: #FFF;
}

.shop_day.first {
  background: transparent;
}

.shop_day p {
  font-size: 2rem;
  color: #2E2721;
  text-align: center;
}

.shop_time01 {
  width: 40%;
  height: 70px;
  text-align: center;
  border-right: 1px solid #756659;
  background: #FFF;
}

.shop_time01.first {
  background: #756659;
  color: #FFF;
  border-right: 1px solid;
}

.shop_time02 {
  width: 40%;
  height: 70px;
  text-align: center;
  background: #FFF;
}

.shop_time02.first {
  background: #756659;
  color: #FFF;
}

.is_new_price_plan .shop_day {
  width: 19%;
}

.is_new_price_plan .shop_time01,
.is_new_price_plan .shop_time02 {
  width: 27%;
}

.shop_time03 {
  width: 27%;
  height: 70px;
  text-align: center;
  border-right: 1px solid #756659;
  background: #FFF;
}

.shop_time03.first {
  background: #756659;
  color: #FFF;
  border-right: 1px solid;
}

.shop_time01 p,
.shop_time02 p,
.shop_time03 p {
  font-size: 3rem;
  color: red;
}

.shop_time01 p span,
.shop_time02 p span,
.shop_time03 p span {
  font-size: 2rem;
  color: #2E2721;
}

.shop_time01.first p,
.shop_time02.first p,
.shop_time03.first p {
  color: #FFF;
  font-size: 2rem;
}

.shop_time02.first p span {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 5px;
  color: #FFF
}

.shop_line {
  border: 1px solid #756659;
}

.shop_line.last {
  border-top: none;
}

.shop_under {
  width: 100%;
  height: 70px;
  background: #FFF;
  line-height: 1.4;
}

.shop_under p {
  font-size: 2rem;
  color: #2E2721;
}

.shop_under p span {
  font-size: 3rem;
  color: red;
}

.charge_box {
  width: 100%;
    box-shadow: 0px 2px 9px 1px rgb(0 0 0 / 6%);
}

.charge_box.second {
  margin-top: 10px;
}

.shop_charge_box ul {
  margin-top: 90px;
  font-size: 1.5rem;
  color: #2E2721;
}

.shop_charge_box ul li {
  margin-bottom: 10px;
}

.charge_head {
  background: #897C71;
    color: #FFF;
    text-align: center;
    padding: 40px;
}

.charge_head.large {
  padding: 25px 40px;
}

.charge_head p {
  font-size: 2.5rem;
}

.charge_head span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 10px;
}

.charge_read {
  background: #FFF;
    text-align: center;
    color: #756659;
    padding: 40px;
}

.charge_read p {
  font-size: 4rem;
  font-weight: bold;
}

.charge_read p small {
  font-size: 1.6rem;
}

.charge_read span {
  font-size: 1.8rem;
}

.shop_coution_cont {
  width: 100%;
  margin-bottom: 120px;
}

.shop_coution_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.shop_coution_inner h2 {
  font-size: 4.8rem;
  color: #756659;
  margin-bottom: 60px;
}

.shop_coution {
  width: 32%;
  text-align: center;
}

.shop_coution_box .shop_coution:first-of-type img {
  max-width: 200px;
  height: auto;
}

.shop_coution_box .shop_coution:nth-of-type(2) img {
  max-width: 120px;
  height: auto;
}

.shop_coution_box .shop_coution:last-of-type img {
  max-width: 140px;
  height: auto;
}

.shop_coution p {
  font-size: 1.8rem;
  color: #2E2721;
  line-height: 1.8;
  margin-top: 20px;
}

.shop_coution_img {
  width: 100%;
  height: 110px;
}

.shop_enjoy_cont {
  width: 100%;
  margin-bottom: 100px;
}

.shop_enjoy_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
}

.shop_enjoy_inner h2 {
  font-size: 4.8rem;
  color: #756659;
  margin-bottom: 60px;
}

.shop_enjoy_box01 .shop_enjoy {
  width: calc(33.333% - 14px);
  margin: 10px 10px 30px 10px;
}

.shop_enjoy_box01 .shop_enjoy:nth-child(3n+1) {
  margin-left: 0;
}

.shop_enjoy_box01 .shop_enjoy:nth-child(3n+3) {
  margin-right: 0;
}

.shop_enjoy_box02 .shop_enjoy_wrap {
  width: 49%;
}

.shop_enjoy {
  position: relative;
}

.shop_enjoy_txt {
  position: absolute;
  bottom: 0;
  left: 0;
}

.shop_enjoy_box01 .shop_enjoy .shop_enjoy_txt {
  width: 100%;
  height: 100px;
  padding: 40px;
  color: #FFF;
  text-align: center;
  background: rgba(117,102,89,0.7);
}

.shop_enjoy_box02 .shop_enjoy_wrap .shop_enjoy .shop_enjoy_txt {
  width: 100%;
  height: 160px;
  padding: 25px;
  color: #FFF;
  text-align: center;
  background: rgba(117,102,89,0.7);
}

.shop_enjoy_txt p {
  font-size: 2rem;
}

.shop_enjoy_read {
  font-size: 1.8rem;
    padding: 0 15px;
    margin-top: 20px;
    line-height: 1.8;
    color: #2E2721;
}

.shop_enjoy_tag {
  margin-top: 25px;
}

.shop_enjoy_tag span {
  min-width: 133px;
  height: 44px;
  display: block;
  background: #FFF8EF;
  border-radius: 12px;
  color: #756659;
  font-size: 1.8rem;
  padding: 10px 25px 10px 55px;
  margin: 0 10px;
  position: relative;
}

.shop_enjoy_tag span.day::before {
  position: absolute;
  content: "";
  background: url('/assets/img/shop/common/icon-shop_enjoy01.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 28px;
  height: 28px;
  top: 7px;
  left: 20px;
}

.shop_enjoy_tag span.night::before {
  position: absolute;
  content: "";
  background: url('/assets/img/shop/common/icon-shop_enjoy02.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 28px;
  height: 28px;
  top: 7px;
  left: 20px;
}

.shop_enjoy_tag span.sweet::before {
  position: absolute;
  content: "";
  background: url('/assets/img/shop/common/icon-shop_enjoy03.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 31px;
  height: 17px;
  top: 12px;
  left: 20px;
}

.shop_view_cont {
  width: 100%;
  background: #FFF8EF;
  padding-bottom: 80px;
  margin-bottom: 100px;
}

.shop_view_inner {
  max-width: 1200px;
  width: 100%;
  position: relative;
  margin: auto;
}

.shop_view_inner h2 {
  font-size: 4.8rem;
  color: #756659;
  position: absolute;
  left: 0;
  top: -25px;
}

.shop_slider_box {
  width: 100%;
  padding-top: 80px;
}

.shop_movies {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 60px auto 0 auto;
}

.shop_movies.multiple_movies {
  justify-content: space-between;
  row-gap: 30px;
}

.shop_mov_box {
  width: 592px;
}

.shop_mov_box.big_mov {
  width: 720px;
}

.shop_movies.multiple_movies .shop_mov_box {
  width: 49%;
}

.shop_mov_box a {
  display: block;
  opacity: 1;
  transition: .3s;
}

.shop_mov_box a:hover {
  opacity: 0.6;
}

.shop_mov_box .movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.shop_mov_box .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

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

  .mv_cont h1.shop_name {
    font-size: 4rem;
  }

  .mv_cont h1.shop_name.meowsmugs {
    font-size: 3rem;
  }

  .shop_info_map {
    width: 100%;
  }

  .shop_info_map iframe {
    width: 100% !important;
    height: 200px !important;
  }

  .cat_link_sp {
    width: 95%;
    margin: 40px auto;
  }

  .cat_link_sp .link_btn {
    font-size: 1.8rem;
    width: 100%;
    height: 70px;
    border-radius: 35px;
    padding: 23px 25px;
    text-align: center;
    font-weight: bold;
  }

  .cat_link_sp .link_btn p::after {
    width: 42px;
    height: 42px;
    border-radius: 21px;
    transform: rotate(90deg);
    top: -10px;
  }

  .howto_tit.shop {
    margin: 0 auto 60px auto;
  }

  .shop_info_inner h2 {
    font-size: 2.8rem;
  }

  .shop_tag_list {
    margin: 10px auto 20px auto;
  }

  .shop_tag_list li {
    width: 48%;
    margin: 0 1%;
  }

  .shop_tag {
    font-size: 1.2rem;
    padding: 12px 20px;
    width: 100%;
    border-radius: 10px;
    background: #FFF;
  }

  .shop_tag.tag01::before {
    width: 9px;
    height: 15px;
    top: 12px;
    left: 15px;
  }

  .shop_tag.tag02::before {
    width: 17px;
    height: 12px;
    top: 10px;
    left: 15px;
  }

  .shop_tag.tag03::before {
    width: 11px;
    height: 17px;
    top: 11px;
    left: 15px;
  }

  .shop_tag.tag04::before {
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
  }

  .cat_list_inner h2 {
    font-size: 2.8rem;
  }

  .cat_list_box {
    margin-bottom: 0;
  }

  .cat_box {
    width: calc(50% - 10px);
    margin: 0 10px 25px 10px;
  }

  .cat_list_box .cat_box:nth-of-type(odd) {
    margin-left: 0 !important;
  }

  .cat_list_box .cat_box:nth-of-type(even) {
    margin-right: 0 !important;
  }

  .cat_name {
    font-size: 1.8rem;
  }

  .cat_data {
    font-size: 1.6rem;
  }

  .shop_charge_cont {
    padding-bottom: 60px;
    margin-bottom: 60px;
  }

  .shop_charge_inner {
    padding-top: 60px;
  }

  .shop_charge_inner h2 {
    font-size: 2.8rem;
    top: -20px;
  }

  .charge_head,
  .charge_read {
    padding: 25px;
  }

  .charge_head p {
    font-size: 2rem;
  }

  .charge_read p {
    font-size: 2.6rem;
  }

  .charge_read span {
    font-size: 1.6rem;
  }

  .shop_charge_left {
    margin-bottom: 20px;
  }

  .shop_charge_box ul {
    margin-top: 20px;
  }

  .shop_coution_inner h2 {
    font-size: 2.8rem;
  }

  .shop_coution {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .shop_coution p {
    font-size: 1.6rem;
    margin-top: 20px;
  }

  .shop_enjoy_inner h2 {
    font-size: 2.8rem;
  }

  .shop_enjoy_box01 .shop_enjoy {
    width: calc(50% - 10px);
    margin: 10px;
  }

  .shop_enjoy_box01 .shop_enjoy:nth-child(3n+1),
  .shop_enjoy_box01 .shop_enjoy:nth-child(3n+3) {
    margin: 10px;
  }

  .shop_enjoy_box01 .shop_enjoy:nth-of-type(odd) {
    margin-left: 0;
  }

  .shop_enjoy_box01 .shop_enjoy:nth-of-type(even) {
    margin-right: 0;
  }

  .shop_enjoy_box02 .shop_enjoy_wrap {
    width: 100%;
    margin-bottom: 20px;
  }

  .shop_enjoy_box01 .shop_enjoy .shop_enjoy_txt {
    height: 50px;
    padding: 15px;
  }

  .shop_enjoy_txt p {
    font-size: 1.4rem;
  }

  .shop_enjoy_box02 .shop_enjoy_wrap .shop_enjoy .shop_enjoy_txt {
    height: 70px;
    padding: 15px;
  }

  .shop_enjoy_tag {
    margin-top: 6px;
  }

  .shop_enjoy_tag span {
    font-size: 1.4rem;
    min-width: 80px;
    height: 24px;
    line-height: 24px;
    padding: 0 10px 0 30px;
  }

  .shop_enjoy_tag span.day::before,
  .shop_enjoy_tag span.night::before {
    width: 14px;
    height: 14px;
    left: 12px;
    top: 5px;
  }

  .shop_enjoy_tag span.sweet::before {
    width: 14px;
    height: 14px;
    left: 12px;
    top: 5px;
  }

  .shop_enjoy_read {
    font-size: 1.6rem;
    padding: 0;
    margin-top: 10px;
  }

  .shop_view_inner h2 {
    font-size: 2.8rem;
    top: -20px;
    margin-left: 5%;
  }

  .shop_view_cont {
    margin-bottom: 60px;
    padding-bottom: 60px;
  }

  .shop_charge {
    width: 100%;
    margin-bottom: 40px;
  }

  .shop_day {
    width: 30%;
  }

  .shop_time01.first {
    border-right: none;
  }

  .shop_time01,
  .shop_time02 {
    width: 70%;
    border-right: none;
  }

  .shop_time01.first p, .shop_time02.first p {
    font-size: 1.8rem;
  }

  .shop_day p {
    font-size: 1.8rem;
  }

  .shop_under {
    height: auto;
    border: 1px solid #756659;
    padding: 15px 10px;
    text-align: center;
  }

  .shop_under p {
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
  }

  .shop_movies {
    display: block;
  }

  .shop_mov_box {
    width: 100%;
    max-width: 100%;
  }

  .shop_movies.multiple_movies .shop_mov_box {
    width: 100%;
  }

  .shop_mov_box + .shop_mov_box {
    margin-top: 30px;
  }
}

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

  .mv_cont h1.shop_name {
    font-size: 3.2rem;
  }

}

/*---------------------------------------------------------------------------------------------

SLIDER（個別ページ）

---------------------------------------------------------------------------------------------*/

.swiper-wrapper {
  width: 100%;
  height: 600px;
}

.swiper-pagination {
  position: static;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  background: #685C50;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #F6A758;
  opacity: 1;
}

.swiper-button-next {
  right: 0;
  left: auto;
  width: 35px;
  height: 70px;
  background: #FFF;
  border-radius: 35px 0 0 35px;
}

.swiper-button-prev {
  left: 0;
  right: auto;
  width: 35px;
  height: 70px;
  background: #FFF;
  border-radius: 0 35px 35px 0;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: "";
  background: url('/assets/img/common/icon_arrow_btn.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 17px;
  height: 4px;
}

.swiper-button-prev:after {
  transform: rotate(180deg);
}

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

  .shop_slider_box {
    width: 95%;
    margin-left: 5%;
  }

  .swiper-wrapper {
    height: 300px;
}

  .swiper-slide {
    width: 50%;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

}

/*---------------------------------------------------------------------------------------------

CONCEPT

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_concept {
  background: url('/assets/img/concept/mv_concept.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.concept_box {
  width: 100%;
  min-width: 1400px;
  margin-top: 200px;
}

.concept_position_area {
  position: relative;
  width: 100%;
}

#concept_block02.concept_position_area {
  margin-top: 100px;
}

#concept_block03.concept_position_area {
  padding-top: 20%;
}

#concept_block04.concept_position_area {
  margin-bottom: 200px;
}

#concept_block01 .concept_img01 {
  width: 50%;
  height: auto;
  margin-right: 50px;
}

#concept_block02 .concept_img01 {
  width: 55%;
  height: auto;
}

#concept_block02 .concept_img02 {
  position: absolute;
  width: 30%;
  height: auto;
  bottom: -70%;
  left: 50%;
}

#concept_block03 .concept_img01 {
  width: 55%;
  height: auto;
  margin-left: 100px;
}

#concept_block04 .concept_img01 {
  width: 30%;
  height: auto;
  margin-right: 150px;
}

#concept_block01 .concept_bg {
  position: absolute;
  width: 537px;
  height: 386px;
  background: #FFF8EF;
  z-index: -1;
  right: 50%;
  bottom: -5%;
}

#concept_block02 .concept_bg {
  position: absolute;
  width: 845px;
  height: 737px;
  background: #FFF8EF;
  z-index: -1;
  left: 30%;
  top: 40%;
}

#concept_block03 .concept_bg {
  position: absolute;
  width: 387px;
  height: 357px;
  background: #FFF8EF;
  z-index: -1;
  left: 55%;
  bottom: 15%;
}

#concept_block04 .concept_bg {
  position: absolute;
  width: 736px;
  height: 353px;
  background: #FFF8EF;
  z-index: -1;
  right: 35%;
  bottom: -5%;
}

#concept_block01 h2 {
  position: absolute;
  font-size: 6.8rem;
  line-height: 1.8;
  color: #756659;
  top: -10%;
  right: 55%;
}

#concept_block01 h2.en {
  font-size: 4rem;
  top: 4%;
  right: 54%;
}

#concept_block01 h2.zh {
  right: 64%;
}

#concept_block01 h2.ko {
  font-size: 4.6rem;
  top: 4%;
  right: 57%;
}

.concept_txt {
  position: absolute;
  font-size: 2.5rem;
  line-height: 1.8;
  color: #2E2721;
}

#concept_block01 .concept_txt {
  top: 55%;
  right: 60%;
}

#concept_block01 .concept_txt.en {
  font-size: 2.3rem;
  right: 58%;
}

#concept_block01 .concept_txt.zh {
  right: 59%;
}

#concept_block01 .concept_txt.ko {
  right: 59%;
}

#concept_block02 .concept_txt:first-of-type {
  top: 45%;
  left: 60%;
}

#concept_block02 .concept_txt.en:first-of-type {
  font-size: 2.3rem;
  left: 58%;
}

#concept_block02 .concept_txt:last-of-type {
  bottom: -35%;
  left: 10%;
}

#concept_block02 .concept_txt.en:last-of-type {
  bottom: -40%;
  left: 10%;
}

#concept_block03 .concept_txt {
  bottom: 25%;
  left: 65%;
}

#concept_block03 .concept_txt.ko {
  font-size: 2.3rem;
}

#concept_block04 .concept_txt {
  bottom: 45%;
  right: 60%;
}

#concept_block04 .concept_btn {
  position: absolute;
  bottom: 10%;
  right: 40%;
}

.concept_more_box {
  width: 100%;
  background: #FFF8EF;
  padding-bottom: 150px;
}

.concept_more_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  position: relative;
}

.concept_more_inner h2 {
  font-size: 4.8rem;
  color: #756659;
  position: absolute;
  top: -25px;
  left: 0;
}

.more_link_box {
  padding-top: 100px;
}

.more_link_box .more_link01 {
  width: 390px;
  height: 600px;
  border-radius: 15px;
  background: url('/assets/img/concept/bg-concept_more01.png') no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 1;
  transition: .6s;
}

.more_link_box .more_link02 {
  width: 390px;
  height: 600px;
  border-radius: 15px;
  background: url('/assets/img/concept/bg-concept_more02.png') no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 30px;
  opacity: 1;
  transition: .6s;
}

.more_link_box .more_link03 {
  width: 390px;
  height: 600px;
  border-radius: 15px;
  background: url('/assets/img/concept/bg-concept_more03.png') no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  opacity: 1;
  transition: .6s;
}

.more_link_box a:hover {
  opacity: 0.6 !important;
}

.more_link_bg {
  width: 390px;
  background: rgba(117,102,89,0.7);
  border-radius: 0 0 15px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.more_link_bg::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 40px;
  background: url('/assets/img/common/icon_arrow_btn_w.svg') no-repeat;
  background-size: 24px;
  background-position: center;
  border: 1px solid #FFF;
  border-radius: 20px;
  display: block;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.more_link_txt {
  font-size: 2.8rem;
  color: #FFF;
  text-align: center;
  margin: 30px 0 70px;
}

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

  .mv_cont.mv_concept {
    background: url('/assets/img/concept/mv_concept_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }

  .concept_box {
    margin-top: 80px;
    min-width: auto;
    overflow: hidden;
  }

  #concept_block01 .concept_bg {
    width: 55%;
    height: 200px;
    left: 0;
    top: 35%;
  }

  #concept_block01 h2 {
    position: static;
    font-size: 2.8rem;
    margin-bottom: 70px;
    margin-left: 5%;
  }

  #concept_block01 h2.en {
    font-size: 2.4rem;
  }

  #concept_block01 h2.ko {
    font-size: 3em;
  }

  .concept_txt {
    position: static;
    font-size: 1.6rem;
    display: inline-block;
  }

  .concept_txt.en,
  .concept_txt.ko {
    font-size: 1.6rem !important;
  }

  #concept_block01 .concept_txt {
    margin-bottom: 70px;
    margin-left: 5%;
  }

  #concept_block01 .concept_img01 {
    width: 100%;
    margin-right: 0;
    text-align: right;
  }

  #concept_block01 .concept_img01 img {
    width: 90%;
    height: auto;
  }

  #concept_block02.concept_position_area {
    margin-top: 10px;
    z-index: 1;
  }

  #concept_block02 .concept_bg {
    top: 0;
    left: auto;
    right: 10%;
    width: 50%;
    height: 190px;
  }

  #concept_block02 .concept_txt:first-of-type {
    padding-top: 30px;
    margin-left: 20%;
    margin-bottom: 20px;
  }

  #concept_block02 .concept_img01 {
    width: 95%;
  }

  #concept_block02 .concept_txt:last-of-type {
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: 15%;
  }

  #concept_block02 .concept_img02 {
    position: static;
    width: 100%;
    text-align: right;
  }

  #concept_block02 .concept_img02 img {
    width: 70%;
  }

  #concept_block03.concept_position_area {
    padding-top: 0;
    margin-top: -20px;
  }

  #concept_block03 .concept_bg {
    width: 80%;
    height: 154px;
    left: auto;
    right: 2%;
    bottom: -5%;
  }

  #concept_block03 .concept_img01 {
    width: 95%;
    margin-left: 0;
  }

  #concept_block03 .concept_txt {
    margin-top: 60px;
    margin-left: 5%;
  }

  #concept_block04.concept_position_area {
    margin-top: 90px;
    margin-bottom: 150px;
  }

  #concept_block04 .concept_bg {
    width: 70%;
    height: 262px;
    right: auto;
    left: 0;
    bottom: 0;
    top: 30%;
  }

  #concept_block04 .concept_img01 {
    width: 60%;
    margin-left: 20%;
    margin-right: 0;
  }

  #concept_block04 .concept_txt {
    margin-top: 40px;
    margin-left: 5%;
  }

  #concept_block04 .concept_btn {
    position: static;
    text-align: right;
    margin-top: 30px;
  }

  #concept_block04 .concept_btn .link_btn {
    margin-right: 5%;
  }

  .concept_more_box {
    padding-bottom: 100px;
  }

  .concept_more_inner h2 {
    font-size: 2.8rem;
  }

  .more_link_box {
    flex-flow: column;
  }

  .more_link_box .more_link01 {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    background: url('/assets/img/concept/bg-concept_more_sp01.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-bottom: 10px;
  }

  .more_link_box .more_link02 {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    background: url('/assets/img/concept/bg-concept_more_sp02.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0px;
    margin-bottom: 10px;
  }

  .more_link_box .more_link03 {
    width: 100%;
    height: 200px;
    border-radius: 5px;
    background: url('/assets/img/concept/bg-concept_more_sp03.png') no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
  }

  .more_link_bg {
    width: 100%;
    background: rgba(117,102,89,0.7);
    border-radius: 0 0 5px 5px;
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .more_link_txt {
    font-size: 1.8rem;
    margin-top: 0;
    margin: 12px 0;
  }

  .more_link_bg::after {
    position: absolute;
    content: "";
    width: 24px;
    height: 24px;
    background: url('/assets/img/common/icon_arrow_btn_w.svg') no-repeat;
    background-size: 16px;
    background-position: center;
    border: 1px solid #FFF;
    border-radius: 12px;
    display: block;
    bottom: 10px;
    left: auto;
    right: 12px;
    transform: none;
  }

}


/*---------------------------------------------------------------------------------------------

HOW TO ENJOY

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_howto {
  background: url('/assets/img/howto/mv_howto.jpg?r=2') no-repeat;
  background-size: cover;
  background-position: center;
}

.mv_cont.mv_howto .mv_movie {
  position: absolute;
  width: 380px;
  height: auto;
  top: 50%;
  left: 100px;
  bottom: 30px;
  background-color: #EB9A81;
  padding: 10px;
  text-align: center;
  color: #fff;
}

.mv_cont.mv_howto .mv_movie a {
  display: block;
  position: relative;
}

.mv_cont.mv_howto .mv_movie a .youtube_icon {
  position: absolute;
  width: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0.75;
}

.mv_cont.mv_howto .mv_movie span {
  font-size: 1.6rem;
  letter-spacing: 0;
  margin: 10px;
  display: block;
}

.mv_cont.mv_howto .mv_movie p {
  font-size: 2rem;
  background-color: #EB9A81;
}

.howto_tit {
  max-width: 700px;
  width: 90%;
  margin: 100px auto 130px auto;
  color: #2E2721;
  text-align: center;
}

.howto_tit.center {
  text-align: center;
  margin: 80px auto 40px auto;
}

.howto_tit p {
  font-size: 2.2rem;
  line-height: 1.8;
  display: inline-block;
}

.howto_box {
  width: 100%;
  background: #FFF8EF;
  padding-bottom: 100px;
}

.howto_box_inner {
  max-width: 1200px;
  width: 90%;
  margin: auto;
  position: relative;
}

.howto_box_inner h2 {
  font-size: 4.8rem;
  color: #756659;
  position: absolute;
  top: -25px;
  left: 0;
}

.howto_flex_box {
  margin-top: 40px;
}

.howto_box_inner .howto_flex_box.first{
  padding-top: 90px;
  margin-top: 0;
}

.howto_cont_box {
  width: 550px;
  height: 667px;
  position: relative;
}

.howto_cont_box img {
  position: absolute;
  max-width: 524px;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
}

.howto_cont_box.left img {
  top: 100px;
}

.howto_cont_box.right img {
  left: auto;
  right: 66px;
}

.howto_cont_txt {
  position: absolute;
  width: 524px;
  height: 248px;
  padding: 40px;
  background: #FFF;
  bottom: 0;
  right: 0;
}

.howto_cont_box.left .howto_cont_txt {
  right: -50px;
}

.howto_cont_box.right .howto_cont_txt {
  bottom: 100px;
}

.howto_cont_txt p:first-of-type {
  font-size: 3.5rem;
  color: #756659;
  margin-bottom: 30px;
}

.howto_cont_txt p:last-of-type {
  font-size: 2rem;
  color: #2E2721;
  line-height: 1.5;
}

.point_box {
  max-width: 1200px;
  width: 90%;
  margin: 100px auto;
}

.point_box h2 {
  font-size: 4.8rem;
  color: #756659;
  margin-bottom: 60px;
}

.point_flex_box {
  margin-bottom: 50px;
}

.point_cont_box {
  width: 49%;
}

.point_cont_box a {
  display: block;
  margin-bottom: 40px;
  opacity: 1;
  transition: .3s;
}

.point_cont_box a:hover {
  opacity: 0.6;
}

.point_cont_box span {
  font-size: 2.2rem;
  color: #2E2721;
}

.point_cont_box p {
  font-size: 2rem;
  color: #2E2721;
  margin-top: 15px;
}

.point_cont_box .movie {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.point_cont_box .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

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

  .mv_cont.mv_howto {
    background: url('/assets/img/howto/mv_howto_sp.jpg?r=2') no-repeat;
    background-size: cover;
    background-position: center;
  }

  .mv_cont.mv_howto h1 {
    top: auto;
  }

  .howto_movie {
    width: 100%;
    margin: 35px auto 0 auto;
    background-color: #EB9A81;
    text-align: center;
    padding: 0 0 5px 0;
  }

  .howto_movie .movie {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
  }

  .howto_movie .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }

  .howto_movie span {
    font-size: 1.6rem;
    color: #fff;
    margin-top: 10px;
    display: block;
  }

  .howto_movie p {
    font-size: 2rem;
    color: #fff;
    margin: 8px 0;
  }

  .howto_tit {
    margin: 60px auto 70px auto;
    text-align: left;
  }

  .howto_tit.center {
    margin: 50px auto;
    text-align: center;
  }

  .howto_tit p {
    font-size: 1.6rem;
  }

  .howto_box {
    padding-bottom: 60px;
  }

  .howto_box_inner h2 {
    font-size: 2.8rem;
  }

  .howto_cont_box {
    width: 100%;
    height: 340px;
  }

  .howto_cont_box img {
    width: 90%;
  }

  .howto_cont_box.left {
    margin-bottom: 30px;
  }

  .howto_cont_box.left img {
    top: 0;
  }

  .howto_cont_box.right img {
    left: 0;
    right: 0;
  }

  .howto_cont_txt {
    width: 90%;
    height: 140px;
    padding: 20px;
  }

  .howto_cont_box.left .howto_cont_txt {
    right: 0;
  }

  .howto_cont_box.right .howto_cont_txt {
    bottom: 0;
  }

  .howto_cont_txt p:first-of-type {
    font-size: 1.8rem;
    margin-bottom: 14px;
  }

  .howto_cont_txt p:last-of-type {
    font-size: 1.4rem;
  }

  .point_box {
    width: 100%;
    margin: 60px 0;
  }

  .point_flex_box {
    margin-bottom: 0;
  }

  .point_cont_box {
    width: 100%;
    margin-bottom: 30px;
  }

  .point_box h2 {
    width: 90%;
    margin: 0 auto 60px;
    font-size: 2.8rem;
  }

  .point_cont_box img {
    margin-bottom: 20px;
  }

  .point_cont_box .movie {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .point_cont_box .movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
  }

  .point_cont_box span {
    display: block;
    width: 90%;
    margin: 0 auto;
    font-size: 2rem;
  }

  .point_cont_box p {
    width: 90%;
    margin: 15px auto 0;
    font-size: 1.6rem;
  }

  .point_cont_box a {
    margin-bottom: 0;
  }

}


/*---------------------------------------------------------------------------------------------

FAQ

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_faq {
  background: url('/assets/img/faq/mv_faq.jpg?r=2') no-repeat;
  background-size: cover;
  background-position: center;
}

.faq_box {
  max-width: 1200px;
  width: 90%;
  margin: 130px auto;
}

.multipletab{
  width:100%;
  margin:0 auto;
  background:#FFF;
  /* overflow:hidden; */
  position:relative;
}

.tab-buttons{
  width:100%;
}

.tab-buttons>p {
    width: 33.33%;
    height: 80px;
    display: block;
    cursor: pointer;
    background: #FFF;
    padding: 0;
    border-bottom: 1px solid #756659;
    border-right: 1px solid #756659;
    text-align: center;
    font-size: 2rem;
    line-height: 80px;
    opacity: .45;
}

.tab-buttons p:last-of-type {
  border-right: none;
}

.tab-buttons>p.active {
    background: #FFF;
    position: relative;
    opacity: 1;
    border-bottom: none;
    border-top: 3px solid #756659;
}

.tab-buttons p.active:nth-of-type(2) {
  border-right: 1px solid #756659;
}

.tab-buttons p.active:last-of-type {
  border-left: 1px solid #756659;
}

.tab-buttons>p span {
  font-size: 1.4rem;
}

.tab-buttons>a {
  position: relative;
  display: block;
  width: 15%;
  border: 1px solid #756659;
  border-radius: 10px;
  padding: 1.5rem 0;
  font-size: 1.8rem;
  text-align: center;
  cursor: pointer;
}

.tab-buttons>a>span {
  display: inline;
}

.tab-buttons>a>br {
  display: none;
}

.tab-buttons>a.active {
  color: #FFF;
  background-color: #756659
}

.tab-buttons>a.active:after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #756659 transparent transparent transparent;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
}

.sub-tab-buttons>a.active:after {
  display: none;
}

.tab-content{
position:relative;
}

.tab-content>div{
  display: none;
  background: #FFF;
}

.tab-content>div.activetab{
  display: block;
}

.tab-nav{
  opacity:0;
  transition:all .3s linear;
  -moz-transition:all .3s linear;
  -webkit-transition:all .3s linear;
}

.multipletab:hover .tab-nav{
  opacity:1;
}

.acd-check {
    display: none;
}

.acd-label {
  width: 100%;
  height: 120px;
  background: #FFF8EF;
  color: #2E2721;
  font-size: 2rem;
  margin: 30px auto 0 auto;
  position: relative;
}

.acd-label.first {
  margin: 0 auto;
}

.acd-label span {
  font-size: 2.4rem;
  width: 60px;
  height: 60px;
  color: #FFF;
  background: #756659;
  border-radius: 30px;
  margin-left: 40px;
  margin-right: 20px;
}

.acd-label p {
  width: calc(100% - 240px);
}

.acd-label::before {
    content: '';
    display: block;
    background: #756659;
    width: 4px;
    height: 30px;
    position: absolute;
    right: 53px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.acd-label:after {
    content: '';
    display: block;
    background: #756659;
    width: 30px;
    height: 4px;
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.acd-content {
  width: 100%;
  margin: auto;
  background: #FFF;
  display: block;
  height: 0;
  opacity: 0;
  transition: .3s;
  visibility: hidden;
}

.acd-check:checked + .acd-label {
  border: none;
}

.acd-check:checked + .acd-label::before {
    display: none;
}

.acd-check:checked + .acd-label + .acd-content {
    opacity: 1;
    width: 100%;
    height: auto;
    margin: auto;
    padding: 36px 0;
    visibility: visible;
}

.answer {
  font-size: 2.4rem;
  width: 60px;
  height: 60px;
  color: #FFF;
  background: #EB9A81;
  border-radius: 30px;
  margin-left: 40px;
  margin-right: 20px;
}

.answer_txt {
  width: 85%;
  margin-top: 15px;
  font-size: 1.8rem;
}

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

  .mv_cont.mv_faq {
    background: url('/assets/img/faq/mv_faq_sp.jpg?r=2') no-repeat;
    background-size: cover;
    background-position: center;
  }

  .faq_box {
    margin: 80px auto;
  }

  .tab-buttons>p {
    font-size: 1.6rem;
    line-height: 1.5;
    padding-top: 10px;
  }

  .tab-buttons.shoplist {
    flex-wrap: wrap;
  }

  .tab-buttons>a {
    font-size: 1.4rem;
    width: 30%;
    margin-bottom: 1rem;
  }

  .tab-buttons>a.active:after {
    display: none;
  }

  .tab-buttons.lang-en a:nth-child(4) span,
  .tab-buttons.lang-tw a:nth-child(4) span,
  .tab-buttons.lang-vi a:nth-child(4) span {
    display: none;
  }

  .tab-buttons.lang-en a:nth-child(4) br,
  .tab-buttons.lang-tw a:nth-child(4) br,
  .tab-buttons.lang-ko a:nth-child(4) br,
  .tab-buttons.lang-vi a:nth-child(4) br {
    display: inline;
  }

  .acd-label {
    height: 56px;
    padding: 10px 0;
    font-size: 1.6rem;
    margin: 20px auto 0 auto;
  }

  .acd-label span {
    font-size: 1.8rem;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .acd-label p {
    width: calc(100% - 106px);
  }

  .acd-label::before {
    width: 2px;
    height: 20px;
    right: 19px;
  }

  .acd-label::after {
    width: 20px;
    height: 2px;
    right: 10px;
  }

  .acd-check:checked + .acd-label + .acd-content {
    padding: 10px 0;
  }

  .answer {
    font-size: 1.8rem;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .answer_txt {
    margin-top: 5px;
    font-size: 1.6rem;
    line-height: 1.8;
    width: 80%;
  }

  .tab-content>div.activetab {
    width: 100% !important;
  }

}


/*---------------------------------------------------------------------------------------------

COMPANY

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_company {
  background: url('/assets/img/company/mv_company.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

.company_box {
  max-width: 920px;
  width: 90%;
  margin: 130px auto;
}

.company_box h2 {
  font-size: 4.8rem;
  margin-bottom: 60px;
  color: #756659;
}

.company_info_list {
  width: 100%;
  border-bottom: 1px solid #756659;
  padding: 30px 0;
  font-size: 1.8rem;
  color: #756659;
}

div.company_info_list:last-child {
  border-bottom: none;
}

.company_info_list div.company_info_child:first-child {
  margin-left: 140px;
  width: 240px;
}

.company_info_child iframe {
  margin-top: 20px;
}

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

  .mv_cont.mv_company {
    background: url('/assets/img/company/mv_company_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }

  .company_box {
    margin: 100px auto;
  }

  .company_box h2 {
    font-size: 3.6rem;
    margin-bottom: 35px;
  }

  .company_info_list {
    font-size: 1.6rem;
    padding: 20px 0;
  }

  .company_info_list.no_border {
    border-bottom: none;
  }

  .sp_iframe {
    padding-bottom: 20px;
    border-bottom: 1px solid #756659;
  }
  .company_info_list div.company_info_child:first-child {
    margin-left: 0;
    width: 100px;
  }
  .company_info_list.shop div.company_info_child:first-child {
    width: 90px;
    min-width: 90px;
    margin-left: 0;
  }

}

/*---------------------------------------------------------------------------------------------

CONTACT

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_contact {
  background: url('/assets/img/contact/mv_contact.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .mv_cont.mv_contact {
    background: url('/assets/img/contact/mv_contact_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*---------------------------------------------------------------------------------------------

PROPERTY

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_property {
  background: url('/assets/img/property/mv_property.jpg?r=2') no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .mv_cont.mv_property {
    background: url('/assets/img/property/mv_property_sp.jpg?r=2') no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*---------------------------------------------------------------------------------------------

PARTNER

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_partner {
  background: url('/assets/img/partner/mv_partner.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .mv_cont.mv_partner {
    background: url('/assets/img/partner/mv_partner_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*---------------------------------------------------------------------------------------------

GRADUATION

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_graduation {
  background: url('/assets/img/graduation/mv_graduation.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .mv_cont.mv_graduation {
    background: url('/assets/img/graduation/mv_graduation_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*---------------------------------------------------------------------------------------------

NEW CATS

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_newcats {
  background: url('/assets/img/newcats/mv_newcats.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .mv_cont.mv_newcats {
    background: url('/assets/img/newcats/mv_newcats_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*---------------------------------------------------------------------------------------------

LABELING

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_labeling {
  background: url('/assets/img/labeling/mv_labeling.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .mv_cont.mv_labeling {
    background: url('/assets/img/labeling/mv_labeling_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*---------------------------------------------------------------------------------------------

INFORMATION

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_information {
  background: url('/assets/img/information/mv_information.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .mv_cont.mv_information {
    background: url('/assets/img/information/mv_information_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }
}

/*---------------------------------------------------------------------------------------------

ADOPTION

---------------------------------------------------------------------------------------------*/

.mv_cont.mv_adoption {
  background: url('/assets/img/adoption/mv_adoption.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .mv_cont.mv_adoption {
    background: url('/assets/img/adoption/mv_adoption_sp.jpg') no-repeat;
    background-size: cover;
    background-position: center;
  }
}
