@charset "UTF-8";
/**
 * Custom media queries
 * @example
 * @media (--mobile) {
 *    styles for mobile viewport
 * }
 */
/**
 * for mobile viewoport
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}
/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}
/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}
/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}
/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}
/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}
/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}
/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}
/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}
/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}
/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}
/**
 * for tablet and Pc. large viewport
 */
@custom-media --desktop(min-width: 1280px);
/** http://bourbon.io/docs/#timing-functions */
/** example @include transition(all 5s $ease-in-circ);*/
/**
transition timing-function:
ease - cubic-bezier(0.25, 0.1, 0.25, 1.0) を指定したのと同じ（開始と完了を滑らかにする）（初期値）
linear - cubic-bezier(0.0, 0.0, 1.0, 1.0) を指定したのと同じ（一定）
ease-in - cubic-bezier(0.42, 0, 1.0, 1.0) を指定したのと同じ（ゆっくり始まる）
ease-out - cubic-bezier(0, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり終わる）
ease-in-out - cubic-bezier(0.42, 0, 0.58, 1.0) を指定したのと同じ（ゆっくり始まってゆっくり終わる）
*/
/**
 * text ellipsis for block multiline
 */
/*
 unsupport IE, Edge, Fx

@mixin text-ellipsis-block($rows) {
  display: box;
  box-orient: vertical;
  line-clamp: $rows;
  overflow: hidden;
}
*/
/**
 * element size
 */
/**
 * position layout
 */
/**
 * images
 */
/**
* Variables
*/
/** extend */
/* == @import "../node_modules/normalize.css/normalize.css"; */
[v-cloak] {
  display: none; }
html {
  font-size: 62.5%; }
body {
  color: #0D0D0D;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: "Noto Sans JP", Arial, sans-serif;
  font-size: 1.0rem;
  font-weight: 500;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.015em;
  min-height: 100vh; }
a {
  color: #0D0D0D;
  text-decoration: none; }
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
  letter-spacing: 0.015em;
  margin: 0;
  padding: 0; }
ul, ol, li {
  padding: 0;
  margin: 0; }
li {
  list-style: none; }
img {
  vertical-align: bottom; }
figure {
  margin: 0;
  padding: 0; }
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0; }
input[type="number"] {
  -moz-appearance: textfield; }
.l-main {
  line-height: 1.2; }
.-is-forbidden {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
.-is-forbidden img {
    pointer-events: none; }
.profile img {
  margin-right: 20px; }
.wp-block-separator {
  border-bottom: 1px solid !important;
  border-bottom-color: #bbb !important;
  margin-top: 50px; }
.l-footer {
  background-color: #fff;
  font-size: 1.4rem;
  margin: auto auto 0;
  max-width: 1400px;
  padding: 60px 60px 120px;
  text-align: center; }
.l-footer__foot-copy {
    font-size: 1.2rem;
    letter-spacing: 0.05em; }
.l-header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000; }
.l-header__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0 auto;
    max-width: 1180px;
    padding: 28px 20px;
    position: relative;
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
    z-index: 3001; }
.l-header__logo {
    width: 243px; }
.l-header__logo img {
      height: auto;
      vertical-align: middle;
      -webkit-transition: -webkit-filter .3s;
      transition: -webkit-filter .3s;
      transition: filter .3s;
      transition: filter .3s, -webkit-filter .3s;
      width: 100%; }
.l-header__nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
.l-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: opacity .3s;
    transition: opacity .3s; }
.is-small .l-header__nav-list {
      opacity: 0; }
.l-header__nav-list li {
      font-size: 1.4rem;
      font-weight: bold; }
.l-header__nav-list li + li {
        margin-left: 36px; }
.l-header__nav-list a {
      display: block;
      text-align: center; }
.l-header__nav-list span {
      display: block;
      font-size: 1.2rem;
      letter-spacing: 0.1em;
      margin-top: 8px; }
.l-header__btn {
    cursor: pointer;
    margin-left: 20px; }
.l-header__btn.is-active {
      position: relative; }
.l-header__btn.is-active span {
        visibility: visible; }
.l-header__btn.is-active span:nth-of-type(1) {
          -webkit-transform: rotate(45deg) translate(3px, 7px);
                  transform: rotate(45deg) translate(3px, 7px); }
