@charset "UTF-8";
/* Zen Maru Gothic */
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Light.woff") format("woff");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url("../fonts/ZenMaruGothic-Black.woff") format("woff");
  font-weight: 900;
  font-display: swap;
}
:root {
  --color-white: #FFF;
  --color-main: #2F7030;
  --color-txt: #4D4D4D;
  --color-green: #108A38;
  --color-yellow: #F8E351;
  --color-beige: #FEFBE5;
  --color-onlineshop: #f66152;
  --font-maru-gothic: "Zen Maru Gothic", sans-serif;
}

/* ------------------------------ */
/* Animation */
/* ------------------------------ */
.a-blur {
  -webkit-filter: blur(10px);
          filter: blur(10px);
  opacity: 0;
}
.a-blur.is-active {
  -webkit-animation: blur 0.8s ease forwards;
          animation: blur 0.8s ease forwards;
}

.a-fade-up {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}
.a-fade-up.is-active {
  -webkit-animation: fade-up 0.8s ease forwards;
          animation: fade-up 0.8s ease forwards;
}

.a-shake {
  display: inline-block;
}
.a-shake.is-active {
  -webkit-animation: shake 0.5s ease;
          animation: shake 0.5s ease;
}

@-webkit-keyframes blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  1% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  2% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  3% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  4% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  6% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  7% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  8% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes shake {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  1% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  2% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  3% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  4% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  5% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  6% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  7% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  8% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@-webkit-keyframes txt-appear-1 {
  0% {
    scale: 0;
    rotate: 40deg;
  }
  100% {
    scale: 1;
    rotate: 0deg;
  }
}
@keyframes txt-appear-1 {
  0% {
    scale: 0;
    rotate: 40deg;
  }
  100% {
    scale: 1;
    rotate: 0deg;
  }
}
@-webkit-keyframes txt-appear-2 {
  0% {
    scale: 0;
    rotate: -40deg;
  }
  100% {
    scale: 1;
    rotate: 0deg;
  }
}
@keyframes txt-appear-2 {
  0% {
    scale: 0;
    rotate: -40deg;
  }
  100% {
    scale: 1;
    rotate: 0deg;
  }
}
/* ------------------------------ */
/* 3Col */
/* ------------------------------ */
.l-3col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.l-3col .l-3col__main {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-3col .l-3col__sidebar {
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 250px;
}
@media screen and (max-width: 955px) {
  .l-3col .l-3col__sidebar {
    display: none;
  }
}

/* ------------------------------ */
/* Outer */
/* ------------------------------ */
.b-outer {
  background-image: url("../images/bg-deco-l.png"), url("../images/bg-deco-r.png"), url("../images/bg-paper2.jpg");
  background-repeat: repeat-y, repeat-y, repeat-y;
  background-position: left top 60px, right top 60px, center top;
  background-size: auto 550px, auto 550px, 100% auto;
  background-attachment: fixed, fixed, fixed;
}

/* ------------------------------ */
/* Main */
/* ------------------------------ */
.b-main {
  line-height: 1.4;
  min-height: 680px;
  -webkit-box-shadow: 0 2px 14px 0 rgba(93, 95, 91, 0.67);
          box-shadow: 0 2px 14px 0 rgba(93, 95, 91, 0.67);
  width: 100vw;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .b-main {
    width: 375px;
    font-size: 16px;
  }
}
.b-main a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.b-main img {
  max-width: 100%;
}

/* ------------------------------ */
/* Side Menu */
/* ------------------------------ */
.b-side-menu {
  position: sticky;
  top: 80px;
  padding: 118px 0px 100px;
}
.b-side-menu__title {
  width: 170px;
  margin: 0px auto 10px;
}
.b-side-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
}
.b-side-menu__list__item:hover, .b-side-menu__list__item:focus {
  -webkit-animation: shake 2s ease;
          animation: shake 2s ease;
  -webkit-filter: invert(1);
          filter: invert(1);
}
.b-side-menu__img {
  display: block;
  width: 100%;
  margin: 20px auto 0px;
}

/* ------------------------------ */
/* Side Deco */
/* ------------------------------ */
.b-side-deco {
  position: sticky;
  top: 80px;
  padding: 118px 0px 100px;
}
.b-side-deco__img {
  display: block;
  width: 100%;
  margin: 0px auto 40px;
}
.b-side-deco__qr {
  display: block;
  width: 146px;
}

/* ------------------------------ */
/* Main Header */
/* ------------------------------ */
.b-main-header {
  position: relative;
  overflow: hidden;
  height: 105.3333333333vw;
}
@media (min-width: 768px) {
  .b-main-header {
    height: 395px;
  }
}
.b-main-header__title__txt {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.b-main-header__title__img {
  width: 100%;
}
.b-main-header__logo {
  position: absolute;
  top: 46.1333333333vw;
  left: 10.9333333333vw;
  width: 46.6666666667vw;
}
@media (min-width: 768px) {
  .b-main-header__logo {
    top: 173px;
    left: 41px;
    width: 175px;
  }
}
.b-main-header__logo img {
  position: absolute;
  top: 100px;
  scale: 0;
}
.b-main-header__logo img:nth-child(1) {
  width: 12.608vw;
  top: 0vw;
  left: 4.456vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(1) {
    width: 47.28px;
    top: 0px;
    left: 16.71px;
  }
}
.b-main-header__logo img:nth-child(2) {
  width: 7.0026666667vw;
  top: 3.2853333333vw;
  left: 15.6906666667vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(2) {
    width: 26.26px;
    top: 12.32px;
    left: 58.84px;
  }
}
.b-main-header__logo img:nth-child(3) {
  width: 11.2933333333vw;
  top: 1.888vw;
  left: 23.536vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(3) {
    width: 42.35px;
    top: 7.08px;
    left: 88.26px;
  }
}
.b-main-header__logo img:nth-child(4) {
  width: 6.3066666667vw;
  top: 1.3306666667vw;
  left: 35.1306666667vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(4) {
    width: 23.65px;
    top: 4.99px;
    left: 131.74px;
  }
}
.b-main-header__logo img:nth-child(5) {
  width: 9.9013333333vw;
  top: 15.2693333333vw;
  left: 0vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(5) {
    width: 37.13px;
    top: 57.26px;
    left: 0px;
  }
}
.b-main-header__logo img:nth-child(6) {
  width: 10.0586666667vw;
  top: 15.696vw;
  left: 11.6186666667vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(6) {
    width: 37.72px;
    top: 58.86px;
    left: 43.57px;
  }
}
.b-main-header__logo img:nth-child(7) {
  width: 7.272vw;
  top: 17.9813333333vw;
  left: 22.6373333333vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(7) {
    width: 27.27px;
    top: 67.43px;
    left: 84.89px;
  }
}
.b-main-header__logo img:nth-child(8) {
  width: 7.76vw;
  top: 18.9786666667vw;
  left: 30.5653333333vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(8) {
    width: 29.1px;
    top: 71.17px;
    left: 114.62px;
  }
}
.b-main-header__logo img:nth-child(9) {
  width: 6.5813333333vw;
  top: 15.6746666667vw;
  left: 40.0026666667vw;
}
@media (min-width: 768px) {
  .b-main-header__logo img:nth-child(9) {
    width: 24.68px;
    top: 58.78px;
    left: 150.01px;
  }
}
.b-main-header__product {
  position: absolute;
  scale: 0;
  top: 29.3333333333vw;
  left: 65.3333333333vw;
  width: 30.1333333333vw;
}
@media (min-width: 768px) {
  .b-main-header__product {
    top: 110px;
    left: 245px;
    width: 113px;
  }
}
.b-main-header__lead {
  position: absolute;
  overflow: hidden;
  top: 38.9333333333vw;
  left: 5.3333333333vw;
  width: 57.6vw;
}
@media (min-width: 768px) {
  .b-main-header__lead {
    top: 146px;
    left: 20px;
    width: 216px;
  }
}
.b-main-header__lead img {
  display: block;
  width: 100%;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.b-main-header__tags {
  position: absolute;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  top: 22.6666666667vw;
  left: 11.4053333333vw;
  width: 45.3333333333vw;
}
@media (min-width: 768px) {
  .b-main-header__tags {
    top: 85px;
    left: 42.77px;
    width: 170px;
  }
}
.b-main-header__deco-top, .b-main-header__deco-btm {
  position: absolute;
  width: 100%;
  scale: 1.2;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.b-main-header__deco-top {
  top: 0;
}
.b-main-header__deco-btm {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
  bottom: 3.7333333333vw;
}
@media (min-width: 768px) {
  .b-main-header__deco-btm {
    bottom: 14px;
  }
}
.b-main-header__note {
  position: absolute;
  color: var(--color-white);
  z-index: 10;
  font-size: 2.1333333333vw;
  top: 102.6666666667vw;
  right: 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-main-header__note {
    font-size: 8px;
    top: 385px;
    right: 20px;
  }
}
.b-main-header.is-active .b-main-header__logo img:nth-child(1) {
  -webkit-animation: txt-appear-1 0.2s ease forwards;
          animation: txt-appear-1 0.2s ease forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.b-main-header.is-active .b-main-header__logo img:nth-child(2) {
  -webkit-animation: txt-appear-2 0.2s ease forwards;
          animation: txt-appear-2 0.2s ease forwards;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.b-main-header.is-active .b-main-header__logo img:nth-child(3) {
  -webkit-animation: txt-appear-1 0.2s ease forwards;
          animation: txt-appear-1 0.2s ease forwards;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}
.b-main-header.is-active .b-main-header__logo img:nth-child(4) {
  -webkit-animation: txt-appear-2 0.2s ease forwards;
          animation: txt-appear-2 0.2s ease forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.b-main-header.is-active .b-main-header__logo img:nth-child(5) {
  -webkit-animation: txt-appear-1 0.2s ease forwards;
          animation: txt-appear-1 0.2s ease forwards;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}
.b-main-header.is-active .b-main-header__logo img:nth-child(6) {
  -webkit-animation: txt-appear-2 0.2s ease forwards;
          animation: txt-appear-2 0.2s ease forwards;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}
.b-main-header.is-active .b-main-header__logo img:nth-child(7) {
  -webkit-animation: txt-appear-1 0.2s ease forwards;
          animation: txt-appear-1 0.2s ease forwards;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}
.b-main-header.is-active .b-main-header__logo img:nth-child(8) {
  -webkit-animation: txt-appear-2 0.2s ease forwards;
          animation: txt-appear-2 0.2s ease forwards;
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}
.b-main-header.is-active .b-main-header__logo img:nth-child(9) {
  -webkit-animation: txt-appear-1 0.2s ease forwards;
          animation: txt-appear-1 0.2s ease forwards;
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}
.b-main-header.is-active .b-main-header__product {
  -webkit-animation: txt-appear-2 0.4s ease forwards;
          animation: txt-appear-2 0.4s ease forwards;
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.b-main-header.is-active .b-main-header__lead img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.b-main-header.is-active .b-main-header__tags {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.b-main-header.is-active .b-main-header__deco-top,
.b-main-header.is-active .b-main-header__deco-btm {
  opacity: 1;
  scale: 1;
}

/* ------------------------------ */
/* Section */
/* ------------------------------ */
.b-section {
  background-color: var(--color-white);
}
.b-section__txt {
  line-height: 1.8;
  margin: 2.6666666667vw 0 0;
}
.b-section__txt b {
  font-weight: 700;
}
.b-section__txt--s {
  font-size: 3.7333333333vw;
}
@media (min-width: 768px) {
  .b-section__txt--s {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .b-section__txt {
    margin: 10px 0 0;
  }
}
.b-section__note {
  display: block;
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-section__note {
    font-size: 10px;
  }
}
.b-section--bg-paper {
  background-image: url("../images/bg-paper1.jpg");
  background-size: 100% auto;
}
.b-section__img {
  margin: 2.6666666667vw 0 0;
}
@media (min-width: 768px) {
  .b-section__img {
    margin: 10px 0 0;
  }
}
.b-section__sub-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-maru-gothic);
  font-weight: bold;
  color: var(--color-main);
  text-align: center;
  background-image: url("../images/sub-heading-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  font-size: 4.2666666667vw;
  margin: 0vw 0 2.6666666667vw;
  padding: 0 0 0.5333333333vw;
  height: 9.6vw;
}
@media (min-width: 768px) {
  .b-section__sub-heading {
    font-size: 16px;
    margin: 0px 0 10px;
    padding: 0 0 2px;
    height: 36px;
  }
}
.b-section__sub-heading--l {
  background-image: url("../images/sub-heading-bg-l.png");
  height: 15.4666666667vw;
}
@media (min-width: 768px) {
  .b-section__sub-heading--l {
    height: 58px;
  }
}
.b-section__sub-heading--s {
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .b-section__sub-heading--s {
    font-size: 12px;
  }
}

/* ------------------------------ */
/* Sub Section */
/* ------------------------------ */
.b-sub-section {
  padding: 8vw 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-sub-section {
    padding: 30px 20px;
  }
}
.b-sub-section__head {
  font-family: var(--font-maru-gothic);
  font-weight: bold;
  margin: 0 0 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-sub-section__head {
    margin: 0 0 20px;
  }
}
.b-sub-section__head__lead {
  width: 100%;
  margin: 0 0 1.3333333333vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__lead {
    margin: 0 0 5px;
  }
}
.b-sub-section__head__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background-image: url("../images/sub-section-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  gap: 2.1333333333vw;
  height: 11.2vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__title {
    gap: 8px;
    height: 42px;
  }
}
.b-sub-section__head__title__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-image: url("../images/balloon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
  color: var(--color-main);
  font-size: 3.7333333333vw;
  width: 6.9333333333vw;
  height: 6.1333333333vw;
  padding-top: 0.2666666667vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__title__num {
    font-size: 14px;
    width: 26px;
    height: 23px;
    padding-top: 1px;
  }
}
.b-sub-section__head__title__txt {
  color: var(--color-yellow);
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__title__txt {
    font-size: 16px;
  }
}
.b-sub-section__head__title__txt__xl {
  line-height: 1;
  font-size: 6.6666666667vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__title__txt__xl {
    font-size: 25px;
  }
}
.b-sub-section__head__title__txt__l {
  line-height: 1;
  font-size: 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__title__txt__l {
    font-size: 20px;
  }
}
.b-sub-section__head__title__txt__m {
  line-height: 1;
  font-size: 4.8vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__title__txt__m {
    font-size: 18px;
  }
}
.b-sub-section__head__title__txt__s {
  line-height: 1;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__title__txt__s {
    font-size: 16px;
  }
}
.b-sub-section__head__title__txt__xs {
  line-height: 1;
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .b-sub-section__head__title__txt__xs {
    font-size: 12px;
  }
}
.b-sub-section--bg-beige {
  background-color: var(--color-beige);
}

/* ------------------------------ */
/* List Framed */
/* ------------------------------ */
.b-list-framed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--item-gap);
  --item-gap: 2.1333333333vw;
  padding: 5.3333333333vw 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-list-framed {
    --item-gap: 8px;
    padding: 20px 10px;
  }
}
.b-list-framed__item {
  width: calc((100% - var(--item-gap) * 2) / 3);
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  background-color: #000;
  -webkit-mask-image: url("../images/wave-frame-mask.png");
          mask-image: url("../images/wave-frame-mask.png");
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  height: 8.8vw;
  line-height: 8.8vw;
  font-size: 3.7333333333vw;
  padding: 0 0 0.5333333333vw 0;
}
.b-list-framed__item sub {
  font-size: 0.8em;
}
@media (min-width: 768px) {
  .b-list-framed__item {
    height: 33px;
    line-height: 33px;
    font-size: 14px;
    padding: 0 0 2px 0;
  }
}
.b-list-framed__item:nth-child(1) {
  background-color: #5BAE4C;
}
.b-list-framed__item:nth-child(2) {
  background-color: #78A9D6;
}
.b-list-framed__item:nth-child(3) {
  background-color: #5578A6;
}
.b-list-framed__item:nth-child(4) {
  background-color: #D4633C;
}
.b-list-framed__item:nth-child(5) {
  background-color: #9CA3AE;
}
.b-list-framed__item:nth-child(6) {
  background-color: #F5C447;
}
.b-list-framed__item:nth-child(7) {
  background-color: #F6A248;
}
.b-list-framed__item:nth-child(8) {
  background-color: #8F6CC5;
}
.b-list-framed__item:nth-child(9) {
  background-color: #F2955E;
}
.b-list-framed__item:nth-child(10) {
  background-color: #7BBE56;
}
.b-list-framed__item:nth-child(11) {
  background-color: #C64553;
}
.b-list-framed__item:nth-child(12) {
  background-color: #E9A738;
}
.b-list-framed__item:nth-child(13) {
  background-color: #E5C452;
}
.b-list-framed__item:nth-child(14) {
  background-color: #A38CCB;
}

/* ------------------------------ */
/* Use Case List */
/* ------------------------------ */
.b-use-case-list {
  position: relative;
  height: 144vw;
}
@media (min-width: 768px) {
  .b-use-case-list {
    height: 540px;
  }
}
.b-use-case-list__item {
  position: absolute;
}
.b-use-case-list__item__bg {
  display: block;
}
.b-use-case-list__item__txt {
  position: absolute;
  font-family: var(--font-maru-gothic);
  font-weight: bold;
  color: var(--color-main);
  text-align: center;
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item__txt {
    font-size: 12px;
  }
}
.b-use-case-list__item__txt b {
  color: #F36558;
  font-size: 3.7333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item__txt b {
    font-size: 14px;
  }
}
.b-use-case-list__item--1 {
  top: 3.2vw;
  left: 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--1 {
    top: 12px;
    left: 20px;
  }
}
.b-use-case-list__item--1 .b-use-case-list__item__txt {
  top: 8.8vw;
  left: 32.8vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--1 .b-use-case-list__item__txt {
    top: 33px;
    left: 123px;
  }
}
.b-use-case-list__item--1 .b-use-case-list__item__bg {
  width: 54.1333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--1 .b-use-case-list__item__bg {
    width: 203px;
  }
}
.b-use-case-list__item--2 {
  top: 21.3333333333vw;
  left: 49.6vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--2 {
    top: 80px;
    left: 186px;
  }
}
.b-use-case-list__item--2 .b-use-case-list__item__txt {
  top: 25.0666666667vw;
  left: 22.1333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--2 .b-use-case-list__item__txt {
    top: 94px;
    left: 83px;
  }
}
.b-use-case-list__item--2 .b-use-case-list__item__bg {
  width: 42.6666666667vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--2 .b-use-case-list__item__bg {
    width: 160px;
  }
}
.b-use-case-list__item--3 {
  top: 46.4vw;
  left: 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--3 {
    top: 174px;
    left: 20px;
  }
}
.b-use-case-list__item--3 .b-use-case-list__item__txt {
  top: 23.7333333333vw;
  left: 37.3333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--3 .b-use-case-list__item__txt {
    top: 89px;
    left: 140px;
  }
}
.b-use-case-list__item--3 .b-use-case-list__item__bg {
  width: 56.5333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--3 .b-use-case-list__item__bg {
    width: 212px;
  }
}
.b-use-case-list__item--4 {
  top: 95.4666666667vw;
  left: 8vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--4 {
    top: 358px;
    left: 30px;
  }
}
.b-use-case-list__item--4 .b-use-case-list__item__txt {
  top: 16vw;
  left: 3.2vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--4 .b-use-case-list__item__txt {
    top: 60px;
    left: 12px;
  }
}
.b-use-case-list__item--4 .b-use-case-list__item__bg {
  width: 34.6666666667vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--4 .b-use-case-list__item__bg {
    width: 130px;
  }
}
.b-use-case-list__item--5 {
  top: 90.1333333333vw;
  left: 39.7333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--5 {
    top: 338px;
    left: 149px;
  }
}
.b-use-case-list__item--5 .b-use-case-list__item__txt {
  top: 17.6vw;
  left: 26.1333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--5 .b-use-case-list__item__txt {
    top: 66px;
    left: 98px;
  }
}
.b-use-case-list__item--5 .b-use-case-list__item__bg {
  width: 51.7333333333vw;
}
@media (min-width: 768px) {
  .b-use-case-list__item--5 .b-use-case-list__item__bg {
    width: 194px;
  }
}

/* ------------------------------ */
/* Button */
/* ------------------------------ */
.b-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  color: var(--color-txt);
  line-height: 1;
  background-color: var(--color-white);
  text-align: center;
  text-decoration: none;
  height: 10.1333333333vw;
  margin: 1.3333333333vw auto;
  font-size: 3.2vw;
  border: 0.2666666667vw solid var(--color-txt);
  border-radius: 5.0666666667vw;
}
@media (min-width: 768px) {
  .b-btn {
    height: 38px;
    margin: 5px auto;
    font-size: 12px;
    border: 1px solid var(--color-txt);
    border-radius: 19px;
  }
}
.b-btn--shop {
  background-color: var(--color-onlineshop);
  color: var(--color-white);
  border: none;
}
@media (hover: hover) {
  .b-btn:hover {
    background-color: #737373;
    color: var(--color-white);
  }
}

/* ------------------------------ */
/* Faq */
/* ------------------------------ */
.b-faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  padding: 5.3333333333vw;
  font-size: 3.7333333333vw;
  gap: 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-faq {
    margin: 0 auto;
    padding: 20px;
    font-size: 14px;
    gap: 20px;
  }
}
.b-faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--color-white);
  gap: 2.6666666667vw;
  padding: 2.6666666667vw;
  border-radius: 1.3333333333vw;
  -webkit-box-shadow: 0 1.0666666667vw 0 0 #C1BFC1;
          box-shadow: 0 1.0666666667vw 0 0 #C1BFC1;
}
@media (min-width: 768px) {
  .b-faq__item {
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    -webkit-box-shadow: 0 4px 0 0 #C1BFC1;
            box-shadow: 0 4px 0 0 #C1BFC1;
  }
}
.b-faq__item__question, .b-faq__item__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-faq__item__question, .b-faq__item__answer {
    gap: 10px;
  }
}
.b-faq__item__question::before, .b-faq__item__answer::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 8vw;
  height: 8vw;
}
@media (min-width: 768px) {
  .b-faq__item__question::before, .b-faq__item__answer::before {
    width: 30px;
    height: 30px;
  }
}
.b-faq__item__question {
  font-weight: 700;
}
.b-faq__item__question::before {
  background-image: url("../images/icon-question.svg");
}
.b-faq__item__question span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b-faq__item__answer::before {
  background-image: url("../images/icon-answer.svg");
}

/* ------------------------------ */
/* Breadcrumbs */
/* ------------------------------ */
.b-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--color-white);
  padding: 1.6vw 2.6666666667vw;
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .b-breadcrumbs {
    padding: 6px 10px;
    font-size: 12px;
  }
}
.b-breadcrumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b-breadcrumbs__item:not(:last-child)::after {
  content: ">";
  margin: 0 1.0666666667vw;
}
@media (min-width: 768px) {
  .b-breadcrumbs__item:not(:last-child)::after {
    margin: 0 4px;
  }
}
.b-breadcrumbs__item__link {
  color: var(--color-main);
  font-weight: 500;
}
.b-breadcrumbs__item__link__icon {
  width: 5.3333333333vw;
  height: 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-breadcrumbs__item__link__icon {
    width: 20px;
    height: 20px;
  }
}

