@charset "utf-8";

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

ベース

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

body {
  width: 100%;
  font-family: 'M PLUS 1p', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #BCAA99;
}

a:hover {
  opacity: unset;
}

.mplus {
  transform: rotate(0.05deg);
}

.roboto {
  font-family: 'Roboto', sans-serif !important;
}

.color_dark {
  color: #756659;
}

.color_semidark {
  color: #928375;
}

.color_right {
  color: #E5D1BD;
}

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

.main {
  width: 100%;
  padding-top: 160px;
  min-width: 1160px;
  font-size: 1.8rem;
  line-height: 1.8;
}

.inner {
  position: relative;
  padding: 60px 0;
}

.contents_area {
  max-width: 1160px;
  width: 90%;
  margin: auto;
}

.contents_tit {
  font-size: 4.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.contents_area .contents_tit {
  font-size: 4.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0;
}

.contents_tit_en {
  font-size: 1.4rem;
    text-align: center;
    display: block;
    letter-spacing: 0.3em;
}

.contents_img {
  position: relative;
}

.contents_img_txt {
  position: absolute;
  background: #FFF;
  padding: 50px;
  left: -5%;
  bottom: -15%;
  border-radius: 20px;
}

.contents_img_txt p {
  text-align: center;
    font-size: 1.6rem;
    margin-top: 30px;
    line-height: 2.2;
}

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

  .mplus {
    transform: rotate(0);
  }

  .main {
    padding-top: 78px;
    min-width: auto;
    font-size: 1.6rem;
  }

  .contents_tit {
    font-size: 2.4rem;
    margin-top: -60px;
    padding-top: 60px;
  }

  .inner {
    padding: 40px 0;
  }

  .contents_img_txt {
    width: 90%;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -280px;
  }

  .contents_area .contents_tit {
    font-size: 2.4rem;
  }

  .contents_tit_en {
    font-size: 1.2rem;
  }

}

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

PC

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

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

  .onlyPC {
    display: block;
  }

  .onlySP {
    display: none !important;
  }

}

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

SP

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


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

  .onlyPC {
    display: none !important;
  }

  .onlySP {
    display: block;
  }

}


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

フェードインアニメーション

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


.view.on {
    opacity: 1;
    transform: translate(0px,0px);
    visibility: visible;
}
.view {
    /*
    transition: 1.2s;
    */
    transition: all .5s linear .2s;
    opacity: 0;
    transform: translate(0px,60px);
}


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

フッター

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

.top_back_area {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 90;
}

footer {
  padding: 10px;
}

.link_btn_area {
  margin: 75px auto 190px auto;
}

.link_btn_area a {
  position: relative;
  width: 380px;
  height: 60px;
  color: #FFF;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
  margin: 0 60px;

}

.link_btn_area a::after {
  content: "";
  position: absolute;
  background: url('/img/new/beginner/ico_link.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 10px;
}

.link_btn_area a.qa {
  background: #BCAA99;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.link_btn_area a:hover.qa {
  opacity: 0.6;
}

.link_btn_area a.contact {
  background: #EB9A81;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.link_btn_area a:hover.contact {
  opacity: 0.6;
}

.sns_btn_area {
  margin-bottom: 80px;
}

.sns_btn_area a {
  margin: 0 20px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.sns_btn_area a:hover {
  opacity: 0.6;
}

.sns_btn_area a img {
  width: 80px;
  height: 80px;
}

.copy {
  font-size: 1.3rem;
  color: #BCBCBC;
  text-align: center;
}

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

  footer {
    padding: 10px 10px 70px 10px;
  }

  .link_btn_area {
    margin: 40px auto 85px auto;
  }

  .link_btn_area a {
    width: 90%;
    height: 40px;
    font-size: 1.4rem;
    margin: 40px auto;
  }

  .link_btn_area a::after {
    width: 20px;
    height: 20px;
  }

  .sns_btn_area {
    margin-bottom: 30px;
  }

  .sns_btn_area a {
    margin: 0 10px;
  }

  .sns_btn_area a img {
    width: 40px;
    height: 40px;
  }

}

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

ポップアップ

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

.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%);
    width: 90%;
    max-width: 1008px;
    height: 567px;
    padding: 0px;
    background-color: transparent;
    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;
}

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

}


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

メインビジュアル

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

