/* Zen Maru Gothic */
@font-face {
  font-family: "Zen Maru Gothic";
  src: url(/sc_rsc/column/magp/assets/fonts/ZenMaruGothic-Light.woff) format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url(/sc_rsc/column/magp/assets/fonts/ZenMaruGothic-Regular.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url(/sc_rsc/column/magp/assets/fonts/ZenMaruGothic-Medium.woff) format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url(/sc_rsc/column/magp/assets/fonts/ZenMaruGothic-Bold.woff) format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Zen Maru Gothic";
  src: url(/sc_rsc/column/magp/assets/fonts/ZenMaruGothic-Black.woff) format("woff");
  font-weight: 900;
}
/* Noto Sans JP */
@font-face {
  font-family: "Noto Sans JP";
  src: url(/sc_rsc/column/magp/assets/fonts/NotoSansJP-Regular.woff) format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url(/sc_rsc/column/magp/assets/fonts/NotoSansJP-Medium.woff) format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url(/sc_rsc/column/magp/assets/fonts/NotoSansJP-Bold.woff) format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url(/sc_rsc/column/magp/assets/fonts/NotoSansJP-Black.woff) format("woff");
  font-weight: 900;
}
:root {
  --color-white: #FFF;
  --color-txt: #4D4D4D;
  --color-red: #E65550;
  --color-bg: #FFF4EC;
  --color-bg-sub: #FEFDFC;
  --color-gray1: #B7B7B6;
  --color-gray2: #B8B8B8;
  --color-gray3: #F2F2F2;
  --color-onlineshop: #f66152;
  --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;
  --font-family-default: "Zen Maru Gothic", sans-serif;
  --font-family-noto: "Noto Sans JP", sans-serif;
}

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

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

.a-slide-pop-in {
  opacity: 0;
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform-origin: left;
          transform-origin: left;
}
.a-slide-pop-in.is-active {
  -webkit-animation: slide-pop-in 0.5s ease forwards;
          animation: slide-pop-in 0.5s ease forwards;
}

.a-sway {
  -webkit-animation: sway 5s ease-in-out infinite;
          animation: sway 5s ease-in-out infinite;
}

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

@keyframes blur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0px);
            filter: blur(0px);
  }
}
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes pop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pop {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  80% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes slide-pop-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px) scale(1, 1);
            transform: translateX(20px) scale(1, 1);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1, 1);
            transform: translateX(0px) scale(1, 1);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(0.96, 1);
            transform: translateX(0px) scale(0.96, 1);
  }
  75% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1, 1);
            transform: translateX(0px) scale(1, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1, 1);
            transform: translateX(0px) scale(1, 1);
  }
}
@keyframes slide-pop-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px) scale(1, 1);
            transform: translateX(20px) scale(1, 1);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1, 1);
            transform: translateX(0px) scale(1, 1);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(0.96, 1);
            transform: translateX(0px) scale(0.96, 1);
  }
  75% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1, 1);
            transform: translateX(0px) scale(1, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) scale(1, 1);
            transform: translateX(0px) scale(1, 1);
  }
}
@-webkit-keyframes sway {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes sway {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  50% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  75% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
/* ------------------------------ */
/* Main */
/* ------------------------------ */
.b-main {
  font-family: "Zen Maru Gothic", sans-serif;
  color: var(--color-txt);
  line-height: 1.4;
}
.b-main__inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 0px 0px 8vw;
  background-color: var(--color-bg-sub);
}
.b-main img {
  max-width: 100%;
}
@media screen and ( min-width: 768px ) {
  .b-main__inner {
    padding: 0px 0px 60px;
  }
}

/* ------------------------------ */
/* Common Header */
/* ------------------------------ */
.b-common-header {
  background-color: var(--color-bg);
}
@media screen and ( min-width: 768px ) {
  .b-common-header__img {
    width: 380px;
    margin: 0px auto;
  }
}

/* ------------------------------ */
/* Breadcrumbs */
/* ------------------------------ */
.b-breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8666666667vw;
  margin: 0px 0px 5.3333333333vw;
  padding: 2.6666666667vw 5.3333333333vw;
  font-size: 2.6666666667vw;
}
.b-breadcrumbs__item__link {
  font-weight: 700;
  color: var(--color-red);
  text-decoration: none;
}
.b-breadcrumbs__item__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.8666666667vw;
  color: var(--color-gray1);
}
.b-breadcrumbs__item__text::before {
  content: "";
  display: block;
  margin: 0.5333333333vw 0px 0px;
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-image: url("/sc_rsc/column/magp/assets/article/images/breadcrumbs-arrow.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.b-breadcrumbs__item--home {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and ( min-width: 768px ) {
  .b-breadcrumbs {
    gap: 10px;
    margin: 0px 0px 30px;
    padding: 15px 30px;
    font-size: 14px;
  }
  .b-breadcrumbs__item {
    gap: 10px;
  }
  .b-breadcrumbs__item__link:hover, .b-breadcrumbs__item__link:focus {
    text-decoration: underline;
  }
  .b-breadcrumbs__item__text {
    gap: 10px;
  }
  .b-breadcrumbs__item__text::before {
    width: 12px;
    height: 12px;
    margin: 4px 0px 0px;
  }
}

/* ------------------------------ */
/* Article Header */
/* ------------------------------ */
.b-article-header {
  margin: 0px 0px 5.3333333333vw;
  padding: 0px 5.3333333333vw;
}
.b-article-header__title {
  margin: 0px 0px 5.3333333333vw;
  padding: 2.6666666667vw 0px;
  font-size: 5.8666666667vw;
  font-weight: 700;
  text-align: center;
  border-bottom: 0.8vw solid var(--color-red);
}
@media screen and ( min-width: 768px ) {
  .b-article-header {
    margin: 0px 0px 40px;
    padding: 0px 120px;
  }
  .b-article-header__title {
    margin: 0px 0px 30px;
    padding: 10px 0px;
    font-size: 28px;
    text-align: left;
    border-bottom-width: 4px;
  }
}

/* ------------------------------ */
/* Article Lead */
/* ------------------------------ */
.b-article-lead {
  margin: 0px 0px 5.3333333333vw;
  padding: 0px 5.3333333333vw;
  font-family: var(--font-family-noto);
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and ( min-width: 768px ) {
  .b-article-lead {
    margin: 0px 0px 40px;
    padding: 0px 120px;
    font-size: 18px;
  }
}

/* ------------------------------ */
/* Article Image */
/* ------------------------------ */
.b-article-img {
  width: 89.3333333333vw;
  margin: 5.3333333333vw auto;
}
@media screen and ( min-width: 768px ) {
  .b-article-img {
    margin: 30px auto;
    width: 528px;
  }
}

/* ------------------------------ */
/* Article Index */
/* ------------------------------ */
.b-article-index {
  width: 89.3333333333vw;
  margin: 5.3333333333vw auto 8vw;
  padding: 8vw 5.3333333333vw;
  font-family: var(--font-family-noto);
  background-image: url("/sc_rsc/column/magp/assets/article/images/bg-grid.png");
  background-size: 4.8vw 4.8vw;
  border-radius: 2.6666666667vw;
}
.b-article-index__title {
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-align: center;
  margin: 0px 0px 5.3333333333vw;
}
.b-article-index__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: 5.3333333333vw;
}
.b-article-index__list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  padding: 0px 0px 1.0666666667vw;
  border-bottom: 0.2666666667vw solid var(--color-gray2);
}
.b-article-index__list__item a::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4vw;
  height: 4vw;
  background-image: url("../images/icon-arrow-gray.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media screen and ( min-width: 768px ) {
  .b-article-index {
    width: 528px;
    padding: 30px 40px;
    margin: 20px auto 60px;
    background-size: 22px 22px;
    border-radius: 15px;
  }
  .b-article-index__title {
    font-size: 24px;
    margin: 0px 0px 20px;
  }
  .b-article-index__list {
    gap: 20px;
  }
  .b-article-index__list__item a {
    gap: 40px;
    font-size: 16px;
    padding: 6px 10px;
    border-bottom-width: 1px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .b-article-index__list__item a::after {
    width: 20px;
    height: 20px;
  }
  .b-article-index__list__item a:hover, .b-article-index__list__item a:focus {
    background-color: var(--color-txt);
    color: var(--color-white);
    border-radius: 10px;
  }
}

/* ------------------------------ */
/* Article Contents */
/* ------------------------------ */
.b-article-contents {
  padding: 0px 5.3333333333vw;
  font-family: var(--font-family-noto);
}
.b-article-contents section {
  margin: 0px 0px 10.6666666667vw;
}
.b-article-contents section h2 {
  margin: 0px 0px 8vw;
  padding: 4vw 2.6666666667vw;
  font-size: 5.3333333333vw;
  font-weight: 700;
  background-color: var(--color-gray3);
}
.b-article-contents section h3 {
  margin: 8vw 0px 4vw;
  padding: 2.6666666667vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  color: var(--color-red);
  border-left: 0.8vw solid var(--color-red);
}
.b-article-contents section img {
  margin: 4vw 0px;
}
.b-article-contents section p {
  margin: 4vw 0px;
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
.b-article-contents section blockquote {
  margin: 2.6666666667vw 0px;
  padding: 2.6666666667vw 5.3333333333vw;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.8;
  background-color: var(--color-bg);
  border-radius: 1.3333333333vw;
}
@media screen and ( min-width: 768px ) {
  .b-article-contents {
    padding: 0px 120px;
  }
  .b-article-contents section {
    margin: 0px 0px 80px;
  }
  .b-article-contents section h2 {
    margin: 0px 0px 30px;
    padding: 20px;
    font-size: 24px;
  }
  .b-article-contents section h3 {
    margin: 60px 0px 20px;
    padding: 10px;
    font-size: 18px;
    border-left-width: 5px;
  }
  .b-article-contents section img {
    margin: 20px 0px;
  }
  .b-article-contents section p {
    margin: 20px 0px;
    font-size: 18px;
  }
  .b-article-contents section blockquote {
    margin: 20px 0px;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 10px;
  }
}

/* ------------------------------ */
/* Article Message */
/* ------------------------------ */
.b-article-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8vw;
  width: 89.3333333333vw;
  max-width: 100%;
  margin: 10.6666666667vw auto;
  padding: 2.6666666667vw 5.3333333333vw;
  background-color: var(--color-bg);
  border-radius: 2.6666666667vw;
}
.b-article-message__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.b-article-message__img img {
  width: 24vw;
  height: 24vw;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.b-article-message__content {
  width: 100%;
}
.b-article-message__content__txt {
  font-size: 3.7333333333vw;
  font-weight: 500;
}
@media screen and ( min-width: 768px ) {
  .b-article-message {
    gap: 10px;
    width: 528px;
    margin: 60px auto;
    padding: 20px 30px;
    border-radius: 10px;
  }
  .b-article-message__img img {
    width: 120px;
    height: 120px;
  }
  .b-article-message__content__txt {
    font-size: 16px;
  }
}

/* ------------------------------ */
/* Article Footer */
/* ------------------------------ */
.b-article-footer {
  width: 89.3333333333vw;
  margin: 5.3333333333vw auto 10.6666666667vw;
}
.b-article-footer__txt {
  margin: 0px 0px 2.6666666667vw;
  font-size: 3.2vw;
}
@media screen and ( min-width: 768px ) {
  .b-article-footer {
    width: 528px;
    margin: 40px auto 60px;
  }
  .b-article-footer__txt {
    margin: 0px 0px 20px;
    font-size: 14px;
  }
}

/* ------------------------------ */
/* Common Section */
/* ------------------------------ */
.b-common-section {
  margin: 0px 0px 10.6666666667vw;
  padding: 0px 5.3333333333vw;
  font-family: var(--font-family-noto);
}
.b-common-section__heading {
  margin: 0px 0px 4vw;
  padding: 4vw 2.6666666667vw;
  font-size: 5.3333333333vw;
  font-weight: 700;
  background-color: var(--color-gray3);
}
@media screen and ( min-width: 768px ) {
  .b-common-section {
    margin: 0px 0px 60px;
    padding: 0px 120px;
  }
  .b-common-section__heading {
    margin: 0px 0px 20px;
    padding: 20px;
    font-size: 24px;
  }
}

/* ------------------------------ */
/* Products */
/* ------------------------------ */
.b-products .pgprod-item .pgprod-img {
  width: 53.3333333333vw;
  max-width: 100%;
  margin: 0px auto;
}
.b-products .pgprod-item .pgprod-title {
  font-size: 3.7333333333vw;
  color: var(--color-txt);
}
@media screen and ( min-width: 768px ) {
  .b-products .pgprod-item {
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .b-products .pgprod-item .pgprod-img img {
    border-radius: 5px;
  }
  .b-products .pgprod-item .pgprod-title {
    font-size: 14px;
  }
  .b-products .pgprod-item:hover, .b-products .pgprod-item:focus {
    background-color: var(--color-red);
  }
  .b-products .pgprod-item:hover .pgprod-title, .b-products .pgprod-item:focus .pgprod-title {
    color: var(--color-white);
  }
}

/* ------------------------------ */
/* Related */
/* ------------------------------ */
.b-related .pgrel li .item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.b-related .pgrel li .item .pic {
  width: 26.6666666667vw;
}
.b-related .pgrel li .item .text .title {
  font-size: 3.2vw;
  color: var(--color-txt);
}
@media screen and ( min-width: 768px ) {
  .b-related .pgrel li {
    width: 100%;
    border-top: 1px solid #F2F2F2;
  }
  .b-related .pgrel li a {
    border: none;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .b-related .pgrel li a:hover, .b-related .pgrel li a:focus {
    background-color: var(--color-red);
  }
  .b-related .pgrel li a:hover .text .title, .b-related .pgrel li a:focus .text .title {
    color: var(--color-white);
  }
  .b-related .pgrel li .item .pic {
    width: 120px;
  }
  .b-related .pgrel li .item .text .title {
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}

/* ------------------------------ */
/* Articles */
/* ------------------------------ */
.b-articles {
  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;
}
.b-articles__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2.6666666667vw;
  padding: 2.6666666667vw 5.3333333333vw;
  background-color: var(--color-white);
  border-radius: 1.3333333333vw;
}
.b-articles__item__link__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 21.3333333333vw;
  height: 21.3333333333vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.b-articles__item__link__content {
  width: 100%;
}
.b-articles__item__link__content__title {
  font-size: 3.7333333333vw;
  font-weight: 700;
  margin: 0px 0px 2.6666666667vw;
}
.b-articles__item__link__content__btn {
  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;
  height: 6.4vw;
  width: 42.6666666667vw;
  margin: 0px 0px 0px auto;
  padding: 0px 4vw;
  font-size: 3.2vw;
  font-weight: 700;
  color: var(--color-red);
  border-bottom: 0.2666666667vw solid var(--color-red);
}
.b-articles__item__link__content__btn::after {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 4vw;
  height: 4vw;
  background-image: url("/sc_rsc/column/magp/assets/images/icon-arrow-red.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.b-articles__item--related {
  border-bottom: 0.2666666667vw solid #F2F2F2;
}
.b-articles__item--related .b-articles__item__link {
  padding-left: 0px;
  padding-right: 0px;
}
@media screen and ( min-width: 768px ) {
  .b-articles {
    gap: 20px;
  }
  .b-articles__item__link {
    gap: 20px;
    padding: 15px 30px;
    border-radius: 10px;
  }
  .b-articles__item__link__thumb {
    width: 100px;
    height: 100px;
  }
  .b-articles__item__link__thumb img {
    border-radius: 5px;
  }
  .b-articles__item__link__content__title {
    font-size: 16px;
    margin: 0px 0px 15px;
  }
  .b-articles__item__link__content__btn {
    height: 30px;
    width: 200px;
    padding: 0px 20px;
    font-size: 14px;
    border-width: 2px;
  }
  .b-articles__item__link__content__btn::after {
    width: 20px;
    height: 20px;
  }
  .b-articles__item__link:hover, .b-articles__item__link:focus {
    background-color: var(--color-red);
  }
  .b-articles__item__link:hover .b-articles__item__link__content__title, .b-articles__item__link:hover .b-articles__item__link__content__btn, .b-articles__item__link:focus .b-articles__item__link__content__title, .b-articles__item__link:focus .b-articles__item__link__content__btn {
    color: var(--color-white);
  }
  .b-articles__item__link:hover .b-articles__item__link__content__btn, .b-articles__item__link:focus .b-articles__item__link__content__btn {
    border-color: var(--color-white);
    -webkit-animation: pop 0.3s ease-in-out;
            animation: pop 0.3s ease-in-out;
  }
  .b-articles__item__link:hover .b-articles__item__link__content__btn::after, .b-articles__item__link:focus .b-articles__item__link__content__btn::after {
    background-image: url("/sc_rsc/column/magp/assets/images/icon-arrow-white.svg");
  }
  .b-articles__item--related {
    border-width: 2px;
  }
  .b-articles__item--related .b-articles__item__link {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* ------------------------------ */
/* SNS Share */
/* ------------------------------ */
.b-sns-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 2.6666666667vw;
}
.b-sns-share__item__link {
  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;
  gap: 0.5333333333vw;
  width: 16.5333333333vw;
}
.b-sns-share__item__link__icon {
  width: 9.3333333333vw;
  height: 9.3333333333vw;
}
.b-sns-share__item__link__txt {
  font-size: 2.6666666667vw;
  font-weight: 700;
}
@media screen and ( min-width: 768px ) {
  .b-sns-share {
    gap: 10px;
  }
  .b-sns-share__item__link {
    gap: 4px;
    width: 80px;
  }
  .b-sns-share__item__link__icon {
    width: 50px;
    height: 50px;
  }
  .b-sns-share__item__link__txt {
    font-size: 12px;
  }
  .b-sns-share__item__link:hover .b-sns-share__item__link__icon, .b-sns-share__item__link:focus .b-sns-share__item__link__icon {
    -webkit-animation: pop 0.2s ease-in-out forwards;
            animation: pop 0.2s ease-in-out forwards;
    opacity: 0.8;
  }
}

/* ------------------------------ */
/* Banner */
/* ------------------------------ */
.b-banner {
  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: 89.3333333333vw;
  margin: 5.3333333333vw auto;
}
@media screen and ( min-width: 768px ) {
  .b-banner {
    gap: 20px;
    margin: 40px auto;
    width: 420px;
  }
  .b-banner a img {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .b-banner a img:hover, .b-banner a img:focus {
    opacity: 0.8;
    -webkit-animation: pop 0.3s ease-in-out forwards;
            animation: pop 0.3s ease-in-out forwards;
  }
}

/* ------------------------------ */
/* Back to Top Button */
/* ------------------------------ */
.b-back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 100;
  display: none;
}
.b-back-to-top__icon {
  width: 48px;
  height: 48px;
}

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

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

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

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

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

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

/* margin */
.u-margin--btm--0 {
  margin-bottom: 0px;
}
.u-margin--btm--10 {
  margin-bottom: 10px;
}
.u-margin--btm--20 {
  margin-bottom: 20px;
}
.u-margin--btm--30 {
  margin-bottom: 30px;
}
.u-margin--btm--40 {
  margin-bottom: 40px;
}
.u-margin--btm--50 {
  margin-bottom: 50px;
}
.u-margin--btm--60 {
  margin-bottom: 60px;
}
.u-margin--btm--70 {
  margin-bottom: 70px;
}
.u-margin--btm--80 {
  margin-bottom: 80px;
}
.u-margin--btm--90 {
  margin-bottom: 90px;
}
.u-margin--btm--100 {
  margin-bottom: 100px;
}
.u-margin--btm--110 {
  margin-bottom: 110px;
}
.u-margin--btm--120 {
  margin-bottom: 120px;
}
.u-margin--btm--130 {
  margin-bottom: 130px;
}
.u-margin--btm--140 {
  margin-bottom: 140px;
}
.u-margin--btm--150 {
  margin-bottom: 150px;
}
.u-margin--btm--160 {
  margin-bottom: 160px;
}
.u-margin--btm--170 {
  margin-bottom: 170px;
}
.u-margin--btm--180 {
  margin-bottom: 180px;
}
.u-margin--btm--190 {
  margin-bottom: 190px;
}
.u-margin--btm--200 {
  margin-bottom: 200px;
}
.u-margin--top--0 {
  margin-top: 0px;
}
.u-margin--top--10 {
  margin-top: 10px;
}
.u-margin--top--20 {
  margin-top: 20px;
}
.u-margin--top--30 {
  margin-top: 30px;
}
.u-margin--top--40 {
  margin-top: 40px;
}
.u-margin--top--50 {
  margin-top: 50px;
}
.u-margin--top--60 {
  margin-top: 60px;
}
.u-margin--top--70 {
  margin-top: 70px;
}
.u-margin--top--80 {
  margin-top: 80px;
}
.u-margin--top--90 {
  margin-top: 90px;
}
.u-margin--top--100 {
  margin-top: 100px;
}
.u-margin--top--110 {
  margin-top: 110px;
}
.u-margin--top--120 {
  margin-top: 120px;
}
.u-margin--top--130 {
  margin-top: 130px;
}
.u-margin--top--140 {
  margin-top: 140px;
}
.u-margin--top--150 {
  margin-top: 150px;
}
.u-margin--top--160 {
  margin-top: 160px;
}
.u-margin--top--170 {
  margin-top: 170px;
}
.u-margin--top--180 {
  margin-top: 180px;
}
.u-margin--top--190 {
  margin-top: 190px;
}
.u-margin--top--200 {
  margin-top: 200px;
}
@media screen and ( max-width: 767px ) {
  .u-margin--btm--md-down--0 {
    margin-bottom: 0px;
  }
  .u-margin--btm--md-down--10 {
    margin-bottom: 10px;
  }
  .u-margin--btm--md-down--20 {
    margin-bottom: 20px;
  }
  .u-margin--btm--md-down--30 {
    margin-bottom: 30px;
  }
  .u-margin--btm--md-down--40 {
    margin-bottom: 40px;
  }
  .u-margin--btm--md-down--50 {
    margin-bottom: 50px;
  }
  .u-margin--btm--md-down--60 {
    margin-bottom: 60px;
  }
  .u-margin--btm--md-down--70 {
    margin-bottom: 70px;
  }
  .u-margin--btm--md-down--80 {
    margin-bottom: 80px;
  }
  .u-margin--btm--md-down--90 {
    margin-bottom: 90px;
  }
  .u-margin--btm--md-down--100 {
    margin-bottom: 100px;
  }
  .u-margin--btm--md-down--110 {
    margin-bottom: 110px;
  }
  .u-margin--btm--md-down--120 {
    margin-bottom: 120px;
  }
  .u-margin--btm--md-down--130 {
    margin-bottom: 130px;
  }
  .u-margin--btm--md-down--140 {
    margin-bottom: 140px;
  }
  .u-margin--btm--md-down--150 {
    margin-bottom: 150px;
  }
  .u-margin--btm--md-down--160 {
    margin-bottom: 160px;
  }
  .u-margin--btm--md-down--170 {
    margin-bottom: 170px;
  }
  .u-margin--btm--md-down--180 {
    margin-bottom: 180px;
  }
  .u-margin--btm--md-down--190 {
    margin-bottom: 190px;
  }
  .u-margin--btm--md-down--200 {
    margin-bottom: 200px;
  }
}
@media screen and ( max-width: 767px ) {
  .u-margin--top--md-down--0 {
    margin-top: 0px;
  }
  .u-margin--top--md-down--10 {
    margin-top: 10px;
  }
  .u-margin--top--md-down--20 {
    margin-top: 20px;
  }
  .u-margin--top--md-down--30 {
    margin-top: 30px;
  }
  .u-margin--top--md-down--40 {
    margin-top: 40px;
  }
  .u-margin--top--md-down--50 {
    margin-top: 50px;
  }
  .u-margin--top--md-down--60 {
    margin-top: 60px;
  }
  .u-margin--top--md-down--70 {
    margin-top: 70px;
  }
  .u-margin--top--md-down--80 {
    margin-top: 80px;
  }
  .u-margin--top--md-down--90 {
    margin-top: 90px;
  }
  .u-margin--top--md-down--100 {
    margin-top: 100px;
  }
  .u-margin--top--md-down--110 {
    margin-top: 110px;
  }
  .u-margin--top--md-down--120 {
    margin-top: 120px;
  }
  .u-margin--top--md-down--130 {
    margin-top: 130px;
  }
  .u-margin--top--md-down--140 {
    margin-top: 140px;
  }
  .u-margin--top--md-down--150 {
    margin-top: 150px;
  }
  .u-margin--top--md-down--160 {
    margin-top: 160px;
  }
  .u-margin--top--md-down--170 {
    margin-top: 170px;
  }
  .u-margin--top--md-down--180 {
    margin-top: 180px;
  }
  .u-margin--top--md-down--190 {
    margin-top: 190px;
  }
  .u-margin--top--md-down--200 {
    margin-top: 200px;
  }
}

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