/* CSS Document */

html{
  font-size: 62.5%; /*16px x 62.5% = 10px*/
  background-color: #fff;
}
body{
	color: #707070;
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
  font-weight: 400;
	font-size: 1.4rem;
  font-feature-settings: "palt";
  letter-spacing: .1em;
  line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing:grayscale;
}
a{
  color: #707070;
  text-decoration: none;
}
a:hover{
  opacity: 0.6;
  text-decoration: none;
  color: #E57D88;
  transition: 0.3s;
}
img{
  max-width: 100%;
  height: auto;
}
li{
  list-style-type: none;
}
/* p, h1, h2, h3{
  margin: 0;
} */

body *, *:focus, button:focus {
  outline: none;
}
.text-center{
  text-align: center;
}
.text-left{
  text-align: left;
}
/*-------------------------------
*     utility
--------------------------------*/
/*PCのとき画像表示する*/
.display-pc{
  display: inline;
}
.display-sp{
  display: none;
}
@media screen and (max-width:768px){
/*SPのとき画像表示する*/
  .display-pc{
    display: none;
  }
  .display-sp{
    display: inline;
  }
}
/*PCのとき改行する*/
.br-pc{
  display: block;
}
@media screen and (max-width:768px){
    .br-pc{
    display: none;
  }
}
/*タブレットのとき改行する*/
.br-tb{
  display: none;
}
@media screen and (max-width:1080px){
    .br-tb{
    display: block;
  }
}
/*SPのとき改行する*/
.br-sp{
  display: none;
}
@media screen and (max-width:768px){
    .br-sp{
    display: block;
  }
}

/*-------------------------------
*     common-parts
--------------------------------*/
.font-serif{
  font-family: 'Noto Serif JP', 'ヒラギノ明朝 ProN','Hiragino Mincho ProN','Yu Mincho Light','YuMincho','Yu Mincho','游明朝体', serif;
}
.text-white{
  color: #fff;
}
.text-pink{
  color: #E57D88;
}
.text-gold{
  color: #9F7C1D;
}
.nomal{
font-weight: normal;
}
.bold{
  font-weight: bold;
}

/*--------------------------------------------
*    common_parts_btn
----------------------------------------------*/
/*ボタン金*/
.btn-gold {
  background-color: #CFAB6C;
  border: 1px solid #CFAB6C;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
}
.btn-gold:hover {
  color: #707070;
  background-color: #fff;
  border: 1px solid #CFAB6C;
  transition: 0.3s;
}
/*ボタンピンク*/
.btn-pink {
  background-color: #F75F6F;
  border: 1px solid #F75F6F;
  border-radius: 10px;
  color: #FFFFFF;
  /* font-size: 1.8rem; */
  /* font-weight: 700; */
  white-space: nowrap;
}
.btn-pink:hover {
  color: #707070;
  background-color: #facdd2;
  border: 1px solid #F75F6F;
  transition: 0.3s;
}
@media screen and (max-width:768px){
  .btn-gold{
    font-size: 1.5rem;
  }
  /* .btn-pink{
    font-size: 1.4rem;
  } */
}

/* ボタン中 */
.btn-m{
  width: 300px;
  padding: 20px;
}
/* ボタン大 */
.btn-l{
  width: 550px;
  padding: 25px;
}
@media screen and (max-width:768px){
  .btn-m{
    width: 250px;
    padding: 10px;
  }
  /* ボタン大 */
  .btn-l{
    width: 250px;
    padding: 15px;
  }  
}

/*--------------------------------------------
*    sp_ドロワーメニュー
----------------------------------------------*/
.zdo_drawer_menu{
  display: none;
}
@media screen and (max-width:1200px){
  .zdo_drawer_menu{
  display: block;
  }
}