.mv_area{
  background-image: url('/img/new/beginner/img_mv_pc.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  min-height: 860px;
  position: relative;
  margin-bottom: 130px;
}

.mv_area::before{
  content: '';
  display: block;
  padding-top: 50%;
}

.mv_contents {
  position: absolute;
  top: 5%;
  left: 10%;
}

.mv_contents h1 {
  font-size: 6.6rem;
  color: #FFF;
  line-height: 1.5;
  margin-bottom: 15px;
}

.mv_contents span {
  font-size: 2.8rem;
  font-weight: 100;
  letter-spacing: 0.5em;
  color: #FFF8EF;
}

.movie_box {
  margin-top: 30px;
  max-width: 380px;
  background: #EB9A81;
  text-align: center;
  padding: 5px;
}

.movie_box a:hover {
  cursor: pointer;
}

.movie_box img {
  width: 100%;
  height: auto;
  max-width: 380px;
  background: #EB9A81;
  text-align: center;
  padding: 5px;
}

.mv_contents .movie_box span {
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-top: 10px;
  display: block;
}

.mv_contents .movie_box p {
  font-size: 2.3rem;
  color: #FFF;
}

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

  .mv_area{
    background-image: url('/img/new/beginner/img_mv_sp.jpg');
    height: 92vh;
    min-height: auto;
    margin-bottom: 50px;
  }

  .mv_contents {
    width: 90%;
    left: 6%;
  }

  .mv_contents h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
  }

  .mv_contents span {
    font-size: 1.4rem;
  }

  .movie_box {
    width: 100%;
    max-width: 100%;
    margin: 35px auto 50px auto;
    padding: 0 0 5px 0;
  }

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

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

  .mv_navi {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: auto;
    right: auto;
    margin: auto;
    background: #685C50;
    height: 60px;
    padding: 10px 20px;
    z-index: 90;
  }

  .mv_navi ul {
    width: 100%;
  }

  .mv_navi ul li {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFF;
  }

  .movie_box span {
    font-size: 1.4rem;
    color: #FFF;
    margin-top: 10px;
    display: block;
  }

  .movie_box p {
    font-size: 2rem;
    color: #FFF;
  }

}

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

ABOUT

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

#about .contents_img_txt {
  left: -2%;
  bottom: -45%;
  z-index: 5;
}

#about .inner {
  padding: 60px 0 0 0;
  margin-bottom: 220px;
}

.about_img_box {
  margin-top: 120px;
    position: relative;
    width: 100%;
    height: 370px;
}

.about_img01 {
  position: absolute;
    max-width: 340px;
    height: auto;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.about_img02 {
  position: absolute;
    max-width: 240px;
    height: auto;
    left: 25%;
    bottom: -10%;
    z-index: 3;
}

.about_img03 {
  position: absolute;
    max-width: 620px;
    height: auto;
    right: 7%;
    top: -2%;
    z-index: 1;
}

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

  #about .contents_area {
    width: 100%;
  }

  #about .inner {
    padding: 40px 0 0 0;
    margin-bottom: 80px;
  }

  #about .contents_img_txt {
    width: 90%;
    padding: 20px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: -280px;
  }

  .about_img_box {
    width: 100%;
    margin-top: 320px;
  }

  .about_img01 {
    width: 55%;
    bottom: 8%;
    left: 5%;
  }

  .about_img02 {
    width: 40%;
    top: 38%;
    left: auto;
    right: 5%;
  }

  .about_img03 {
    width: 90%;
    right: 0;
  }

}


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

POINT

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

.point_bg {
  position: absolute;
  background: #FFF8EF;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

#point .inner {
  margin-bottom: 140px;
}

.point_contents_area {
  margin-bottom: 280px;
}

.point_contents_area.last {
  margin-bottom: 200px;
}

.point_box {
  width: 45%;
  position: relative;
  margin: 0;
}

.point_box.left {
  margin-top: 80px;
}

.point_txt_box {
  position: absolute;
  background: #FFF;
  width: 90%;
  /* height: 210px; */
  height: auto;
  min-height: 250px;
  text-align: center;
  bottom: -40%;
  left: 5%;
  padding: 40px;
  box-shadow: 6px 6px 20px 0px rgb(0 0 0 / 10%);
}

