@charset "UTF-8";
@import "./ress.css";
/*-Base Styling-------------------------------------------*/
/*----------------------------------------------------------
//// BASE //// body a img wrapper inner flex grid
----------------------------------------------------------*/
* {
  min-height: 0vw; /* Safari clamp関数対策 */
  box-sizing: border-box;
}

body {
  color: #222;
  background: #fff;
  font-size: 4.2666666667vw;
  line-height: 1.6;
  font-family: "Wix Madefor Display", "Noto Sans JP", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 576px) {
  body {
    font-size: 2.7777777778vw;
  }
}
@media screen and (min-width: 767px) {
  body {
    font-size: 16px;
  }
}

a {
  font-size: 0.875em;
  color: #0061B5;
  text-decoration: none;
}
@media screen and (min-width: 767px) {
  a {
    font-size: 1em;
  }
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    color: #4397E0;
    text-decoration: underline;
    transition: all 0.3s ease 0s;
  }
}
a:active {
  color: #4397E0;
}

p > a {
  font-size: 1em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

#wrapper:before,
#wrapper:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
}

#wrapper:after {
  clear: both;
}

.inner {
  width: 100%;
  max-width: calc(1088px + 10%);
  padding: 0 5%;
  position: relative;
}
@media screen and (min-width: 990px) {
  .inner {
    margin: 0 auto;
  }
}

/*----------------------------------------------------------
//// Main block utility ////
----------------------------------------------------------*/
.content {
  margin-bottom: 3.75em;
}
@media screen and (min-width: 990px) {
  .content {
    margin-bottom: 80px;
  }
}
.content__container {
  border-top: 1px solid #ddd;
  margin-bottom: 3.125em;
}
@media screen and (min-width: 990px) {
  .content__container {
    margin-bottom: 70px;
  }
}
.content__container.gray {
  background: #f9f9f9;
  margin-bottom: 3.125em;
  padding-bottom: 3.125em;
}
@media screen and (min-width: 990px) {
  .content__container.gray {
    margin-bottom: 70px;
    padding-bottom: 70px;
  }
}

.languageSwitcher {
  position: fixed;
  right: 0;
  top: 45.3vw;
  z-index: 999;
  display: block;
  background: #333 url("../images/icon-lang.svg") no-repeat center left 14px/15px;
  padding: 8px 17px 8px 38px;
  transform: rotate(90deg);
  transform-origin: right top;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
}
.languageSwitcher:hover {
  text-decoration: none;
  background-color: #E50113;
}
@media screen and (min-width: 576px) {
  .languageSwitcher {
    top: 360px;
    padding: 16px 20px 16px 38px;
  }
}
.languageSwitcher:after {
  content: "";
  display: inline;
  font-family: "Wix Madefor Display", sans-serif;
  color: #fff;
}
.languageSwitcher.-en:after {
  content: "EN";
}
.languageSwitcher.-jp:after {
  content: "JP";
}
@media screen and (min-width: 576px) {
  .languageSwitcher.-en:after {
    content: "English";
  }
  .languageSwitcher.-jp:after {
    content: "Japanese";
  }
}

.offerContainer {
  text-align: center;
}
.offerContainer__txt {
  font-size: 0.875em;
  padding-bottom: 20px;
}

.getAcrobatContainer {
  justify-content: flex-start;
  align-items: center;
  gap: 8px 30px;
}
.getAcrobatContainer__txt {
  font-size: 0.75em;
}

.captionBox {
  border: 4px solid #eee;
  padding: 0.9375em;
}
@media screen and (min-width: 767px) {
  .captionBox {
    padding: 25px 30px;
  }
}
.captionBox__title {
  text-align: center;
  font-size: 1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 767px) {
  .captionBox__title {
    font-size: 1.2em;
  }
}

.label {
  display: inline-block;
  background: #003E74;
  color: #fff;
  font-size: 0.875em;
  min-width: 5em;
  padding: 0.25em;
  text-align: center;
  margin-right: 1em;
}

ul:not([class]), ol:not([class]) {
  padding-left: 1.5em;
  margin: 1em 0;
}

.subscriptionOffer__content {
  justify-content: space-between;
}
.subscriptionOffer__img {
  text-align: center;
  margin-bottom: 1.25em;
  padding-right: 1.25em;
}
.subscriptionOffer__img img {
  display: block;
  margin: 0 auto 1em;
}
.subscriptionOffer__img a {
  display: inline-block;
  font-size: 0.875em;
  margin: 0 0.5em;
}
.subscriptionOffer__detail .labelList {
  margin-top: 2em;
}
.subscriptionOffer .offerContainer {
  margin-top: 1.25em;
}

/*-Modules------------------------------------------------*/
/*----------------------------------------------------------
//// Heading ////
----------------------------------------------------------*/
h1, h2, h3 {
  margin: 0 0 2em;
}

h4, h5, h6 {
  margin: 0 0 1em;
}

p + h2, p + h3, p + h4, p + h5, p + h6,
ul + h2, ul + h3, ul + h4, ul + h5, ul + h6,
ol + h2, ol + h3, ol + h4, ol + h5, ol + h6,
dl + h2, dl + h3, dl + h4, dl + h5, dl + h6 {
  margin-top: 2.8em;
}

h1 {
  font-size: 1.75em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.25em;
}

h4 {
  font-size: 1.125em;
}

h5 {
  font-size: 1em;
}

@media screen and (min-width: 767px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.8em;
  }
  h3 {
    font-size: 1.5em;
  }
  h4 {
    font-size: 1.4em;
  }
}
.title-upperLine {
  font-size: 1.25em;
  padding: 0 0 1.2em;
  margin: 0;
}
@media screen and (min-width: 767px) {
  .title-upperLine {
    font-size: 1.8em;
    padding: 0 0 1.5277777778em;
  }
}
.title-upperLine:before {
  content: "";
  display: block;
  width: 4em;
  height: 3px;
  background: #E50113;
  margin-top: -0.075em;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 767px) {
  .title-upperLine:before {
    margin-bottom: 1.7361111111em;
    width: 2.7777777778em;
    margin-top: -0.0520833333em;
  }
}
.title-lowerLine {
  display: block;
  font-size: 1.125em;
  padding-bottom: 1.6666666667em;
  margin-bottom: 1.5555555556em;
  position: relative;
  border-bottom: 1px solid #E50113;
}
@media screen and (min-width: 767px) {
  .title-lowerLine {
    display: inline-block;
    font-size: 1.8em;
    padding-bottom: 1.1458333333em;
    margin-bottom: 1.0416666667em;
  }
}
@media screen and (min-width: 990px) {
  .title-lowerLine {
    max-width: 290px;
  }
}
.title-lowerLine span {
  font-size: 0.7777777778em;
  font-family: "Wix Madefor Display", sans-serif;
  font-weight: 400;
  color: #E50113;
  display: inline-block;
  padding: 0 1em 0 0;
  background: #fff;
  position: absolute;
  bottom: -0.7777777778em;
  left: 0;
}
@media screen and (min-width: 767px) {
  .title-lowerLine span {
    font-size: 0.4861111111em;
  }
}
.title-circle {
  font-size: 18px;
  padding: 0.5555555556em;
  background: #f4f4f4;
  display: flex;
  align-items: flex-start;
}
.title-circle.no-bg {
  background: transparent;
  padding: 0.5555555556em 0;
}
.title-circle:before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 1.1111111111em;
  border: 4px solid #E50113;
  border-radius: 1.1111111111em;
  margin-top: 0.25em;
  margin-right: 0.5555555556em;
}
.title-circle.bl:before {
  border-color: #003E74;
}
@media screen and (min-width: 767px) {
  .title-circle {
    font-size: 24px;
    padding: 0.625em 0.8333333333em;
  }
  .title-circle:before {
    margin-right: 0.625em;
  }
}

/*----------------------------------------------------------
//// Paragraph & text ////
----------------------------------------------------------*/
p {
  font-size: 0.875em;
}
p .caption {
  font-size: 0.75em;
}
@media screen and (min-width: 767px) {
  p {
    font-size: 1em;
  }
  p .caption {
    font-size: 0.875em;
  }
}