/*--------------------------------------------
*    common_header
----------------------------------------------*/
header{
  position: fixed;
  /* height: 70px; */
  width: 100%;
  z-index: 1000;
}
.header-inner{
  display: flex;
  flex-wrap: wrap;
  padding: 0 60px;
  justify-content: space-between;
  align-items: center;
  background-color: #FAF5EB;
}
.navbar-logo{
  flex-basis: 30%;
}
.gmenu-outer{
  flex-basis: 70%;
}
.navbar-logo img{
  margin: 0 auto;
}
.gmenu .gnav-list{
  display: flex;
  align-items: center;
  justify-content: flex-end;  
  padding-left: 0;
}
.gmenu .gnav-list .gnav-item{
  padding: 0 12px;
  white-space: nowrap;
  font-size: 1.3rem;
}
.gmenu .gnav-list .gnav-item:last-of-type{
  padding-right: 0;
}
.header-tel{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.tel{
  max-width: 222px;
  padding-right: 20px;
  text-align: center;
}
.tel p {
  font-size: 1rem;
  background: #FFFFFF;
  border-radius: 25px;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 3px;
  display: inline-block;
  padding: 2px 20px;
}
.tel a {
  font-size: 2.3rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}
.tel a:before {
  position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f095";
  top: 46%;
  left: 0;
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  color: #E57D88;
  font-size: 1.4rem;
}
.tel a>span{
  display: block;
  font: 2.2rem Libre Baskerville;
  color: #E57D88;
}
.hours{
  background: #ffffff;
  border-radius: 50px;
  padding: 5px 15px;
  margin-bottom: 3px;
}
.hours p{
  text-align: center;
  position: relative;
  padding-left: 20px;
  font-size: 1.2rem;
  margin-bottom: 0;
}
.hours p:before {
  position: absolute;
  content: "";
  background: url(../img/icon-clock.png) no-repeat center center/ contain;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 15px;
  height:15px;
}
@media screen and (max-width:1200px){
  header{
    height: 70px;
  }
  .header-inner{
    padding: 0 20px;
    min-height: 60px;
  }
  .navbar-logo{
    flex-basis: 70%;
    min-width: 130px;
  }  
  .navbar-logo img{
    width: 100%;
    max-width: 500px;
  }
  .gmenu-outer{
    display: none;
  }
  .tel{
    max-width: 100%;
    background: #E57D88;
    border-radius: 5px;
    padding-right: 0;
    height: 58px;
    padding: 15px 0;
  }
  .tel.triming{
    padding: 0;
  }
  .tel a>span{
    color: #fff;
  }
  .tel a:before{
    color: #fff;
  }
  .tel p{
    background: none;
    color: #fff;
    margin-bottom: 0;
  }
  .hours {
    margin: 0 auto;
    width: 50%;
    min-width: 150px;
  }
}

/*--------------------------------------------
*     common_footer
----------------------------------------------*/
footer{
  height: 80px;
  background: #CFAB6C
}
.copylights{
  display: block;
  font-size: 1.2rem;
  padding: 25px;
}
@media screen and (max-width:768px){
  footer{
    height: auto;  
  }
  .footer-nav{
    display: block;
    text-align: center;
  }
  .footer-nav-logo{
    height: 100px;
    padding: 20px 0;
    margin: 0 auto 20px;
  }
  .footer-nav-logo img{
    vertical-align: middle;
    width: 190px;
    padding: 0;
    margin: 0 auto;
  }
  .footer-nav-list{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }  
  .footer-nav-item{
    display: flex;
    text-align: center;
    margin: 0 auto 20px;
    font-size: 1.3rem;
  }  
  .copylights{
    display: block;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}

/*--------------------------------------------
*     common_title
----------------------------------------------*/
/* h1見出しテンプレート */
.h1-temp{
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 3.4px;
  position: relative;
  margin-bottom: 50px;
  line-height: 1.3;
  padding: 0 35px 7px;
}
.h1-temp:before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -20px;
	display: inline-block;
	width: 100%;
	height: 30px;
  transform: translate(-50%);
}
@media screen and (max-width:768px){
  .h2-temp{
    font-size: 2.2rem;
  }
  .title-board{
    width: 85%;
    font-size: 1.8rem;
  }
  .h1-temp{
    font-size: 2.4rem;
  }
}
@media screen and (max-width:567px){
  .h1-temp{
    margin-bottom: 30px;
  }
}

/*--------------------------------------------
*     common_section / common_section_inner
----------------------------------------------*/
.sec-temp{
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width:768px){
  .sec-temp{
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/*--------------------------------------------
*     hero
----------------------------------------------*/
#hero .section-inner{
  display: flex;
  padding: 110px 10px 50px;
}
.hero-textbox{
  flex-basis: 55%;
}
.hero-imgbox{
  flex-basis: 45%;
  padding-top: 40px;
}
.hero-imgbox img{
  width: 100%;
}
.hero-textbox img{
  width: 85%;
}
@media screen and (max-width:1138px){
  #hero .section-inner {
    padding: 135px 10px 50px;
  }
}
@media screen and (max-width:768px){
  #hero .section-inner{
    display: block;
    padding: 70px 0 50px;
  }  
  .hero-imgbox{
    padding: 20px 0 0 10px;
  }
}

