@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap');

/* base
------------------------------------------------------------------------------------------------- */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body{
  box-sizing: border-box;
  font-family: 'Noto Sans JP';
  font-size:16px;
  font-weight: 500 !important;
  line-height: 1.5;
  color: #1A1A1A;
  overflow-x: hidden;
  display:flex;
  flex-direction: column;
  height:auto !important;
  min-height:100vh;
  justify-content: flex-start;
}

img{
  width: 100%;
}

.container{
  width: 100%;
  padding-right: .75rem;
  padding-left: .75rem;
  margin-right: auto;
  margin-left: auto;
}

section > div{
  padding-top: 3rem;
  padding-bottom: 3rem;
}


@media (min-width:1280px) {
section > div{
  padding-top: 5rem;
  padding-bottom: 5rem;
}
}



/* header
-------------------------------------------------------------------------------------------------- */

#header{
  height: 70px;
}


.sp_Header{
  display: block;
}
header{
  position: relative;
}

header .sp_Header_navbar{
  flex-wrap:nowrap;
  background-color:#fff;
  width: 100%;
  height: 60px;
  position: fixed;
  display: flex;
  justify-content: space-between;
  top: 0;
  left: 0;
  z-index: 50;
  box-shadow: 0 3px 3px rgba(124, 129, 128, 0.2);
}
header .sp_Header_logo img{
  width: 12rem;
  margin: 5px;
}


.menuBtn{
  width: 4rem;
  padding: 0.9rem 0.62rem 0.62rem;
}




.sp_Header_inner{

  background: #fff;
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  transition: all 0s;
  overflow: auto;
}

.sp_Header_inner:active{
  display: block;
}


header .sp_Header_inner .closeBtn {
  width: 3rem;
  height: 3rem;
  position: fixed;
  top: 0;
  right: 0;
  margin: auto;
  z-index: 100;
}

.sp_Header_nav{
  text-align: center;
  margin-top: 3.125rem;
  margin-bottom: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 0.62rem;
  max-width: 700px;

}
.sp_Header_nav li img{
  width: 60%;
}

.sp_Header_item a{
  display: block;
  padding: 1rem 0;
  border-bottom: #569C67 1px solid;
}

.sp_Header_item{

  font-size: 1.2rem;
  font-weight: 600;
}
.sp_Header_item:first-child{
  margin-bottom: 1rem;
}

.sp_Header_inner_btn{
    background: transparent;
    border: 1px solid #569C67;
    background-color: #569C67;
    color: #ffffff;
    border-radius: 50px;
    min-width: 13em;
    padding: 0.25rem 0;
    margin: 0 auto;
    text-align: center;
    font-size: 1.25rem;
    max-width: 200px;
}
.sp_Header_inner_btn a{
  display: block;
  padding: 0.25rem 0;
}


.pc_homeHeader_navWrap{
  display: none;
}

.f_btn_fixed{
  flex-wrap:nowrap;
  background-color:rgba(86,156,103,0.9);
  width: 100%;
  position: fixed;
  display: flex;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  z-index: 10;
  display: block;
  text-align: center;
}
.f_btn_box{
  position: relative;
}

.f_btn_link{
  font-size: 1.5rem;
  color: #fff;
  display: flex;
  align-items: center;
  align-self: center;
  justify-content: center;
  padding: 15px;
  height: 90px;
  margin: 5px;
  border: #fff 1px solid;
  border-radius: 10px;
}


.f_btn_link img{
  width: 100%;
}
.f_btn_link::after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0;
  background: url(../img/icon_arrow03.png) center center no-repeat;
  z-index: 15;
}