.l-header__btn.is-active span:nth-of-type(2) {
          opacity: 0; }
.l-header__btn.is-active span:nth-of-type(3) {
          -webkit-transform: rotate(-45deg) translate(3px, -7px);
                  transform: rotate(-45deg) translate(3px, -7px); }
.l-header__btn-border {
    position: relative;
    height: 16px;
    width: 22px; }
.l-header__btn-border span {
      background-color: #0D0D0D;
      display: block;
      height: 2px;
      margin: auto;
      position: absolute;
      left: 0;
      right: 0;
      width: 100%; }
.l-header__btn-border span:nth-of-type(1) {
        top: 0; }
.l-header__btn-border span:nth-of-type(2) {
        top: 0;
        bottom: 0; }
.l-header__btn-border span:nth-of-type(3) {
        bottom: 0; }
.l-header-openarea {
  display: none;
  background-color: white;
  height: 100%;
  opacity: 0;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  z-index: 3000; }
.l-header-openarea__nav {
    padding: 118px 0 20px; }
.l-header-openarea__nav-list {
    max-width: 1180px;
    margin: 0 auto;
    width: 73%; }
.l-header-openarea__nav-list li {
      font-size: 1.8rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      max-width: 354px;
      margin-top: 50px;
      width: 50%; }
.l-header-openarea__nav-list a {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      text-align: center; }
.l-header-openarea__nav-list span {
      display: block;
      font-size: 1.2rem;
      letter-spacing: 0.1em;
      margin-right: 22px; }
.l-header-openarea__nav-list img {
      width: 56px; }
/**
 * main.scss
 */
.l-main {
  font-size: 1.6rem; }
.p-archive-top__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 0;
  width: 90%; }
.p-archive-top__list {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%; }
.p-archive-top__list li {
  margin-bottom: 60px;
  width: 100%; }
.p-archive-top__list li:not(.-pickup) {
  max-width: 350px; }
.p-archive-top__list:before, .p-archive-top__list:after {
  content: '';
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 350px;
  width: calc(33% - 15px); }
.p-archive-top__list .c-box:not(.-large) {
  height: 100%; }
.p-archive__header {
  background-color: #f2f2f2;
  min-height: 100px;
  padding: 100px 5% 20px; }
.p-archive__heading {
  color: #e60038;
  font-size: 6rem;
  font-weight: bold;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 1140px;
  width: 100%; }
.p-archive__inner {
  margin: 0 auto;
  padding: 100px 0;
  width: 100%; }
.p-archive__list {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  width: 90%; }
.p-archive__list li {
  margin-bottom: 40px;
  width: 100%; }
.p-archive__list li:not(.-pickup) {
  max-width: 350px; }
.p-archive__list:before, .p-archive__list:after {
  content: '';
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  max-width: 350px;
  width: 100%;
  max-width: 350px; }
.p-login {
  color: #333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  min-height: 100vh;
  padding: 8vh 0 4vh; }
.p-login__header {
    max-width: 462px;
    margin: 0 auto;
    width: 79.5%; }
.p-login__header img {
    height: auto;
    width: 100%; }
.p-login__body {
    background: url(../images/login-bg_sp.png) center top no-repeat;
    background-size: 100% auto;
    margin: 53px auto auto;
    max-width: 821px;
    padding-bottom: 27px;
    padding-top: 148px;
    text-align: center;
    width: 94%; }
.p-login__body .c-form-control {
      margin: 0 auto 30px; }
.p-login__body .c-form-button {
      margin: 2px auto 0; }
.p-login__link {
    font-size: 1.3rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 4vh auto 0;
    max-width: 320px;
    text-align: center; }
.p-login__link span {
    margin: 0 0.5em; }
.p-login__footer {
    font-size: 1.2rem;
    color: #333;
    margin-top: auto;
    text-align: center; }
.p-login__errorWindow {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%; }
.p-login__errorWindow-inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.8rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    width: 100%; }
.p-login__errorWindow p {
    line-height: 1.3;
    letter-spacing: 0.1rem;
    margin-bottom: 1.5em; }
.p-login__errorWindow .c-form-button {
    margin-top: 1.5em; }