/*--------------------------------------------
*     sec01:concept
----------------------------------------------*/
#sec01 .section-inner{
  display: flex;
}
.concept-imgbox{
  flex-basis: 40%;
  position: relative;
  z-index: 2;
  margin-left: 30px;
}
.concept-textbox{
  flex-basis: 60%;
  margin: 50px 0 0 -30px
}
.concept-textbg{
  background-image: url(../img/concept-textbox_01.jpg), url(../img/concept-textbox_03.jpg), url(../img/concept-textbox_02.jpg);
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: top, bottom, center;
  background-size: contain;
  padding: 100px 55px;
}
.concept-textbg > *{
  max-width: 500px;
  margin: 0 auto;
}
#sec01 .title-outer{
  text-align: left;
}
#sec01 .h1-temp{
  padding: 0 35px 7px 0;
}
#sec01 .h1-temp:before {
	background: url(../img/titleber-concept.png) no-repeat center center/contain;
}
.concept-textbox h2{
  font-size: 2.2rem;
  letter-spacing: 2.4px;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.5;
}
.concept-textbox p{
  line-height: 2.0;
}
@media screen and (max-width:991px){
  #sec01 .section-inner {
    display: block;
  }
  .concept-imgbox{
    max-width: 400px;
    margin-left: 0;
  }
  .concept-textbox{
    margin: -80px 0 0 auto;
    max-width: 600px;
  }
  .concept-textbg{
    padding: 100px 25px;
    background-image: url(../img/concept-textbox_01-sp.jpg), url(../img/concept-textbox_03.jpg), url(../img/concept-textbox_02.jpg);
    margin-left: 20px;
  }
  #sec01 .title-outer{
    text-align: center;
  }
  #sec01 .h1-temp{
    padding: 0 35px 7px 35px;
  }  
  #sec01 .h1-temp:before {
    background: url(../img/titleber-concept-sp.png) no-repeat center center/contain;
  }
  .concept-textbox h2{
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width:576px){
  .concept-textbg{
    padding-bottom: 65px;
  }
  .concept-imgbox{
    max-width: 280px;
  }
  .concept-textbox h2{
    font-size: 1.6rem;
  }
  .concept-textbox p {
    line-height: 1.6;
    font-size: 1.3rem;
  }
}


