/* CSS Document */

@font-face {
  font-family: 'Source Han Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Source Han Sans Regular'),
    url('/cafebu/assets/fonts/SourceHanSans-Regular.woff2') format('woff2'),
    url('/cafebu/assets/fonts/SourceHanSans-Regular.woff') format('woff'),
    url('/cafebu/assets/fonts/SourceHanSans-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Source Han Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: local('Source Han Sans Regular'),
    url('/cafebu/assets/fonts/SourceHanSans-Medium.woff2') format('woff2'),
    url('/cafebu/assets/fonts/SourceHanSans-Medium.woff') format('woff'),
    url('/cafebu/assets/fonts/SourceHanSans-Medium.otf') format('opentype');
}

@font-face {
  font-family: 'Source Han Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Source Han Sans Bold'),
    url('/cafebu/assets/fonts/SourceHanSans-Bold.woff2') format('woff2'),
    url('/cafebu/assets/fonts/SourceHanSans-Bold.woff') format('woff'),
    url('/cafebu/assets/fonts/SourceHanSans-Bold.otf') format('opentype');
}

/* ----------------------------------------------------
  base
---------------------------------------------------- */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-width: 320px;
  height: 100%;
  overflow-y: scroll;
  font-size: 14px;
  -webkit-text-size-adjust: 100%;
}

body {
  position: relative;
  /* overflow: hidden; */
  font-family: 'Source Han Sans', sans-serif;
  line-height: 1.85;
  background: #fff;
}

.l-page .l-container {
  width: fit-content;
  padding: 0;
}