.p-login__thanks {
    color: #444;
    margin: auto;
    max-width: 821px;
    text-align: center;
    width: 94%; }
.p-login__thanks p {
      font-size: 1.8rem;
      letter-spacing: 0.1rem;
      margin-bottom: 0.7em; }
.p-login__comingsoon {
    color: #e60038;
    text-align: center;
    font-size: 2.4rem;
    margin-top: 44px; }
.p-mv__inner {
  margin: 0 auto 0;
  max-width: 1140px;
  width: 100%; }
.p-mv__inner img {
    height: auto;
    max-width: 100%;
    width: auto; }
.p-mv-heading {
  margin: 0 auto 30px; }
.p-mv-heading__pix {
    position: relative; }
.p-mv-heading__pix img {
    width: 100%; }
.p-mv-heading__title {
    background-color: #e60038;
    font-size: 1.8rem;
    line-height: normal;
    color: white;
    padding: 50px 50px 30px; }
.p-mv-heading__title-date {
    font-size: 1.8rem;
    font-weight: normal; }
.p-mv-heading__title-no {
    font-size: 6rem;
    font-weight: bold; }
.p-mv-heading__pix .p-mv-heading__title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    background-color: transparent;
    color: #e60038;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: bold;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 55px 25px;
    position: absolute;
    top: 0; }
.p-mv-heading__pix .p-mv-heading__title {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 4.6% 25px; }
.p-mv-heading__pix .p-mv-heading__title-date {
    font-size: clamp(1.4rem, 1.58vw, 1.8rem);
    letter-spacing: 0.027em; }
.p-mv-heading__pix .p-mv-heading__title-no {
    font-size: clamp(2.8rem, 5.26vw, 6rem);
    letter-spacing: 0.027em; }
.p-mv-heading__button {
    margin: 0 0 0 auto;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 8px 70px;
    background-color: #e60038;
    border-radius: 30px;
    position: relative; }
.p-mv-heading__button.-pdf:before {
      content: '';
      display: block;
      position: absolute;
      background-image: url(../images/icon-pdf.png);
      left: 14px;
      top: 8px;
      width: 22px;
      height: 20px; }
.p-mv-heading__button a {
      display: block;
      width: 100%;
      color: #ffffff; }
.p-mv-news {
  margin: 50px auto 65px;
  max-width: 1240px;
  padding: 0 50px;
  width: 100%; }
.p-mv-news__item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.4rem;
    margin-bottom: 25px; }
.p-mv-news__item-date {
    font-weight: bold;
    display: block;
    width: 130px; }
.p-mv-news__item-ttl {
    display: block;
    width: calc(100% - 130px); }
.p-mv-news__more {
    color: #e60038;
    display: block;
    font-size: 1.3rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content; }
.p-single-backnumber {
  background-color: #e60038;
  color: white;
  padding: 34px 0 30px; }
.p-single-backnumber__inner {
    max-width: 1000px;
    margin: 0 auto;
    width: 90%; }
