/* ------------------------------ */
/* Fonts */
/* ------------------------------ */
@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-Light.woff") format("woff");
  font-weight: 300;
  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;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}
:root {
  --color-white: #FFF;
  --color-base: #727269;
  --color-bg1: #F9F9F9;
  --color-bg2: #EDECEB;
  --color-txt: #4D4D4D;
  --color-red: #E65550;
  --color-pink: #D98F89;
  --color-green: #8DC08E;
  --color-purple: #A99FA8;
  --color-orange: #DE8A73;
  --color-onlineshop: #f66152;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-maru-gothic: "Zen Maru Gothic", sans-serif;
  --font-size-default: 16px;
  --font-size-xxsmall: 10px;
  --font-size-xsmall: 12px;
  --font-size-msmall: 13px;
  --font-size-small: 14px;
  --font-size-medium: 18px;
  --font-size-large: 20px;
  --font-size-xlarge: 24px;
  --font-size-xxlarge: 28px;
  --font-size-xxxlarge: 30px;
  --font-size-splarge: 40px;
  --line-height-default: 1.4;
}

/* ------------------------------ */
/* Animations */
/* ------------------------------ */
@-webkit-keyframes blurIn {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes blurIn {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.a-blur-in {
  opacity: 0;
}
.a-blur-in.inview {
  -webkit-animation: blurIn 0.8s ease forwards;
          animation: blurIn 0.8s ease forwards;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.a-fade-in-up {
  opacity: 0;
}
.a-fade-in-up.inview {
  -webkit-animation: fadeInUp 0.6s ease forwards;
          animation: fadeInUp 0.6s ease forwards;
}

@-webkit-keyframes mainVisalMain {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    letter-spacing: 0.15em;
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    letter-spacing: 0;
  }
}

@keyframes mainVisalMain {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    letter-spacing: 0.15em;
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    letter-spacing: 0;
  }
}
.a-main-visual-main {
  opacity: 0;
}
.a-main-visual-main.inview {
  -webkit-animation: mainVisalMain 0.9s ease forwards;
          animation: mainVisalMain 0.9s ease forwards;
}

@-webkit-keyframes mainVisualSub {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    letter-spacing: 0.4em;
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    letter-spacing: 0.25em;
  }
}

@keyframes mainVisualSub {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    letter-spacing: 0.4em;
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    letter-spacing: 0.25em;
  }
}
.a-main-visual-sub {
  opacity: 0;
}
.a-main-visual-sub.inview {
  -webkit-animation: mainVisualSub 1.4s ease forwards;
          animation: mainVisualSub 1.4s ease forwards;
}

@-webkit-keyframes sectionHeadingMain {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    letter-spacing: 0.24em;
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    letter-spacing: 0.15em;
  }
}

@keyframes sectionHeadingMain {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    letter-spacing: 0.24em;
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    letter-spacing: 0.15em;
  }
}
.a-section-heading-main {
  opacity: 0;
}
.a-section-heading-main.inview {
  -webkit-animation: sectionHeadingMain 0.9s ease forwards;
          animation: sectionHeadingMain 0.9s ease forwards;
}

