@charset "UTF-8";
/* Josefin */
/* Comfortaa */
/*Roboto*/
/*
@font-face {
  font-family: 'NotoSansCJKjp-Medium';
  src: url("/static/font/NotoSansCJKjp-Medium.ttf");
  src: url("/static/font/NotoSansCJKjp-Medium.woff");
}

@font-face {
  font-family: 'NotoSansCJKjp-Regular';
  src: url("/static/font/NotoSansCJKjp-Regular.ttf");
  src: url("/static/font/NotoSansCJKjp-Regular.woff");
}

@font-face {
  font-family: 'NotoSansCJKjp-Bold';
  src: url("/static/font/NotoSansCJKjp-Bold.ttf");
  src: url("/static/font/NotoSansCJKjp-Bold.woff");
}
*/
/**
 * Eric Meyer's Reset CSS v2.0 (https://meyerweb.com/eric/tools/css/reset/)
 * https://cssreset.com
 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
}

/*
 * Make html take up the entire screen
 * Then set touch-action to avoid touch delay on mobile IE
 */
html {
  width: 100%;
  height: 100%;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

html,
body,
button {
  /* フォントレンダリング設定: 1x解像度ではsubpixel、2x以上の解像度ではgrayscale */
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  html,
  body,
  button {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

body {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome, body {
    font-feature-settings: "pkna";
  }
}

::selection {
  background: #333;
  text-shadow: none;
}

::-moz-selection {
  color: #fff;
  background: #333;
}

/* ==========
フッター
============*/
#l-footer {
  width: 100%;
}

.footer {
  width: 100%;
  position: relative;
}

.footer .forSp {
  display: none;
}

.footer .bread {
  background-color: #f6f6f6;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}

.footer .footer-nav {
  padding: 0 58px;
  box-sizing: border-box;
}

.footer .items {
  padding: 72px 0 64px;
  box-sizing: border-box;
  justify-content: flex-start;
  display: flex;
}

.footer .items-lead {
  line-height: 1;
  margin: -3px 34px 0 0;
}

.footer .items-lead a {
  display: block;
  color: #000;
}

.footer .list-flex {
  display: flex;
}

.footer .items-list {
  display: flex;
  position: relative;
  left: 40px;
}

.footer .items-list .items-list-box p {
  font-size: 13px;
  line-height: 1;
  margin: 0 0 20px;
  position: relative;
  left: -12px;
}

.footer .items-list .items-list-box ul {
  margin: 0 30px 0 0;
}

.footer .items-list .items-list-box ul:last-child {
  margin: 0 70px 0 0;
}

.footer .items-list .items-list-box ul li {
  line-height: 1;
  margin: 0 0 24px 0;
}

.footer .items-list .items-list-box ul li.is-hover a:hover {
  color: #d6000d;
}

.footer .items-list .items-list-box ul li.is-hover a:hover:after {
  transform-origin: left top;
  transform: scale(1, 1);
  -webkit-transition: transform;
  -moz-transition: transform;
  -ms-transition: transform;
  transition: transform;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
}

.footer .items-list .items-list-box ul li.is-hover a:hover:before {
  background-color: #d6000d;
}

.footer .items-list .items-list-box ul li:last-child {
  margin: 0;
}

.footer .items-list .items-list-box ul li a {
  font-size: 12px;
  color: #000;
  padding: 0 0 3px 0;
  box-sizing: border-box;
  position: relative;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.footer .items-list .items-list-box ul li a:after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #d6000d;
  transform-origin: right top;
  transform: scale(0, 1);
  -webkit-transition: transform;
  -moz-transition: transform;
  -ms-transition: transform;
  transition: transform;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
}

.footer .items-list .items-list-box ul li a:before {
  content: "";
  width: 4px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: -10px;
  margin: auto;
  background-color: #000;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.footer .footer-bottom {
  background-color: #d6000d;
}

.footer .footer-bottom-inner {
  padding: 58px;
  box-sizing: border-box;
  position: relative;
}

.footer .footer-bottom-inner .bottom-text p {
  margin: 0 0 18px 0;
  font-size: 10px;
  color: #FFF;
  line-height: 1;
}

.footer .footer-bottom-inner .bottom-items {
  margin-left: auto;
}

.footer .footer-bottom-inner .bottom-items ul {
  margin: 0 0 34px 0;
}

.footer .footer-bottom-inner .bottom-items ul:last-child {
  margin: 0;
}

.footer .footer-bottom-inner .bottom-items ul li {
  line-height: 1;
  margin: 0 40px 0 0;
}

.footer .footer-bottom-inner .bottom-items ul li.is-hover a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
  -webkit-transition: transform;
  -moz-transition: transform;
  -ms-transition: transform;
  transition: transform;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
}

.footer .footer-bottom-inner .bottom-items ul li:last-child {
  margin: 0;
}

.footer .footer-bottom-inner .bottom-items ul li a {
  font-size: 12px;
  color: #fff;
  position: relative;
  padding: 0 0 3px 0;
  box-sizing: border-box;
}

.footer .footer-bottom-inner .bottom-items ul li a:before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #FFF;
  transform-origin: right top;
  transform: scale(0, 1);
  -webkit-transition: transform;
  -moz-transition: transform;
  -ms-transition: transform;
  transition: transform;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
}

.footer .footer-bottom-inner .bottom-items .search_dummy {
  display: block;
  width: 240px;
}

.footer .footer-bottom-inner .bottom-items .search_dummy img {
  width: 100%;
}

@media screen and (max-width: 749px) {
  .footer {
    width: 100%;
    position: relative;
  }
  .footer .forSp {
    display: block;
  }
  .footer .footer-nav {
    padding: 0 20px;
    min-width: 100%;
  }
  .footer .items-lead {
    margin: 0px 0px 29px 0;
  }
  .footer .list-flex {
    display: block;
  }
  .footer .items {
    padding: 60px 0;
    display: block;
  }
  .footer .items-list {
    width: 100%;
    display: flex;
    left: 0;
  }
  .footer .items-list .items-list-box {
    width: 50%;
    padding: 0 0 0 16px;
    box-sizing: border-box;
  }
  .footer .items-list .items-list-box p {
    font-size: 11px;
    margin: 0 0 15px;
    min-height: 30px;
    line-height: 1.4;
    left: -11px;
  }
  .footer .items-list .items-list-box ul {
    margin: 0 0 6px 0;
  }
  .footer .items-list .items-list-box ul:last-child {
    margin: 0;
  }
  .footer .items-list .items-list-box ul li {
    width: 100%;
    margin: 0 0 6px 0;
    min-height: 31px;
  }
  .footer .items-list .items-list-box ul li:last-child {
    margin: 0;
  }
  .footer .items-list .items-list-box ul li a {
    font-size: 10px;
    padding: 0;
  }
  .footer .items-list .items-list-box ul li a:before {
    width: 4px;
    height: 2px;
    top: 8px;
    left: -10px;
    bottom: auto;
    margin: auto;
  }
  .footer .footer-bottom-inner {
    min-width: 100%;
    padding: 55px 20px;
  }
  .footer .footer-bottom-inner .bottom-text p {
    margin: 0 0 18px 0;
    font-size: 10px;
    line-height: 1.2;
  }
  .footer .footer-bottom-inner .bottom-items {
    margin: 10px 0 0 auto;
  }
  .footer .footer-bottom-inner .bottom-items ul {
    margin: 0 0 0px 0;
    line-height: 1;
  }
  .footer .footer-bottom-inner .bottom-items ul li {
    display: inline-block;
    margin: 0 25px 25px 0;
  }
  .footer .footer-bottom-inner .bottom-items ul li:last-child {
    margin: 0 0px 25px 0;
  }
  .footer .footer-bottom-inner .bottom-items ul li a {
    font-size: 10px;
    color: #fff;
    padding: 0 0 0 20px;
    box-sizing: border-box;
    position: relative;
  }
  .footer .footer-bottom-inner .bottom-items ul li a:before {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFF;
  }
  .footer .footer-bottom-inner .bottom-items ul li a:after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background: url("/static/image/common/ico_fmenu.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
}

/**
 * Swiper 4.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 22, 2019
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* ==========

global setting

============*/
body,
html {
  width: 100%;
  position: relative;
  font-family: "Noto Sans TC";
  letter-spacing: 0em;
  line-height: 1.8;
}

sup {
  vertical-align: super;
}

#l-main {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

#app {
  width: 100%;
  max-width: 1600px;
  margin: auto;
  position: relative;
}

.content {
  position: relative;
  width: 100%;
  padding: 0 100px;
  box-sizing: border-box;
}

.content.content-top {
  padding: 0 !important;
}

.swiper-wrapper {
  left: 29% !important;
  text-align: center !important;
}

.flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inner-table {
  height: 100%;
  display: table;
}

.l-center {
  margin: auto;
}

.l-left {
  margin-left: auto;
}

.l-right {
  margin-right: auto;
}

.l-grid-1 {
  width: 400px;
}

.l-grid-2 {
  width: 45%;
}

.l-grid-3 {
  width: 252px;
}

.l-grid-4 {
  width: 320px;
  padding: 30px 0 0;
}

.l-grid-5 {
  width: 230px;
}

.l-grid-6 {
  width: 250px;
}

.l-grid-7 {
  width: 490px;
}

.theme-background-1 {
  background-color: #FFF !important;
}

.theme-color-1 {
  color: #000 !important;
}

.btn {
  width: 100%;
  display: block;
  margin: auto;
  background-color: #d6000d;
  position: relative;
  box-sizing: border-box;
}

.btn.is-hover-red:hover:before {
  background-color: #c0010b;
  -webkit-animation-name: hoverLineOff;
  -moz-animation-name: hoverLineOff;
  -ms-animation-name: hoverLineOff;
  animation-name: hoverLineOff;
  -webkit-animation-duration: 0.6s;
  -ms-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -o-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -webkit-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -ms-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
}

.btn.is-hover-red:hover a .ico2 > span {
  -webkit-animation-name: hoverArrowToRight;
  -moz-animation-name: hoverArrowToRight;
  -ms-animation-name: hoverArrowToRight;
  animation-name: hoverArrowToRight;
  -webkit-animation-duration: 1.2s;
  -ms-animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -o-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -ms-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
}

.btn.is-hover-red:hover a .ico1 {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.btn.is-hover-gray:hover:before {
  background-color: #f6f6f6;
  -webkit-animation-name: hoverLineOff;
  -moz-animation-name: hoverLineOff;
  -ms-animation-name: hoverLineOff;
  animation-name: hoverLineOff;
  -webkit-animation-duration: 0.6s;
  -ms-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -o-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -webkit-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -ms-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
}

.btn.is-hover-gray:hover a .ico3 > span {
  -webkit-animation-name: hoverArrowToRight;
  -moz-animation-name: hoverArrowToRight;
  -ms-animation-name: hoverArrowToRight;
  animation-name: hoverArrowToRight;
  -webkit-animation-duration: 1.2s;
  -ms-animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -o-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -ms-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
}

.btn:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

.btn a {
  width: 100%;
  display: inline-block;
  font-size: 15px;
  color: #FFF;
  text-align: center;
  line-height: 1;
  padding: 30px 0;
  position: relative;
  z-index: 1;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn a .ico1 {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  -webkit-transition-duration: 0.3s;
  -ms-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
  -ms-transition-delay: 0s;
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -moz-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  -ms-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

.btn a .ico1:before {
  content: "";
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #FFF;
}

.btn a .ico1:after {
  content: "";
  width: 2px;
  height: 12px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #FFF;
}

.btn a .ico2 {
  width: 16px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.btn a .ico2 > span {
  width: 16px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  margin: auto;
}

.btn a .ico2 > span:before {
  content: "";
  width: 11px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #FFF;
}

.btn a .ico2 > span:after {
  content: "";
  width: 8px;
  height: 8px;
  right: -3px;
  margin-right: auto;
  position: absolute;
  box-sizing: border-box;
  border: 4px solid transparent;
  border-left: 6px solid #FFF;
}

.btn a .ico3 {
  width: 16px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.btn a .ico3 > span {
  width: 16px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  margin: auto;
}

.btn a .ico3 > span:before {
  content: "";
  width: 11px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #000;
}

.btn a .ico3 > span:after {
  content: "";
  width: 8px;
  height: 8px;
  right: -3x;
  margin-right: auto;
  position: absolute;
  box-sizing: border-box;
  border: 4px solid transparent;
  border-left: 6px solid #000;
}

@keyframes hoverLineOff {
  0% {
    transform-origin: left;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
  60% {
    transform-origin: left;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
  61% {
    transform-origin: right;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
  100% {
    transform-origin: right;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
}

.linkto {
  width: 100%;
  display: block;
  position: relative;
}

.linkto.is-hover:hover a .ico > span {
  -webkit-animation-name: hoverArrowToRight;
  -moz-animation-name: hoverArrowToRight;
  -ms-animation-name: hoverArrowToRight;
  animation-name: hoverArrowToRight;
  -webkit-animation-duration: 1.2s;
  -ms-animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -o-animation-duration: 1.2s;
  animation-duration: 1.2s;
  -webkit-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -webkit-animation-iteration-count: infinite;
  -ms-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: normal;
  -ms-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
}

.linkto.is-hover:hover:before {
  -webkit-animation-name: hoverLineToRight;
  -moz-animation-name: hoverLineToRight;
  -ms-animation-name: hoverLineToRight;
  animation-name: hoverLineToRight;
  -webkit-animation-duration: 0.7s;
  -ms-animation-duration: 0.7s;
  -moz-animation-duration: 0.7s;
  -o-animation-duration: 0.7s;
  animation-duration: 0.7s;
  -webkit-animation-delay: 0s;
  -ms-animation-delay: 0s;
  -moz-animation-delay: 0s;
  -o-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  animation-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -webkit-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-direction: normal;
  -ms-animation-direction: normal;
  -moz-animation-direction: normal;
  -o-animation-direction: normal;
  animation-direction: normal;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
}

.linkto:before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: 0;
  background-color: #000;
}

.linkto a {
  display: block;
  padding: 24px 0;
  color: #000;
  box-sizing: border-box;
  position: relative;
}

.linkto a .ico {
  width: 16px;
  height: 8px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  margin: auto;
  overflow: hidden;
}

.linkto a .ico > span {
  width: 100%;
  height: 8px;
  position: absolute;
  display: block;
}

.linkto a .ico > span:before {
  content: "";
  width: 11px;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0px;
  bottom: 0;
  margin: auto;
  background-color: #000;
}

.linkto a .ico > span:after {
  content: "";
  width: 8px;
  height: 8px;
  right: -4px;
  margin-right: auto;
  position: absolute;
  box-sizing: border-box;
  border: 4px solid transparent;
  border-left: 6px solid #000;
}

@keyframes hoverLineToRight {
  0% {
    transform-origin: right;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
  40% {
    transform-origin: right;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
  41% {
    transform-origin: left;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
  }
  100% {
    transform-origin: left;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
  }
}

@keyframes hoverArrowToRight {
  0% {
    transform-origin: right;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  25% {
    transform-origin: right;
    -webkit-transform: translateX(16px);
    -moz-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
  }
  26% {
    transform-origin: left;
    -webkit-transform: translateX(-16px);
    -moz-transform: translateX(-16px);
    -ms-transform: translateX(-16px);
    transform: translateX(-16px);
  }
  48% {
    transform-origin: left;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    transform-origin: left;
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.l-modal {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
}

.l-modal.is-active {
  visibility: visible;
}

.l-modal.is-active .modal {
  -webkit-transition-duration: 0.4s;
  -ms-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s;
  -o-transition-duration: 0.4s;
  transition-duration: 0.4s;
  -webkit-transition-delay: 0.1s;
  -ms-transition-delay: 0.1s;
  -moz-transition-delay: 0.1s;
  -o-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -moz-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  -ms-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  opacity: 1;
}

.l-modal .modal {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
}

.l-modal .modal-close {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  right: -38px;
  border-radius: 50%;
  z-index: 1;
  background-color: #d6000d;
}

.l-modal .modal-close a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-modal .modal-close a:before {
  content: "";
  width: 30px;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #FFF;
}

.l-modal .modal-close a:after {
  content: "";
  width: 3px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #FFF;
}

#l-mask {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

#l-mask.is-active {
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

#l-mask.is-active:before {
  -webkit-transition-duration: 1s;
  -ms-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  -webkit-transition-delay: 0.4s;
  -ms-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -moz-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -ms-transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  transition-timing-function: cubic-bezier(0.68, 0, 0, 1);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
}

#l-mask:before {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: right;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
}

@media screen and (max-width: 749px) {
  #l-main {
    width: 100%;
    position: relative;
    margin: 0 auto;
  }
  #app {
    width: 100%;
    max-width: 100%;
    margin: auto;
    position: relative;
  }
  .content {
    position: relative;
    width: 100%;
    min-width: 320px;
    padding: 0 5%;
    box-sizing: border-box;
  }
  .content.content-top {
    padding: 0 !important;
  }
  .swiper-wrapper {
    left: auto !important;
  }
  .l-grid-1 {
    width: 100%;
  }
  .l-grid-2 {
    width: 100%;
    margin: 0 0 28px;
  }
  .l-grid-3 {
    width: 190px;
  }
  .l-grid-4 {
    width: 70%;
    padding: 0px 0 0;
  }
  .l-grid-5 {
    width: 100%;
  }
  .l-grid-6 {
    width: 100%;
  }
  .btn {
    width: 100%;
    margin: auto;
  }
  .btn a {
    font-size: 13px;
    padding: 23px 0;
  }
  .btn a .ico3:before {
    background-color: #FFF;
  }
  .btn a .ico3:after {
    border-left: 6px solid #FFF;
  }
  .linkto a {
    padding: 20px 0;
    font-size: 12px;
  }
  .linkto a .ico {
    width: 16px;
    height: 8px;
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0;
    margin: auto;
  }
  .l-modal .modal-close {
    width: 40px;
    height: 40px;
    top: -50px;
    right: 0px;
  }
  .l-modal .modal-close a {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .l-modal .modal-close a:before {
    width: 15px;
    height: 2px;
  }
  .l-modal .modal-close a:after {
    width: 2px;
    height: 15px;
  }
}

/* ==========
パンくず
============*/
.bread {
  width: 100%;
  position: relative;
  bottom: 0;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
  background-color: #f6f6f6;
  padding: 0 60px;
  box-sizing: border-box;
}

.bread ul {
  display: flex;
}

.bread ul li {
  font-size: 12px;
  line-height: 1;
  padding: 24px 36px 24px 0;
  box-sizing: border-box;
}

.bread ul li a {
  display: block;
  position: relative;
  line-height: 1;
  color: #000;
}

.bread ul li a:before {
  content: "";
  width: 1px;
  height: 13px;
  position: absolute;
  top: 0;
  right: -18px;
  background-color: #dbdbdb;
  -webkit-transform: rotate(14deg);
  -moz-transform: rotate(14deg);
  -ms-transform: rotate(14deg);
  transform: rotate(14deg);
}

.bread ul li:last-child a {
  color: #dbdbdb;
  pointer-events: none;
}

.bread ul li:last-child a:before {
  content: none;
}

@media screen and (max-width: 749px) {
  .bread {
    padding: 0 20px;
  }
  .bread ul li {
    font-size: 11px;
    padding: 20px 30px 20px 0;
  }
  .bread ul li a:before {
    right: -16px;
  }
}

/* ==========
バナー
============*/
.banner {
  width: 100%;
  margin: 115px auto;
  position: relative;
}

.banner a {
  display: block;
}

.banner a img {
  width: 100%;
  vertical-align: bottom;
}

.banner a p {
  margin: 0px 0 0;
  padding: 0 0 3px;
  font-size: 13px;
  box-sizing: border-box;
  line-height: 1;
  color: #000;
  display: inline-block;
}

.banner a .banner-text {
  width: 58%;
  margin-right: auto !important;
}

.banner .banner-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.banner .banner-list > div {
  width: 45%;
  margin: auto;
}

@media screen and (max-width: 749px) {
  .banner {
    margin: 50px auto;
  }
  .banner .banner-list {
    display: block;
  }
  .banner .banner-list > div {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 24px;
  }
  .banner a p {
    font-size: 13px;
  }
  .banner a .banner-text {
    width: 100%;
  }
}

#fursultiamine {
  padding: 0px 0 0;
  font-size: 16px;
  font-family: "Noto Sans TC";
  color: #000;
}

.tk-st-Content #fursultiamine sub {
    font-size: smaller;
    vertical-align: baseline;
    line-height: 1em;
}

#fursultiamine .content {
  padding: 0 130px !important;
}

#fursultiamine .theme-color {
  color: #d6000d;
}

#fursultiamine .forSp {
  display: none;
}

#fursultiamine .forPc {
  display: block;
}

#fursultiamine .promkeyV {
  width: 100%;
  position: relative;
  text-align: center;
  margin: auto;
}

#fursultiamine .promkeyV .promkeyV-bg {
  width: 100%;
  height: 400px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#fursultiamine .promkeyV .promkeyV-text {
  margin: 90px auto 100px;
  position: relative;
}

#fursultiamine .promkeyV .promkeyV-text > p {
  font-size: 20px;
  margin: 0 0 60px;
  line-height: 1.7;
}

#fursultiamine .promkeyV .promkeyV-text > p > span {
  color: #d6000d;
}

#fursultiamine section {
  margin: 0px 0 200px;
}

