@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny-green {
  background: #03C300;
  background: linear-gradient(-45deg, #03C300 50%, #2dff2a 60%, #03C300 70%);
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

.animation_shiny-orange {
  background: #E67330;
  background: linear-gradient(-45deg, #E67330 50%, #f1b18b 60%, #E67330 70%);
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pokopoko_txt {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  40% {
    opacity: 1;
    transform: scale(1.1);
  }
  60% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* animationここまで */
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "Noto Sans JP", sans-serif !important;
  color: #333333 !important;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

h3 {
  margin: 0 !important;
}

p {
  margin: 0 !important;
}

.section_tag {
  color: #FFF !important;
  font-size: 16px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #E67330;
  border-radius: 100px;
  padding: 8px 16px 10px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 460px) {
  .section_tag {
    padding: 6px 16px 7px;
  }
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../img/lp-img/lp_bg.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .bg {
    z-index: 2;
  }
}
@media screen and (max-width: 600px) {
  .bg {
    display: none;
  }
}

/* 上層固定背景 内部 */
.bg_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .bg_content {
    display: none;
  }
}

.bg_inner {
  width: 500px;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5vw;
}
@media screen and (max-width: 1200px) {
  .bg_inner {
    width: 360px;
    left: 4vw;
  }
}

.bg_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 1200px) {
  .bg_txt {
    font-size: 19px;
  }
}

.bg_logo {
  width: 100%;
  margin-bottom: 28px;
}

.bg_btn {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.bg_btn a {
  position: relative;
  transition: all 0.3s;
}
.bg_btn a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #FFF;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.bg_btn a:hover {
  opacity: 0.6;
}

.bg_btn_line {
  display: flex;
  border-radius: 100px;
  background-color: #03C300;
  width: 320px;
  height: 74px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.bg_btn_line img {
  width: 40px;
}

.bg_btn_line_txt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding-right: 26px;
}
.bg_btn_line_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF !important;
  font-weight: 700;
  font-size: 20px;
}

.bg_btn_tel {
  display: flex;
  border-radius: 100px;
  background-color: #E67330;
  width: 320px;
  height: 74px;
  justify-content: center;
  align-items: center;
}

.bg_btn_tel_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.bg_btn_tel_txt span:nth-child(1) {
  margin: 0 auto 4px;
  color: #FFF !important;
  font-weight: 700;
  font-size: 20px;
}
.bg_btn_tel_txt span:nth-child(2) {
  margin: 0 auto;
  color: #FFF !important;
  font-weight: 700;
  font-size: 16px;
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 460px;
  top: 0;
  right: 8%;
  background-color: #FFF;
}
@media screen and (max-width: 1200px) {
  .lp_body {
    right: 5%;
  }
}
@media screen and (max-width: 1000px) {
  .lp_body {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 460px) {
  .lp_body {
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

/*---------- header ----------*/
.header {
  background-color: #FFF;
}

.header_content {
  width: 100%;
  padding: 16px 12px;
}
@media screen and (max-width: 460px) {
  .header_content {
    padding: 16px 6px;
  }
}

.header_top {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  margin-bottom: 8px;
}
@media screen and (max-width: 460px) {
  .header_top {
    font-size: 12px;
  }
}

.header_main {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
@media screen and (max-width: 375px) {
  .header_main {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

.header_logo {
  width: 140px;
}
@media screen and (max-width: 460px) {
  .header_logo {
    width: 100px;
  }
}

.header_btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 460px) {
  .header_btn {
    gap: 2px;
  }
}

.header_btn a {
  width: 140px;
  height: 42px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 460px) {
  .header_btn a {
    width: 120px;
  }
}
.header_btn a::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: #FFF;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 52%;
  right: 8px;
  transform: translateY(-50%);
}
@media screen and (max-width: 460px) {
  .header_btn a::after {
    width: 4px;
  }
}
.header_btn a:hover {
  opacity: 0.6;
}

.header_btn_line {
  background-color: #03C300;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_btn_line_txt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  padding-right: 14px;
}
.header_btn_line_txt img {
  width: 20px;
}
@media screen and (max-width: 460px) {
  .header_btn_line_txt img {
    width: 18px;
  }
}
.header_btn_line_txt span {
  color: #FFF !important;
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .header_btn_line_txt span {
    font-size: 12px;
  }
}

.header_btn_tel {
  background-color: #E67330;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_btn_tel_txt {
  color: #FFF !important;
  font-size: 14px;
  font-weight: 700;
  padding-right: 10px;
}
@media screen and (max-width: 460px) {
  .header_btn_tel_txt {
    font-size: 12px;
  }
}

.header_nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.header_nav li {
  border-right: 1.6px solid #707070;
  padding: 2px 10px 4px;
}
@media screen and (max-width: 460px) {
  .header_nav li {
    padding: 2px 6px 4px;
  }
}
@media screen and (max-width: 350px) {
  .header_nav li {
    padding: 2px 4px 4px;
  }
}
.header_nav li:last-child {
  border-right: none;
}

.header_nav li a {
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  color: #333333 !important;
}
@media screen and (max-width: 460px) {
  .header_nav li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .header_nav li a {
    font-size: 13px;
  }
}
@media screen and (max-width: 350px) {
  .header_nav li a {
    font-size: 12px;
  }
}
.header_nav li a:hover {
  opacity: 0.6;
}

/*---------- fv ----------*/
.fv {
  background-color: #FFF1E8;
  padding-bottom: 20px;
}

.fv_main {
  font-size: 45px;
  font-weight: 700;
  color: #E67330 !important;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
@media screen and (max-width: 460px) {
  .fv_main {
    font-size: 38px;
  }
}
@media screen and (max-width: 400px) {
  .fv_main {
    font-size: 35px;
  }
}
@media screen and (max-width: 375px) {
  .fv_main {
    font-size: 32px;
  }
}

.fv_main > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
}

.fv_main span {
  opacity: 0;
  transform: scale(0.6);
}

.fv_main_top {
  margin-bottom: 18px;
}

.fv_main_top span:nth-child(1) {
  animation: pokopoko_txt 1s 0.5s ease-in-out forwards;
}
.fv_main_top span:nth-child(2) {
  animation: pokopoko_txt 1s 0.7s ease-in-out forwards;
}
.fv_main_top span:nth-child(3) {
  animation: pokopoko_txt 1s 0.9s ease-in-out forwards;
}
.fv_main_top span:nth-child(4) {
  animation: pokopoko_txt 1s 1.1s ease-in-out forwards;
}
.fv_main_top span:nth-child(5) {
  animation: pokopoko_txt 1s 1.3s ease-in-out forwards;
}

.fv_main_bottom span {
  display: block;
  position: relative;
}
.fv_main_bottom span::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333333;
  width: 6px;
  height: 6px;
  border-radius: 100%;
}

.fv_main_bottom span:nth-child(1) {
  animation: pokopoko_txt 1s 0.7s ease-in-out forwards;
}
.fv_main_bottom span:nth-child(2) {
  animation: pokopoko_txt 1s 0.9s ease-in-out forwards;
}
.fv_main_bottom span:nth-child(3) {
  animation: pokopoko_txt 1s 1.1s ease-in-out forwards;
}
.fv_main_bottom span:nth-child(4) {
  animation: pokopoko_txt 1s 1.3s ease-in-out forwards;
}
.fv_main_bottom span:nth-child(5) {
  animation: pokopoko_txt 1s 1.5s ease-in-out forwards;
}
.fv_main_bottom span:nth-child(6) {
  animation: pokopoko_txt 1s 1.7s ease-in-out forwards;
}
.fv_main_bottom span:nth-child(7) {
  animation: pokopoko_txt 1s 1.9s ease-in-out forwards;
}
.fv_main_bottom span:nth-child(8) {
  animation: pokopoko_txt 1s 2.1s ease-in-out forwards;
}
.fv_main_bottom span:nth-child(9) {
  animation: pokopoko_txt 1s 2.3s ease-in-out forwards;
}

.fv_bottom {
  width: -moz-fit-content;
  width: fit-content;
  border-top: 2px solid #333333;
  border-bottom: 2px solid #333333;
  margin: 0 auto;
  padding: 1px 2px 3px;
  animation: fadein 0.5s 2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.fv_bottom_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 460px) {
  .fv_bottom_txt {
    font-size: 28px;
  }
}
@media screen and (max-width: 400px) {
  .fv_bottom_txt {
    font-size: 25px;
  }
}
@media screen and (max-width: 375px) {
  .fv_bottom_txt {
    font-size: 23px;
  }
}
.fv_bottom_txt span {
  color: #E67330 !important;
}

/*---------- check ----------*/
.check {
  background: linear-gradient(180deg, #FFF1E8 0%, #FFF 100%);
}

.check_content {
  margin-bottom: 16px;
}

.check_heading {
  background-color: #E67330;
  padding: 8px 0;
  width: 100%;
  margin-bottom: 12px;
}

.check_heading h2 {
  color: #FFF !important;
  font-size: 22px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 460px) {
  .check_heading h2 {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .check_heading h2 {
    font-size: 16px;
  }
}
.check_heading h2 span {
  font-size: 28px;
}
@media screen and (max-width: 460px) {
  .check_heading h2 span {
    font-size: 25px;
  }
}
@media screen and (max-width: 400px) {
  .check_heading h2 span {
    font-size: 22px;
  }
}

@media screen and (max-width: 460px) {
  .check_heading_pc {
    display: none;
  }
}

.check_heading_sp {
  display: none;
}
@media screen and (max-width: 460px) {
  .check_heading_sp {
    display: block;
  }
}

.check_item {
  padding: 0 4px;
}

.check_item_img {
  background-color: #FFF;
}

.check_item_txt span {
  display: block;
  font-size: 12px;
}

/*---------- cta ----------*/
.cta {
  background-color: #FFF1E8;
  padding-bottom: 20px;
}

.cta_heading {
  background-color: #E67330;
  padding: 12px 0;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 460px) {
  .cta_heading {
    padding: 10px 0;
  }
}
.cta_heading::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -8px;
  height: 10px;
  width: 32px;
  background-color: #E67330;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.cta_heading h2 {
  color: #FFF !important;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1.6;
}
@media screen and (max-width: 350px) {
  .cta_heading h2 {
    font-size: 17px;
  }
}

.cta_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  margin: 0 auto 16px;
}
.cta_txt span:nth-child(1) {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .cta_txt span:nth-child(1) {
    font-size: 20px;
  }
}
.cta_txt span:nth-child(2) {
  color: #E67330 !important;
  font-size: 28px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .cta_txt span:nth-child(2) {
    font-size: 26px;
  }
}

.cta_btn {
  padding: 20px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #FFF;
  border-radius: 5px;
  width: 87%;
}
@media screen and (max-width: 460px) {
  .cta_btn {
    font-size: 20px;
    width: 94%;
  }
}

.cta_btn a {
  position: relative;
  transition: all 0.3s;
}
.cta_btn a::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #FFF;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}
.cta_btn a:hover {
  opacity: 0.6;
}

.cta_btn_line {
  display: flex;
  border-radius: 100px;
  background-color: #03C300;
  width: 320px;
  height: 74px;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
}
@media screen and (max-width: 460px) {
  .cta_btn_line {
    width: 300px;
  }
}
@media screen and (max-width: 350px) {
  .cta_btn_line {
    width: 280px;
  }
}
.cta_btn_line img {
  width: 40px;
}
@media screen and (max-width: 460px) {
  .cta_btn_line img {
    width: 32px;
  }
}

.cta_btn_line_txt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding-right: 26px;
}
.cta_btn_line_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF !important;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 460px) {
  .cta_btn_line_txt span {
    font-size: 18px;
  }
}

.cta_btn_tel {
  display: flex;
  border-radius: 100px;
  background-color: #E67330;
  width: 320px;
  height: 74px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .cta_btn_tel {
    width: 300px;
  }
}
@media screen and (max-width: 350px) {
  .cta_btn_tel {
    width: 280px;
  }
}

.cta_btn_tel_txt span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.cta_btn_tel_txt span:nth-child(1) {
  margin: 0 auto 4px;
  color: #FFF !important;
  font-weight: 700;
  font-size: 20px;
}
@media screen and (max-width: 460px) {
  .cta_btn_tel_txt span:nth-child(1) {
    font-size: 18px;
  }
}
.cta_btn_tel_txt span:nth-child(2) {
  margin: 0 auto;
  color: #FFF !important;
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 460px) {
  .cta_btn_tel_txt span:nth-child(2) {
    font-size: 14px;
  }
}

/*---------- attention ----------*/
.attention {
  position: relative;
}

.attention_txt {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.attention_txt span {
  display: block;
  color: #FFF !important;
  background-color: #E67330;
  font-size: 22px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 8px 6px 28px;
  margin-bottom: 6px;
}
@media screen and (max-width: 460px) {
  .attention_txt span {
    font-size: 19px;
  }
}
@media screen and (max-width: 350px) {
  .attention_txt span {
    font-size: 17px;
  }
}
.attention_txt span:last-child {
  margin-bottom: 0;
}

/*---------- reasons ----------*/
.reasons {
  padding: 32px 0;
  background-image: url("../img/lp-img/reasons_bg.webp");
  background-size: cover;
  background-repeat: repeat-y;
}

.reasons_heading {
  margin-bottom: 70px;
}

.reasons_heading > div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  font-size: 35px;
  font-weight: 700;
  color: #E67330 !important;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .reasons_heading > div {
    font-size: 30px;
  }
}
@media screen and (max-width: 375px) {
  .reasons_heading > div {
    font-size: 27px;
  }
}

.reasons_heading_top {
  margin: 0 auto 12px;
}

.reasons_heading_top span {
  opacity: 0;
  transform: scale(0.6);
}

.move .reasons_heading_top span:nth-child(1) {
  animation: pokopoko_txt 1s 0.1s ease-in-out forwards;
}
.move .reasons_heading_top span:nth-child(2) {
  animation: pokopoko_txt 1s 0.3s ease-in-out forwards;
}
.move .reasons_heading_top span:nth-child(3) {
  animation: pokopoko_txt 1s 0.4s ease-in-out forwards;
}
.move .reasons_heading_top span:nth-child(4) {
  animation: pokopoko_txt 1s 0.5s ease-in-out forwards;
}
.move .reasons_heading_top span:nth-child(5) {
  animation: pokopoko_txt 1s 0.7s ease-in-out forwards;
}

.reasons_heading_bottom span {
  opacity: 0;
  transform: scale(0.6);
}

.move .reasons_heading_bottom span:nth-child(1) {
  animation: pokopoko_txt 1s 0s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(2) {
  animation: pokopoko_txt 1s 0.2s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(3) {
  animation: pokopoko_txt 1s 0.3s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(4) {
  animation: pokopoko_txt 1s 0.5s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(5) {
  animation: pokopoko_txt 1s 0.6s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(6) {
  animation: pokopoko_txt 1s 0.8s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(7) {
  animation: pokopoko_txt 1s 0.9s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(8) {
  animation: pokopoko_txt 1s 1s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(9) {
  animation: pokopoko_txt 1s 1.1s ease-in-out forwards;
}
.move .reasons_heading_bottom span:nth-child(10) {
  animation: pokopoko_txt 1s 1.2s ease-in-out forwards;
}

.reasons_content {
  width: 87%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .reasons_content {
    width: 94%;
  }
}

.reasons_item {
  background-color: #FFF;
  padding: 230px 20px 16px;
  border-radius: 8px;
  border: 2px solid #E67330;
  position: relative;
  margin-bottom: 64px;
}
@media screen and (max-width: 460px) {
  .reasons_item {
    padding: 210px 20px 16px;
  }
}
@media screen and (max-width: 350px) {
  .reasons_item {
    padding: 190px 16px 16px;
  }
}
.reasons_item:last-child {
  margin-bottom: 0;
}

.reasons_img {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
}
@media screen and (max-width: 460px) {
  .reasons_img {
    width: 300px;
  }
}
@media screen and (max-width: 350px) {
  .reasons_img {
    width: 280px;
  }
}

.reasons_txt h3 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: #E67330 !important;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px !important;
}
@media screen and (max-width: 460px) {
  .reasons_txt h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 350px) {
  .reasons_txt h3 {
    font-size: 20px;
  }
}

.reasons_txt p {
  line-height: 1.8;
  font-size: 16px;
  text-align: justify;
}

/*---------- area ----------*/
.area {
  background-color: #FEFADE;
  padding: 20px 0;
  overflow-x: hidden;
}

.area_heading_top {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6px;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 460px) {
  .area_heading_top {
    font-size: 16px;
  }
}
.area_heading_top span {
  font-size: 22px;
  font-weight: 700;
  color: #E67330 !important;
}
@media screen and (max-width: 460px) {
  .area_heading_top span {
    font-size: 20px;
  }
}

@media screen and (max-width: 460px) {
  .area_heading_top_pc {
    display: none;
  }
}

.area_heading_top_sp {
  display: none;
}
@media screen and (max-width: 460px) {
  .area_heading_top_sp {
    display: block;
  }
}

.area_heading_bottom {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
  color: #E67330 !important;
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 460px) {
  .area_heading_bottom {
    font-size: 22px;
  }
}
@media screen and (max-width: 350px) {
  .area_heading_bottom {
    font-size: 20px;
  }
}

.area_heading_bottom.custom {
  margin: 0 16px 8px;
  font-size: 20px;
}
@media screen and (max-width: 460px) {
  .area_heading_bottom.custom {
    font-size: 18px;
  }
}
@media screen and (max-width: 350px) {
  .area_heading_bottom.custom {
    font-size: 16px;
  }
}
.area_heading_bottom.custom small{
  font-weight:normal;
  color:#222;
}


.area_txt {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px !important;
  line-height: 1.6;
  font-size: 16px;
}
@media screen and (max-width: 460px) {
  .area_txt {
    font-size: 15px;
  }
}

.area_content {
  width: 87%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 460px) {
  .area_content {
    width: 94%;
  }
}

.area_bubble {
  position: absolute;
  width: 130px;
  transform: rotate(7deg) translateX(200px);
  top: -16px;
  right: -16px;
}
@media screen and (max-width: 460px) {
  .area_bubble {
    right: -8px;
    width: 110px;
  }
}

.area_bubble.move {
  animation: area_bubble 0.6s 0.4s forwards;
}

@keyframes area_bubble {
  0% {
    transform: rotate(7deg) translateX(200px);
  }
  100% {
    transform: rotate(7deg);
  }
}
/*---------- voice ----------*/
.voice {
  padding: 32px 0;
  background-image: url("../img/lp-img/reasons_bg.webp");
  background-size: cover;
  background-repeat: repeat-y;
}

.voice_heading {
  margin-bottom: 16px;
}

.voice_heading > span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
  font-size: 18px;
}
@media screen and (max-width: 460px) {
  .voice_heading > span {
    font-size: 16px;
    margin: 0 auto 4px;
  }
}
.voice_heading > span span {
  color: #E67330 !important;
  font-weight: 700;
  font-size: 22px;
  line-height: 0.9;
}

.voice_heading h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.voice_heading h2 span {
  color: #E67330 !important;
  font-size: 28px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
}
@media screen and (max-width: 460px) {
  .voice_heading h2 span {
    font-size: 26px;
  }
}

.move.voice_heading h2 span:nth-child(1) {
  animation: pokopoko_txt 1s 0s ease-in-out forwards;
}
.move.voice_heading h2 span:nth-child(2) {
  animation: pokopoko_txt 1s 0.2s ease-in-out forwards;
}
.move.voice_heading h2 span:nth-child(3) {
  animation: pokopoko_txt 1s 0.3s ease-in-out forwards;
}
.move.voice_heading h2 span:nth-child(4) {
  animation: pokopoko_txt 1s 0.5s ease-in-out forwards;
}
.move.voice_heading h2 span:nth-child(5) {
  animation: pokopoko_txt 1s 0.6s ease-in-out forwards;
}

.voice_content {
  width: 87%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .voice_content {
    width: 94%;
  }
}

.voice_item {
  background-color: #FFF;
  border: 1.6px solid #BFBFBF;
  padding: 16px;
  margin-bottom: 16px;
}
.voice_item:last-child {
  margin-bottom: 0;
}

.voice_item h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px !important;
}
@media screen and (max-width: 460px) {
  .voice_item h3 {
    font-size: 19px;
    margin-bottom: 8px !important;
  }
}

.voice_item > span {
  font-size: 18px;
  display: block;
  margin-bottom: 6px;
}
@media screen and (max-width: 460px) {
  .voice_item > span {
    font-size: 17px;
  }
}
.voice_item > span span {
  color: #EABE50 !important;
}

.voice_item p {
  font-size: 15px;
  line-height: 1.8;
  text-align: justify;
}
@media screen and (max-width: 460px) {
  .voice_item p {
    line-height: 1.6;
  }
}

/*---------- flow ----------*/
.flow {
  padding: 32px 0;
  background-color: #FEFADE;
}

.flow_heading {
  margin-bottom: 16px;
}

.flow_heading > span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4px;
  font-size: 18px;
}
@media screen and (max-width: 460px) {
  .flow_heading > span {
    font-size: 16px;
  }
}
@media screen and (max-width: 350px) {
  .flow_heading > span {
    font-size: 15px;
  }
}
.flow_heading > span span {
  color: #E67330 !important;
  font-weight: 700;
  font-size: 22px;
}
@media screen and (max-width: 460px) {
  .flow_heading > span span {
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  .flow_heading > span span {
    font-size: 18px;
  }
}

.flow_heading h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.flow_heading h2 span {
  color: #E67330 !important;
  font-size: 28px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
}
@media screen and (max-width: 460px) {
  .flow_heading h2 span {
    font-size: 26px;
  }
}

.move.flow_heading h2 span:nth-child(1) {
  animation: pokopoko_txt 1s 0s ease-in-out forwards;
}
.move.flow_heading h2 span:nth-child(2) {
  animation: pokopoko_txt 1s 0.2s ease-in-out forwards;
}
.move.flow_heading h2 span:nth-child(3) {
  animation: pokopoko_txt 1s 0.4s ease-in-out forwards;
}
.move.flow_heading h2 span:nth-child(4) {
  animation: pokopoko_txt 1s 0.5s ease-in-out forwards;
}
.move.flow_heading h2 span:nth-child(5) {
  animation: pokopoko_txt 1s 0.7s ease-in-out forwards;
}
.move.flow_heading h2 span:nth-child(6) {
  animation: pokopoko_txt 1s 0.8s ease-in-out forwards;
}
.move.flow_heading h2 span:nth-child(7) {
  animation: pokopoko_txt 1s 1s ease-in-out forwards;
}

.flow_content {
  background-color: #FFF;
  width: 87%;
  margin: 0 auto;
  padding: 14px;
}
@media screen and (max-width: 460px) {
  .flow_content {
    width: 94%;
    padding: 16px 20px;
  }
}

.flow_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
@media screen and (max-width: 460px) {
  .flow_item {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
.flow_item:last-child {
  margin-bottom: 0;
}
.flow_item img {
  width: 130px;
}
@media screen and (max-width: 460px) {
  .flow_item img {
    width: 180px;
    margin: 0 auto;
  }
}

.flow_txt_top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.flow_txt_top span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF !important;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  background-color: #E67330;
  padding: 2px 12px 3px;
}

.flow_txt_top h3 {
  font-size: 18px;
  font-weight: 700;
  color: #E67330 !important;
}

.flow_txt p {
  font-size: 15px;
  line-height: 1.3;
}
@media screen and (max-width: 460px) {
  .flow_txt p {
    width: 100%;
    text-align: justify;
  }
}

.flow_arrow {
  width: 60px;
  height: 16px;
  background-color: #E67330;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  margin: 0 auto 12px;
}

/*---------- qa ----------*/
.qa {
  background-color: #F5F5F5;
  padding: 32px 0;
}

.qa_heading {
  margin-bottom: 20px;
}

.qa_heading h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.qa_heading h2 span {
  color: #E67330 !important;
  font-size: 28px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
}
@media screen and (max-width: 460px) {
  .qa_heading h2 span {
    font-size: 26px;
  }
}

.move.qa_heading h2 span:nth-child(1) {
  animation: pokopoko_txt 1s 0s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(2) {
  animation: pokopoko_txt 1s 0.2s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(3) {
  animation: pokopoko_txt 1s 0.4s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(4) {
  animation: pokopoko_txt 1s 0.5s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(5) {
  animation: pokopoko_txt 1s 0.7s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(6) {
  animation: pokopoko_txt 1s 0.8s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(7) {
  animation: pokopoko_txt 1s 1s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(8) {
  animation: pokopoko_txt 1s 1.2s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(9) {
  animation: pokopoko_txt 1s 1.4s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(10) {
  animation: pokopoko_txt 1s 1.6s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(11) {
  animation: pokopoko_txt 1s 1.8s ease-in-out forwards;
}
.move.qa_heading h2 span:nth-child(12) {
  animation: pokopoko_txt 1s 2s ease-in-out forwards;
}
.qa_content {
  width: 87%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .qa_content {
    width: 94%;
  }
}

.qa_item {
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #E67330;
  margin-bottom: 16px;
}
.qa_item:last-child {
  margin-bottom: 0;
}

.qa_title {
  background-color: #E67330;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
}
.qa_title img {
  width: 26px;
}
@media screen and (max-width: 460px) {
  .qa_title img {
    width: 22px;
  }
}
.qa_title p {
  font-size: 16px;
  color: #FFF !important;
  font-weight: 500;
  line-height: 1.4;
}

.qa_txt {
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 6px;
  padding: 12px 16px;
}
.qa_txt img {
  width: 26px;
}
@media screen and (max-width: 460px) {
  .qa_txt img {
    width: 22px;
  }
}
.qa_txt p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

/*---------- recommend ----------*/
.recommend {
  padding: 32px 0;
  background-image: url(../img/lp-img/recommend_bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.recommend_img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 185px;
}
@media screen and (max-width: 460px) {
  .recommend_img {
    width: 130px;
  }
}
@media screen and (max-width: 375px) {
  .recommend_img {
    width: 110px;
  }
}

.recommend_content {
  background-color: rgba(255, 255, 255, 0.67);
  border: 2px solid #E67330;
  width: 87%;
  margin: 0 auto;
  padding: 24px 0;
}
@media screen and (max-width: 460px) {
  .recommend_content {
    width: 94%;
  }
}

.recommend_heading {
  margin-bottom: 16px;
}

.recommend_heading > span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 18px;
  font-weight: 400;
  margin: 0 auto 6px;
}
@media screen and (max-width: 460px) {
  .recommend_heading > span {
    font-size: 17px;
  }
}

.recommend_heading h2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.recommend_heading h2 span {
  color: #E67330 !important;
  font-size: 28px;
  font-weight: 700;
  opacity: 0;
  transform: scale(0.6);
}
@media screen and (max-width: 460px) {
  .recommend_heading h2 span {
    font-size: 26px;
  }
}

.move.recommend_heading h2 span:nth-child(1) {
  animation: pokopoko_txt 1s 0s ease-in-out forwards;
}
.move.recommend_heading h2 span:nth-child(2) {
  animation: pokopoko_txt 1s 0.2s ease-in-out forwards;
}
.move.recommend_heading h2 span:nth-child(3) {
  animation: pokopoko_txt 1s 0.4s ease-in-out forwards;
}
.move.recommend_heading h2 span:nth-child(4) {
  animation: pokopoko_txt 1s 0.5s ease-in-out forwards;
}
.move.recommend_heading h2 span:nth-child(5) {
  animation: pokopoko_txt 1s 0.7s ease-in-out forwards;
}
.move.recommend_heading h2 span:nth-child(6) {
  animation: pokopoko_txt 1s 0.8s ease-in-out forwards;
}
.move.recommend_heading h2 span:nth-child(7) {
  animation: pokopoko_txt 1s 1s ease-in-out forwards;
}
.move.recommend_heading h2 span:nth-child(8) {
  animation: pokopoko_txt 1s 1.1s ease-in-out forwards;
}
.move.recommend_heading h2 span:nth-child(9) {
  animation: pokopoko_txt 1s 1.2s ease-in-out forwards;
}

.recommend_list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.recommend_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
@media screen and (max-width: 350px) {
  .recommend_item {
    gap: 4px;
  }
}
.recommend_item:last-child {
  margin-bottom: 0;
}
.recommend_item img {
  width: 26px;
}

.recommend_item span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 500;
}
.recommend_item span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background-color: #E67330;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

/*---------- company ----------*/
.company{
  padding: 32px 0;
  background-image: url("../img/lp-img/reasons_bg.webp");
  background-size: cover;
  background-repeat: repeat-y;
}
.company_content {
  width: 87%;
  margin: 0 auto;
}
@media screen and (max-width: 460px) {
  .company_content {
    width: 94%;
  }
}
.company_content table{
  margin:1rem 0 2rem;
  width:100%;
  table-layout: fixed;
}
.company_content table th{
  width:9em;
  min-width:10rem;
  font-weight:normal;
}
.company_content table th,
.company_content table td{
  border:1px solid #ddd;
  padding:1rem 0.5rem;
}
.company_content table th{
  background-color:#f8f8f8;
  vertical-align: middle;
  text-align:center;
}
.company_content table td{
  background-color:#fff;
  vertical-align: middle;
  word-break:break-all;
  line-height:1.5;
}
.company_content p{
  line-height:1.75;
}
.company_content h3{
  font-size:1.125em;
  font-weight:700;
  color:#E67330;
  margin:1em 0 0.5em!important;
}
.company_content .map iframe{
  width:100%;
  height:auto;
  aspect-ratio:4/3;
}


/*---------- Blog Floating Button ----------*/
[id^="bfb_content_"] .bfb_parts_2 {
    display: flex;
}

.bfb_view_sp a.bfb_btn, .bfb_view_sp a.bfb_btn2 {
    padding: 10px !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    word-break: break-word;
}
#bfb_content_pc {
    display: block !important;
}

#bfb_content_sp {
    display: none !important;
}

@media screen and (max-width: 480px) {
    #bfb_content_pc {
        display: none !important;
    }

    #bfb_content_sp {
        display: block !important;
    }
}

[id^="bfb_content_"] .inner_bfb {
    position: relative;
    line-height: 160%;
}

[id^="bfb_content_"] .bfb_parts_2 .bfb_discText {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    overflow: hidden;
}

[id^="bfb_content_"].bfb_textTextBtn .bfb_parts_2 a, [id^="bfb_content_"].bfb_textBtnTextBtn .bfb_parts_2 a {
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    overflow: hidden;
}

[id^="bfb_content_"] .bfb_parts_2 {
    margin: 0 auto;
    max-width: 700px;
    text-align: center;
}

[id^="bfb_content_"] .bfb_parts_2 .bfb_discText {
    display: inline-block;
    margin-right: 10px;
    text-align: left;
    vertical-align: middle;
}

[id^="bfb_content_"] .bfb_parts_2 a + a {
    margin-left: 15px;
}

[id^="bfb_content_"] .bfb_closed {
    z-index: 99999;
    position: absolute;
    padding: 5px 10px;
    top: -35px;
    right: 10px;
    cursor: pointer;
}

[id^="bfb_content_"] .bfb_closed img {
    width: 20px;
    height: 20px;
}

[id^="bfb_content_"].bfb_hide.bfb_rb, [id^="bfb_content_"].bfb_hide.bfb_lb, [id^="bfb_content_"].bfb_hide {
    transform: translateY(150%);
}

[id^="bfb_content_"].bfb_hide.bfb_rt, [id^="bfb_content_"].bfb_hide.bfb_lt {
    transform: translateY(-150%);
}

[id^="bfb_content_"].bfb_rounded_corners a {
    border-radius: 40px;
}

[id^="bfb_content_"].bfb_square a {
    border-radius: 4px;
}

[id^="bfb_content_"].bfb_view_pc .inner_bfb {
    padding: 10px 10px;
}

[id^="bfb_content_"].bfb_view_pc .bfb_topText {
    margin-bottom: 5px;
    color: #fff;
    font-size: 1em;
}

[id^="bfb_content_"].bfb_view_pc .bfb_parts_2 .bfb_discText {
    color: #fff;
}

[id^="bfb_content_"].bfb_view_pc.bfb_imgBanner.bfb_view_pc {
    width: auto !important;
    background: transparent !important;
}

[id^="bfb_content_"].bfb_view_pc.bfb_imgBanner.bfb_view_pc a {
    display: block !important;
}

[id^="bfb_content_"].bfb_view_pc.bfb_imgBanner.bfb_view_pc.bfb_rt {
    right: 20px;
    top: 20px;
}

[id^="bfb_content_"].bfb_view_pc.bfb_imgBanner.bfb_view_pc.bfb_rb {
    right: 20px;
    bottom: 20px;
}

[id^="bfb_content_"].bfb_view_pc.bfb_imgBanner.bfb_view_pc.bfb_lb {
    left: 20px;
    bottom: 20px;
}

[id^="bfb_content_"].bfb_view_pc.bfb_imgBanner.bfb_view_pc.bfb_lt {
    left: 20px;
    top: 20px;
}

[id^="bfb_content_"].bfb_view_pc.bfb_imgBanner.bfb_view_pc img {
    max-width: 300px;
    max-height: 300px;
}

[id^="bfb_content_"].bfb_view_pc {
    position: fixed;
    transition: 0.3s;
    z-index: 9999;
    width: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #000;
    text-align: center;
    font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
}

[id^="bfb_content_"].bfb_view_pc a.bfb_btn {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 20px;
    margin: 0 auto;
    max-width: 300px;
    box-sizing: border-box;
    background: #000;
    background: -moz-linear-gradient(top, #000 0%, #1a1a1a 100%);
    background: -webkit-linear-gradient(top, #000 0%, #1a1a1a 100%);
    background: linear-gradient(to bottom, #000 0%, #1a1a1a 100%);
    border-bottom: solid 3px #000;
    line-height: 180%;
    color: #fff;
    text-shadow: 0 1px 0 #000;
    text-decoration: none;
    text-align: center;
    transition: 0.4s;
    font-weight: bold;
}

[id^="bfb_content_"].bfb_view_pc a.bfb_btn.bfb_textBtn {
    display: block;
}

[id^="bfb_content_"].bfb_view_pc a.bfb_btn:hover {
    background: #000;
    background: -moz-linear-gradient(top, #000 0%, #333 100%);
    background: -webkit-linear-gradient(top, #000 0%, #333 100%);
    background: linear-gradient(to bottom, #000 0%, #333 100%);
}

[id^="bfb_content_"].bfb_view_pc a.bfb_btn svg.bfb_icon {
    display: inline-block;
    margin-top: -2px;
    margin-left: 4px;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

[id^="bfb_content_"].bfb_view_pc a.bfb_btn2 {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 20px;
    margin: 0 auto;
    max-width: 300px;
    box-sizing: border-box;
    background: #000;
    background: -moz-linear-gradient(top, #000 0%, #1a1a1a 100%);
    background: -webkit-linear-gradient(top, #000 0%, #1a1a1a 100%);
    background: linear-gradient(to bottom, #000 0%, #1a1a1a 100%);
    border-bottom: solid 3px #000;
    line-height: 180%;
    color: #fff;
    text-shadow: 0 1px 0 #000;
    text-decoration: none;
    text-align: center;
    transition: 0.4s;
    font-weight: bold;
    margin-left: 10px;
}

[id^="bfb_content_"].bfb_view_pc a.bfb_btn2.bfb_textBtn {
    display: block;
}

[id^="bfb_content_"].bfb_view_pc a.bfb_btn2:hover {
    background: #000;
    background: -moz-linear-gradient(top, #000 0%, #333 100%);
    background: -webkit-linear-gradient(top, #000 0%, #333 100%);
    background: linear-gradient(to bottom, #000 0%, #333 100%);
}

[id^="bfb_content_"].bfb_view_pc a.bfb_btn2 svg.bfb_icon {
    display: inline-block;
    margin-top: -2px;
    margin-left: 4px;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}
[id^="bfb_content_"].bfb_view_sp .inner_bfb {
    padding: 10px 5px;
}

[id^="bfb_content_"].bfb_view_sp.bfb_imgBanner.bfb_rt {
    left: 0;
    right: auto;
    top: 0;
    bottom: auto;
}

[id^="bfb_content_"].bfb_view_sp.bfb_imgBanner.bfb_rb {
    top: auto;
    left: 0;
    right: auto;
    bottom: 0;
}

[id^="bfb_content_"].bfb_view_sp .bfb_closed {
    top: -30px;
    right: 5px;
}

[id^="bfb_content_"].bfb_view_sp .bfb_closed img {
    width: 20px !important;
    height: 20px !important;
}

[id^="bfb_content_"].bfb_view_sp.bfb_top {
    right: 0;
    top: 0;
}

[id^="bfb_content_"].bfb_view_sp.bfb_hide.bfb_top {
    transform: translateY(-150%);
}

[id^="bfb_content_"].bfb_view_sp.bfb_bottom {
    right: 0;
    bottom: 0;
}

[id^="bfb_content_"].bfb_view_sp.bfb_hide.bfb_bottom {
    transform: translateY(150%);
}

[id^="bfb_content_"].bfb_view_sp .bfb_topText {
    margin-bottom: 5px;
    color: #fff;
    font-size: 1em;
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn, [id^="bfb_content_"].bfb_view_sp a.bfb_btn2 {
    padding: 8px 10px;
}

[id^="bfb_content_"].bfb_view_sp .bfb_parts_2 .bfb_discText {
    margin-right: 10px;
    color: #fff;
    font-size: 1em;
}

[id^="bfb_content_"].bfb_view_sp .bfb_parts_2 a + a {
    margin-left: 5px;
}

[id^="bfb_content_"].bfb_view_sp.bfb_textBtnTextBtn .bfb_parts_2 a + a {
    margin-left: 10px;
}

[id^="bfb_content_"].bfb_view_sp.bfb_imgBanner a {
    display: block;
    line-height: 0;
}

[id^="bfb_content_"].bfb_view_sp.bfb_imgBanner a img {
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
}

[id^="bfb_content_"].bfb_view_sp.bfb_imgBanner.bfb_rt {
    right: 0;
    top: 0;
}

[id^="bfb_content_"].bfb_view_sp.bfb_imgBanner.bfb_rb {
    right: 0;
    bottom: 0;
}

[id^="bfb_content_"].bfb_view_sp.bfb_imgBanner.bfb_lb {
    left: 0;
    bottom: 0;
}

[id^="bfb_content_"].bfb_view_sp.bfb_imgBanner.bfb_lt {
    left: 0;
    top: 0;
}

[id^="bfb_content_"].bfb_view_sp {
    position: fixed;
    transition: 0.3s;
    z-index: 9999;
    width: 100%;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #000;
    text-align: center;
    font-family: "Montserrat", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
    font-size: 14px;
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 20px;
    margin: 0 auto;
    max-width: 300px;
    box-sizing: border-box;
    background: #009f07;
    background: -moz-linear-gradient(top, #009f07 0%, #00d209 100%);
    background: -webkit-linear-gradient(top, #009f07 0%, #00d209 100%);
    background: linear-gradient(to bottom, #009f07 0%, #00d209 100%);
    border-bottom: solid 3px #006c05;
    line-height: 180%;
    color: #fff;
    text-shadow: 0 1px 0 #003903;
    text-decoration: none;
    text-align: center;
    transition: 0.4s;
    font-weight: bold;
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn.bfb_textBtn {
    display: block;
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn:hover {
    background: #006c05;
    background: -moz-linear-gradient(top, #006c05 0%, #00d209 100%);
    background: -webkit-linear-gradient(top, #006c05 0%, #00d209 100%);
    background: linear-gradient(to bottom, #006c05 0%, #00d209 100%);
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn svg.bfb_icon {
    display: inline-block;
    margin-top: -2px;
    margin-left: 4px;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn2 {
    display: inline-block;
    vertical-align: middle;
    padding: 10px 20px;
    margin: 0 auto;
    max-width: 300px;
    box-sizing: border-box;
    background: #d00a0a;
    background: -moz-linear-gradient(top, #d00a0a 0%, #f41919 100%);
    background: -webkit-linear-gradient(top, #d00a0a 0%, #f41919 100%);
    background: linear-gradient(to bottom, #d00a0a 0%, #f41919 100%);
    border-bottom: solid 3px #9f0808;
    line-height: 180%;
    color: #fff;
    text-shadow: 0 1px 0 #6f0505;
    text-decoration: none;
    text-align: center;
    transition: 0.4s;
    font-weight: bold;
    margin-left: 10px;
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn2.bfb_textBtn {
    display: block;
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn2:hover {
    background: #9f0808;
    background: -moz-linear-gradient(top, #9f0808 0%, #f41919 100%);
    background: -webkit-linear-gradient(top, #9f0808 0%, #f41919 100%);
    background: linear-gradient(to bottom, #9f0808 0%, #f41919 100%);
}

[id^="bfb_content_"].bfb_view_sp a.bfb_btn2 svg.bfb_icon {
    display: inline-block;
    margin-top: -2px;
    margin-left: 4px;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

