/* ------------------------------ */
/* Fonts */
/* ------------------------------ */
@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-bg1: #FBFBFB;
  --color-bg2: #F4F4F4;
  --color-txt: #595555;
  --color-txt-thin: #7A7777;
  --color-red: #E04637;
  --color-red-light: #FDBAB4;
  --color-red-thin: #FCECEB;
  --color-orange: #F66152;
  --color-orange-thin: #ffa59d;
  --color-gray: #888888;
  --color-gray-thin: #ECECEC;
  --color-onlineshop: #f66152;
  --font-family-sans-serif: "Noto Sans JP", 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;
}

/* ------------------------------ */
/* Navigation */
/* ------------------------------ */
.c-navigation {
  width: 100vw;
  background: #fff;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1000;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-navigation.is-top {
  opacity: 1;
  -webkit-transition: opacity ease-in-out 0.3s;
  transition: opacity ease-in-out 0.3s;
}

.c-navigation.is-top.is-fixed {
  opacity: 1;
  pointer-events: auto;
}

.c-navigation.is-fixed {
  position: fixed;
}

.c-navigationInner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

ul.c-navigationList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 0 30px;
}

@media screen and (max-width: 767px) {
  ul.c-navigationList {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2vw 4vw;
  }
}
ul.c-navigationList.under {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

li.c-navigationItem a,
li.c-navigationItem button {
  margin-right: 25px;
  font-size: 16px;
  letter-spacing: 0.14em;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media screen and (max-width: 1080px) {
  li.c-navigationItem a,
  li.c-navigationItem button {
    font-size: 1.4814814815vw;
    margin-right: 2.3148148148vw;
  }
}
@media screen and (max-width: 767px) {
  li.c-navigationItem a,
  li.c-navigationItem button {
    margin-right: 0;
  }
}
li.c-navigationItem.onlineBtn {
  background: #f66152;
  height: 50px;
  border-radius: 25px;
  display: inline-block;
  position: relative;
}

li.c-navigationItem.onlineBtn:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background-color: #ef210c;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  li.c-navigationItem.onlineBtn {
    height: 8vw;
  }
}
li.c-navigationItem.onlineBtn a {
  margin-right: 0;
  font-weight: bold;
  color: #fff;
  line-height: 50px;
  padding: 0 25px;
}

@media screen and (max-width: 1080px) {
  li.c-navigationItem.onlineBtn a {
    padding: 0 2.3148148148vw;
  }
}
@media screen and (max-width: 767px) {
  li.c-navigationItem.onlineBtn a {
    padding: 0 2.6666666667vw;
    font-size: 2.4vw;
    line-height: 8vw;
  }
}
li.c-navigationItem.onlineBtn:hover:after {
  opacity: 0.7;
}

li.c-navigationItem.hasMargin {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  li.c-navigationItem.hasMargin {
    margin-left: 0;
  }
}
.c-navigationItemLink {
  position: relative;
}

.c-navigationItemLink:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: #4d4d4d;
}

.c-navigationButton {
  width: 34px;
  margin-top: 5px;
}

@media screen and (max-width: 1080px) {
  .c-navigationButton {
    width: 3.1481481481vw;
  }
}
@media screen and (max-width: 767px) {
  .c-navigationButton {
    width: 6.6666666667vw;
  }
}
.c-navigationMenuWrapper {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: calc(100vh - 50px);
  margin-left: -15px;
}

@media screen and (max-width: 767px) {
  .c-navigationMenuWrapper {
    height: 100vh;
    margin-left: 0;
  }
}
.c-navigationMenuContainer {
  padding: 8px;
  width: 384px;
  margin-left: 35px;
  background-image: url("/sc_rsc/supplement/22/image/common/menu_bg.png");
  background-size: 385px;
  background-position: top right;
  background-repeat: no-repeat;
  background-color: #fff;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .c-navigationMenuContainer {
    width: 100%;
    margin-left: 0;
    background-size: cover;
  }
}
.is-top .c-navigationMenuContainer {
  margin-left: 0;
}

