/******************************************************************
 * Reset CSS - CBT LINKs
******************************************************************/
/* reset margin
-----------------------------------------------------------------*/
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,
img,
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,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  zoom: 1;
  /* hasLayout in IE */
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font: inherit;
  vertical-align: baseline;
  background: transparent;
  -webkit-text-size-adjust: 100%;
}

/* reset font style
-----------------------------------------------------------------*/
html {
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 62.5%;
}

html * {
  box-sizing: inherit;
}

body {
  position: relative;
  font-family: serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  background: transparent;
  color: #000;
  width: 100%;
}

ul,
ol {
  list-style-type: none;
}

a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
}

em,
strong {
  font-style: normal;
  font-weight: inherit;
}

/* reset table
-----------------------------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

table,
th,
td {
  table-layout: fixed;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

/* reset form style
-----------------------------------------------------------------*/
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
textarea,
select,
option {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}

button,
input[type=reset],
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  appearance: none;
  appearance: none;
  padding: 0;
}

select::-ms-expand {
  display: none;
}

button::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

button:focus,
input[type=reset]:focus,
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

textarea {
  resize: none;
  overflow: auto;
}

button {
  font: inherit;
}

*:focus {
  outline: none;
}

/* reset img
-----------------------------------------------------------------*/
img {
  font-size: 0;
  line-height: 0;
  vertical-align: bottom;
  height: auto;
  max-width: 100%;
}

/* IE
-----------------------------------------------------------------*/
main {
  display: block;
}

.c-fadein {
  opacity: 0;
  transition: transform ease 1s, opacity ease 1s;
}

.c-fadein.to-top {
  transform: translateY(50px);
}

.c-fadein.to-bottom {
  transform: translateY(-50px);
}

.c-fadein.to-right {
  transform: translateX(-50px);
}

.c-fadein.to-left {
  transform: translateX(50px);
}

.c-fadein.to-rt {
  transform: translate(-50px, 50px);
}

.c-fadein.to-rb {
  transform: translate(-50px, -50px);
}

.c-fadein.to-lt {
  transform: translate(50px, 50px);
}

.c-fadein.to-lb {
  transform: translate(50px, -50px);
}

.c-fadein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-slidein {
  opacity: 0;
  transition: transform ease-out 0.5s, opacity ease-out 0.5s;
}

.c-slidein.to-top {
  transform: translateY(100vh);
}

.c-slidein.to-bottom {
  transform: translateY(-100vh);
}

.c-slidein.to-right {
  transform: translateX(-100vw);
}

.c-slidein.to-left {
  transform: translateX(100vw);
}

.c-slidein.to-rt {
  transform: translate(-100vw, 100vh);
}

.c-slidein.to-rb {
  transform: translate(-100vw, -100vh);
}

.c-slidein.to-lt {
  transform: translate(100vw, 100vh);
}

.c-slidein.to-lb {
  transform: translate(100vw, -100vh);
}

.c-slidein.inview {
  opacity: 1;
  transform: translate(0) !important;
}

.c-reveal {
  opacity: 0;
  transition: clip-path 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.c-reveal.to-right {
  clip-path: inset(0 100% 0 0);
}

.c-reveal.to-left {
  clip-path: inset(0 0 0 100%);
}

.c-reveal.to-top {
  clip-path: inset(100% 0 0 0);
}

.c-reveal.to-bottom {
  clip-path: inset(0 0 100% 0);
}

.c-reveal.inview {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.ease-in {
  transition-timing-function: ease-in;
}

.ease-out {
  transition-timing-function: ease-out;
}

.ease-in-out {
  transition-timing-function: ease-in-out;
}

.c-btn01 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe656;
  border: solid 2px #111;
  border-radius: 100px;
  font-family: "GenJyuuGothic";
  font-weight: 700;
  padding: 0 2% 0 0;
  transition: 0.3s;
}
.c-btn01::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  display: block;
  width: 8px;
  height: 12px;
  background: url(../img/common/tri.png) center/contain no-repeat;
  margin: auto;
  transition: 0.3s;
}