@media (min-width:992px) {
  .sp_Header,.f_btn_fixed{
    display: none;
  }



  .pc_homeHeader_navWrap{
    display: block;
  }

  /* pc_nav */

  .pc_homeHeader_navWrap{
    display: block;
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #ffffff;
    box-shadow: 0 3px 3px rgba(187, 190, 190, 0.2);
  }

  .pc_homeHeader_navInnerWrap{
    height: 100%;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
  }

  .pc_homeHeader_nav{
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 100%;
  }

  .pc_homeHeader_navItem,.pc_homeHeader_btn{
    text-align: center;
    vertical-align: middle;
    position: relative;
    height: 100%;
  }

  .pc_homeHeader_navItem a{
    position: relative;
    display: block;
    padding: 0 16px 0 16px;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .pc_homeHeader_navItem a:active{
    opacity: .8;
  }

  .pc_homeHeader_logo{
    width: 12rem;
  }

  .pc_homeHeader_logo img{
    width: auto;
    height: 100%;
    padding: 10px;
  }

  .pc_homeHeader_navItem a span{
    word-break: normal;
    position: relative;
  }

  .pc_homeHeader_btn{
    text-align: center;
    height: 100%;
    position: relative;
  }

  .pc_homeHeader_btn a{
    background: transparent;
    border: 1px solid #569C67;
    background-color: #569C67;
    color: #ffffff;
    border-radius: 50px;
    /* min-width: 12.5rem; */
    padding: 0.25rem 1rem;
    margin: 17px 1rem 0;
    text-align: center;
    display: block;
    box-shadow: 0 5px 5px rgba(124, 129, 128, 0.2);
  }
}
@media (min-width:1280px) {
  .pc_homeHeader_navItem a::after  {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #569C67;
    bottom: 10px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    }

    .pc_homeHeader_navItem a:hover::after {
    transform: scale(1, 1);
    }
}

@media (min-width:1700px) {
  .pc_homeHeader_navInnerWrap{
    max-width: 1500px;
  }
}

/* 各セクション
-------------------------------------------------------------------------------------------------- */


#mv_wrap{
  margin: 0 5vw 0 5vw;
  position: relative;
}

.mv_img img{
  border-radius: 30px;
  margin-top: 10px;
}




/* 留寿都ウェルネスとは */

.br_pc{
  display: none;
}
.guide_box{
  margin-bottom: 2rem;
}

p.guide_txt{
  text-align: center;
  padding: 10px;
}



p.guide_txt span{
  color: #569C67;
}
p.guide_txt span.size{
  font-size: 1.5rem;
  color: #1A1A1A;
  line-height: 1.5rem;
}

.guide_list{
  margin-bottom: 2rem;
}

.guide_list img{
  padding-bottom: 1.25rem;
}
.guide_shop_all{
  position: relative;
}

.all_link{
  position: absolute;
  top: 35%;
  right: 10px;
  display: block;
  width: 40%;
  max-width: 120px;
}

@media (min-width:992px) {
  p.guide_txt{
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 750px;
    margin: 0 auto;
  }

  p.guide_txt span.size{
    font-size: 1.75rem;
  }


  .guide_list{
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto 4rem;
  }


  .guide_list_item{
  flex-basis: calc(45% - 10px);
  margin-left: 20px;
  }

  .all_link{
    top: 40%;
  }

  .guide_box{
    margin-bottom: 3.5rem;
  }

}