.navigationFrame {
  padding: 20px;
  border: 4px solid #aea9a9;
  border-radius: 8px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .navigationFrame {
    padding: 1.6vw;
    border: 2px solid #aea9a9;
  }
}
.navigationMenuList {
  padding-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .navigationMenuList {
    padding-bottom: 4vw;
  }
}
.navigationMenuItem {
  font-size: 18px;
  letter-spacing: 0.06em;
  margin-bottom: 35px;
  margin-left: 30px;
}

@media screen and (max-width: 767px) {
  .navigationMenuItem {
    font-size: 4.2666666667vw;
    margin-left: 6.6666666667vw;
    margin-bottom: 8vw;
  }
}
.navigationMenuItem.online a {
  color: #e65550;
}

.navigationMenuClose {
  width: 25px;
  margin-bottom: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .navigationMenuClose {
    width: 6vw;
  }
}
/* ------------------------------ */
/* Common Footer */
/* ------------------------------ */
.c-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 55px;
}

@media screen and (max-width: 767px) {
  .c-container {
    padding: 0 6.6666666667vw;
  }
}
.c-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.supplementFooterWrapper {
  background: #f0efec;
  color: #6e6969;
  border-bottom: 1px solid #aea9a9;
  padding: 35px 0 25px;
}

@media screen and (max-width: 767px) {
  .supplementFooterWrapper {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .supplementFooterContainer {
    padding: 0 10.6666666667vw;
  }
}
ul.supplementFooterList {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.supplementFooterList--wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  ul.supplementFooterList {
    display: block;
  }
}
li.supplementFooterItem {
  margin-right: 25px;
  font-size: 14px;
  letter-spacing: 0.14em;
}

@media screen and (max-width: 767px) {
  li.supplementFooterItem {
    font-size: 2.9333333333vw;
    margin-right: 0;
  }
  li.supplementFooterItem:last-of-type .supplementFooterItemMain {
    border: none;
  }
}
.supplementFooterItemMain,
.supplementFooterItemSub {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .supplementFooterItemMain,
  .supplementFooterItemSub {
    padding: 5.3333333333vw 0;
    border-bottom: 1px solid #aea9a9;
    margin-bottom: 0;
  }
}
/* ------------------------------ */
/* Main */
/* ------------------------------ */
.b-main {
  position: relative;
  background-color: var(--color-white);
  min-height: 100vh;
  max-width: 768px;
  margin: 0 auto;
  padding: 60px 0 0;
  font-family: var(--font-family-sans-serif);
  font-size: var(--font-size-default);
  font-weight: 400;
  color: var(--color-txt);
  line-height: var(--line-height-default);
}
.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 {
    padding: 60px 0 10px;
  }
}

body {
  background-color: var(--color-bg1);
}

/* ------------------------------ */
/* Main Header */
/* ------------------------------ */
.b-main-header {
  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: 0 5.3333333333vw;
}
.b-main-header__kv__img {
  width: 100%;
  border-radius: 4vw;
}
.b-main-header__release {
  display: block;
  width: 80vw;
  margin: 0 auto;
}
.b-main-header__lead {
  text-align: center;
}
.b-main-header__lead__title {
  display: block;
  width: 89.3333333333vw;
  height: 11.2vw;
  margin: 0 0 2.6666666667vw;
  padding: 1.3333333333vw 0 0;
  font-size: 4.2666666667vw;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/lead-title-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.b-main-header__lead__product-name {
  display: block;
  margin: 0 0 1.3333333333vw;
  font-size: 6.4vw;
  font-weight: 700;
  text-align: center;
  color: var(--color-red);
}
.b-main-header__lead__txt {
  font-size: 4.2666666667vw;
  line-height: 1.8;
  color: var(--color-txt-thin);
}
.b-main-header__lead__txt b {
  font-weight: 700;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FCECEB));
  background: linear-gradient(transparent 60%, #FCECEB 60%);
}
@media screen and (min-width: 768px) {
  .b-main-header {
    gap: 20px;
    padding: 0px 60px;
  }
  .b-main-header__kv__img {
    border-radius: 15px;
  }
  .b-main-header__release {
    width: 360px;
  }
  .b-main-header__lead__title {
    width: 400px;
    height: 50px;
    margin: 0 auto 10px;
    padding: 8px 0 0;
    font-size: 18px;
  }
  .b-main-header__lead__product-name {
    margin: 0 0 10px;
    font-size: 30px;
  }
  .b-main-header__lead__txt {
    font-size: 18px;
  }
}