.point_txt_box h3 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  padding-left: 50px;
  position: relative;
  display: inline-block;
}

.point_txt_box p {
  text-align: left;
}

.point_txt_box.point01 h3::before {
  content: "";
  position: absolute;
  background: url('/img/new/beginner/ico_point01.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

.point_txt_box.point02 h3::before {
  content: "";
  position: absolute;
  background: url('/img/new/beginner/ico_point02.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

.point_txt_box.point03 h3::before {
  content: "";
  position: absolute;
  background: url('/img/new/beginner/ico_point03.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

.point_txt_box.point04 h3::before {
  content: "";
  position: absolute;
  background: url('/img/new/beginner/ico_point04.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

.point_txt_box.point05 h3::before {
  content: "";
  position: absolute;
  background: url('/img/new/beginner/ico_point05.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

.point_txt_box.point06 h3::before {
  content: "";
  position: absolute;
  background: url('/img/new/beginner/ico_point06.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

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

  #point .inner {
    margin-bottom: 70px;
  }

  .point_box {
    width: 100%;
  }

  .point_box.left {
    margin-top: 0;
  }

  .point_txt_box {
    height: 180px;
    min-height: auto;
    bottom: -50%;
    padding: 20px;
  }

  .point_txt_box h3 {
    font-size: 1.8rem;
    padding-left: 40px;
    margin-bottom: 15px;
  }

  .point_txt_box.point01 h3::before,
  .point_txt_box.point02 h3::before,
  .point_txt_box.point03 h3::before,
  .point_txt_box.point04 h3::before,
  .point_txt_box.point05 h3::before,
  .point_txt_box.point06 h3::before  {
    width: 30px;
    height: 30px;
  }

  .point_txt_box p {
    font-size: 1.4rem;
    text-align: left;
  }

  .point_box.right {
    margin-top: 200px;
  }

  .point_contents_area {
    margin-bottom: 200px;
  }

  .point_contents_area.last {
    margin-bottom: 180px;
  }

}


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

SYSTEM

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

#system .inner {
  padding: 40px 0 20px 0;
  margin-bottom: 130px;
}

.system_bg {
  position: absolute;
  background: #FFF8EF;
  width: 90%;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}

.system_contents_area {
  margin-bottom: 80px;
}

.system_contents_area.last {
  margin-bottom: 40px;
}

.system_box {
  width: 40%;
  margin: 0 5%;
}

.system_box p {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}

.system_box ul {
  margin-top: 30px;
}

.system_box ul li {
  margin: 10px 40px;
}

.system_box ul li span {
  font-size: 2.4rem;
  display: block;
}

.color_p00 {
  color: #928375;
}

.color_p01 {
  color: #685C50;
}

.color_p02 {
  color: #877868;
}

.color_p03 {
  color: #A79380;
}

.color_p04 {
  color: #C6AF98;
}

.color_p05 {
  color: #E6CBB0;
}

.cost_box {
  max-width: 580px;
  margin: 0 auto 100px auto;
}

.cost_comment {
  color: #FFF;
  background: #EB9A81;
}

.cost_comment_main {
  position: relative;
  font-size: 3.6rem;
}

.cost_comment_main .cost_comment_with_tax {
  position: absolute;
  display: inline-block;
  width: 200px;
  margin-left: 180px;
  text-align: center;
  bottom: -13px;
}

.cost_comment.en .cost_comment_main .cost_comment_with_tax {
  margin-left: 230px;
}

.cost_comment .cost_comment_price_attention {
  font-size: 1.4rem;
  text-align: center;
  padding: 3px 0 13px;
}

.cost_comment img {
  margin-right: 32px;
}

.cost_comment::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 16px 0 16px;
  border-color: #eb9a81 transparent transparent transparent;
  bottom: -16px;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.cost_box .cotion {
  font-size: 1.4rem;
  margin-top: 12px;
  text-align: right;
  color: #EB9A81;
}

.cost_comment span {
  font-size: 6rem;
}

.cost_comment span.with_tax {
  font-size: 2rem;
}

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

.cost_contents_box.first {
  margin-bottom: 300px;
}

.cost_contents_box img {
  max-width: 640px;
  height: auto;
  z-index: 1;
}

.cost_example {
  position: absolute;
    width: 640px;
    background: #FFF;
    padding: 35px;
    top: 65px;
    right: 0;
    z-index: 2;
    box-shadow: 6px 6px 20px 0px rgb(0 0 0 / 10%);
}

.cost_example.left {
    top: -65px;
    left: 0;
    right: auto;
}

.cost_example h3 {
  font-size: 3.6rem;
    text-align: center;
    margin-bottom: 15px;
}

.cost_example h3 span {
  font-size: 2.4rem;
  display: block;
  line-height: 1;
}

.cost_example .cost_comment_price_attention {
  font-size: 1.4rem;
  text-align: center;
  padding-top: 8px;
}

.cost_table {
  width: 560px;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.minute {
  width: 240px;
}

.price {
  width: 320px;
}

.minute_block {
  position: relative;
  width: 100%;
  height: 120px;
  color: #FFF;
}

.minute_block.max_price {
  height: 160px;
}

.minute_block.pink {
  background: #FFC3B3;
}

.minute_block.pink::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 16px;
  border-color: transparent transparent transparent #FFC3B3;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.minute_block.red {
  background: #EB9A81;
}

.minute_block.red::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 0 16px 16px;
  border-color: transparent transparent transparent #eb9a81;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.minute_block p {
  font-size: 2.8rem;
  text-align: center;
  line-height: 1.2;
}

.minute_block p.en {
  font-size: 2rem;
}

.minute_block p span {
  font-size: 4.2rem;
}

.price_block {
  width: 100%;
  height: 120px;
}

.price_block.max_price {
  height: 160px;
}

.price_block.gray {
  background: #F8F8F8;
}

.price_block p {
  font-size: 4.2rem;
  line-height: 0.8;
  text-align: center;
}

.price_block p span.roboto {
  font-size: 6rem;
  display: inline-block;
}

.price_block p span.with_tax {
  font-size: 2rem;
}

.price_block p span.price_sub {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 12px;
  display: inline-block;
}

.cost_example .cotion {
  font-size: 1.4rem;
  margin-top: 20px;
}


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

  #system .inner {
    margin-bottom: 70px;
  }

  .system_contents_area {
    margin-bottom: 40px;
  }

  .system_contents_area.last {
    margin-bottom: 20px;
  }

  .system_box {
    width: 43%;
    margin: 0 2%;
  }

  .system_box p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .system_box p.first {
    margin-bottom: 40px;
  }

  .system_box ul {
    margin-top: 5px;
  }

  .system_box ul li {
    margin: 10px 5px;
  }

  .system_box ul li span {
    font-size: 1.2rem;
  }

  .cost_box {
    margin: 0 auto 30px auto;
  }

  .cost_comment {
    font-size: 2rem;
  }

  .cost_comment_main .cost_comment_with_tax {
    width: 150px;
    margin-left: 120px;
    bottom: -20px;
  }

  .cost_comment.en .cost_comment_main .cost_comment_with_tax {
    margin-left: 160px;
  }

  .cost_comment .cost_comment_price_attention {
    font-size: 1.2rem;
    text-align: left;
    padding: 8px 1em;
  }

  .cost_comment img {
    margin-right: 10px;
  }

  .cost_comment span {
    font-size: 3.3rem;
  }

  .cost_comment.en span {
    font-size: 3rem;
  }

  .cost_comment span.with_tax {
    font-size: 1.5rem;
  }

  .cost_comment::after {
    bottom: -15px;
  }

  .cost_box .cotion {
    font-size: 1.3rem;
  }

  .cost_contents_box.first {
    margin-bottom: 250px;
  }

  .cost_contents_box {
    margin-bottom: 150px;
  }

  .cost_contents_box img {
    position: absolute;
    width: 90%;
    height: auto;
    top: 0;
    left: -5%;
  }

  .cost_contents_box img.left {
    position: absolute;
    width: 90%;
    height: auto;
    top: 0;
    left: auto;
    right: -5%;
  }

  .cost_example {
    width: 95%;
    top: 200px;
    left: auto;
    padding: 15px;
    right: auto;
    position: relative;
    margin: auto;
  }

  .cost_example.left {
    top: 200px;
    left: auto;
    right: auto;
    position: relative;
    margin: auto;
  }

  .cost_example h3 {
    font-size: 2rem;
  }

  .cost_example .cost_comment_price_attention {
    font-size: 1.2rem;
    text-align: left;
    padding-top: 8px;
  }

  .cost_table {
    width: 100%;
  }

  .minute {
    width: 45%;
  }

  .price {
    width: 55%;
  }

  .minute_block {
    height: 80px;
  }

  .cost_example.left .minute_block {
    height: 90px;
  }

  .cost_example.left .minute_block.max_price {
    height: 120px;
  }

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

  .minute_block p.en {
    font-size: 1.3rem;
  }

  .minute_block p span {
    font-size: 2.6rem;
  }

  .price_block {
    height: 80px;
  }

  .cost_example.left .price_block {
    height: 90px;
  }

  .cost_example.left .price_block.max_price {
    height: 120px;
  }

  .price_block p {
    font-size: 2.2rem;
  }

  .price_block p span.roboto {
    font-size: 3.2rem;
  }

  .price_block p span.with_tax {
    font-size: 1.4rem;
  }

  .cost_example .cotion {
    font-size: 1.2rem;
  }

  .cost_example h3 span {
    font-size: 1.6rem;
  }

  .price_block p span.price_sub {
    font-size: 1.3rem;
    text-align: left;
  }

  .minute_block.red::after,
  .minute_block.pink::after {
    border-width: 8.5px 0 8.5px 8px;
    right: -7px;
  }

}

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

SHOP

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

#shop .inner {
  margin-bottom: 150px;
}

.contents_img_txt.right {
  right: -5%;
  bottom: -40%;
  left: auto;
}

.shop_contents_area {
  margin-top: 220px;
}

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

.beginner-tab-buttons{
  width:100%;
}

.beginner-tab-buttons>p{
    width: 30%;
    height: 100px;
    display: block;
    cursor: pointer;
    background: #F8F8F8;
    padding: 20px 15px;
    border-bottom: 6px solid #BCAA99;
    text-align: center;
    font-size: 2.4rem;
    line-height: 1;
}

.beginner-tab-buttons>p.active{
  background:#FFF8EF;
  position:relative;
}

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

.tab-content{
position:relative;
}

.tab-content>div{
  display: none;
  position:absolute;
  background: #FFF8EF;
}

.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;
}

.tab-content a.shop {
    position: relative;
    width: 30%;
    height: 60px;
    color: #FFF;
    padding: 10px;
    text-align: center;
    border-radius: 30px;
    background: #BCAA99;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.tab-content a.shop:nth-of-type(2) {
  margin: 0 5%;
}

.tab-content a.shop:hover {
  background: #928375;
}

.tab-content a.shop::after {
    content: "";
    position: absolute;
    background: url(/img/new/beginner/ico_link.svg) no-repeat;
    background-size: 100%;
    background-position: center;
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 10px;
}

.tab-content a.shop p {
  font-size: 1.6rem;
}

.tab-content a.shop p.en {
  font-size: 1.4rem;
}

.tab-content a.shop img.shop_thumb {
  width: 80%;
  display: none;
  position: absolute;
  top: -280px;
  left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  opacity: 0;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}

.tab-content a.shop:hover img.shop_thumb {
  display: block;
  opacity: 1;
}

.shop_list {
  margin-bottom: 40px;
}

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

  #shop .inner {
    margin-bottom: 60px;
  }

  #shop .contents_area {
    width: 100%;
  }

  .shop_contents_area {
    margin: 360px auto 0 auto;
    width: 90%;
  }

  .contents_img_txt.right {
      width: 90%;
      padding: 20px;
      left: 50%;
      transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      bottom: -320px;
  }

  .shop_contents_sp .beginner-acd-label {
    background: #FFF8EF;
    text-align: center;
    font-size: 2rem;
    border-bottom: none;
  }

  .shop_contents_sp .beginner-acd-label::before {
    height: 20px;
    right: 20px;
  }

  .shop_contents_sp .beginner-acd-label::after {
    width: 20px;
    right: 10px;
  }

  .shop_contents_sp .beginner-acd-label span {
    font-size: 1.2rem;
    display: block;
  }

  .shop_contents_sp .acd-check:checked + .beginner-acd-label + .acd-content.kanto {
    /* height: 1250px; */
    height: auto;
  }

  .shop_contents_sp .acd-check:checked + .beginner-acd-label + .acd-content.kansai {
    /* height: 550px; */
    height: auto;
  }

  .shop_contents_sp .acd-check:checked + .beginner-acd-label + .acd-content.kyusyu {
    /* height: 200px; */
    height: auto;
  }

  .shop_contents_sp .acd-check:checked + .beginner-acd-label + .acd-content {
    background: #FFF8EF;
    border-bottom: none;
  }

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

  .shop_sp {
    width: 48%;
  }

  .shop_sp a {
    background: #BCAA99;
    width: 100%;
    height: 40px;
    font-size: 1.2rem;
    line-height: 1.2;
    margin-top: 10px;
    color: #FFF;
    padding: 10px;
    text-align: center;
    border-radius: 30px;
  }

}

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

CAT

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

#cat .contents_tit {
  margin-bottom: 20px;
}