/* ------------------------------ */
/* Page Nav */
/* ------------------------------ */
.b-page-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../images/bg-paper1.jpg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  padding: 8vw 0;
  gap: 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-page-nav {
    padding: 30px 0;
    gap: 10px;
  }
}
.b-page-nav__item__link__img {
  display: block;
  width: 66.6666666667vw;
}
@media (min-width: 768px) {
  .b-page-nav__item__link__img {
    width: 250px;
  }
}
.b-page-nav__item__link:hover, .b-page-nav__item__link:focus {
  -webkit-filter: invert(1);
          filter: invert(1);
}

/* ------------------------------ */
/* Section heading */
/* ------------------------------ */
.b-section-heading {
  position: relative;
}
.b-section-heading__txt {
  display: block;
  position: absolute;
  font-size: 5.3333333333vw;
  top: 13.8666666667vw;
  font-family: var(--font-maru-gothic);
  font-weight: bold;
  color: var(--color-main);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (min-width: 768px) {
  .b-section-heading__txt {
    font-size: 20px;
    top: 52px;
  }
}
.b-section-heading__txt__num {
  display: inline-block;
  background-image: url("../images/heading-balloon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  text-align: center;
  color: var(--color-yellow);
  font-size: 6.9333333333vw;
  width: 11.4666666667vw;
  height: 12.5333333333vw;
  padding-top: 0.5333333333vw;
  font-weight: bold;
}
@media (min-width: 768px) {
  .b-section-heading__txt__num {
    font-size: 26px;
    width: 43px;
    height: 47px;
    padding-top: 2px;
  }
}
.b-section-heading__txt__s {
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .b-section-heading__txt__s {
    font-size: 16px;
  }
}
.b-section-heading__txt__l {
  font-size: 6.4vw;
}
@media (min-width: 768px) {
  .b-section-heading__txt__l {
    font-size: 24px;
  }
}
.b-section-heading__txt--white {
  color: var(--color-white);
}
.b-section-heading__txt--points {
  top: 10.6666666667vw;
}
@media (min-width: 768px) {
  .b-section-heading__txt--points {
    top: 40px;
  }
}
.b-section-heading__bg {
  width: 100%;
}

/* ------------------------------ */
/* Section Problems */
/* ------------------------------ */
.b-section-problems {
  position: relative;
  background-color: var(--color-green);
  padding: 5.3333333333vw 0 0vw;
}
@media (min-width: 768px) {
  .b-section-problems {
    padding: 20px 0 0px;
  }
}
.b-section-problems__title {
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  position: relative;
  background-image: url("../images/problems-title-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 80vw;
  height: 25.0666666667vw;
  margin: 0 auto 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-section-problems__title {
    width: 300px;
    height: 94px;
    margin: 0 auto 10px;
  }
}
.b-section-problems__title__sub, .b-section-problems__title__main {
  position: absolute;
  width: 100%;
  text-align: center;
}
.b-section-problems__title__sub {
  color: var(--color-white);
  font-size: 3.7333333333vw;
}
@media (min-width: 768px) {
  .b-section-problems__title__sub {
    font-size: 14px;
  }
}
.b-section-problems__title__main {
  color: var(--color-main);
  top: 10.1333333333vw;
  font-size: 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-section-problems__title__main {
    top: 38px;
    font-size: 20px;
  }
}
.b-section-problems__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 4vw;
  padding: 0 5.3333333333vw 0;
}
@media (min-width: 768px) {
  .b-section-problems__list {
    gap: 15px;
    padding: 0 20px 0;
  }
}
.b-section-problems__list__item {
  width: 100%;
}
.b-section-problems::before, .b-section-problems::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
}
.b-section-problems::before {
  bottom: calc(100% - 2px);
  background-image: url("../images/wave-top-green.svg");
  background-position: bottom center;
  height: 13.3333333333vw;
}
@media (min-width: 768px) {
  .b-section-problems::before {
    height: 50px;
  }
}
.b-section-problems::after {
  background-image: url("../images/wave-bottom-green.svg");
  background-position: top center;
  height: 9.3333333333vw;
}
@media (min-width: 768px) {
  .b-section-problems::after {
    height: 35px;
  }
}

/* ------------------------------ */
/* Section Recommend */
/* ------------------------------ */
.b-section-recommend {
  background-image: url("../images/bg-paper1.jpg");
  background-repeat: repeat-y;
  background-position: center top;
  background-size: 100% auto;
  padding: 20.2666666667vw 5.3333333333vw 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-section-recommend {
    padding: 76px 20px 10px;
  }
}
.b-section-recommend__title {
  width: 71.7333333333vw;
  margin: 0 auto 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-section-recommend__title {
    width: 269px;
    margin: 0 auto 10px;
  }
}
.b-section-recommend__title__txt {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.b-section-recommend__title img {
  display: block;
  width: 100%;
}
.b-section-recommend__lead {
  display: inline-block;
  width: 100%;
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  color: var(--color-main);
  text-align: center;
  /* マーカー風 画像使わない版 */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, var(--color-yellow)));
  background: linear-gradient(to bottom, transparent 60%, var(--color-yellow) 60%);
}
.b-section-recommend__lead span {
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .b-section-recommend__lead span {
    font-size: 12px;
  }
}
.b-section-recommend__mv {
  display: block;
  width: 85.3333333333vw;
  margin: 5.3333333333vw auto 2.1333333333vw;
}
@media (min-width: 768px) {
  .b-section-recommend__mv {
    width: 320px;
    margin: 20px auto 8px;
  }
}
.b-section-recommend__points {
  display: block;
  width: 100%;
}
.b-section-recommend__note {
  display: block;
  margin-top: 1.3333333333vw;
  font-size: 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-section-recommend__note {
    margin-top: 5px;
    font-size: 10px;
  }
}