@-webkit-keyframes sectionHeadingSub {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes sectionHeadingSub {
  from {
    opacity: 0;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.a-section-heading-sub {
  opacity: 0;
}
.a-section-heading-sub.inview {
  -webkit-animation: sectionHeadingSub 0.6s ease forwards;
          animation: sectionHeadingSub 0.6s ease forwards;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ------------------------------ */
/* Main */
/* ------------------------------ */
.b-main {
  position: relative;
  background-color: var(--color-bg1);
  min-height: 100vh;
  max-width: 768px;
  margin: 0 auto;
  font-family: var(--font-family-base);
  font-size: 4.2666666667vw;
  font-weight: 400;
  color: var(--color-txt);
  line-height: var(--line-height-default);
  overflow: hidden;
}
.b-main a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.b-main img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .b-main {
    font-size: 16px;
  }
}

html {
  scroll-behavior: smooth;
}

/* ------------------------------ */
/* Home Header */
/* ------------------------------ */
.b-page-header {
  padding: 0 0 34.6666666667vw;
  background-color: var(--color-bg2);
  background-image: url("/sc_rsc/breastpump/renew2026/images/bg-wave-bottom.svg");
  background-position: left bottom -0.2666666667vw;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.b-page-header__lead {
  position: relative;
  padding: 0 5.3333333333vw;
  font-weight: 700;
  line-height: 1.8;
}
.b-page-header__lead__supervisor {
  display: block;
  margin: 2.6666666667vw 0 0;
  padding: 1.3333333333vw;
  font-size: 3.7333333333vw;
  color: var(--color-base);
  text-align: center;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
}
.b-page-header__catch {
  margin: 0 0 10.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
}
.b-page-header__catch:last-child {
  margin-bottom: 0;
}
.b-page-header--product {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.b-page-header--product::before {
  content: "";
  position: absolute;
  top: 68vw;
  left: 0;
  width: 100%;
  height: 54.6666666667vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/header-bg-cloud.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 0;
}
.b-page-header--product .b-page-header__kv {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.b-page-header--product .b-page-header__heading-product {
  position: relative;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.b-page-header--product .b-page-header__catch {
  position: relative;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.b-page-header--product .b-page-header__award {
  position: relative;
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  background-color: transparent;
}
.b-page-header--product .b-page-header__features {
  position: relative;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
.b-page-header--product .b-page-header__nav {
  position: relative;
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}
@media screen and (min-width: 768px) {
  .b-page-header {
    padding: 0 0 200px;
  }
  .b-page-header__lead {
    font-size: 18px;
    padding: 0 100px;
  }
  .b-page-header__lead__supervisor {
    margin: 10px 0 0;
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
  }
  .b-page-header__catch {
    margin: 0 0 40px;
    font-size: 24px;
  }
  .b-page-header__catch:last-child {
    margin-bottom: 0;
  }
  .b-page-header--product::before {
    top: 460px;
    height: 420px;
  }
  .b-page-header--milkstorage::before {
    top: 480px;
    height: 328px;
    width: 600px;
  }
}

/* ------------------------------ */
/* Home Header */
/* ------------------------------ */
.b-page-header__home {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw;
  padding: 5.3333333333vw 0 8vw;
}
.b-page-header__home__heading {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  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;
  gap: 1.3333333333vw;
  font-family: var(--font-maru-gothic);
  font-weight: 500;
}
.b-page-header__home__heading__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5333333333vw 2.6666666667vw;
  font-size: 3.7333333333vw;
  color: var(--color-white);
  letter-spacing: 0.1em;
  background-color: var(--color-base);
  border-radius: 5.3333333333vw;
}
.b-page-header__home__heading__sub {
  font-size: 3.7333333333vw;
  letter-spacing: 0.08em;
}
.b-page-header__home__heading__logo {
  width: 40vw;
}
.b-page-header__home__lead {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding: 0 5.3333333333vw;
  font-size: 4.2666666667vw;
  line-height: 2;
}
.b-page-header__home__kv {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 82.6666666667vw;
  margin: 0 auto;
}
.b-page-header__home__kv .slick-list {
  overflow: visible;
}
.b-page-header__home__kv__item {
  padding: 0 1.3333333333vw;
}
.b-page-header__home__kv__item img {
  width: 100%;
  border-radius: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .b-page-header__home {
    gap: 20px;
    padding: 30px 0 40px;
  }
  .b-page-header__home__heading {
    gap: 10px;
  }
  .b-page-header__home__heading__label {
    font-size: 16px;
    padding: 4px 12px;
  }
  .b-page-header__home__heading__sub {
    font-size: 16px;
  }
  .b-page-header__home__heading__logo {
    width: 180px;
  }
  .b-page-header__home__lead {
    font-size: 18px;
    padding: 0 100px;
  }
  .b-page-header__home__kv {
    width: 560px;
  }
  .b-page-header__home__kv__item {
    padding: 0 8px;
  }
  .b-page-header__home__kv__item img {
    border-radius: 10px;
  }
}

/* ------------------------------ */
/* Page Header Award */
/* ------------------------------ */
.b-page-header__award {
  display: grid;
  grid-template-columns: 26.6666666667vw 1fr;
  grid-template-areas: "img heading" "img txt";
  gap: 1.3333333333vw 5.3333333333vw;
  padding: 0 5.3333333333vw 8vw;
  font-family: var(--font-maru-gothic);
  background-color: var(--color-bg2);
}
.b-page-header__award__heading {
  grid-area: heading;
  font-size: 4.2666666667vw;
  font-weight: 700;
  text-align: center;
}
.b-page-header__award__heading__sub {
  display: block;
  margin: 0 0 1.3333333333vw;
  font-size: 3.2vw;
}
.b-page-header__award__img {
  grid-area: img;
  width: 100%;
  margin: 0 auto;
}
.b-page-header__award__txt {
  grid-area: txt;
  font-size: 2.6666666667vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .b-page-header__award {
    grid-template-columns: 150px 1fr;
    gap: 10px 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 100px 40px;
  }
  .b-page-header__award__heading {
    font-size: 24px;
    -ms-flex-item-align: self-end;
        align-self: self-end;
  }
  .b-page-header__award__heading__sub {
    margin: 0 0 5px;
    font-size: 14px;
  }
  .b-page-header__award__txt {
    font-size: 12px;
    -ms-flex-item-align: self-start;
        align-self: self-start;
  }
}

/* ------------------------------ */
/* Page Header Nav */
/* ------------------------------ */
.b-page-header__nav {
  padding: 2.6666666667vw 5.3333333333vw;
}
.b-page-header__nav__title {
  margin: 0 0 2.6666666667vw;
}
.b-page-header__nav__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: 4vw;
}
@media screen and (min-width: 768px) {
  .b-page-header__nav {
    padding: 10px 140px;
  }
  .b-page-header__nav__title {
    margin: 0 0 20px;
  }
  .b-page-header__nav__list {
    gap: 20px;
  }
}

/* ------------------------------ */
/* Page Header KV */
/* ------------------------------ */
.b-page-header__kv {
  position: relative;
}
.b-page-header__kv::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 14.6666666667vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/bg-wave-bottom-gray.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .b-page-header__kv::before {
    height: 114px;
  }
}

/* ------------------------------ */
/* Page Header Features */
/* ------------------------------ */
.b-page-header__features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw;
  margin: 21.3333333333vw 0 26.6666666667vw;
  position: relative;
  padding: 0 5.3333333333vw 0;
  background-color: var(--color-bg1);
}
.b-page-header__features__item__label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 1.3333333333vw;
  padding: 0.5333333333vw 2.6666666667vw;
  font-family: var(--font-maru-gothic);
  font-size: 3.2vw;
  font-weight: 700;
  color: var(--color-white);
  background-color: var(--color-base);
  border-radius: 3.2vw;
}
.b-page-header__features__item__title {
  display: block;
  margin: 0 0 2.6666666667vw;
  font-family: var(--font-maru-gothic);
  font-size: 5.3333333333vw;
  font-weight: 700;
  color: var(--color-red);
}
.b-page-header__features__item__img {
  margin: 0 0 2.6666666667vw;
  border-radius: 1.3333333333vw;
}
.b-page-header__features__item__txt {
  font-size: 3.7333333333vw;
  line-height: 1.8;
}
.b-page-header__features::before, .b-page-header__features::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.b-page-header__features::before {
  bottom: calc(100% - 1px);
  left: 0;
  height: 21.3333333333vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/bg-wave-top-white.svg");
}
.b-page-header__features::after {
  top: calc(100% - 1px);
  left: 0;
  height: 21.3333333333vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/bg-wave-bottom-white.svg");
  background-position: center bottom;
}
@media screen and (min-width: 768px) {
  .b-page-header__features {
    gap: 30px;
    margin: 120px 0 150px;
    padding: 2px 100px;
  }
  .b-page-header__features__item__label {
    margin: 0 0 10px;
    padding: 4px 12px;
    font-size: 14px;
    border-radius: 20px;
  }
  .b-page-header__features__item__title {
    margin: 0 0 15px;
    font-size: 28px;
  }
  .b-page-header__features__item__img {
    margin: 0 0 15px;
  }
  .b-page-header__features__item__txt {
    font-size: 16px;
  }
  .b-page-header__features::before {
    bottom: calc(100% - 1px);
    height: 120px;
  }
  .b-page-header__features::after {
    top: calc(100% - 1px);
    height: 120px;
  }
}

/* ------------------------------ */
/* Page Header Banners */
/* ------------------------------ */
.b-page-header__banners {
  padding: 2.6666666667vw 5.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
  margin: 2.6666666667vw auto 0;
  /* Pigeon banner */
}
.b-page-header__banners__item {
  display: block;
  width: 100%;
}
.b-page-header__banners .pgadm-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .b-page-header__banners {
    gap: 20px;
    width: 360px;
    margin: 20px auto 0;
    padding: 0;
    /* Pigeon banner */
  }
  .b-page-header__banners .pgadm-inner {
    gap: 20px;
  }
}

/* ------------------------------ */
/* Page Header Heading Common */
/* ------------------------------ */
.b-page-header__heading-common {
  position: relative;
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 41.6vw;
  margin: 0 0 5.3333333333vw;
  font-family: var(--font-maru-gothic);
  color: var(--color-white);
  overflow: hidden;
}
.b-page-header__heading-common__sub {
  font-size: 3.7333333333vw;
  font-weight: 500;
  z-index: 1;
}
.b-page-header__heading-common__main {
  font-size: 5.8666666667vw;
  font-weight: 700;
  z-index: 1;
}
.b-page-header__heading-common__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.b-page-header__heading-common::after {
  content: "";
  position: absolute;
  bottom: -5.3333333333vw;
  left: 0;
  width: 100%;
  height: 14.6666666667vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/bg-wave-bottom-gray.svg");
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .b-page-header__heading-common {
    height: 320px;
    margin: 0 0 30px;
  }
  .b-page-header__heading-common__sub {
    font-size: 18px;
  }
  .b-page-header__heading-common__main {
    font-size: 30px;
  }
  .b-page-header__heading-common::after {
    bottom: -45px;
    height: 113px;
  }
}

/* ------------------------------ */
/* Page Header Heading Product */
/* ------------------------------ */
.b-page-header__heading-product {
  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;
  margin: 0 0 8vw;
  padding: 0 5.3333333333vw;
  font-family: var(--font-maru-gothic);
  font-weight: 700;
}
.b-page-header__heading-product__sub {
  font-size: 3.7333333333vw;
}
.b-page-header__heading-product__main {
  font-size: 5.8666666667vw;
  line-height: 1.4;
  text-align: center;
}
.b-page-header__heading-product::after {
  content: "";
  display: block;
  width: 74.6666666667vw;
  height: 1.0666666667vw;
  margin: 1.3333333333vw 0 0;
  background-image: url("/sc_rsc/breastpump/renew2026/images/dot-line-red.svg");
  background-repeat: repeat-x;
  background-size: 2.9333333333vw 1.0666666667vw;
  background-position: left top;
}
@media screen and (min-width: 768px) {
  .b-page-header__heading-product {
    margin: 0 0 40px;
  }
  .b-page-header__heading-product__sub {
    font-size: 18px;
  }
  .b-page-header__heading-product__main {
    font-size: 36px;
  }
  .b-page-header__heading-product::after {
    width: 458px;
    height: 6px;
    margin: 8px 0 0;
    background-size: 18px 6px;
  }
}

/* ------------------------------ */
/* Page Footer */
/* ------------------------------ */
.b-page-footer {
  margin: 5.3333333333vw 0 0;
  padding: 31.4666666667vw 5.3333333333vw 8vw;
  background-color: var(--color-bg2);
  background-image: url("/sc_rsc/breastpump/renew2026/images/bg-wave-top.svg");
  background-repeat: no-repeat;
  background-position: top -0.2666666667vw left;
  background-size: 100% auto;
}
.b-page-footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4vw;
  margin: 0 -5.3333333333vw;
  padding: 8vw 5.3333333333vw;
  background-color: var(--color-bg1);
}
.b-page-footer__menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.6666666667vw 0;
  font-family: var(--font-maru-gothic);
  font-size: 4.2666666667vw;
  font-weight: 700;
  border-bottom: 0.2666666667vw solid var(--color-txt);
}
.b-page-footer__menu__item a::after {
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/icon-arrow-red-clear.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.b-page-footer__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
  margin: 2.6666666667vw auto 16vw;
  /* Pigoen banner */
}
.b-page-footer__banners__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-size: 4.2666666667vw;
  font-weight: 700;
  text-align: center;
  color: var(--color-pink);
}
.b-page-footer__banners__title::before, .b-page-footer__banners__title::after {
  content: "";
  display: inline-block;
  width: 5.3333333333vw;
  height: 0.2666666667vw;
  background-color: var(--color-pink);
}
.b-page-footer__banners__title::before {
  -webkit-transform: rotate(60deg);
          transform: rotate(60deg);
}
.b-page-footer__banners__title::after {
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
}
.b-page-footer__banners__lead {
  font-family: var(--font-maru-gothic);
  font-size: 3.7333333333vw;
}
.b-page-footer__banners__item {
  display: block;
  width: 100%;
}
.b-page-footer__banners .pgadm-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
}
.b-page-footer__banners .pgadm-inner img {
  margin: 0;
}
.b-page-footer--no-wave {
  background-image: none;
  padding-top: 5.3333333333vw;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .b-page-footer {
    margin: 20px 0 0;
    padding: 200px 120px 30px;
    background-position: top -1px left;
  }
  .b-page-footer__menu {
    gap: 20px;
    margin: 0 -120px;
    padding: 40px 120px;
  }
  .b-page-footer__menu__item a {
    font-size: 16px;
    padding: 10px 0;
    border-width: 1px;
  }
  .b-page-footer__menu__item a::after {
    width: 20px;
    height: 20px;
  }
  .b-page-footer__menu__item a:hover, .b-page-footer__menu__item a:focus {
    color: var(--color-red);
    letter-spacing: 0.05em;
    border-color: var(--color-red);
  }
  .b-page-footer__banners {
    gap: 20px;
    width: 360px;
    margin: 20px auto 60px;
    /* Pigoen banner */
  }
  .b-page-footer__banners__title {
    font-size: 16px;
  }
  .b-page-footer__banners__title::before, .b-page-footer__banners__title::after {
    width: 20px;
    height: 1px;
  }
  .b-page-footer__banners__lead {
    font-size: 14px;
    margin-top: -10px;
  }
  .b-page-footer__banners .pgadm-inner {
    gap: 20px;
  }
  .b-page-footer--no-wave {
    margin: 0;
    padding-top: 40px;
  }
}