.contents_tit_sub {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 50px;
}

#cat .contents_area {
  position: relative;
    width: 100%;
    max-width: 100%;
    /* margin-left: 5%; */
    overflow: hidden;
}

.cat_slider_area {
  width: 100%;
}

.cat_slide {
  max-width: 280px;
    height: 580px;
    background: #FFF;
    padding: 20px;
    /* margin: 0 20px; */
    text-align: center;
    box-shadow: 3px 3px 10px 0px rgba(0,0,0,0.1);
}

.cat_slide:first-child {
  margin-left: 5%;
}

.cat_slide:last-child {
  margin-right: 5%;
}

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

.cat_data {
  font-size: 1.4rem;
  line-height: inherit;
  margin-bottom: 0;
}

.cat_shop {
  background: #928375;
  color: #FFF;
  padding: 5px;
  font-size: 1.4rem;
  margin: 20px auto;
}

.cat_sns a {
  width: auto;
  height: auto;
}

.cat_sns img {
  width: 50px;
  height: 50px;
  margin: 0 10px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  text-align: center;
  font-size: 1.4rem;
  color: #BCAA99;
  line-height: 1.2;
  position: absolute;
  margin: 0 15px;
  padding-top: 48px;
  top: auto;
  background: none;
}

.swiper-button-prev {
  bottom: 30px;
    left: 360px;
}

