@charset "UTF-8";

/* 共通部分 */
html {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.7;
  color: #6A3906;
}
/* 背景 */
.back {
    margin: 0;
    height: auto;
    background-image: url(../images/back.png);
    background-repeat: repeat;
    background-size: cover;
    background-position: center top;
}
/* リンク・訪問後の色を変えないようにする */
a,a:hover,a:visited{
  color: inherit;
}
/* リンク・訪問後の色を変えないようにする−２ */
a,a:visited{
  color: #6A3906;/*カラーコードは任意*/
  text-decoration: none;
}

header {
    position: fixed;
    width: 100%;
    height: 100px;
    top: 0;
    left: 0;
    background-color: #fff;
    margin-top:0px;
    height: 100px;
    z-index: 999;
}
.wrapper {
    width: 90%;
    max-width: 640px;
    margin: 0 auto;
    align-items: center;
}
/* ヘッダーのリリブラロゴ */
h1 {
    width: 10%;
    max-width: 170px;
    height: 30px;
    padding-top: 27px;
    padding-left: 20px;
}

.top_logo {
  width: 130px;
  height: auto;
}
.oem {
  background-color: #ffe9a5;
  text-align: center;
}

/* ヘッダーのレスポンシブ ーーーーーーーーーーーーーーーー */
@media screen and (max-width:700px) {
    h1 img {
        width: 100px;
        height: auto;
    }
    .cart_icon img {
        width: 100px;
        height: auto;
        padding-top: 8px;
    }
    /* .openbtn span {
        width: 30px;
        height: auto;
    } */
}
/* ーーーー------------------ーーーーーーーーーーーー */

.cart_icon {
    width: 100px;
    height: auto;
    position: fixed;
    top: 50px;
    right: 100px;
    /* z-index: 9999; */
}

/* ハンバーガーメニュー */
/*========= ナビゲーションのためのCSS ===============*/
/*アクティブになったエリア*/
#g-nav.panelactive {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    top: 0;
    width: 100%;
    height: 100vh;
  }
  
  /*丸の拡大*/
  .circle-bg {
    position: fixed;
    z-index: 3;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fffebc;
    /*丸のスタート位置と形状*/
    transform: scale(0);
    /*scaleをはじめは0に*/
    top: calc(50% - 50px);
    /*50%から円の半径を引いた値*/
    left: calc(50% - 50px);
    /*50%から円の半径を引いた値*/
    transition: all 0.6s;
    /*0.6秒かけてアニメーション*/
  }
  
  .circle-bg.circleactive {
    transform: scale(50);
    /*クラスが付与されたらscaleを拡大*/
  }
  
  /*ナビゲーションの縦スクロール*/
  #g-nav-list {
    display: none;
    /*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    /* -webkit-overflow-scrolling: touch; */
  }
  
  #g-nav.panelactive #g-nav-list {
    display: block;
    /*クラスが付与されたら出現*/
  }
  
  /*ナビゲーション*/
  #g-nav ul {
    opacity: 0;
    width: 100%;
    /*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
  }

  #g-nav ul li {
    border-bottom: #f4dd2f solid;
  }
  
  /*背景が出現後にナビゲーションを表示*/
  #g-nav.panelactive ul {
    opacity: 1;
  }
  
  /* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
  #g-nav.panelactive ul li {
    -webkit-animation-name: gnaviAnime;
            animation-name: gnaviAnime;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
    /*0.2 秒遅らせて出現*/
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    opacity: 0;
  }
  
  @-webkit-keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes gnaviAnime {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    text-align: center;
    list-style: none;
  }
  
  #g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
  
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 9999;
    /*ボタンを最前面に*/
    cursor: pointer;
    width: 70px;
    height: 70px;
  }
  
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
  
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  
  /* ハンバーガーメニューのレスポンシブ */
  /* モバイル */
  @media screen and (max-width:767px) {
    nav {
      display: none;
    }
    .openbtn, .circle-bg, #g-nav {
      display: block;
    }
  }
  /* タブレットとPC
  @media screen and (min-width:768px) {
    nav {
      display: block;
    }
    .openbtn, .circle-bg,#g-nav {
      display: none;
    }
  } */
  /* ハンバーガーメニューend */


  .cart_toggle {
    width: 103px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* メインビジュアル */
  .main_visual {
    margin: 0 auto;
  }
/* 新常識！吹き出し */
  .hukidashi img {
    width: 35%;
    height: auto;
    margin-top: 130px;
    margin-left: 10px;
  }
/* メインTOPロゴ */
  .main_visual img {
    width: 80%;
    height: auto;
  }
/* メインTOPロゴの箱 */
  .main_visual {
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: -50px;
  }
/* メインTOPイラスト */
  .top_illust img {
    width: 100%;
    height: auto;
    justify-content: center;
    padding-top: 20px;
  }
/* メインTOPイラストの箱 */
  .top_illust {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }

  /* TOPキャンペーンバナー */
  .campain-box {
    /* background-color: rgba(255, 255, 255, 1); */
    margin-top: -50px;
  }
  .campain {
    padding: 10px;
  }
  .campain img {
    width: 100%;
    height: auto;
    padding-top: 10px;
  }
  /* 温活スイッチ */
  .switch img {
    width: 50px;
    height: auto;
  }

  .switch {
    display: flex;
    justify-content: center;
    padding-top: 70px;
  }
  /* あなたは "いつ" "どこ" で温ONする？！ */
  .white_title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    line-height: 0.5rem;
    padding-top: 30px;
  }