/* ------------------------------ */
/* Section */
/* ------------------------------ */
.b-section {
  padding: 16vw 5.3333333333vw;
}
.b-section__heading {
  margin: 0 0 10.6666666667vw -5.3333333333vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 0 0 5.3333333333vw;
  font-size: 6.4vw;
  font-weight: 700;
  border-bottom: 0.2666666667vw solid var(--color-txt);
}
.b-section__sub {
  margin: 16vw 0;
}
.b-section__sub__header {
  margin: 0 -5.3333333333vw 2.6666666667vw;
  padding: 14.4vw 5.3333333333vw 0;
  min-height: 73.8666666667vw;
  color: var(--color-white);
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/sub-section-header-bg.jpg);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.b-section__sub__header__heading {
  margin: 0 0 2.6666666667vw;
}
.b-section__sub__header__heading__sub {
  display: block;
  font-size: 3.7333333333vw;
  font-weight: bold;
  margin: 0 0 1.3333333333vw;
  line-height: 1.2;
}
.b-section__sub__header__heading__main {
  display: block;
  font-size: 5.3333333333vw;
  font-weight: 500;
  line-height: 1.2;
}
.b-section__sub__header__heading__main b {
  font-size: 6.4vw;
  font-weight: 700;
}
.b-section__sub__header__catch {
  margin: 0 0 1.3333333333vw;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.6;
}
.b-section__sub__header__txt {
  position: relative;
  padding: 0 17.3333333333vw 0 0;
  font-size: 3.7333333333vw;
  line-height: 1.8;
}
.b-section__sub__header__txt__img {
  position: absolute;
  bottom: -16vw;
  right: 0px;
  display: block;
  width: 35.7333333333vw;
  height: 35.7333333333vw;
  border-radius: 50%;
}
.b-section__txt {
  line-height: 1.8;
  margin: 2.6666666667vw 0;
}
.b-section__txt--small {
  font-size: 3.2vw;
}
.b-section__note {
  display: block;
  margin: 2.6666666667vw 0 0;
  font-size: 2.6666666667vw;
}
.b-section__img {
  display: block;
  width: 100%;
  margin: 2.6666666667vw 0;
  border-radius: 2.6666666667vw;
}
.b-section__btn {
  padding: 0 5.3333333333vw;
}
.b-section__btn__lead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.6666666667vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1.3333333333vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: var(--color-onlineshop);
}
.b-section__btn__lead::before, .b-section__btn__lead::after {
  content: "";
  display: block;
  width: 6.4vw;
  height: 0.2666666667vw;
  background-color: var(--color-onlineshop);
}
.b-section__btn__lead::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.b-section__btn__lead::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.b-section--gray {
  background-color: var(--color-bg2);
}
@media screen and (min-width: 768px) {
  .b-section {
    padding: 80px;
  }
  .b-section__heading {
    margin: 0 0 40px -80px;
    padding: 0 0 0 40px;
    font-size: 32px;
    border-width: 1px;
  }
  .b-section__sub {
    margin: 80px 0;
  }
  .b-section__sub__header {
    margin: 0 -80px 20px;
    padding: 120px 80px 0;
    min-height: 567px;
  }
  .b-section__sub__header__heading {
    margin: 0 0 20px;
  }
  .b-section__sub__header__heading__sub {
    font-size: 18px;
    margin: 0 0 10px;
  }
  .b-section__sub__header__heading__main {
    font-size: 32px;
  }
  .b-section__sub__header__heading__main b {
    font-size: 40px;
  }
  .b-section__sub__header__catch {
    margin: 0 0 10px;
    font-size: 36px;
  }
  .b-section__sub__header__txt {
    padding: 0 130px 0 0;
    font-size: 24px;
  }
  .b-section__sub__header__txt__img {
    bottom: -100px;
    width: 200px;
    height: 200px;
  }
  .b-section__txt {
    margin: 20px 0;
    font-size: 18px;
  }
  .b-section__txt--small {
    font-size: 14px;
  }
  .b-section__txt br {
    display: none;
  }
  .b-section__note {
    margin: 20px 0 0;
    font-size: 12px;
  }
  .b-section__img {
    margin: 20px 0;
    border-radius: 10px;
  }
  .b-section__btn {
    padding: 0 80px;
  }
  .b-section__btn__lead {
    gap: 16px;
    margin: 0 auto 10px;
    font-size: 18px;
  }
  .b-section__btn__lead::before, .b-section__btn__lead::after {
    width: 32px;
    height: 2px;
  }
}

