@charset "UTF-8";

/* ===================================================================================
基本設定
=================================================================================== */

:root {
  --main-color: #453739;
  --light-color: #f3ece6;
  --blue-color: #104c9d;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: var(--main-color);
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

img {
  vertical-align: middle;
  width: 100%;
  height:auto;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}

a {
  cursor: pointer;
  pointer-events: all;
  transition: 0.3s;
  text-decoration: none;
  color: var(--main-color);
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}

.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

figure{
  margin:0;
  padding:0;
}


/* ===================================================================================
コンテンツ全体
=================================================================================== */
.wrapper_main {
  box-shadow: 0px 2px 30px -5px rgba(0, 0, 0, 0.2);
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  background-color: #fff;
}

.sec_inner{
  padding: 0 20px;
}

/* フローティング====================================================================== */

.floating_btn {
  position: fixed;
  right: 50%;
  bottom: 0;
  transform: translateX(50%);
  width: 100%;
  display: none;
  cursor: pointer;
  text-align: center;
  background-color: var(--light-color);
  max-width: 450px;
  z-index: 10;
  padding: 10px;
}

.floating_btn_wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 5px;
}

.page_top {
  position: fixed;
  right: 10px;
  bottom: 70px;
  width: 50px;
  display: none;
  z-index: 1;
}

/* ===================================================================================
コンテンツごとの設定
=================================================================================== */

/* ヘッダー====================================================================== */

#header {
  background: var(--light-color);
  padding: 5px 15px;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header_logo img {
  max-width: 85px;
}

.header_logo p{
  font-size: 1rem;
  line-height: 1.5;
  margin-left: 10px;
}

#header .logo:first-child {
  margin-right: 5px;
}

.header_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  display: flex;
  align-items: center;
}
.header_txt {
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 5px;
}

/* ヘッダー固定のスクロール調整 */

#about,#recommendation,#effect,#plan,#flow,#voice,#qa,#salon{
  padding-top: 60px;
  margin-top:-60px;
}

/* ハンバーガーメニュー====================================================================== */

ul {
  margin: 0;
  padding: 0;
}

#g-nav {
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: #fbf2e4;
  transition: all 0.6s;
  padding: 50px 20px;
  text-align: center;
  overflow-y: scroll;
}

#g-nav-list {
  margin-bottom: 40px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.g-panelactive {
  right: 0;
}

/* ハンバーガーメニュー展開時、ページスクロール禁止 */
body.g-panelactive {
  height: 100%;
  overflow: hidden;
}

body.panelactive {
  height: 100%;
  overflow: hidden;
}

.g-nav-cover.g-panelactive {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  /* background: rgba(3, 3, 3, .5); */
  display: block;
}

/*リストのレイアウト設定*/

#g-nav-list ul li a {
  font-size: 1.6rem;
  text-decoration: none;
  color: var(--main-color);
  font-weight: bold;
  display: block;
  padding: 20px;
  font-weight: 500;
}
#g-nav-list ul li {
  border-bottom: 1px solid var(--main-color);
  position: relative;
  text-align: left;
}
#g-nav-list ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  border: 10px solid transparent;
  border-left: 8px solid var(--main-color);
  pointer-events: none;
}

#g-nav li a:hover {
  opacity: 0.8;
}

#g-nav p {
  text-align: center;
  margin-bottom: 20px;
}

#g-nav p span {
  font-size: 1.1rem;
  color: #000;
  border-bottom: 1px solid #000;
}

.g-nav-link ul li {
  margin-bottom: 10px;
}

.g-nav-link ul li a{
  color: var(--main-color);
  font-size: 1.4rem;

}
.g-nav-link ul li a i{
  margin-left: 5px;
}

.g-nav-btn {
  width: 26%;
  margin: 0 auto;
}

.g-nav-btn:hover {
  opacity: 0.7;
  cursor: pointer;
}