/* ------------------------------ */
/* Page Header Menu */
/* ------------------------------ */
.b-page-header-menu {
  position: absolute;
  top: 0px;
  left: 0;
  height: 100vh;
  width: 100%;
  padding: 2.1333333333vw 5.3333333333vw;
  z-index: 1000;
  pointer-events: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.b-page-header-menu__opener {
  display: block;
  width: 10.1333333333vw;
  height: 10.1333333333vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/icon-menu.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0 0 auto;
  pointer-events: auto;
}
.b-page-header-menu__list {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw;
  pointer-events: auto;
  margin: 2.1333333333vw 0 0;
  height: calc(100% - 12.2666666667vw);
  overflow-y: scroll;
}
.b-page-header-menu__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2.6666666667vw 5.3333333333vw;
  font-family: var(--font-maru-gothic);
  font-size: 4.2666666667vw;
  font-weight: 700;
  border-bottom: 0.2666666667vw solid var(--color-base);
}
.b-page-header-menu__list__item a::after {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  width: 4vw;
  height: 4vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/icon-arrow-gray.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.b-page-header-menu__list__banners {
  padding: 20px 0 20px;
}
.b-page-header-menu__list__banners .pgadm-inner {
  gap: 2.6666666667vw;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.b-page-header-menu.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.b-page-header-menu.is-open {
  background-color: var(--color-bg2);
}
.b-page-header-menu.is-open .b-page-header-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.b-page-header-menu.is-open .b-page-header-menu__opener {
  background-image: url("/sc_rsc/breastpump/renew2026/images/icon-menu-close.svg");
}
@media screen and (min-width: 768px) {
  .b-page-header-menu {
    width: 768px;
    padding: 10px 30px;
  }
  .b-page-header-menu__opener {
    width: 60px;
    height: 60px;
  }
  .b-page-header-menu__list {
    margin: 10px 0 0;
    padding: 0 50px;
    gap: 20px;
    height: calc(100% - 80px);
  }
  .b-page-header-menu__list__item a {
    padding: 15px 30px;
    font-size: 18px;
    border-width: 1px;
  }
  .b-page-header-menu__list__item a::after {
    width: 20px;
    height: 20px;
  }
  .b-page-header-menu__list__item a:hover, .b-page-header-menu__list__item a:focus {
    color: var(--color-red);
    letter-spacing: 0.05em;
    border-color: var(--color-red);
  }
  .b-page-header-menu__list__item a:hover::after, .b-page-header-menu__list__item a:focus::after {
    background-image: url("/sc_rsc/breastpump/renew2026/images/icon-arrow-red.svg");
  }
  .b-page-header-menu__list__banners {
    margin: 0 auto;
    padding: 30px 0 30px;
    width: 360px;
  }
  .b-page-header-menu__list__banners .pgadm-inner {
    gap: 10px;
  }
  .b-page-header-menu.is-fixed {
    width: 768px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

/* ------------------------------ */
/* Main Sections */
/* ------------------------------ */
.b-sections {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16vw;
  padding: 0 5.3333333333vw;
}
.b-sections__heading {
  margin: 0 0 -8vw;
}
@media screen and (min-width: 768px) {
  .b-sections {
    gap: 60px;
    padding: 0 100px;
  }
  .b-sections__heading {
    margin: 0 0 -20px;
  }
}

/* ------------------------------ */
/* Section */
/* ------------------------------ */
.b-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
}
.b-section__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.1333333333vw;
  font-family: var(--font-maru-gothic);
  font-size: 5.3333333333vw;
  font-weight: 700;
  color: var(--color-base);
}
.b-section__heading__num {
  font-size: 10.6666666667vw;
  line-height: 1;
}
.b-section__heading__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b-section__img {
  width: 100%;
  border-radius: 1.3333333333vw;
}
.b-section__img--no-radius {
  border-radius: 0;
}
.b-section__txt {
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
.b-section__txt b {
  font-weight: 700;
}
.b-section__txt--mb-large {
  margin-bottom: 4.8vw;
}
.b-section__txt--with-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6666666667vw;
}
.b-section__txt--with-img img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 34.6666666667vw;
}
@media screen and (min-width: 768px) {
  .b-section {
    gap: 20px;
  }
  .b-section__heading {
    font-size: 28px;
    gap: 12px;
  }
  .b-section__heading__num {
    font-size: 56px;
  }
  .b-section__img {
    border-radius: 5px;
  }
  .b-section__img--no-radius {
    border-radius: 0;
  }
  .b-section__txt {
    font-size: 16px;
  }
  .b-section__txt--mb-large {
    margin-bottom: 10px;
  }
  .b-section__txt--with-img {
    gap: 40px;
  }
  .b-section__txt--with-img img {
    width: 180px;
  }
}

/* ------------------------------ */
/* Section Explanation */
/* ------------------------------ */
.b-section__explanation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw;
  padding: 5.3333333333vw;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
}
.b-section__explanation__section__heading {
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  text-align: center;
  color: var(--color-red);
  margin: 0 0 1.3333333333vw;
}
.b-section__explanation__section__txt {
  font-size: 3.7333333333vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .b-section__explanation {
    gap: 30px;
    padding: 40px 60px;
  }
  .b-section__explanation__section__heading {
    font-size: 24px;
    margin: 0 0 10px;
  }
  .b-section__explanation__section__txt {
    font-size: 16px;
  }
}