/* ------------------------------ */
/* Section Worries */
/* ------------------------------ */
.b-section-worries {
  margin: 8vw 0 5.8666666667vw;
  padding: 0 5.3333333333vw;
}
.b-section-worries__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3333333333vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.b-section-worries__heading b {
  font-size: 5.3333333333vw;
  font-weight: 700;
  color: var(--color-red);
}
.b-section-worries__heading::before, .b-section-worries__heading::after {
  content: "";
  display: block;
  width: 6.4vw;
  height: 0.2666666667vw;
  background-color: var(--color-red);
}
.b-section-worries__heading::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.b-section-worries__heading::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.b-section-worries__list {
  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;
  padding: 8vw 4vw 12.2666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: var(--color-white);
  border-radius: 1.3333333333vw;
  background-color: var(--color-red-light);
}
.b-section-worries__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3333333333vw;
  text-shadow: 0 0 0.5333333333vw #E3A39E;
}
.b-section-worries__list__item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  margin: 1.6vw 0 0;
  width: 1.6vw;
  height: 1.6vw;
  background-color: var(--color-white);
  border-radius: 50%;
}
.b-section-worries__list::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 38.4vw;
  display: block;
  width: 12.5333333333vw;
  height: 4.2666666667vw;
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/worries-balloon-tail.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.b-section-worries__list::before {
  content: "";
  position: absolute;
  bottom: -4.8vw;
  right: 0.8vw;
  width: 26.1333333333vw;
  height: 34.1333333333vw;
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/worries-illust.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .b-section-worries {
    margin: 60px 0 40px;
    padding: 0 80px;
  }
  .b-section-worries__heading {
    gap: 8px;
    margin: 0 auto 16px;
    font-size: 20px;
  }
  .b-section-worries__heading b {
    font-size: 24px;
  }
  .b-section-worries__heading::before, .b-section-worries__heading::after {
    width: 32px;
    height: 2px;
  }
  .b-section-worries__list {
    gap: 16px;
    padding: 50px 60px 80px;
  }
  .b-section-worries__list__item {
    gap: 8px;
    font-size: 18px;
    text-shadow: 0 0 3px #E3A39E;
  }
  .b-section-worries__list__item::before {
    margin: 10px 0 0;
    width: 8px;
    height: 8px;
  }
  .b-section-worries__list::before {
    bottom: -28px;
    right: 12px;
    width: 160px;
    height: 211px;
  }
  .b-section-worries__list::after {
    width: 100px;
    height: 30px;
    left: 200px;
  }
}