.p-single-backnumber__link {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: white;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
.p-single-backnumber__link:before {
    background: url(../images/icon-back.svg) left top no-repeat;
    background-size: 100% 100%;
    content: '';
    display: block;
    height: 32px;
    margin-right: 45px;
    width: 39px; }
.p-single-backnumber__text {
    font-size: 2.4rem; }
.p-single-backnumber__text span {
    display: block; }
.p-single-backnumber__text-date {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 3px; }
.p-single h1, .p-single h2, .p-single h3, .p-single h4, .p-single h5, .p-single h6 {
  color: #e60038; }
.p-single .has-black-color {
  color: #0D0D0D !important; }
.p-single__header {
  font-weight: bold;
  margin: 0 auto;
  max-width: 840px;
  padding-top: 50px;
  width: 90%; }
.p-single__title {
  font-size: 3rem;
  line-height: 1.67;
  margin-bottom: 20px; }
.p-single__tag {
  border: 1px solid #e60038;
  border-radius: 20px;
  color: #e60038;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.1;
  padding: 10px 30px;
  margin-bottom: 20px; }
.p-single__detail {
  margin: 0 auto;
  max-width: 840px;
  padding: 50px 0 70px;
  width: 90%; }
.p-single__footer {
  background-color: rgba(153, 153, 153, 0.1);
  padding: 95px; }
.p-single__footer-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1140px; }
.c-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  width: 100%; }
.c-box__img {
    aspect-ratio: 350 / 185;
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%; }
.c-box__img img {
    height: 100%;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    width: 100%; }
.c-box__date {
    font-weight: bold;
    line-height: 1.87;
    font-size: 24px;
    margin-top: 20px;
    padding-bottom: 0.5em; }
.c-box__date-m {
    font-size: 1.4rem; }
.c-box__ttl {
    font-weight: bold;
    line-height: 1.87;
    margin-top: 20px;
    padding-bottom: 1em; }
.c-box__category {
    color: #fff;
    padding: 4px 16px;
    background: #d80e4c;
    font-weight: bold;
    margin-top: 24px;
    line-height: 1.87;
    display: inline-block;
    border-radius: 24px;
    font-size: 1.4rem; }
.c-box__country-name {
    margin-top: 12px;
    margin-bottom: 24px;
    font-weight: 600; }
.c-box__more {
    font-size: 1.2rem;
    line-height: 1.1;
    margin-top: auto;
    overflow: hidden;
    text-align: right; }
.c-box__more:after {
      background: url(../images/icon-arrow.png) left top no-repeat;
      background-size: 100% 100%;
      content: '';
      display: inline-block;
      height: 19px;
      vertical-align: middle;
      margin-left: 12px;
      width: 19px; }
.c-box__more span {
      display: inline-block;
      padding: 0 0 0 19px;
      position: relative; }
.c-box__more span:before {
      bottom: 0;
      border: 1px dashed #707070;
      content: '';
      height: 2px;
      display: block;
      left: 0;
      margin: auto;
      position: absolute;
      -webkit-transform: scale(-1, 1);
              transform: scale(-1, 1);
      -webkit-transform-origin: left center;
              transform-origin: left center;
      top: 0;
      width: 100vw; }
.c-box.-large {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%; }
.c-box.-large .c-box__img {
    width: 600px; }
.c-box.-large .c-box__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 40px; }
.c-box.-large .c-box__ttl {
    margin-top: 0; }
.c-box.-new:after {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #e60038;
    border-radius: 50%;
    content: 'New';
    color: white;
    font-size: 1.4rem;
    font-weight: bold;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    line-height: 1.1;
    left: 10px;
    position: absolute;
    top: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 60px; }
.c-box.-comingsoon {
    opacity: 0.3; }
.c-btn {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f2594b;
  border-radius: 29px;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 58px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  padding: 0 43px;
  position: relative;
  text-align: center;
  width: 240px; }
.c-btn.-back:before {
    background: url(../images/icon-back.svg) left top no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    content: '';
    display: block;
    height: 20px;
    left: 19px;
    margin: auto;
    position: absolute;
    top: 0;
    width: 24px; }
.c-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
.c-form-control {
  display: block;
  background-color: #fff;
  border: 1px solid #999999;
  border-radius: 25px;
  font-size: 1.4rem;
  font-weight: 500;
  height: 44px;
  line-height: 1.1;
  max-width: 320px;
  padding: 12px 15px 13px 45px;
  width: 100%; }
.c-form-control:focus, .c-form-control:focus-visible {
  outline: none; }
.c-form-control::-webkit-input-placeholder {
  color: #999999;
  font-size: 1.4rem; }
.c-form-control::-moz-placeholder {
  color: #999999;
  font-size: 1.4rem; }
.c-form-control::-ms-input-placeholder {
  color: #999999;
  font-size: 1.4rem; }
.c-form-control::placeholder {
  color: #999999;
  font-size: 1.4rem; }
.c-form-control[type=email] {
  background: #fff url(../images/icon-user.svg) 20px center no-repeat;
  background-size: 14px auto; }
.c-form-control[type=password] {
  background: #fff url(../images/icon-key.svg) 20px center no-repeat;
  background-size: 15px auto; }
.c-form-control.error::-webkit-input-placeholder {
  color: #e60038;
  font-weight: bold; }
.c-form-control.error::-moz-placeholder {
  color: #e60038;
  font-weight: bold; }
.c-form-control.error::-ms-input-placeholder {
  color: #e60038;
  font-weight: bold; }
