@charset "UTF-8";
/* reset
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

body {
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}

img {
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

pre {
  white-space: pre-wrap;
}

/* common
---------------------------------------------------------------------------- */
/* ボタン系
---------------------------------------------------------------------------- */
.m-button-shadow {
  border-radius: 40px;
  box-shadow: 0 5px 0 #aa5211;
  cursor: pointer;
  transition: box-shadow 0.3s cubic-bezier(0.45, 0, 0.55, 1), transform 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (max-width: 767px) {
  .m-button-shadow {
    border-radius: 15.7333333333vw;
  }
}
.m-button-shadow.-orange01 {
  box-shadow: 0 5px 0 #e87722;
}
.m-button-shadow.-brown01 {
  box-shadow: 0 5px 0 #5d4a2d;
}
.m-button-shadow:hover {
  transform: translateY(4px);
  box-shadow: none;
}

.m-hover {
  transition: opacity 0.3s;
}
.m-hover:hover {
  opacity: 0.7;
}

.m-txt_btn {
  display: flex;
}
.m-txt_btn.-center {
  justify-content: center;
}
.m-txt_btn.-right {
  justify-content: flex-end;
}
.m-txt_btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 65px 20px 45px;
  background: #fff;
  border: 1px solid #c7c7c7;
  border-radius: 60px;
  font-size: 2.6rem;
  line-height: 1.3;
  font-weight: bold;
  transition: border 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .m-txt_btn a {
    border-radius: 8vw;
    font-size: 4vw;
    padding: 2.6666666667vw 8.6666666667vw 2.6666666667vw 6vw;
  }
}
.m-txt_btn a::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  margin: auto;
  content: "";
  display: block;
  width: 13px;
  height: 20px;
  background: url("/bf/assets/images/common/ico_arrow01.png") center/contain no-repeat;
}
@media screen and (max-width: 767px) {
  .m-txt_btn a::after {
    right: 3.3333333333vw;
    width: 1.7333333333vw;
    height: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .m-txt_btn a:hover {
    border-color: #dc121e;
  }
}

/* パーツ系
---------------------------------------------------------------------------- */
.m-anker {
  display: block;
}

.m-link-image {
  display: block;
}

.m-wrap {
  margin: auto;
  width: 94vw;
}

@media screen and (min-width: 768px) and (max-width: 1319px) {
  .m-wrap {
    width: 1200px;
  }
}
@media screen and (min-width: 1320px) {
  .m-wrap {
    width: 1300px;
  }
}
.m-font-round {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
}

/* l-sns
---------------------------------------------------------------------------- */
.l-sns {
  padding: 60px 0;
  background: #fff;
}

.l-sns-title {
  text-align: center;
  margin: 0 auto 20px;
}
.l-sns-title > img {
  width: 100%;
  max-width: 500px;
}
.Sns__cont--item {
  border-radius: 50%;
  background-color:  #f7f7f7;
  padding: 5px;
}

.l-sns-list ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  align-content: center;
  margin: 50px auto 0;
}

.l-sns-list ul li {
  width: 300px;
}

.l-sns-list ul li a {
  display: block;
  background-color: #fff;
  color: #222;
  font-size: 2.2rem;
  line-height: 1.4;
  position: relative;
  border: 1px solid #c7c7c7;
  border-radius: 37px;
  padding: 10px 75px;
  font-weight: bold;
}

.l-sns-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
}

