@charset "utf-8";
/*----------------------------------
  ボタン
------------------------------------*/
/* 白背景 */
.btn01 {
  width: 90%;
  max-width: 300px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  border: 1px solid #CCC;
  line-height: 1.4;
  padding: 14px 30px;
  text-align: center;
  border-radius: 30px;
  background-color: #FFF;
  text-decoration: none;
}
/* 背景透過 白枠 */
.btn02 {
  width: 90%;
  max-width: 300px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #FFF;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  border-radius: 30px;
}
/* 白背景(小) */
.btn03 {
  width: 100%;
  height: 32px;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border: 1px solid #CCC;
  line-height: 1;
  padding: 0;
  text-align: center;
  border-radius: 30px;
  background-color: #FFF;
}
/*----------------------------------
  矢印
------------------------------------*/
/*赤背景 白矢印右（背景表示）*/
.bg_ar_red {
  background: #FFF url("../img/ar_red.svg") no-repeat right 10px center;
  background-size: 16px auto;
}
/*白背景 緑矢印右（背景表示）*/
.bg_ar_green {
  background: url("../img/ar_green.svg") no-repeat right 10px center;
  background-size: 16px auto;
}
/*透過 赤矢印右（背景表示）*/
.bg_ar_red2 {
  background: url("../img/ar_red3.svg") no-repeat right 12px center;
  background-size: 14px auto;
}
/*透過 緑矢印右（背景表示）*/
.bg_ar_green2 {
  background: #FFF url("../img/ar_green2.svg") no-repeat right 12px center;
  background-size: 14px auto;
}
/*透過 緑矢印下（背景表示）*/
.bg_ar_green2_btm {
  background: #FFF url("../img/ar_green2-btm.svg") no-repeat right 10px center;
  background-size: 10px auto;
}
/*透過 白矢印右（背景表示）*/
.bg_ar_white {
  background: url("../img/ar_white.svg") no-repeat right 12px center;
  background-size: 14px auto;
}
/*赤背景 白矢印右（疑似要素）*/
.ar_red:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/ar_red.svg") no-repeat center;
  background-size: 14px auto;
}
/*白背景 緑矢印右（疑似要素）*/
.ar_green:after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/ar_green.svg") no-repeat center;
  background-size: 14px auto;
}
/*透過 緑矢印右（疑似要素）*/
.ar_green2:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/ar_green2.svg") no-repeat center;
  background-size: 12px auto;
}
/*透過 緑矢印下（疑似要素）*/
.ar_green2_btm:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url("../img/ar_green2-btm.svg") no-repeat center;
  background-size: 12px auto;
}
/*----------------------------------
  陰影
------------------------------------*/
/* 黒 */
.d-shadow {
  display: inline-block;
  box-shadow: 0 3px 8px rgb(0 0 0 / 15%);
}
/* 緑 */
.d-shadow-green {
  display: inline-block;
  box-shadow: 4px 4px 4px rgb(174 244 177 / 100%);
}
@media print, screen and (min-width: 768px) {
  /*----------------------------------
  ボタン
------------------------------------*/
  /* 白背景 */
  .btn01 {
    max-width: 460px;
  }
  /* 白背景(小) */
  .btn03 {
    /*    height: 40px !important;*/
  }
}
/* PC用1024px～（NPC）
---------------------------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
  /*----------------------------------
  ボタン
------------------------------------*/
  /* 白背景 */
  .btn01 {
    max-width: 560px;
    padding: 18px 30px;
    border-radius: 40px;
    transition: .2s all ease;
  }
  /* Hover */
  .btn01:hover {
    background-color: #FFF565;
    background-size: 20px auto;
    border: #FFF565 1px solid;
    text-decoration: none;
  }
  /* 背景透過 白枠 */
  .btn02 {
    border: 3px solid #FFF;
    transition: .2s all ease;
  }
  /* Hover */
  .btn02:hover {
    background-color: #008B11;
    border: 3px solid #008B11;
    text-decoration: none;
  }
  /* 白背景（小） */
  .btn03 {
    transition: .2s all ease;
  }
  /* Hover */
  .btn03:hover {
    background-color: #FFF565;
    border: #FFF565 1px solid;
    text-decoration: none;
  }
  /* 要素透過 */
  .bt_cl {
    opacity: 1;
    transition: .2s all ease;
  }
  .bt_cl:hover {
    opacity: .7;
  }
  /*----------------------------------
  矢印
------------------------------------*/
  /*赤背景 白矢印右（背景表示）*/
  .bg_ar_red {
    background-position: right 15px center;
    background-size: 20px auto;
  }
  /*白背景 緑矢印右（背景表示）*/
  .bg_ar_green {
    background-position: right 15px center;
    background-size: 20px auto;
  }
  /*透過 緑矢印右（背景表示）*/
  .bg_ar_green2 {
    background-position: right 15px center;
    background-size: 14px auto;
  }
  /*透過 緑矢印下（背景表示）*/
  .bg_ar_green2_btm {
    background-position: right 15px center;
    background-size: 12px auto;
  }
  /*透過 白矢印右（背景表示）*/
  .bg_ar_white {
    background-position: right 15px center;
    background-size: 20px auto;
  }
  /*赤背景 白矢印右（疑似要素）*/
  .ar_red:after {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
  /*白背景 緑矢印右（疑似要素）*/
  .ar_green:after {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
  /*透過 緑矢印下（疑似要素）*/
  .ar_green2_btm:after {
    width: 14px;
    height: 14px;
    background-size: 14px auto;
  }
  /*----------------------------------
  陰影
------------------------------------*/
  /* 黒 */
  .d-shadow {
    display: inline-block;
    box-shadow: 0 3px 12px rgb(0 0 0 / 15%);
  }
  /* 緑 */
  .d-shadow-green {
    display: inline-block;
    box-shadow: 16px 16px 2px rgb(174 244 177 / 100%);
    transition: .2s all ease;
  }
  .d-shadow-green:hover {
    box-shadow: 16px 16px 2px rgb(255 245 101 / 100%);
  }
}

/*----------------------------------
  SNSシェアボタン
------------------------------------*/
.sns_share_btn {
  border-top: #CCCCCC 1px solid;
  padding-top: 20px;
  margin-top: 27px;
}
.sns_share_btn * {
  font-size: initial !important;
}
.sns_share_btn h3 {
  font-size: 1.8rem !important;
  font-weight: bold !important;
  text-align: center;
}
.sns_share_btn ul {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.sns_share_btn li + li {
  margin-left: 10px;
}
/* TAB用768px～（TAB）
---------------------------------------------------------------------*/
@media print, screen and (min-width: 768px) {
  .sns_share_btn {
    padding-top: 40px !important;
    margin-top: 50px !important;
  }
  .sns_share_btn ul {
    margin-top: 5px;
  }
}
/* PC用1024px～（NPC）
---------------------------------------------------------------------*/
@media print, screen and (min-width: 1024px) {
  .sns_share_btn h3 {
    font-size: 2.4rem !important;
  }
  .sns_share_btn ul {
    margin-top: 10px;
  }
  .sns_share_btn li + li {
    margin-left: 15px;
  }
}