/* 白文字レスポンシブ */
  @media screen and (max-width:375px) {
    .white_title {
        font-size: 18px;
    }
}
/* 朝派夜派イラスト */
  .asa_yoru {
    display: flex;
    justify-content: center;
    padding-top: 70px;
  }
  .asa_yoru img {
    width: 100%;
    height: auto;
  }
 /* 使い方パターンの箱 */
 .pattern_box {
    margin: 0 auto;
 }
 .pattern {
    background-color: rgb(251, 248, 201);
    width: 90%;
    height: 50%;
    margin: 20px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
 }
 .pattern_illust {
    width: 40%;
    height: auto;
 }
 .pattern_illust img {
  width: 100%;
  height: auto;
}
 .pattern_text_box {
    padding: 10px;
    width: 50%;
    height: auto;
 }
.pattern_title {
    font-size: 16px;
    font-weight: bold;
}
/* レスポンシブ */
@media screen and (max-width:375px) {
    .pattern_title {
    font-size: 13px;
    }
}
.pattern_text {
    font-size: 10px;
    font-weight: medium;
}

/* 背景クリーム色のBOX */
.base_box {
    background-color: rgb(251, 248, 201);
    border-radius: 10px;
    margin-top: 30px;
    padding-bottom: 30px;
}

/* リリブラとはの箱 */
/* 美肌・痩身〜が開発した */
.title_2 {
    font-size: 24px;
    font-weight: bold;
    color: #6A3906;
    text-align: center;
    line-height: 3rem;
    padding-top: 50px;
}
.title_4 {
  font-size: 24px;
    font-weight: bold;
    color: #6A3906;
    text-align: center;
    line-height: 3rem;
    padding-top: 50px;
}
.mat_allmat {
  font-size: 10px;
}
/* レスポンシブ */
@media screen and (max-width:500px) {
    .title_2 , h2 {
        font-size: 16px;
        line-height: 2rem;
    }
    .title_4 {
      font-size: 18px;
        font-weight: bold;
        color: #6A3906;
        text-align: center;
        line-height: 3rem;
        padding-top: 30px;
        padding-left: 10px;
        padding-right: 10px;
        line-height: 150%;
    }
    .kazari img {
        width: 20px;
        height: auto;
        padding-top: 30px;
    }

    .grid_item p img {
        width: 40px;
        height: auto;
        padding: 0;
        margin-left: 10px;
        padding-right: 3px;
    }
    .grid_item p {
        font-size: 12px;
        padding: 0;
        font-weight: 200;
    }
}
/* ”プレミアムデトックスシリーズ” */
.mozi_kazari {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.mozi_kazari .title_2 {
    padding: 0 20px;
}
/* ヒートマット４種画像 */
.mat4 {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
.mat4 img {
    width: 100%;
    height: auto;
}
/* ABCD各タイプ説明 */
.type_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 20px;
}
.grid_item {
    display: flex;
    align-items: center;
    height: 50px;
}
.grid_item img {
    width: 50px;
    height: auto;
    padding: 0 20px;
}
.mat_allmat {
    background-color: #ffea76;
    margin: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
}
.lilibla_logo {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}
.lilibla_logo img {
    width: 60%;
    height: auto;
}
/* リリブラとは・・・アコーディオン */
  .a1{
    display: flex;
    background-color: #fff;
  }
  .q1{
    background-color: #fff;
    /* border-bottom: 1px solid lightgrey;
    border-right: 1px solid lightgrey; */
    padding:14px 0;
    display: flex;
    margin-top: 30px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
 .push{
    margin-right: 16px;
    margin-left: auto;
  }
  .answer-text{
    margin: 0 35px;
  }

  .lilibla_setsumei {
    width: 80%;
    height: auto;
    margin: 0 auto;
  }
  .q1-wrap {
    padding: 10px;
    font-weight: bold;
    font-size: 14px;
  }
    /* ================================= */
/* リリブラとは・・・アコーディオン２＝＝＝＝＝＝ */

/*====================================================================
.s_01 .accordion_one
====================================================================*/
.s_01 .accordion_one {
    max-width: 1024px;
    margin: 0 auto;
  }
  .s_01 .accordion_one .accordion_header {
    background-color: #fff;
    color: #6A3906;
    font-size: 26px;
    font-weight: bold;
    padding: 20px 11%;
    text-align: center;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    margin: 0 auto;
    border-radius: 10px;
    width: 70%;
  }
  .s_01 .accordion_one:nth-of-type(2) .accordion_header {
      background-color: #ff9a05;
  }
  .s_01 .accordion_one:nth-of-type(3) .accordion_header {
      background-color: #1c85d8;
  }
  .s_01 .accordion_one .accordion_header:hover {
    /* opacity: .8; */
    background-color: #ffea76;
  }
  .s_01 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    border: 1px solid #ff9a05;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
  }
  .s_01 .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #ff9a05;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
  }
  .s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
  }
  .s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .s_01 .accordion_one .accordion_inner {
    display: none;
    padding: 30px 30px;
    /* border-left: 2px solid #db0f2f;
    border-right: 2px solid #db0f2f;
    border-bottom: 2px solid #db0f2f; */
    box-sizing: border-box;
    margin: 0 auto;
    background-color: #fff;
    /* width: 82%; */
    margin: 0 8%;
  }
  .s_01 .accordion_one:nth-of-type(2) .accordion_inner {
    border-left: 2px solid #ff9a05;
    border-right: 2px solid #ff9a05;
    border-bottom: 2px solid #ff9a05;
  }
  .s_01 .accordion_one:nth-of-type(3) .accordion_inner {
    border-left: 2px solid #1c85d8;
    border-right: 2px solid #1c85d8;
    border-bottom: 2px solid #1c85d8;
  }
  .s_01 .accordion_one .accordion_inner .box_one {
    height: 30%;
  }
  .s_01 .accordion_one .accordion_inner p.txt_a_abc {
    margin: 0;
    font-size: 10px;
    font-weight: 200;
  }
  @media screen and (max-width: 1024px) {
    .s_01 .accordion_one .accordion_header {
      font-size: 18px;
    }
    .s_01 .accordion_one .accordion_header .i_box {
      width: 30px;
      height: 30px;
      margin-top: -15px;
    }
  }
  @media screen and (max-width: 767px) {
    .s_01 .accordion_one .accordion_header {
      font-size: 16px;
      text-align: left;
      padding: 15px 60px 15px 15px;
    }
  }
  
  .accordion_header {
    width: 90%;
  }

  .lilibla-pic img {
    width: 100%;
    height: auto;
  }

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
  .a a {
    text-decoration: none;
  }

  h2 {
    margin: 20px auto;
    text-align: center;
    font-size: 20px;
  }
  .room_illust {
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
  }
  .room_illust img {
    width: 80%;
    height:auto;
  }
  /* 体を温めると・・・ */
  .koumoku {
    background-color: rgb(251, 248, 201);
    padding:14px 0;
    display: flex;
    margin-top: 10px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  }
  .flame img {
    width: 20px;
    height: auto;
  }
  .flame {
    padding-left: 20px;
  }

  .title_3 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .title_3 img {
    width: 40px;
    height: auto;
    padding-top: 40px;
  }
  .base_box p {
    text-align: center;
    /* padding-top: 30px; */
    padding-bottom: 30px;
    font-weight: bold;
  }
  /* レスポンシブ */
  @media screen and (max-width:375px) {
    .title_3 img {
        width: 30px;
    }
    .base_box p {
    font-size: 12px;
    }
}