.c-form-control.error:-moz-placeholder-shown {
  color: #e60038;
  font-weight: bold; }
.c-form-control.error::placeholder, .c-form-control.error:placeholder-shown {
  color: #e60038;
  font-weight: bold; }
.c-form-button {
  background-color: #e60038;
  border: 1px solid #e60038;
  border-radius: 25px;
  cursor: pointer;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  color: #fff;
  font-weight: bold;
  display: block;
  min-height: 44px;
  font-size: 1.6rem;
  line-height: 1.1;
  max-width: 320px;
  padding: 12px 15px 11px;
  text-align: center;
  width: 100%; }
.c-form-button.-submit {
  font-size: 1.8rem; }
.c-google-maps {
  position: relative;
  padding-bottom: 75%;
  height: 0;
  overflow: hidden; }
.c-google-maps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; }
.c-pagenavi {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%; }
.c-pagenavi__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 33%;
    width: 320px; }
.c-pagenavi__item-prev, .c-pagenavi__item-next {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 1.87;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex; }
.c-pagenavi__item-prev span, .c-pagenavi__item-next span {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; }
.c-pagenavi__item-prev:before {
    background: url(../images/icon-prev.svg) left top no-repeat;
    background-size: 100% 100%;
    content: '';
    display: block;
    height: 33px;
    margin-right: 40px;
    width: 39px; }
.c-pagenavi__item-next:after {
    background: url(../images/icon-next.svg) left top no-repeat;
    background-size: 100% 100%;
    content: '';
    display: block;
    height: 33px;
    margin-left: 40px;
    width: 39px; }
/**
* wordpress
* WYSIWYG compatchble style
*/
.c-wp-post_article {
  font-size: 1.5rem;
  line-height: 1.87;
  overflow: hidden; }
.c-wp-post_article h1,
  .c-wp-post_article h2,
  .c-wp-post_article h3,
  .c-wp-post_article h4,
  .c-wp-post_article h5,
  .c-wp-post_article h6 {
    clear: both;
    font-family: inherit;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 1.67;
    margin-bottom: 10px;
    margin-bottom: 0.625rem;
    margin-top: 60px;
    margin-top: 3.125em; }
.c-wp-post_article h1 {
    font-size: 3.6rem;
    margin-bottom: 1em;
    margin-top: 0; }
.c-wp-post_article h2 {
    font-size: 2.4rem; }
.c-wp-post_article h3 {
    font-size: 2.0rem; }
.c-wp-post_article h4 {
    font-size: 1.8rem; }
.c-wp-post_article p {
    font-weight: normal;
    line-height: 2;
    margin: 1.6rem 0; }
.c-wp-post_article small {
    font-size: 1.4rem; }
.c-wp-post_article strong {
    font-weight: bold; }
.c-wp-post_article em {
    font-style: italic; }
.c-wp-post_article ul {
    margin-left: 1em;
    display: block;
    list-style-type: disc !important;
    margin-before: 1em;
    margin-after: 1em;
    margin-start: 0px;
    margin-end: 0px;
    padding-start: 40px; }
.c-wp-post_article ol {
    display: block;
    list-style-type: decimal !important;
    margin-before: 1em;
    margin-after: 1em;
    margin-start: 0px;
    margin-end: 0px;
    padding-start: 40px; }
.c-wp-post_article li {
    display: list-item;
    text-align: match-parent; }
.c-wp-post_article img {
    width: auto; }
.c-wp-post_article .wp-caption {
    margin-bottom: 60px; }
.c-wp-post_article .wp-caption-text {
    background-color: #fff;
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
    padding: 20px;
    width: 100%; }
.c-wp-post_article .alignleft {
    display: inline;
    float: left; }
.c-wp-post_article .alignright {
    display: inline;
    float: right; }
.c-wp-post_article .aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto; }
.c-wp-post_article blockquote.alignleft,
  .c-wp-post_article .wp-caption.alignleft,
  .c-wp-post_article img.alignleft {
    display: block;
    margin: 0.4em 1.6em 2.5em 0; }
.c-wp-post_article blockquote.alignright,
  .c-wp-post_article .wp-caption.alignright,
  .c-wp-post_article img.alignright {
    display: block;
    margin: 0.4em 0 2.5em 1.6em; }