/* ------------------------------ */
/* Section Product */
/* ------------------------------ */
.b-section-product {
  background-color: var(--color-white);
  padding: 10.6666666667vw 5.3333333333vw;
}
@media (min-width: 768px) {
  .b-section-product {
    padding: 40px 20px;
  }
}
.b-section-product__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-maru-gothic);
  font-weight: bold;
  color: var(--color-white);
  background-image: url("../images/sub-section-bg.png");
  background-repeat: no-repeat;
  background-size: 100%;
  height: 11.2vw;
  font-size: 4.2666666667vw;
  margin: 0 0 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-section-product__title {
    height: 42px;
    font-size: 16px;
    margin: 0 0 10px;
  }
}
.b-section-product__img {
  width: 35.7333333333vw;
  margin: 0 auto 2.6666666667vw;
}
@media (min-width: 768px) {
  .b-section-product__img {
    width: 134px;
    margin: 0 auto 10px;
  }
}
.b-section-product__data-list {
  text-align: center;
  margin: 0 auto 2.6666666667vw;
  width: 68vw;
}
@media (min-width: 768px) {
  .b-section-product__data-list {
    margin: 0 auto 10px;
    width: 255px;
  }
}
.b-section-product__data-list dt {
  font-weight: 500;
  font-size: 3.2vw;
  margin: 1.3333333333vw 0 0.5333333333vw;
  padding: 0.5333333333vw 0;
  border-bottom: 0.2666666667vw solid var(--color-txt);
}
@media (min-width: 768px) {
  .b-section-product__data-list dt {
    font-size: 12px;
    margin: 5px 0 2px;
    padding: 2px 0;
    border-bottom: 1px solid var(--color-txt);
  }
}
.b-section-product__data-list dd {
  font-weight: 500;
  font-size: 3.2vw;
}
@media (min-width: 768px) {
  .b-section-product__data-list dd {
    font-size: 12px;
  }
}