#fursultiamine section.sec8 {
  margin: 0px 0 100px;
  padding: 0 0 100px;
}

#fursultiamine section .sec-lead {
  font-size: 32px;
  color: #d6000d;
  padding: 0px 0 18px 0px;
  margin: 0 0 24px;
  box-sizing: border-box;
  line-height: 1;
  border-bottom: 3px solid #d6000d;
}

#fursultiamine section.sec3 .sec-box-img {
  width: 85%;
  text-align: right;
}

#fursultiamine section.sec3 .sec-box-img img {
  padding: 30px 0 0 30px;
}

#fursultiamine section.sec4 .sec-box-img {
  width: 38%;
  text-align: right;
}

#fursultiamine section.sec4 .sec-box-img img {
  padding: 30px 0 0 30px;
}

#fursultiamine section.sec6 .sec-box-img {
  width: 100%;
  text-align: right;
}

#fursultiamine section.sec6 .sec-box-img img {
  padding: 30px 0 0 30px;
}

#fursultiamine section .sec-box.is-flex {
  display: flex;
}

#fursultiamine section .sec-box .sec-box-img img {
  width: 100%;
  box-sizing: border-box;
}

#fursultiamine section .sec-box .sec-box-list {
  margin: 0 0 36px;
}

#fursultiamine section .sec-box .sec-box-list li {
  font-size: 33px;
  color: #d6000d;
  font-weight: bold;
  margin: 0 0 32px;
}