/* ------------------------------ */
/* Section Research */
/* ------------------------------ */
.b-section-research {
  padding: 8vw 5.3333333333vw;
  background-color: var(--color-bg2);
}
.b-section-research__body {
  background-color: var(--color-white);
  border-radius: 2.6666666667vw;
  padding: 2.6666666667vw 2.6666666667vw 5.3333333333vw;
}
.b-section-research__heading {
  display: block;
  width: 68.8vw;
  height: 19.7333333333vw;
  margin: 0 auto;
  padding: 2.4vw 0 0;
  font-size: 4.2666666667vw;
  font-weight: 700;
  text-align: center;
  color: var(--color-red);
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/research-balloon.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.b-section-research__fig {
  margin: 0;
}
.b-section-research__fig__img {
  display: block;
  width: 57.6vw;
  margin: 0 auto 2.6666666667vw;
}
.b-section-research__fig__caption {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .b-section-research {
    padding: 60px 80px;
  }
  .b-section-research__body {
    padding: 30px 40px;
    border-radius: 10px;
  }
  .b-section-research__heading {
    width: 298px;
    height: 84px;
    margin: 0 auto;
    padding: 9px 0 0;
    font-size: 18px;
  }
  .b-section-research__fig__img {
    width: 216px;
    margin: 0 auto 10px;
  }
  .b-section-research__fig__caption {
    font-size: 10px;
  }
}

/* ------------------------------ */
/* Section User Voice */
/* ------------------------------ */
.b-section-user-voice {
  padding: 19.7333333333vw 5.3333333333vw 10.6666666667vw;
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/user-voice-bg.png);
  background-size: 4.8vw 4.8vw;
  background-repeat: repeat;
}
.b-section-user-voice__body {
  position: relative;
  padding: 5.3333333333vw;
  border: 0.5333333333vw solid var(--color-red);
  border-radius: 1.3333333333vw;
  background-color: var(--color-white);
}
.b-section-user-voice__body::before {
  content: "";
  position: absolute;
  bottom: calc(100% + 2.6666666667vw);
  left: 50%;
  width: 2.1333333333vw;
  height: 14.9333333333vw;
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/user-voice-dots.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.b-section-user-voice__heading {
  margin: 0 0 5.3333333333vw;
  color: var(--color-red);
  text-align: center;
}
.b-section-user-voice__heading__en {
  display: block;
  font-size: 6.4vw;
  font-weight: 700;
}
.b-section-user-voice__heading__jp {
  display: block;
  font-size: 3.2vw;
}
.b-section-user-voice__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: 3.7333333333vw;
  counter-reset: list-index;
}
.b-section-user-voice__list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0666666667vw;
  padding: 1.3333333333vw 4vw;
  background-color: var(--color-red-thin);
  border-radius: 1.3333333333vw;
  counter-increment: list-index;
}
.b-section-user-voice__list__item::before {
  content: "#" counter(list-index);
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-red);
}
.b-section-user-voice__note {
  display: block;
  margin: 2.6666666667vw 0 0;
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .b-section-user-voice {
    padding: 140px 80px 60px;
    background-size: 37px 37px;
  }
  .b-section-user-voice__body {
    padding: 40px;
    border: 2px solid var(--color-red);
    border-radius: 10px;
  }
  .b-section-user-voice__body::before {
    bottom: calc(100% + 14px);
    width: 16px;
    height: 112px;
  }
  .b-section-user-voice__heading {
    margin: 0 0 30px;
  }
  .b-section-user-voice__heading__en {
    font-size: 32px;
  }
  .b-section-user-voice__heading__jp {
    font-size: 16px;
  }
  .b-section-user-voice__list {
    gap: 20px;
  }
  .b-section-user-voice__list__item {
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
  }
  .b-section-user-voice__list__item::before {
    font-size: 14px;
  }
  .b-section-user-voice__note {
    margin: 20px 0 0;
    font-size: 12px;
  }
}