.c-wp-post_article blockquote.aligncenter,
  .c-wp-post_article .wp-caption.aligncenter,
  .c-wp-post_article img.aligncenter {
    clear: both;
    margin-top: 0.4em;
    margin-bottom: 2.5em; }
.c-wp-post_article .wp-caption.alignleft,
  .c-wp-post_article .wp-caption.alignright,
  .c-wp-post_article .wp-caption.aligncenter {
    margin-bottom: 2.5em; }
.c-wp-post_article .fz-l {
    font-size: 1.8rem; }
.c-wp-post_article .fz-s {
    font-size: 1.4rem; }
.c-wp-post_article .caption {
    color: #999999;
    font-size: 1.4rem; }
.c-wp-post_article .wp-block-gallery.has-nested-images figure.wp-block-image figcaption,
  .c-wp-post_article .wp-element-caption {
    background: #fff;
    color: #0D0D0D;
    display: block;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;
    padding: 10px;
    position: relative;
    text-align: left; }
.c-wp-post_article .wp-element-caption em {
    font-style: normal; }
.c-wp-post_article .flex-caption {
    position: relative;
    overflow-y: scroll;
    max-height: 160px;
    font-size: 18px;
    scrollbar-color: #e60038 #fff; }
.c-wp-post_article .flex-caption::-webkit-scrollbar {
      width: 10px; }
.c-wp-post_article .flex-caption::-webkit-scrollbar-track {
      background: #fff; }
.c-wp-post_article .flex-caption::-webkit-scrollbar-thumb {
      background: #e60038;
      border-radius: 20px; }
.c-wp-post_article .wp-element-caption__more {
    display: table;
    position: absolute;
    bottom: 3px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 10px auto 0 auto;
    z-index: 2;
    padding: 0 10px;
    background-color: #e60038;
    color: #FFF;
    border-radius: 20px;
    font-size: 1.2rem;
    cursor: pointer; }
.c-wp-post_article .wp-element-caption__more::before {
      content: 'テロップ全文'; }
.c-wp-post_article .wp-element-caption__more-check {
    display: none; }
.c-wp-post_article .wp-element-caption__more-check ~ .wp-element-caption__more {
      position: static;
      -webkit-transform: translateX(0);
              transform: translateX(0); }
.c-wp-post_article .wp-element-caption__more-check:checked + .wp-element-caption .flex-caption {
      max-height: unset; }
.c-wp-post_article .wp-element-caption__more-check:checked ~ .wp-element-caption__more::before {
      content: '閉じる'; }
.u-bg__gray {
  background-color: #f2f2f2; }
/**
 * clearfix micro
 */
.clearfix:after {
  content: "";
  clear: both;
  display: block; }
/**
 * text ellipsis., text...
 */
.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.u-hide {
  display: none; }
.u-click {
  cursor: pointer; }
/**
 * BrowserSync
 */
#__bs_notify__ {
  display: none !important;
  font-size: 8px !important;
  opacity: .25;
  max-height: 50px; }
.__debug_mihon__ {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: 0 auto 0 auto;
  z-index: 100000;
  pointer-events: none;
  cursor: none;
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-animation: __debug_mihon__ 1s infinite;
          animation: __debug_mihon__ 1s infinite; }
.__debug_mihon__ {
  padding-top: 0px;
  margin-top: 0px; }
@-webkit-keyframes __debug_mihon__ {
  0% {
    opacity: 0; }
  60% {
    opacity: .5; }
  100% {
    opacity: .5; } }
/*
@example
 <div class="mihon">
  <img src="./images/sample1.png" alt="" class="type_pc">
  <img src="./images/sample2.png" alt="" class="type_sp">
</div>
*/
@media (min-width: 960px) {
  .ex-link {
    opacity: 1;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear; }
    .ex-link:hover {
      opacity: .5; }
      .l-header__btn {
        position: absolute;
        visibility: hidden; }
      .l-header__btn-border {
        position: absolute;
        right: 20px;
        top: -10px; }
      .l-header-openarea__nav {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .l-header-openarea__nav-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        width: 92%; }
        .l-header-openarea__nav-list li {
          width: 25%; }
        .l-header-openarea__nav-list a {
          -webkit-transition: opacity .3s;
          transition: opacity .3s; }
          .l-header-openarea__nav-list a:hover {
            opacity: 0.65; }
    .l-main {
      padding-top: 80px; }
    .p-archive-top__list li {
      margin-bottom: 90px; }
    .p-archive-top__list li:not(.-pickup) {
      width: calc(33% - 15px); }
    .p-archive__list li:not(.-pickup) {
      width: calc(33% - 15px); }
    .p-login {
      padding: 12vh 0 6vh; }
      .p-login__body {
        background: url(../images/login-bg.png) center top no-repeat;
        background-size: 100% auto;
        margin-top: 5vh;
        min-height: 390px; }
      .p-login__link {
        opacity: 1;
        -webkit-transition: opacity 0.2s linear;
        transition: opacity 0.2s linear; }
        .p-login__link:hover {
          opacity: .6; }
      .p-login__errorWindow-inner {
        font-size: 2.4rem; }
      .p-login__errorWindow p {
        line-height: 1.6;
        margin-bottom: 0.5em; }
      .p-login__errorWindow .c-form-button {
        margin-top: 2em; }
        .p-login__thanks p {
          font-size: 2.4rem;
          margin-bottom: 0.5em; }
  .p-mv-heading {
    margin: 0 auto 30px; }
    .p-mv-heading__pix {
      position: relative; }
    .p-mv-heading__pix-ttl {
      background-color: rgba(255, 255, 255, 0.5);
      bottom: 0;
      color: #333;
      font-size: 3rem;
      font-weight: bold;
      line-height: 1.67;
      left: 0;
      padding: 35px;
      position: absolute;
      width: 100%; }
    .c-form-button {
      opacity: 1;
      -webkit-transition: -webkit-filter 0.2s linear;
      transition: -webkit-filter 0.2s linear;
      transition: filter 0.2s linear;
      transition: filter 0.2s linear, -webkit-filter 0.2s linear; }
      .c-form-button:hover {
        -webkit-filter: brightness(1.2);
                filter: brightness(1.2); }
  .for-mobile {
    display: none; } }
@media (max-width: 959px) {
  html, body {
    width: 100%;
    height: 100%; }
  h1, h2, h3, h4, h5, h6, div, dl, dt, dd, p {
    margin: 0;
    padding: 0; }
  img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    width: auto; }
    .l-footer {
      padding: 20px 20px 50px; }
      .l-header__head {
        padding: 19px 20px 18px 20px; }
      .l-header__logo {
        width: 161px; }
        .l-header__btn-border span {
          -webkit-transition: opacity .3s, background-color .3s, -webkit-transform .3s;
          transition: opacity .3s, background-color .3s, -webkit-transform .3s;
          transition: transform .3s, opacity .3s, background-color .3s;
          transition: transform .3s, opacity .3s, background-color .3s, -webkit-transform .3s; }
      .l-header-openarea__nav {
        padding: 87px 0; }
        .l-header-openarea__nav-list li {
          margin-top: 40px;
          width: 100%; }
    .l-main {
      padding-top: 60px; }
  .p-archive-top__inner {
    padding: 40px 0; }
    .p-archive__heading {
      font-size: clamp(2.8rem, 7.6vw, 3rem); }
    .p-archive__inner {
      padding: 60px 5%; }
  .p-archive__inner {
    padding: 50px 0; }
  .p-mv__inner {
    width: 100%; }
    .p-mv__inner img {
      margin: auto;
      width: 100%; }
  .p-mv-news {
    padding: 30px 0;
    width: 90%; }
    .p-mv-news__item {
      display: block;
      line-height: 1.87;
      margin-bottom: 15px; }
    .p-mv-news__item-date {
      width: 100%; }
    .p-mv-news__item-ttl {
      margin-top: 0;
      width: 100%; }
    .p-mv-news__more {
      margin-left: auto; }
    .p-single-backnumber {
      padding: 0; }
      .p-single-backnumber__inner {
        width: 100%; }
      .p-single-backnumber__link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        padding: 15px 5%;
        position: relative;
        text-align: center;
        width: 100%; }
      .p-single-backnumber__link:before {
        bottom: 0;
        height: 22px;
        left: 5%;
        margin: auto;
        position: absolute;
        top: 0;
        width: 27px; }
  .p-single__header {
    margin: 0 auto; }
  .p-single__title {
    font-size: clamp(2.4rem, 6.4vw, 2.8rem);
    margin-bottom: 15px; }
  .p-single__tag {
    font-size: clamp(1rem, 0.27vw, 1.1rem);
    padding: 6px 20px; }
  .p-single__footer {
    padding: 60px 0; }
      .c-box__category {
        font-size: 1.2rem;
        margin-top: 16px;
        border-radius: 16px; }
      .c-box__country-name {
        margin-bottom: 16px; }
    .c-box__ttl {
      margin-top: 15px; }
    .c-pagenavi {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin: 0 auto;
      padding: 0;
      width: 90%; }
      .c-pagenavi__item {
        -webkit-box-pack: auto;
            -ms-flex-pack: auto;
                justify-content: auto;
        margin-bottom: 40px;
        max-width: 100%;
        width: calc(100% - 44px); }
      .c-pagenavi__item:nth-child(1) {
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2;
        margin-left: 0;
        margin-right: auto; }
      .c-pagenavi__item:nth-child(2) {
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        margin-left: auto;
        margin-right: auto; }
      .c-pagenavi__item:nth-child(3) {
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1;
        margin-left: auto;
        margin-right: 0; }
      .c-pagenavi__item-prev, .c-pagenavi__item-next {
        padding-left: 0;
        padding-right: 0; }
      .c-pagenavi__item-prev:before {
        margin-right: 17px;
        height: 22px;
        width: 27px; }
      .c-pagenavi__item-next:after {
        margin-left: 17px;
        height: 22px;
        width: 27px; }
      .c-wp-post_article h1 {
        font-size: clamp(2.4rem, 6.48vw, 2.8rem); }
      .c-wp-post_article h2 {
        font-size: 2.2rem; }
      .c-wp-post_article blockquote.alignleft,
      .c-wp-post_article .wp-caption.alignleft,
      .c-wp-post_article img.alignleft {
        clear: both;
        float: none;
        margin-right: auto;
        margin-left: auto; }
      .c-wp-post_article blockquote.alignright,
      .c-wp-post_article .wp-caption.alignright,
      .c-wp-post_article img.alignright {
        clear: both;
        float: none;
        margin-right: auto;
        margin-left: auto; }
  .for-large {
    display: none; } }