/* メニューボタンの設定====================================================================== */
.openbtn1 {
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
  /* background-color: #ccc; */
}
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 12px;
  height: 1px;
  background-color: var(--main-color);
  width: 55%;
}
.openbtn1 span:nth-of-type(1) {
  top: 20px;
}
.openbtn1 span:nth-of-type(2) {
  top: 30px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 12px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn1.active span:nth-of-type(2) {
  top: 30px;
  left: 12px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

/* fv====================================================================== */
.fv {
  position: relative;
}
.price_wrap {
  position: absolute;
  bottom: 10px;
  left: 0;
  padding: 0 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 5px;
}

.price_wrap .conditions{
  text-align: center;
  font-size: 1rem;
  padding: 10px 0;
  line-height: 1.5;
  font-weight: 700;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  position: relative;
}

.price_wrap .conditions::before{
  content: "";
  border-top: 2px solid var(--main-color);
  position: absolute;
  top: -7px;
  left: 0;
  width: 100%;
}

.price_wrap .conditions::after{
  content: "";
  border-top: 2px solid var(--main-color);
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 100%;
}

.price_wrap .time{
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(0deg,rgba(163, 23, 2, 1) 0%, rgba(223, 29, 0, 1) 100%);
  border-radius: 50%;
  width:70px;
  height:70px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price_wrap .time::before{
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
}
.price_wrap .time span{
  font-size: 2rem;
}

.price_wrap .price {
  font-size: 6.2rem;
  color: #cb2d15;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.price_wrap .price .yen{
  font-size: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price_wrap .price .yen span{
  font-size: 1rem;
}

/* banner====================================================================== */

.banner{
  margin: 40px auto;
}

.banner a {
  position: relative;
  display: block;
}

.banner .price_wrap{
  align-items: flex-start;
  flex-direction: column;
  padding: 0 20px;
  bottom: 10px;
  gap: 7px 0;
}
.banner .price_wrap div{
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 0 10px;
}

.banner .price_wrap .conditions{
  padding: 2px 0;
}

.banner .price_wrap .conditions::before{
  border-top: 1px solid var(--main-color);
  top: -5px;
}
.banner .price_wrap .conditions::after{
  border-top: 1px solid var(--main-color);
  bottom: -5px;
}

.banner .price_wrap .time{
  width: 56px;
  height: 56px;
  font-size: 1rem;
}

.banner .price_wrap .time::before{
  width: 48px;
  height: 48px;
}

.banner .price_wrap .time span {
  font-size: 1.6rem;
}

.banner .price_wrap .price{
  font-size: 5rem;
}

/* about====================================================================== */

#about{
  background-image: url(../images/bg_aboutus.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.about{
  margin: 20px 0;
}

.about .cont {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  margin: 15px 0;
}

/* recommendation====================================================================== */
.recommendation{
  margin:20px 0;
}

/* plan====================================================================== */

.plan{
  background-image: url(../images/bg_plan.png);
  background-size: contain;
  padding: 60px 0 30px;
  margin-bottom: 40px;
}

.plan .cont {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  align-items: center;
}

.plan_wrap{
  background-color: #fff;
  padding: 30px 20px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}

.plan_wrap .num {
  background-color: #8b6427;
  color: #fff;
  width: 100px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.plan_wrap .num span{
  font-size: 2.2rem;
}

.plan_wrap h3 {
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}
.plan_wrap h3 span{
  font-size: 1.6rem;
}

.plan_wrap .copy {
  width: 110px;
  position: absolute;
  top: -20px;
  right: -10px;
}
.plan_wrap .copy.right{
  top: -30px;
  right: -10px;
}
.plan_wrap .copy.left{
  top: -20px;
  left: -10px;
}

.plan_wrap .price_wrap{
  position: initial;
  gap: 0;
  padding: 0;
  justify-content: space-evenly;
}

.plan_wrap .price_wrap .conditions{
  padding: 5px 0;
  font-size: 0.9rem;
}

.plan_wrap .price_wrap .conditions::before{
  border-top: 1px solid var(--main-color);
  top: -5px;
}
.plan_wrap .price_wrap .conditions::after{
  border-top: 1px solid var(--main-color);
  bottom: -5px;
}

.plan_wrap .price_wrap .time{
  width: 55px;
  height: 55px;
  font-size: 1rem;
}

.plan_wrap .price_wrap .time::before{
  width: 47px;
  height: 47px;
}

.plan_wrap .price_wrap .time span {
  font-size: 1.4rem;
}

.plan_wrap .price_wrap .price{
  font-size: 5rem;
}

.plan_wrap  .price .yen{
  font-size: 3rem;
}

.plan .attention {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  margin-top: -20px;
}

/* flow====================================================================== */

.flow{
  background-image: url(../images/bg_flow.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0 30px;
  margin-top: -70px;
}

.flow .cont{
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.flow_wrap {
  background-color: #fff;
  border: 2px solid var(--blue-color);
  border-radius: 15px;
  padding: 5px;
  position: relative;
}

.flow_wrap_inner {
  background-color: #fff;
  border: 1px solid var(--blue-color);
  border-radius: 10px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.flow_wrap_inner .ttl_wrap{
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0 20px;
}

.flow_wrap_inner .ttl_wrap img {
  width: 120px;
}

.flow_wrap_inner .ttl_wrap h3 {
  font-size: 2rem;
  font-weight: 500;
  position: relative;
  padding: 0 0 10px;
}

.flow_wrap_inner .ttl_wrap h3 img{
  width: 90px;
  display: block;
}

.flow_wrap_inner p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

.flow_wrap_inner .ttl_wrap h3::after {
  content: "";
  border-bottom: 4px dotted var(--blue-color);
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
}

.flow_wrap_inner .btn_wrap{
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}

.flow_wrap::after{
  content: "";
  background-image: url(../images/arrow_flow.png);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 40px;
  background-size: contain;
  background-repeat: no-repeat;
}

.flow_wrap:last-child:after{
  content: none;
}

/* voice====================================================================== */

.voice{
  background: linear-gradient(-90deg,rgba(255, 230, 255, 1) 0%, rgba(212, 240, 255, 1) 100%);
  padding: 100px 0 60px;
  margin: -70px auto 40px;
  overflow: hidden;
}

.voice_wrap{
  /* margin: 0 auto; */
  width: 90%;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 0;
}

.voice_wrap img {
  width: 100px;
}

.voice_wrap .person {
  font-size: 1.4rem;
  background-color: #46ccdc;
  padding: 5px 10px;
  color: #fff;
}

.voice_wrap h3 {
  font-size: 2rem;
  line-height: 1.5;
  color: #46ccdc;
}

.voice_wrap p {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}


/* swoper====================================================================== */

#voice_slider {
  position: relative;
}

#voice_slider .swiper-button-next:after, #voice_slider .swiper-button-prev:after{
  font-size: 3rem;
}

#voice_slider .swiper-button-next, #voice_slider .swiper-button-prev{
  color:#46ccdc;
}

#voice_slider .swiper-pagination-bullet-active{
  background:#46ccdc;
}

#voice_slider .swiper-horizontal>.swiper-pagination-bullets,
#voice_slider  .swiper-pagination-bullets.swiper-pagination-horizontal,
#voice_slider  .swiper-pagination-custom, .swiper-pagination-fraction{
    bottom: -30px;
  }

/* qa====================================================================== */

.qa{
  padding: 100px 0 10px;
  margin: -70px auto 0;
}

.qa .cont{
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.accordion_header{
  background: linear-gradient(90deg,rgba(199, 126, 5, 1) 0%, rgba(238, 184, 94, 1) 100%);
  padding: 10px 20px;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0 10px;
  margin-bottom: 10px;
}

.accordion_header img{
  width: 20px;
}

.accordion_inner p{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

/* salon====================================================================== */

.salon{
  padding: 100px 0 10px;
  margin: -70px auto 30px;
}

.salon .cont{
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}

.salon_wrap h3{
  font-size: 2.4rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.salon_wrap table{
  width: 100%;
  border: none;
  position: relative;
  margin-bottom: 20px;
  border-collapse: collapse;
}
.salon_wrap table tr{
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  position: relative;
  border-bottom: 1px solid var(--main-color);
}

.salon_wrap table tr:first-child{
  border-top: 1px solid var(--main-color);
}

.salon_wrap table tr th,.salon_wrap table tr td:first-child{
  padding: 15px;
  width: 30%;
  font-weight: 500;
}

.salon_wrap table tr td{
  padding: 15px;
  width: 70%;
}

.salon_wrap iframe {
    width: 100%;
    height: 220px;
}

/* btn====================================================================== */

.btn{
  margin-bottom: 30px;
}

.btn .btn_wrap{
  display: flex;
  flex-direction: column;
  gap: 10px 0;
}


/* フッター====================================================================== */

footer {
  background-color: #442d08;
  padding: 20px 0 80px;
  color: #fff;
  text-align: center;
  font-size: 1.3rem;
  margin-top: 20px;
}

/* ===================================================================================
1200以上の設定
=================================================================================== */

@media screen and (min-width: 1200px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
  #header {
    height: 60px;
    padding: 10px;
    background-color: var(--light-color);
  }
  .header_logo p{
    font-size: 1.1rem;
    line-height: 1.5;
    margin-left: 10px;
  }
  
  footer {
    padding: 30px 0 150px;
  }
  #header .logo {
    margin-right: 10px;
  }
  .header_txt {
    /* font-size: 13px; */
    margin-top: 10px;
  }
  .openbtn1{
    width: 60px;
    height: 60px;
  }
  .openbtn1 span:nth-of-type(1) {
    top: 24px;
  }
  .openbtn1 span:nth-of-type(2) {
    top: 36px;
  }
  .openbtn1 span{
    left: 9px;
  }
  .openbtn1.active span:nth-of-type(1) {
    top: 23px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
}
.openbtn1.active span:nth-of-type(2) {
  top: 35px;
  left: 14px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}
  #g-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 30%;
    height: 100vh;
    background-color: var(--light-color);
    transition: all 0.6s;
    padding: 30px;
    text-align: center;
    overflow-y: scroll;
  }
  #g-nav-list ul li a {
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--main-color);
    display: block;
    padding: 20px 40px 20px 40px;
  }
/* ヘッダー固定のスクロール調整 */
#about,#recommendation,#effect,#plan,#flow,#voice,#qa,#salon{
  padding-top: 60px;
  margin-top:-60px;
}
.page_top{
  right: 50px;
}
.price_wrap {
  position: absolute;
  bottom: 15px;
  left: 0;
  padding: 0 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0 10px;
}

.price_wrap .conditions{
  text-align: center;
  font-size: 1.3rem;
  padding: 10px 0;
  line-height: 1.5;
  font-weight: 700;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
  position: relative;
}

.price_wrap .price {
  font-size: 7.2rem;
  color: #cb2d15;
  font-weight: 600;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.price_wrap .price .yen{
  font-size: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price_wrap .price .yen span{
  font-size: 1.3rem;
}

.price_wrap .time{
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(0deg,rgba(163, 23, 2, 1) 0%, rgba(223, 29, 0, 1) 100%);
  border-radius: 50%;
  width:75px;
  height:75px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.price_wrap .time::before{
  content: "";
  border: 1px solid #fff;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  position: absolute;
}

.banner .price_wrap .price{
  font-size: 6rem;
}

.banner .price_wrap .time{
  width: 62px;
  height: 62px;
  font-size: 1rem;
}
.banner .price_wrap .time::before{
  width: 54px;
  height: 54px;
}

.banner .price_wrap .conditions{
  padding: 5px 0;
}
.banner .price_wrap{
  bottom: 17px;
  gap: 0;
}
.about{
  margin: 40px 0 20px;
}

.about .cont {
  font-size: 1.5rem;
  line-height: 2;
  text-align: center;
  margin: 15px 0;
}

.recommendation{
  margin:40px 0 20px
}

.plan_wrap{
  background-color: #fff;
  padding: 30px 30px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}

.plan_wrap .copy {
  width: 130px;
  position: absolute;
  top: -20px;
  right: -10px;
}

.plan_wrap h3 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  line-height: 1;
}

.plan_wrap h3 span{
  font-size: 2rem;
}

.plan_wrap .price_wrap .price{
  font-size: 5.8rem;
}

.plan_wrap  .price .yen{
  font-size: 4rem;
}

.plan_wrap .price_wrap .conditions{
  padding: 5px 0;
  font-size: 1.1rem;
}

.plan_wrap .price_wrap .time{
  width: 62px;
  height: 62px;
  font-size: 1rem;
}

.plan_wrap .price_wrap .conditions{
  padding: 5px 0;
  font-size: 1rem;
}

.plan_wrap .price_wrap .time::before{
  width: 54px;
  height: 54px;
}

.plan_wrap .price_wrap .time span {
  font-size: 1.6rem;
}
.flow_wrap_inner .ttl_wrap img {
  width: 150px;
}

.flow_wrap_inner {
  background-color: #fff;
  border: 1px solid var(--blue-color);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}

.flow_wrap_inner .ttl_wrap h3 {
  font-size: 2.4rem;
  font-weight: 500;
  position: relative;
  padding: 0 0 10px;
}

.flow_wrap_inner p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

.flow_wrap_inner .ttl_wrap h3 img{
  width: 120px;
  display: block;
}
.voice_wrap h3 {
  font-size: 2.2rem;
  line-height: 1.5;
  color: #46ccdc;
}

.voice_wrap p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}
.accordion_header{
  background: linear-gradient(90deg,rgba(199, 126, 5, 1) 0%, rgba(238, 184, 94, 1) 100%);
  padding: 10px 20px;
  font-size: 2rem;
  color: #fff;
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0 10px;
  margin-bottom: 10px;
}

.accordion_inner p{
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

.salon_wrap h3{
  font-size: 2.8rem;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.salon_wrap table tr{
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  position: relative;
}
}