.c-sec-ttl {
  text-align: center;
}
.c-sec-ttl__icon {
  display: block;
  margin: 0 auto 10px;
}
.c-sec-ttl__ja {
  font: 700 48px "GenJyuuGothic";
  line-height: 1.35;
  text-shadow: -4px -4px 1px #fff, 4px -4px 1px #fff, -4px 4px 1px #fff, 4px 4px 1px #fff, -4px 0 1px #fff, 4px 0 1px #fff, 0 -4px 1px #fff, 0 4px 1px #fff, -4px -4px 1px #fff, 4px -4px 1px #fff, -4px 4px 1px #fff, 4px 4px 1px #fff, -4px 0 1px #fff, 4px 0 1px #fff, 0 -4px 1px #fff, 0 4px 1px #fff;
}
.c-sec-ttl__en {
  display: block;
  font: 700 22px "Outfit", sans-serif;
  color: #f79904;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-top: 7px;
}

.c-slick .slick-list {
  overflow: visible;
}
.c-slick .slick-track {
  display: flex;
}
.c-slick .slick-slide {
  height: auto;
}
.c-slick .slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 40px;
  background: #f79904;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  margin: auto;
  z-index: 1;
}
.c-slick .slick-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 8px;
  height: 13px;
  background: #fff;
  -webkit-mask: url(../img/top/chevron.png) center/contain no-repeat;
          mask: url(../img/top/chevron.png) center/contain no-repeat;
  transform: translate(-50%, -50%);
}
.c-slick .slick-prev {
  left: 0;
  transform: rotate(180deg);
}
.c-slick .slick-next {
  right: 0;
}

body {
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-feature-settings: "palt";
  line-height: 2;
  min-width: 375px;
  scroll-behavior: auto !important;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow: visible;
}

.inner {
  width: 100%;
  max-width: calc(1200px + 40px);
  margin: 0 auto;
  padding: 0 20px;
}

.header {
  position: relative;
  padding: 100px 0 0;
  z-index: 10000;
}
.header--overlap {
  height: 0;
  transition: opacity 1s linear 0.2s;
}
.header__inner {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100px;
  background: #f79904;
  padding: 0 100px 0 calc(50% - 600px);
  transition: background-color 0.2s, box-shadow 0.2s, transform 0.5s;
}
.header__ttl {
  display: flex;
}
.header__logo img {
  display: block;
}
.header__catch {
  color: #fff;
  font: 700 16px "GenJyuuGothic";
  letter-spacing: 0.02em;
  margin-left: 19px;
}
.header__contact {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.header__contact .c-btn01 {
  width: 280px;
  height: 51.5px;
  box-shadow: 0 3px 0 #9e6409;
  background-color: #fff;
  font-size: 18px;
}
.header__msg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  background: #fff;
  font: 700 18px "GenJyuuGothic";
}
.header__msg strong {
  color: #f79904;
}

.transparent .header__inner {
  background: transparent;
  box-shadow: 0 0 0 #ebebeb;
}
.header-tel {
  color: #fff;
  line-height: 1;
  padding: 6px 0 0;
  text-align: right;
}
.header-tel a {
  transition: 0.2s;
}
.header-tel__num {
  font: 500 28px "Outfit", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1;
}
.header-tel__num::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 27px;
  background: url(../img/common/icon-phone.png) center/contain no-repeat;
  margin-right: 7px;
  transition: 0.2s;
  vertical-align: -5px;
}
.header-tel__num span {
  font-weight: 400;
}
.header-tel__note {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.header-tel__note .time {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
}

.transparent .header-tel a,
.nav-open .header-tel a {
  color: #fff;
}
.transparent .header-tel a:hover,
.nav-open .header-tel a:hover {
  color: #fff;
}
.transparent .header-tel__num::before,
.nav-open .header-tel__num::before {
  background: #fff;
}

.header-hamburger {
  display: none;
}

.footer {
  position: relative;
  background: url(../img/common/footer-bg.png) center/1700px auto repeat;
}
.footer__main {
  position: relative;
  overflow: hidden;
  padding-top: 32px;
  padding-bottom: 17px;
}
.footer__main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% + 241px);
  display: block;
  width: 360px;
  height: 302px;
  background: url(../img/common/footer-illust.png) center bottom/contain no-repeat;
}
.footer__catch {
  font: 700 32px "GenJyuuGothic";
  letter-spacing: 0.06em;
  line-height: 1.45;
  margin-top: 28px;
  text-shadow: -3.5px -3.5px 1.5px #fff, 3.5px -3.5px 1.5px #fff, -3.5px 3.5px 1.5px #fff, 3.5px 3.5px 1.5px #fff, -3.5px 0 1.5px #fff, 3.5px 0 1.5px #fff, 0 -3.5px 1.5px #fff, 0 3.5px 1.5px #fff, -3.5px -3.5px 1.5px #fff, 3.5px -3.5px 1.5px #fff, -3.5px 3.5px 1.5px #fff, 3.5px 3.5px 1.5px #fff, -3.5px 0 1.5px #fff, 3.5px 0 1.5px #fff, 0 -3.5px 1.5px #fff, 0 3.5px 1.5px #fff;
}
.footer__catch em {
  color: #f79904;
  font-size: 44px;
}
.footer__buttons {
  display: flex;
  gap: 17px;
  margin-top: 25px;
}
.footer__buttons .c-btn01 {
  flex: 0 0 410px;
  height: 73px;
  background: #fffceb;
  border-width: 3px;
  box-shadow: 0 4px 0 0 rgba(17, 17, 17, 0.2);
  font-size: 21px;
  padding: 0 0 0 1%;
}
.footer__buttons .c-btn01::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  display: block;
  background: center/contain no-repeat;
  margin: auto;
}
.footer__buttons .c-btn01.solar::before {
  width: 28px;
  height: 28px;
  background-image: url(../img/common/icon-solar.png);
}
.footer__buttons .c-btn01.battery::before {
  width: 32px;
  height: 17px;
  background-image: url(../img/common/icon-battery.png);
}
.footer__buttons .c-btn01::after {
  right: 20px;
  width: 9px;
  height: 13px;
}
.footer__copyright {
  font: 500 14px "Outfit", sans-serif;
  letter-spacing: 0.06em;
  margin-top: 44px;
  text-align: center;
}