.swiper-button-next {
  bottom: 30px;
    left: 450px;
}

.swiper-button-prev:before,
.swiper-button-next:before {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

.swiper-button-prev:before {
  content: "";
  background: url('/img/new/beginner/ico_prev.svg') no-repeat;
  background-size: 100%;
  background-position: center;
}

.swiper-button-next:before {
  content: "";
  background: url('/img/new/beginner/ico_next.svg') no-repeat;
  background-size: 100%;
  background-position: center;
}

.swiper-container {
  padding: 10px 10px 150px 10px;
}

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

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

  .contents_tit_sub {
    margin-bottom: 25px;
  }

  .cat_slide {
    width: 45%;
    height: auto;
    padding: 10px;
  }

  .cat_slide:first-child {
    margin-left: 0;
  }

  .cat_slide:last-child {
    margin-right: 0;
  }

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

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

  .swiper-button-prev {
    bottom: 30px;
      left: 30%;
  }

  .swiper-button-next {
    bottom: 30px;
      left: 50%;
  }

  .cat_name {
    font-size: 1.6rem;
    margin: 5px auto;
  }

  .cat_data {
    font-size: 1.2rem;
  }

  .cat_shop {
    font-size: 1.2rem;
    margin: 10px auto;
  }

  .cat_sns img {
    width: 30px;
    height: 30px;
    margin: 0 10px;
  }

  .swiper-container {
    padding: 10px 10px 100px 10px;
  }


}



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