/* ------------------------------ */
/* Section Point */
/* ------------------------------ */
.b-section__point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
  margin: 2.6666666667vw 0 0;
}
.b-section__point__heading {
  font-family: var(--font-maru-gothic);
  font-weight: 700;
}
.b-section__point__heading__txt {
  display: block;
  margin: 1.3333333333vw 0 0;
  font-size: 3.7333333333vw;
  font-weight: 700;
  font-size: 5.3333333333vw;
  color: var(--color-base);
  text-align: center;
}
.b-section__point__heading__txt b {
  font-weight: 700;
  color: var(--color-red);
}
.b-section__point__heading--green .b-section__point__heading__txt {
  color: var(--color-green);
}
.b-section__point__heading--purple .b-section__point__heading__txt {
  color: var(--color-purple);
}
.b-section__point__heading--pink .b-section__point__heading__txt {
  color: var(--color-pink);
}
.b-section__point__heading--orange .b-section__point__heading__txt {
  color: var(--color-orange);
}
@media screen and (min-width: 768px) {
  .b-section__point {
    gap: 20px;
    margin: 40px 0 0;
  }
  .b-section__point__heading__txt {
    margin: 10px 0 0;
    font-size: 28px;
  }
}

/* ------------------------------ */
/* Section Support */
/* ------------------------------ */
.b-section__support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
  padding: 5.3333333333vw;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
}
.b-section__support__heading {
  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;
  gap: 1.3333333333vw;
  font-family: var(--font-maru-gothic);
}
.b-section__support__heading__label {
  display: block;
  padding: 1.3333333333vw 16vw;
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  font-size: 3.7333333333vw;
  color: var(--color-white);
  background-color: var(--color-base);
  border-radius: 10.6666666667vw;
}
.b-section__support__heading__txt {
  font-size: 5.3333333333vw;
  font-weight: 700;
  color: var(--color-base);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .b-section__support {
    gap: 20px;
    padding: 40px 60px;
  }
  .b-section__support__heading {
    gap: 10px;
  }
  .b-section__support__heading__label {
    padding: 8px 80px;
    font-size: 16px;
    border-radius: 40px;
  }
  .b-section__support__heading__txt {
    font-size: 28px;
  }
}