/*--------------------------------------------
*     sec02:effects
----------------------------------------------*/
#sec02{
  background: url(../img/effect-bg.jpg) no-repeat center center/cover;
}
#sec02 .h1-temp{
  padding: 0 35px 7px;
}
#sec02 .h1-temp:before {
	background: url(../img/titleber-effects.png) no-repeat center center/contain;
}
.effect-item{
  display: flex;
  align-items: center;
  padding: 60px 0 0;
  max-width: 970px;
  margin: 0 auto;
}
.effect-imgbox{
  flex-basis: 50%;
}
.effect-imgbox.right{
  order: 2;
}
.effect-imgbox figure{
  max-width: 360px;
  margin-left: auto;
}
.effect-imgbox.right figure{
  margin-left: 0;
}
.effect-textbox{
  flex-basis: 50%;
}
.effect-textbox h2{
  font-size: 2.4rem;
  letter-spacing: 2.4px;
  font-weight: 700;
  margin: 0 0 45px;
  position: relative;
  padding-left: 75px;
}
.effect-textbox .no{
  font-size: 4.9rem;
  font-family: 'Libre Baskerville';
  font-weight: 400;
  letter-spacing: 2.65px;
  color: #E57D88;
  position: absolute;
  left: 0;
  bottom: -12px;
}
.effect-textbox h2::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -20px;
	display: inline-block;
	width: 550px;
	height: 2px;
	background-color: #CEAA70;
}
.effect-textbox p{
  line-height: 1.8;
  padding-right: 55px;
}
.effect-textbox.right h2{
  padding-left: 0;
  padding-right: 75px;
  text-align: right;
}
.effect-textbox.right .no{
  left: unset;
  right: 0;
}
.effect-textbox.right h2::before{
  left: unset;
  right: 0;
}
.effect-textbox.right p{
  padding-right: 0;
  padding-left: 55px;
}
@media screen and (max-width:768px){
  .effect-item{
    display: block;
    padding: 20px 10px 40px;
  }
  .effect-item:last-of-type{
    padding-bottom: 20px;
  }
  .effect-textbox h2::before{
    width: 100%;
  }
  .effect-imgbox{
    padding-left: 0;
  }
  .effect-imgbox.right{
    padding-right: 0;
  }
  .effect-imgbox figure{
    max-width: 100%;
  }
  .effect-imgbox figure img{
    width: 100%;
  }
  .effect-textbox .no{
    font-size: 3.5rem;
    bottom: -8px;    
  }
  .effect-textbox h2{
    font-size: 1.8rem;
    padding-left: 55px;
    margin: 20px 0 30px;
    letter-spacing: .05em;
  }
  .effect-textbox.right h2{
    padding-right: 55px;
  }
  .effect-textbox p{
    padding-right: 0;
  }
  .effect-textbox.right p{
    padding-left: 0;
  }
}


/*--------------------------------------------
*     sec03:disease
----------------------------------------------*/
#sec03{
  background: url(../img/disease-bg.jpg) no-repeat center center/cover;
}
#sec03 .h1-temp{
  padding: 0 35px 7px;
}
#sec03 .h1-temp:before {
	background: url(../img/titleber-disease.png) no-repeat center center/contain;
}
.disease-wrapper{
  padding-top: 40px;
}
.disease-wrapper figure img{
  max-width: 850px;
  width: 80%;
}
.disease-wrapper p{
  text-align: right;
  letter-spacing: 1.3px;
  margin-bottom: 0;
  line-height: 1.2;
}
@media screen and (max-width:768px){
  .disease-wrapper figure img{
    max-width: 100%;
    width: 100%;
  }
  .disease-wrapper p{
    text-align: left;
  }
}