.l-sns-list ul li a::after {
  content: "";
  width: 10px;
  height: 16px;
  background: url("/bf/assets/images/common/ico_arrow01.png") center/contain no-repeat;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.l-sns-list ul li a span {
  display: block;
  font-size: 1.6rem;
  color: #878787;
  font-weight: normal;
}

.l-sns-list ul li a:hover {
  border: 1px solid #dc121e;
}

.l-sns-list-twitter a::before {
  content: "";
  background: url("/bf/assets/images/common/ico_sns_twitter.png") center/contain no-repeat;
  width: 24px;
  height: 24px;
}

.l-sns-list-insta {
  margin-left: 35px;
}

.l-sns-list-insta a::before {
  content: "";
  background: url("/bf/assets/images/common/ico_sns_insta.png") center/contain no-repeat;
  width: 27px;
  height: 28px;
}

.Sns__cont {
  display: flex;
  gap: 4rem;
  justify-content: center;
  width: fit-content;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .l-sns {
    padding: 8.6666666667vw 0;
  }
  .l-sns-title {
    margin-bottom: 4vw;
  }
  .l-sns-list ul {
    margin-top: 6.6666666667vw;
  }
  .l-sns-list ul li {
    width: 50%;
  }
  .l-sns-list ul li a {
    font-size: 4.2666666667vw;
    padding: 2.6666666667vw 6.6666666667vw 2.6666666667vw 12.6666666667vw;
  }
  .l-sns-list ul li a::before {
    left: 4vw;
  }
  .l-sns-list ul li a span {
    font-size: 2.9333333333vw;
  }
  .l-sns-list ul li a::after {
    width: 2.6666666667vw;
    height: 4vw;
    right: 3.3333333333vw;
  }
  .p-sec-sns-list-twitter a::before {
    width: 6.6666666667vw;
    height: 5.6vw;
  }
  .l-sns-list-insta {
    margin-left: 3.3333333333vw;
  }
  .l-sns-list-twitter a::before {
    width: 5.6vw;
    height: 5.6vw;
  }
  .l-sns-list-insta a::before {
    width: 6vw;
    height: 6vw;
  }
  .Sns__cont {
    display: flex;
    gap: 2rem;
    justify-content: center;
    width: fit-content;
    margin: auto;
  }
}
/* l-store
---------------------------------------------------------------------------- */
.l-store {
  padding: 80px 0;
  background: url("/bf/assets/images/common/bg_store01.gif");
}

.l-store-title {
  font-weight: 900;
  font-size: 4.2rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

@media screen and (min-width: 1320px) {
  .l-store .m-wrap {
    padding: 0 100px;
    justify-content: space-between;
  }
  .l-store-title {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-store .m-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .l-store-title {
    margin-right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-store {
    padding: 10.6666666667vw 0;
  }
  .l-store-title {
    margin-bottom: 4vw;
    font-size: 7.3333333333vw;
    text-align: center;
  }
}
/* txt
---------------------------------------------------------------------------- */
.m-txt {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .m-txt {
    font-size: 3.7333333333vw;
  }
}

.-bold {
  font-weight: bold;
}

.m-txt_black02 {
  color: #414141;
}

.m-txt_orange01 {
  color: #e87722;
}

.m-txt_orange02 {
  color: #ff8b2d;
}

.m-txt_orange03 {
  color: #f07f29;
}

.m-txt_orange04 {
  color: #ffa800;
}

.m-txt_red01 {
  color: #dc121e;
}

.m-txt_line {
  background: linear-gradient(transparent 60%, #fffca2 0%);
}

/* is-fix
---------------------------------------------------------------------------- */
.is-fix {
  position: fixed;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
}
.is-fix.fix {
  opacity: 1;
  visibility: visible;
}

/* l-page_ttl
---------------------------------------------------------------------------- */
.l-page_ttl {
  position: relative;
  padding-left: 30px;
  font-size: 5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 0.26em #f0530b, 0 0 0.26em #f0530b;
  letter-spacing: 0.06em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .l-page_ttl {
    padding-left: 6vw;
    font-size: 6.6666666667vw;
    line-height: 1.5;
  }
}
.l-page_ttl:not(.nomark):before {
  position: absolute;
  top: 0.53em;
  left: 0;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0.26em #f0530b, 0 0 0.26em #f0530b;
}
@media screen and (max-width: 767px) {
  .l-page_ttl::before {
    width: 3vw;
    height: 3vw;
    top: 0.55em;
  }
}
.l-page_ttl_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  background: linear-gradient(to right, #f07f29, #f0c429);
}
@media screen and (max-width: 767px) {
  .l-page_ttl_box {
    height: 25vw;
  }
}

/* l-linkbox
---------------------------------------------------------------------------- */
.l-linkbox {
  padding: 90px 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-linkbox {
    padding: 12vw 0;
  }
}
.l-linkbox .m-wrap {
  max-width: 1100px;
}
.l-linkbox .m-yoga_btn {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .l-linkbox .m-yoga_btn {
    margin-top: 6vw;
  }
}
.l-linkbox .m-yoga_btn .m-button-shadow {
  border-radius: 17px;
}
@media screen and (max-width: 767px) {
  .l-linkbox .m-yoga_btn .m-button-shadow {
    border-radius: 2.2666666667vw;
    max-width: 689px;
    margin: auto;
  }
}
.l-linkbox_col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-linkbox_col2 {
    flex-direction: column;
    align-items: center;
  }
}
.l-linkbox_col2 .m-linkbox_btn {
  width: calc(50% - 13px);
}
@media screen and (max-width: 767px) {
  .l-linkbox_col2 .m-linkbox_btn {
    width: 100%;
  }
}
.l-linkbox_col2 .m-linkbox_btn:nth-child(n+3) {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .l-linkbox_col2 .m-linkbox_btn:nth-child(n+3) {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-linkbox_col2 .m-linkbox_btn:nth-child(n+2) {
    margin-top: 3.3333333333vw;
  }
}
.l-linkbox_col2 .m-linkbox_btn .m-button-shadow {
  border-radius: 13px;
}
@media screen and (max-width: 767px) {
  .l-linkbox_col2 .m-linkbox_btn .m-button-shadow {
    border-radius: 1.7333333333vw;
    max-width: 689px;
    margin: auto;
  }
}
.l-linkbox_col3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .l-linkbox_col3 {
    flex-direction: column;
    align-items: center;
    margin-top: 3.3333333333vw;
  }
}
.l-linkbox_col3 .m-linkbox_btn {
  width: calc(33.3333% - 13px);
}
@media screen and (max-width: 767px) {
  .l-linkbox_col3 .m-linkbox_btn {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .l-linkbox_col3 .m-linkbox_btn a {
    background: #f08229;
  }
}
.l-linkbox_col3 .m-linkbox_btn:nth-child(n+4) {
  margin-top: 26px;
}
@media screen and (max-width: 767px) {
  .l-linkbox_col3 .m-linkbox_btn:nth-child(n+4) {
    margin-top: 3.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .l-linkbox_col3 .m-linkbox_btn:nth-child(n+2) {
    margin-top: 3.3333333333vw;
  }
}
.l-linkbox_col3 .m-linkbox_btn .m-button-shadow {
  border-radius: 13px;
}
@media screen and (max-width: 767px) {
  .l-linkbox_col3 .m-linkbox_btn .m-button-shadow {
    border-radius: 2.2666666667vw;
  }
}

/* l-poselinks
---------------------------------------------------------------------------- */
.l-poselinks {
  position: relative;
  padding: 170px 0 65px;
}
@media screen and (max-width: 767px) {
  .l-poselinks {
    padding: 22.6666666667vw 0 8.6666666667vw;
  }
}
.l-poselinks::before {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 296px;
  height: 168px;
  background: url("/bf/assets/images/yoga/ico_arrow01.svg") no-repeat 50% 50%/contain;
}
@media screen and (max-width: 767px) {
  .l-poselinks::before {
    top: -6.6666666667vw;
    width: 32.1333333333vw;
    height: 18.1333333333vw;
  }
}
.l-poselinks .m-wrap {
  max-width: 1100px;
}
.l-poselinks .l-poselinks_ttl {
  width: 812px;
  margin: 0 auto 65px;
}
@media screen and (max-width: 767px) {
  .l-poselinks .l-poselinks_ttl {
    width: 61.8666666667vw;
    margin: 0 auto 8.6666666667vw;
  }
}
.l-poselinks_col2 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .l-poselinks_col2 {
    flex-direction: column;
    align-items: center;
  }
}
.l-poselinks_col2 .m-poselinks_btn {
  width: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .l-poselinks_col2 .m-poselinks_btn {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .l-poselinks_col2 .m-poselinks_btn:nth-child(even) {
    margin-left: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-poselinks_col2 .m-poselinks_btn:nth-child(n+2) {
    margin-top: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .l-poselinks_col2 .m-poselinks_btn:nth-child(n+3) {
    margin-top: 30px;
  }
}
.l-poselinks_col2 .m-poselinks_btn .m-button-shadow {
  border-radius: 13px;
}
@media screen and (max-width: 767px) {
  .l-poselinks_col2 .m-poselinks_btn .m-button-shadow {
    border-radius: 1.7333333333vw;
  }
}

/* l-cv
---------------------------------------------------------------------------- */
.l-cv {
  position: relative;
  z-index: 2;
  padding: calc(60px + 5.5vw) 0 80px;
  background: url("/bf/assets/images/common/cv_bg01_pc.png") no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 1400px) {
  .l-cv {
    padding-top: 160px;
  }
}
@media screen and (max-width: 767px) {
  .l-cv {
    padding: 15.3333333333vw 0 11.4666666667vw;
    background: url("/bf/assets/images/common/cv_bg01_sp.png") no-repeat center top;
    background-size: cover;
  }
}
.l-cv::before {
  position: absolute;
  top: -45px;
  left: 0;
  right: 0;
  margin: auto;
  content: "";
  display: block;
  width: 322px;
  height: 195px;
  background: url("/bf/assets/images/common/cv_ico01.png") no-repeat 50% 50%/contain;
}
@media screen and (max-width: 767px) {
  .l-cv::before {
    top: -9.3333333333vw;
    width: 33.3333333333vw;
    height: 20.6666666667vw;
  }
}
.l-cv .m-wrap {
  position: relative;
  max-width: 1200px;
}
.l-cv .p-img {
  width: 100%;
  margin: 0 auto;
}
.l-cv .m-button {
  position: absolute;
  left: 0;
  bottom: 55px;
  width: 930px;
}
@media screen and (max-width: 767px) {
  .l-cv .m-button {
    position: relative;
    bottom: 0;
    width: 100%;
  }
}
.l-cv .m-button .m-button-shadow {
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .l-cv .m-button .m-button-shadow {
    margin-top: 5.3333333333vw;
    border-radius: 0.5333333333vw;
  }
}

/* l-fix_box
---------------------------------------------------------------------------- */
.l-fix_box {
  right: 40px;
  bottom: 50px;
}
.l-fix_box.l-fix_box02 {
  width: 100%;
  left: 0;
  bottom: 3vh;
  right: auto;
}
.l-fix_box.l-fix_box02 .is-fix_close {
  position: relative;
  max-width: 38px;
  min-width: 28px;
  display: block;
  width: 10vw;
  z-index: 101;
  margin: 0 0 -6.5rem auto;
  cursor: pointer;
}
.l-fix_box.l-fix_box02 .is-fix_close img {
  width: 100%;
  filter: drop-shadow(2px 2px 6px #666666);
}
@media screen and (max-width: 767px) {
  .l-fix_box {
    right: 4vw;
    bottom: 3.3333333333vw;
  }
  .l-fix_box.l-fix_box02 {
    right: auto;
    bottom: 3.3333333333vw;
    width: 100%;
    padding: 0 4vw;
  }
  .l-fix_box.l-fix_box02  .l-fix_btn {
    width: 100%;
  }
  .l-fix_box.l-fix_box02 .is-fix_close {
    min-width: 30px;
    width: 7vw;
    margin: 0 0 -10% auto;
  }

}
.l-fix_box .l-fix_txt {
  width: 436px;
}
@media screen and (max-width: 767px) {
  .l-fix_box .l-fix_txt {
    width: 58.1333333333vw;
  }
}
.l-fix_box .l-fix_btn {
  width: 410px;
  margin: 10px auto 0;
}
.l-fix_box.l-fix_box02 .l-fix_btn {
  width: 650px;
  margin: 10px auto 0;
}
@media screen and (max-width: 767px) {
  .l-fix_box .l-fix_btn {
    width: 46vw;
    margin: 0;
  }
  .l-fix_box.l-fix_box02 .l-fix_btn {
    width: 100%;
  }
}
.l-fix_box .l-fix_btn .m-button-shadow {
  border-radius: 4px;
  box-shadow: 0 5px 0 #5d4a2d;
}
.l-fix_box.l-fix_box02 .l-fix_btn .m-button-shadow {
  border-radius: 4px;
  box-shadow: none;
  filter: drop-shadow(5px 5px 10px #666666);
}
@media screen and (max-width: 767px) {
  .l-fix_box .l-fix_btn .m-button-shadow {
    border-radius: 0.5333333333vw;
    box-shadow: 0 3px 0 #5d4a2d;
  }
  .l-fix_box.l-fix_box02 .l-fix_btn .m-button-shadow {
    box-shadow: none;
  }
}
.l-fix_box .l-fix_btn .m-button-shadow:hover {
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .l-fix_box .l-fix_btn .m-button-shadow:hover {
    transform: translateY(2px);
    box-shadow: none;
  }
  .l-fix_box .l-fix_btn.l-fix_box02 .m-button-shadow:hover {
    transform: none;
    box-shadow: none;
  }
}

/* m-lead_cv
---------------------------------------------------------------------------- */
.m-lead_cv .m-lead_cv_txt {
  width: 556px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .m-lead_cv .m-lead_cv_txt {
    width: 100%;
    margin: 0 auto 1.3333333333vw;
  }
}
.m-lead_cv .m-lead_cv_txt.-txt02 {
  width: 404px;
}
@media screen and (max-width: 767px) {
  .m-lead_cv .m-lead_cv_txt.-txt02 {
    width: 90%;
  }
}
.m-lead_cv .m-lead_cv_txt.-txt03 {
  width: 437px;
}
@media screen and (max-width: 767px) {
  .m-lead_cv .m-lead_cv_txt.-txt03 {
    width: 76vw;
  }
}
.m-lead_cv .m-lead_cv_btn {
  width: 410px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .m-lead_cv .m-lead_cv_btn {
    width: 100%;
  }
}
.m-lead_cv .m-lead_cv_btn .m-button-shadow {
  border-radius: 4px;
  box-shadow: 0 5px 0 #5d4a2d;
}
@media screen and (max-width: 767px) {
  .m-lead_cv .m-lead_cv_btn .m-button-shadow {
    border-radius: 0.5333333333vw;
  }
}
.m-lead_cv .m-lead_cv_btn .m-button-shadow:hover {
  box-shadow: none;
}

/* layout
-----------------------------------------------------------------------------*/
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff2") format("woff2"), url("../../fonts/Noto_Sans_JP/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "M PLUS Rounded 1c";
  src: url("../../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.woff2") format("woff2"), url("../../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.woff") format("woff");
  font-display: swap;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "M PLUS Rounded 1c";
  src: url("../../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.woff2") format("woff2"), url("../../fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Black.woff") format("woff");
  font-display: swap;
  font-weight: 900;
  font-style: normal;
}
/* base
---------------------------------------------------------------------------- */
/*------------- General Elements -------------*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Arial, Verdana, sans-serif;
  font-weight: 400;
  color: #222222;
  font-size: 1.5rem;
  min-width: 1280px;
}

a {
  text-decoration: none;
  color: #222222;
  outline: none;
}
a:hover, a:active, a:focus {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

figure {
  text-align: center;
}

em {
  font-style: normal;
}

* {
  word-break: break-word;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    display: inline-block;
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }
}
/*------------- .l-pagebody -------------*/
.l-pagebody {
  padding-top: 100px;
  background: #fffce5;
  display: block;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width:1601px) {
  .l-pagebody {
    padding-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .l-pagebody {
    padding-top: 16vw;
  }
}
@media screen and (min-width: 768px) {
  .l-header, .l-pagebody, .l-footer {
    min-width: 1280px;
  }
}
/*------------- .l-header -------------*/
.l-header {
  padding: 10px 3.64%;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100px;
}
@media screen and (max-width: 1600px) {
  .l-header {
    padding: 10px 2%;
  }
}
@media screen and (max-width: 1300px) {
  .l-header {
    padding: 10px 1.5%;
  }
}

.l-pagebody:before {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  box-shadow: 0 0 50px rgba(232, 119, 34, 0.32);
}
.l-pagebody.noBG:before {
  box-shadow: none
}
@media screen and (max-width: 767px) {
  .l-pagebody::before {
    height: 16vw;
    box-shadow: 0 0 6.6666666667vw rgba(232, 119, 34, 0.32);
  }
}

.l-header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.l-header-logo {
  width: 472px;
}
@media screen and (min-width: 768px) and (max-width: 1750px) {
  .l-header-logo {
    width: 30%;
  }
}
@media screen and (max-width: 1350px) {
  .l-header-logo {
    width: 28%;
  }
}
@media screen and (max-width: 767px) {
  .l-header-logo {
    width: 63.2vw;
  }
}

@media screen and (min-width: 768px) {
  .l-header {
    padding-top: 15px;
    height: 110px;
  }
  .l-header-buy {
    position: absolute;
    right: 0;
    top: 0;
    width: 210px;
  }
  .l-header-buy .m-button-shadow {
    border-radius: 4px;
    box-shadow: 0 3px 0 #5d4a2d;
    position: relative;
  }
  .l-header-buy .m-button-shadow:hover {
    transform: translateY(2px);
    box-shadow: none;
  }
  .l-header-buy .m-button-shadow:after {
    position: absolute;
    content: "";
    background: url("/bf/assets/images/common/purchase_btn03.png") center/contain no-repeat;
    width: 37px;
    aspect-ratio: 15/23;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
  }
  .l-gnav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 0 4vw;
    height: 16vw;
  }
  .l-pagebody::before {
    height: 16vw;
    box-shadow: 0 0 20px rgba(232, 119, 34, 0.16);
  }
  .l-header-inner {
    align-items: center;
  }
  .l-header-button {
    background-color: transparent;
    position: relative;
    border: none;
    cursor: pointer;
    width: 8vw;
    height: 4.4vw;
  }
  .l-header-button .bar {
    -webkit-backface-visibility: hidden;
    background: #e87722;
    position: absolute;
    right: calc(50% - 4vw);
    width: 100%;
    height: 0.4vw;
    transition: all 0.3s;
  }
  .l-header-button .bar:nth-child(1) {
    right: 0;
    top: 0;
  }
  .l-header-button .bar:nth-child(2) {
    top: 2vw;
  }
  .l-header-button .bar:nth-child(3) {
    right: 0;
    top: 4vw;
  }
  body.is-fixed .l-header-button .bar:nth-child(2) {
    background-color: transparent;
  }
  body.is-fixed .l-header-button .bar:nth-child(1) {
    top: 50%;
    transform: rotate3d(0, 0, 1, 45deg);
  }
  body.is-fixed .l-header-button .bar:nth-child(3) {
    top: 50%;
    transform: rotate3d(0, 0, 1, -45deg);
  }
  body.is-fixed {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
  }
}
/*------------- .l-gnav -------------*/
@media screen and (min-width: 768px) {
  .l-gnav-list {
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .l-gnav-list-item::before {
    content: "";
    margin: -3px 3px 0 0;
    border-radius: 100%;
    background: #e87722;
    vertical-align: middle;
    display: inline-block;
    width: 8px;
    height: 8px;
  }
  .l-gnav-list-item-link {
    color: #000000;
    transition: color 0.3s ease-out;
  }
  .l-gnav-list-item-link:hover {
    color: #e87722;
  }
  .l-gnav-list-item:nth-child(n+2) {
    margin-left: 0;
  }
}

@media screen and (min-width: 768px) {
  .l-gnav-list-item {
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
  }
  .l-gnav-list {
    gap: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1750px) {
  .l-gnav-list-item {
    font-size: 1.6rem;
  }
  .l-gnav-list {
    gap: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1500px) {
  .l-gnav-list-item {
    font-size: 1.5rem;
  }
  .l-gnav-list {
    gap: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .l-gnav-list-item {
    font-size: 1.4rem;
  }
  .l-gnav-list {
    gap: 5px;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav {
    opacity: 0;
    padding: 0;
    background-color: #fff;
    position: fixed;
    top: 16vw;
    left: 0;
    z-index: 200;
    display: block;
    width: 100%;
    height: calc(100vh - 16vw);
    height: calc(100svh - 16vw);
    transition: opacity 0.3s ease;
    pointer-events: none;
    overflow: auto;
    padding-bottom: 100px;
  }
  body.is-fixed .l-gnav {
    opacity: 1;
    pointer-events: auto;
  }
  .l-gnav-inner {
    width: 100%;
    padding: 3vw 2.6666666667vw;
  }
  .l-gnav-list {
    display: flex;
    flex-direction: column;
  }
  .l-gnav-list-item {
    width: 100%;
    position: relative;
  }
  li.l-gnav-list-item:not(.l-gnav-list-item-corp):not(:last-of-type):after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #c7c7c7;
    bottom: -1.5vw;
    left: 0;
  }
  li.l-gnav-list-item:not(.l-gnav-list-item-corp) {
    margin-bottom: 3vw;
  }
  .l-gnav-list-item a {
    padding: 2vw 5.3333333333vw;
    font-weight: bold;
    font-size: 4vw;
    line-height: 1.4;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    min-height: 12vw;
  }
  .l-gnav-list-item a::after {
    content: "";
    background: url("/bf/assets/images/common/ico_arrow02.png") center/contain no-repeat;
    position: absolute;
    top: 45%;
    transform: translateY(-50%) rotate(-90deg) ;
    display: block;
    width: 2.9333333333vw;
    height: 1.7333333333vw;
    right: 2.6666666667vw;
  }
  .l-gnav-list-item.--nav-accordion ul.ham__cat--sub li {
    border-top: 1px dotted #c7c7c7;
  }
  .l-gnav-list-item.--nav-accordion ul.ham__cat--sub {
    padding-left: 3vw;
  }
  .l-gnav-list-item.--nav-accordion ul.ham__cat--sub a {
    font-weight: normal;
    padding: 0 2rem;
    line-height: 1;
    min-height: 7vw;
    font-size: 3.4vw;
  }
  .l-gnav-list-item ul.ham__cat--sub a::before {
    content: "";
    background: #000000;
    vertical-align: middle;
    display: inline-block;
    width: 0.8em;
    margin-right: 0.4em;
    height: 2px;
  }
    .l-header-buy {
    margin-top: 9.3333333333vw;
  }
  .l-header-buy a {
    padding: 0;
    border: none;
    border-radius: 0;
  }
  .l-header-buy a::after {
    display: none;
  }
  .l-gnav-list-item.l-gnav-list-item-corp a {
    line-height: 1.2;
    min-height: 7vw;
    font-size: 3vw;
    font-weight: normal;
  }
  .l-gnav-list-item.l-gnav-list-item-corp a::after {
    display: none;
  }
}
/*------------- .l-breadcrumbs -------------*/
.l-breadcrumbs {
  padding: 8px 0;
  background: #fff;
  border-top: 1px solid #d1d1d1;
  border-bottom: 1px solid #d1d1d1;
}
@media screen and (max-width: 767px) {
  .l-breadcrumbs {
    padding: 2vw 0;
  }
}
.l-breadcrumbs_list {
  display: flex;
  flex-wrap: wrap;
}
.l-breadcrumbs_list .l-breadcrumbs-li {
  position: relative;
  display: flex;
  margin-right: 20px;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
  padding: 0.1em 0;
}
@media screen and (max-width: 767px) {
  .l-breadcrumbs_list .l-breadcrumbs-li {
    font-size: 3.2vw;
    margin-right: 3vw;
  }
}
.l-breadcrumbs_list .l-breadcrumbs-li + .l-breadcrumbs-li {
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .l-breadcrumbs_list .l-breadcrumbs-li + .l-breadcrumbs-li {
    padding-left: 4vw;
  }
}
.l-breadcrumbs_list .l-breadcrumbs-li + .l-breadcrumbs-li::before {
  position: absolute;
  left: -5px;
  top: 11px;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid #d1d1d1;
  border-right: 1px solid #d1d1d1;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .l-breadcrumbs_list .l-breadcrumbs-li + .l-breadcrumbs-li::before {
    left: -1vw;
    top: 2.6vw;
    width: 2vw;
    height: 2vw;
  }
}
.l-breadcrumbs_list .l-breadcrumbs-link {
  color: #e87722;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .l-breadcrumbs_list .l-breadcrumbs-link:hover {
    opacity: 0.7;
  }
}

/*------------- .l-sidebar -------------*/
/*------------- .l-pagetop -------------*/
.l-pagetop {
  cursor: pointer;
  overflow: hidden;
  width: 88px;
  position: absolute;
  right: 0;
  bottom: 100%;
}

@media screen and (max-width: 767px) {
  .l-pagetop {
    right: 1.0666666667vw;
    width: 17.3333333333vw;
  }
}
/*------------- .l-footer -------------*/
.l-footer {
  border-top: 8px solid #ff5b04;
}

.l-footer .m-wrap {
  position: relative;
}

.l-footer-nav01 {
  padding: 60px 0;
}

.l-footer-nav-list-item-link::before {
  content: "";
  margin: 6px 10px 0 0;
  border-radius: 100%;
  background: #e87722;
  vertical-align: middle;
  display: inline-block;
  width: 8px;
  height: 8px;
}

.l-footer-nav-list-item-link {
  display: flex;
  color: #000000;
  font-weight: bold;
  line-height: 1;
  font-size: 2rem;
}

@media screen and (min-width: 768px) and (max-width: 1319px) {
  .l-footer-nav-list-item-link {
    font-size: 1.8rem;
  }
}
.l-footer-nav-list-item-child-item::before {
  content: "";
  margin: -5px 8px 0 0;
  background: #000000;
  vertical-align: middle;
  display: inline-block;
  width: 10px;
  height: 2px;
}

.l-footer-nav-list-item-child-link {
  color: #000000;
  font-weight: 500;
  font-size: 1.8rem;
}

.l-footer-nav-btn-balloon {
  margin-bottom: 18px;
  border-radius: 40px;
  background: #fff1ac;
  color: #000000;
  font-weight: bold;
  font-size: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
}

.l-footer-nav-btn-balloon::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 8px 0 8px;
  border-color: #fff1ac transparent transparent transparent;
}

@media screen and (min-width: 768px) {
  .l-footer-nav01-inner {
    display: flex;
    justify-content: space-between;
  }
  .l-footer-nav-list {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 420px);
  }
  .l-footer-nav-list-item:nth-child(n+2) {
    margin-top: 25px;
  }
  .l-footer-nav-list-item-child {
    margin: 25px 0 0 18px;
  }
  .l-footer-nav-list-item-child-item:nth-child(n+2) {
    margin-top: 20px;
  }
  .l-footer-nav-btn {
    width: 360px;
  }
}
@media screen and (min-width: 768px) and (min-width: 1320px) {
  .l-footer-nav01-inner {
    gap: 1rem;
}
.l-footer-nav-list-item-link {
  font-size: 1.8rem;
}
}
@media screen and (max-width: 767px)  {
  .l-footer-nav01 {
    padding: 8vw 0;
  }
  .l-footer-nav01 .m-wrap {
    width: 84vw;
  }
  .l-footer-nav-list-column-flex {
    margin: 0 -4vw 0 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .l-footer-nav-list-item {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer-nav-list-column-flex .l-footer-nav-list-item {
    width: 50%;
  }
  .l-footer-nav-list-column:nth-child(n+2) .l-footer-nav-list-item,
  .l-footer-nav-list-item:nth-of-type(n+2) {
    margin-top: 5.3333333333vw;
  }
  .l-footer-nav-list-item-link::before {
    margin: 2.4vw 2vw 0 0;
    width: 1.6vw;
    height: 1.6vw;
  }
  .l-footer-nav-list-item-link {
    font-size: 4vw;
    line-height: 1.5;
    width: 100%;
  }
  .l-footer-nav-list-item-link span {
    display: inline-block;
  }
  .l-footer-nav-list-item-child {
    margin: 4.6666666667vw 0 0 4vw;
    width: 100%;
  }
  .l-footer-nav-list-item-child-item:nth-child(n+2) {
    margin-top: 4vw;
  }
  .l-footer-nav-list-item-child-link {
    font-size: 3.7333333333vw;
  }
  .l-footer-nav-list-item-child-item::before {
    margin: 0 0.5em 0 0;
    width: 0.8em;
    height: 2px;
  }
  .l-footer-nav-btn {
    margin: 9.3333333333vw auto 0;
    width: 81.3333333333vw;
  }
  .l-footer-nav-btn-balloon {
    margin-bottom: 2.6666666667vw;
    font-size: 4vw;
    height: 8vw;
  }
  .l-footer-nav-btn-balloon::after {
    border-width: 1.6vw 1.0666666667vw 0 1.0666666667vw;
  }
}
.l-footer-nav02 {
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.2;
  padding-bottom: 20px;
}

.l-footer-nav02-inner {
  clear: both;
  overflow: hidden;
  width: 100%;
}

.l-footer-nav02 ul {
  clear: both;
  float: left;
  margin-top: 18px;
  overflow: hidden;
  width: 50%;
}
.l-footer-nav02 ul::after {
  clear: both;
  content: "";
  display: block;
}

.l-footer-nav02 ul li {
  color: #fff;
  float: left;
}

.l-footer-nav02 ul li a {
  color: #fff;
  text-decoration: none;
}

.l-footer-nav02 ul li a:hover {
  text-decoration: underline;
}

.l-footer-copyright {
  float: right;
  letter-spacing: -0.05em;
  margin-top: 18px;
  text-align: right;
  width: 500px;
}

.l-footer-copyright p {
  margin-bottom: 10px;
  text-align: right;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .l-footer-nav02 {
    padding-bottom: 10px;
  }
  .l-footer-nav02 .m-wrap {
    width: auto;
    padding: 0 10px;
  }
  .l-footer ul {
    float: inherit;
    width: auto;
    text-align: center;
  }
  .l-footer ul li {
    display: inline-block;
    float: inherit;
  }
  .l-footer-copyright {
    float: inherit;
    line-height: 1.2;
    margin-top: 14px;
    text-align: center;
    width: auto;
  }
  .l-footer-copyright p {
    text-align: center;
  }
}
/* module
---------------------------------------------------------------------------- */
/* RWD表示切り替え
---------------------------------------------------------------------------- */
@media all and (min-width: 768px) {
  .nopc {
    display: none !important;
  }
}
@media all and (max-width: 767px) {
  .nosp {
    display: none !important;
  }
}
@media all and (min-width: 1319px) {
  .nosp2{
    display: block !important;
  }
}
@media all and (max-width: 1319px) {
  .nosppc,
  .nosp2{
    display: none !important;
  }
}

/* フォントサイズ
---------------------------------------------------------------------------- */
.fs50 {
  font-size: 5rem !important;
}

.fs49 {
  font-size: 4.9rem !important;
}

.fs48 {
  font-size: 4.8rem !important;
}

.fs47 {
  font-size: 4.7rem !important;
}

.fs46 {
  font-size: 4.6rem !important;
}

.fs45 {
  font-size: 4.5rem !important;
}

.fs44 {
  font-size: 4.4rem !important;
}

.fs43 {
  font-size: 4.3rem !important;
}

.fs42 {
  font-size: 4.2rem !important;
}

.fs41 {
  font-size: 4.1rem !important;
}

.fs40 {
  font-size: 4rem !important;
}

.fs39 {
  font-size: 3.9rem !important;
}

.fs38 {
  font-size: 3.8rem !important;
}

.fs37 {
  font-size: 3.7rem !important;
}

.fs36 {
  font-size: 3.6rem !important;
}

.fs35 {
  font-size: 3.5rem !important;
}

.fs34 {
  font-size: 3.4rem !important;
}

.fs33 {
  font-size: 3.3rem !important;
}

.fs32 {
  font-size: 3.2rem !important;
}

.fs31 {
  font-size: 3.1rem !important;
}

.fs30 {
  font-size: 3rem !important;
}

.fs29 {
  font-size: 2.9rem !important;
}

.fs28 {
  font-size: 2.8rem !important;
}

.fs27 {
  font-size: 2.7rem !important;
}

.fs26 {
  font-size: 2.6rem !important;
}

.fs25 {
  font-size: 2.5rem !important;
}

.fs24 {
  font-size: 2.4rem !important;
}

.fs23 {
  font-size: 2.3rem !important;
}

.fs22 {
  font-size: 2.2rem !important;
}

.fs21 {
  font-size: 2.1rem !important;
}

.fs20 {
  font-size: 2rem !important;
}

.fs19 {
  font-size: 1.9rem !important;
}

.fs18 {
  font-size: 1.8rem !important;
}

.fs17 {
  font-size: 1.7rem !important;
}

.fs16 {
  font-size: 1.6rem !important;
}

.fs15 {
  font-size: 1.5rem !important;
}

.fs14 {
  font-size: 1.4rem !important;
}

.fs13 {
  font-size: 1.3rem !important;
}

.fs12 {
  font-size: 1.2rem !important;
}

.fs11 {
  font-size: 1.1rem !important;
}

.fs10 {
  font-size: 1rem !important;
}

.fs9 {
  font-size: 0.9rem !important;
}

.fs8 {
  font-size: 0.8rem !important;
}

.fs7 {
  font-size: 0.7rem !important;
}

.fs6 {
  font-size: 0.6rem !important;
}

@media screen and (max-width: 767px) {
  .spfs50 {
    font-size: 6.6666666667vw !important;
  }
  .spfs49 {
    font-size: 6.5333333333vw !important;
  }
  .spfs48 {
    font-size: 6.4vw !important;
  }
  .spfs47 {
    font-size: 6.2666666667vw !important;
  }
  .spfs46 {
    font-size: 6.1333333333vw !important;
  }
  .spfs45 {
    font-size: 6vw !important;
  }
  .spfs44 {
    font-size: 5.8666666667vw !important;
  }
  .spfs43 {
    font-size: 5.7333333333vw !important;
  }
  .spfs42 {
    font-size: 5.6vw !important;
  }
  .spfs41 {
    font-size: 5.4666666667vw !important;
  }
  .spfs40 {
    font-size: 5.3333333333vw !important;
  }
  .spfs39 {
    font-size: 5.2vw !important;
  }
  .spfs38 {
    font-size: 5.0666666667vw !important;
  }
  .spfs37 {
    font-size: 4.9333333333vw !important;
  }
  .spfs36 {
    font-size: 4.8vw !important;
  }
  .spfs35 {
    font-size: 4.6666666667vw !important;
  }
  .spfs34 {
    font-size: 4.5333333333vw !important;
  }
  .spfs33 {
    font-size: 4.4vw !important;
  }
  .spfs32 {
    font-size: 4.2666666667vw !important;
  }
  .spfs31 {
    font-size: 4.1333333333vw !important;
  }
  .spfs30 {
    font-size: 4vw !important;
  }
  .spfs29 {
    font-size: 3.8666666667vw !important;
  }
  .spfs28 {
    font-size: 3.7333333333vw !important;
  }
  .spfs27 {
    font-size: 3.6vw !important;
  }
  .spfs26 {
    font-size: 3.4666666667vw !important;
  }
  .spfs25 {
    font-size: 3.3333333333vw !important;
  }
  .spfs24 {
    font-size: 3.2vw !important;
  }
  .spfs23 {
    font-size: 3.0666666667vw !important;
  }
  .spfs22 {
    font-size: 2.9333333333vw !important;
  }
  .spfs21 {
    font-size: 2.8vw !important;
  }
  .spfs20 {
    font-size: 2.6666666667vw !important;
  }
  .spfs19 {
    font-size: 2.5333333333vw !important;
  }
  .spfs18 {
    font-size: 2.4vw !important;
  }
  .spfs17 {
    font-size: 2.2666666667vw !important;
  }
  .spfs16 {
    font-size: 2.1333333333vw !important;
  }
  .spfs15 {
    font-size: 2vw !important;
  }
  .spfs14 {
    font-size: 1.8666666667vw !important;
  }
  .spfs13 {
    font-size: 1.7333333333vw !important;
  }
  .spfs12 {
    font-size: 1.6vw !important;
  }
  .spfs11 {
    font-size: 1.4666666667vw !important;
  }
  .spfs10 {
    font-size: 1.3333333333vw !important;
  }
  .spfs9 {
    font-size: 1.2vw !important;
  }
  .spfs8 {
    font-size: 1.0666666667vw !important;
  }
  .spfs7 {
    font-size: 0.9333333333vw !important;
  }
  .spfs6 {
    font-size: 0.8vw !important;
  }
}
/* clearfix
---------------------------------------------------------------------------- */
.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/* テキスト
---------------------------------------------------------------------------- */
.tal {
  text-align: left !important;
}

.tac {
  text-align: center !important;
}

.tar {
  text-align: right !important;
}

.fwb {
  font-weight: bold !important;
}

@media screen and (max-width: 767px) {
  .sptal {
    text-align: left !important;
  }
  .sptac {
    text-align: center !important;
  }
  .sptar {
    text-align: right !important;
  }
  .spfwb {
    font-weight: bold !important;
  }
}
/* マージン
---------------------------------------------------------------------------- */
.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

@media screen and (max-width: 767px) {
  .spmt100 {
    margin-top: 13.3333333333vw !important;
  }
  .spmb100 {
    margin-bottom: 13.3333333333vw !important;
  }
  .spml100 {
    margin-left: 13.3333333333vw !important;
  }
  .spmr100 {
    margin-right: 13.3333333333vw !important;
  }
  .spmt95 {
    margin-top: 12.6666666667vw !important;
  }
  .spmb95 {
    margin-bottom: 12.6666666667vw !important;
  }
  .spml95 {
    margin-left: 12.6666666667vw !important;
  }
  .spmr95 {
    margin-right: 12.6666666667vw !important;
  }
  .spmt90 {
    margin-top: 12vw !important;
  }
  .spmb90 {
    margin-bottom: 12vw !important;
  }
  .spml90 {
    margin-left: 12vw !important;
  }
  .spmr90 {
    margin-right: 12vw !important;
  }
  .spmt85 {
    margin-top: 11.3333333333vw !important;
  }
  .spmb85 {
    margin-bottom: 11.3333333333vw !important;
  }
  .spml85 {
    margin-left: 11.3333333333vw !important;
  }
  .spmr85 {
    margin-right: 11.3333333333vw !important;
  }
  .spmt80 {
    margin-top: 10.6666666667vw !important;
  }
  .spmb80 {
    margin-bottom: 10.6666666667vw !important;
  }
  .spml80 {
    margin-left: 10.6666666667vw !important;
  }
  .spmr80 {
    margin-right: 10.6666666667vw !important;
  }
  .spmt75 {
    margin-top: 10vw !important;
  }
  .spmb75 {
    margin-bottom: 10vw !important;
  }
  .spml75 {
    margin-left: 10vw !important;
  }
  .spmr75 {
    margin-right: 10vw !important;
  }
  .spmt70 {
    margin-top: 9.3333333333vw !important;
  }
  .spmb70 {
    margin-bottom: 9.3333333333vw !important;
  }
  .spml70 {
    margin-left: 9.3333333333vw !important;
  }
  .spmr70 {
    margin-right: 9.3333333333vw !important;
  }
  .spmt65 {
    margin-top: 8.6666666667vw !important;
  }
  .spmb65 {
    margin-bottom: 8.6666666667vw !important;
  }
  .spml65 {
    margin-left: 8.6666666667vw !important;
  }
  .spmr65 {
    margin-right: 8.6666666667vw !important;
  }
  .spmt60 {
    margin-top: 8vw !important;
  }
  .spmb60 {
    margin-bottom: 8vw !important;
  }
  .spml60 {
    margin-left: 8vw !important;
  }
  .spmr60 {
    margin-right: 8vw !important;
  }
  .spmt55 {
    margin-top: 7.3333333333vw !important;
  }
  .spmb55 {
    margin-bottom: 7.3333333333vw !important;
  }
  .spml55 {
    margin-left: 7.3333333333vw !important;
  }
  .spmr55 {
    margin-right: 7.3333333333vw !important;
  }
  .spmt50 {
    margin-top: 6.6666666667vw !important;
  }
  .spmb50 {
    margin-bottom: 6.6666666667vw !important;
  }
  .spml50 {
    margin-left: 6.6666666667vw !important;
  }
  .spmr50 {
    margin-right: 6.6666666667vw !important;
  }
  .spmt45 {
    margin-top: 6vw !important;
  }
  .spmb45 {
    margin-bottom: 6vw !important;
  }
  .spml45 {
    margin-left: 6vw !important;
  }
  .spmr45 {
    margin-right: 6vw !important;
  }
  .spmt40 {
    margin-top: 5.3333333333vw !important;
  }
  .spmb40 {
    margin-bottom: 5.3333333333vw !important;
  }
  .spml40 {
    margin-left: 5.3333333333vw !important;
  }
  .spmr40 {
    margin-right: 5.3333333333vw !important;
  }
  .spmt35 {
    margin-top: 4.6666666667vw !important;
  }
  .spmb35 {
    margin-bottom: 4.6666666667vw !important;
  }
  .spml35 {
    margin-left: 4.6666666667vw !important;
  }
  .spmr35 {
    margin-right: 4.6666666667vw !important;
  }
  .spmt30 {
    margin-top: 4vw !important;
  }
  .spmb30 {
    margin-bottom: 4vw !important;
  }
  .spml30 {
    margin-left: 4vw !important;
  }
  .spmr30 {
    margin-right: 4vw !important;
  }
  .spmt25 {
    margin-top: 3.3333333333vw !important;
  }
  .spmb25 {
    margin-bottom: 3.3333333333vw !important;
  }
  .spml25 {
    margin-left: 3.3333333333vw !important;
  }
  .spmr25 {
    margin-right: 3.3333333333vw !important;
  }
  .spmt20 {
    margin-top: 2.6666666667vw !important;
  }
  .spmb20 {
    margin-bottom: 2.6666666667vw !important;
  }
  .spml20 {
    margin-left: 2.6666666667vw !important;
  }
  .spmr20 {
    margin-right: 2.6666666667vw !important;
  }
  .spmt15 {
    margin-top: 2vw !important;
  }
  .spmb15 {
    margin-bottom: 2vw !important;
  }
  .spml15 {
    margin-left: 2vw !important;
  }
  .spmr15 {
    margin-right: 2vw !important;
  }
  .spmt10 {
    margin-top: 1.3333333333vw !important;
  }
  .spmb10 {
    margin-bottom: 1.3333333333vw !important;
  }
  .spml10 {
    margin-left: 1.3333333333vw !important;
  }
  .spmr10 {
    margin-right: 1.3333333333vw !important;
  }
  .spmt5 {
    margin-top: 0.6666666667vw !important;
  }
  .spmb5 {
    margin-bottom: 0.6666666667vw !important;
  }
  .spml5 {
    margin-left: 0.6666666667vw !important;
  }
  .spmr5 {
    margin-right: 0.6666666667vw !important;
  }
  .spmt0 {
    margin-top: 0vw !important;
  }
  .spmb0 {
    margin-bottom: 0vw !important;
  }
  .spml0 {
    margin-left: 0vw !important;
  }
  .spmr0 {
    margin-right: 0vw !important;
  }
}
/* パディング
---------------------------------------------------------------------------- */
.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

@media screen and (max-width: 767px) {
  .sppt100 {
    padding-top: 13.3333333333vw !important;
  }
  .sppb100 {
    padding-bottom: 13.3333333333vw !important;
  }
  .sppl100 {
    padding-left: 13.3333333333vw !important;
  }
  .sppr100 {
    padding-right: 13.3333333333vw !important;
  }
  .sppt95 {
    padding-top: 12.6666666667vw !important;
  }
  .sppb95 {
    padding-bottom: 12.6666666667vw !important;
  }
  .sppl95 {
    padding-left: 12.6666666667vw !important;
  }
  .sppr95 {
    padding-right: 12.6666666667vw !important;
  }
  .sppt90 {
    padding-top: 12vw !important;
  }
  .sppb90 {
    padding-bottom: 12vw !important;
  }
  .sppl90 {
    padding-left: 12vw !important;
  }
  .sppr90 {
    padding-right: 12vw !important;
  }
  .sppt85 {
    padding-top: 11.3333333333vw !important;
  }
  .sppb85 {
    padding-bottom: 11.3333333333vw !important;
  }
  .sppl85 {
    padding-left: 11.3333333333vw !important;
  }
  .sppr85 {
    padding-right: 11.3333333333vw !important;
  }
  .sppt80 {
    padding-top: 10.6666666667vw !important;
  }
  .sppb80 {
    padding-bottom: 10.6666666667vw !important;
  }
  .sppl80 {
    padding-left: 10.6666666667vw !important;
  }
  .sppr80 {
    padding-right: 10.6666666667vw !important;
  }
  .sppt75 {
    padding-top: 10vw !important;
  }
  .sppb75 {
    padding-bottom: 10vw !important;
  }
  .sppl75 {
    padding-left: 10vw !important;
  }
  .sppr75 {
    padding-right: 10vw !important;
  }
  .sppt70 {
    padding-top: 9.3333333333vw !important;
  }
  .sppb70 {
    padding-bottom: 9.3333333333vw !important;
  }
  .sppl70 {
    padding-left: 9.3333333333vw !important;
  }
  .sppr70 {
    padding-right: 9.3333333333vw !important;
  }
  .sppt65 {
    padding-top: 8.6666666667vw !important;
  }
  .sppb65 {
    padding-bottom: 8.6666666667vw !important;
  }
  .sppl65 {
    padding-left: 8.6666666667vw !important;
  }
  .sppr65 {
    padding-right: 8.6666666667vw !important;
  }
  .sppt60 {
    padding-top: 8vw !important;
  }
  .sppb60 {
    padding-bottom: 8vw !important;
  }
  .sppl60 {
    padding-left: 8vw !important;
  }
  .sppr60 {
    padding-right: 8vw !important;
  }
  .sppt55 {
    padding-top: 7.3333333333vw !important;
  }
  .sppb55 {
    padding-bottom: 7.3333333333vw !important;
  }
  .sppl55 {
    padding-left: 7.3333333333vw !important;
  }
  .sppr55 {
    padding-right: 7.3333333333vw !important;
  }
  .sppt50 {
    padding-top: 6.6666666667vw !important;
  }
  .sppb50 {
    padding-bottom: 6.6666666667vw !important;
  }
  .sppl50 {
    padding-left: 6.6666666667vw !important;
  }
  .sppr50 {
    padding-right: 6.6666666667vw !important;
  }
  .sppt45 {
    padding-top: 6vw !important;
  }
  .sppb45 {
    padding-bottom: 6vw !important;
  }
  .sppl45 {
    padding-left: 6vw !important;
  }
  .sppr45 {
    padding-right: 6vw !important;
  }
  .sppt40 {
    padding-top: 5.3333333333vw !important;
  }
  .sppb40 {
    padding-bottom: 5.3333333333vw !important;
  }
  .sppl40 {
    padding-left: 5.3333333333vw !important;
  }
  .sppr40 {
    padding-right: 5.3333333333vw !important;
  }
  .sppt35 {
    padding-top: 4.6666666667vw !important;
  }
  .sppb35 {
    padding-bottom: 4.6666666667vw !important;
  }
  .sppl35 {
    padding-left: 4.6666666667vw !important;
  }
  .sppr35 {
    padding-right: 4.6666666667vw !important;
  }
  .sppt30 {
    padding-top: 4vw !important;
  }
  .sppb30 {
    padding-bottom: 4vw !important;
  }
  .sppl30 {
    padding-left: 4vw !important;
  }
  .sppr30 {
    padding-right: 4vw !important;
  }
  .sppt25 {
    padding-top: 3.3333333333vw !important;
  }
  .sppb25 {
    padding-bottom: 3.3333333333vw !important;
  }
  .sppl25 {
    padding-left: 3.3333333333vw !important;
  }
  .sppr25 {
    padding-right: 3.3333333333vw !important;
  }
  .sppt20 {
    padding-top: 2.6666666667vw !important;
  }
  .sppb20 {
    padding-bottom: 2.6666666667vw !important;
  }
  .sppl20 {
    padding-left: 2.6666666667vw !important;
  }
  .sppr20 {
    padding-right: 2.6666666667vw !important;
  }
  .sppt15 {
    padding-top: 2vw !important;
  }
  .sppb15 {
    padding-bottom: 2vw !important;
  }
  .sppl15 {
    padding-left: 2vw !important;
  }
  .sppr15 {
    padding-right: 2vw !important;
  }
  .sppt10 {
    padding-top: 1.3333333333vw !important;
  }
  .sppb10 {
    padding-bottom: 1.3333333333vw !important;
  }
  .sppl10 {
    padding-left: 1.3333333333vw !important;
  }
  .sppr10 {
    padding-right: 1.3333333333vw !important;
  }
  .sppt5 {
    padding-top: 0.6666666667vw !important;
  }
  .sppb5 {
    padding-bottom: 0.6666666667vw !important;
  }
  .sppl5 {
    padding-left: 0.6666666667vw !important;
  }
  .sppr5 {
    padding-right: 0.6666666667vw !important;
  }
  .sppt0 {
    padding-top: 0vw !important;
  }
  .sppb0 {
    padding-bottom: 0vw !important;
  }
  .sppl0 {
    padding-left: 0vw !important;
  }
  .sppr0 {
    padding-right: 0vw !important;
  }
}
/* print
---------------------------------------------------------------------------- */
/* 印刷設定
---------------------------------------------------------------------------- */
@media print {
  * html body {
    zoom: 70%;
  }
}

/* 20240430
---------------------------------------------------------------------------- */
.underline {
  text-decoration: underline;
}
a.purchese-btn01 {
  display: flex;
  background-color: #E84C22;
  padding: 1rem 8.5rem 1rem 4rem;
  justify-content: center;
  border-radius: 0.5333333333vw;
  box-shadow: 0 5px 0 #5d4a2d;
  transition: box-shadow 0.3s cubic-bezier(0.45, 0, 0.55, 1), transform 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}

img.purchase_balloon {
  width: 40%;
  min-width: 110px;
}
img.purchase_text {
  width: 80%;
  min-width: 120px;
}
a.purchese-btn01.purchese-btn_wide {
  aspect-ratio: 310/33;
  padding: 1rem 4rem;
  position: relative;
}
a.purchese-btn01.purchese-btn_noimg {
  padding: 1rem 4rem;
  position: relative;
}
a.purchese-btn01.purchese-btn_wide:after {
  position: absolute;
  content: "";
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15%;
  max-width: 25px;
  aspect-ratio: 26/45;
  background: url("/bf/assets/images/common/arrrow_right_wh.svg") center/contain no-repeat;
}
a.purchese-btn01.purchese-btn_noimg:after {
  position: absolute;
  content: "";
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 15%;
  max-width: 18px;
  aspect-ratio: 26/45;
  background: url("/bf/assets/images/common/arrrow_right_wh.svg") center/contain no-repeat;
}
a.purchese-btn01 span.purchese_cont {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 400px;
  gap: 0.5rem;
}
.l-cv a.purchese-btn01.purchese-btn_wide span.purchese_cont  {
  gap: 0;
}
a.purchese-btn01:not(.purchese-btn_wide):not(.purchese-btn_noimg) span.purchese_cont::after {
  position: absolute;
  aspect-ratio: 15/23;
  content: "";
  background: url("/bf/assets/images/common/purchase_btn03.png") center/contain no-repeat;
  width: 25%;
  min-width: 60px;
  top: 50%;
  transform: translate(100%,-50%);
  right: -5px;
}
.l-cv a.purchese-btn01 {
  margin-top: 3rem;
}
.l-cv a.purchese-btn01.purchese-btn_wide {
  margin-top: 0;
  aspect-ratio: 7/1;
}
.p-top-fv_box a.purchese-btn01 {
  aspect-ratio: 100 / 22;
}
.p-top-fv_box a.purchese-btn01 span.purchese_cont {
  gap: 0;
}

@media screen and (min-width: 768px) {
a.purchese-btn01:hover {
  box-shadow: none;
  transform: translateY(4px);
  transition: box-shadow 0.3s cubic-bezier(0.45, 0, 0.55, 1), transform 0.3s cubic-bezier(0.45, 0, 0.55, 1);
}
 img.purchase_balloon {
  width: 40%;
  min-width: 155px;
}
.l-footer-nav-list {
  justify-content: flex-start;
  gap: 1rem;
  width: calc(100% - 350px);
}
.l-footer-nav-btn {
  width: 350px;
}
.l-footer-nav-btn .a.purchese-btn01 {
  padding: 1rem 8.5rem 1rem 3rem;
  border-radius: 5px;
}
.l-footer-nav-btn a.purchese-btn01:not(.purchese-btn_wide):not(.purchese-btn_noimg) span.purchese_cont::after {
  min-width: 63px;
}
.l-footer-nav-list-item-link {
  font-size: 1.9rem;
}
.l-footer-nav-list {
  line-height: 1.2;
}
}
@media screen and (max-width: 767px) {
  a.purchese-btn01 {
    padding: 1rem 20vw 1rem 4vw;
  }
  a.purchese-btn01 span.purchese_cont {
    gap: 0;
    max-width: 350px;
  }
  a.purchese-btn01.purchese-btn_wide:after {
    width: 3vw;
    right: 5%;
  }
  .l-cv a.purchese-btn01.purchese-btn_wide {
    margin-top: 0;
    aspect-ratio: 181/44;
  }
  .l-cv a.purchese-btn01.purchese-btn_wide img.purchase_balloon {
    display: none;
  }
  .l-cv a.purchese-btn01.purchese-btn_wide img.purchase_balloon.top {
    display: block;
  }
  .l-cv a.purchese-btn01.purchese-btn_wide img.purchase_text {
    width: 90%;
  }
  body.check .l-fix_box {
    right: 0;
    width: 100%;
}
  body.check .l-fix_box .l-fix_btn {
  padding: 0 4vw;
  width: 100%;
}
a.purchese-btn01:not(.purchese-btn_wide):not(.purchese-btn_noimg) span.purchese_cont::after {
  min-width: 50px;
}
  body.check a.purchese-btn01:not(.purchese-btn_wide):not(.purchese-btn_noimg) span.purchese_cont::after {
  width: 22%;
}
.l-footer-nav-list-column-flex .l-footer-nav-list-item {
  width: 100%;
}
.l-gnav {
  padding-bottom: 10px;
}
img.purchase_balloon {
  width: 59%;
}
}