#fursultiamine section .sec-box .sec-box-list li:last-child {
  margin: 0;
}

#fursultiamine section .sec-box .sec-box-list li span {
  padding: 0 0 0px;
  border-bottom: 4px solid #d6000d;
}

#fursultiamine section .sec-box .sec-box-textWrap {
  padding: 0 0px 0 0;
}

#fursultiamine section .sec-box .sec-box-text {
  font-size: 20px;
  font-weight: bold;
}

#fursultiamine section .sec-box .sec-box-text.sec-box-text-marginB {
  margin: 0 0 36px;
}

#fursultiamine section .sec-box .sec-box-text.sec-box-text-small {
  font-size: 13px;
}

#fursultiamine section .sec-box .sec-box-text .sec-box-text-red {
  color: #d6000d;
  border-bottom: 1px solid #d6000d;
  padding: 0 0 2px;
}

@media screen and (max-width: 749px) {
  #fursultiamine .forSp {
    display: block;
  }
  #fursultiamine .forPc {
    display: none;
  }
  #fursultiamine .content {
    padding: 0 5% !important;
  }
  #fursultiamine .promkeyV {
    width: 100%;
    min-width: 100%;
  }
  #fursultiamine .promkeyV .promkeyV-bg {
    width: 100%;
    height: 150px;
    position: relative;
    background-image: url("/assets/img/tc/products/vitamin/reasons/kv_sp.png");
  }
  #fursultiamine .promkeyV .promkeyV-text {
    min-width: 100%;
    margin: 40px auto 50px;
    position: relative;
    padding: 0 5px;
    box-sizing: border-box;
  }
  #fursultiamine .promkeyV .promkeyV-text > p {
    font-size: 11px;
    margin: 0 0 18px;
    line-height: 1.7;
  }
  #fursultiamine .promkeyV .promkeyV-text > p > span {
    color: #d6000d;
  }
  #fursultiamine section {
    margin: 45px 0 55px;
  }
  #fursultiamine section.sec3 .sec-box-img, #fursultiamine section.sec4 .sec-box-img, #fursultiamine section.sec6 .sec-box-img {
    width: 50%;
    margin: auto;
    text-align: center;
  }
  #fursultiamine section.sec3 .sec-box-img img, #fursultiamine section.sec4 .sec-box-img img, #fursultiamine section.sec6 .sec-box-img img {
    width: 100%;
    padding: 0;
  }
  #fursultiamine section .sec-lead {
    font-size: 18px;
    color: #d6000d;
  }
  #fursultiamine section .sec-box.is-flex {
    display: block;
  }
  #fursultiamine section .sec-box .sec-box-list {
    margin: 0 0 24px;
  }
  #fursultiamine section .sec-box .sec-box-list li {
    font-size: 18px;
    margin: 0 0 20px;
  }
  #fursultiamine section .sec-box .sec-box-list li span {
    padding: 0 0 0px;
    border-bottom: 2px solid #d6000d;
  }
  #fursultiamine section .sec-box .sec-box-lead {
    font-size: 16px;
    margin: 0 0 13px;
    line-height: 1.4;
    left: 0;
  }
  #fursultiamine section .sec-box .sec-box-text {
    font-size: 14px;
  }
  #fursultiamine section .sec-box .sec-box-text.sec-box-text-marginB {
    margin: 0 0 20px;
  }
}

p.submsg {
    display: inline-flex;
    justify-content: flex-end;
    flex-direction: column;
}

span.submsg_txt {
    text-align: right;
    font-size: .7em;
}