/*--------------------------------------------
*     sec04:menu
----------------------------------------------*/
#sec04{
  background: url(../img/menu-bg.jpg) no-repeat center center/cover;
}
#sec04 .h1-temp{
  padding: 0 35px 7px;
}
#sec04 .h1-temp:before {
	background: url(../img/titleber-menu.png) no-repeat center center/contain;
}
.menulist{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-item{
  padding: 25px 5px;
}
.menu-item .menu-box{
	background: url(../img/menu-itembox.png) no-repeat center center/contain;
  padding: 0 30px;
  min-height: 200px;
  max-width: 360px;
  width: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.menu-item h2{
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 2px dashed #CEAA70;
}
.menu-item ul{
  padding-left: 0;
}
.menu-item ul li{
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #BABABA;
}
.menu-item ul li p{
  margin-bottom: 0;
  padding: 5px 0;
  font-size: 1.4rem;
  letter-spacing: 1.6px;
}
.menu-item .price{
  color: #9F7C1D;
  font-weight: 700;
}
.menu-item.coupon .menu-box{
  padding: 0 60px;
}
.menu-item.coupon p{
  text-align: center;
  margin-top: 1rem;
}
.menu-item .coupon span{
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  margin-top: 1rem;
}
.o2room-facility{
  margin-top: 50px;
  padding: 0 100px;
}
.o2room-box{
  background-image: url(../img/o2room-box_01.jpg), url(../img/o2room-box_03.jpg), url(../img/o2room-box_02.jpg);
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: top, bottom, center;
  background-size: contain;  
  padding: 50px 90px;
  min-height: 350px;
  display: flex;
  align-items: center;
}
.o2room-imgbox{
  flex-basis: 32%;
}
.o2room-textbox{
  flex-basis: 68%;
  padding-left: 40px;
}
.o2room-textbox h3{
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width:992px){
  .o2room-facility{
    padding: 0;
  }
  .o2room-box {
    background-image: url(../img/o2room-box-sp_01.jpg), url(../img/o2room-box-sp_03.jpg), url(../img/o2room-box-sp_02.jpg);
    display: block;
    padding: 60px 20px 50px;
    min-height: 600px;
  }
  .o2room-imgbox{
    text-align: center;
  }
  .o2room-textbox{
    padding: 15px 0 0;
    max-width: 500px;
    margin: 0 auto;
  }
  .o2room-textbox .title-outer{
    text-align: center;
  }
  .o2room-textbox h3{
    font-size: 2.0rem;
    margin-bottom: 15px;
  }
}
@media screen and (max-width:768px){
  .menu-item{
    padding: 10px 5px;
  }
  .menu-item .menu-box{
    background: url(../img/menu-itembox-sp.png) no-repeat center center/contain;
    min-height: 250px;
    max-width: 300px!important;
    width: 300px!important;
  }
  .menu-item h2{
    padding-bottom: 15px;
    line-height: 1.5;
  }
  .menu-item ul li p{
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  .menu-item.coupon .menu-box {
    padding: 0px 35px;
  }
  .o2room-imgbox{
    max-width: 250px;
    margin: 0 auto;
  }
}


/*--------------------------------------------
*     sec05:step
----------------------------------------------*/
.step-wrapper{
  padding: 0 100px;
}
.step-box{
  background-image: url(../img/step-box_01.jpg), url(../img/step-box_03.jpg), url(../img/step-box_02.jpg);
  background-repeat: no-repeat, no-repeat, repeat-y;
  background-position: top, bottom, center;
  background-size: contain;
  padding: 70px 20px;
}
#sec05 .h1-temp{
  padding: 0 35px 7px;
}
#sec05 .h1-temp:before {
	background: url(../img/titleber-step.png) no-repeat center center/contain;
}
.step-item{
  display: flex;
  position: relative;
  padding-top: 40px;
  max-width: 680px;
  margin: 0 auto;
}
.step-item:first-child{
  padding-top: 20px;
}
.step-imgbox{
  flex-basis: 30%;
}
.step-textbox{
  flex-basis: 70%;
  padding-left: 15px;
}
.step-textbox h2{
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  padding: 20px 0;
}
.step-textbox p{
  margin-bottom: 0;
  line-height: 1.3;
}
.step-item::before{
  content: "";
  position: absolute;
	background: url(../img/step-arrow.png) no-repeat center center/contain;
  left: 50%;
  bottom: -35px;
  display: inline-block;
  width: 100%;
  height: 30px;
  transform: translate(-50%);
}
.step-fin{
  text-align: center;
  padding-top: 60px;
}
.step-fin h2{
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 2.4px;
  padding-bottom: 35px;
}
.step-fin h2 span{
  font-size: 3rem;
}
@media screen and (max-width:768px){
  .step-wrapper{
    padding: 0;
  }
  .step-box{
    padding: 20px;
  }
  .step-textbox h2{
    font-size: 1.8rem;
    padding: 5px 0  ;
  }
  .step-textbox p{
    font-size: 1.3rem;
  }
  .step-item::before{
    content: none;
  }
  .step-fin{
    padding-top: 25px;
  }
  .step-fin h2{
    font-size: 2rem;
    padding-bottom: 15px;
  }
  .step-fin h2 span {
    font-size: 2.5rem;
  }
  .step-fin p{
    font-size: 1.2rem;
    letter-spacing: 0;
  }
}

/*--------------------------------------------
*     sec06:about
----------------------------------------------*/
#sec06 .h1-temp{
  padding: 0 35px 7px;
}
#sec06 .h1-temp:before {
	background: url(../img/titleber-about.png) no-repeat center center/contain;
}
.about-wrapper{
  display: flex;
  align-items: center;
  padding: 50px 0;
}
.about-imgbox{
  flex-basis: 45%;
  order: 2;
  margin-left: -130px;
}
.about-textbox{
  flex-basis: 55%;
  margin-left: 100px;
}
.about-textbg{
  background: #FFDCD1;
  border-radius: 15px;
  padding: 70px 80px 70px 50px;
}
.about-textbg p{
  max-width: 450px;
  margin: 0 auto;
}
.about .btn-wrapper{
  text-align: center;
}
/* .about .btn-wrapper button:first-child{
  margin-right: 100px;
} */
@media screen and (max-width:992px){
  .about-wrapper{
    display: block;
  }
  .about-imgbox, .about-textbox{
    margin-left: 0;
  }
  .about-imgbox figure{
    max-width: 600px;
    margin: 0 auto;
  }
  .about-wrapper{
    padding-top: 0;
  }
  .about-imgbox img{
    width: 100%;
  }
  .about-textbox{
    margin-top: -100px;
  }
  .about-textbg{
    padding: 100px 20px 70px;
  }
  /* .about .btn-wrapper button{
    width: calc((100% - 10px) / 2 );
    max-width: 300px;
  } */
  /* .about .btn-wrapper button:first-child {
    margin-right: 5px;
  } */

}