@media (min-width:1280px) {
  .br_pc{
    display: block;
  }

  p.guide_txt{
    max-width: 1200px;
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
  p.guide_txt span.size{
    font-size: 2rem;
  }
  .all_link{
    max-width: 140px;
    right: 5%;
  }
}


/* .common_btn{
  background: transparent;
  border: 1px solid #569C67;
  background-color: #569C67;
  color: #ffffff;
  border-radius: 50px;
  min-width: 13em;
  padding: 0.75rem 0;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 5px 5px rgba(124, 129, 128, 0.2);
  max-width: 400px;
} */


.common_btn a{
  display: block;
  background: transparent;
  border: 1px solid #569C67;
  background-color: #569C67;
  color: #ffffff;
  border-radius: 50px;
  min-width: 13em;
  padding: 0.75rem 30px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 5px 5px rgba(124, 129, 128, 0.2);
  max-width: 400px;
  transition: all 0.5s 0s ease;
}
.common_btn a span{
  position: relative;
  width: 100%;
}

.common_btn a span::after{
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 30px;
  height: 30px;
  margin: -15px 0 0;
  background: url(../img/icon_arrow03.png) center center no-repeat;
  /* z-index: 10; */
}

.common_btn a:hover{
  background-color: #ebfdef;
  color: #569C67;
}
.common_btn a:active{
  background-color: #ebfdef;
  color: #569C67;
}

@media (min-width:1280px) {
  .common_btn a{
    max-width: 580px;
    font-size: 1.5rem;
  }
}

/* ご利用方法～ */

ul.step_list{
  max-width: 300px;
  margin: 0 auto;
}

ul.step_list li{
  margin-bottom: 1rem;
}
#step,#shop{
  padding: 100px 0px 55px 0;
  position: relative;
  background-image: url("../img/bg_sp.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top 0px center;
}

.step_box h2{
  padding-top: 2rem;
}


@media (min-width:992px) {
  ul.step_list{
    display: flex;
    max-width: 1000px;
    padding-bottom: 3rem;
  }

  ul.step_list li{
    flex-basis: calc(30% - 10px);
    margin-left: 20px;
  }
  #step{
    padding: 150px 0px 55px 0;
    position: relative;
    background-image: url("../img/bg_shape01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 0px left;
  }


}


@media (min-width:1400px) {
  ul.step_list{
    max-width: 1200px;
  }
}






/* 寄付額に応じた～ */

.d_table_box{
  max-width: 600px;
  margin: auto;
}

table.d_table{
  border-collapse: collapse;
}

.d_table_lead{
  text-align: center;
  vertical-align: middle;
  border: #569C67 2px solid;
  color: #fff !important;
  background: #569C67 !important;
  font-size: 4.615vw;
  padding: 5px;
}

.d_table th,.d_table td{
  border: #569C67 2px solid;
  vertical-align: middle;
  text-align: center;
  font-size: 4.615vw;
  position: relative;
  padding: 5px;
  background: #fff;
  width: 50%;
}

.d_table th{
  color: #487E55;
  background: #E2F2E6;
}

.d_table td{
  font-weight: bold;
}

.d_table td:nth-of-type(odd)::after{
  content: "";
  display: block;
  width: 20px;
  height: 38px;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -15px;
  background-image: url(../img/icon_table_arrow.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  z-index: 5;
}



@media (min-width:768px) {
  .d_table th,.d_table td{
    font-size: 3.255vw;
  }
}


@media (min-width:992px) {
  .d_table_box{
    max-width: 900px;
    margin-bottom: 5rem;
  }
  .d_table th,.d_table td{
    font-size: 2rem;
    padding: 15px;
  }

  .d_table td:nth-of-type(odd)::after{
    width: 40px;
    height: 48px;
    right: -25px;
  }

}


/* トップ加盟店一覧 */

.each_shop{
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

ul.each_shop li{
flex-basis: calc(45% - 10px);
margin-bottom: 20px;
}

ul.each_shop li:nth-child(even) {
  margin-left: 20px;
}

ul.each_shop li p{
  text-align: center;
  font-size: .9rem;
}


.recruit_box{
  background: #fff;
  padding: 3rem 1rem;
  border-radius: 30px;
  border: #569C67 2px solid;
  max-width: 700px;
  margin:  0 auto 2rem;
}

.recruit_box p{
  padding-bottom: 1.5rem;

}


.pc_br{
  display: none;
}

.recruit_btn{
  max-width: 500px;
  margin: auto;
}

.recruit_btn a{
  display: block;
}

@media (min-width:992px) {
  .pc_br{
    display: block;
  }

  ul.each_shop li p{
    font-size: 1.25rem;
  }

  .recruit_box p{
    margin: 3rem 3rem 2rem;
    text-align: center;
    font-size: 1.25rem;
  }

  #shop{
    padding: 150px 0px 55px 0;
    position: relative;
    background-image: url("../img/bg_shape02.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top 0px left;
  }


}

@media (min-width:1280px) {
  ul.each_shop{
    max-width: 75%;
    max-width: 1100px;
    margin: 0 auto 3rem;
  }

  ul.each_shop li{
    flex-basis: calc(30% - 10px);
  }
  ul.each_shop li:nth-child(odd) {
    margin-left: 20px;
  }

  .recruit_box{
  max-width: 800px;
  }

  .recruit_box p{
    font-size: 1.25rem;
  }

}



/* よくある質問 */
.inquiry_box{
  width: 100%;
  max-width: 1000px;
  margin: auto;
}

.top_inquiry_table{
  border: 2px solid #569C67;
    padding: 30px 15px;
    position: relative;
}

.inquiry_heading{
  background: #569C67;
}
.inquiry_heading p{
  text-align: center;
  color: #fff;
  font-size:5.5vw;
  padding: 15px;
}

.inquiry p{
  font-size: 1.2rem;
}
.inquiry_qa{
  padding: 5%;
}

.inquiry_qa dt{
  margin-top: 2rem;
}

.inquiry_qa dt:first-child{
  margin-top: 1rem;
}
.inquiry_qa dd:last-child{
  margin-bottom: 2rem;
}


.inquiry_qa dt span{
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #569C67;
  display: inline-block;
  text-align:center;
  line-height: 1.1rem;
  position: relative;
  top: 4px;
}

.inquiry_qa dt span::before{
  content: 'Q';
    width: .9rem;
    height: .9rem;
    position: absolute;
    top: 0;
    left: 13px;
  font-weight: 600;
  font-size: .9rem;
}

.inquiry_qa dt{
  font-weight: 800;
  font-size: 1rem;
}

.inquiry_qa dd{
  font-size: .8rem;
}

.inquiry_qa dt, .inquiry_qa dd{

  text-indent: -1.25rem;
  padding-left: 1.25rem;
}

.inquiry_qa dd span{
  color: #fff;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: #F8AE75;
  display: inline-block;
  text-align:center;
  line-height: 1.1rem;
  position: relative;
  top: 5px;
}
.inquiry_qa dd span::before{
  content: 'A';
    width: .9rem;
    height: .9rem;
    position: absolute;
    top: 0;
    left: 13px;

}

@media (min-width:992px) {
  .top_inquiry_table{
    padding: 5%;
  }

  .inquiry_heading p{
    font-size: 3vw;
  }
}

@media (min-width:1280px) {


  .top_inquiry_table{
    padding: 6% 10% 8%;
  }

  .inquiry_heading p{
    font-size: 2.25rem;
  }

  .inquiry_qa dt{
    font-size: 1.1rem;
  }

  .inquiry_qa dd{
    font-size: 1rem;
  }


  /* .inquiry_qa dt, .inquiry_qa dd{
    font-size: 1rem;
    text-indent: -1.25rem;
    padding-left: 1.25rem;
  } */

}

@media (min-width:1400px) {
  .inquiry_heading p{
    font-size: 2.5vw;
  }
}

@media (min-width:1600px) {
  .inquiry_heading p{
    font-size: 2.5rem;
  }
}


/* お問い合わせ */

.common_contact{
  background: #569C67;
  text-align: center;
  max-width: 1000px;
  margin: auto;

}

.common_contact p{
  color: #fff;
  font-size: 5.5vw;
  padding: 15px;
  margin-bottom: 15px;
}

.contact_lead{
  font-size: 5.5vw;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
.contact_table{
  border-collapse: separate;

}
.contact_table th{
  color: #fff;
  background: #87CB97;
  display: block;
  text-align: center;
  padding: .25rem;
  font-size: 4.5vw;

}
.contact_table td{
  display: block;
  text-align: center;
  padding: .5rem;
  font-size: 4.5vw;
  font-weight: 600;
}

.br_sp{
  display: block;
}

@media (min-width:768px) {

  .common_contact_box{
    margin: auto;
    max-width: 700px;
  }

  .common_contact p,.contact_lead{
    font-size: 4vw;
  }

  .contact_table th,.contact_table td{
    font-size: 3.3854vw;
  }
}

@media (min-width:992px) {

  .br_sp{
    display: none;
  }

  .common_contact{
    max-width: 1000px;
  }

  .common_contact_box{
    max-width: 800px;
    margin-bottom: 3rem;
  }

  .common_contact p{
    font-size: 3.5vw;
  }
  .contact_lead{
    text-align: left;
    font-size: 2.5vw;
  }


  .contact_table th,.contact_table td{
    display: inline-block;
    font-size: 1.25rem;
    vertical-align: middle;
  }

  .contact_table th{
    width: 25%;
    margin-right: 2rem;
  }
}

@media (min-width:1280px) {
  .common_contact p{
    font-size: 2rem;
  }

  .contact_lead{
    font-size: 1.875rem;
    margin: 30px;
  }


  .contact_lead{
    font-size: 2rem;
  }

  .common_contact_box{
    max-width: 900px;
  }

  .contact_table th,.contact_table td{
    font-size: 1.85vw;
    margin: 10px;
  }



}


@media (min-width:1500px) {


  .contact_table th,.contact_table td{
    font-size: 1.5vw;
  }

  .common_contact_box{
    margin-bottom: 6rem;
  }

}













/*
 footer
----------------------------------------------------------------------------------------------------------------------*/

footer{
  background: #569C67;

}

.footer_logo{
  width: 50%;
  max-width: 350px;
  margin: 2rem auto;
}

.footer_inner_box01,.footer_inner_box02{
  border: 1px solid #fff;
  color: #fff;
  padding: 2rem;
  margin-bottom: 1.5rem;
}


.footer_inner_box01 dt{
  color: #569C67;
  background: #fff;
  text-align: center;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 30px;
}

.footer_inner_box02{
  font-size: 1.25rem;
  position: relative;
}

.footer_inner_box02 ul li a{
  display: block;
  padding-bottom: 0.5rem;
}

.footer_inner_box02 ul li a:hover{
  opacity: 0.8;
}

.copy{
  text-align: center;
  color: #fff;
  padding: 30px;
}

@media (min-width:992px) {
  .footer_logo{
    width: 40%;
    margin: 4rem auto;
  }

  .footer_inner{
    display: flex;
    justify-content: center;
    max-width: 1300px;
    margin: 0 auto 4rem;
  }

  .footer_inner_items{
    flex-basis: calc(40% - 10px);
    margin-left: 50px;
  }
}

@media (min-width:1280px) {

  .footer_logo{
    margin-bottom: 4rem;
  }

  .footer_inner_box01 dt{
    font-size: 1.25rem;
  }
  .footer_inner_box01 dd{
    font-size: 1.12rem;
    line-height: 1.75rem;
  }



}


/*
 parts
----------------------------------------------------------------------------------------------------------------------*/

h2{text-align:center; margin-bottom:1.5rem;}
h2 img{display:inline-block; width: 90%; max-width: 600px;}
h3{text-align:center; margin-bottom:1.5rem;}
h3 img{display:inline-block; width: 100%; max-width: 500px;}

@media (min-width:992px) {
  h2{
    margin-bottom: 3rem;
  }
}

@media (min-width:1280px) {
  h2 img{max-width: 650px;}
  h3 img{
    max-width: 600px;
  }
}

/* btn */
.btn{text-decoration:none; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-transition: all .3s; transition: all .3s; -moz-box-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; text-decoration:none !important;}
.btn-default{background:transparent; border:1px solid #42634b; background-color:#42634b; color:#ffffff; border-radius: 30px; min-width:13em; padding:0.75em 5em;}
.btn-default:hover, .btn-default:focus {background:#ffffff; color:#42634b;}
.btn-default:active {background:#ffffff; color:#42634b;}
.btn-default:focus {outline: none !important;}

/* color */
.bg_color{background-color: #F9FFEE;}

@media (min-width:1280px) {
  /* .bg_color::before{
  background: #fff url(../img/bg_shape02.png) no-repeat center center / cover;
  padding-top: 250px;
} */
}

/* container */
.container_m {max-width: 1100px; margin:0 auto;}
.container_s {max-width: 1000px; margin:0 auto;}
.container_ss {max-width: 800px; margin:0 auto;}
.container_xxs {max-width: 600px; margin:0 auto;}
.container_small{max-width: 300px; margin:0 auto;}
.container_xl {max-width:1140px; margin:0 auto;}

/* img-hover */
a .img-hover{ -webkit-transition: all .3s; transition: all .3s;}
a:hover .img-hover{opacity: 0.7;}

/*
 page
----------------------------------------------------------------------------------------------------------------------*/

/* 共通サブヘッダー */

.sub_homeHeader{
  background: url(../img/bg_header_title.png) no-repeat center center / cover;
  width: 100%;
  height: 200px;
  position: relative;
}
.sub_homeHeader_title{
   position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: -webkit-translate(-50%, -50%);
    transform: -webkit-translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 6.25vw;
    font-weight: bold;
    text-align: center;
    letter-spacing: 3px;
    padding: 10px;
    background-color: rgba( 255, 255, 255, 0.9 );
}

.sub_homeHeader_title h2{
  margin-bottom: 0 !important;
}

@media (min-width:768px) {
  .sub_homeHeader_title{
    font-size: 4.5vw;
  }


}

@media (min-width:992px) {
  .sub_homeHeader_title{
    font-size: 1.75rem;
    padding: 20px;
  }
}

@media (min-width:1280px) {
  .sub_homeHeader_title{
    font-size: 2rem;
    padding: 20px 35px;
  }
}



/* 利用方法 */


.attention_box{
  border: #DB1F1F solid 5px;
  padding: 5%;
  max-width: 800px;
  margin:  auto;
}

.attention_heading{
  text-align: center;
  margin-bottom: 1rem;
}

.attention_line{
  display: inline-block;
  margin: 0 auto;
  font-size: 1.5rem;
  color: #DB1F1F;
  border-bottom: #DB1F1F 2px solid;
}


.attention_list li{
  font-size: .9rem;
  text-indent: -.9rem;
  padding-left: .9rem;

}

.attention_list li span{
  content: '';
  width: .5rem;
  height: .5rem;
  background-color: #1A1A1A;
  display: inline-block;
  margin-right: 5px;

}

@media (min-width:1280px) {
  .attention_box{
    max-width: 1000px;
  }


  .attention_line{
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .attention_list li{
    font-size: 1.15rem;
    text-indent: -1.15rem;
    padding-left: 1.15rem;

  }

  .attention_list li span{
    width: .8rem;
    height: .8rem;
  }


}


/* e_加盟店一覧 */

.shop_list_box{
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.shop_list_heading{
  border-bottom: 2px #569C67 solid;
  margin-bottom: 1.5rem;
}
.shop_list_heading p{
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 5.5vw;
}

.kameiten_list{
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.kameiten_list_item{
  flex-basis: calc(33% - 5px);
  margin-left: 5px;
  margin-bottom: 1rem;
}
.kameiten_list_item p{
  text-align: center;
  font-size: 2.083vw;
  font-weight: 700;
}

@media (min-width:768px){
  .shop_list_heading p{
    font-size: 4vw;
  }

}


@media (min-width:992px) {

  .kameiten_list{
    padding: 0 5%;
  }

  .shop_list_heading p{
    font-size: 3.2vw;
  }

  .kameiten_list_item{
    flex-basis: calc(25% - 5px);

  }

  .kameiten_list_item p{
    font-size: 1.6129vw;
    margin-bottom: 25px;

  }

}


@media (min-width:1280px) {

  .shop_list_heading {
    margin-bottom: 3rem;
  }

  .shop_list_heading p{
    font-size: 2.5vw;
  }

  .kameiten_list_item{
    flex-basis: calc(25% - 10px);
    margin-left: 10px;

  }

  .kameiten_list_item p{
    font-size: 1.125vw;
  }

}

@media (min-width:1600px) {

  .shop_list_heading p{
    font-size: 2vw;
  }

  .kameiten_list_item p{
    font-size: 1rem;
  }
}


/* e_よくある質問 */

.common_sub_btn a{
  display: block;
  background: transparent;
  border: 1px solid #569C67;
  background-color: #569C67;
  color: #ffffff;
  border-radius: 50px;
  min-width: 13em;
  padding: 0.75rem 30px;
  margin: 0 auto 1rem;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 5px 5px rgba(124, 129, 128, 0.2);
  max-width: 400px;
  transition: all 0.5s 0s ease;
}
.common_sub_btn a span{
  position: relative;
  width: 100%;
}
/*
.common_sub_btn a:hover{
  background-color: #ebfdef;
  color: #569C67;
}
.common_sub_btn a:active{
  background-color: #ebfdef;
  color: #569C67;
} */


.d_link{
  text-decoration: underline;
}

/* dd table */

table{
  border-collapse: collapse;
  width: 100%;
}

.table01{
  display: inline-block;
  margin-bottom: 1.5rem;
}

.table01 th,.table01 td{
  padding: 10px;
  border: solid 1px #ccc;
  box-sizing:border-box;
}

.table01 th{
  width: 40%;
  font-weight: 700;
}

th.th01{
  background: #e7e7e7;
  font-weight: 800;
}

@media (min-width:992px) {
  .btn_box{
    display: flex;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
    justify-items: center;
  }

  .btn_box_item{
    width: 48%;
    margin-left: 10px;
  }

  .inquiry_box.__sub{
    max-width: 1100px;
  }
}


@media (min-width:1280px) {
  .common_sub_btn a{
    max-width: 580px;
    font-size: 1.5rem;
  }



}


























































