HEALTH

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

#health .inner {
  margin: 120px 0 170px 0;
}

.health_bg {
  position: absolute;
  background: #FFF8EF;
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
}

.contents_health_area {
  width: 100%;
  background: #FFF;
  margin: 130px auto 100px auto;
  box-shadow: 6px 6px 20px 0px rgba(0,0,0,0.1);
  padding: 50px 80px 70px 80px;
}

.health_flex_box {
  margin: 60px 0 70px 0;
}

.health_box {
  width: 30%;
  text-align: center;
}

.health_box p {
  font-size: 3rem;
  font-weight: 500;
  margin-top: 30px;
}

.health_btn_area a {
  position: relative;
  width: 380px;
  height: 60px;
  color: #FFF;
  padding: 10px;
  text-align: center;
  border-radius: 30px;
  margin: 0 60px;
  background: #BCAA99;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 1;
}

.health_btn_area a:hover {
  opacity: 0.6;
}

.health_btn_area a::after {
  content: "";
  position: absolute;
  background: url('/img/new/beginner/ico_link.svg') no-repeat;
  background-size: 100%;
  background-position: center;
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: 10px;
}

.contents_covid_area {
  width: 100%;
  background: #FFF;
  margin: 100px auto 0 auto;
  box-shadow: 6px 6px 20px 0px rgba(0,0,0,0.1);
  padding: 50px 20px 70px 20px;
}