p + p {
  margin-top: 1em;
}

.-en {
  font-family: "Wix Madefor Display", sans-serif;
}

.caption {
  font-size: 0.875em;
}

.caption-x {
  font-size: 0.75em;
}
@media screen and (min-width: 767px) {
  .caption-x {
    font-size: 0.875em;
  }
}

.caption-xx {
  font-size: 0.75em;
}
@media screen and (min-width: 767px) {
  .caption-xx {
    font-size: 0.75em;
  }
}

.notice {
  color: #E50113;
}

/*----------------------------------------------------------
//// Loading ////
----------------------------------------------------------*/
#loading {
  width: 100vw;
  height: 100vh;
  background: #f4f4f4;
  display: grid;
  place-content: center;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
}

.loaded {
  opacity: 0;
  visibility: hidden;
  transition: ease-in 0.3s;
}

.loader {
  width: 45px;
  aspect-ratio: 0.75;
  --c: no-repeat linear-gradient(#003E74 0 0);
  background: var(--c) 0% 100%, var(--c) 50% 100%, var(--c) 100% 100%;
  background-size: 20% 65%;
  animation: l5 1s infinite linear;
}

@keyframes l5 {
  20% {
    background-position: 0% 50%, 50% 100%, 100% 100%;
  }
  40% {
    background-position: 0% 0%, 50% 50%, 100% 100%;
  }
  60% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  80% {
    background-position: 0% 100%, 50% 100%, 100% 0%;
  }
}
/*----------------------------------------------------------
//// Header ////
----------------------------------------------------------*/
.header {
  border-top: 4px solid #333;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
}
.header__container {
  margin: 16px 0;
}
@media screen and (min-width: 767px) {
  .header__container {
    margin: 20px 0;
  }
}
.header__logo .logo {
  width: auto;
  height: 8vw;
}
@media screen and (min-width: 576px) {
  .header__logo .logo {
    height: 6.9444444444vw;
  }
}
@media screen and (min-width: 767px) {
  .header__logo .logo {
    height: 60px;
  }
}
.header__menuContainer {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  z-index: 1100;
  height: calc(8vw + 32px);
}
@media screen and (min-width: 576px) {
  .header__menuContainer {
    height: calc(6.9444444444vw + 32px);
  }
}
@media screen and (min-width: 767px) {
  .header__menuContainer {
    height: 100px;
  }
}
.header__menuContainer .login {
  display: none;
}
@media screen and (min-width: 990px) {
  .header__menuContainer .login {
    display: grid;
    place-content: center;
    width: 177px;
    height: 100%;
    font-size: 0.875rem;
    color: #fff;
    background: linear-gradient(#0076DB, #4397E0);
  }
}
@media screen and (min-width: 990px) and (hover: hover) and (pointer: fine) {
  .header__menuContainer .login:hover {
    text-decoration: none;
    background: linear-gradient(#4397E0, #0076DB);
  }
}
@media screen and (min-width: 990px) {
  .header__menuContainer .login span {
    display: flex;
  }
  .header__menuContainer .login span:before {
    content: "";
    display: inline-block;
    width: 38px;
    height: 22px;
    background: url("../images/icon-login.svg") no-repeat left center/25px;
  }
}
.header__menuContainer .mrnavi {
  display: none;
}
@media screen and (min-width: 990px) {
  .header__menuContainer .mrnavi {
    display: grid;
    position: relative;
    place-content: center;
    width: 177px;
    height: 100%;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(#bd000f, #e50113);
  }
}
@media screen and (min-width: 990px) and (hover: hover) and (pointer: fine) {
  .header__menuContainer .mrnavi:hover {
    cursor: pointer;
  }
}
@media screen and (min-width: 990px) {
  .header__menuContainer .mrnavi span {
    display: flex;
  }
  .header__menuContainer .mrnavi span:before {
    content: "";
    display: inline-block;
    width: 30px;
    height: 20px;
    background: url("../images/icon-search.svg") no-repeat left center/20px;
  }
}
.header__menuContainer .mrnavi:hover .mrnaviMenu {
  display: block;
}
.header__menuContainer .mrnaviMenu {
  display: none;
  position: absolute;
  top: 100px;
  right: 0;
  z-index: 1000;
  width: 280px;
  padding: 4px 10px;
  background: linear-gradient(#e50113, #bd000f);
  text-align: center;
}
.header__menuContainer .mrnaviMenu__list {
  display: inline-block;
  list-style: none;
  margin: 0 auto;
}
.header__menuContainer .mrnaviMenu__list li {
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
.header__menuContainer .mrnaviMenu__list li:first-child {
  border-top: none;
}
.header__menuContainer .mrnaviMenu__list a {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1rem;
  padding: 20px 0;
}
@media (hover: hover) and (pointer: fine) {
  .header__menuContainer .mrnaviMenu__list a:hover {
    text-decoration: none;
    color: #fff671;
  }
}

/*----------------------------------------------------------
//// Footer ////
----------------------------------------------------------*/
.footer {
  margin-top: 5rem;
  padding-bottom: 100px;
  background: url("../images/bg-metal.jpg") no-repeat left bottom/cover;
}
@media screen and (min-width: 767px) {
  .footer {
    margin-top: 120px;
  }
}
.footer__information .inner {
  justify-content: center;
  align-items: center;
  gap: 0 1.875rem;
  text-align: center;
}
@media screen and (min-width: 1089px) {
  .footer__information .inner {
    justify-content: flex-start;
  }
}
.footer__information {
  background: linear-gradient(#000, #4d4d4d);
  padding: 1.875rem 0;
  color: #fff;
}
.footer__information__siteName {
  font-size: 1.75em;
  font-weight: 700;
  margin-top: -0.375rem;
  margin-bottom: 1.875rem;
}
.footer__information__siteName a {
  color: #fff;
}
.footer__information__siteName a:hover {
  text-decoration: none;
}
@media screen and (min-width: 1089px) {
  .footer__information__siteName {
    margin: -0.375rem 0 0;
  }
}
.footer__information__updateCycle {
  background: #fff;
  border-radius: 100px;
  color: #222;
  font-size: 0.875em;
  padding: 0.3125rem 1.25rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 1089px) {
  .footer__information__updateCycle {
    margin: 0;
  }
}
.footer__information__notice {
  font-size: 0.75em;
  font-weight: 400;
}
.footer .copyright {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 1.875rem 0;
}
.footer .copyright a {
  color: #222;
}
.footer .copyright a:hover {
  text-decoration: none;
}
.footer .copyright .inner.-flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 767px) {
  .footer .copyright .inner.-flex {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer .copyright__name {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 767px) {
  .footer .copyright__name {
    margin-bottom: 0;
  }
}
.footer .copyright__txt {
  font-size: 0.875em;
}

/*----------------------------------------------------------
//// Hamburger menu ////
----------------------------------------------------------*/
.hamburger {
  display: block;
  background: #fff;
  aspect-ratio: 1/1;
  width: auto;
  height: 100%;
  cursor: pointer;
}
@media screen and (min-width: 990px) {
  .hamburger {
    display: none;
    visibility: hidden;
  }
}
.hamburger span {
  display: block;
  position: relative;
  left: calc(50% - 15px);
  width: 30px;
  height: 2px;
  background: #222;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media screen and (min-width: 576px) {
  .hamburger span {
    left: calc(50% - 20px);
    width: 40px;
  }
}
.hamburger span:nth-child(1) {
  top: 32%;
}
.hamburger span:nth-child(2) {
  top: 44%;
}
.hamburger span:nth-child(3) {
  top: 56%;
}

.hamburger.js-active {
  background-color: transparent;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1100;
  height: calc(8vw + 32px);
}
@media screen and (min-width: 576px) {
  .hamburger.js-active {
    height: calc(6.9444444444vw + 32px);
  }
}
@media screen and (min-width: 767px) {
  .hamburger.js-active {
    height: 100px;
  }
}

.hamburger.js-active span:nth-child(1) {
  background: #fff;
  top: 42%;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.js-active span:nth-child(2) {
  display: none;
}

.hamburger.js-active span:nth-child(3) {
  background: #fff;
  top: calc(42% - 2px);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*----------------------------------------------------------
//// Navigation ////
----------------------------------------------------------*/
.globalNav {
  display: none;
}
@media screen and (min-width: 990px) {
  .globalNav {
    display: block;
    background: linear-gradient(to right, transparent 0 50%, #003E74 50% 100%);
    position: relative;
  }
  .globalNav:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: linear-gradient(#000, #4D4D4D);
  }
  .globalNav__list {
    width: calc(1088px + 10%);
    align-items: center;
    flex-wrap: nowrap;
    height: 70px;
    margin: 0 auto;
    padding: 0 5%;
    list-style: none;
  }
  .globalNav__list a {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    font-weight: 700;
    color: #fff;
    border-bottom: 2px solid transparent;
  }
  .globalNav__list a:hover, .globalNav__list a.-current {
    text-decoration: none;
    border-bottom: 2px solid #fff;
  }
  .globalNav__list li {
    background: #003E74;
    padding: 0 1.8382352941%;
    height: 100%;
  }
  .globalNav__list li:last-child {
    padding-right: 0;
  }
  .globalNav__list li.home {
    padding: 0 3.6764705882% 0 0;
    background: linear-gradient(#000, #4D4D4D);
  }
  .globalNav__list li.home + li {
    padding: 0 1.8382352941% 0 3.6764705882%;
  }
}

.overlayNav {
  display: none;
}
.overlayNav.js-active {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 990px) {
  .overlayNav.js-active {
    display: none;
  }
}

.overlayNav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background: #222;
  overflow: auto;
}
.overlayNav a {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}
.overlayNav__list {
  padding: 10% 5%;
}
@media screen and (orientation: landscape) {
  .overlayNav__list {
    display: flex;
    flex-wrap: wrap;
  }
  .overlayNav__list li {
    flex-basis: 25%;
  }
  .overlayNav__list li a {
    text-align: left;
  }
}
.overlayNav__list li a {
  font-size: 1em;
  font-weight: 700;
  padding: 1em;
}
.overlayNav__list .nav-login {
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
}
@media screen and (orientation: landscape) {
  .overlayNav__list .nav-login {
    flex-basis: 100%;
    margin-top: 1.5em;
  }
  .overlayNav__list .nav-login li a {
    text-align: center;
  }
}
.overlayNav__list .nav-login li a {
  padding: 1em;
}
.overlayNav__list .nav-mrnav {
  margin-top: 1em;
}
@media screen and (orientation: landscape) {
  .overlayNav__list .nav-mrnav {
    flex-basis: 100%;
  }
}
@media screen and (orientation: landscape) {
  .overlayNav__list .nav-mrnav ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr;
  }
  .overlayNav__list .nav-mrnav ul li:first-child {
    grid-row: 1/span 2;
  }
}
.overlayNav__list .nav-mrnav ul li a {
  font-size: 0.875em;
  font-weight: 400;
  padding: 0.5em;
}
.overlayNav__list .nav-mrnav ul .nav-mrnav__title a {
  font-weight: 600;
  font-size: 1.2em;
}

.sitemap {
  background: #F7F7F7;
  padding: 1.875rem 0 1rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 576px) {
  .sitemap .-flex {
    justify-content: space-between;
  }
  .sitemap .-flex ul:nth-child(2) {
    margin-left: 1.25rem;
  }
}
.sitemap__list {
  list-style: none;
  margin-top: -0.75rem;
  margin-bottom: 0.75rem;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .sitemap__list {
    display: inline-block;
    width: auto;
  }
}
.sitemap__list li {
  display: block;
  padding: 12px 0;
  font-size: 1em;
  font-weight: 700;
}
.sitemap__list li a {
  color: #222;
}
@media screen and (min-width: 767px) {
  .sitemap__list li {
    font-size: 1em;
  }
}

.supplement {
  background: #f7f7f7;
  padding: 1.875rem 0;
}
.supplement__list {
  list-style: none;
  justify-content: space-between;
}
@media screen and (min-width: 767px) {
  .supplement__list {
    justify-content: flex-start;
    gap: 0 3rem;
  }
}
.supplement__list li {
  font-size: 0.875em;
  font-weight: 700;
}
.supplement__list li a {
  color: #222;
}
@media screen and (min-width: 767px) {
  .supplement__list li {
    font-size: 1em;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-top: 6em;
}
.wp-pagenavi span, .wp-pagenavi a {
  font-size: 0.875em !important;
}
@media screen and (min-width: 767px) {
  .wp-pagenavi span, .wp-pagenavi a {
    font-size: 1em !important;
  }
}
.wp-pagenavi span, .wp-pagenavi a {
  width: 3.125em;
  height: 3.125em;
  display: grid;
  place-content: center;
}
.wp-pagenavi span.current, .wp-pagenavi a.current {
  border: 1px solid #ccc;
  color: #999;
}
.wp-pagenavi a {
  border: 1px solid #333;
  background: #333;
  color: #fff;
  font-family: "Wix Madefor Display", sans-serif;
}
.wp-pagenavi a.previouspostslink {
  position: relative;
  background: none;
  border: none;
  color: #666;
}
.wp-pagenavi a.previouspostslink:after {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 1em;
  width: 1em;
  transform: rotate(135deg);
  top: 35%;
  left: 25%;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.last {
  position: relative;
  background: none;
  border: none;
  color: #666;
}
.wp-pagenavi a.nextpostslink:after {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 1em;
  width: 1em;
  transform: rotate(-45deg);
  top: 35%;
  left: 25%;
}
@media (hover: hover) and (pointer: fine) {
  .wp-pagenavi a:hover {
    text-decoration: none;
    filter: brightness(1.7);
    transition: all 0.3s ease 0s;
  }
}

.pageNav {
  border-top: 1px solid #ddd;
  margin: 1.875em 0;
  padding-top: 1.875em;
  justify-content: center;
}
@media screen and (min-width: 767px) {
  .pageNav {
    margin: 4.375em 0;
    padding-top: 4.375em;
  }
}
.pageNav .pageNav-back {
  flex-basis: 33%;
  color: #222;
  position: relative;
  padding-left: 2em;
}
.pageNav .pageNav-back:before {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 16px;
  width: 16px;
  transform: rotate(135deg);
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.pageNav .pageNav-next {
  flex-basis: 33%;
  text-align: right;
  color: #222;
  position: relative;
  padding-right: 2em;
}
.pageNav .pageNav-next:before {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  display: inline-block;
  position: absolute;
  height: 16px;
  width: 16px;
  transform: rotate(-45deg);
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.pageNav .pageNav-list {
  flex-basis: 33%;
  text-align: center;
  color: #222;
}

/*----------------------------------------------------------
//// Page header ////
----------------------------------------------------------*/
.pageHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 21.3333333333vw;
  background: url("../images/bg-metal.jpg") no-repeat left top/cover;
}
@media screen and (min-width: 990px) {
  .pageHeader {
    height: 150px;
  }
}
.pageHeader__title {
  font-size: 1.25em;
  margin: 0;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
  color: #fff;
}
@media screen and (min-width: 767px) {
  .pageHeader__title {
    font-size: 2em;
  }
}

/*----------------------------------------------------------
//// Breadcrumb ////
----------------------------------------------------------*/
.breadcrumb {
  padding: 10px 0;
  margin-bottom: 20px;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 767px) {
  .breadcrumb {
    padding: 20px 0;
    margin-bottom: 50px;
  }
}
.breadcrumb__list {
  list-style: none;
}
.breadcrumb__item {
  display: inline;
  position: relative;
}
.breadcrumb__item span {
  font-size: 0.75rem !important;
}
@media screen and (min-width: 767px) {
  .breadcrumb__item span {
    font-size: 0.875rem !important;
  }
}
.breadcrumb__item:after {
  content: "";
  display: inline-block;
  margin: 0 9px;
}
.breadcrumb__item[data-direction=rightward]:after {
  border-style: solid;
  border-width: 0 1px 1px 0;
  content: "";
  position: relative;
  height: 7px;
  width: 7px;
  transform: rotate(-45deg);
  bottom: 2px;
  right: 0;
}

/*----------------------------------------------------------
//// Button & link & icon style ////
----------------------------------------------------------*/
.btn {
  display: inline-block;
  color: #fff;
  font-size: 1em;
  font-weight: 700;
  text-align: left;
  padding: 1em 3.1875em 1em 2.25em;
  background: #222 url("../images/icon-arrow-right.svg") no-repeat right 1.125em center/1.125em;
  border-radius: 100px;
}
@media screen and (min-width: 767px) {
  .btn {
    font-size: 1.125em;
    padding: 20px 73px 21px 60px;
    background-position: right 26px center;
    background-size: 20px;
  }
}
.btn:hover {
  color: #fff;
  background-color: #333;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    background-position: right 20px center;
  }
}
.btn.-primary {
  background-color: #E50113;
}
.btn.-primary:hover {
  background-color: #ff0b19;
}
.btn.-secondary {
  background-color: #003E74;
}
.btn.-secondary:hover {
  background-color: #0057a1;
}
.btn.-no-arrow {
  background-image: none;
  text-align: center;
  padding: 1em 2.25em;
}
@media screen and (min-width: 767px) {
  .btn.-no-arrow {
    padding: 17px 40px;
  }
}
.btn.-bg-white {
  min-width: 11.5625em;
  background-color: #fff;
  color: #003E74;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.35);
}
@media (hover: hover) and (pointer: fine) {
  .btn.-bg-white:hover {
    color: #0a8aff;
  }
}
.btn.-large {
  font-size: 1.5em;
  min-width: 16.875rem;
}

.btn-afterArrow {
  font-size: 0.875em;
  color: #222;
  opacity: 0.6;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.btn-afterArrow:after {
  content: "";
  display: block;
  width: 3.125em;
  aspect-ratio: 1/1;
  background: #222;
  opacity: 0.5;
  mask-image: url("../images/icon-arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 1.25em;
  margin-left: -3.125em;
}
.btn-afterArrow span {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 2.5em;
}
.btn-afterArrow span:after {
  content: "";
  display: block;
  width: 3.125em;
  aspect-ratio: 1/1;
  border-radius: 3.125em;
  border: 1px solid #222;
  opacity: 0.5;
}
@media (hover: hover) and (pointer: fine) {
  .btn-afterArrow:hover {
    color: #222;
    text-decoration: none;
    opacity: 1;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
}
.link-arrow:before {
  content: "";
  display: inline-block;
  width: 0.375em;
  height: 1rem;
  margin-right: 0.375em;
  background: url("../images/icon-arrow-tri.svg") no-repeat center left/0.375em;
}

.link-arrow.inline {
  margin-right: 1.5em;
}

.icon-blank:after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.625em;
  background: url("../images/icon-blank.svg") no-repeat center left/1em;
}

.icon-pdf:after {
  content: "";
  display: inline-block;
  width: 1.875em;
  height: 1.1em;
  margin-left: 0.375em;
  background: url("../images/icon-pdf.svg") no-repeat center left/1.875em;
  vertical-align: text-top;
}

.icon-up:after {
  content: "";
  display: inline-block;
  width: 1.9375em;
  height: 1.1em;
  margin-left: 0.375em;
  background: url("../images/icon-up.svg") no-repeat center left/1.9375em;
  vertical-align: text-top;
}

.icon-new:after {
  content: "";
  display: inline-block;
  width: 2.6875em;
  height: 1.1em;
  margin-left: 0.375em;
  background: url("../images/icon-new.svg") no-repeat center left/2.6875em;
  vertical-align: text-top;
}

/*----------------------------------------------------------
//// Table ////
----------------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ddd;
}
table td, table th {
  font-size: 1em;
  padding: 1em;
  display: block;
  width: 100%;
}
@media screen and (min-width: 767px) {
  table td, table th {
    padding: 1.625em 1.875em;
    display: table-cell;
    width: auto;
  }
}
table th {
  background: #f4f4f4;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid #fff;
}
table td {
  border-bottom: 1px solid #ddd;
}
table tr:last-child > th, table tr:last-child > td {
  border-bottom: none;
}

/*----------------------------------------------------------
//// List ////
----------------------------------------------------------*/
p + ul, p + ol, p + dl {
  margin-top: 1em;
}

.dataList {
  list-style: none;
  border-top: 1px solid #ddd;
  margin-bottom: 30px;
}
@media screen and (min-width: 767px) {
  .dataList {
    margin-bottom: 50px;
  }
}
.dataList li {
  padding: 1.4em 0;
  border-bottom: 1px solid #ddd;
}
.dataList li .link-arrow {
  display: inline-block;
}
@media screen and (min-width: 767px) {
  .dataList li {
    display: flex;
    justify-content: space-between;
  }
}
.dataList__date {
  display: block;
  font-size: 0.75em;
  color: #666;
  line-height: 1.25;
}
@media screen and (min-width: 767px) {
  .dataList__date {
    font-size: 0.875em;
    line-height: 1.6;
  }
}

.labelList {
  list-style: none;
  font-size: 0.875em;
}
@media screen and (min-width: 767px) {
  .labelList {
    font-size: 1em;
  }
}
.labelList li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5em;
}

.newsList {
  list-style: none;
  margin-bottom: 1em;
}
.newsList li {
  font-size: 0.875em;
  display: flex;
  gap: 0 1.4285714286em;
  padding: 1.4em 0;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 767px) {
  .newsList li {
    font-size: 1em;
    display: flex;
    gap: 0 1.25em;
  }
}
.newsList .date {
  white-space: nowrap;
}
.newsList .date:after {
  content: "";
  display: inline-block;
  width: 0.375em;
  height: 1rem;
  margin-left: 1.4285714286em;
  background: url("../images/icon-arrow-tri.svg") no-repeat center left/0.375em;
}

/*----------------------------------------------------------
//// Form base style ////
----------------------------------------------------------*/
.formFlow {
  width: 360px;
  max-width: 100%;
  margin: 0 auto 4em;
  padding-bottom: 4em;
  border-bottom: 1px solid #ddd;
}
.formFlow h3 {
  text-align: center;
  margin-bottom: 1.5em;
}
.formFlow__list {
  list-style: none;
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: flex-start;
}
.formFlow__list:before {
  content: "";
  display: block;
  width: 90%;
  height: 0;
  border-bottom: 2px solid #999;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 33%;
  z-index: 0;
}
.formFlow__list li {
  width: 6em;
  font-size: 0.875em;
  text-align: center;
  z-index: 1;
}
.formFlow .stepNum {
  display: grid;
  place-content: center;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1;
  width: 2.2em;
  height: 2.2em;
  background: #ccc;
  border-radius: 2em;
  color: #fff;
  margin: 0 auto 0.25em;
}
.formFlow .stepNum.-current {
  background: #0061B5;
}

input[type=text], input[type=tel], input[type=email],
input[type=password], input[type=number], input[type=url],
input[type=date], input[type=time], textarea, select {
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  padding: 0.8em 1em;
  margin: 0.25em 0;
}

input[type=text], input[type=tel], input[type=email], textarea {
  width: 100%;
}

textarea {
  height: 10em;
}

label {
  display: inline-block;
  padding: 0 1em 0.3em 0;
}

select {
  position: relative;
  padding-right: 4em;
  width: auto;
}

.select-wrap {
  display: inline-block;
  position: relative;
}

.select-wrap:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  right: 1em;
  top: 43%;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 0.5em 0.45em;
  border-top-color: #0061B5;
  border-bottom: 0;
  pointer-events: none;
}

.subscriptionForm {
  padding: 1em 1em 0.1em;
  background: #f7f7f7;
}
@media screen and (min-width: 767px) {
  .subscriptionForm {
    padding: 3em 3em 0.1em;
  }
}
@media screen and (min-width: 990px) {
  .subscriptionForm {
    padding: 4em 7em 0.1em;
  }
}

.form__container {
  background: #f7f7f7;
  padding-bottom: 3em;
  margin-bottom: 3em;
  border-bottom: 1px solid #ddd;
}
.form__container:last-child {
  border: none;
}
.form__container .require:after {
  content: "必須";
  display: inline-block;
  font-size: 0.85em;
  width: 3em;
  padding: 0.2em;
  text-align: center;
  background: #E50113;
  border-radius: 4px;
  color: #fff;
}
.form__container i.require {
  font-style: normal;
  vertical-align: 0.08em;
  margin-right: 0.5em;
}
.form__container h4 span.cap {
  display: inline-block;
  padding-left: 1em;
  font-weight: 400;
  color: #0061B5;
}
.form__container span.cap {
  font-size: 0.875em;
  font-weight: 400;
  display: block;
  margin-top: 0.5em;
  color: #777;
}
.form__container .invoiceInfo {
  display: none;
  margin-top: 3em;
}
.form__container .otherInput {
  display: none;
}
.form__container .scrollBox {
  font-size: 0.875em;
  margin: 1.5em 0;
  padding: 1.5em;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  height: 8em;
  overflow-y: scroll;
  color: #666;
}
@media screen and (min-width: 767px) {
  .form__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
.form dt, .form dd {
  padding: 1em 0 0.8em;
}
@media screen and (min-width: 767px) {
  .form dt, .form dd {
    padding: 1em 0 0.8em;
  }
}
.form dt {
  width: 100%;
  font-weight: 700;
  padding: 0.8em 0 0;
}
@media screen and (min-width: 767px) {
  .form dt {
    width: 28%;
    padding: 1.2em 0 0.8em;
  }
  .form dt.-alignT {
    padding-top: 1.2em;
    align-self: flex-start;
  }
  .form dt.-alignT:after {
    align-self: flex-start;
  }
}
.form dt.require {
  display: flex;
  justify-content: flex-start;
  gap: 0 0.5em;
  align-items: flex-start;
}
@media screen and (min-width: 767px) {
  .form dt.require {
    justify-content: space-between;
    align-items: center;
  }
}
.form dd {
  padding: 0;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 767px) {
  .form dd {
    width: 70%;
    padding: 1em 0 0.8em;
  }
  .form dd.-alignT {
    padding-top: 1.2em;
    align-self: flex-start;
  }
}
.form .withQty {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.form span.error {
  display: block;
  color: #EE442A;
  font-size: 0.875em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 767px) {
  .form span.error {
    position: absolute;
    left: 0;
    bottom: -1em;
  }
}
@media screen and (min-width: 576px) {
  .form .select-wrap span.error {
    left: initial;
    right: -7em;
    bottom: 1em;
  }
}
.form__buttonContainer {
  margin: 3em 0 0;
  text-align: center;
}
.form__buttonContainer .btn {
  margin: 0.5em auto;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .form__buttonContainer .btn {
    margin: 0.5em 2em;
  }
}
.form.confirm .require:after {
  display: none;
}
.form.confirm dd {
  padding: 1em 0;
  border-bottom: 1px dotted #ddd;
  margin-bottom: 1em;
  align-self: flex-start;
  font-size: 1.125em;
}
@media screen and (min-width: 767px) {
  .form.confirm dd {
    padding: 1em 0 0.8em;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.form__completeMessage {
  margin-bottom: 4em;
}
.form__completeMessage h4, .form__completeMessage h5 {
  text-align: center;
}
.form__completeMessage p {
  text-align: center;
  padding-bottom: 2em;
}

.mw_wp_form_preview .require:after {
  display: none;
}
.mw_wp_form_preview .select-wrap:before {
  display: none;
}
.mw_wp_form_preview .conf-none {
  display: none;
}
.mw_wp_form_preview .otherInput,
.mw_wp_form_preview .invoiceInfo {
  display: block !important;
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mw_wp_form .p-country-name {
  display: none;
}

/*----------------------------------------------------------
//// Form checkBox radioButton style ////
----------------------------------------------------------*/
:root {
  --form-color: #0061B5FF;
  --form-border: #ccc;
  --form-bg: #fff;
  --input-size:20px;
}

input[type=checkbox], input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--input-size);
  width: var(--input-size);
  transform: scale(1.3);
  vertical-align: -0.6rem;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
  background: var(--form-bg);
  display: inline-block;
  margin: 0.4rem;
  outline: none;
  border-radius: 10%;
}

/* Checkbox */
input[type=checkbox]:before, input[type=checkbox]:after {
  position: absolute;
  content: "";
  background: var(--form-color);
  transition: all 0.1s ease-in-out;
}

input[type=checkbox]:before {
  left: 2px;
  top: 6px;
  width: 0;
  height: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

input[type=checkbox]:after {
  right: 9px;
  bottom: 3px;
  width: 2px;
  height: 0;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  -moz-transform: rotate(40deg);
  -ms-transform: rotate(40deg);
  -o-transform: rotate(40deg);
  transition-delay: 0.2s;
}

input[type=checkbox]:checked:before {
  left: 1px;
  top: 10px;
  width: 6px;
  height: 2px;
}

input[type=checkbox]:checked:after {
  right: 5px;
  bottom: 1px;
  width: 2px;
  height: 14px;
}

input[type=checkbox]:indeterminate:before, input[type=checkbox]:indeterminate:after {
  width: 7px;
  height: 2px;
  transform: rotate(0);
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
}

input[type=checkbox]:indeterminate:before {
  left: 1px;
  top: 7px;
}

input[type=checkbox]:indeterminate:after {
  right: 1px;
  bottom: 7px;
}

/* Radio */
input[type=radio] {
  border-radius: 50%;
}

input[type=radio]:checked:before {
  transform: scale(1);
}

input[type=radio]:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 3px;
  transform: scale(0);
  transition: all ease-out 250ms;
}

/* Colors */
input[type=checkbox], input[type=radio] {
  border: 2px solid var(--form-border);
}

input[type=checkbox]:indeterminate, input[type=radio]:checked:before {
  background: var(--form-color);
}

/* チェックボックス - checkbox　ラジオボタン - radio サイズ */
.size1 {
  transform: scale(0.75);
}

.size2 {
  transform: scale(1);
}

.size3 {
  transform: scale(1.5);
}

/*-Pages--------------------------------------------------*/
/*----------------------------------------------------------
index styles
----------------------------------------------------------*/
.KV {
  background: url("../images/bg-metal.jpg") no-repeat left top/cover;
  margin-bottom: 1.875em;
}
.KV .inner {
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 990px) {
  .KV .inner {
    max-width: calc(1088px + 10%);
    padding: 0 5%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 767px) {
  .KV {
    margin-bottom: 6.25em;
    height: 57.3663624511vw;
  }
}
@media screen and (min-width: 990px) {
  .KV {
    height: 48.4848484848vw;
    padding: 2.5em 0;
  }
}
@media screen and (min-width: 1200px) {
  .KV {
    aspect-ratio: initial;
    height: 480px;
  }
}
.KV .inner {
  position: relative;
}

#mainSlider {
  position: relative;
}
#mainSlider .sp-thumbnail {
  background: #f7f7f7;
  width: 100%;
  height: 100%;
}
#mainSlider .sp-thumbnail-title {
  font-weight: 700;
  font-size: 0.75em;
  line-height: 1.25;
  display: grid;
  height: 100%;
  place-content: center;
  text-align: center;
  padding: 0 0.625em 1.5em;
}
@media screen and (min-width: 767px) {
  #mainSlider .sp-thumbnail-title {
    font-size: 0.875em;
  }
}
#mainSlider .sp-thumbnail:before {
  content: "";
  position: absolute;
  width: 100%;
  border-bottom: 5px solid #99C7EF;
  top: -5px;
}
#mainSlider .sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  border-bottom-color: #003E74;
  z-index: 1;
}
#mainSlider .sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  margin-left: -8px;
  border-bottom: 16px solid #003E74;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}
#mainSlider .sp-bottom-thumbnails .sp-thumbnail-container, #mainSlider .sp-top-thumbnails .sp-thumbnail-container {
  margin-left: 1px;
  margin-right: 1px;
}
#mainSlider .sp-arrow {
  position: absolute;
  display: block;
  width: 5px;
  height: 30px;
  cursor: pointer;
}
#mainSlider .sp-arrow:before {
  left: 30%;
  top: 0;
  -webkit-transform: skew(135deg, 0deg);
  -ms-transform: skew(135deg, 0deg);
  transform: skew(135deg, 0deg);
}
#mainSlider .sp-arrow:after {
  left: 30%;
  top: 50%;
  -webkit-transform: skew(-135deg, 0deg);
  -ms-transform: skew(-135deg, 0deg);
  transform: skew(-135deg, 0deg);
}

.slideContent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slideContent__container {
  width: 100%;
  padding: 0 1.25em;
}
@media screen and (min-width: 767px) {
  .slideContent__container {
    padding: 0 3.75em;
  }
}
.slideContent__title {
  width: 100%;
  color: #fff;
  font-size: 1.125em;
  text-align: center;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.slideContent__title.digestTitle {
  margin-bottom: 0.8em;
}
@media screen and (min-width: 767px) {
  .slideContent__title {
    font-size: 2em;
    text-align: left;
  }
}
.slideContent__btnContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 20px;
}
@media screen and (min-width: 767px) {
  .slideContent__btnContainer {
    flex-direction: row;
    margin-top: 1.875em;
  }
}
.slideContent__digestContainer {
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
}
.slideContent__digestContainer .labelList {
  color: #fff;
  margin-bottom: 5em;
}
@media screen and (min-width: 767px) {
  .slideContent__digestContainer .labelList {
    margin-bottom: 0;
  }
}
.slideContent__digestContainer .labelList li {
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.slideContent__digestContainer .digestIndex {
  color: #fff;
  width: 100%;
  max-width: 100%;
  margin-bottom: 5em;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.slideContent__digestContainer .digestIndex p {
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .slideContent__digestContainer .digestIndex p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media screen and (min-width: 767px) {
  .slideContent__digestContainer .digestIndex {
    width: 65%;
    max-width: 680px;
    margin-bottom: 0;
  }
}
.slideContent__digestContainer .freeContent {
  color: #fff;
  width: 100%;
  max-width: 100%;
  margin-bottom: 5em;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.slideContent__digestContainer .freeContent p {
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .slideContent__digestContainer .freeContent p {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
@media screen and (min-width: 767px) {
  .slideContent__digestContainer .freeContent {
    width: 65%;
    max-width: 680px;
    margin-bottom: 0;
  }
}
.slideContent__digestContainer .btn {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 767px) {
  .slideContent__digestContainer .btn {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
  }
}

.breakingNews__container {
  padding: 1.25em;
  margin-bottom: 1.875em;
  border: 4px solid #E50113;
  position: relative;
}
@media screen and (min-width: 767px) {
  .breakingNews__container {
    padding: 2.25em;
    margin-bottom: 3.75em;
  }
}
.breakingNews__container:before {
  content: "";
  position: absolute;
  border: 8px solid #FCBC96;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.breakingNews__title {
  font-size: 1.25em;
  color: #E50113;
  text-align: center;
  margin-top: -1.5em;
  margin-bottom: 0.625em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 767px) {
  .breakingNews__title {
    font-size: 1.8em;
    margin-top: -1.9444444444em;
    margin-bottom: 0.7142857143em;
  }
}
.breakingNews__title span {
  background: #fff;
  padding: 0 1.875em;
}
.breakingNews p {
  text-align: center;
}
.breakingNews p.breakingNews__footer {
  font-size: 0.75em;
  text-align: right;
  margin-top: 1.25em;
}
@media screen and (min-width: 767px) {
  .breakingNews p.breakingNews__footer {
    font-size: 0.875em;
  }
}

.newsTopics {
  margin-bottom: 4.375em;
}
@media screen and (min-width: 767px) {
  .newsTopics {
    margin-bottom: 1.875em;
  }
}
.newsTopics__container {
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 990px) {
  .newsTopics__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.newsTopics .title-lowerLine::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.newsTopics .title-lowerLine::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
.newsTopics .btn-afterArrow {
  order: 3;
  margin: 0 auto;
}
@media screen and (min-width: 990px) {
  .newsTopics .btn-afterArrow {
    position: absolute;
    left: 0;
    top: 6.875em;
  }
}
.newsTopics__list {
  list-style: none;
  margin-bottom: 1em;
}
.newsTopics__list li {
  font-size: 0.875em;
  display: flex;
  gap: 0 1.4285714286em;
  margin-bottom: 1em;
}
@media screen and (min-width: 767px) {
  .newsTopics__list li {
    font-size: 1em;
    display: flex;
    gap: 0 1.25em;
    margin-bottom: 0.875em;
  }
}
.newsTopics__list a {
  color: #222;
}
.newsTopics__list.grid-8 {
  width: 100%;
}
@media screen and (min-width: 990px) {
  .newsTopics__list.grid-8 {
    width: 66.1764705882%;
  }
}
.newsTopics__list .date {
  white-space: nowrap;
}
.newsTopics__list .date:after {
  content: "";
  display: inline-block;
  width: 0.375em;
  height: 1rem;
  margin-left: 1.4285714286em;
  background: url("../images/icon-arrow-tri.svg") no-repeat center left/0.375em;
}

.bannerSlider {
  background: url("../images/bg-metal.jpg") no-repeat center top/cover;
  padding: 40px 0;
  margin-bottom: 1.875em;
  --swiper-navigation-size: 20;
  --swiper-navigation-color: #fff;
  --swiper-theme-color: #666;
}
@media screen and (min-width: 767px) {
  .bannerSlider {
    margin-bottom: 4.375em;
  }
}
.bannerSlider .swiper {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .bannerSlider .swiper {
    max-width: 1088px;
  }
}
.bannerSlider .swiper-slide {
  height: 50px;
  width: auto;
}
.bannerSlider .swiper-slide img {
  display: block;
  height: 50px;
  width: auto;
  margin: 0 auto;
}
.bannerSlider .swiper-button-next, .bannerSlider .swiper-button-prev {
  top: 10px;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.6);
}
.bannerSlider .swiper-button-next {
  right: 0;
}
.bannerSlider .swiper-button-prev {
  left: 0;
}

.event {
  margin-bottom: 1.875em;
}
@media screen and (min-width: 767px) {
  .event {
    margin-bottom: 4.375em;
  }
}
.event__container {
  flex-direction: column;
}
@media screen and (min-width: 990px) {
  .event__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.event__content:after {
  content: "";
  display: block;
  float: none;
  clear: both;
}
.event__content__img {
  margin-bottom: 1.25em;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .event__content__img {
    margin-right: 1.25em;
    text-align: left;
  }
}
@media screen and (min-width: 767px) {
  .event__content__img {
    width: 32%;
    float: left;
  }
}
.event__content__txt p {
  overflow: hidden;
  margin-bottom: 1em;
}
.event__content__title {
  margin-bottom: 1em;
}
.event__content__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.event__content__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
.event__content.grid-8 {
  width: 100%;
}
@media screen and (min-width: 990px) {
  .event__content.grid-8 {
    width: 66.1764705882%;
  }
}
.event .title-lowerLine::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.event .title-lowerLine::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}

.trial {
  margin-bottom: 1.875em;
}
@media screen and (min-width: 767px) {
  .trial {
    margin-bottom: 4.375em;
  }
}
.trial__container {
  flex-direction: column;
  position: relative;
  margin-bottom: 1.875em;
}
@media screen and (min-width: 990px) {
  .trial__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.trial__container .trial__content.grid-8 {
  width: 100%;
}
@media screen and (min-width: 990px) {
  .trial__container .trial__content.grid-8 {
    width: 66.1764705882%;
  }
}
.trial__banner {
  margin-bottom: 1.875em;
}
.trial__title {
  font-size: 1em;
  margin-bottom: 1.25em;
}
@media screen and (min-width: 767px) {
  .trial__title {
    font-size: 1.2em;
  }
}
.trial__title em {
  font-size: 1.2em;
  color: #E50113;
  font-style: normal;
}
.trial .btn {
  order: 3;
  margin: 1.25em auto 0;
}
@media screen and (min-width: 990px) {
  .trial .btn {
    position: absolute;
    left: 0;
    top: 6.875em;
  }
}
.trial .title-lowerLine::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.trial .title-lowerLine::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}

.app {
  position: relative;
  background: linear-gradient(#003E74, #002F58);
  padding: 0 0 3.125em;
  margin-bottom: 1.875em;
  overflow: hidden;
}
@media screen and (min-width: 767px) {
  .app {
    padding: 4.375em 0;
    margin-bottom: 4.375em;
  }
}
.app:before {
  content: "";
  display: block;
  position: relative;
  top: 0;
  left: 0;
  aspect-ratio: 375/338;
  width: 100%;
  height: auto;
  background: url("../images/top/bg-app.png") no-repeat left top/cover;
  filter: drop-shadow(0px 0px 8px rgba(0, 0, 0, 0.3));
  margin-bottom: 1.875em;
}
@media screen and (min-width: 767px) {
  .app:before {
    position: absolute;
    top: auto;
    bottom: 70px;
    left: 60%;
    aspect-ratio: 1260/617;
    width: auto;
    height: calc(100% - 140px);
    background: url("../images/top/bg-app.png") no-repeat left top/100%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 990px) {
  .app:before {
    left: 50%;
  }
}
.app__container {
  color: #fff;
}
@media screen and (min-width: 767px) {
  .app__container {
    width: 70%;
  }
}
@media screen and (min-width: 990px) {
  .app__container {
    width: 56%;
  }
}
@media screen and (min-width: 1200px) {
  .app__container {
    width: 46%;
  }
}
.app__title {
  font-size: 1.8em;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 3px solid #ccc;
  text-align: center;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 767px) {
  .app__title {
    text-align: left;
    font-size: 2.5em;
  }
}
.app__title span {
  display: block;
  font-size: 0.4166666667em;
  font-weight: normal;
  margin: 0.3em 0 0;
}
@media screen and (min-width: 767px) {
  .app__title span {
    font-size: 0.4em;
  }
}
.app__title span.term {
  font-size: 0.5555555556em;
  font-weight: 700;
}
@media screen and (min-width: 767px) {
  .app__title span.term {
    font-size: 0.6em;
  }
}
.app__title span.term em {
  font-style: normal;
  font-size: 1.4em;
}
@media screen and (min-width: 767px) {
  .app__title span.term em {
    font-size: 1.4em;
  }
}
.app__title span.caption {
  text-align: left;
  font-size: 0.4166666667em;
}
@media screen and (min-width: 767px) {
  .app__title span.caption {
    font-size: 0.3em;
  }
}
.app p {
  margin-bottom: 2.5em;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
}
.app p.caption {
  font-size: 0.75em;
  color: #ccc;
  margin-bottom: 0;
}
.app .btn {
  margin-bottom: 2.5em;
}

.publications {
  text-align: center;
}
.publications .title-lowerLine {
  margin-bottom: 1.5555555556em;
}
@media screen and (min-width: 767px) {
  .publications .title-lowerLine {
    margin-bottom: 2.0833333333em;
  }
}
.publications .title-lowerLine span {
  left: 50%;
  transform: translateX(-50%);
  padding: 0 1em;
}
.publications__lineup {
  grid-template-columns: 1fr;
  gap: 1.75em 0;
  margin-bottom: 1.75em;
}
@media screen and (min-width: 767px) {
  .publications__lineup {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 3.75em;
  }
}
@media screen and (min-width: 990px) {
  .publications__lineup {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 3.75em;
  }
}
.publications__lineup__mediaBlock {
  padding-bottom: 1.75em;
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 767px) {
  .publications__lineup__mediaBlock {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
    padding: 0 8%;
    border-right: 1px solid #ddd;
    border-bottom: none;
  }
}
@media screen and (min-width: 990px) {
  .publications__lineup__mediaBlock {
    padding: 0 1.75em;
  }
}
.publications__lineup__mediaBlock a {
  color: #222;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .publications__lineup__mediaBlock a:hover {
    color: #0061B5;
  }
  .publications__lineup__mediaBlock a:hover img {
    opacity: 0.8;
  }
}
@media screen and (min-width: 767px) {
  .publications__lineup__mediaBlock:first-child {
    padding-left: 0;
  }
}
@media screen and (min-width: 767px) {
  .publications__lineup__mediaBlock:last-child {
    padding-right: 0;
    border-right: none;
  }
}
.publications__lineup .mediaBlock__img {
  margin: 0 auto 1.125em;
}
.publications__lineup .mediaBlock__title {
  font-size: 1em;
  line-height: 1.4;
  margin-bottom: 1.25em;
}
@media screen and (min-width: 767px) {
  .publications__lineup .mediaBlock__title {
    font-size: 1.2em;
    margin-bottom: 1.05em;
  }
}
.publications__lineup .mediaBlock__title span {
  display: block;
  color: #0061B5;
  font-size: 0.75em;
  font-weight: normal;
  margin-bottom: 0.25em;
}
@media screen and (min-width: 767px) {
  .publications__lineup .mediaBlock__title span {
    font-size: 0.625em;
  }
}
.publications__lineup .mediaBlock__txt {
  font-size: 0.875em;
  text-align: left;
}

/*----------------------------------------------------------
news styles
----------------------------------------------------------*/
.newsContent {
  content: "";
  display: block;
  float: none;
  clear: both;
}
.newsDate {
  color: #999;
  font-size: 0.75em;
  margin-bottom: 3em;
}
@media screen and (min-width: 767px) {
  .newsDate {
    font-size: 14px;
  }
}

.newsImage {
  max-width: 70%;
  margin: 0 auto 2em;
}
.newsImage .caption {
  margin-top: 1em;
}
@media screen and (min-width: 767px) {
  .newsImage {
    max-width: 40%;
    float: left;
    margin: 0 2em 2em 0;
  }
}

/*----------------------------------------------------------
mail styles
----------------------------------------------------------*/
.mailIntroduction {
  grid-template-columns: 1fr;
  gap: 2.5em;
}
@media screen and (min-width: 767px) {
  .mailIntroduction {
    grid-template-columns: 1fr 2fr;
    place-items: center;
  }
}
@media screen and (min-width: 990px) {
  .mailIntroduction {
    grid-template-columns: 1fr 3.5fr;
    place-items: center;
  }
}
.mailIntroduction__img {
  place-self: center;
  max-width: 260px;
}
.mailEntry {
  text-align: center;
}
.mailEntry .btn {
  margin: 1.875em 0;
}
.mailEntry .captionBox__title {
  font-size: 1.2rem;
}
@media screen and (min-width: 767px) {
  .mailEntry .captionBox__title {
    font-size: 1.5rem;
  }
}

/*----------------------------------------------------------
publications styles
----------------------------------------------------------*/
.publicationsGuide__container {
  grid-template-columns: 1fr;
  gap: 0 3em;
}
@media screen and (min-width: 767px) {
  .publicationsGuide__container {
    grid-template-columns: 1fr 1.34fr;
  }
}
.publicationsGuide__img {
  text-align: center;
  margin-bottom: 0.625em;
}
@media screen and (min-width: 767px) {
  .publicationsGuide__img {
    margin-bottom: 0;
  }
}
.publicationsGuide__img .img__outer {
  background: #F9F9F9;
  padding: 1.875em;
  margin: 0 auto 1em;
}
.publicationsGuide__img a {
  display: inline-block;
  font-size: 0.875em;
  margin: 0 0.5em;
}
.publicationsGuide .labelList .subText {
  display: inline-block;
  padding-left: 5.9375em;
  margin-top: -8px;
  font-size: 0.875em;
}
.publicationsGuide .offerContainer {
  margin-top: 1.25em;
}
.publicationsGuide .captionBox {
  margin: 1.25em 0 1.875em;
  text-align: left;
  border-color: #D8EBFC;
  grid-template-columns: 4fr 1fr;
  gap: 1.875em;
}
.publicationsGuide .captionBox__title {
  text-align: left;
}

/*----------------------------------------------------------
subscriptions styles
----------------------------------------------------------*/
.subscriptionFlow {
  margin-bottom: 3.125em;
  padding-bottom: 3.125em;
  border-bottom: 1px solid #ddd;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr 1fr auto;
  gap: 1.875em 1.25em;
}
@media screen and (min-width: 767px) {
  .subscriptionFlow {
    margin-bottom: 4.375em;
    padding-bottom: 4.375em;
  }
}
@media screen and (min-width: 990px) {
  .subscriptionFlow {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr auto;
    gap: 3.125em 1.25em;
  }
}
.subscriptionFlow__step {
  text-align: center;
}
.subscriptionFlow__step p {
  text-align: left;
}
.subscriptionFlow__step br {
  display: none;
}
@media screen and (min-width: 576px) {
  .subscriptionFlow__step p {
    text-align: center;
  }
  .subscriptionFlow__step br {
    display: block;
  }
}
.subscriptionFlow__step img {
  max-width: 160px;
  margin-bottom: 1.25em;
}
.subscriptionFlow__step h3 {
  margin-bottom: 0.5em;
  color: #EE442A;
}
.subscriptionFlow .offerContainer {
  grid-column: 1/3;
  grid-row: 3/4;
}
@media screen and (min-width: 990px) {
  .subscriptionFlow .offerContainer {
    grid-column: 1/5;
    grid-row: 2/3;
  }
}

/*----------------------------------------------------------
index styles
----------------------------------------------------------*/
.signatureTxt {
  margin-top: 2em;
  text-align: right;
}

.aboutUs__table {
  margin-bottom: 3.75em;
}
@media screen and (min-width: 990px) {
  .aboutUs__table {
    margin-bottom: 80px;
  }
}
.aboutUs__table th {
  background: #D8EBFC;
}

.officeInfo {
  padding: 1.875em 0;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 767px) {
  .officeInfo {
    padding: 3.75em 0;
  }
}
.officeInfo.-flex {
  justify-content: space-between;
  gap: 1.25em 1em;
}
.officeInfo__txt {
  position: relative;
}
.officeInfo__txt h3 {
  margin-bottom: 2rem;
}
.officeInfo__txt h3::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
  content: "";
}
.officeInfo__txt h3::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.6) * 0.5em);
  content: "";
}
.officeInfo__txt p {
  margin-bottom: 1.125em;
}
@media screen and (min-width: 767px) {
  .officeInfo__txt p {
    margin-bottom: 2em;
  }
}
.officeInfo__map iframe {
  aspect-ratio: 335/285;
  width: 100%;
  height: auto;
}
@media screen and (min-width: 767px) {
  .officeInfo__map iframe {
    aspect-ratio: 720/285;
  }
}

.history__table th {
  background: #D8EBFC;
  text-align: left;
}
@media screen and (min-width: 767px) {
  .history__table th {
    text-align: center;
  }
}

/*----------------------------------------------------------
app styles
----------------------------------------------------------*/
.dlBanner {
  width: auto;
  margin: 1.875em 0;
}
.dlBanner a img {
  min-height: 3.5em;
  margin: 0 20px 30px;
}

.appFeature__list {
  list-style: none;
  justify-content: space-between;
}
.appFeature__list li {
  width: 100%;
}
.appFeature__list li img {
  display: block;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .appFeature__list li {
    width: 33%;
  }
  .appFeature__list li img {
    width: 100%;
  }
}
.appFeature__list li p {
  padding: 0 1.625em;
  margin: 1.875em 0;
}
@media screen and (min-width: 767px) {
  .appFeature .caption {
    text-align: right;
  }
}

.appUsage .captionBox {
  margin-bottom: 3.125em;
  border-color: #D8EBFC;
}
@media screen and (min-width: 767px) {
  .appUsage .captionBox {
    margin-bottom: 5em;
  }
}
.appUsage ul {
  font-size: 1.25em;
  font-weight: 700;
}
.appUsage ul span {
  font-weight: 400;
}
.appUsage .offerContainer {
  margin-top: 1.25em;
}
@media screen and (min-width: 767px) {
  .appUsage .offerContainer {
    margin-top: 2.5em;
  }
}
.appUsage .offerContainer .btn {
  margin-top: 1.875em;
}

/*----------------------------------------------------------
privacy styles
----------------------------------------------------------*/
.privacy-list {
  width: 100%;
  margin: 2em 0 0;
  padding: 1.5em 1.5em 1.5em 3em;
  border: 4px solid #eee;
}
@media screen and (min-width: 767px) {
  .privacy-list {
    padding: 3em 4em 3em 5em;
  }
}
.privacy-list li {
  margin-bottom: 0.85em;
}

body.en .sitemap .-flex {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 1.875em;
}
body.en .footer__information__notice {
  width: 100%;
  margin-bottom: 1em;
}
body.en .title-lowerLine {
  max-width: 100%;
}
body.en .label {
  min-width: 11em;
}
body.en .publicationsContainer {
  padding: 4.375em 0;
  background: #f7f7f7;
}
body.en .publicationsContainer .title-lowerLine span {
  background: #f7f7f7;
}
body.en .subscriptionFlow {
  border-bottom: none;
  padding-bottom: 0;
}
body.en .dataList__caption {
  margin-top: 2em;
}
body.en .require:after {
  content: "Require";
  width: 5em;
}

#index.en .KV .inner {
  width: 100%;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 990px) {
  #index.en .KV .inner {
    max-width: calc(1088px + 10%);
    padding: 0 5%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 767px) {
  #index.en .KV {
    margin-bottom: 2.5em;
    height: auto;
  }
  #index.en .KV .slideContent__title {
    font-size: 1.8em;
  }
}
@media screen and (min-width: 990px) {
  #index.en .KV {
    height: auto;
    padding: 2.5em 0;
    margin-bottom: 4.375em;
  }
}
@media screen and (min-width: 1200px) {
  #index.en .KV {
    aspect-ratio: initial;
    height: 480px;
  }
  #index.en .KV .slideContent__title {
    font-size: 2em;
  }
}
#index.en .KV .inner {
  position: relative;
}
#index.en footer {
  margin-top: 0;
}

/*-utility & override style--------------------------------------------------*/
/*----------------------------------------------------------
//// Utilities ////
----------------------------------------------------------*/
.br-sp {
  display: block;
}
@media screen and (min-width: 767px) {
  .br-sp {
    display: none;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 767px) {
  .br-pc {
    display: block;
  }
}

.nowrap {
  white-space: nowrap;
}

.-alignC {
  text-align: center;
}

.-alignL {
  text-align: left;
}

.-alignR {
  text-align: right;
}

.-flex {
  display: flex;
  flex-wrap: wrap;
}

.-grid {
  display: grid;
}

.grid-1, .grid-2, .grid-3 {
  width: 50%;
}

.grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11 {
  width: 100%;
}

@media screen and (min-width: 767px) {
  .grid-1 {
    width: 6.9852941176%;
  }
  .grid-2 {
    width: 15.4411764706%;
  }
  .grid-3 {
    width: 23.8970588235%;
  }
  .grid-4 {
    width: 32.3529411765%;
  }
  .grid-5 {
    width: 40.8088235294%;
  }
  .grid-6 {
    width: 49.2647058824%;
  }
  .grid-7 {
    width: 57.7205882353%;
  }
  .grid-8 {
    width: 66.1764705882%;
  }
  .grid-9 {
    width: 74.6323529412%;
  }
  .grid-10 {
    width: 83.0882352941%;
  }
  .grid-11 {
    width: 91.5441176471%;
  }
  .grid-full {
    width: 100%;
  }
}

/*# sourceMappingURL=common.css.map */