/* ------------------------------ */
/* Online Shop Banner */
/* ------------------------------ */
.cb-fixed-onlineshop-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  color: #fff !important;
  text-align: center;
  font-weight: bold;
  background: #f66152;
  padding: 16px 14px;
  font-size: 16px;
  z-index: 20;
}
.cb-fixed-onlineshop-banner__left {
  right: initial;
  left: 20px;
}

/* ------------------------------ */
/* Utility */
/* ------------------------------ */
/* display */
.u-display--slg-down {
  display: none;
}
@media screen and ( max-width: 1279px ) {
  .u-display--slg-down {
    display: block;
  }
}
.u-display--md-down {
  display: none;
}
@media screen and ( max-width: 767px ) {
  .u-display--md-down {
    display: block;
  }
}
.u-display--sm-down {
  display: none;
}
@media screen and ( max-width: 413px ) {
  .u-display--sm-down {
    display: block;
  }
}
.u-display--xs-down {
  display: none;
}
@media screen and ( max-width: 374px ) {
  .u-display--xs-down {
    display: block;
  }
}
.u-display--md-up {
  display: none;
}
@media screen and ( min-width: 768px ) {
  .u-display--md-up {
    display: block;
  }
}
.u-display--sm-up {
  display: none;
}
@media screen and ( min-width: 414px ) {
  .u-display--sm-up {
    display: block;
  }
}

