*{
  scroll-margin-top:calc(90 / 16 * 1rem);
}

@media (max-width: 767px) {
  *{
    scroll-margin-top:calc(60 / 16 * 1rem);
  }
}

#wrapper {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #2d2d2d;
}
#wrapper *:hover {
  transition: all 0.3s ease;
}
#wrapper * {
  transition: all 0.3s ease;
}
footer .ftTop {
  margin-top: 0;
}
@media (min-width: 1367px) {
  .u-hide-pc {
    display: none !important;
  }
  .u-hide-sp {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  .u-hide-pc {
    display: none !important;
  }
  .u-hide-sp {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .u-hide-pc {
    display: block !important;
  }
  .u-hide-sp {
    display: none !important;
  }
}
/* scroll */
@media (min-width: 1367px) {
  .section-fade {
    opacity: 0;
    transition: 0.5s;
    transform: translateY(calc(20 / 16 * 1rem));
  }
  .section-is-show {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  .section-fade {
    opacity: 0;
    transition: 0.5s;
    transform: translateY(calc(20 / 1366 * 100vw));
  }
  .section-is-show {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 767px) {
  .section-fade {
    opacity: 0;
    transition: 0.5s;
    /* position: relative; */
    transform: translateY(calc(20 / 750 * 100vw));
  }
  .section-is-show {
    opacity: 1;
    transform: translateY(0);
  }
}
/* btn animation */
@media (min-width: 768px) {
  .animation-bounce:hover {
    animation: hover-bounce 0.5s ease 1;
    transition: all 0.3s ease;
    opacity: 1;
  }
  .animation-bounce a:hover {
    opacity: 1;
  }
  @keyframes hover-bounce {
    0% {
      transform: scale(1);
    }

    40% {
      transform: scale(0.85);
    }

    to {
      transform: scale(1);
    }
  }
}
/* --------------------------------------------------------------------------
  HAMBURGER
-------------------------------------------------------------------------- */
/* hamburger-button */
@media (min-width: 1367px) {
  .hamburger-button {
    position: fixed;
    top: 118px;
    right: calc(31 / 16 * 1rem);
    width: calc(40 / 16 * 1rem);
    height: calc(22 / 16 * 1rem);
    z-index: 998;
    cursor: pointer;
  }
  .hamburger.up .hamburger-button {
    top: 30px;
  }
  .hamburger-button .hamburger-line {
  }
  .hamburger-button .hamburger-line::before {
    content: "";
    position: absolute;
    width: calc(40 / 16 * 1rem);
    height: calc(2 / 16 * 1rem);
    background: #01653e;
  }
  .hamburger-button .hamburger-line:nth-child(1)::before {
    top: 0;
    right: 0;
  }
  .hamburger-button .hamburger-line:nth-child(2)::before {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .hamburger-button .hamburger-line:nth-child(3)::before {
    bottom: 0;
    right: 0;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(2)::before {
    content: none;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(1)::before,
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(3)::before {
    top: 50%;
    right: 0;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(1)::before {
    transform: translateY(-50%) rotate(45deg);
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(3)::before {
    transform: translateY(-50%) rotate(-45deg);
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  .hamburger-button {
    position: fixed;
    top: 118px;
    right: calc(31 / 1366 * 100vw);
    width: calc(40 / 1366 * 100vw);
    height: calc(22 / 1366 * 100vw);
    z-index: 998;
  }
  .hamburger.up .hamburger-button {
    top: 30px;
  }
  .hamburger-button .hamburger-line {
  }
  .hamburger-button .hamburger-line::before {
    content: "";
    position: absolute;
    width: calc(40 / 1366 * 100vw);
    height: calc(2 / 1366 * 100vw);
    background: #01653e;
  }
  .hamburger-button .hamburger-line:nth-child(1)::before {
    top: 0;
    right: 0;
  }
  .hamburger-button .hamburger-line:nth-child(2)::before {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .hamburger-button .hamburger-line:nth-child(3)::before {
    bottom: 0;
    right: 0;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(2)::before {
    content: none;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(1)::before,
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(3)::before {
    top: 50%;
    right: 0;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(1)::before {
    transform: translateY(-50%) rotate(45deg);
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(3)::before {
    transform: translateY(-50%) rotate(-45deg);
  }
}
@media (max-width: 767px) {
  .hamburger-button {
    position: fixed;
    top: 75px;
    right: calc(20 / 750 * 100vw);
    width: calc(65 / 750 * 100vw);
    height: calc(35 / 750 * 100vw);
    z-index: 500;
  }
  .hamburger.up .hamburger-button {
    top: 20px;
  }
  .hamburger-button .hamburger-line {
  }
  .hamburger-button .hamburger-line::before {
    content: "";
    position: absolute;
    width: calc(65 / 750 * 100vw);
    height: calc(4 / 750 * 100vw);
    background: #01653e;
  }
  .hamburger-button .hamburger-line:nth-child(1)::before {
    top: 0;
    right: 0;
  }
  .hamburger-button .hamburger-line:nth-child(2)::before {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .hamburger-button .hamburger-line:nth-child(3)::before {
    bottom: 0;
    right: 0;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(2)::before {
    content: none;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(1)::before,
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(3)::before {
    top: 50%;
    right: 0;
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(1)::before {
    transform: translateY(-50%) rotate(45deg);
  }
  .hamburger-button.hamburger-is-active .hamburger-line:nth-child(3)::before {
    transform: translateY(-50%) rotate(-45deg);
  }
}
/* hamburger-contents */
@media (min-width: 1367px) {
  html.hamburger-is-open {
    overflow: hidden;
  }
  .hamburger {
    width: 100%;
    height: 100%;
  }
  .hamburger-contents {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 100;
    width: calc(365 / 16 * 1rem);
    height: 100vh;
  }
  .hamburger-contents.hamburger-is-open {
    right: 0;
    transition: all 0.3s ease;
  }
  .hamburger-contents .hamburger-contents__inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: calc(365 / 16 * 1rem);
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
  }
  .hamburger-contents .hamburger-contents__inner {
    right: 0;
    transition: all 0.3s ease;
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .hamburger-is-open.overlay {
    display: block;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 10;
  }
  .hamburger-contents .hamburger-contents-head {
    background: #fcf7ea;
    padding: 136px calc(40 / 16 * 1rem) calc(48 / 16 * 1rem);
  }
  .hamburger.up .hamburger-contents .hamburger-contents-head {
    padding-top: 85px;
  }
  .hamburger-contents-list {
    padding: calc(48 / 16 * 1rem) calc(40 / 16 * 1rem);
  }
  .hamburger-contents-list-item {
    position: relative;
    padding-bottom: calc(16 / 16 * 1rem);
    margin-bottom: calc(16 / 16 * 1rem);
  }
  .hamburger-contents-list-item:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/dot_line.svg) repeat-x center / contain;
    width: 100%;
    height: calc(9 / 16 * 1rem);
  }
  .hamburger-contents .hamburger-contents-head-txt__label {
    width: calc(167 / 16 * 1rem);
    margin: 0 auto;
  }
  .hamburger-contents-list-txt {
    position: relative;
    margin: 0 calc(10 / 16 * 1rem);
    display: flex;
    align-items: center;
  }
  .hamburger-contents-list-txt * {
    display: block;
  }
  .hamburger-contents-list-txt__icon {
    position: relative;
    width: calc(35 / 16 * 1rem);
    height: calc(35 / 16 * 1rem);
  }
  .hamburger-contents-list-txt__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
  .hamburger-contents-list-item--kinds .hamburger-contents-list-txt__icon::before {
    width: calc(28 / 16 * 1rem);
    height: calc(33 / 16 * 1rem);
    background: url(../img/ico_drink.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--eiyoso .hamburger-contents-list-txt__icon::before {
    width: calc(30 / 16 * 1rem);
    height: calc(29 / 16 * 1rem);
    background: url(../img/ico_graph.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--when .hamburger-contents-list-txt__icon::before {
    width: calc(35 / 16 * 1rem);
    height: calc(35 / 16 * 1rem);
    background: url(../img/ico_clock.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--qa .hamburger-contents-list-txt__icon::before {
    width: calc(32 / 16 * 1rem);
    height: calc(25 / 16 * 1rem);
    background: url(../img/ico_qa.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-txt-box {
    margin-left: calc(15 / 16 * 1rem);
  }
  .hamburger-contents-list-txt__label--sub,
  .hamburger-contents-list-txt__label {
    color: #01653e;
    font-weight: bold;
  }
  .hamburger-contents-list-txt__label--sub {
    font-size: calc(12 / 16 * 1rem);
  }
  .hamburger-contents-list-txt__label {
    font-size: calc(20 / 16 * 1rem);
  }

  .hamburger-contents-to-top {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
  }
  .hamburger-contents-to-top-inner {
    display: block;
    padding: calc(17 / 16 * 1rem);
    background: #01653e;
  }
  .hamburger-contents-to-top-inner__label {
    position: relative;
    color: #fff;
    font-size: calc(16 / 16 * 1rem);
    font-weight: bold;
  }
  .hamburger-contents-to-top-inner__label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(-14 / 16 * 1rem);
    transform: translateY(-50%) rotate(45deg);
    width: calc(8 / 16 * 1rem);
    height: calc(8 / 16 * 1rem);
    border-top: #fff calc(1.5 / 16 * 1rem) solid;
    border-right: #fff calc(1.5 / 16 * 1rem) solid;
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  html.hamburger-is-open {
    overflow: hidden;
  }
  .hamburger {
    width: 100%;
    height: 100%;
  }
  .hamburger-contents {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 500;
    width: calc(365 / 1366 * 100vw);
    height: 100vh;
  }
  .hamburger-contents.hamburger-is-open {
    right: 0;
    transition: all 0.3s ease;
  }
  .hamburger-contents .hamburger-contents__inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: calc(365 / 1366 * 100vw);
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
  }
  .hamburger-contents .hamburger-contents__inner {
    right: 0;
    transition: all 0.3s ease;
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .hamburger-is-open.overlay {
    display: block;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 10;
  }
  .hamburger-contents .hamburger-contents-head {
    background: #fcf7ea;
    padding: 136px calc(40 / 1366 * 100vw) calc(48 / 1366 * 100vw);
  }
  .hamburger.up .hamburger-contents .hamburger-contents-head {
    padding-top: 85px;
  }
  .hamburger-contents-list {
    padding: calc(48 / 1366 * 100vw) calc(40 / 1366 * 100vw);
  }
  .hamburger-contents-list-item {
    position: relative;
    padding-bottom: calc(16 / 1366 * 100vw);
    margin-bottom: calc(16 / 1366 * 100vw);
  }
  .hamburger-contents-list-item:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/dot_line.svg) repeat-x center / contain;
    width: 100%;
    height: calc(9 / 1366 * 100vw);
  }
  .hamburger-contents .hamburger-contents-head-txt__label {
    width: calc(167 / 1366 * 100vw);
    margin: 0 auto;
  }
  .hamburger-contents-list-txt {
    position: relative;
    margin: 0 calc(10 / 1366 * 100vw);
    display: flex;
    align-items: center;
  }
  .hamburger-contents-list-txt * {
    display: block;
  }
  .hamburger-contents-list-txt__icon {
    position: relative;
    width: calc(35 / 1366 * 100vw);
    height: calc(35 / 1366 * 100vw);
  }
  .hamburger-contents-list-txt__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
  .hamburger-contents-list-item--kinds .hamburger-contents-list-txt__icon::before {
    width: calc(28 / 1366 * 100vw);
    height: calc(33 / 1366 * 100vw);
    background: url(../img/ico_drink.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--eiyoso .hamburger-contents-list-txt__icon::before {
    width: calc(30 / 1366 * 100vw);
    height: calc(29 / 1366 * 100vw);
    background: url(../img/ico_graph.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--when .hamburger-contents-list-txt__icon::before {
    width: calc(32 / 1366 * 100vw);
    height: calc(25 / 1366 * 100vw);
    background: url(../img/ico_clock.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--qa .hamburger-contents-list-txt__icon::before {
    width: calc(35 / 1366 * 100vw);
    height: calc(35 / 1366 * 100vw);
    background: url(../img/ico_qa.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-txt-box {
    margin-left: calc(15 / 1366 * 100vw);
  }
  .hamburger-contents-list-txt__label--sub,
  .hamburger-contents-list-txt__label {
    color: #01653e;
    font-weight: bold;
  }
  .hamburger-contents-list-txt__label--sub {
    font-size: calc(12 / 1366 * 100vw);
  }
  .hamburger-contents-list-txt__label {
    font-size: calc(20 / 1366 * 100vw);
  }

  .hamburger-contents-to-top {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    text-align: center;
  }
  .hamburger-contents-to-top-inner {
    display: block;
    padding: calc(17 / 1366 * 100vw);
    background: #01653e;
  }
  .hamburger-contents-to-top-inner__label {
    position: relative;
    color: #fff;
    font-size: calc(16 / 1366 * 100vw);
    font-weight: bold;
  }
  .hamburger-contents-to-top-inner__label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(-14 / 1366 * 100vw);
    transform: translateY(-50%) rotate(45deg);
    width: calc(8 / 1366 * 100vw);
    height: calc(8 / 1366 * 100vw);
    border-top: #fff calc(1.5 / 16 * 1rem) solid;
    border-right: #fff calc(1.5 / 16 * 1rem) solid;
  }
}
@media (max-width: 767px) {
  html.hamburger-is-open {
    overflow: hidden;
  }
  .hamburger {
    width: 100%;
    height: 100%;
  }
  .hamburger-contents {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 500;
    width: 100vw;
    height: calc(670 / 750 * 100vw);
  }
  .hamburger.up .hamburger-contents {
    height: calc(620 / 750 * 100vw);
  }
  .hamburger-contents.hamburger-is-open {
    right: 0;
    transition: all 0.3s ease;
  }
  .hamburger-contents .hamburger-contents__inner {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: all 0.3s ease;
  }
  .hamburger-contents .hamburger-contents__inner {
    right: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    height: calc(703 / 750 * 100vw);
  }
  .hamburger.up .hamburger-contents .hamburger-contents__inner {
    height: calc(601 / 750 * 100vw);
  }
  .overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .hamburger-is-open.overlay {
    display: block;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    z-index: 200;
  }
  .hamburger-contents .hamburger-contents-head {
    background: #fcf7ea;
    padding: 0 calc(40 / 750 * 100vw);
    padding-top: 51px;
    width: calc(289 / 750 * 100vw);
    height: 100%;
  }
  .hamburger-contents-head-txt {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .hamburger-contents-list {
    width: calc(464 / 750 * 100vw);
    padding: 0 calc(40 / 750 * 100vw);
    padding-top: 51px;
    display: flex;
    align-items: center;
  }
  .hamburger.up .hamburger-contents-list,
  .hamburger.up .hamburger-contents .hamburger-contents-head {
    padding-top: 0;
  }
  .hamburger-contents-list-item:not(:last-child) {
    position: relative;
    padding-bottom: calc(30 / 750 * 100vw);
    margin-bottom: calc(34 / 750 * 100vw);
  }
  .hamburger-contents-list-item:not(:last-child):before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/dot_line.svg) repeat-x center / contain;
    width: 100%;
    height: calc(9 / 750 * 100vw);
  }
  .hamburger-contents .hamburger-contents-head-txt__label {
    width: calc(214 / 750 * 100vw);
    margin: 0 auto;
  }
  .hamburger-contents-list-txt {
    position: relative;
    margin: 0 calc(10 / 750 * 100vw);
    display: flex;
    align-items: center;
  }
  .hamburger-contents-list-txt * {
    display: block;
  }
  .hamburger-contents-list-txt__icon {
    position: relative;
    width: calc(52 / 750 * 100vw);
    height: calc(52 / 750 * 100vw);
  }
  .hamburger-contents-list-txt__icon::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
  .hamburger-contents-list-item--kinds .hamburger-contents-list-txt__icon::before {
    width: calc(41 / 750 * 100vw);
    height: calc(57 / 750 * 100vw);
    background: url(../img/ico_drink.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--eiyoso .hamburger-contents-list-txt__icon::before {
    width: calc(52 / 750 * 100vw);
    height: calc(50 / 750 * 100vw);
    background: url(../img/ico_graph.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--when .hamburger-contents-list-txt__icon::before {
    width: calc(52 / 750 * 100vw);
    height: calc(52 / 750 * 100vw);
    background: url(../img/ico_clock.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-item--qa .hamburger-contents-list-txt__icon::before {
    width: calc(53 / 750 * 100vw);
    height: calc(41 / 750 * 100vw);
    background: url(../img/ico_qa.svg) no-repeat center / contain;
  }
  .hamburger-contents-list-txt-box {
    margin-left: calc(28 / 750 * 100vw);
  }
  .hamburger-contents-list-txt__label--sub,
  .hamburger-contents-list-txt__label {
    color: #01653e;
    font-weight: bold;
  }
  .hamburger-contents-list-txt__label--sub {
    font-size: calc(20 / 750 * 100vw);
  }
  .hamburger-contents-list-txt__label {
    font-size: calc(30 / 750 * 100vw);
    letter-spacing: calc(8 / 1000 * 1em);
  }

  .hamburger-contents-to-top {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: calc(-88 / 750 * 100vw);
    text-align: center;
    height: calc(88 / 750 * 100vw);
  }
  .hamburger.up .hamburger-contents-to-top {
    bottom: calc(-88 / 750 * 100vw);
  }
  .hamburger-contents-to-top-inner {
    display: block;
    padding: calc(25.5 / 750 * 100vw);
    background: #01653e;
  }
  .hamburger-contents-to-top-inner__label {
    position: relative;
    color: #fff;
    font-size: calc(30 / 750 * 100vw);
    font-weight: bold;
    line-height: 1;
  }
  .hamburger-contents-to-top-inner__label::before {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(-30 / 750 * 100vw);
    transform: translateY(-50%) rotate(45deg);
    width: calc(17 / 750 * 100vw);
    height: calc(17 / 750 * 100vw);
    border-top: #fff calc(4 / 750 * 100vw) solid;
    border-right: #fff calc(4 / 750 * 100vw) solid;
  }
}

/* --------------------------------------------------------------------------
  セクションバナー
-------------------------------------------------------------------------- */
@media (min-width: 1367px) {
  /* bnr */
  .c-section-bnr-text {
    text-align: center;
    margin-bottom: calc(20 / 16 * 1rem);
  }
  .c-section-bnr-text__label {
    color: #dd522a;
    font-size: calc(14 / 16 * 1rem);
    font-weight: bold;
    position: relative;
    line-height: 1;
    display: inline-block;
  }
  .c-section-bnr-text__label::before,
  .c-section-bnr-text__label::after {
    content: "";
    position: absolute;
    bottom: calc(2 / 16 * 1rem);
    width: calc(14 / 16 * 1rem);
    height: calc(14 / 16 * 1rem);
    background: url(../img/bnr_hukidashi.png) no-repeat center / contain;
  }
  .c-section-bnr-text__label::before {
    left: calc(-26 / 16 * 1rem);
  }
  .c-section-bnr-text__label::after {
    right: calc(-26 / 16 * 1rem);
    transform: scale(-1, 1);
  }
  .c-section-bnr {
    width: calc(560 / 16 * 1rem);
    margin: 0 auto;
    margin-top: calc(95 / 16 * 1rem);
  }
}
@media (min-width: 768px) and (max-width: 1366px) {
  .c-section-bnr-text {
    text-align: center;
    margin-bottom: calc(20 / 1366 * 100vw);
  }
  .c-section-bnr-text__label {
    color: #dd522a;
    font-size: calc(14 / 1366 * 100vw);
    font-weight: bold;
    position: relative;
    line-height: 1;
    display: inline-block;
  }
  .c-section-bnr-text__label::before,
  .c-section-bnr-text__label::after {
    content: "";
    position: absolute;
    bottom: calc(2 / 1366 * 100vw);
    width: calc(14 / 1366 * 100vw);
    height: calc(14 / 1366 * 100vw);
    background: url(../img/bnr_hukidashi.png) no-repeat center / contain;
  }
  .c-section-bnr-text__label::before {
    left: calc(-26 / 1366 * 100vw);
  }
  .c-section-bnr-text__label::after {
    right: calc(-26 / 1366 * 100vw);
    transform: scale(-1, 1);
  }
  .c-section-bnr {
    width: calc(560 / 1366 * 100vw);
    margin: 0 auto;
    margin-top: calc(95 / 1466 * 100vw);
  }
}
@media (max-width: 767px) {
  .c-section-bnr {
    width: 100%;
    margin: 0 auto;
    margin-top: calc(65 / 750 * 100vw);
  }
  .c-section-bnr-text {
    text-align: center;
    margin: 0 auto;
    margin-bottom: calc(24 / 750 * 100vw);
  }
  .c-section-bnr-text__label {
    position: relative;
    color: #dd522a;
    font-size: calc(26 / 750 * 100vw);
    font-weight: bold;
    line-height: 1.38;
    display: inline-block;
  }
  .c-section-bnr-text__label::before,
  .c-section-bnr-text__label::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(22 / 750 * 100vw);
    height: calc(28 / 750 * 100vw);
    background: url(../img/bnr_hukidashi_sp.png) no-repeat center / contain;
  }
  .c-section-bnr-text__label.c-section-bnr-text__label--sp-short::before,
  .c-section-bnr-text__label.c-section-bnr-text__label--sp-short::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(22 / 750 * 100vw);
    height: calc(28 / 750 * 100vw);
    background: url(../img/bnr_hukidashi.png) no-repeat center / contain;
  }
  .c-section-bnr-text__label::before {
    left: calc(-40 / 750 * 100vw);
  }
  .c-section-bnr-text__label::after {
    right: calc(-40 / 750 * 100vw);
    transform: translateY(-50%) scale(-1, 1);
  }
  .c-section-bnr-text__label.c-section-bnr-text__label--sp-short::after {
    transform: translateY(-50%) scale(-1, 1);
  }

  .c-section-bnr-text__label.--type-02 {
    font-size: calc(32 / 750 * 100vw);
    line-height: calc(52 / 32);
  }
  .c-section-bnr-text__label.--type-02::before,
  .c-section-bnr-text__label.--type-02::after {
    background: url(../img/bnr_hukidashi_02_sp.png) no-repeat center / contain;
    width: calc(54 / 750 * 100vw);
    height: calc(76 / 750 * 100vw);
  }
  .c-section-bnr-text__label.--type-02::before {
    left: calc(-86 / 750 * 100vw);
  }
  .c-section-bnr-text__label.--type-02::after {
    right: calc(-54 / 750 * 100vw);
  }

  .c-section-bnr__image.--type-02 {
    max-width: calc(590 / 750 * 100vw);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