/* ------------------------------ */
/* Section Product */
/* ------------------------------ */
.b-section-product {
  padding: 16vw 10.6666666667vw;
}
.b-section-product__heading {
  text-align: center;
  margin: 0 0 5.3333333333vw;
}
.b-section-product__heading__sub {
  display: block;
  font-size: 3.7333333333vw;
}
.b-section-product__heading__main {
  display: block;
  font-size: 6.4vw;
  font-weight: 700;
  color: var(--color-red);
}
.b-section-product__img {
  display: block;
  width: 100%;
  margin: 0 auto 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .b-section-product {
    padding: 80px;
  }
  .b-section-product__heading {
    margin: 0 0 30px;
  }
  .b-section-product__heading__sub {
    font-size: 16px;
  }
  .b-section-product__heading__main {
    font-size: 32px;
  }
  .b-section-product__img {
    width: 400px;
    margin: 0 auto 30px;
  }
}

/* ------------------------------ */
/* 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;
  height: 12.8vw;
  border: 0.2666666667vw solid var(--color-orange);
  border-radius: 6.4vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: var(--color-orange);
}
.b-btn--small {
  font-size: 3.2vw;
  height: 10.1333333333vw;
}
.b-btn--shop {
  background-color: var(--color-onlineshop);
  color: var(--color-white);
}
.b-btn--to-top {
  margin: 13.3333333333vw 0 0;
  border: 0.5333333333vw solid var(--color-red);
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .b-btn {
    height: 60px;
    border: 1px solid var(--color-orange);
    border-radius: 30px;
    font-size: 14px;
  }
  .b-btn:hover, .b-btn:focus {
    background-color: var(--color-orange-thin);
    color: var(--color-white);
  }
  .b-btn--small {
    font-size: 12px;
    height: 38px;
  }
  .b-btn--to-top {
    margin: 50px 0 0;
    border-width: 2px;
  }
}

/* ------------------------------ */
/* Image Button */
/* ------------------------------ */
.b-img-btn {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .b-img-btn:hover, .b-img-btn:focus {
    opacity: 0.6;
  }
}

/* ------------------------------ */
/* Buttons */
/* ------------------------------ */
.b-btns {
  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-btns--footer {
  padding: 16vw 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .b-btns {
    width: 400px;
    margin: 0 auto;
    gap: 10px;
  }
  .b-btns--footer {
    width: 560px;
    padding: 80px;
  }
}

/* ------------------------------ */
/* Points */
/* ------------------------------ */
.b-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4vw;
}
.b-points__item {
  width: calc((100% - 4vw) / 2);
}
@media screen and (min-width: 768px) {
  .b-points {
    width: 420px;
    gap: 30px;
    margin: 0 auto;
  }
  .b-points__item {
    width: calc((100% - 30px) / 2);
  }
}

/* ------------------------------ */
/* Item List */
/* ------------------------------ */
.b-item-list {
  font-size: 3.7333333333vw;
}
.b-item-list__term {
  width: 100%;
  padding: 2.6666666667vw;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#E24A41), to(#F57095));
  background: linear-gradient(90deg, #E24A41 0%, #F57095 100%);
}
.b-item-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 0.2666666667vw solid var(--color-red-thin);
}
.b-item-list__items__list {
  width: 50%;
}
.b-item-list__items__list__item {
  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.1333333333vw 2.6666666667vw;
  border-left: 0.2666666667vw solid var(--color-red-thin);
  border-bottom: 0.2666666667vw solid var(--color-red-thin);
}
.b-item-list__items__list__item--emphasis {
  background-color: var(--color-gray-thin);
}
@media screen and (min-width: 768px) {
  .b-item-list {
    font-size: 14px;
  }
  .b-item-list__term {
    padding: 10px;
    font-size: 16px;
  }
  .b-item-list__items {
    border-width: 1px;
  }
  .b-item-list__items__list__item {
    padding: 8px 10px;
    border-width: 1px;
  }
}

