@charset "UTF-8";
/*===cssのリセット===*/
html,div,span,iframe,h1,h2,h3,h4,h5,h6,p,img,small,strong,ol,ul,li,form,label,table,tbody,tfoot,thead,tr,th,td,footer,header,nav,section {
  font-size: 100%; margin: 0; padding: 0; vertical-align: baseline; border: 0; outline: 0; background: transparent;
}
footer,header,nav,section {
  display: block;
}
nav ul {
  list-style: none;
}
a {
  display: block; text-decoration: none;
}
a:hover {
  cursor: pointer;
  opacity: .7;
  transition: .3s all;
}
table {
  border-spacing: 0; border-collapse: collapse;
}
ol,ul,li{
  list-style: none;  padding:0;  margin:0;
}
/*===================================*/
body {
  color: #2E2E2E;
  background: #fff;
  font-size: 18px;
  line-height: 2;
  font-family: "Kiwi Maru", serif;
  margin: 0;
  padding: 0;
}
@media screen and (max-width:768px){
  body{
    font-size: 15px;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}
img {
  width: 100%;
  height: auto;
}
.only_pc{
  display: block!important;
}
.only_sp{
  display: none!important;
}
@media screen and (max-width:768px){
  .only_pc{
    display: none!important;
  }
  .only_sp{
    display: block!important;
  }
}
.inner{
  width: 95vw;
  max-width: 1200px;
  margin: 0 auto;
}
.section_box{
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width:768px){
  .section_box{
    padding: 70px 0;
  }
}
/* タイトル ==========================*/
img.ttl_en{
  max-width: 240px;
  margin: 0 auto;
  display: block;
}
.con_ttl{
  margin: 5px auto 50px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width:768px){
  .con_ttl{
    margin: 5px auto 35px;
  }
}
/*===================================*/

/* ヘッダー ===========================*/
header{
  background: #697569;
  color: #fff;
}
.header_con{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  line-height: 1;
  position: relative;
}
.header_con h1{
  font-size: 30px;
}
.header_con .info p{
  font-size: 12px;
  margin: 10px 0 0;
  text-align: right;
}
.header_con .info a.tel{
  font-size: 20px;
  text-align: right;
  color: #fff;
}
@media screen and (max-width:768px){
  .header_con{
    justify-content: center;
  }
  .header_con h1{
    font-size: 25px;
  }
  .header_con .sp_tel{
    position: absolute;
    top: 0;
    right: 5px;
    bottom: 0;
    margin: auto;
    width: 30px;
    height: 30px;
  }
}
/*===================================*/

/* ファーストビュー ====================*/
.fv{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/*===================================*/

/* メリット ==========================*/
.merit{
  background: #F5F5F5;
}
.merit_con li{
  display: flex;
  align-items: flex-start;
  padding: 0 0 30px;
}
.merit_con img{
  width: 50%;
  z-index: 1;
  margin: 0 0 -30px;
}
.merit_con .txt_box{
  width: 53%;
  background: #fff;
  box-shadow: 0px 3px 6px #00000030;
  padding: 4%;
  margin: 10% 0 0 -3%;
  box-sizing: border-box;
  z-index: 2;
}
.merit_con li:nth-of-type(2n) .txt_box{
  margin: 10% -3% 0 0;
}
.merit_con .merit_ttl{
  font-size: 25px;
  line-height: 1;
  padding: 40px 0;
  margin: 0 0 40px;
  text-align: center;
  position: relative;
}
.merit_con .merit_ttl::before{
  position: absolute;
  content: '';
  background: url(../img/leaf01.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 105px;
  height: 50px;
  top: 0;
  right: 0;
}
.merit_con .merit_ttl::after{
  position: absolute;
  content: '';
  background: url(../img/leaf02.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 105px;
  height: 50px;
  bottom: 0;
  left: 0;
}
.merit_con .txt_box .caption{
  color: #fff;
  background: #93AD93;
  border-radius: 7px;
  padding: 3%;
  margin: 10px 0 0;
}
@media screen and (max-width:768px){
  .merit_con li{
    flex-direction: column;
  }
  .merit_con img,
  .merit_con li:nth-of-type(2n) img{
    width: 90%;
    order: 1;
    max-width: 600px;
    margin: 0 auto;
  }
  .merit_con li:nth-of-type(2n) .txt_box,
  .merit_con .txt_box{
    width: 100%;
    margin: -2% 0 0 auto;
    order: 2;
  }
  .merit_con .merit_ttl::before,
  .merit_con .merit_ttl::after{
    width: 95px;
    height: 45px;
  }
}
/*===================================*/

/* サービス ==========================*/
.service{
  background: url(../img/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.service_con{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  gap: 4%;
}
.service_con li{
  background: #fff;
  width: 48%;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px #00000030;
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  text-align: center;
}
.service_con li::before{
  position: absolute;
  content: '';
  width: calc(100% - 25px);
  height: calc(100% - 25px);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border: 1px solid #697569;
}
.service_con li .dec_top{
  position: relative;
  display: block;
}
.service_con li .dec_top::before{
  position: absolute;
  content: '';
  background: url(../img/dec01.svg) no-repeat;
  background-color: #fff;
  background-position: center;
  width: 47px;
  height: 46px;
  top: 0;
  right: 0;
}
.service_con li .dec_top::after{
  position: absolute;
  content: '';
  background: url(../img/dec01.svg) no-repeat;
  background-color: #fff;
  background-position: center;
  width: 47px;
  height: 46px;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}
.service_con li p{
  padding: 40px 15px;
}
.service_con li .dec_bottom{
  position: relative;
  display: block;
}
.service_con li .dec_bottom::before{
  position: absolute;
  content: '';
  background: url(../img/dec01.svg) no-repeat;
  background-color: #fff;
  background-position: center;
  width: 47px;
  height: 47px;
  bottom: 0;
  right: 0;
  transform: rotate(90deg);
}
.service_con li .dec_bottom::after{
  position: absolute;
  content: '';
  background: url(../img/dec01.svg) no-repeat;
  background-color: #fff;
  background-position: center;
  width: 47px;
  height: 47px;
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}
@media screen and (max-width:768px){
  .service_con{
    flex-direction: column;
    gap: 20px;
  }
  .service_con li{
    width: 100%;
    margin: 0 !important;
  }
  .service_con li p {
    padding: 40px 20px;
  }
}
/*===================================*/

/* 料金 ==============================*/
.price_con{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.price_con li{
  background: url(../img/price_card.svg) no-repeat;
  background-size: 95%;
  background-position: center;
  width: 33%;
  min-width: 380px;
  height: 200px;
  box-sizing: border-box;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.price_con .price_ttl{
  font-size: 25px;
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 45px 25px 0;
  position: relative;
}
.price_con .price_ttl::after{
  position: absolute;
  content: '';
  background: url(../img/price_line.svg) no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 20px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.price_con .price_ttl img{
  width: auto;
  height: 50px;
  margin: 0 15px 0 0;
}
.price_con p{
  font-size: 32px;
  line-height: 1;
  text-align: center;
  margin: 10px 0 0;
}
@media screen and (max-width:500px){
  .price_con li{
    width: 100%;
    min-width: auto;
    height: 50vw;
  }
  .price_con .price_ttl{
    font-size: 7vw;
    padding: 0 10vw 7vw 0;
  }
  .price_con .price_ttl::after {
    height: 5vw;
  }
  .price_con .price_ttl img{
    height: 10vw;
  }
  .price_con p {
    font-size: 8vw;
    margin: 3vw 0 0;
  }
}
/*===================================*/

/* プロダクト =========================*/
.product{
  background: #F5F5F5;
}
.product_list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3%;
}
.product_list li{
  width: 50%;
  max-width: 430px;
  position: relative;
}
.product_list li::before{
  position: absolute;
  content: '';
  background-color: #F5F5F5;
  width: 60px;
  height: calc(60px / 2);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border-bottom: 1px solid #93AD93;
  transform: rotate(-45deg);
  top: -6px;
  left: -21px;
}
.product_list li::after{
  position: absolute;
  content: '';
  background-color: #F5F5F5;
  width: 60px;
  height: calc(60px / 2);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  border-bottom: 1px solid #93AD93;
  transform: rotate(135deg);
  right: -21px;
  bottom: 3px;
}
@media screen and (max-width:768px){
  .product_list {
    gap: 10px;
    flex-direction: column;
  }
  .product_list li{
    width: 100%;
  }
}
/*===================================*/

/*  お問い合わせ ======================*/
.contact{
  background: url(../img/bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.form{
  background: #fff;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 10px;
  box-sizing: border-box;
  box-shadow: 0px 3px 6px #00000030;
  line-height: 1.5;
}
.form_txt {
  margin: 0 0 40px auto;
}
form{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  max-width: 670px;
  margin: 0 auto;
}
.form_label{
  width: 35%;
  margin: 0 0 20px;
}
.form_input, .form_textarea, .form_esc{
  width: 60%;
  margin: 0 0 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 5px 10px;
  box-sizing: border-box;
}
.form_textarea{
  min-width: 60%;
  max-width: 60%;
  height: 80px;
  min-height: 50px;
  overflow: scroll;
}
.form_label span{
  background: #93AD93;
  color: #fff;
  line-height: 1;
  padding: 2px 5px 3px;
  border-radius: 3px;
  margin: 0 0 0 5px;
  font-size: 14px;
}
.form_privacy_ttl{
  width: 100%;
  margin: 0 0 10px;
}
.form_privacy{
  width: 100%;
  height: 100px;
  overflow: scroll;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px 10px 0;
  color: #747474;
  margin: 0 0 30px;
  font-size: 12px;
  box-sizing: border-box;
}
.form_privacy p{
  margin: 0 0 10px;
}
.form_agree{
  width: 100%;
  font-size: 14px;
  text-align: center;
  margin: 0 0 10px;
}
.submit_btn{
  background: #93AD93;
  width: 100%;
  max-width: 210px;
  height: 50px;
  line-height: 1;
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
  border: none;
  margin: auto;
  cursor: pointer;
}
.submit_btn[disabled]{
  background-color: #ddd;
  cursor: not-allowed;
}
.submit_btn:hover{
  opacity: .7;
  transition: .3s all;
}
@media screen and (max-width:768px){
  form{
    flex-direction: column;
  }
  .form_label {
    width: 100%;
    margin: 0 0 10px;
  }
  .form_input, .form_textarea, .form_esc {
    width: 100%;
  }
  .form_textarea{
    min-width: 100%;
    max-width: 100%;
  }
}

/* 確認画面 ==========================*/
#confirm .form_input, #confirm .form_textarea, #confirm .form_esc{
  border: none;
  padding: 0;
}
.submit_btn_area{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}
.submit_btn_area input{
  background: #93AD93;
  width: 100%;
  max-width: 210px;
  height: 50px;
  line-height: 1;
  color: #fff;
  padding: 5px;
  box-sizing: border-box;
  border: none;
}
.submit_btn_area input:first-of-type{
  background: #697569;
}
.submit_btn_area input:hover{
  opacity: .7;
  transition: .3s all;
}
@media screen and (max-width:768px){
  .submit_btn_area{
    gap: 15px;
  }
}

/* 完了画面 ==========================*/
#thanks{
  text-align: center;
}
/*===================================*/

/* フッター ===========================*/
footer{
  background: #697569;
  padding: 50px 0 20px;
}
.foot_con{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  line-height: 1.5;
  font-size: 14px;
}
.shop_info{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.shop_info .name{
  font-size: 30px;
}
.shop_info a.tel{
  color: #fff;
}
.sns{
  text-align: center;
}
.sns_list{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 0;
}
.sns_list a{
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns_list .icon{
  width: 32px;
}
footer .copy{
  color: #fff;
  font-size: 12px;
  text-align: center;
  margin: 30px 0 0;
}
@media screen and (max-width:550px){
  .foot_con {
    flex-direction: column;
    gap: 30px;
  }
  .shop_info{
    order: 2;
  }
  .sns{
    order: 1;
  }
}
/*===================================*/
