@charset "UTF-8";
html{
  line-height: 1;
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", sans-serif;
  font-display: swap;
  background-color: #FAF7EE;
  color: #714928;
  font-size: 18px;
}
body{
  margin: 0;
}
main{
  display: block;
}
ul,ol{
  margin: 0; padding: 0; list-style: none;
}
h1,h2, h3, h4, h5, p, a{
  padding: 0;
  margin: 0;
}
a{
  text-decoration: none;
}
img{
  width: 100%;
  height: auto;
}
:focus,button:focus{
  outline:0;
}
::before,::after{
  box-sizing: inherit;
}
.clearfix::after{
  content: "";
  display: block;
  clear: both;
}
.container{
  overflow: hidden;
  background: url(../img/bg.png) repeat 630px;
}
.inner{
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
}
.mincho{
  font-family: "Hiragino Mincho ProN", "Times New Roman", "YuMincho", "Yu Mincho", "MS PMincho", serif;
  font-weight: 500;
}

/*margin*/
.mt100{ margin-top: 100px!important;}
.mt50{ margin-top: 50px!important;}
@media screen and (max-width: 767px) {
  .mt100{ margin-top: 70px!important;}
  .mt50{ margin-top: 30px!important;}
}

/*表示*/
.pc{display: block!important;}
.sp{display: none!important;}
@media screen and (max-width: 767px) {
  .pc{display: none!important;}
  .sp{display: block!important;}
}
/*CTAボタン*/
.cta_area{
  display: block;
  position: relative;
  overflow: hidden;
  padding: 10px 0 0;
}
.cta_area::before{
  animation: shine 3s ease-in-out infinite;
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
  transform: skewX(-25deg);
}
@keyframes shine {
  0% {
    transform: scale(0) rotate(-25deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(-25deg);
    opacity: 0.5;
  }
  81% {
    transform: scale(4) rotate(-25deg);
    opacity: 1;
  }
  100% {
    transform: scale(50) rotate(-25deg);
    opacity: 0;
  }
}
.cta_btn{
  display: block;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  transition: .3s;
}
.cta_btn:hover{
  margin: -10px auto 0;
  padding: 0 0 10px;
  opacity: 0.7;
}

/*ヘッダー*/
header{
  background-color: #714928;
}
.header{
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}
.header .logo{
  height: 40px;
  width: auto;
}
.tel_number{
  text-align: center;
}
.tel_number a{
  color: #fff;
  font-size: 25px;
  font-weight: bold;
}
.tel_number a:hover{
  opacity: 0.7;
}
.tel_number a img{
  width: 20px;
  height: auto;
}
.tel_number p{
  font-size: 13px;
  line-height: 18px;
  margin: 3px 0 0;
}
@media screen and (max-width: 767px) {
  .header{
    height: 40px;
  }
  .header .logo{
    height: 30px;
  }
  .tel_number a{
    font-size: 15px;
  }
  .tel_number a img{
    width: 12px;
  }
  .tel_number p{
    font-size: 12px;
    line-height: 1;
  }
}

/*メインビジュアル*/
.main_v{
  max-width: 1280px;
  background: url(../img/mv_bg03.png) no-repeat;
  background-size: 100% auto;
  text-align: center;
}
.main_v h1{
  max-width: 620px;
  margin: 0 auto;
}
.main_v .mv_ttl2{
  display: inline-block;
  max-width: 360px;
  width: 60%;
  margin: -70px 0 0;
}
.mv_contents{
  background: url(../img/mv_list_bg.png) no-repeat;
  background-size: auto 100%;
  background-position: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.mv_contents .mv_logo{
  max-width: 180px;
  width: 20%;
}
.mv_list_ttl{
  font-weight: bold;
  font-size: 27px;
  margin: 0 0 15px;
}
.mv_list ul li{
  font-size: 23px;
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
  margin: 15px 0 0 40px;
  padding: 0 0 0 40px;
  position: relative;
}
.mv_list ul li::after{
  content: '✔︎';
  color: #FFCF00;
  position: absolute;
  top: 0;
  left: 0;
}
.mv_contents .product{
  max-width: 175px;
  width: 20%;
  margin: 0 0 0 -10px;;
}
.main_v .cta_area{
  margin-top: 30px;
}
@media screen and (max-width: 780px) {
  .main_v{
    background: url(../img/mv_bg_sp03.png) no-repeat;
    background-size: 100% auto;
  }
  .main_v .mv_ttl2{
    margin: -40px 0 0;
  }
  .mv_list_ttl{
    font-size: 23px;
    margin: 15px 0;
  }
  .mv_list ul li{
    font-size: 20px;
    margin: 10px 0 0 30px;
    padding: 0 0 0 30px;
  }
  .mv_contents{
    margin: 20px auto 0;
  }
  .mv_contents .product{
    margin: 0 0 0 -5px;
  }
  .main_v .cta_area{
    margin-top: 20px;
  }
}
@media screen and (max-width: 610px) {
  .mv_list_ttl{
    font-size: 20px;
  }
  .mv_list ul li{
    font-size: 18px;
    margin: 10px 0 0 10px;
    padding: 0 0 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .main_v .mv_ttl2{
    width: 50%;
    margin: -50px 0 0;
  }
  .mv_contents{
    background-image: none;
    flex-wrap: wrap;
  }
  .mv_contents .mv_logo{
    order: 1;
    width: 25%;
    margin: 0 30px 0 0;
  }
  .mv_list{
    order: 3;
    width: 100%;
  }
  .mv_contents .product{
    order: 2;
    width: 27%;
  }
  .mv_list{
    background: url(../img/mv_list_bg.png) no-repeat;
    background-size: auto 100%;
    background-position: 50%;
    padding: 15px 0 30px;
  }
  .mv_list_ttl{
    font-size: 20px;
    margin: 0;
  }
  .mv_list ul{
    display: inline-block;
  }
  .mv_list ul li{
    font-size: 18px;
    margin: 10px 0 0 10px;
    padding: 0 0 0 25px;
  }
  .main_v .cta_area{
    margin-top: 0;
  }
}
@media screen and (max-width: 430px) {
  .main_v .mv_ttl2{
    width: 50%;
    margin: -20px 0 0;
  }
  .mv_list{
    padding: 15px 0 30px;
    margin: 0;
  }
  .mv_list_ttl{
    font-size: 18px;
    margin: 0;
  }
  .mv_list ul li{
    font-size: 15px;
    margin: 10px 0 0 10px;
    padding: 0 0 0 25px;
  }
}

/*お悩み*/
.worries{
  background: url(../img/worries_bg.png) no-repeat;
  background-size: 100% 100%;
  max-width: 740px;
  width: 90%;
  box-sizing: border-box;
  padding: 80px 20px 60px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.worries h2{
  font-size: 33px;
}
.worries .line{
  max-width: 595px;
  margin: 10px 0 0;
}
.worries ul{
  display: inline-block;
}
.worries ul li{
  font-size: 25px;
  border-bottom: 1px solid #D0BCAC;
  margin: 20px 0 0 40px;
  text-align: left;
  position: relative;
  padding: 0 0 3px;
}
.worries ul li::after{
  content: '';
  position: absolute;
  background: url(../img/worries_check.png) no-repeat;
  width: 33px;
  height: 34px;
  background-size: contain;
  top: -7px;
  left: -40px;
}
.worries_img{
  position: absolute;
  width: 200px;
  right: -50px;
  bottom: -40px;
}
.worries .br{
  display: none;
}
@media screen and (max-width: 767px) {
  .worries{
    width: 85%;
    padding: 60px 20px 40px;
  }
  .worries h2{
    font-size: 23px;
  }
  .worries .line{
    max-width: 390px;
    margin: 5px 0 0;
  }
  .worries ul li{
    font-size: 20px;
    margin: 18px 0 0 35px;
  }
  .worries ul li::after{
    width: 28px;
    height: 28px;
    top: -4px;
    left: -35px;
  }
  .worries_img{
    width: 180px;
  }
}
@media screen and (max-width: 640px) {
  .worries{
    width: 90%;
    padding: 50px 20px 40px;
  }
  .worries h2{
    font-size: 20px;
  }
  .worries .line{
    max-width: 300px;
  }
  .worries ul li{
    font-size: 18px;
    margin: 15px 0 0 30px;
  }
  .worries ul li::after{
    width: 25px;
    height: 25px;
    top: -2px;
    left: -30px;
  }
  .worries_img{
    width: 150px;
  }
}
@media screen and (max-width: 640px) {
  .worries{
    padding: 50px 10px 40px;
  }
  .worries h2{
    font-size: 18px;
  }
  .worries .line{
    max-width: 300px;
  }
  .worries ul li{
    font-size: 16px;
    margin: 13px 0 0 25px;
  }
  .worries ul li::after{
    width: 20px;
    height: 20px;
    left: -25px;
  }
  .worries_img{
    width: 130px;
    right: -40px;
    bottom: -30px;
  }
}
@media screen and (max-width: 440px) {
  .worries{
    width: 95%;
    padding: 35px 10px 25px;
  }
  .worries h2{
    font-size: 16px;
  }
  .worries .line{
    max-width: 270px;
  }
  .worries ul li{
    font-size: 14px;
    margin: 13px 0 0 18px;
  }
  .worries ul li::after{
    width: 15px;
    height: 15px;
    left: -18px;
  }
  .worries_img{
    width: 100px;
    right: -30px;
    bottom: -20px;
  }
}
@media screen and (max-width: 360px) {
  .worries .line{
    max-width: 220px;
  }
  .worries .br{
    display: block;
  }
}

/*ポイント*/
.point{
  background: url(../img/point_bg.png) repeat;
  position: relative;
  border: 10px solid #714928;
  box-shadow: 1px 1px 5px 2px #71492890 inset, 2px 2px 6px #71492830;
  padding: 15% 20px 50px;
  color: #fff;
}
.point h2 img{
  width: 55%;
  position: absolute;
  top: -80px;
  left: 8%;
}
.point_contents{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 880px;
  margin: 40px auto 0;
}
.point_img{
  width: 40%;
}
.point_txtarea{
  width: 60%;
}
.point h3{
  font-size: 35px;
  line-height: 44px;
  font-weight: bold;
  border-bottom: 2px solid #fff;
  position: relative;
  padding: 0 0 5px 130px;
  display: none;
}
.point h3::after{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 110px;
  height: 50px;
}
.point h3.point1::after{
  background: url(../img/Point1.png) no-repeat;
  background-size: contain;
}
.point h3.point2::after{
  background: url(../img/Point2.png) no-repeat;
  background-size: contain;
}
.point h3.point3::after{
  background: url(../img/Point3.png) no-repeat;
  background-size: contain;
}
.point h3.point4::after{
  background: url(../img/Point4.png) no-repeat;
  background-size: contain;
}
.point .point_contents h3{
  display: block;
}
.point_txt{
  line-height: 33px;
  padding: 20px 0 0;
}
@media screen and (max-width: 900px) {
  .point_img{
    width: 35%;
  }
  .point_txtarea{
    width: 64%;
  }
}
@media screen and (max-width: 820px) {
  .point{
    padding: 12% 20px 50px;
  }
  .point h2 img {
    min-width: 250px;
    top: -50px;
    left: auto;
    right: 4%;
    transform: rotate(15deg);
    -moz-transform: rotate(15deg);
    -webkit-transform: rotate(15deg);
  }
  .point_contents{
    align-items: flex-start;
    margin: 20px auto 0;
  }
  .point h3{
    display: block;
    margin: 50px 0 0;
  }
  .point .point_contents h3{
    display: none;
  }
  .point_txt{
    padding: 0;
  }
}
@media screen and (max-width: 750px) {
  .point h3{
    font-size: 25px;
    line-height: 31px;
    padding: 0 0 5px 90px;
  }
  .point h3::after{
    top: 0;
    left: 0;
    width: 80px;
    height: 36px;
  }
  .point_contents{
    flex-direction: column;
  }
  .point_img{
    order: 1;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .point_txtarea{
    order: 2;
    width: 100%;
  }
  .point_txt{
    text-align: center;
    font-size: 16px;
    line-height: 28px;
  }
  .point_txt .br{
    display: none;
  }
}
@media screen and (max-width: 430px) {
  .point{
    padding: 20% 10px 30px;
  }
  .point h2 img {
    width: 85%;
    min-width: auto;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -webkit-transform: rotate(8deg);
  }
  .point h3{
    font-size: 22px;
    line-height: 28px;
    padding: 0 0 2px;
    text-align: center;
    margin: 70px 0 0;
  }
  .point h3::after{
    top: -35px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

/*3つの特徴*/
.feature h2{
  max-width: 690px;
  margin: 0 auto;
}
.feature_contents{
  display: flex;
  justify-content: center;
}
.feature_item:nth-of-type(2){
  margin: 0 4%;
}
.feature_item img{
  max-width: 250px;
}
.balloon{
  background-color: #fff;
  box-shadow: 0 2px 5px #71492830;
  max-width: 270px;
  box-sizing: border-box;
  padding: 15px 10px;
  margin: 0 auto 2px;
  font-weight: bold;
  font-size: 23px;
  line-height: 29px;
  text-align: center;
  position: relative;
}
.balloon::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -19px;
  border-top: 20px solid #fff;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
@media screen and (max-width: 750px) {
  .feature_contents{
    flex-direction: column;
    align-items: center;
  }
  .feature_item{
    text-align: center;
    width: 100%;
  }
  .feature_item img{
    max-width: 400px;
    width: 80%;
  }
  .balloon{
    max-width: 300px;
    width: 90%;
    font-size: 20px;
    line-height: 25px;
  }
}

/*3つの主成分*/
.component h2{
  max-width: 315px;
  margin: 0 auto;
  padding: 0 27%;
}
.component_contents{
  background-color: #ffffff90;
  box-shadow: 0 2px 4px #71492830;
  padding: 50px 0;
  margin: 20px auto 0;
  max-width: 840px;
  box-sizing: border-box;
  position: relative;
}
.component_contents::after{
  position: absolute;
  content: '';
  background: url(../img/component_img06.png) no-repeat;
  background-size: contain;
  width: 290px;
  height: 290px;
  right: 0;
  bottom: 0;
}
.component_ttl{
  color: #E24E17;
  text-align: center;
  position: relative;
  display: table;
  margin: 0 auto;
}
.component_ttl::before{
  position: absolute;
  content: '';
  background: url(../img/component_img04.png) no-repeat;
  background-size: contain;
  width: 45px;
  height: 90px;
  left: -70px;
  bottom: -10px;
}
.component_ttl::after{
  position: absolute;
  content: '';
  background: url(../img/component_img05.png) no-repeat;
  background-size: contain;
  width: 45px;
  height: 90px;
  right: -70px;
  bottom: -10px;
}
.component_ttl h3{
  font-size: 48px;
}
.component_ttl p{
  font-size: 17px;
  font-weight: bold;
  margin: 5px 0 0;
}
.component_detail{
  display: flex;
  align-items: center;
  margin: 40px auto 0;
  width: 90%;
}
.component_detail img{
  max-width: 150px;
  margin: 0 3% 0 0;
}
.component_detail p{
  line-height: 33px;
  font-weight: bold;
}
.component_bcaa{
  display: flex;
  justify-content: center;
  margin: 30px auto 0;
  max-width: 590px;
  width: 100%;
}
.component_bcaa img{
  max-width: 190px;
  width: 30%;
}
.component_bcaa img:nth-of-type(2){
  margin: 0 2%;
}
.bcaa_amino{
  text-align: center;
  margin: 30px 0 0;
}
.bcaa_amino h4{
  font-size: 28px;
  color: #E24E17;
}
.bcaa_amino p{
  line-height: 33px;
  font-weight: bold;
  margin: 15px 0 0;
}
@media screen and (max-width: 850px) {
  .component_detail {
    width: 95%;
  }
  .component_detail .br{
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .component_contents{
    padding: 40px 0;
  }
  .component_ttl h3{
    font-size: 35px;
  }
  .component_ttl p{
    font-size: 12px;
  }
  .component_ttl::before{
    width: 35px;
    height: 70px;
    left: -50px;
    bottom: -7px;
  }
  .component_ttl::after{
    width: 35px;
    height: 70px;
    right: -50px;
    bottom: -7px;
  }
  .component_detail{
    margin: 20px auto 0;
  }
  .component_detail img{
    max-width: 120px;
    margin: 0 2% 0 0;
  }
  .component_detail p{
    font-size: 16px;
    line-height: 28px;
  }
  .component_bcaa {
    margin: 20px auto 0;
  }
  .bcaa_amino h4 {
    font-size: 23px;
  }
  .bcaa_amino p{
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 670px) {
  .component_contents{
    padding: 40px 10px;
  }
  .component_detail{
    width: 100%;
    margin: 20px 0 0;
    flex-direction: column;
  }
  .component_detail img{
    max-width: 200px;
    width: 50%;
    margin: 0;
  }
  .component_detail p{
    text-align: center;
    margin: 15px 0 0;
  }
}
@media screen and (max-width: 470px) {
  .component_bcaa{
    flex-direction: column;
    align-items: center;
  }
  .component_bcaa img{
    width: 100%;
  }
  .component_bcaa img:nth-of-type(2){
    margin: 10px 0;
  }
  .bcaa_amino .br2{
    display: none;
  }
}

/*ご愛飲者様の声*/
.customers{
  background: url(../img/customers_bg.png) #ffffff90;
  background-size: 100%;
  text-align: center;
  padding: 0 20px 60px;
}
.customers h2{
  font-size: 40px;
  font-weight: bold;
  border-bottom: 1px solid #714928;
  display: inline-block;
  margin: 50px 0 20px;
  padding: 5px 10px;
}
.instagram_img{
  max-width: 740px;
  margin: 40px 0 0;
  display: none;
}
.instagram_txt{
  max-width: 740px;
  font-size: 13px;
  text-align: right;
  margin: 0 auto 40px;
  padding: 0 50px 0 0;
  display: none;
}
.customers_contents{
  margin: 20px auto 0;
  border: 2px solid #93B43A;
  background-color: #fff;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  max-width: 800px;
  box-sizing: border-box;
  text-align: left;
}
.customers_contents:nth-of-type(2n){
  border-color: #FFCF00;
}
.customers_contents img{
  max-width: 140px;
  margin: 0 3% 0 0;
}
.customers_contents div{
  width: 100%;
}
.customers_contents p{
  font-weight: bold;
}
.customers .profile{
  border-bottom: 1px solid #93B43A;
  padding: 0 0 10px;
  margin: 0 0 10px;
}
.customers_contents:nth-of-type(2n) .profile{
  border-color: #FFCF00;
}
.customers .comment{
  font-size: 17px;
  line-height: 33px;
}
.customers_contents span{
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .customers h2{
    font-size: 30px;
    margin: 40px 0 10px;
  }
}
@media screen and (max-width: 720px) {
  .customers_contents{
    flex-direction: column;
    text-align: center;
    width: 90%;
    padding: 20px 15px;
  }
  .customers_contents img{
    max-width: 180px;
    margin: 0;
    width: 50%;
  }
  .customers .comment{
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 640px) {
  .customers h2{
    font-size: 25px;
  }
  .customers .br{
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .customers_contents{
    width: 100%;
  }
  .customers h2{
    padding: 0 10px;
    line-height: 33px;
  }
}

/*その他*/
.other h2 img{
  height: 46px;
  width: auto;
}
.other p{
  line-height: 33px;
  font-weight: bold;
}
.other .drink{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  box-shadow: 1px 1px 4px #71492870;
  margin: 0 auto;
  padding: 10px;
  max-width: 840px;
  box-sizing: border-box;
  background: url(../img/other_bg01.png) no-repeat;
  background-size: 100% 100%;
}
.other .drink p{
  margin: 25px 0 0;
}
.other .drink .product{
  max-width: 100px;
}
.other .shop{
  box-shadow: 1px 1px 4px #71492870;
  margin: 30px auto 0;
  padding: 50px 10px;
  max-width: 840px;
  box-sizing: border-box;
  background: url(../img/other_bg02.png) no-repeat;
  background-size: 100% 100%;
}
.other .shop h2{
  text-align: center;
}
.other .shop .product{
  max-width: 225px;
}
.other .shop p{
  width: 60%;
}
.other .flex{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 25px;
}
@media screen and (max-width: 850px) {
  .other .flex{
    flex-direction: column;
  }
  .other .shop p{
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .other h2 img{
    height: auto;
    width: 100%;
  }
  .other h2{
    max-width: 450px;
    margin: 0 auto;
  }
  .other p{
    font-size: 16px;
    line-height: 28px;
  }
  .other .drink{
    flex-wrap: wrap;
    padding: 40px 10px 10px;
  }
  .other .drink p{
    margin: 0;
    text-align: center;
  }
  .other .drink .product{
    max-width: 70px;
  }
  .other .shop p{
    margin: 10px 0 0;
  }
}
@media screen and (max-width: 550px) {
  .other .drink{
    flex-direction: column;
  }
  .other .drink p{
    margin: 10px 0 0;
  }
  .other .br{
    display: none;
  }
}

/*おすすめ*/
.subject{
  color: #fff;
  background-color: #313131;
}
.subject_contents{
  background: url(../img/subject_bg.png) no-repeat;
  background-size: cover;
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 10px 60px;
  box-sizing: border-box;
}
.subject h2{
  font-size: 40px;
  line-height: 58px;
  text-align: center;
}
.subject ul{
  display: table;
  margin: 20px auto 0;
}
.subject ul li{
  display: table;
  font-weight: bold;
  font-size: 27px;
  margin: 20px 0 0 40px;
  padding: 5px 8px;
  position: relative;
  border-bottom: 1px solid #fff;
}
.subject ul li::after{
  content: '';
  background: url(../img/subject_check.png) no-repeat;
  background-size: contain;
  position: absolute;
  width: 34px;
  height: 37px;
  top: 0;
  left: -40px;
}
.subject span{
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .subject_contents{
    padding: 40px 10px 50px;
  }
  .subject h2{
    font-size: 33px;
    line-height: 45px;
  }
  .subject ul{
    margin: 0 auto;
  }
  .subject ul li{
    font-size: 23px;
  }
  .subject ul li::after{
    width: 30px;
    height: 33px;
    left: -30px;
  }
}
@media screen and (max-width: 500px) {
  .subject h2{
    font-size: 28px;
    line-height: 40px;
  }
  .subject ul li{
    font-size: 18px;
    margin: 15px 0 0 22px;
    padding: 3px;
  }
  .subject ul li::after{
    width: 20px;
    height: 23px;
    top: 2px;
    left: -22px;
  }
}
@media screen and (max-width: 420px) {
  .subject br{
    display: none;
  }
}

/*Q&A*/
.question_ttl{
  text-align: center;
}
.question_ttl h2{
  max-width: 180px;
  display: inline-block;
  padding: 0 37%;
}
.question_ttl p{
  font-weight: bold;
  font-size: 25px;
  margin: 20px 0 30px;
}
.question_list{
  margin: 20px auto 0;
  max-width: 800px;
  box-sizing: border-box;
  background-color: #ffffff90;
  border: 2px solid #714928;
  position: relative;
  padding: 30px 35px 23px;
}
.question_list::after{
  position: absolute;
  content: '';
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 1px solid #714928;
  margin: auto;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.question .query{
  font-size: 22px;
  font-weight: bold;
  padding: 0 10px 10px 40px;
  border-bottom: 1px solid #714928;
  position: relative;
}
.question .query::after{
  content: 'Q';
  position: absolute;
  top: -3px;
  left: 5px;
  color: #93B43A;
  font-size: 28px;
}
.question .answer{
  font-weight: bold;
  line-height: 33px;
  padding: 10px 10px 0 40px;
  position: relative;
}
.question .answer::after{
  content: 'A';
  position: absolute;
  top: 10px;
  left: 5px;
  color: #E24E17;
  font-size: 28px;
}
.question span{
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .question_ttl p{
    font-size: 20px;
  }
  .question_list{
    padding: 25px 20px 20px;
  }
  .question .query{
    font-size: 18px;
    padding: 0 10px 10px 40px;
  }
  .question .query::after{
    top: -3px;
    left: 5px;
    font-size: 25px;
  }
  .question .answer{
    font-size: 16px;
    line-height: 28px;
    padding: 10px 10px 0 40px;
  }
  .question .answer::after{
    top: 10px;
    left: 5px;
    font-size: 25px;
  }
}

@media screen and (max-width: 767px) {
  .offer .pc{display: block;}
  .offer .sp{display: none;}
}
@media screen and (max-width: 600px) {
  .offer .pc{display: none;}
  .offer .sp{display: block;}
}

/*フッター*/
footer{
  background-color: #714928;
  padding: 15px 0;
}
.footer{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #fff;
}
.footer .logo{
  height: 50px;
  width: auto;
}
.footer_tel{
  text-align: right;
}
.footer_tel a{
  color: #fff;
  font-weight: bold;
}
.footer_tel p{
  font-size: 12px;
  margin: 5px 0 0;
}
@media screen and (max-width: 767px) {
  .footer{
    align-items: center;
    flex-direction: column;
  }
  .footer .logo{
    height: 40px;
  }
  .footer_tel{
    text-align: center;
    margin: 13px 0 0;
  }
  .footer_tel p{
    margin: 10px 0 0;
  }
}