/* ------------------------------ */
/* Comparison Table */
/* ------------------------------ */
.b-comparison-table {
  margin: 5.3333333333vw auto;
}
.b-comparison-table__caption {
  padding: 3.7333333333vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  text-align: center;
  color: var(--color-white);
  background: -webkit-gradient(linear, left top, right top, from(#E24A41), to(#F57095));
  background: linear-gradient(90deg, #E24A41 0%, #F57095 100%);
  border-top-left-radius: 2.6666666667vw;
  border-top-right-radius: 2.6666666667vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.b-comparison-table__caption b {
  font-weight: 700;
  font-size: 4.8vw;
}
.b-comparison-table__head__row__th {
  width: 50%;
}
.b-comparison-table__head__row__th:first-child {
  border-right: 0.2666666667vw solid var(--color-gray);
}
.b-comparison-table__body__title__th {
  padding: 1.3333333333vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  background: var(--color-gray);
}
.b-comparison-table__body__row__item {
  font-size: 3.2vw;
  padding: 4vw 0.8vw;
  text-align: center;
  vertical-align: middle;
  border-top: 0.2666666667vw solid var(--color-gray);
  border-bottom: 0.2666666667vw solid var(--color-gray);
}
.b-comparison-table__body__row__item__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  list-style: disc;
  text-align: left;
  padding-left: 4.2666666667vw;
  margin: 0 auto;
}
.b-comparison-table__body__row__item:first-child {
  border-right: 0.2666666667vw solid var(--color-gray);
}
@media screen and (min-width: 768px) {
  .b-comparison-table {
    margin: 40px auto;
    font-size: 16px;
  }
  .b-comparison-table__caption {
    padding: 14px;
    font-size: 20px;
  }
  .b-comparison-table__caption b {
    font-size: 24px;
  }
  .b-comparison-table__head__row__th:first-child {
    border-right: 1px solid var(--color-gray);
  }
  .b-comparison-table__body__title__th {
    padding: 5px;
    font-size: 16px;
  }
  .b-comparison-table__body__row__item {
    font-size: 14px;
    padding: 15px 20px;
    border-top: 1px solid var(--color-gray);
    border-bottom: 1px solid var(--color-gray);
  }
  .b-comparison-table__body__row__item__list {
    padding-left: 16px;
  }
  .b-comparison-table__body__row__item:first-child {
    border-right: 1px solid var(--color-gray);
  }
}

/* ------------------------------ */
/* Faq */
/* ------------------------------ */
.b-faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3333333333vw;
  margin: 0 0 2.6666666667vw;
  padding: 0 0 1.3333333333vw;
  font-size: 4.2666666667vw;
  font-weight: bold;
  border-bottom: 0.2666666667vw solid var(--color-red);
}
.b-faq__question::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 8vw;
  height: 8vw;
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/icon-question.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.b-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.0666666667vw;
  margin: 0 0 8vw;
  padding: 3.4666666667vw 5.3333333333vw 3.4666666667vw 4vw;
  font-size: 3.7333333333vw;
  line-height: 1.8;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
}
.b-faq__answer::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4.2666666667vw;
  height: 4.2666666667vw;
  margin: 1.3333333333vw 0 0;
  background-image: url(/sc_rsc/supplement/mamagenkirun/images/icon-answer.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.b-faq__answer:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .b-faq__question {
    gap: 8px;
    margin: 0 0 10px;
    padding: 0 0 5px;
    font-size: 18px;
    border-width: 1px;
  }
  .b-faq__question::before {
    width: 40px;
    height: 40px;
  }
  .b-faq__answer {
    gap: 6px;
    margin: 0 0 40px;
    padding: 13px 20px 13px 15px;
    font-size: 16px;
    border-radius: 10px;
  }
  .b-faq__answer::before {
    width: 20px;
    height: 20px;
    margin: 5px 0 0;
  }
}

/* ------------------------------ */
/* 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-under-txt {
  font-size: 2.6666666667vw;
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  .u-under-txt {
    font-size: 10px;
  }
}