@media (min-width: 768px) {
  .sec__inner {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
}



a {
  display: block;
}

a:hover {
  opacity: .8;
}

@media (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

@media (min-width: 768px) {
  html {
    min-width: 1280px;
    font-size: 16px;
  }

  body {
    line-height: 2.25;
  }

  .u-sp {
    display: none !important;
  }
}

/* ----------------------------------------------------
  module
---------------------------------------------------- */
.m-hdg {
  margin-bottom: 24px;
  line-height: 1;
  text-align: center;
}

.m-hdg img {
  width: auto;
  height: 65px;
}

.m-lead {
  margin-bottom: 20px;
  line-height: 1;
  text-align: center;
}

.m-box {
  background: #fff;
  border: 2px solid #420501;
}

.m-box__title {
  padding: 16px;
  line-height: 1;
  text-align: center;
  background: #ad272e;
  border-bottom: 2px solid #420501;
}

.m-box__title--has-balloon {
  position: relative;
  padding: 29px 12px 12px;
}

.m-box__title .balloon {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.m-box__title .balloon__inner {
  display: inline-block;
  width: 210px;
  padding: 12px;
  line-height: 1;
  background: #fbc304;
  border: 2px solid #420501;
  border-radius: 4px;
}

.m-box__title .balloon__inner::before {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  margin: auto;
  content: '';
  background: #fbc304;
  border: solid #420501;
  border-width: 0 2px 2px 0;
  border-top: none;
  border-left: none;
  border-radius: 0 0 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.m-box__content {
  padding: 30px 15px 23px;
}

.m-box__content .step-list {
}

.m-box__content .step-list__item {
  position: relative;
  padding: 14px;
  text-align: center;
  background: #e9e7e0;
}

.m-box__content .step-list__item .step {
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
}

.m-box__content .step-list__item .step img {
  display: block;
  width: auto;
  height: 10px;
  margin: auto;
}

.m-box__content .step-list__item + .step-list__item {
  margin-top: 30px;
}

.m-box__content .step-list__item + .step-list__item::before {
  position: absolute;
  top: -20px;
  right: 0;
  left: 0;
  width: 0;
  height: 0;
  margin: auto;
  content: '';
  border: solid transparent;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.button-list__item a {
  position: relative;
  display: block;
  padding-bottom: 29.62%;
}

.button-list__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .m-hdg {
    margin-bottom: 50px;
  }

  .m-hdg img {
    height: auto;
  }

  .m-lead {
    margin-bottom: 45px;
  }

  .m-box {
    border-width: 4px;
    border-radius: 4px;
  }

  .m-box__title {
    padding: 27px;
    border-bottom-width: 4px;
  }

  .m-box__title--has-balloon {
    position: relative;
    padding: 30px 24px 24px;
  }

  .m-box__title .balloon {
    top: -37px;
  }

  .m-box__title .balloon__inner {
    display: inline-block;
    width: auto;
    padding: 15px;
    border-width: 3px;
    border-radius: 8px;
  }

  .m-box__title .balloon__inner::before {
    bottom: -6px;
    width: 14px;
    height: 14px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 4px 0;
  }

  .m-box__content {
    padding: 34px 20px 30px;
  }

  .m-box__content .step-list {
    font-size: 15px;
  }

  .m-box__content .step-list__item {
    padding: 30px 15px;
    line-height: 2;
  }

  .m-box__content .step-list__item .step {
    top: -4px;
  }

  .m-box__content .step-list__item .step img {
    height: auto;
  }

  .m-box__content .step-list__item + .step-list__item {
    margin-top: 55px;
  }

  .m-box__content .step-list__item + .step-list__item::before {
    top: -30px;
    border-width: 8px 9px 0;
  }

  .button-list__item a:hover {
    opacity: 0.8;
  }
}

/* ----------------------------------------------------
  header
---------------------------------------------------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 15px 20px 0;
  background-color: #fff;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-align: center;
  -ms-flex-pack: justify;
}
.header .logo {
  z-index: 10;
}


@media (max-width: 767.9px) {
  .header .logo img {
    width: 9.867vw;
    height: auto;
    margin: 1.333vw 0 0 0.933vw;
  }
}



@media (min-width: 768px) {
  .header {
    padding: 21px 0 0;
    border-top-width: 8px;
  }

  .header__inner {
    width: 1100px;
    margin: 0 auto;
  }

  .header .logo img {
    width: auto;
    height: auto;
    margin-left: 35px;
  }
}

/* ----------------------------------------------------
  mv
---------------------------------------------------- */
.mv {
  position: relative;
  z-index: 1;
}

@media (max-width: 767.9px) {
  .mv-btn a{
    display: inline-block;
    position: absolute;
    bottom: 150.5vw;
    left: 50%;
    height: 58vw;
    width: 90vw;
    transform: translateX(-50%);
  }

}

@media (min-width: 768px) {
  .mv-btn a{
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    height: 130px;
    width: 1060px;
    transform: translateX(-50%);
  }
}

/* ----------------------------------------------------
  sec_01
---------------------------------------------------- */
.sec_01 {
  position: relative;
}
.sec_01 .btn_area {
  position: relative;
}

@media (min-width: 768px) {
  .sec_01 .btn01 a {
    position: absolute;
    left: 50%;
    top: 35px;
    margin: 0 0 0 -31px;
    display: block;
    width: 260px;
    height: 70px;
    border-radius: 30px;
  }
  .sec_01 .btn02 a {
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    margin: 0 auto;
    display: block;
    width: 790px;
    height: 147px;
  }
}


@media (max-width: 767.9px) {
  .sec_01 .btn01 a {
    position: absolute;
    left: 50%;
    top: 0;
    margin: 0 0 0 -21vw;
    display: block;
    width: 42vw;
    height: 11vw;
    border-radius: 4vw;
  }
  .sec_01 .btn02 a {
    position: absolute;
    left: 0;
    right: 0;
    top: 3vw;
    margin: 0 auto;
    display: block;
    width: 88vw;
    height: 22vw;
  }
}


/* ----------------------------------------------------
  sec_05
---------------------------------------------------- */
.sec_05 {
  position: relative;
}
.sec_05 .btn_area {
  position: relative;
}

@media (min-width: 768px) {
  .sec_05 .btn01 a {
    position: absolute;
    left: 0;
    right: 0;
    top: 19px;
    margin: 0 auto;
    display: block;
    width: 813px;
    height: 198px;
    border-radius: 30px;
  }
}

@media (max-width: 767.9px) {
  .sec_05 .btn01 a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: 0 auto;
    display: block;
    width: 90vw;
    height: 25vw;
    border-radius: 3vw;
  }
}



/* ----------------------------------------------------
  .footer
---------------------------------------------------- */
.footer {
  background: #ad272e;
}
.footer__bottom {
  padding: 20px 0;
  color: #fff;
  background: #000;
}

.footer__bottom .copy {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: -0.01em;
}

.footer__bottom img {
  margin-right: 12px;
}

@media (min-width: 768px) {
  .footer {
    position: relative;
  }
  .footer__bottom {
    padding: 34px 0;
  }

  .footer__bottom .copy {
    font-size: 11px;
    line-height: 1;
    letter-spacing: normal;
  }

  .footer__bottom img {
    margin-right: 17px;
  }
}