/* ------------------------------ */
/* Section Heading Balloon */
/* ------------------------------ */
.b-section__heading-balloon {
  --balloon-color: var(--color-base);
  font-family: var(--font-maru-gothic);
  font-weight: 700;
}
.b-section__heading-balloon__caption {
  display: block;
  margin: 0 0 1.3333333333vw;
  font-size: 3.7333333333vw;
  text-align: center;
  color: var(--balloon-color);
}
.b-section__heading-balloon__txt {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 89.3333333333vw;
  height: 35.2vw;
  color: var(--color-white);
  background-image: url("/sc_rsc/breastpump/renew2026/images/heading-balloon-frame.svg");
  background-color: var(--balloon-color);
  background-size: cover;
  background-repeat: no-repeat;
}
.b-section__heading-balloon__txt__sub {
  font-size: 4.2666666667vw;
}
.b-section__heading-balloon__txt__main {
  font-size: 6.4vw;
  line-height: 1.4;
  text-align: center;
}
.b-section__heading-balloon__txt__main__ruby {
  font-size: 3.7333333333vw;
}
.b-section__heading-balloon__txt__caption {
  font-size: 3.2vw;
}
.b-section__heading-balloon--green {
  --balloon-color: var(--color-green);
}
.b-section__heading-balloon--purple {
  --balloon-color: var(--color-purple);
}
.b-section__heading-balloon--pink {
  --balloon-color: var(--color-pink);
}
.b-section__heading-balloon--orange {
  --balloon-color: var(--color-orange);
}
@media screen and (min-width: 768px) {
  .b-section__heading-balloon__caption {
    font-size: 18px;
  }
  .b-section__heading-balloon__txt {
    width: 568px;
    height: 224px;
  }
  .b-section__heading-balloon__txt__sub {
    font-size: 20px;
  }
  .b-section__heading-balloon__txt__main {
    font-size: 36px;
  }
  .b-section__heading-balloon__txt__main__ruby {
    font-size: 18px;
  }
  .b-section__heading-balloon__txt__caption {
    font-size: 16px;
  }
}

/* ------------------------------ */
/* Section List Features */
/* ------------------------------ */
.b-section__list-features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.9333333333vw;
  padding: 5.3333333333vw 0;
  background-color: var(--color-bg2);
  border-radius: 1.3333333333vw;
}
.b-section__list-features__item {
  width: 18.6666666667vw;
}
.b-section__list-features__item__icon {
  width: 100%;
  margin: 0 0 1.3333333333vw;
}
.b-section__list-features__item__txt {
  display: block;
  font-family: var(--font-maru-gothic);
  font-size: 3.2vw;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .b-section__list-features {
    gap: 20px;
    padding: 30px 0;
  }
  .b-section__list-features__item {
    width: 100px;
  }
  .b-section__list-features__item__icon {
    margin: 0 0 10px;
  }
  .b-section__list-features__item__txt {
    font-size: 14px;
  }
}

/* ------------------------------ */
/* Section Product */
/* ------------------------------ */
.b-section__product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
  margin: 2.6666666667vw 0 0;
  padding: 8vw;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
}
.b-section__product__name {
  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;
  font-family: var(--font-maru-gothic);
  font-weight: 700;
}
.b-section__product__name__sub {
  font-size: 3.2vw;
}
.b-section__product__name__main {
  font-size: 5.3333333333vw;
  text-align: center;
}
.b-section__product__name__ruby {
  font-size: 3.7333333333vw;
}
.b-section__product__img {
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .b-section__product {
    gap: 20px;
    margin: 20px 0 0;
    padding: 60px 80px;
  }
  .b-section__product__name__sub {
    font-size: 14px;
  }
  .b-section__product__name__main {
    font-size: 28px;
  }
  .b-section__product__name__ruby {
    font-size: 18px;
  }
  .b-section__product__img {
    width: 320px;
  }
}

/* ------------------------------ */
/* Section Banners */
/* ------------------------------ */
.b-section__banners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
  margin: 2.6666666667vw auto 0;
  /* Pigeon banner */
}
.b-section__banners__item {
  display: block;
  width: 100%;
}
.b-section__banners .pgadm-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .b-section__banners {
    gap: 20px;
    width: 360px;
    margin: 20px auto 0;
    /* Pigeon banner */
  }
  .b-section__banners .pgadm-inner {
    gap: 20px;
  }
}