/* スライダー */
.slick {
    width: 100%;
    height: auto;
    overflow: hidden!important; 
}
.slick img {
    /* width: 95%;
    height: auto; */
    width: auto;
    height: 170px;
    /* width: 95%;
    height: auto; */
}
@media screen and (max-width: 768px){
  .slick img {
    /* width: 95%;
    height: 100%; */
    object-fit: cover;
    width: 200px;
    height: 200px;
  }
  .slick {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }
  /* .wrapper-2 {
   width: 600px;
  } */

  
} 
  
.slick-dots li button:before {
    font-size: 40px;
}


.slick-list {
    width: auto;
    height: 200px;
}

.slick-dots {
    text-align: center;
    display: flex;
    justify-content: center;
}
.p-small {
  font-size: 8px;
  font-weight: 300;
  width: 80%;
  height: auto;
  margin: 0 auto;
}

/* お家で気軽に・・・ */
.illustGirl img {
    width: 70%;
    height: auto;
    display: flex;
    justify-content: center;
}
.illustGirl {
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}
.illust-2 {
    display: flex;
    justify-content: center;
}
.illust-2 img {
    width: 70%;
    height: auto;
    padding-bottom: 30px;
}
h3 {
    text-align: center;
    padding-bottom: 30px;
}
/* 「予約に遅れる〜」アンダーライン */
.line {
  background: linear-gradient(transparent 50%, #ffff66 0%);
  line-height: 1.3em;
}

/* 徹底解剖 */
.illust-kaibou {
    display: flex;
    justify-content: center;
}
.illust-kaibou img {
    width: 95%;
    height: auto;
}
.size-title {
   border: #877766 2px solid;
   margin: 30px auto;
   padding-top: 10px;
   padding-bottom: 10px;
   width: 60%;
  }
.size {
    display: flex;
    justify-content: space-between;
    padding: 0 20px 50px 20px;
}
.size-item {
    width: 22%;
    height: auto;
}
.size-item img {
  width: 100%;
  height: auto;
}
/* サイズ感のレスポンシブ */
@media screen and (max-width:768px) {
  .size {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10p;
    margin: 0;
    padding: 0;
  }
  .size-item {
    width: 90%;
    height: auto;
    margin: 5px auto;
  }
}



/* どんな機能・効果が・・・ */
.kino-item {
    background-color: #fff;
    border-radius: 10px;
    margin: 7px 10px;
    display: flex;
    justify-content: space-between;
}
.kino {
    background-color: #fff;
    display: flex;
    margin: 10px 20px;
    border-radius: 10px;
    align-items: center;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.kino1-wrap {
    font-size: 8px;
}
span {
    font-weight: bold;
    font-size: 16px;
}
.kino-item img {
    width: auto;
    height: 60px;
}

/* <!--最大温度80°・・・ワープ先 --> */
.icon-2 {
  display: flex;
  justify-content: center;
}
.icon-2 img {
    width: 80px;
    height: auto;
}
.zu-1 img {
  width: 90%;
  height: auto;
}
.zu-1 {
    display: flex;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
}
.suibun-img {
  display: flex;
  justify-content: center;
  padding: 30px;
}
.suibun-img img {
  width: 30%;
  height: auto;
} 
.setsumei {
    font-size: 15px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 20px;
}
.setsumei span {
    font-size: 19px;
    color: crimson;
}
.kome {
    font-size: 10px;
    text-align: center;
}
.rouryu {
    display: flex;
    justify-content: center;
}
.rouryu img {
  width: 90%;
  height: auto;
  padding-top: 20px;
}

/* <!--遠赤外線とマイナスイオン・・・ワープ先 --> */
h4 {
    font-weight: 600;
    text-align: center;
    font-size: 15px;
    color: #b28247;
    margin: 0;
}
.p2 {
  font-size: 12px;
  text-align: center;
}
.shizen {
    display: flex;
    justify-content: center;
}
.shizen img {
    width: 90%;
    height: auto;
    padding-top: 7%;
    padding-bottom: 5%;
}
.kousen {
    display: flex;
    justify-content: center;
    padding: 7% 0;
}
.kousen img {
    width: 90%;
    height: auto;
}
/* こだわりの岩盤石　ワープ先 */
.ishi {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ishi img {
    width: 90%;
    height: auto;
}
.type-icon {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}
.type-icon img {
  width: auto;
  height: 20px;
}
.all-type-icon {
  text-align: center;
  padding-bottom: 20px;
  padding-top: 20px;
}
.all-type-icon img {
  width: auto;
  height: 20px;
}
/* 3部位別温度設定 */
.buibetu {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px;
}
.buibetu img {
  width: 80%;
  height: auto;
}
.bui-betsu {
    display: flex;
    justify-content: center;
    width: 100%;
}
.bui-betsu img {
    width: auto;
    height: 200px;
    padding: 10px;
}
/* カーボンファイバー */
.karbon {
    margin-bottom: 30px;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.karbon img {
  width: 70%;
  height: auto;
}
/* 安全・耐久・抗菌 */
.annzenn {
    text-align: center;
    padding: 20px 0;
}
.annzenn img {
    width: 80%;
    height: auto;
    padding-top: 20px;
}
.oteire {
  text-align: center;
  padding: 10px 0 20px 0;
}
.oteire img {
  width: 70%;
  height: auto;
}
.comment {
    font-size: 7px;
    text-align: center;
}

/* １年保証＿日本国産 */
.hosyo img {
    width: 100%;
    height: auto;
    margin: 50px 0 15px 0;
}
.accordion_header img {
    width: auto;
    height: 50px;
    padding-top: 10px;
}

/* 使い方動画 */
.youtube {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.youtube_p {
    padding-top: 10px;
    padding-bottom: 0;
    font-weight: 400;
    text-align: center;
    font-size: 13px;
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

.kyouryoku {
    font-size: 12px;
    font-weight: 300;
    text-align: center;
}
.kyouryoku2 {
  font-size: 10px;
  font-weight: 300;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
  width: 250px;
  margin: 10px auto;
  padding: 10px;

}
/* 体験１０００円 */
.taiken img {
  width: 90%;
  height: auto;
  margin-top: 20px;
}
.taiken {
  display: flex;
  justify-content: center;
}
/* 比較表 */
.hyou img {
    width: 100%;
    height: auto;
    margin-top: 40px;
}
/* サウナよりも安い！ */
.hito4 img {
    width: 150px;
    height: auto;
}
.di {
    font-size: 30px;
    color: crimson;
    background-color: #fff226;
}
.kyotyo {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background-color: #fff226;
    margin: -20px 60px 0 60px;
    padding: 10px;
    margin-bottom: 20px;
}
.small {
    font-size: 12px;
}
/* お客様の声 */
.koe {
    background-color: #eff0a0;
    width: 100%;
    padding: 50px 0 ;
    margin: 50px auto ;
}
.koe-item {
    display: flex;
    /* justify-content: center; */
    width: 90%;
    margin: 0 auto;
}
.koe-illust img {
    padding: 20px;
    width: auto;
    height: 100px;
}

/* 吹き出し(左)のCSSーーーーーーーーーーーーーーーーーーーー */
.balloon1-left {
    position: relative;
    display: inline-block;
    margin: 1em 20px 2em 20px;
    padding: 7px 10px;
    min-width: 150px;
    max-width: 100%;
    color: #6A3906;
    font-size: 16px;
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
  }
  
  .balloon1-left:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -15px;
    border: 15px solid transparent;
    border-right: 15px solid #fff;
  }
  
  .balloon1-left p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
  }
  /* おわりーーーーーーーーーーーーーーーーーーーーーーーーーー */
  /* 吹き出し(右)のCSSーーーーーーーーーーーーーーーーーーーー */
  .balloon1-right {
    position: relative;
    display: inline-block;
    margin: 1.5em 15px 1.5em 0;
    padding: 7px 10px;
    min-width: 150px;
    max-width: 100%;
    color: #6A3906;
    font-size: 16px;
    background: #fff;
    border-radius: 5px;
    padding: 20px;
    font-size: 20px;
    font-weight: bold;
  }
  
  .balloon1-right:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -15px;
    border: 15px solid transparent;
    border-left: 15px solid #fff;
  }
  
  .balloon1-right p {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
  }
  /* おわりーーーーーーーーーーーーーーーーーーーーーーーーーー */
  /* 商品ラインナップ */
  .container img {
    width: 100%;
    height: auto;
  }
  .container {
    align-items: center;
  }
  .kakaku-item {
    display: flex;
    justify-content: center;
    border-bottom: #7d6b57 solid;
    margin: 15px;
  }
/* クーポン */
.coupon {
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
}
.coupon img {
  width: 100%;
  height: auto;
  }

/* 体験1000円ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
.taiken-sub {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 0;
}
.taiken-illust {
  width: 70%;
  margin: 0 auto;
}
.taiken-illust img {
  width: 100%;
  height: auto;
}
.pro-illust {
  width: 100%;
  display: flex;
  justify-content: center;
}
.pro-illust img {
  width: 80%;
  height: auto;
}
/* 対応店舗 */
.tenpo-box {
  text-align: center;
}

.tenpo-title {
  background-color: #b28247;
  color: #fff;
  width: 80%;
  text-align: center;
  margin: 10px auto;
}
.tenpo-icon {
  display: flex;
  justify-content: center;
}
.tenpo-icon img {
  width: 50px;
  height: auto;
  padding: 10px ;
}
hr {
  border-top: 1px solid #b28247;
  width: 80%;
}
.mozi-s {
  font-weight: 300;
  font-size: 12px;
}


  /* よくある質問　アコーディオン３ーーーーーーーーーーーーーーーーーーーーーー */
  .s_01 .accordion_one {
    max-width: 1024px;
    margin: 0 auto;
  }
  .s_01 .accordion_one .accordion_header {
    background-color: #fff;
    color: #6A3906;
    font-size: 26px;
    font-weight: bold;
    padding: 20px 11%;
    text-align: center;
    position: relative;
    z-index: +1;
    cursor: pointer;
    transition-duration: 0.2s;
    margin: 0 auto;
    border-radius: 10px;
    width: 70%;
  }
  .s_01 .accordion_one:nth-of-type(2) .accordion_header {
      background-color: #fff;
  }
  .s_01 .accordion_one:nth-of-type(3) .accordion_header {
      background-color: #fff;
  }
  .s_01 .accordion_one .accordion_header:hover {
    /* opacity: .8; */
    background-color: #ffea76;
  }
  .s_01 .accordion_one .accordion_header .i_box {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    border: 1px solid #ff9a05;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
  }
  .s_01 .accordion_one .accordion_header.open .i_box {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i:before, .s_01 .accordion_one .accordion_header .i_box .one_i:after {
    display: flex;
    content: '';
    background-color: #ff9a05;
    border-radius: 10px;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
  }
  .s_01 .accordion_one .accordion_header .i_box .one_i:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
  }
  .s_01 .accordion_one .accordion_header.open .i_box .one_i:before {
    content: none;
  }
  .s_01 .accordion_one .accordion_header.open .i_box .one_i:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .s_01 .accordion_one .accordion_inner {
    display: none;
    padding: 30px 30px;
    /* border-left: 2px solid #db0f2f;
    border-right: 2px solid #db0f2f;
    border-bottom: 2px solid #db0f2f; */
    box-sizing: border-box;
    margin: 0 auto;
    background-color: #fff;
    /* width: 82%; */
    margin: 0 8%;
  }
  .s_01 .accordion_one:nth-of-type(2) .accordion_inner {
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .s_01 .accordion_one:nth-of-type(3) .accordion_inner {
    border-left: 2px solid #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .s_01 .accordion_one .accordion_inner .box_two {
    height: 150px;
  }
  .s_01 .accordion_one .accordion_inner p.txt_a_ac {
    margin: 0;
    font-size: 11px;
    font-weight: 300;
    text-align: left;
  }
  @media screen and (max-width: 1024px) {
    .s_01 .accordion_one .accordion_header {
      font-size: 18px;
    }
    .s_01 .accordion_one .accordion_header .i_box {
      width: 30px;
      height: 30px;
      margin-top: -15px;
    }
  }
  @media screen and (max-width: 767px) {
    .s_01 .accordion_one .accordion_header {
      font-size: 16px;
      text-align: left;
      padding: 15px 60px 15px 15px;
      margin: 10px auto;
    }
  }
  
  .accordion_header {
    width: 90%;
    margin: 10px auto;
  }
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* お問い合わせ */
.tell {
    display: flex;
    justify-content: center;
    font-size: 30px;
}
.tell img {
    width: 30px;
    height:auto;
    padding-right: 5px;
    padding-top: 10px;
}
rt {
    font-size: 7px;
}
.qr {
    display: flex;
    justify-content: center;
}
.qr img {
    width: 200px;
    height: 200px;
}
.cart {
    width: 250px;
    background-color: crimson;
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    margin: 30px auto;
    text-align: center;
    padding: 20px 0;
}
.end {
    margin-bottom: 50px;
}
.hosoku {
  padding-top: 20px;
}


/* オリジナル商品を作りませんか？ーーーーーーーーーーーー */
.oem_img {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}

.oem_img img {
  width: 80%;
  height: auto;
}
.oem_text {
  width: 80%;
  margin: 0 auto;
  font-size: 90%;
}
.oem_hukidashi {
  text-align: center;
  margin-top: 30px;
}
.oem_hukidashi img {
  width: 60%;
  height: auto;
}
.oem_toiawasesaki {
  text-align: center;
}
.toiawasesaki {
  background-color: #6A3906;
  color: #fff;
  width: 300px;
  margin: 10px auto;
}
.mail img {
  width: 20px;
  height: auto;
  padding-right: 10px;
}
.tel img {
  width: 16px;
  height: auto;
  padding-right: 7px;
  padding-top: 10px;
}



/*==================================================
ふわっ
===================================*/
  
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.fadeUp {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.fadeUp.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*=================================================*/

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
ポップアップ
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.popup-overlay-bg {
  background: rgb(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999
}
.popup-inner {
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  min-width: 280px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  -webkit-animation: fadein .5s;
  -moz-animation: fadein .5s;
  -ms-animation: fadein 0.5s;
  -o-animation: fadein .5s;
  animation: fadein .5s
}
.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 29px;
  height: 29px;
  display: flex;
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 999999;
}
.popup-close:after, .popup-close:before {
  width: 14px;
  height: 2px;
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  background: #667075
}
.popup-close:before {
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg)
}
.popup-close:after {
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg)
}
.popup-close {
  width: 23px;
  height: 23px
}
.popup-close:after, .popup-close:before {
  width: 11px;
  height: 2px;
  left: 6px;
  top: 9px
}
.popup-inner img {
  max-width: 100%;
  height: auto;
  opacity: 1!important;
}
#popup {
  display: none;
}
/* アニメーション */
@keyframes fadein {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@-moz-keyframes fadein {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@-webkit-keyframes fadein {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@-ms-keyframes fadein {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}
@-o-keyframes fadein {
  from {
    opacity: 0
  }
  to {
    opacity: 1
  }
}