@media (max-width: 700px) {
  .profile img {
    width: 180px;
    height: 180px; } }
@media (max-width: 519px) {
      .l-header__logo {
        width: 121px; }
    .p-archive-top__list {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .p-archive__header {
      background-color: #fff;
      padding: 20px 5% 16px; }
    .p-archive__list {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      .p-mv-heading__button {
        margin: 0 auto; }
  .p-mv-heading {
    margin: 0 auto 30px; }
    .p-mv-heading__title {
      font-size: 1.4rem;
      padding: 12px 5% 11px;
      text-align: center; }
    .p-mv-heading__title-date {
      font-size: 1.4rem; }
    .p-mv-heading__title-no {
      font-size: 2.4rem; }
    .p-mv-heading__pix .p-mv-heading__title {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      text-align: left;
      padding: 20px 6% 25px; }
    .p-mv-heading__pix .p-mv-heading__title-date {
      font-size: clamp(1.6rem, 3.5vw, 1.8rem); }
    .p-mv-heading__pix .p-mv-heading__title-no {
      font-size: clamp(3.6rem, 9.6vw, 6rem);
      line-height: 1.1; } }
@media (--desktop) {
      .l-header__nav-list {
        content-visibility: hidden; } }
@media (min-width: 520px) and (max-width: 959px) {
    .p-archive-top__list li:not(.-pickup) {
      width: calc(50% - 13px); }
    .p-archive-top__list:before, .p-archive-top__list:after {
      width: calc(50% - 13px); }
    .p-archive__list li:not(.-pickup) {
      width: calc(50% - 13px); }
    .p-archive__list:before, .p-archive__list:after {
      width: calc(50% - 13px); }
  .p-mv-news {
    padding: 12px 0;
    width: 90%; } }
@media print {
  .-is-forbidden {
    display: none; } }
/*# sourceMappingURL=../../_cache/_maps/styles.css.map */