/* ------------------------------ */
/* Section Framed */
/* ------------------------------ */
.b-section-framed {
  padding: 5.3333333333vw;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
}
.b-section-framed__heading {
  margin: 0 0 5.3333333333vw;
  font-family: var(--font-maru-gothic);
  font-size: 4.8vw;
  font-weight: 700;
  text-align: center;
  color: var(--color-red);
}
.b-section-framed__heading::after {
  content: "";
  display: block;
  width: 65.6vw;
  height: 1.0666666667vw;
  margin: 1.3333333333vw auto 0;
  background-image: url("/sc_rsc/breastpump/renew2026/images/dot-line-red.svg");
  background-repeat: repeat-x;
  background-size: 2.9333333333vw 1.0666666667vw;
  background-position: left top;
}
.b-section-framed__heading--pink {
  color: var(--color-pink);
}
.b-section-framed__heading--pink::after {
  background-image: url("/sc_rsc/breastpump/renew2026/images/dot-line-pink.svg");
}
.b-section-framed__caption {
  margin: 2.6666666667vw 0 0;
  font-family: var(--font-maru-gothic);
  font-size: 3.7333333333vw;
  font-weight: 500;
  color: var(--color-base);
}
@media screen and (min-width: 768px) {
  .b-section-framed {
    padding: 40px;
    border-radius: 10px;
  }
  .b-section-framed__heading {
    margin: 0 0 30px;
    font-size: 24px;
  }
  .b-section-framed__heading::after {
    width: 400px;
    height: 6px;
    background-size: 16px 6px;
  }
  .b-section-framed__caption {
    margin: 20px 0 0;
    font-size: 16px;
  }
}

/* ------------------------------ */
/* Comic */
/* ------------------------------ */
.b-comic {
  background-color: var(--color-bg2);
  padding: 5.3333333333vw 5.3333333333vw 16vw;
}
.b-comic__header {
  margin: 0 0 5.3333333333vw;
}
.b-comic__header__title {
  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;
  gap: 1.3333333333vw;
  margin: 0 0 10.6666666667vw;
  font-family: var(--font-maru-gothic);
}
.b-comic__header__title__num {
  padding: 1.3333333333vw 13.3333333333vw;
  background-color: var(--color-white);
  font-size: 3.2vw;
  font-weight: 700;
  border-radius: 5.3333333333vw;
}
.b-comic__header__title__txt {
  font-size: 5.8666666667vw;
  font-weight: 700;
  text-align: center;
}
.b-comic__header__title::after {
  content: "";
  display: block;
  width: 70.4vw;
  height: 1.0666666667vw;
  margin: 1.3333333333vw 0 0;
  background-image: url("/sc_rsc/breastpump/renew2026/images/dot-line-red.svg");
  background-repeat: repeat-x;
  background-size: 2.9333333333vw 1.0666666667vw;
  background-position: left top;
}
.b-comic__header__lead {
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
.b-comic__pages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
}
.b-comic__pages__item img {
  display: block;
  width: 100%;
}
.b-comic__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4vw;
  margin: 5.3333333333vw auto 0;
}
.b-comic__nav .b-comic__nav__btn {
  width: 42.6666666667vw;
  font-size: 3.2vw;
  padding: 2.6666666667vw 4vw;
}
.b-comic__nav .b-comic__nav__btn--prev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-right: auto;
}
.b-comic__nav .b-comic__nav__btn--prev::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin: 0 auto 0 0;
}
.b-comic__nav .b-comic__nav__btn--next {
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .b-comic {
    padding: 60px 100px 80px;
  }
  .b-comic__header {
    margin: 0 0 40px;
  }
  .b-comic__header__title {
    gap: 5px;
    margin: 0 0 40px;
  }
  .b-comic__header__title__num {
    padding: 8px 60px;
    font-size: 16px;
  }
  .b-comic__header__title__txt {
    font-size: 28px;
  }
  .b-comic__header__title::after {
    width: 400px;
    height: 6px;
    margin: 10px 0 0;
    background-size: 16px 6px;
  }
  .b-comic__header__lead {
    font-size: 18px;
  }
  .b-comic__pages {
    gap: 20px;
    padding: 0 60px;
  }
  .b-comic__nav {
    gap: 30px;
    margin: 40px auto 0;
    padding: 0 60px;
  }
  .b-comic__nav .b-comic__nav__btn {
    padding: 12px 20px;
    width: 200px;
    font-size: 14px;
  }
}

/* ------------------------------ */
/* Comic Episode Nav */
/* ------------------------------ */
.b-comic-episode-nav {
  padding: 0 20px 10.6666666667vw;
  background-color: var(--color-bg2);
}
.b-comic-episode-nav .b-comic-episode-nav__title {
  margin: 0 0 5.3333333333vw;
  color: var(--color-txt);
}
@media screen and (min-width: 768px) {
  .b-comic-episode-nav {
    padding: 0 100px 60px;
  }
  .b-comic-episode-nav__title {
    margin: 0 0 30px;
  }
}

/* ------------------------------ */
/* Dot Line Title */
/* ------------------------------ */
.b-dot-line-title {
  --line-img: url("/sc_rsc/breastpump/renew2026/images/dot-line-gray.svg");
  --title-color: var(--color-txt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: var(--font-maru-gothic);
  font-size: 4.8vw;
  font-weight: 700;
}
.b-dot-line-title::before, .b-dot-line-title::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 1.3333333333vw;
  width: 21.6vw;
  background-image: var(--line-img);
  background-size: auto 1.0666666667vw;
  background-repeat: repeat-x;
}
.b-dot-line-title__point {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  color: var(--color-white);
  background-color: var(--title-color);
  border-radius: 50%;
  line-height: 1;
}
.b-dot-line-title__point__txt {
  font-size: 3.2vw;
}
.b-dot-line-title--red {
  --line-img: url("/sc_rsc/breastpump/renew2026/images/dot-line-red.svg");
  --title-color: var(--color-red);
  color: var(--color-red);
}
.b-dot-line-title--green {
  --line-img: url("/sc_rsc/breastpump/renew2026/images/dot-line-green.svg");
  --title-color: var(--color-green);
  color: var(--color-green);
}
.b-dot-line-title--purple {
  --line-img: url("/sc_rsc/breastpump/renew2026/images/dot-line-purple.svg");
  --title-color: var(--color-purple);
  color: var(--color-purple);
}
.b-dot-line-title--pink {
  --line-img: url("/sc_rsc/breastpump/renew2026/images/dot-line-pink.svg");
  --title-color: var(--color-pink);
  color: var(--color-pink);
}
.b-dot-line-title--orange {
  --line-img: url("/sc_rsc/breastpump/renew2026/images/dot-line-orange.svg");
  --title-color: var(--color-orange);
  color: var(--color-orange);
}
@media screen and (min-width: 768px) {
  .b-dot-line-title {
    font-size: 26px;
  }
  .b-dot-line-title::before, .b-dot-line-title::after {
    width: 155px;
    height: 6px;
    background-size: auto 6px;
  }
  .b-dot-line-title__point {
    width: 70px;
    height: 70px;
  }
  .b-dot-line-title__point__txt {
    font-size: 16px;
  }
}