/*--------------------------------------------
*     sec07:qa
----------------------------------------------*/
#sec07 .h1-temp{
  padding: 0 35px 7px;
}
#sec07 .h1-temp:before {
	background: url(../img/titleber-qa.png) no-repeat center center/contain;
}
.qalist{
  padding: 0 20px;
  max-width: 850px;
  margin: 0 auto;
}
.qa-item{
  border-bottom: 1px dashed #707070;
  padding: 40px 0 20px;
}
.qa-q, .qa-a{
  position: relative;
  padding-left: 38px;
}
.qa-q{
  margin-bottom: 10px
}
.qa-q::before, .qa-a::before{
  position: absolute;
  content: "";
  background: url(../img/qa-q.png) no-repeat center center/contain;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
}
.qa-q::before{
  background: url(../img/qa-q.png) no-repeat center center/contain;
  top: -3px;
}
.qa-a::before{
  background: url(../img/qa-a.png) no-repeat center center/contain;
}
.qa-q h2{
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 2px;
}
@media screen and (max-width:768px){
  .qalist{
    padding: 0;
  }  
  .qa-item{
    padding: 20px 5px 20px;
  }
  .qa-q h2{
    font-size: 1.6rem;
  }
}

/*--------------------------------------------
*     sec08:contact
----------------------------------------------*/
#sec08{
  background-color: #FCF9F3;
}
#sec08 .h1-temp{
  padding: 0 35px 7px;
}
#sec08 .h1-temp:before {
	background: url(../img/titleber-contact.png) no-repeat center center/contain;
}
.contact-form{
  margin: 40px auto;
  padding: 80px 20px;
  background-color: #fff;
  max-width: 940px;
}
.contact-form .btn-wrapper{
  max-width: 800px;
  display: flex;
  justify-content: space-around;
  margin: 0 auto;
}
.contact-tel{
  text-align: center;
}
.contact-tel p {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 3px;
  display: inline-block;
  padding: 0 0 5px;
}
.contact-tel button span {
  font: 2.2rem Libre Baskerville;
  font-weight: 600;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-left: 24px;
  letter-spacing: .1em;
}
.contact-tel button span:before {
  position: absolute;
	font-family: "Font Awesome 5 Free";
	content: "\f095";
  top: 46%;
  left: 0;
  transform: translate(0, -50%);
  /* width: 20px;
  height: 20px; */
  color: #fff;
  font-size: 1.7rem;
}
@media screen and (max-width:768px){
  .contact-form{
    margin: 0;
    padding: 30px 20px;
  }
  .contact-form .btn-wrapper{
    display: block;
  }
  .contact-tel:first-of-type{
    margin-bottom: 10px;
  }
  .contact-tel button span{
    font-size: 1.8rem;
  }
}