@media screen and ( max-width: 767px ) {
  .u-display-none--md-down {
    display: none;
  }
}
@media screen and ( max-width: 413px ) {
  .u-display-none--sm-down {
    display: none;
  }
}
@media screen and ( min-width: 768px ) {
  .u-display-none--md-up {
    display: none;
  }
}
@media screen and ( min-width: 414px ) {
  .u-display-none--sm-up {
    display: none;
  }
}

/* background */
.u-bg-paper {
  background-image: url("../image/bg-paper.jpg");
  background-size: 100% auto;
}

/* border-radius */
.u-radius-corner {
  border-radius: 20px;
  overflow: hidden;
}

/* position */
.u-pos-bottom {
  position: absolute;
  bottom: 0px;
}

/* margin */
.u-margin--btm--0 {
  margin-bottom: 0vw;
}
@media (min-width: 768px) {
  .u-margin--btm--0 {
    margin-bottom: 0px;
  }
}
.u-margin--btm--10 {
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--btm--10 {
    margin-bottom: 10px;
  }
}
.u-margin--btm--20 {
  margin-bottom: 5.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--btm--20 {
    margin-bottom: 20px;
  }
}
.u-margin--btm--30 {
  margin-bottom: 8vw;
}
@media (min-width: 768px) {
  .u-margin--btm--30 {
    margin-bottom: 30px;
  }
}
.u-margin--btm--40 {
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--btm--40 {
    margin-bottom: 40px;
  }
}
.u-margin--btm--50 {
  margin-bottom: 13.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--btm--50 {
    margin-bottom: 50px;
  }
}
.u-margin--btm--60 {
  margin-bottom: 16vw;
}
@media (min-width: 768px) {
  .u-margin--btm--60 {
    margin-bottom: 60px;
  }
}
.u-margin--btm--70 {
  margin-bottom: 18.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--btm--70 {
    margin-bottom: 70px;
  }
}
.u-margin--btm--80 {
  margin-bottom: 21.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--btm--80 {
    margin-bottom: 80px;
  }
}
.u-margin--btm--90 {
  margin-bottom: 24vw;
}
@media (min-width: 768px) {
  .u-margin--btm--90 {
    margin-bottom: 90px;
  }
}
.u-margin--btm--100 {
  margin-bottom: 26.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--btm--100 {
    margin-bottom: 100px;
  }
}
.u-margin--btm--110 {
  margin-bottom: 29.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--btm--110 {
    margin-bottom: 110px;
  }
}
.u-margin--btm--120 {
  margin-bottom: 32vw;
}
@media (min-width: 768px) {
  .u-margin--btm--120 {
    margin-bottom: 120px;
  }
}
.u-margin--btm--130 {
  margin-bottom: 34.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--btm--130 {
    margin-bottom: 130px;
  }
}
.u-margin--btm--140 {
  margin-bottom: 37.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--btm--140 {
    margin-bottom: 140px;
  }
}
.u-margin--btm--150 {
  margin-bottom: 40vw;
}
@media (min-width: 768px) {
  .u-margin--btm--150 {
    margin-bottom: 150px;
  }
}
.u-margin--btm--160 {
  margin-bottom: 42.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--btm--160 {
    margin-bottom: 160px;
  }
}
.u-margin--btm--170 {
  margin-bottom: 45.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--btm--170 {
    margin-bottom: 170px;
  }
}
.u-margin--btm--180 {
  margin-bottom: 48vw;
}
@media (min-width: 768px) {
  .u-margin--btm--180 {
    margin-bottom: 180px;
  }
}
.u-margin--btm--190 {
  margin-bottom: 50.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--btm--190 {
    margin-bottom: 190px;
  }
}
.u-margin--btm--200 {
  margin-bottom: 53.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--btm--200 {
    margin-bottom: 200px;
  }
}
.u-margin--top--0 {
  margin-top: 0vw;
}
@media (min-width: 768px) {
  .u-margin--top--0 {
    margin-top: 0px;
  }
}
.u-margin--top--10 {
  margin-top: 2.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--top--10 {
    margin-top: 10px;
  }
}
.u-margin--top--20 {
  margin-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--top--20 {
    margin-top: 20px;
  }
}
.u-margin--top--30 {
  margin-top: 8vw;
}
@media (min-width: 768px) {
  .u-margin--top--30 {
    margin-top: 30px;
  }
}
.u-margin--top--40 {
  margin-top: 10.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--top--40 {
    margin-top: 40px;
  }
}
.u-margin--top--50 {
  margin-top: 13.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--top--50 {
    margin-top: 50px;
  }
}
.u-margin--top--60 {
  margin-top: 16vw;
}
@media (min-width: 768px) {
  .u-margin--top--60 {
    margin-top: 60px;
  }
}
.u-margin--top--70 {
  margin-top: 18.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--top--70 {
    margin-top: 70px;
  }
}
.u-margin--top--80 {
  margin-top: 21.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--top--80 {
    margin-top: 80px;
  }
}
.u-margin--top--90 {
  margin-top: 24vw;
}
@media (min-width: 768px) {
  .u-margin--top--90 {
    margin-top: 90px;
  }
}
.u-margin--top--100 {
  margin-top: 26.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--top--100 {
    margin-top: 100px;
  }
}
.u-margin--top--110 {
  margin-top: 29.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--top--110 {
    margin-top: 110px;
  }
}
.u-margin--top--120 {
  margin-top: 32vw;
}
@media (min-width: 768px) {
  .u-margin--top--120 {
    margin-top: 120px;
  }
}
.u-margin--top--130 {
  margin-top: 34.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--top--130 {
    margin-top: 130px;
  }
}
.u-margin--top--140 {
  margin-top: 37.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--top--140 {
    margin-top: 140px;
  }
}
.u-margin--top--150 {
  margin-top: 40vw;
}
@media (min-width: 768px) {
  .u-margin--top--150 {
    margin-top: 150px;
  }
}
.u-margin--top--160 {
  margin-top: 42.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--top--160 {
    margin-top: 160px;
  }
}
.u-margin--top--170 {
  margin-top: 45.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--top--170 {
    margin-top: 170px;
  }
}
.u-margin--top--180 {
  margin-top: 48vw;
}
@media (min-width: 768px) {
  .u-margin--top--180 {
    margin-top: 180px;
  }
}
.u-margin--top--190 {
  margin-top: 50.6666666667vw;
}
@media (min-width: 768px) {
  .u-margin--top--190 {
    margin-top: 190px;
  }
}
.u-margin--top--200 {
  margin-top: 53.3333333333vw;
}
@media (min-width: 768px) {
  .u-margin--top--200 {
    margin-top: 200px;
  }
}

/* text-align */
.u-t-align--right {
  text-align: right;
}
.u-t-align--left {
  text-align: left;
}
.u-t-align--center {
  text-align: center;
}
@media screen and ( max-width: 767px ) {
  .u-t-align--md-down--right {
    text-align: right;
  }
  .u-t-align--md-down--left {
    text-align: left;
  }
  .u-t-align--md-down--center {
    text-align: center;
  }
}

.u-mark {
  font-size: 0.6em;
  font-weight: normal;
}

/* スムーススクロール */
html {
  scroll-behavior: smooth;
}