/* ------------------------------ */
/* Button */
/* ------------------------------ */
.b-btn {
  --icon-img: url("/sc_rsc/breastpump/renew2026/images/icon-arrow-gray.svg");
  --btn-color: var(--color-txt);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.6666666667vw;
  padding: 2.6666666667vw 5.3333333333vw;
  font-family: var(--font-maru-gothic);
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: var(--btn-color);
  border: 0.2666666667vw solid var(--btn-color);
  border-radius: 10.6666666667vw;
  background-color: var(--color-white);
}
.b-btn__num {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.b-btn__txt__sub {
  display: block;
  font-size: 3.2vw;
}
.b-btn__txt__main {
  font-size: 4.8vw;
}
.b-btn__txt__main__ruby {
  font-size: 3.2vw;
}
.b-btn::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
  width: 4vw;
  height: 4vw;
  background-image: var(--icon-img);
  background-size: contain;
  background-repeat: no-repeat;
}
.b-btn--red {
  --icon-img: url("/sc_rsc/breastpump/renew2026/images/icon-arrow-red.svg");
  --btn-color: var(--color-red);
}
.b-btn--down::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.b-btn--small {
  padding: 2.6666666667vw 2.1333333333vw;
  font-size: 2.6666666667vw;
  gap: 0;
}
.b-btn--small::after {
  width: 3.2vw;
  height: 3.2vw;
}
.b-btn--onlineshop {
  --icon-img: url("/sc_rsc/breastpump/renew2026/images/icon-arrow-red-clear.svg");
  --btn-color: var(--color-onlineshop);
  color: var(--color-white);
  background-color: var(--color-onlineshop);
}
@media screen and (min-width: 768px) {
  .b-btn {
    gap: 10px;
    font-size: 16px;
    padding: 12px 24px;
    border-width: 1px;
  }
  .b-btn__txt__sub {
    font-size: 14px;
  }
  .b-btn__txt__main {
    font-size: 20px;
  }
  .b-btn__txt__main__ruby {
    font-size: 14px;
  }
  .b-btn::after {
    width: 20px;
    height: 20px;
  }
  .b-btn:hover, .b-btn:focus {
    background-color: var(--btn-color);
    color: var(--color-white);
    letter-spacing: 0.03em;
  }
  .b-btn--small {
    font-size: 12px;
    gap: 5px;
    padding: 12px;
  }
  .b-btn--small::after {
    width: 16px;
    height: 16px;
  }
  .b-btn--onlineshop:hover, .b-btn--onlineshop:focus {
    background-color: var(--color-white);
    color: var(--color-onlineshop);
  }
}

/* ------------------------------ */
/* 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;
  gap: 5.3333333333vw;
}
.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;
  gap: 2.6666666667vw;
  background-color: var(--color-white);
  padding: 5.3333333333vw 2.1333333333vw;
  border-radius: 1.3333333333vw;
}
.b-faq__item__question, .b-faq__item__answer {
  padding: 0 0 0 10.1333333333vw;
  background-size: 8vw 8vw;
  background-repeat: no-repeat;
  background-position: left top;
}
.b-faq__item__question__txt, .b-faq__item__answer__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.7333333333vw;
  line-height: 1.8;
  min-height: 8vw;
}
.b-faq__item__question {
  background-image: url("/sc_rsc/breastpump/renew2026/images/icon-question.svg");
}
.b-faq__item__question__txt {
  font-weight: 700;
}
.b-faq__item__answer {
  background-image: url("/sc_rsc/breastpump/renew2026/images/icon-answer.svg");
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .b-faq {
    gap: 30px;
  }
  .b-faq__item {
    gap: 15px;
    padding: 30px 20px;
  }
  .b-faq__item__question, .b-faq__item__answer {
    padding: 0 0 0 46px;
    background-size: 40px 40px;
  }
  .b-faq__item__question__txt {
    min-height: 40px;
    font-size: 16px;
  }
  .b-faq__item__answer {
    gap: 15px;
  }
  .b-faq__item__answer__txt {
    min-height: 40px;
    font-size: 16px;
  }
}

/* ------------------------------ */
/* List Dot */
/* ------------------------------ */
.b-list-dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.3333333333vw;
}
.b-list-dot__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8666666667vw;
  font-family: var(--font-maru-gothic);
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: var(--color-base);
  line-height: 1.8;
}
.b-list-dot__item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-color: var(--color-red);
  border-radius: 50%;
  margin: 2.6666666667vw 0 0;
}
.b-list-dot--pink .b-list-dot__item::before {
  background-color: var(--color-pink);
}
.b-list-dot--large .b-list-dot__item {
  font-size: 4.2666666667vw;
}
.b-list-dot--large .b-list-dot__item::before {
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  margin: 2.6666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .b-list-dot {
    gap: 10px;
  }
  .b-list-dot__item {
    gap: 10px;
    font-size: 16px;
  }
  .b-list-dot__item::before {
    width: 10px;
    height: 10px;
    margin: 10px 0 0;
  }
  .b-list-dot--large .b-list-dot__item {
    font-size: 18px;
  }
  .b-list-dot--large .b-list-dot__item::before {
    width: 12px;
    height: 12px;
    margin: 10px 0 0;
  }
}