.covid_box {
  background: #F8F8F8;
}

.covid_box.first {
  padding: 40px;
  margin: 40px 0 80px 0;
}

.covid_box.second {
  padding: 40px 80px;
}

.covid_box h3 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 40px;
}

.try_box {
  width: 14%;
  text-align: center;
}

.try_box p{
  font-weight: 600;
  margin-top: 15px;
  line-height: 1.2;
}

.request_box {
  width: 30%;
  margin: 0 1% 70px 1%;
  text-align: center;
}

.request_box.last {
  margin: 0 1%;
}

.request_box p {
  font-weight: 600;
  margin-top: 20px;
  line-height: 1.2;
}

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

  #health .inner {
    margin: 60px 0;
  }

  #health .contents_area {
    width: 100%;
  }

  .contents_health_area {
    width: 90%;
    margin: 320px auto 20px auto;
    padding: 30px;
  }

  .health_flex_box {
    margin: 20px 0;
  }

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

  .health_box p {
    font-size: 2rem;
    margin-top: 10px;
  }

  .health_btn_area a {
    width: 100%;
    height: 40px;
    margin: 0;
    font-size: 1.4rem;
  }

  .health_btn_area a::after {
    width: 20px;
    height: 20px;
  }

  .contents_covid_area {
    margin: 40px auto 0 auto;
    width: 90%;
    padding: 20px;
  }

  .covid_box.first {
    padding: 20px 10px;
    margin: 20px 0 40px 0;
  }

  .covid_box.second {
    padding: 20px 4px;
  }

  .covid_box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
  }

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

  .try_box p, .request_box p {
    font-size: 1.2rem;
  }

  .request_box {
    width: 46%;
    margin: 0 2% 30px 2%;
  }




}


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

Q&A

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

.qa_area {
  position: relative;
  padding: 60px 0;
}

.qa_bg {
  position: absolute;
  background: #FFF8EF;
  width: 75%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.acd-check {
    display: none;
}

.beginner-acd-label {
  max-width: 1000px;
  width: 100%;
  background: #FFF;
  border-bottom: 4px solid #BCAA99;
  font-size: 2.8rem;
  display: block;
  margin: 60px auto 0 auto;
  padding: 10px 40px;
  position: relative;
}

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

.beginner-acd-label span {
  font-size: 3.4rem;
}

.beginner-acd-label::before {
    content: '';
    display: block;
    background: #BCAA99;
    width: 1px;
    height: 26px;
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.beginner-acd-label:after {
    content: '';
    display: block;
    background: #BCAA99;
    width: 26px;
    height: 1px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.acd-content {
  max-width: 1000px;
  width: 100%;
  margin: auto;
    background: #FFF;
    border-bottom: 4px solid #BCAA99;
    display: block;
    height: 0;
    opacity: 0;
    padding: 0 10px;
    transition: .3s;
    visibility: hidden;
}

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

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

.acd-check:checked + .beginner-acd-label + .acd-content {
    opacity: 1;
    max-width: 1000px;
    width: 100%;
    padding: 20px 40px;
    margin: auto;
    visibility: visible;
}

.beginner-answer {
  font-size: 3.4rem;
}

.answer_txt {
  margin-top: 15px;
  margin-left: 5px;
  font-size: 2rem;
}

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

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

  .beginner-acd-label span {
    font-size: 2rem;
  }

  .beginner-acd-label::before {
    height: 20px;
    right: 10px;
  }

  .beginner-acd-label::after {
    width: 20px;
  }

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

  .beginner-answer {
    font-size: 2rem;
  }

  .answer_txt {
    margin-top: 5px;
    font-size: 1.4rem;
  }



}