.page-top {
  position: fixed;
  bottom: 100px;
  right: 40px;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.page-top.show {
  opacity: 1;
  visibility: visible;
}
.page-top a {
  display: block;
  background: url(../img/common/to-top.png) center top/83px auto no-repeat;
  padding-top: 93px;
  font: 800 17px "Outfit", sans-serif;
  text-align: center;
  transition: 0.2s;
}

.bottom-bnr {
  width: 100%;
  height: 90px;
}
.bottom-bnr__fixed {
  position: fixed;
  bottom: -180px;
  left: 0;
  width: 100%;
  height: 90px;
  background: #f79904;
  z-index: 10000;
  transition: 0.3s;
}
.bottom-bnr__fixed.show {
  bottom: 0;
}
.bottom-bnr__inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.bottom-bnr__illust {
  position: relative;
  flex: 0 0 253px;
  height: 100%;
  margin: 0 25px 0 12px;
}
.bottom-bnr__illust img {
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: auto;
}
.bottom-bnr__balloon {
  flex: 0 0 524.5px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 70.5px;
  background: url(../img/common/bottom-balloon.png) center/contain no-repeat;
  font: 500 32px "GenJyuuGothic";
  margin-top: 2px;
  margin-right: 20px;
  padding: 0 0 10px 15px;
}
.bottom-bnr__balloon .num {
  display: inline-block;
  font: 700 50px "Outfit", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0 -4px 3px -17px;
  vertical-align: -3px;
}
.bottom-bnr__balloon::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 40px;
  background: url(../img/common/light.png) center/contain no-repeat;
  margin-left: 3px;
  margin-bottom: 7px;
}
.bottom-bnr .c-btn01 {
  flex: 0 0 331px;
  height: 61px;
  box-shadow: 0 4px 0 0 rgba(17, 17, 17, 0.2);
  font-size: 20px;
  margin-left: auto;
  padding-right: 1%;
}
.bottom-bnr .c-btn01::after {
  right: 19px;
}
.bottom-bnr__estimate {
  display: none;
}
@media screen and (min-width: 751px) {
  .sp {
    display: none !important;
  }
}
@media (min-width: 960px), (max-width: 750px) {
  .tb-only {
    display: none !important;
  }
}
@media screen and (min-width: 960px) {
  .pc-none {
    display: none !important;
  }
  .c-fadein.sp-only,
  .c-slidein.sp-only,
  .c-reveal.sp-only {
    opacity: 1;
    transform: none;
  }
  .c-btn01:hover {
    background-color: #fff;
  }
  .c-btn01:hover::after {
    transform: translateX(5px);
  }
  .header .c-btn01:hover {
    background-color: #ffe656;
  }
  .footer__buttons .c-btn01:hover {
    background-color: #fff;
  }
  .page-top a:hover {
    transform: scale(1.05);
  }
}
@media screen and (max-width: 1400px) {
  .header__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 1250px) {
  .header-tel__num {
    font-size: 24px;
  }
  .header-tel__num::before {
    width: 21px;
    height: 20px;
    margin-right: 5px;
    vertical-align: -3px;
  }
  .header-tel__note {
    font-size: 12px;
  }
  .header-tel__note .time {
    font-size: 13px;
  }
}
@media screen and (max-width: 1200px) {
  .header__ttl {
    flex-direction: column;
  }
  .header__catch {
    font-size: 14px;
    margin-left: 0;
    margin-top: 10px;
  }
  .footer__main::after {
    left: unset;
    right: 20px;
    width: 25%;
  }
  .footer__buttons .c-btn01 {
    flex: 0 0 353px;
    font-size: 18px;
  }
  .bottom-bnr__illust {
    flex-basis: 21%;
    margin-right: 5px;
  }
  .bottom-bnr__balloon {
    flex: 1;
    font-size: 26px;
    margin-right: 10px;
  }
  .bottom-bnr__balloon .num {
    font-size: 42px;
  }
  .bottom-bnr .c-btn01 {
    flex: 0 0 280px;
    font-size: 18px;
  }
}
@media screen and (max-width: 959px) {
  .header {
    padding: 60px 0 0;
  }
  .header__inner {
    height: 60px;
    padding: 0 0 0 20px;
  }
  .header__catch {
    display: none;
  }
  .header .c-btn01 {
    display: none;
  }
  .transparent .header__inner {
    box-shadow: 0 0 0;
  }
  .nav-open .header__inner {
    background-color: #f79904;
    box-shadow: none;
  }
  .header-tel {
    padding: 0;
  }
  .header-tel a {
    display: block;
    width: 60px;
    height: 60px;
    background: url(../img/common/header-tel-sp.png) center/cover no-repeat;
  }
  .header-tel__num, .header-tel__note {
    display: none;
  }
  .header-hamburger {
    position: relative;
    display: block;
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    margin-left: auto;
  }
  .header-hamburger span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 24px;
    height: 3px;
    background: #111;
    margin: auto;
    transition: 0.2s;
  }
  .header-hamburger span:nth-child(1) {
    transform: translateY(-9.5px);
  }
  .header-hamburger span:nth-child(3) {
    transform: translateY(9.5px);
  }
  .footer__main::after {
    width: 40%;
  }
  .footer__buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__buttons .c-btn01 {
    flex: auto;
    width: 400px;
  }
  .bottom-bnr__illust {
    flex-basis: 18%;
  }
  .bottom-bnr__balloon {
    flex: 1;
    font-size: 20px;
    padding-bottom: 15px;
  }
  .bottom-bnr__balloon .num {
    font-size: 36px;
    margin: 0 0px 3px -10px;
  }
  .bottom-bnr__balloon::after {
    width: 21px;
    margin: 0;
  }
  .bottom-bnr .c-btn01 {
    flex: 0 0 250px;
    font-size: 15px;
  }
}
@media screen and (max-width: 959px) and (min-width: 751px) {
  .tb-none {
    display: none !important;
  }
}
@media screen and (max-width: 750px) {
  .sp-none {
    display: none !important;
  }
  .pc {
    display: none !important;
  }
  .c-slidein {
    transition-duration: 0.4s;
  }
  .c-reveal {
    transition-duration: 0.4s;
  }
  .c-fadein.pc-only,
  .c-slidein.pc-only,
  .c-reveal.pc-only {
    opacity: 1;
    transform: none;
  }
  .c-btn01 {
    border-width: 1px;
  }
  .c-btn01::after {
    width: 7px;
    height: 9px;
  }
  .c-sec-ttl__icon {
    width: 37px;
    margin-bottom: 2px;
  }
  .c-sec-ttl__ja {
    font-size: 25px;
    line-height: 1.2;
    text-shadow: -1.5px -1.5px 0.5px #fff, 1.5px -1.5px 0.5px #fff, -1.5px 1.5px 0.5px #fff, 1.5px 1.5px 0.5px #fff, -1.5px 0 0.5px #fff, 1.5px 0 0.5px #fff, 0 -1.5px 0.5px #fff, 0 1.5px 0.5px #fff, -1.5px -1.5px 0.5px #fff, 1.5px -1.5px 0.5px #fff, -1.5px 1.5px 0.5px #fff, 1.5px 1.5px 0.5px #fff, -1.5px 0 0.5px #fff, 1.5px 0 0.5px #fff, 0 -1.5px 0.5px #fff, 0 1.5px 0.5px #fff;
  }
  .c-sec-ttl__en {
    font-size: 13px;
    margin-top: 4px;
  }
  body {
    font-size: 15px;
  }
  .header__logo img {
    width: 123.5px;
  }
  .header__msg {
    height: 32px;
    font-size: 13px;
  }
  .footer__main {
    padding-top: 18px;
    padding-bottom: 25px;
  }
  .footer__main::after {
    display: none;
  }
  .footer__logo {
    text-align: center;
  }
  .footer__logo img {
    width: 123.5px;
  }
  .footer__catch {
    font-size: 16px;
    line-height: 1.4;
    margin-top: 20px;
    text-align: center;
    text-shadow: -1.5px -1.5px 1px #fff, 1.5px -1.5px 1px #fff, -1.5px 1.5px 1px #fff, 1.5px 1.5px 1px #fff, -1.5px 0 1px #fff, 1.5px 0 1px #fff, 0 -1.5px 1px #fff, 0 1.5px 1px #fff, -1.5px -1.5px 1px #fff, 1.5px -1.5px 1px #fff, -1.5px 1.5px 1px #fff, 1.5px 1.5px 1px #fff, -1.5px 0 1px #fff, 1.5px 0 1px #fff, 0 -1.5px 1px #fff, 0 1.5px 1px #fff;
  }
  .footer__catch em {
    font-size: 24px;
  }
  .footer__buttons {
    flex-direction: column;
    align-items: center;
    gap: 17px;
    margin-top: 21px;
  }
  .footer__buttons .c-btn01 {
    flex: auto;
    width: 295px;
    height: 51px;
    border-width: 1px;
    box-shadow: 0 2px 0 0 rgba(17, 17, 17, 0.2);
    font-size: 15px;
    padding: 0 0 0 2%;
  }
  .footer__buttons .c-btn01::before {
    left: 14px;
  }
  .footer__buttons .c-btn01.solar::before {
    width: 18.5px;
    height: 17.5px;
    background-image: url(../img/common/icon-solar_sp.png);
  }
  .footer__buttons .c-btn01.battery::before {
    width: 23px;
    height: 12.5px;
    background-image: url(../img/common/icon-battery_sp.png);
  }
  .footer__buttons .c-btn01::after {
    right: 18px;
    width: 7px;
    height: 9px;
  }
  .footer__copyright {
    font-size: 10px;
    margin-top: 29px;
  }
  .footer__to-top {
    display: none;
  }
  .page-top {
    bottom: 80px;
    right: 10px;
  }
  .page-top a {
    background: url(../img/common/to-top.png) center top/41.5px auto no-repeat;
    padding-top: 45px;
    font-size: 13px;
  }
  .bottom-bnr {
    height: 75px;
  }
  .bottom-bnr__fixed {
    height: 75px;
  }
  .bottom-bnr__inner {
    justify-content: center;
    padding: 0 10px 0 0;
  }
  .bottom-bnr__illust {
    flex: 0 0 53px;
    margin-right: 2px;
    margin-left: 0;
  }
  .bottom-bnr__balloon {
    flex: 0 0 max-content;
    display: block;
    height: 57.5px;
    background-image: url(../img/common/bottom-balloon_sp.png);
    background-size: 100% 100%;
    font-size: 12px;
    line-height: 1;
    margin-top: 0;
    margin-right: 6px;
    padding: 8px 9px 0px 15px;
  }
  .bottom-bnr__balloon .num {
    font-size: 23px;
    letter-spacing: 0;
    margin: 0 0px 3px -5px;
    vertical-align: -3px;
  }
  .bottom-bnr__balloon::after {
    content: none;
  }
  .bottom-bnr__estimate {
    display: block;
    text-align: center;
    font: 700 13px "GenJyuuGothic";
    line-height: 1;
  }
  .bottom-bnr__estimate span {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
  }
  .bottom-bnr__estimate span::before, .bottom-bnr__estimate span::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 13px;
    background: url(../img/common/dot-deco.png) center/contain no-repeat;
  }
  .bottom-bnr__estimate span::after {
    transform: rotateY(180deg);
  }
  .bottom-bnr .c-btn01 {
    width: 180px;
    height: 41px;
    box-shadow: 0 2px 0 0 rgba(17, 17, 17, 0.2);
    font-size: 15px;
    margin-left: 0;
    padding-right: 5%;
  }
  .bottom-bnr .c-btn01::after {
    right: 19px;
  }
}