/* ------------------------------ */
/* Supervisor */
/* ------------------------------ */
.b-supervisor {
  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;
  padding: 5.3333333333vw;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
}
.b-supervisor__heading {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 0 2.6666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  text-align: center;
}
.b-supervisor__heading::after {
  content: "";
  display: block;
  width: 62.6666666667vw;
  height: 1.0666666667vw;
  margin: 1.3333333333vw auto 0;
  background-image: url("/sc_rsc/breastpump/renew2026/images/dot-line-red.svg");
  background-repeat: repeat-x;
  background-size: auto 1.0666666667vw;
  background-position: left top;
}
.b-supervisor__info {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.b-supervisor__info__title {
  display: block;
  font-family: var(--font-maru-gothic);
  font-size: 3.2vw;
  font-weight: 500;
  text-align: center;
}
.b-supervisor__info__name {
  display: block;
  margin: 0 0 1.3333333333vw;
  font-family: var(--font-maru-gothic);
  font-size: 4.8vw;
  font-weight: 700;
  text-align: center;
}
.b-supervisor__info__txt {
  font-size: 3.7333333333vw;
  line-height: 1.6;
  text-align: center;
}
.b-supervisor__img {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  display: block;
  margin: 0 0 1.3333333333vw;
  width: 26.6666666667vw;
  height: 26.6666666667vw;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .b-supervisor {
    padding: 40px;
    border-radius: 10px;
  }
  .b-supervisor__heading {
    width: 340px;
    margin: 0 0 15px;
    font-size: 18px;
  }
  .b-supervisor__heading::after {
    width: 320px;
    height: 6px;
    margin: 8px auto 0;
    background-size: 16px 6px;
  }
  .b-supervisor__info__title {
    font-size: 16px;
  }
  .b-supervisor__info__name {
    margin: 0 0 10px;
    font-size: 24px;
  }
  .b-supervisor__info__txt {
    font-size: 16px;
  }
  .b-supervisor__img {
    margin: 0 0 10px;
    width: 150px;
    height: 150px;
  }
}

/* ------------------------------ */
/* Comic List */
/* ------------------------------ */
.b-comic-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5.3333333333vw 1.3333333333vw;
}
.b-comic-list__item {
  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;
  gap: 1.3333333333vw;
  width: calc((100% - 1.3333333333vw) / 2);
}
.b-comic-list__item__img {
  display: block;
  width: 100%;
}
.b-comic-list__item__title {
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  text-align: center;
}
.b-comic-list__item__title__num {
  display: block;
  font-size: 3.2vw;
}
.b-comic-list__item__title__txt {
  display: block;
  font-size: 3.7333333333vw;
}
.b-comic-list__item .b-btn {
  font-size: 3.2vw;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .b-comic-list {
    gap: 30px;
    width: 420px;
    margin: 0 auto;
  }
  .b-comic-list__item {
    width: calc((100% - 30px) / 2);
    gap: 5px;
  }
  .b-comic-list__item__img {
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .b-comic-list__item__img:hover, .b-comic-list__item__img:focus {
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
  }
  .b-comic-list__item__title__num {
    font-size: 14px;
  }
  .b-comic-list__item__title__txt {
    font-size: 16px;
  }
  .b-comic-list__item .b-btn {
    font-size: 14px;
  }
}

/* ------------------------------ */
/* Lineup */
/* ------------------------------ */
.b-lineup__heading {
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  font-size: 6.4vw;
  text-align: center;
  margin: 0 0 2.6666666667vw;
}
.b-lineup__heading::after {
  content: "";
  display: block;
  width: 89.0666666667vw;
  height: 1.0666666667vw;
  background-image: url("/sc_rsc/breastpump/renew2026/images/dot-line-red.svg");
  background-repeat: repeat-x;
  background-size: 2.9333333333vw 1.0666666667vw;
  background-position: left top;
  margin: 1.3333333333vw auto 0;
}
.b-lineup__subtitle {
  font-family: var(--font-maru-gothic);
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-align: center;
  margin: 5.3333333333vw 0 2.6666666667vw;
}
.b-lineup__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
  margin: 0 0 5.3333333333vw;
}
.b-lineup__section:last-child {
  margin-bottom: 0;
}
.b-lineup__section__heading {
  padding: 0.8vw 2.6666666667vw;
  background-color: var(--color-base);
  color: var(--color-white);
  font-family: var(--font-maru-gothic);
  font-weight: 700;
  text-align: center;
  border-radius: 5.3333333333vw;
}
.b-lineup__section__heading--40 {
  background-color: #F09D96;
}
.b-lineup__section__heading--80 {
  background-color: #ABC9D6;
}
.b-lineup__section__heading--160 {
  background-color: #E39362;
}
.b-lineup__section__kv {
  border-radius: 1.3333333333vw;
}
.b-lineup__section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.b-lineup__section__list__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.6666666667vw;
  width: calc((100% - 4vw) / 2);
  padding: 5.3333333333vw 2.1333333333vw;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
  overflow: hidden;
}
.b-lineup__section__list__item__img {
  width: 33.0666666667vw;
  margin: 0 auto;
}
.b-lineup__section__list__item__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 8vw;
}
@media screen and (min-width: 768px) {
  .b-lineup__heading {
    font-size: 32px;
  }
  .b-lineup__heading::after {
    width: 500px;
    height: 6px;
    background-size: 16px 6px;
  }
  .b-lineup__subtitle {
    font-size: 28px;
    margin: 40px 0 20px;
  }
  .b-lineup__section {
    gap: 20px;
    margin: 0 auto 40px;
    width: 480px;
  }
  .b-lineup__section__heading {
    padding: 6px 20px;
    font-size: 20px;
    border-radius: 30px;
  }
  .b-lineup__section__kv {
    border-radius: 10px;
  }
  .b-lineup__section__list {
    gap: 20px;
  }
  .b-lineup__section__list__item {
    gap: 10px;
    width: calc((100% - 20px) / 2);
    padding: 30px 12px;
    border-radius: 10px;
  }
  .b-lineup__section__list__item__img {
    width: 160px;
  }
  .b-lineup__section__list__item__label {
    width: 50px;
  }
}

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

.u-pos--center {
  float: none !important;
  margin: 0px auto !important;
}

.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.u-font-weight-medium {
  font-weight: 500;
}

.u-font-weight-bold {
  font-weight: 600;
}

.u-font-size16 {
  font-size: 16px;
}
@media screen and (max-width: 374px) {
  .u-font-size16 {
    font-size: 14px;
  }
}
@media screen and (min-width: 540px) {
  .u-font-size16 {
    font-size: 18px;
  }
}

.u-emphasis {
  display: inline-block;
  position: relative;
  margin-top: 1.3333333333vw;
}
.u-emphasis::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0.8vw;
  height: 0.8vw;
  background-color: var(--color-red);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .u-emphasis {
    margin-top: 5px;
  }
  .u-emphasis::before {
    width: 4px;
    height: 4px;
  }
}