@charset "UTF-8";
html {
  visibility: hidden; }
  html.loading-delay, html.wf-active {
    visibility: visible; }

.search--open {
  overflow: hidden; }

.pc1024-only {
  display: none; }

@media only screen and (min-width: 1024px) {
  .pc1024-only {
    display: block; } }
.pc769-only {
  display: none !important; }

@media only screen and (min-width: 769px) {
  .pc769-only {
    display: block; } }
.pc415-only {
  display: none; }

@media only screen and (min-width: 415px) {
  .pc415-only {
    display: block; } }
.sp414-only, .sp768-only {
  display: none !important; }

@media only screen and (max-width: 414px) {
  .sp414-only {
    display: block !important; } }
@media only screen and (max-width: 768px) {
  .sp768-only {
    display: block !important; } }
.btn {
  margin: 4rem 0; }
  .btn.btn-apply {
    margin: 10rem auto; }

@media screen and (max-width: 768px) {
  .btn.btn-apply {
    margin: 5rem auto; } }
@media screen and (max-width: 414px) {
  .btn.btn-apply {
    margin: 4rem auto; } }
@media screen and (max-width: 768px) {
  .btn {
    margin: 3rem 0; } }
.btn__read-more {
  text-align: center;
  margin-top: 9rem; }

.category__list + .btn__read-more {
  margin-top: 5rem;
  margin-bottom: 9rem; }

@media screen and (max-width: 980px) {
  .btn__read-more {
    margin-top: 7rem; }

  .category__list + .btn__read-more {
    margin-top: 3rem;
    margin-bottom: 7rem; } }
@media screen and (max-width: 768px) {
  .btn__read-more {
    margin-top: 3rem; } }
@media screen and (max-width: 414px) {
  .category__list + .btn__read-more {
    margin-top: 2rem;
    margin-bottom: 5rem; } }
.btn__read-more-link {
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  padding: 2rem;
  color: #001E46;
  line-height: 1;
  position: relative; }
  .btn__read-more-link::before {
    content: "";
    display: inline-block;
    position: absolute;
    -webkit-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    transform: rotate(-55deg);
    width: 30px;
    height: 2px;
    top: 20px;
    left: -5px;
    background-image: -webkit-linear-gradient(left, #001E46 50%, transparent 50%);
    background-image: linear-gradient(to right, #001E46 50%, transparent 50%);
    background-position: 0 0;
    background-size: 200% auto;
    -webkit-animation: line-loop 2s ease-in-out infinite;
    animation: line-loop 2s ease-in-out infinite;
    -webkit-backface-visibility: none;
    backface-visibility: none;
    -webkit-transition: all 0.8s;
    transition: all 0.8s; }
  .btn__read-more-link:hover::before {
    background-image: none;
    background-color: #001E46; }
  .btn__read-more-link .text-hover {
    padding: 0;
    letter-spacing: 0.1em;
    display: inline-block; }

@media screen and (max-width: 768px) {
  .btn__read-more-link {
    font-size: 1.6rem; } }
@-webkit-keyframes line-loop {
  0% {
    background-position: 0 0; }
  50% {
    background-position: -100% 0; }
  100% {
    background-position: -200% 0; } }
@keyframes line-loop {
  0% {
    background-position: 0 0; }
  50% {
    background-position: -100% 0; }
  100% {
    background-position: -200% 0; } }
.btn-jobs {
  text-align: center; }

@media screen and (max-width: 768px) {
  .btn-jobs {
    padding: 0 30px; } }
@media screen and (max-width: 414px) {
  .btn-jobs {
    padding: 0 20px; } }
.btn-jobs__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 87px;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #001E46;
  max-width: 440px;
  margin: auto;
  padding: 3px;
  background-image: url(../img/bg_btn.png);
  background-size: 9px;
  background-repeat: repeat; }
  .btn-jobs__link span {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    height: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #fff;
    background-image: -webkit-linear-gradient(left, transparent 50%, #E6FF00 50%);
    background-image: linear-gradient(to right, transparent 50%, #E6FF00 50%);
    background-position: 0 0;
    background-size: 200% auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden; }
    .btn-jobs__link span:before {
      content: "";
      display: block;
      width: 38px;
      height: 1px;
      background-color: #001E46;
      position: absolute;
      top: 50%;
      right: 30px;
      margin-top: -2px;
      -webkit-transition: width 0.3s ease, right 0.3s ease;
      transition: width 0.3s ease, right 0.3s ease; }
    .btn-jobs__link span:after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 0 0 9px;
      border-color: transparent transparent transparent #001E46;
      position: absolute;
      top: 50%;
      right: 30px;
      margin-top: -8px;
      -webkit-transition: right 0.3s ease;
      transition: right 0.3s ease; }
  .btn-jobs__link:hover span {
    background-position: -100% 0; }
  .btn-jobs__link:hover:before {
    width: 55px; }

@media screen and (max-width: 768px) {
  .btn-jobs__link {
    height: 50px;
    font-size: 1.6rem; } }
@media screen and (max-width: 768px) {
  .btn-jobs__link span:before {
    width: 28px;
    margin-top: 0; } }
@media screen and (max-width: 414px) {
  .btn-jobs__link span:before {
    right: 20px; } }
@media screen and (max-width: 768px) {
  .btn-jobs__link span:after {
    border-width: 4px 0 0 6px;
    margin-top: -4px; } }
@media screen and (max-width: 414px) {
  .btn-jobs__link span:after {
    right: 20px; } }
@media screen and (max-width: 768px) {
  .btn-jobs__link:hover:before {
    width: 45px; } }
.btn-top {
  margin: 10rem auto; }
  .btn-top:last-child {
    margin-bottom: 0; }

@media screen and (max-width: 768px) {
  .btn-top {
    margin: 4rem auto; } }
.btn-top__link {
  width: 8rem;
  margin: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #001E46;
  letter-spacing: 0.1em;
  text-align: center;
  text-indent: 0.2em;
  line-height: 1; }
  .btn-top__link:before {
    content: "";
    display: block;
    width: 24px;
    height: 14px;
    background-image: url(../img/totop.svg);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 1rem;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease; }
  .btn-top__link:hover:before {
    -webkit-transform: translateY(-40%);
    -ms-transform: translateY(-40%);
    transform: translateY(-40%); }

.btn__normal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 70px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #fff;
  background-color: #001E46;
  max-width: 440px;
  margin: auto;
  position: relative; }
  .btn__normal::after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 5px;
    background: url(../img/svg/link_arrow-wh.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    right: 2rem;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%); }
  .btn__normal:hover .hover {
    opacity: 1; }
  .btn__normal.hover {
    color: #001E46;
    background-color: #E6FF00;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
    pointer-events: none; }
    .btn__normal.hover::after {
      background: url(../img/svg/link_arrow.svg) no-repeat center center; }

@media screen and (max-width: 768px) {
  .btn__normal {
    height: 50px;
    font-size: 1.4rem; } }
@media screen and (max-width: 414px) {
  .btn__normal {
    max-width: 250px;
    height: 35px;
    font-size: 1.1rem; } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .btn__normal:hover .hover {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .btn__normal.hover {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: -webkit-clip-path 0.3s ease;
    transition: -webkit-clip-path 0.3s ease;
    transition: clip-path 0.3s ease;
    transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease; } }
@-webkit-keyframes float {
  0% {
    -webkit-transform: translateY(10px) rotate(-55deg);
    transform: translateY(10px) rotate(-55deg); }
  50% {
    -webkit-transform: translateY(0) rotate(-55deg);
    transform: translateY(0) rotate(-55deg); }
  100% {
    -webkit-transform: translateY(10px) rotate(-55deg);
    transform: translateY(10px) rotate(-55deg); } }
@keyframes float {
  0% {
    -webkit-transform: translateY(10px) rotate(-55deg);
    transform: translateY(10px) rotate(-55deg); }
  50% {
    -webkit-transform: translateY(0) rotate(-55deg);
    transform: translateY(0) rotate(-55deg); }
  100% {
    -webkit-transform: translateY(10px) rotate(-55deg);
    transform: translateY(10px) rotate(-55deg); } }
.text-hover {
  background-image: -webkit-linear-gradient(left, #fff 50%, #E6FF00 50%);
  background-image: linear-gradient(to right, #fff 50%, #E6FF00 50%);
  background-position: 0 0;
  background-size: 200% auto;
  -webkit-transition: background-position 0.3s ease;
  transition: background-position 0.3s ease; }

@media all and (-ms-high-contrast: none) {
  .text-hover {
    background-image: -webkit-linear-gradient(left, #fff 100%, #E6FF00 100%);
    background-image: linear-gradient(to right, #fff 100%, #E6FF00 100%);
    background-size: 100% auto; } }
a:hover .text-hover {
  background-position: -100% 0; }

@media all and (-ms-high-contrast: none) {
  a:hover .text-hover {
    background-position: 0 0;
    background-image: -webkit-linear-gradient(left, #fff 0, #E6FF00 0);
    background-image: linear-gradient(to right, #fff 0, #E6FF00 0); } }
.text-hover-transparent {
  background-image: -webkit-linear-gradient(left, transparent 50%, #E6FF00 50%);
  background-image: linear-gradient(to right, transparent 50%, #E6FF00 50%);
  background-position: 0 0;
  background-size: 200.5% auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: inherit; }

@media all and (-ms-high-contrast: none) {
  .text-hover-transparent {
    background-image: -webkit-linear-gradient(left, transparent 100.5%, #E6FF00 100.5%);
    background-image: linear-gradient(to right, transparent 100.5%, #E6FF00 100.5%);
    background-size: 100% auto; } }
a:hover .text-hover-transparent {
  background-position: -100% 0; }

@media all and (-ms-high-contrast: none) {
  a:hover .text-hover-transparent {
    background-position: 0 0;
    background-image: -webkit-linear-gradient(left, transparent 0, #E6FF00 0);
    background-image: linear-gradient(to right, transparent 0, #E6FF00 0); } }
.text-hover-white {
  display: block;
  padding: 0.1rem 0;
  background-image: -webkit-linear-gradient(left, #001E46 50%, #E6FF00 50%);
  background-image: linear-gradient(to right, #001E46 50%, #E6FF00 50%);
  background-position: 0 0;
  background-size: 200% auto; }

.text-hover-yel {
  display: block;
  position: absolute;
  top: 0;
  left: 1rem;
  padding: 0.1rem 0;
  color: #001E46;
  background-color: #E6FF00;
  pointer-events: none;
  opacity: 0;
  font-weight: inherit;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  pointer-events: none; }

@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .text-hover-yel {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: -webkit-clip-path 0.3s ease;
    transition: -webkit-clip-path 0.3s ease;
    transition: clip-path 0.3s ease;
    transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease; } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%)) {
  .mask-heading {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: -webkit-clip-path 0.5s ease-in;
    transition: -webkit-clip-path 0.5s ease-in;
    transition: clip-path 0.5s ease-in;
    transition: clip-path 0.5s ease-in, -webkit-clip-path 0.5s ease-in; } }
.mask-heading.open {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
  clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); }

.mask-ttl__child {
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  pointer-events: none; }
  .mask-ttl__child:before {
    -webkit-transition: width 0.3s ease !important;
    transition: width 0.3s ease !important;
    -webkit-transition-delay: 0.5s !important;
    transition-delay: 0.5s !important; }
  .mask-ttl__child.open {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); }

@supports (-webkit-clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%)) or (clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%)) {
  .mask-ttl__child {
    opacity: 1;
    -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    -webkit-transition: -webkit-clip-path 0.4s ease;
    transition: -webkit-clip-path 0.4s ease;
    transition: clip-path 0.4s ease;
    transition: clip-path 0.4s ease, -webkit-clip-path 0.4s ease; } }
.infadeIn, .infadeIn--child {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  will-change: transform, opacity; }

.mask__child, .mask__outer {
  overflow: hidden;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  position: relative;
  text-overflow: inherit;
  font-weight: inherit;
  max-width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.mask__inner {
  overflow: hidden;
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
  text-overflow: inherit;
  font-weight: inherit;
  max-width: 100%;
  z-index: -1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.mask-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.slide__figure {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .slide__figure .mask__inner, .slide__figure .mask__outer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.slide__pagination-box.mask-slide {
  z-index: 1; }
  .slide__pagination-box.mask-slide .mask__inner, .slide__pagination-box.mask-slide .mask__outer {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px; }

@media screen and (max-width: 768px) {
  .slide__pagination-box.mask-slide {
    padding-bottom: 20px; } }
@media screen and (max-width: 768px) {
  .page-top .news .swiper-container {
    padding-bottom: 80px; } }
@media screen and (max-width: 414px) {
  .page-top .news .swiper-container {
    padding-bottom: 60px; } }
.page-top .news .swiper-slide, .page-top .news .swiper-wrapper {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s; }
.page-top .news .slide__body.on .mask__inner, .page-top .news .slide__body.on .mask__outer {
  overflow: visible; }

abbr, address, article, aside, audio, b, blockquote, body, canvas, caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0; }

img {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: bottom;
  background: 0 0;
  height: auto; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:after, blockquote:before {
  content: "";
  content: none; }

q:after, q:before {
  content: "";
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: 0 0;
  text-decoration: none; }

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

.clearfix {
  display: inline-table;
  min-height: 1%; }
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden; }

* html .clearfix {
  height: 1%; }

.clearfix {
  display: block; }

.clear {
  clear: both; }

input[type=submit], input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer; }
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration {
  display: none; }
input[type=submit]::focus, input[type=button]::focus {
  outline-offset: -2px; }

@font-face {
  font-family: Staatliches;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Staatliches Regular"), local("Staatliches-Regular"), url(https://fonts.gstatic.com/s/staatliches/v3/HI_OiY8KO6hCsQSoAPmtMYebvpCfOMPT.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
* {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }

body {
  font-size: 1.6rem;
  line-height: 1.5;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  color: #001E46;
  font-family: Staatliches, dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  overflow-x: hidden; }

main {
  display: block; }

i {
  font-style: normal; }

::-moz-selection, ::selection {
  background: #E6FF00; }

img {
  max-width: 100%; }

.dn {
  display: none; }

a {
  color: #001E46;
  -webkit-tap-highlight-color: transparent; }

button {
  -webkit-tap-highlight-color: transparent; }

.heading--h2 {
  font-size: 4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 100px;
  margin-bottom: 4rem;
  line-height: 1;
  position: relative;
  display: -webkit-box; }
  .heading--h2:before {
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: rotate(-55deg) scaleX(0) translateY(100%) !important;
    -ms-transform: rotate(-55deg) scaleX(0) translateY(100%) !important;
    transform: rotate(-55deg) scaleX(0) translateY(100%) !important;
    -webkit-transition: -webkit-transform 0.4s ease !important;
    transition: -webkit-transform 0.4s ease !important;
    transition: transform 0.4s ease !important;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease !important;
    -webkit-transition-delay: 0.6s !important;
    transition-delay: 0.6s !important;
    margin-top: 1rem;
    margin-left: 1rem; }
  .heading--h2.open:before {
    -webkit-transform: rotate(-55deg) scaleX(1) translateY(100%) !important;
    -ms-transform: rotate(-55deg) scaleX(1) translateY(100%) !important;
    transform: rotate(-55deg) scaleX(1) translateY(100%) !important; }
  .heading--h2::after {
    content: "";
    background-color: #001E46; }
  .heading--h2::before {
    content: "";
    background-color: #001E46;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 5px;
    -webkit-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    transform: rotate(-55deg); }
  .heading--h2::after {
    display: block;
    width: 100%;
    height: 2px;
    margin-left: 30px;
    -webkit-transform: translateY(2rem);
    -ms-transform: translateY(2rem);
    transform: translateY(2rem);
    margin-right: 0;
    margin-left: auto; }

@media screen and (max-width: 1024px) {
  .heading--h2 {
    font-size: 3rem;
    margin-right: -2rem;
    padding-left: 20px;
    width: 100%; } }
@media screen and (max-width: 1024px) {
  .heading--h2::before {
    width: 100%;
    height: 3px; } }
@media screen and (max-width: 1024px) {
  .heading--h2::after {
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    margin-left: 15px; } }
@media screen and (max-width: 768px) {
  .heading--h2 {
    font-size: 3rem;
    margin-right: -2rem;
    padding-left: 20px;
    width: 100%; } }
@media screen and (max-width: 768px) {
  .heading--h2::before {
    width: 100%;
    height: 3px; } }
@media screen and (max-width: 768px) {
  .heading--h2::after {
    -webkit-transform: translateY(1rem);
    -ms-transform: translateY(1rem);
    transform: translateY(1rem);
    margin-left: 15px; } }
@media screen and (max-width: 414px) {
  .heading--h2 {
    font-size: 2rem;
    margin-left: -20px;
    width: 100%;
    background-color: #001E46;
    color: #FFF;
    line-height: normal; } }
@media screen and (max-width: 414px) {
  .heading--h2::before {
    width: 28px;
    height: 3px; } }
@media screen and (max-width: 414px) {
  .heading--h2::after {
    content: none; } }
.header {
  margin: 0 auto; }

@media screen and (max-width: 768px) {
  .header {
    height: 12rem; } }
.left-margin {
  margin-left: 12rem;
  margin-left: 150px; }

@media only screen and (max-width: 1200px) {
  .left-margin {
    margin-left: 130px; } }
@media screen and (max-width: 768px) {
  .left-margin {
    margin-left: auto; } }
@media screen and (max-width: 768px) {
  .left-margin {
    margin-left: 30px; } }
@media screen and (max-width: 414px) {
  .left-margin {
    margin-left: 20px; } }
.side-margin {
  margin-left: 150px;
  margin-right: 150px; }

@media only screen and (max-width: 1200px) {
  .side-margin {
    margin-left: 130px;
    margin-right: 50px; } }
@media screen and (max-width: 768px) {
  .side-margin {
    margin-right: 30px;
    margin-left: 30px; }
    .side-margin.second {
      margin-left: 0;
      margin-right: 0; } }
@media screen and (max-width: 414px) {
  .side-margin {
    margin-right: 20px;
    margin-left: 20px; }
    .side-margin.second {
      margin-left: 0;
      margin-right: 0; } }
main {
  max-width: 192rem;
  margin: 0 auto; }

@media screen and (max-width: 768px) {
  main {
    width: 100%; } }
section {
  margin: 12rem 0; }
  section.news {
    margin-top: 57px;
    margin-left: 12rem;
    overflow: hidden; }

@media screen and (max-width: 980px) {
  section {
    margin: 8rem 0; } }
@media screen and (max-width: 768px) {
  section {
    margin: 6rem 0; } }
@media screen and (max-width: 980px) {
  section.news {
    margin-top: 35px; } }
@media screen and (max-width: 768px) {
  section.news {
    margin-left: 0;
    margin-top: 10px; } }
.container-wrapper {
  padding-right: 5rem;
  padding-left: 5rem; }

@media screen and (max-width: 768px) {
  .container-wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 0; } }
.a-article {
  padding-top: 15rem;
  overflow: hidden; }

@media screen and (max-width: 768px) {
  .a-article {
    padding-top: 5rem; } }
.a-container {
  max-width: 980px;
  margin: auto;
  padding: 0 9rem; }

@media screen and (max-width: 1024px) {
  .a-container {
    padding: 0 4rem; } }
@media screen and (max-width: 768px) {
  .a-container {
    padding: 0;
    width: 100%; } }
.footer {
  padding: 10rem 150px 7rem;
  margin-top: 10rem; }

@media only screen and (max-width: 1200px) {
  .footer {
    padding-left: 130px;
    padding-right: 50px; } }
@media screen and (max-width: 768px) {
  .footer {
    padding: 4rem 3rem;
    margin-top: 4rem; } }
@media screen and (max-width: 414px) {
  .footer {
    padding: 4rem 1rem 3rem;
    margin-top: 4rem; } }
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

.swiper-container-autoheight {
  height: auto; }
  .swiper-container-autoheight .swiper-slide {
    height: auto; }
  .swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-transition-property: height, -webkit-transform;
    transition-property: height, -webkit-transform;
    transition-property: transform, height;
    transition-property: transform, height, -webkit-transform; }

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px; }
  .swiper-container-3d .swiper-cube-shadow, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-wrapper {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d; }
  .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10; }
  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), transparent); }
  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), transparent); }
  .swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent); }
  .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(transparent));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), transparent);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent); }

.swiper-container-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }
  .swiper-container-wp8-horizontal > .swiper-wrapper {
    -ms-touch-action: pan-y;
    touch-action: pan-y; }

.swiper-container-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }
  .swiper-container-wp8-vertical > .swiper-wrapper {
    -ms-touch-action: pan-x;
    touch-action: pan-x; }

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }
  .swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none; }

.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-prev.swiper-button-white, .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white, .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-black, .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-black, .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-lock {
  display: none; }

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }
  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0; }

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%; }

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0; }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33);
    position: relative; }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active, .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    -webkit-transform: scale(0.66);
    -ms-transform: scale(0.66);
    transform: scale(0.66); }
  .swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    -webkit-transform: scale(0.33);
    -ms-transform: scale(0.33);
    transform: scale(0.33); }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2; }

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }
  .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 6px 0;
    display: block; }
  .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 8px; }
    .swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
      display: inline-block;
      -webkit-transition: 0.2s top, 0.2s -webkit-transform;
      transition: 0.2s top, 0.2s -webkit-transform;
      -webkit-transition: 0.2s transform, 0.2s top;
      transition: 0.2s transform, 0.2s top;
      -webkit-transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
      transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px; }
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap; }
  .swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    -webkit-transition: 0.2s left, 0.2s -webkit-transform;
    transition: 0.2s left, 0.2s -webkit-transform;
    -webkit-transition: 0.2s transform, 0.2s left;
    transition: 0.2s transform, 0.2s left;
    -webkit-transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
    transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform; }
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -webkit-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  -webkit-transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform; }

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }
  .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progressbar, .swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25); }
  .swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
    background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25); }
  .swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
    background: #000; }

.swiper-pagination-lock {
  display: none; }

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-scrollbar-lock {
  display: none; }

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center; }
  .swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; }

.swiper-slide-zoomed {
  cursor: move; }

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite; }
  .swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: 50%;
    background-size: 100%;
    background-repeat: no-repeat; }

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E"); }

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity; }
  .swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none; }
.swiper-container-fade .swiper-slide-active {
  pointer-events: auto; }
  .swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto; }

.swiper-container-cube {
  overflow: visible; }
  .swiper-container-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%; }
    .swiper-container-cube .swiper-slide .swiper-slide {
      pointer-events: none; }
  .swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0; }
  .swiper-container-cube .swiper-slide-active {
    pointer-events: auto;
    pointer-events: auto;
    visibility: visible; }
    .swiper-container-cube .swiper-slide-active .swiper-slide-active {
      pointer-events: auto; }
  .swiper-container-cube .swiper-slide-next {
    pointer-events: auto;
    visibility: visible; }
    .swiper-container-cube .swiper-slide-next + .swiper-slide {
      pointer-events: auto;
      visibility: visible; }
  .swiper-container-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible; }
  .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-cube .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0; }

.swiper-container-flip {
  overflow: visible; }
  .swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1; }
    .swiper-container-flip .swiper-slide .swiper-slide {
      pointer-events: none; }
  .swiper-container-flip .swiper-slide-active {
    pointer-events: auto; }
    .swiper-container-flip .swiper-slide-active .swiper-slide-active {
      pointer-events: auto; }
  .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px; }

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 58px;
  width: 100%;
  z-index: 3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.header--wrap:after {
  content: "";
  display: block;
  height: 58px; }

@media screen and (max-width: 768px) {
  .header--wrap:after {
    height: 100px; } }
@media screen and (max-width: 768px) {
  .header {
    height: 100px;
    background-color: #fff; } }
.header__logo {
  width: 248px;
  position: absolute;
  top: 40px;
  left: 57px;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }
  .header__logo .logo--en {
    position: absolute;
    top: 0;
    left: 0;
    width: 96.77419%; }
  .header__logo .logo--jp {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 98.79032%; }
  .header__logo .logo--sp {
    display: none; }

@media screen and (max-width: 980px) {
  .header__logo {
    width: 175px; } }
@media screen and (max-width: 768px) {
  .header__logo {
    width: 128px;
    position: relative;
    top: auto !important;
    left: auto !important; }
    .header__logo .logo--pc {
      display: none; }
    .header__logo .logo--sp {
      display: block; }
    .header__logo .logo--en {
      left: 9.88281%;
      width: 80.46875%; }
    .header__logo .logo--jp {
      width: 100%;
      display: inline-block; } }
.header__search {
  position: absolute;
  right: 0;
  top: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff; }

@media screen and (max-width: 768px) {
  .header__search {
    top: 50%;
    margin-top: -25px; } }
.header__search--hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #E6FF00;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  pointer-events: none; }

@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .header__search--hover {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    -webkit-transition: -webkit-clip-path 0.3s ease;
    transition: -webkit-clip-path 0.3s ease;
    transition: clip-path 0.3s ease;
    transition: clip-path 0.3s ease, -webkit-clip-path 0.3s ease; } }
.header__search__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  font-size: 2.7rem;
  letter-spacing: 0.05em;
  padding-right: 30px;
  color: #001E46;
  padding-left: 3.125rem;
  position: relative;
  padding-left: 4.125rem; }
  .header__search__link::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2.5rem;
    height: 0.3rem;
    background-color: #001E46;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateY(-75%) rotate(-55deg);
    -ms-transform: translateY(-75%) rotate(-55deg);
    transform: translateY(-75%) rotate(-55deg); }
  .header__search__link:before {
    left: 1rem; }
  .header__search__link:hover .header__search--hover {
    opacity: 1; }

@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .header__search__link:hover .header__search--hover {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
@media screen and (max-width: 768px) {
  .header__search__link {
    display: none; } }
.header__search__icon {
  width: 58px;
  height: 58px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #001E46;
  position: relative;
  -webkit-tap-highlight-color: transparent; }
  .header__search__icon .header__search--hover {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .header__search__icon .header__search--hover .svg-fill {
      fill: #001E46; }
  .header__search__icon:hover .header__search--hover {
    opacity: 1; }

@media screen and (max-width: 768px) {
  .header__search__icon .header__search--hover svg {
    stroke: #001E46; } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .header__search__icon:hover .header__search--hover {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
@media screen and (max-width: 768px) {
  .header__search__icon {
    width: 50px;
    height: 50px; }
    .header__search__icon img, .header__search__icon svg {
      width: 20px;
      height: 20px;
      stroke: #fff;
      stroke-width: 1px; } }
.humberger-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative; }

@media screen and (max-width: 768px) {
  .humberger-menu {
    margin-bottom: 0;
    position: absolute;
    top: 2rem; } }
.humberger-menu__text {
  font-size: 1.2rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em; }

.humberger-menu__text-menu {
  padding-bottom: 1em; }

.gnav--open .humberger-menu__text-menu {
  display: none; }

@media screen and (max-width: 768px) {
  .humberger-menu__text-menu {
    display: none; } }
.humberger-menu__text-close {
  display: none;
  position: absolute;
  top: 50%;
  right: -1em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.gnav--open .humberger-menu__text-close {
  display: block; }

.humberger-menu__btn {
  border-color: #fff;
  width: 60px;
  height: 60px;
  overflow: visible;
  position: relative; }

@media only screen and (min-width: 1025px) {
  .humberger-menu__btn:hover span {
    -webkit-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    transform: rotate(-55deg); }
    .humberger-menu__btn:hover span:nth-child(1) {
      top: 8px; }
    .humberger-menu__btn:hover span:nth-child(2) {
      top: 27px; }
    .humberger-menu__btn:hover span:nth-child(3) {
      bottom: 8px; } }
.gnav--open .humberger-menu__btn span {
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg); }
  .gnav--open .humberger-menu__btn span:nth-child(1) {
    top: 8px; }
  .gnav--open .humberger-menu__btn span:nth-child(2) {
    top: 27px; }
  .gnav--open .humberger-menu__btn span:nth-child(3) {
    bottom: 8px; }

@media screen and (max-width: 768px) {
  .gnav--open .humberger-menu__btn span:nth-child(1) {
    top: 12px; }
  .gnav--open .humberger-menu__btn span:nth-child(2) {
    top: 26px; }
  .gnav--open .humberger-menu__btn span:nth-child(3) {
    bottom: 6px; } }
@media only screen and (min-width: 1025px) {
  .gnav--open .humberger-menu__btn.open:hover span {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0); }
    .gnav--open .humberger-menu__btn.open:hover span:nth-child(1) {
      top: 13px; }
    .gnav--open .humberger-menu__btn.open:hover span:nth-child(2) {
      top: 27px; }
    .gnav--open .humberger-menu__btn.open:hover span:nth-child(3) {
      bottom: 13px; } }
@media screen and (max-width: 768px) {
  .humberger-menu__btn {
    width: 50px;
    height: 50px;
    padding-bottom: 5px; } }
.humberger-menu__btn span {
  content: "";
  display: inline-block;
  width: 40px;
  height: 6px;
  background-color: #001E46;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  pointer-events: none; }
  .humberger-menu__btn span:nth-child(1) {
    top: 13px; }
  .humberger-menu__btn span:nth-child(2) {
    top: 27px; }
  .humberger-menu__btn span:nth-child(3) {
    bottom: 13px; }

@media screen and (max-width: 768px) {
  .humberger-menu__btn span {
    width: 24px;
    height: 4px;
    margin-left: -12px; }
    .humberger-menu__btn span:nth-child(1) {
      top: 14px; }
    .humberger-menu__btn span:nth-child(2) {
      top: 23px; }
    .humberger-menu__btn span:nth-child(3) {
      bottom: 14px; } }
.humberger-menu-sp-only {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -25px; }

@media screen and (min-width: 769px) {
  .humberger-menu-sp-only {
    display: none; } }
.gnav {
  position: fixed;
  height: 100%;
  z-index: 2;
  top: 0;
  left: 0;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.gnav__toolbar {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 122px;
  position: absolute;
  top: 0;
  right: -120px;
  height: 100%;
  background-color: #fff;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

@media screen and (max-width: 768px) {
  .gnav__toolbar {
    display: none; } }
.gnav__logo {
  width: 180px; }

@media screen and (max-width: 768px) {
  .gnav__logo {
    display: none; } }
.gnav__menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 60px 50px 0 60px; }

@media screen and (max-width: 768px) {
  .gnav__menu {
    position: relative;
    padding: 140px 50px 80px 40px; } }
@media screen and (max-width: 414px) {
  .gnav__menu {
    padding-top: 100px;
    padding-bottom: 40px; } }
.gnav-link__list {
  padding: 60px 0 50px; }
  .gnav-link__list li + li {
    margin-top: 1em; }
  .gnav-link__list.sp {
    display: none; }
  .gnav-link__list .text-hover {
    padding: 0;
    display: inline-block;
    line-height: 1; }
  .gnav-link__list.corporate {
    padding: 0;
    margin-top: -0.5em; }
    .gnav-link__list.corporate a {
      -webkit-transition: opacity 0.2s ease;
      transition: opacity 0.2s ease; }
      .gnav-link__list.corporate a:hover {
        opacity: 0.5; }
  .gnav-link__list a {
    display: inline-block;
    font-size: 2.2rem;
    line-height: 1;
    letter-spacing: 0.14em;
    padding-left: 2.875rem;
    position: relative;
    padding-left: 4rem; }
    .gnav-link__list a::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 2.3rem;
      height: 0.2rem;
      background-color: #001E46;
      -webkit-transform-origin: center;
      -ms-transform-origin: center;
      transform-origin: center;
      -webkit-transform: translateY(-75%) rotate(-55deg);
      -ms-transform: translateY(-75%) rotate(-55deg);
      transform: translateY(-75%) rotate(-55deg); }
    .gnav-link__list a:before {
      -webkit-transform: rotate(0) translateY(-50%);
      -ms-transform: rotate(0) translateY(-50%);
      transform: rotate(0) translateY(-50%);
      -webkit-transition: top 0.2s ease, -webkit-transform 0.2s ease;
      transition: top 0.2s ease, -webkit-transform 0.2s ease;
      transition: transform 0.2s ease, top 0.2s ease;
      transition: transform 0.2s ease, top 0.2s ease, -webkit-transform 0.2s ease; }
    .gnav-link__list a:hover:before {
      -webkit-transform: rotate(-55deg) translateY(-50%);
      -ms-transform: rotate(-55deg) translateY(-50%);
      transform: rotate(-55deg) translateY(-50%);
      top: 25%; }
    .gnav-link__list a.external {
      padding-right: 25px;
      padding-left: 0;
      font-size: 1.6rem; }
      .gnav-link__list a.external:after {
        content: "";
        display: block;
        width: 18px;
        height: 16px;
        background-image: url(../img/icon_external.svg);
        background-repeat: no-repeat;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -8px; }
      .gnav-link__list a.external:before {
        display: none; }
  .gnav-link__list.ghost .link, .gnav-link__list.ghost a {
    display: block;
    background-color: #001E46;
    color: #fff;
    padding-left: 68.75px;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    position: relative; }
  .gnav-link__list.ghost .link:before, .gnav-link__list.ghost a:before {
    background-color: #fff;
    left: 38.75px;
    top: 45%; }
  .gnav-link__list.ghost .link:after, .gnav-link__list.ghost a:after {
    content: "";
    display: block;
    background-image: url(../img/svg/link_arrow-wh.svg);
    position: absolute;
    top: 50%;
    right: 0.5em;
    width: 20px;
    height: 4px;
    background-size: contain;
    margin-top: -2px; }
  .gnav-link__list.ghost .link:hover .text-hover-yel, .gnav-link__list.ghost a:hover .text-hover-yel {
    opacity: 1; }
  .gnav-link__list.ghost .link .text-hover-yel, .gnav-link__list.ghost a .text-hover-yel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #E6FF00;
    color: #001E46;
    z-index: 1; }
  .gnav-link__list.ghost .link .text-hover-yel:after, .gnav-link__list.ghost a .text-hover-yel:after {
    background-image: url(../img/svg/link_arrow.svg); }

@media screen and (max-width: 768px) {
  .gnav-link__list {
    padding: 0; }
    .gnav-link__list.sp {
      display: block; }
    .gnav-link__list + .gnav-link__list {
      margin-top: 1em; }
    .gnav-link__list.corporate {
      margin-top: 2.5em; } }
@media screen and (max-width: 768px) {
  .gnav-link__list a {
    font-size: 1.8rem;
    padding-left: 3rem; }
    .gnav-link__list a:before {
      -webkit-transform: rotate(-55deg) translateY(-50%);
      -ms-transform: rotate(-55deg) translateY(-50%);
      transform: rotate(-55deg) translateY(-50%);
      top: 25%; } }
@media screen and (max-width: 768px) {
  .gnav-link__list a.external {
    padding-right: 20px;
    font-size: 1.4rem; }
    .gnav-link__list a.external:after {
      width: 15px;
      height: 12px;
      margin-top: -6px; } }
@media screen and (max-width: 768px) {
  .gnav-link__list.ghost {
    margin-left: -40px;
    width: calc(100% + 40px); } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .gnav-link__list.ghost .link:hover .text-hover-yel, .gnav-link__list.ghost a:hover .text-hover-yel {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
.gnav__sns {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 120px;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 30px; }

.gnav__menu .gnav__sns {
  display: none; }

@media screen and (max-width: 768px) {
  .gnav__sns {
    display: none; }

  .gnav__menu .gnav__sns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 0;
    margin-top: auto; } }
.gnav__sns__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

@media screen and (max-width: 768px) {
  .gnav__sns__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; } }
.gnav__sns__icon {
  width: 24px; }
  .gnav__sns__icon + .gnav__sns__icon {
    margin: 10px 0 0 0; }

@media screen and (max-width: 768px) {
  .gnav__sns__icon + .gnav__sns__icon {
    margin: 0 0 0 5px; } }
.gnav__sns__text {
  font-size: 1.2rem;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  margin-bottom: 2rem;
  line-height: 1;
  letter-spacing: 0.1em; }
  .gnav__sns__text _::-webkit-full-page-media, .gnav__sns__text _:future {
    padding-right: 0.35em; }

:root .gnav__sns__text {
  padding-right: 0.35em; }

.gnav__sns__text _::-webkit-full-page-media, .gnav__sns__text _:future {
  margin-left: 0.3em; }

:root .gnav__sns__text:after {
  margin-left: 0.3em; }

@media screen and (max-width: 768px) {
  .gnav__sns__text {
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    margin-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; }
    .gnav__sns__text _::-webkit-full-page-media, .gnav__sns__text _:future {
      padding-right: 0; }

  :root .gnav__sns__text {
    padding-right: 0; }

  .gnav__sns__text _::-webkit-full-page-media, .gnav__sns__text _:future {
    margin-left: 0; }

  :root .gnav__sns__text:after {
    margin-left: 0; } }
.gnav__sns__text:after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 3rem;
  background-color: #001E46;
  -webkit-transform: translateY(0.8rem);
  -ms-transform: translateY(0.8rem);
  transform: translateY(0.8rem); }

@media screen and (max-width: 768px) {
  .gnav__sns__text:after {
    height: 1px;
    width: 3rem;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    margin: 0 10px 2px 10px; } }
.gnav__sns__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease; }
  .gnav__sns__icon:hover {
    opacity: 0.5; }
  .gnav__sns__icon a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    background-color: #001E46;
    border-radius: 50%; }
    .gnav__sns__icon a:hover i {
      color: #E6FF00; }

@media screen and (max-width: 768px) {
  .gnav__sns__icon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row; } }
.gnav__sns i {
  color: #fff;
  -webkit-transition: all 0.8s;
  transition: all 0.8s; }

.gnav.active {
  top: 0;
  -webkit-transform: inherit;
  -ms-transform: inherit;
  transform: inherit;
  -webkit-transition: all 0.8s;
  transition: all 0.8s; }
  .gnav.active .gnav-logo__image {
    width: 18rem; }
  .gnav.active .gnav__menu {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0); }
  .gnav.active .gnav-sns {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .gnav.active .humberger-menu {
    margin-bottom: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .gnav.active .humberger-menu__text-menu {
    display: none; }
  .gnav.active .humberger-menu__text-close {
    display: block; }
  .gnav.active .humberger-menu__btn span {
    -webkit-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    transform: rotate(-55deg); }
.gnav.scroll .gnav-logo {
  top: 2rem;
  left: 1.5rem; }
.gnav.scroll .gnav-logo__text {
  display: none; }
.gnav.scroll .gnav-logo__image {
  width: 7rem; }
.gnav.scroll.active .gnav-logo__text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
.gnav.active .gnav-logo, .gnav.active.scroll .gnav-logo {
  top: 4rem;
  left: 4rem; }
.gnav.active .gnav-logo__image, .gnav.active.scroll .gnav-logo__image {
  width: 20rem; }

@media screen and (max-width: 768px) {
  .gnav.active {
    margin-top: 12rem;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: all 0.8s;
    transition: all 0.8s; } }
@media screen and (max-width: 768px) {
  .gnav.active .gnav-logo {
    display: none; } }
@media screen and (max-width: 768px) {
  .gnav.active .gnav-sns {
    display: block; } }
@media screen and (max-width: 768px) {
  .gnav.active .humberger-menu {
    position: inherit; } }
.slide {
  position: relative; }

@media screen and (max-width: 768px) {
  .slide {
    padding-bottom: 60px;
    margin-bottom: -2rem; } }
@media screen and (max-width: 414px) {
  .slide {
    padding-bottom: 40px; } }
.slide__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff; }
  .slide__link.hover .text-hover-transparent {
    background-position: -100% 0;
    color: #001E46; }
  .slide__link.hover figure img {
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075); }

@media all and (-ms-high-contrast: none) {
  .slide__link.hover .text-hover-transparent {
    background-position: 0 0;
    background-image: -webkit-linear-gradient(left, transparent 0, #E6FF00 0);
    background-image: linear-gradient(to right, transparent 0, #E6FF00 0); } }
@media screen and (max-width: 768px) {
  .slide__link {
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; } }
.slide__figure {
  width: 71.55172%;
  min-height: 585px;
  max-height: 77.5vh;
  position: relative;
  overflow: hidden; }
  .slide__figure:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 70.48193%; }
  .slide__figure .mask__inner {
    background-size: 75px; }
    .slide__figure .mask__inner:after {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url(../img/phnoise.png);
      background-repeat: repeat;
      background-blend-mode: multiply; }
  .slide__figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    font-family: "object-fit: cover; object-position: 50% 0%;"; }
  .slide__figure .mask__child, .slide__figure .mask__inner {
    padding: auto;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

@media screen and (max-width: 414px) {
  .slide__figure .mask__inner:after {
    background-size: 50px; } }
@media screen and (max-width: 768px) {
  .slide__figure .mask__inner {
    background-size: 50px; } }
@media screen and (max-width: 414px) {
  .slide__figure .mask__inner {
    background-size: 30px; } }
@media screen and (max-width: 1024px) {
  .slide__figure {
    width: 60%;
    min-height: auto;
    height: 500px; } }
@media screen and (max-width: 768px) {
  .slide__figure {
    width: 90%;
    height: 350px; } }
@media screen and (max-width: 414px) {
  .slide__figure {
    height: 245px; } }
.slide__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin-left: -7.5%;
  margin-top: -4%;
  position: relative;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease; }

@media screen and (max-width: 980px) {
  .slide__body {
    width: 45%; } }
@media screen and (max-width: 768px) {
  .slide__body {
    width: 90%;
    margin-top: -10%;
    margin-left: auto; } }
@media screen and (max-width: 414px) {
  .slide__body {
    margin-left: auto; } }
.slide__summary {
  background-color: #001E46;
  position: relative; }
  .slide__summary:before {
    content: "";
    display: block;
    padding-top: 100%; }
  .slide__summary .slide__summary__inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    box-sizing: border-box;
    padding: 6rem; }
    .slide__summary .slide__summary__inner .linkarea {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .slide__summary::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 9rem;
    right: -2.5rem;
    width: 16.5rem;
    z-index: 5;
    height: 3px;
    background-color: transparent;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: rotate(-55deg) scaleX(0);
    -ms-transform: rotate(-55deg) scaleX(0);
    transform: rotate(-55deg) scaleX(0);
    background-image: -webkit-linear-gradient(left, #DDD 50%, #E6FF00 50%);
    background-image: linear-gradient(to right, #DDD 50%, #E6FF00 50%);
    background-position: 0 0;
    background-size: 200% auto;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: background-position 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-position 0.3s ease, -webkit-transform 0.2s ease;
    transition: background-position 0.3s ease, transform 0.2s ease;
    transition: background-position 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease; }

@media only screen and (min-width: 1600px) {
  .slide__summary {
    max-height: 500px; } }
@media screen and (max-width: 768px) {
  .slide__summary:before {
    display: none; } }
@media only screen and (min-width: 1600px) {
  .slide__summary .slide__summary__inner {
    padding-right: 7.5vw; } }
@media screen and (max-width: 1024px) {
  .slide__summary .slide__summary__inner {
    padding: 4rem; } }
@media screen and (max-width: 768px) {
  .slide__summary .slide__summary__inner {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    padding-right: 10.5vw; } }
@media screen and (max-width: 414px) {
  .slide__summary .slide__summary__inner {
    padding: 2rem;
    padding-right: 4rem; } }
@media only screen and (min-width: 1600px) {
  .slide__summary::after {
    right: 3.5vw; } }
@media screen and (max-width: 1024px) {
  .slide__summary::after {
    width: 14rem;
    top: 8rem; } }
@media screen and (max-width: 768px) {
  .slide__summary::after {
    display: none; } }
.on .slide__summary:after {
  -webkit-transform: rotate(-55deg) scaleX(1);
  -ms-transform: rotate(-55deg) scaleX(1);
  transform: rotate(-55deg) scaleX(1); }

.slide__link.hover .slide__summary::after {
  background-position: -100% 0; }

.slide__number {
  line-height: 1;
  margin-bottom: 0.3em; }
  .slide__number span {
    vertical-align: text-top;
    display: inline-block; }
    .slide__number span:nth-of-type(1) {
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      margin-top: 0.25em; }
    .slide__number span:nth-of-type(2) {
      font-size: 3.8rem;
      letter-spacing: 0.1em; }

@media screen and (max-width: 414px) {
  .slide__number span:nth-of-type(1) {
    font-size: 1.1rem; } }
@media screen and (max-width: 414px) {
  .slide__number span:nth-of-type(2) {
    font-size: 2.6rem; } }
.slide__category {
  font-size: 1.7rem;
  margin-bottom: 1em;
  letter-spacing: 0.1em;
  font-weight: 700; }
  .slide__category span {
    font-weight: inherit; }

@media screen and (max-width: 414px) {
  .slide__category {
    font-size: 1.2rem; } }
.slide__title {
  max-width: 100%;
  text-align: justify;
  font-size: 2.8rem;
  margin-bottom: 5rem;
  font-weight: 700; }

.slide__number + .slide__title {
  margin-top: 0.5em; }

@media only screen and (max-width: 1300px) {
  .slide__title {
    font-size: 2.5rem; } }
@media only screen and (max-width: 1200px) {
  .slide__title {
    font-size: 2.2rem;
    margin-bottom: 2rem; } }
@media screen and (max-width: 414px) {
  .slide__title {
    font-size: 1.8rem; } }
.slide__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  letter-spacing: 0.1em; }

.slide__date-month {
  font-size: 2.5rem; }

@media only screen and (min-width: 769px) {
  .slide__date-month {
    margin-top: -0.1em; } }
@media screen and (max-width: 414px) {
  .slide__date-month {
    font-size: 1.5rem; } }
.slide__date-date {
  font-size: 4rem;
  line-height: 0.7; }
  .slide__date-date span {
    display: none; }

@media screen and (max-width: 414px) {
  .slide__date-date {
    font-size: 2.6rem; } }
.slide__date-year {
  font-size: 1.4rem; }

@media only screen and (min-width: 769px) {
  .slide__date-year {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; } }
@media screen and (max-width: 414px) {
  .slide__date-year {
    font-size: 1rem; } }
@media screen and (max-width: 768px) {
  .slide__date-year {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; } }
.slide__pagination-box {
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 71.55172%;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start; }

@media screen and (max-width: 1024px) {
  .slide__pagination-box {
    padding-left: 60%; } }
@media screen and (max-width: 768px) {
  .slide__pagination-box {
    width: 100%;
    padding-left: 10%; } }
@media screen and (max-width: 414px) {
  .slide__pagination-box {
    padding-right: 40px; } }
.slide__pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 20px; }
  .slide__pagination .swiper-pagination {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 45%;
    padding-bottom: 2.5%; }
  .slide__pagination .swiper-pagination-bullet {
    background: #fff;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    width: 24px;
    height: 4px;
    border-radius: 0;
    opacity: 1;
    -webkit-transform: rotate(-55deg) translate(0, 0.4rem);
    -ms-transform: rotate(-55deg) translate(0, 0.4rem);
    transform: rotate(-55deg) translate(0, 0.4rem);
    background-image: -webkit-linear-gradient(left, #B3BBC7 50%, #001E46 50%);
    background-image: linear-gradient(to right, #B3BBC7 50%, #001E46 50%);
    background-size: 200% auto; }
  .slide__pagination .swiper-button-next, .slide__pagination .swiper-button-prev {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: inline-block;
    letter-spacing: 0.1em;
    position: relative;
    text-transform: uppercase;
    font-size: 1.4rem;
    color: #001E46;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: auto;
    margin: auto;
    border-radius: 5px;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    margin-top: 0;
    width: auto;
    background-image: none;
    -webkit-tap-highlight-color: transparent; }
  .slide__pagination .swiper-button-next:before, .slide__pagination .swiper-button-prev:before {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background-color: #001E46;
    position: absolute;
    top: 50%;
    margin-top: -2px;
    -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease; }
  .slide__pagination .swiper-button-next:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 0 9px;
    border-color: transparent transparent transparent #001E46;
    position: absolute;
    top: 50%;
    margin-top: -8px; }
  .slide__pagination .swiper-button-prev {
    margin: 0;
    padding-left: 13.63636%;
    margin-right: 4.54545%; }
    .slide__pagination .swiper-button-prev:after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 6px 0 0 9px;
      border-color: transparent transparent transparent #001E46;
      position: absolute;
      top: 50%;
      margin-top: -8px; }
    .slide__pagination .swiper-button-prev:before {
      right: 30px; }
    .slide__pagination .swiper-button-prev:after {
      right: 51px;
      -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
      transform: scale(-1, 1);
      -webkit-transition: right 0.3s ease;
      transition: right 0.3s ease; }
  .slide__pagination .swiper-button-next {
    margin: 0;
    padding-right: 13.63636%;
    margin-left: 6.06061%; }
    .slide__pagination .swiper-button-next:before {
      left: 30px; }
    .slide__pagination .swiper-button-next:after {
      left: 51px;
      -webkit-transition: left 0.3s ease;
      transition: left 0.3s ease; }

@media screen and (max-width: 1024px) {
  .slide__pagination {
    padding: 0 10px 0 20px; } }
@media screen and (max-width: 768px) {
  .slide__pagination {
    padding: 0; } }
@media all and (-ms-high-contrast: none) {
  .slide__pagination .swiper-pagination {
    width: 100%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto; } }
@media screen and (max-width: 768px) {
  .slide__pagination .swiper-pagination {
    padding-bottom: 1%; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-pagination {
    padding-bottom: 2%;
    max-width: none; } }
@media screen and (max-width: 768px) {
  .slide__pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
    margin-left: 5px; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-pagination-bullet {
    min-width: 15px;
    width: auto;
    height: 3px;
    margin: auto 4.5%; }
    .slide__pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
      margin-left: 2px; } }
@media screen and (max-width: 1024px) {
  .slide__pagination .swiper-button-next, .slide__pagination .swiper-button-prev {
    width: 5rem; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-next, .slide__pagination .swiper-button-prev {
    width: 4rem;
    font-size: 1rem; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-next:before, .slide__pagination .swiper-button-prev:before {
    width: 20px; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-next:after, .slide__pagination .swiper-button-prev:after {
    border-width: 4px 0 0 6px;
    margin-top: -6px; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-prev:before {
    right: 22px; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-prev:after {
    right: 36px; } }
@media only screen and (min-width: 1025px) {
  .slide__pagination .swiper-button-prev:hover:before {
    width: 40px; }
  .slide__pagination .swiper-button-prev:hover:after {
    right: 61px; } }
@media screen and (max-width: 1024px) {
  .slide__pagination .swiper-button-prev {
    padding-left: 60px;
    margin-right: 10px; } }
@media screen and (max-width: 768px) {
  .slide__pagination .swiper-button-prev {
    margin-right: 20px; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-prev {
    padding-left: 45px;
    margin-right: 10px; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-next:before {
    left: 18px; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-next:after {
    left: 32px; } }
@media only screen and (min-width: 1025px) {
  .slide__pagination .swiper-button-next:hover:before {
    width: 40px; }
  .slide__pagination .swiper-button-next:hover:after {
    left: 61px; } }
@media screen and (max-width: 1024px) {
  .slide__pagination .swiper-button-next {
    padding-right: 30px;
    margin-left: 15px; } }
@media screen and (max-width: 768px) {
  .slide__pagination .swiper-button-next {
    margin-left: 40px; } }
@media screen and (max-width: 414px) {
  .slide__pagination .swiper-button-next {
    margin-right: 0;
    padding-right: 30px;
    margin-left: 15px; } }
.summary__link:hover figure img {
  -webkit-transform: scale(1.075);
  -ms-transform: scale(1.075);
  transform: scale(1.075); }

.summary__header {
  position: relative;
  margin-top: 10px;
  padding-top: 25px; }

.summary__figure {
  overflow: hidden;
  position: relative; }
  .summary__figure:before {
    content: "";
    display: block;
    padding-top: 55%; }

@media screen and (max-width: 768px) {
  .summary__figure:before {
    padding-top: 91.07143%; } }
.summary__secondary-1 .summary__figure:before {
  content: "";
  display: block;
  padding-top: 90.54726%; }

.summary__secondary-2 .summary__figure:before {
  content: "";
  display: block;
  padding-top: 77.19298%; }

.summary__figure:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/phnoise.png);
  background-repeat: repeat;
  background-blend-mode: multiply; }
.summary__figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  font-family: "object-fit: cover; object-position: 50% 0%;"; }

@media screen and (max-width: 414px) {
  .summary__figure:after {
    background-size: 50px; } }
.summary__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0; }
  .summary__number span:nth-of-type(1) {
    font-size: 1.2rem;
    padding-right: 0.25em; }
  .summary__number span:nth-of-type(2) {
    font-size: 2.6rem;
    letter-spacing: 0.1em;
    line-height: 0.9; }

.summary__date {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  position: absolute;
  top: 25px;
  right: -2rem; }

@media all and (-ms-high-contrast: none) and (min-width: 769px) {
  .category__item .summary__date, .summary:not(.summary__secondary-1) .summary__date, .summary__item .summary__date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; } }
@media only screen and (min-width: 769px) {
  .category__item .summary__date, .summary:not(.summary__secondary-1) .summary__date, .summary__item .summary__date {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl; }

  .category__item .summary__date span, .summary:not(.summary__secondary-1) .summary__date span, .summary__item .summary__date span {
    -ms-writing-mode: tb-rl; } }
@media all and (-ms-high-contrast: none) and (min-width: 769px) {
  .summary.summary__secondary-1 .summary__date {
    display: block;
    -ms-writing-mode: lr-tb; }
    .summary.summary__secondary-1 .summary__date .summary__date-date, .summary.summary__secondary-1 .summary__date .summary__date-month {
      -ms-writing-mode: lr-tb; } }
@media screen and (max-width: 768px) {
  .summary.summary__secondary-2 .summary__date {
    display: block; } }
@media screen and (max-width: 768px) {
  .summary__date {
    position: inherit;
    right: inherit;
    top: 5px;
    font-size: 1.2rem; } }
@media screen and (max-width: 414px) {
  .summary__date {
    font-size: 1.1rem;
    top: 0;
    padding-top: 5px; } }
@media only screen and (max-width: 1200px) {
  .summary.summary__secondary-1 .summary__body {
    padding-left: 2rem; } }
@media screen and (max-width: 768px) {
  .summary__body {
    -webkit-transform: translateY(-0.2rem);
    -ms-transform: translateY(-0.2rem);
    transform: translateY(-0.2rem); } }
.summary__category {
  padding: 1rem 0 0.5rem;
  display: inline-block;
  font-weight: 700;
  -webkit-transition: all 0.8s;
  transition: all 0.8s; }

@media screen and (max-width: 414px) {
  .summary__category {
    padding-top: 0; } }
.summary__secondary-1 .summary__category {
  padding-left: 2.625rem;
  position: relative;
  padding-left: 2rem;
  margin-left: -2rem; }
  .summary__secondary-1 .summary__category::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2.1rem;
    height: 0.2rem;
    background-color: #001E46;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateY(-75%) rotate(-55deg);
    -ms-transform: translateY(-75%) rotate(-55deg);
    transform: translateY(-75%) rotate(-55deg); }
  .summary__secondary-1 .summary__category:before {
    top: 1rem; }

@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__category {
    padding-left: 0;
    margin-left: 0; }
    .summary__secondary-1 .summary__category:before {
      display: none; } }
.summary__category span {
  font-size: 1.5rem;
  letter-spacing: 0.075em;
  font-weight: inherit; }

@media screen and (max-width: 768px) {
  .summary__category span {
    font-size: 1.2rem; } }
@media screen and (max-width: 414px) {
  .summary__category span {
    font-size: 1.1rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__category span {
    font-size: 1.8rem; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__category span {
    font-size: 1.1rem; } }
.summary__title {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: justify; }
  .summary__title:first-child {
    margin-top: 0.65em; }
  .summary__title span {
    font-weight: inherit;
    -webkit-transition: all 0.8s;
    transition: all 0.8s; }

@media screen and (max-width: 1024px) {
  .summary__title {
    font-size: 1.5rem; } }
@media screen and (max-width: 414px) {
  .summary__title {
    font-size: 1.2rem; } }
.summary-wide {
  position: relative;
  margin-bottom: 3rem; }

@media screen and (max-width: 768px) {
  .summary-wide {
    margin-bottom: 0; } }
.summary-wide__link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse; }
  .summary-wide__link:hover figure img {
    -webkit-transform: scale(1.075);
    -ms-transform: scale(1.075);
    transform: scale(1.075); }

@media screen and (max-width: 768px) {
  .summary-wide__link {
    display: block; } }
.summary-wide__body {
  width: 30.61224%;
  margin-right: -6.12245%;
  padding: 25px 0 0 10px; }

@media screen and (max-width: 768px) {
  .summary-wide__body {
    width: 80%;
    margin: 0 auto;
    padding: 4rem 4rem 0 4rem;
    background-color: #fff;
    position: relative;
    margin-top: -5rem;
    margin-bottom: 5rem; } }
@media screen and (max-width: 768px) {
  .summary-wide__body {
    width: 100%;
    padding: 2rem 2rem 0 2rem;
    margin-top: -2.5rem;
    margin-bottom: 2.5rem; } }
.summary-wide__figure {
  width: 75.5102%;
  overflow: hidden;
  position: relative;
  z-index: -1; }
  .summary-wide__figure:before {
    content: "";
    display: block;
    padding-top: 54.86486%; }
  .summary-wide__figure:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/phnoise.png);
    background-repeat: repeat;
    background-blend-mode: multiply; }
  .summary-wide__figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    font-family: "object-fit: cover; object-position: 50% 0%;"; }

@media screen and (max-width: 414px) {
  .summary-wide__figure:after {
    background-size: 50px; } }
@media screen and (max-width: 768px) {
  .summary-wide__figure {
    width: auto;
    margin-right: -30px;
    margin-left: -30px; } }
@media screen and (max-width: 414px) {
  .summary-wide__figure {
    margin-right: -20px;
    margin-left: -20px; } }
.summary-wide__number {
  margin-bottom: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1; }
  .summary-wide__number span:nth-of-type(1) {
    font-size: 1.2rem;
    padding-right: 0.25em; }
  .summary-wide__number span:nth-of-type(2) {
    font-size: 4rem;
    letter-spacing: 0.1em;
    line-height: 0.9; }

@media screen and (max-width: 768px) {
  .summary-wide__number {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 2rem;
    top: 1rem;
    margin-bottom: 0; } }
@media screen and (max-width: 414px) {
  .summary-wide__number span:nth-of-type(1) {
    font-size: 1.1rem; } }
@media screen and (max-width: 414px) {
  .summary-wide__number span:nth-of-type(2) {
    font-size: 2.6rem; } }
.summary-wide__category {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 700;
  padding-left: 2.625rem;
  position: relative;
  padding-left: 2rem;
  margin-left: -2rem; }
  .summary-wide__category span {
    font-weight: inherit;
    -webkit-transition: all 0.8s;
    transition: all 0.8s; }
  .summary-wide__category::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2.1rem;
    height: 0.2rem;
    background-color: #001E46;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateY(-75%) rotate(-55deg);
    -ms-transform: translateY(-75%) rotate(-55deg);
    transform: translateY(-75%) rotate(-55deg); }
  .summary-wide__category:before {
    top: 0; }

@media screen and (max-width: 768px) {
  .summary-wide__category {
    padding-left: 0;
    margin-bottom: 1.25rem;
    padding-top: 2.5rem; } }
@media screen and (max-width: 414px) {
  .summary-wide__category {
    font-size: 1.1rem;
    padding-bottom: 0; } }
@media screen and (max-width: 768px) {
  .summary-wide__category::before {
    display: none; } }
@media screen and (max-width: 768px) {
  .summary-wide__category {
    padding-left: 0;
    margin-left: 0; }
    .summary-wide__category:before {
      display: none; } }
@media screen and (max-width: 414px) {
  .summary-wide__category {
    margin-bottom: 1rem;
    padding-top: 1.5rem; } }
.summary-wide__title {
  font-size: 2.8rem;
  margin-bottom: 5rem;
  text-align: justify;
  font-weight: 700; }
  .summary-wide__title span {
    font-weight: inherit;
    background-color: #fff;
    -webkit-transition: background-position 0.5s ease;
    transition: background-position 0.5s ease; }

@media screen and (max-width: 1024px) {
  .summary-wide__title {
    font-size: 2.2rem; } }
@media screen and (max-width: 768px) {
  .summary-wide__title {
    max-width: inherit;
    margin-bottom: 0; }

  .summary-wide__number + .summary-wide__title {
    padding-top: 5rem; } }
@media screen and (max-width: 414px) {
  .summary-wide__title {
    font-size: 1.8rem; }

  .summary-wide__number + .summary-wide__title {
    padding-top: 4rem; } }
.summary-wide__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  letter-spacing: 0.1em; }

.summary-wide__date-month {
  font-size: 2.5rem; }

@media only screen and (min-width: 769px) {
  .summary-wide__date-month {
    margin-top: -0.1em; } }
@media screen and (max-width: 414px) {
  .summary-wide__date-month {
    font-size: 1.5rem; } }
.summary-wide__date-date {
  font-size: 4rem;
  line-height: 0.7; }
  .summary-wide__date-date span {
    display: none; }

@media screen and (max-width: 414px) {
  .summary-wide__date-date {
    font-size: 2.6rem; } }
.summary-wide__date-year {
  font-size: 1.4rem; }

@media only screen and (min-width: 769px) {
  .summary-wide__date-year {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; } }
@media screen and (max-width: 414px) {
  .summary-wide__date-year {
    font-size: 1rem; } }
@media screen and (max-width: 768px) {
  .summary-wide__date {
    position: absolute;
    top: 4.75rem;
    right: 2rem; } }
@media screen and (max-width: 768px) {
  .summary-wide__date-month {
    font-size: 1.2rem; } }
@media screen and (max-width: 414px) {
  .summary-wide__date-month {
    font-size: 1rem; } }
@media screen and (max-width: 768px) {
  .summary-wide__date-date {
    font-size: 1.2rem;
    line-height: 1; } }
@media screen and (max-width: 414px) {
  .summary-wide__date-date {
    font-size: 1rem; } }
@media screen and (max-width: 768px) {
  .summary-wide__date-date span {
    display: inline-block; } }
@media screen and (max-width: 768px) {
  .summary-wide__date-year {
    font-size: 1rem;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit; } }
@media screen and (max-width: 414px) {
  .summary-wide__date {
    top: 3.5rem; } }
.summary__arrow .swiper-button-next, .summary__arrow .swiper-button-prev {
  background-color: #fff;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background-image: none;
  -webkit-tap-highlight-color: transparent; }
.summary__arrow .swiper-button-next {
  top: 45%; }
.summary__arrow .swiper-button-prev {
  top: 45%;
  left: -1.3rem; }
.summary__arrow .swiper-button-next {
  left: 87%; }
  .summary__arrow .swiper-button-next:after {
    content: "";
    display: inline-block;
    width: 24px;
    height: 5px;
    background: url(../img/svg/arrow_next.svg) no-repeat center center;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -12px;
    z-index: 9999999999; }
.summary__arrow .swiper-button-prev:after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 5px;
  background: url(../img/svg/arrow_next.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -12px;
  z-index: 9999999999;
  background: url(../img/svg/arrow_prev.svg) no-repeat center center; }
.summary__arrow .swiper-button-next.swiper-button-disabled, .summary__arrow .swiper-button-prev.swiper-button-disabled {
  display: none; }

@media only screen and (max-width: 1200px) {
  .summary__arrow .swiper-button-next, .summary__arrow .swiper-button-prev {
    top: 40%; } }
@media screen and (max-width: 1024px) {
  .summary__arrow .swiper-button-next, .summary__arrow .swiper-button-prev {
    top: 45%; } }
@media only screen and (max-width: 575px) {
  .summary__arrow .swiper-button-next, .summary__arrow .swiper-button-prev {
    top: 40%; } }
@media only screen and (max-width: 1200px) {
  .summary__arrow .swiper-button-next {
    left: auto;
    right: 8%; } }
.summary-horizon {
  margin-bottom: 3rem;
  padding-left: 1rem !important;
  padding-top: 1rem !important; }

@media screen and (max-width: 768px) {
  .summary-horizon {
    margin-left: auto !important;
    margin-right: 0 !important; } }
@media screen and (max-width: 768px) {
  .summary__secondary {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; } }
.summary__secondary .swiper-slide {
  width: 43%; }

@media screen and (max-width: 768px) {
  .summary__secondary-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-right: 0; } }
.summary__secondary-1 .summary__figure {
  margin-bottom: 3rem; }
.summary__secondary-1 .summary__number {
  top: 3rem;
  left: 0; }
.summary__secondary-1 .summary__category {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 700; }
  .summary__secondary-1 .summary__category span {
    font-weight: inherit;
    -webkit-transition: all 0.8s;
    transition: all 0.8s; }
.summary__secondary-1 .summary__title {
  font-size: 3rem;
  margin-bottom: 3rem; }
.summary__secondary-1 .summary__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  letter-spacing: 0.1em;
  position: relative;
  right: 0;
  -webkit-writing-mode: inherit;
  -ms-writing-mode: inherit;
  writing-mode: inherit; }
.summary__secondary-1 .summary__date-month {
  font-size: 2.5rem; }
.summary__secondary-1 .summary__date-date {
  font-size: 4rem;
  line-height: 0.7; }
  .summary__secondary-1 .summary__date-date span {
    display: none; }
.summary__secondary-1 .summary__date-year {
  font-size: 1.4rem; }
.summary__secondary-1 .summary__date::after {
  content: "";
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 20px;
  margin-top: auto;
  margin-bottom: auto;
  height: 1px;
  background-color: #001E46;
  display: inline-block; }

@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__figure {
    width: auto;
    margin-right: -30px;
    margin-left: -30px;
    margin-bottom: 0; }
    .summary__secondary-1 .summary__figure:after {
      padding-top: 54.86486%; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__figure {
    margin-right: -20px;
    margin-left: -20px; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__number {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    left: auto;
    right: 1.6rem;
    top: 1rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__number span:nth-of-type(1) {
    font-size: 1.2rem;
    padding-right: 0.25em; }
  .summary__secondary-1 .summary__number span:nth-of-type(2) {
    font-size: 4rem;
    letter-spacing: 0.1em;
    line-height: 0.9; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__number span:nth-of-type(1) {
    font-size: 1.2rem; }
  .summary__secondary-1 .summary__number span:nth-of-type(2) {
    font-size: 2.6rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__body {
    width: 80%;
    margin: 0 auto;
    padding: 4rem 4rem 0 4rem;
    background-color: #fff;
    position: relative;
    margin-top: -5rem;
    margin-bottom: 5rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__body {
    width: 100%;
    padding: 2rem 2rem 0 2rem;
    margin-top: -2.5rem;
    margin-bottom: 2.5rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__category {
    padding-left: 0;
    margin-bottom: 1.25rem;
    padding-top: 2.5rem; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__category {
    font-size: 1.1rem;
    padding-bottom: 0; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__category::before {
    display: none; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__category {
    padding-top: 1.5rem; } }
@media screen and (max-width: 1024px) {
  .summary__secondary-1 .summary__title {
    font-size: 2.2rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__title {
    margin-bottom: 0; }
    .summary__secondary-1 .summary__title:first-child {
      padding-top: 5rem; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__title {
    font-size: 1.8rem; }
    .summary__secondary-1 .summary__title:first-child {
      padding-top: 4rem; } }
@media only screen and (min-width: 769px) {
  .summary__secondary-1 .summary__date-month {
    margin-top: -0.1em; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__date-month {
    font-size: 1.5rem; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__date-date {
    font-size: 2.6rem; } }
@media only screen and (min-width: 769px) {
  .summary__secondary-1 .summary__date-year {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__date-year {
    font-size: 1rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__date {
    position: absolute;
    top: 4.75rem;
    right: 2rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__date-month {
    font-size: 1.2rem; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__date-month {
    font-size: 1rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__date-date {
    font-size: 1.2rem;
    line-height: 1; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__date-date {
    font-size: 1rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__date-date span {
    display: inline-block; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__date-year {
    font-size: 1rem;
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__date {
    display: block; } }
@media screen and (max-width: 414px) {
  .summary__secondary-1 .summary__date {
    padding-top: 0;
    top: 3.5rem; } }
@media screen and (max-width: 768px) {
  .summary__secondary-1 .summary__date::after {
    display: none; } }
@media screen and (max-width: 768px) {
  .summary__secondary-2 {
    margin-left: auto !important;
    margin-right: 0 !important; } }
@media screen and (max-width: 768px) {
  .summary__secondary-2 {
    height: auto;
    margin-right: -30px !important; } }
@media screen and (max-width: 414px) {
  .summary__secondary-2 {
    margin-right: -20px !important; } }
.summary__secondary-2 .summary__item {
  margin-bottom: 5rem; }

@media screen and (max-width: 1024px) {
  .summary__secondary-2 .summary__item {
    margin-bottom: 4rem; } }
@media only screen and (min-width: 769px) {
  .summary__secondary {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-top: -2rem; }

  .summary__secondary-1 {
    width: 41.02041%;
    padding-top: 2rem;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0; }
    .summary__secondary-1 .summary__category {
      margin-bottom: 1rem; }

  .summary__secondary-2 {
    width: 52.85714%;
    padding-top: 2rem !important;
    padding-left: 0 !important;
    margin: 0;
    overflow: visible; }
    .summary__secondary-2 .swiper-wrapper {
      box-sizing: border-box; }
    .summary__secondary-2 .swiper-slide {
      height: auto;
      width: auto; }
    .summary__secondary-2 .summary__arrow {
      display: none; }
    .summary__secondary-2 .summary__list {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-right: -5%; }
    .summary__secondary-2 .summary__item {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 44.01544%; } }
.footer {
  background-color: #001E46;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.footer__logo {
  text-align: center;
  width: 160px;
  margin-bottom: 6rem; }
  .footer__logo .svg-fill {
    fill: #fff; }
  .footer__logo .logo--sp {
    display: none; }
  .footer__logo img {
    max-width: 15rem;
    margin-bottom: 2rem; }
  .footer__logo span {
    color: #fff;
    display: block;
    font-size: 1rem; }

@media screen and (max-width: 768px) {
  .footer__logo {
    margin-bottom: 4rem; }
    .footer__logo .logo--pc {
      display: none; }
    .footer__logo .logo--sp {
      display: block; } }
.footer__nav {
  width: 100%;
  margin: 0 auto;
  font-size: 2rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem; }
  .footer__nav:last-child {
    margin-bottom: 0; }
  .footer__nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .footer__nav ul + ul {
      margin-top: 1em; }
    .footer__nav ul li {
      text-align: center;
      white-space: nowrap;
      padding: 0 1rem; }
      .footer__nav ul li.corporate {
        margin-top: 0.5em;
        font-size: 0.8em; }
        .footer__nav ul li.corporate a {
          opacity: 0.5;
          -webkit-transition: opacity 0.2s ease;
          transition: opacity 0.2s ease; }
          .footer__nav ul li.corporate a:hover {
            opacity: 1; }
      .footer__nav ul li a {
        display: inline-block;
        line-height: 1;
        padding: 0 1rem;
        color: #fff;
        position: relative; }
        .footer__nav ul li a:hover .text-hover-yel {
          opacity: 1; }
        .footer__nav ul li a.external {
          padding-right: 22px; }
          .footer__nav ul li a.external:after {
            content: "";
            display: block;
            width: 15px;
            height: 12px;
            background-image: url(../img/icon_external-wh.svg);
            background-repeat: no-repeat;
            position: absolute;
            top: 50%;
            right: 0;
            margin-top: -6px; }

@media screen and (max-width: 414px) {
  .footer__nav {
    width: 100%;
    font-size: 1.4rem; } }
@media screen and (max-width: 768px) {
  .footer__nav ul {
    margin-bottom: -1.5rem; } }
@media screen and (max-width: 414px) {
  .footer__nav ul {
    margin-bottom: -1rem; } }
@media screen and (max-width: 768px) {
  .footer__nav ul li {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem; } }
@media screen and (max-width: 414px) {
  .footer__nav ul li {
    margin-bottom: 1rem;
    padding: 0; } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .footer__nav ul li a:hover .text-hover-yel {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
.footer__sns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }

.footer__sns__icon {
  width: 30px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease; }
  .footer__sns__icon + .footer__sns__icon {
    margin-left: 10px; }
  .footer__sns__icon:hover {
    opacity: 0.5; }

@media screen and (max-width: 768px) {
  .footer__sns__icon + .footer__sns__icon {
    margin-left: 5px; } }
.footer__sns + .footer__nav {
  margin-top: 5rem; }

@media screen and (max-width: 768px) {
  .footer__sns + .footer__nav {
    margin-top: 3rem; } }
.search {
  font-size: 2rem;
  padding: 5% 5% 10%;
  background-color: #001E46;
  color: #fff;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  z-index: 4;
  -webkit-transform: translateY(-101%);
  -ms-transform: translateY(-101%);
  transform: translateY(-101%);
  visibility: hidden;
  -ms-overflow-style: none; }
  .search::-webkit-scrollbar {
    display: none; }
  .search.open {
    visibility: visible; }

.search__close {
  cursor: pointer;
  margin-left: auto;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-tap-highlight-color: transparent; }

.search__container, .search__container-wide .search__heading {
  width: 80%;
  margin: 0 auto; }

@media screen and (max-width: 768px) {
  .search__container, .search__container-wide .search__heading {
    width: 90%; } }
.search__container {
  margin-bottom: 5rem; }

.search__heading {
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2rem !important;
  color: #808EA2; }

.search__form {
  display: inline-block;
  position: relative;
  margin: 0 auto;
  width: 100%; }

@media screen and (max-width: 768px) {
  .search__form {
    width: 100%;
    max-width: inherit; } }
.search__input {
  -webkit-appearance: none;
  height: 8rem;
  width: 100%;
  font-size: 1.8rem;
  padding: 0 1rem 0 2rem;
  outline: 0;
  border: 0.3rem solid #001E46;
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif; }
  .search__input::-ms-clear {
    display: none; }
  .search__input::-webkit-search-cancel-button, .search__input::-webkit-search-decoration {
    -webkit-appearance: none; }

.no-search .search__input {
  border: 1px solid #001E46; }

@media screen and (max-width: 768px) {
  .search__input {
    height: 5rem;
    font-size: 1.6rem; } }
@media screen and (max-width: 414px) {
  .search__input {
    height: 5rem;
    padding: 0 1rem; } }
.search__btn {
  padding: 1.25em;
  position: absolute;
  right: 2em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #001E46;
  cursor: pointer; }
  .search__btn:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/svg/icon_search.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat; }
  .search__btn:hover {
    color: #7fbfff; }

@media screen and (max-width: 768px) {
  .search__btn {
    padding: 1em;
    right: 1.5em; } }
.search__category {
  letter-spacing: 0.1em;
  position: relative; }
  .search__category a {
    display: block;
    position: relative;
    color: #fff;
    line-height: 1.25; }
    .search__category a .text-hover-transparent {
      padding: 0.1rem 0;
      display: inline-block; }
    .search__category a .text-hover-yel {
      left: 0;
      padding: 0.1rem 0; }
    .search__category a:hover .text-hover-yel, .search__category a.on .text-hover-yel {
      opacity: 1; }

@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .search__category a:hover .text-hover-yel {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .search__category a.on .text-hover-yel {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
.search__category__item {
  letter-spacing: 0.1em; }

@media only screen and (min-width: 769px) {
  .search__category__item {
    display: inline-block;
    font-size: 3rem; }
    .search__category__item + .search__category__item {
      margin-left: 1em; }
    .search__category__item > a {
      margin-bottom: 3rem; } }
@media only screen and (max-width: 768px) {
  .search__category {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }

  .search__category__item {
    position: relative;
    line-height: 1;
    font-size: 1.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem; }
    .search__category__item + .search__category__item {
      margin-top: 1rem; }
    .search__category__item a {
      display: inline-block; }
    .search__category__item::before {
      content: "";
      display: inline-block;
      width: 20px;
      height: 2px;
      background-color: #fff;
      position: absolute;
      right: 0;
      top: 2rem;
      -webkit-transition: -webkit-transform 150ms ease;
      transition: -webkit-transform 150ms ease;
      transition: transform 150ms ease;
      transition: transform 150ms ease, -webkit-transform 150ms ease; }
    .search__category__item:after {
      content: "";
      display: inline-block;
      width: 20px;
      height: 2px;
      background-color: #fff;
      position: absolute;
      right: 0;
      top: 2rem;
      -webkit-transition: -webkit-transform 150ms ease;
      transition: -webkit-transform 150ms ease;
      transition: transform 150ms ease;
      transition: transform 150ms ease, -webkit-transform 150ms ease;
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg); }
    .search__category__item.open:after {
      -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
      transform: rotate(0); } }
@media screen and (max-width: 414px) {
  .search__category__item + .search__category__item {
    margin-top: 0.25rem; } }
.search__sub-category.pc {
  position: relative;
  height: 84px;
  overflow: hidden; }
  .search__sub-category.pc ul {
    border: 1px solid #fff;
    padding: 20px;
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: none;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease; }
    .search__sub-category.pc ul.on {
      opacity: 1;
      height: auto; }
    .search__sub-category.pc ul li {
      display: inline-block;
      padding: 1rem 2rem;
      font-size: 1.5rem; }
      .search__sub-category.pc ul li a {
        font-weight: 700;
        color: #fff;
        position: relative;
        line-height: 1;
        display: inline-block; }
        .search__sub-category.pc ul li a .text-hover-transparent {
          padding: 0.25rem 0;
          display: inline-block; }
        .search__sub-category.pc ul li a .text-hover-yel {
          left: 0;
          top: 0;
          padding: 0.25rem 0;
          display: inline-block;
          line-height: 1; }
        .search__sub-category.pc ul li a:hover .text-hover-yel {
          opacity: 1; }
.search__sub-category.sp {
  display: none;
  margin-top: 1rem;
  font-size: 1.4rem; }
  .search__sub-category.sp li {
    padding: 1rem 0 1rem 3rem;
    position: relative;
    padding-left: 1.75em; }
    .search__sub-category.sp li:not(:last-of-type) {
      margin-bottom: 1rem; }
    .search__sub-category.sp li a {
      font-weight: 700; }
    .search__sub-category.sp li::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      width: 20px;
      height: 2px;
      background-color: #001E46;
      width: 1em;
      background-color: #fff;
      height: 1px; }

@media screen and (max-width: 1024px) {
  .search__sub-category.pc {
    height: 0; } }
@media screen and (max-width: 768px) {
  .search__sub-category.pc {
    display: none; } }
@media all and (-ms-high-contrast: none) {
  .search__sub-category.pc ul li a .text-hover-transparent {
    padding: 0.75rem 0 0; } }
@media all and (-ms-high-contrast: none) {
  .search__sub-category.pc ul li a .text-hover-yel {
    padding: 0.75rem 0 0; } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .search__sub-category.pc ul li a:hover .text-hover-yel {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
.search__tag {
  font-size: 1.4rem;
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  letter-spacing: 0.12em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .search__tag li {
    padding-right: 3rem;
    margin-bottom: 3rem; }
    .search__tag li a {
      display: block;
      position: relative;
      color: #fff;
      font-weight: 700;
      line-height: 1; }
      .search__tag li a .text-hover-transparent {
        padding: 0.25rem 0;
        display: inline-block; }
      .search__tag li a .text-hover-yel {
        left: 0;
        padding: 0.25rem 0;
        display: inline-block; }
      .search__tag li a:hover .text-hover-yel {
        opacity: 1; }

@media screen and (max-width: 414px) {
  .search__tag li {
    padding-right: 1rem;
    margin-bottom: 2rem; } }
@media all and (-ms-high-contrast: none) {
  .search__tag li a .text-hover-transparent {
    padding: 0.75rem 0 0; } }
@media all and (-ms-high-contrast: none) {
  .search__tag li a .text-hover-yel {
    padding: 0.75rem 0 0; } }
@supports (-webkit-clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) or (clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%)) {
  .search__tag li a:hover .text-hover-yel {
    -webkit-clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%);
    clip-path: polygon(0 0, 101% 0, 101% 100%, 0 100%); } }
.no-search:last-child {
  margin-bottom: 200px; }

@media screen and (max-width: 768px) {
  .no-search:last-child {
    margin-bottom: 50px; } }
.nohit {
  width: 46px;
  margin: 60px auto 100px; }
  .nohit:last-child {
    margin-bottom: 0; }

@media screen and (max-width: 768px) {
  .nohit {
    width: 35px;
    margin: 40px auto 80px; } }
@media screen and (max-width: 414px) {
  .nohit {
    margin: 30px auto 40px; } }
.category {
  margin-bottom: 3rem; }

@media screen and (max-width: 768px) {
  .category {
    margin-bottom: 3rem; } }
.category__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5%; }

@media screen and (max-width: 768px) {
  .category__list {
    margin-right: -4%; } }
.category__item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333%;
  -ms-flex: 0 0 33.333%;
  flex: 0 0 33.333%;
  max-width: 33.333%;
  padding-right: 5%;
  margin-bottom: 5%; }
  .category__item.new .summary__header {
    position: relative; }
    .category__item.new .summary__header:after {
      content: "NEW";
      font-family: Staatliches, dnp-shuei-gothic-kin-std, Meiryo, sans-serif;
      font-size: 2rem;
      letter-spacing: 0.05em;
      line-height: 1;
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      width: 5rem;
      height: 3rem;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
      color: #001E46;
      background-color: #E6FF00;
      position: absolute;
      top: 0.75rem;
      right: 1rem; }

@media screen and (max-width: 768px) {
  .category__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    min-width: 50%;
    padding-right: 4%; } }
@media screen and (max-width: 1024px) {
  .category__item.new .summary__header:after {
    font-size: 1.8rem;
    width: 4rem;
    height: 2.5rem;
    top: 1rem; } }
@media screen and (max-width: 414px) {
  .category__item.new .summary__header:after {
    width: 2.8rem;
    height: 1.7rem;
    font-size: 1.2rem;
    top: 1.5rem; } }
.c-ttl {
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-top: 4rem;
  margin-bottom: 10rem;
  letter-spacing: 0.1em; }
  .c-ttl.mask-ttl {
    overflow: hidden; }

@media screen and (max-width: 768px) {
  .c-ttl {
    padding-top: 6rem;
    margin-bottom: 4rem; } }
.c-ttl-category {
  font-size: 5rem;
  margin-bottom: 1rem; }
  .c-ttl-category._small {
    font-size: 4rem; }

@media screen and (max-width: 768px) {
  .c-ttl-category {
    font-size: 2rem; } }
@media screen and (max-width: 768px) {
  .c-ttl-category._small {
    font-size: 2rem; } }
.c-ttl-title {
  font-size: 10rem;
  letter-spacing: 0.075em;
  position: relative; }
  .c-ttl-title::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 8rem;
    left: -10rem;
    width: 0;
    height: 0.4rem;
    background-color: #001E46;
    -webkit-transform: rotate(-55deg);
    -ms-transform: rotate(-55deg);
    transform: rotate(-55deg);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: all 0.8s;
    transition: all 0.8s; }
  .c-ttl-title.open.c-ttl-title:before {
    width: 20rem; }
  .c-ttl-title._small {
    font-size: 4.2rem;
    letter-spacing: 0.06em;
    font-weight: 700;
    min-width: 4em;
    font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif; }
    .c-ttl-title._small:before {
      top: 4rem; }
    .c-ttl-title._small.open.c-ttl-title:before {
      width: 15rem; }

@media screen and (max-width: 1024px) {
  .c-ttl-title {
    font-size: 7rem; } }
@media screen and (max-width: 768px) {
  .c-ttl-title {
    font-size: 4.2rem; } }
@media screen and (max-width: 1024px) {
  .c-ttl-title::before {
    top: 6rem; } }
@media screen and (max-width: 768px) {
  .c-ttl-title::before {
    top: 4rem;
    left: -6rem;
    height: 0.3rem; } }
@media screen and (max-width: 414px) {
  .c-ttl-title::before {
    height: 0.2rem; } }
@media screen and (max-width: 1024px) {
  .c-ttl-title.open.c-ttl-title:before {
    width: 15rem; } }
@media screen and (max-width: 768px) {
  .c-ttl-title.open.c-ttl-title:before {
    width: 8rem; } }
@media screen and (max-width: 768px) {
  .c-ttl-title._small {
    font-size: 2.3rem;
    min-width: 3.75em; } }
@media screen and (max-width: 768px) {
  .c-ttl-title._small:before {
    top: 2rem; } }
@media screen and (max-width: 768px) {
  .c-ttl-title._small.open.c-ttl-title:before {
    width: 8rem; } }
.c-ttl-sub {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700; }
  .c-ttl-sub::after {
    content: "";
    display: block;
    -webkit-box-flex: 1;
    -webkit-flex: auto;
    -ms-flex: auto;
    flex: auto;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    height: 1px;
    margin-left: 3rem;
    background-color: #001E46; }

@media screen and (max-width: 1024px) {
  .c-ttl-sub {
    font-size: 2rem; } }
@media screen and (max-width: 414px) {
  .c-ttl-sub {
    font-size: 1.4rem; } }
@media screen and (max-width: 414px) {
  .c-ttl-sub::after {
    margin-left: 1rem; } }
.c-pagenation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center; }

.c-pagenation__btn {
  width: 4rem;
  height: 4rem; }
  .c-pagenation__btn a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    width: 4rem;
    height: 4rem; }
    .c-pagenation__btn a::before {
      content: "";
      display: inline-block;
      width: 24px;
      height: 5px;
      background: url(../img/svg/arrow_prev.svg) no-repeat center center;
      background-size: contain; }

.c-pagenation__btn-next a::before {
  background: url(../img/svg/arrow_next.svg); }

.c-pagenation__number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 2.6rem;
  letter-spacing: 0.04em;
  line-height: 1;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .c-pagenation__number a {
    display: block;
    padding: 1rem;
    position: relative;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease; }
    .c-pagenation__number a.current {
      pointer-events: none;
      position: relative;
      -webkit-transition: opacity 0.3s ease;
      transition: opacity 0.3s ease; }
      .c-pagenation__number a.current::before {
        content: "";
        display: inline-block;
        position: absolute;
        bottom: 0;
        left: 12.5%;
        width: 75%;
        height: 2px;
        background-color: #001E46;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transition: -webkit-transform 0.2s ease;
        transition: -webkit-transform 0.2s ease;
        transition: transform 0.2s ease;
        transition: transform 0.2s ease, -webkit-transform 0.2s ease; }
      .c-pagenation__number a.current:hover {
        opacity: 0.5; }
        .c-pagenation__number a.current:hover:before {
          -webkit-transform: scaleX(1);
          -ms-transform: scaleX(1);
          transform: scaleX(1); }
      .c-pagenation__number a.current:before {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1); }
    .c-pagenation__number a::before {
      content: "";
      display: inline-block;
      position: absolute;
      bottom: 0;
      left: 12.5%;
      width: 75%;
      height: 2px;
      background-color: #001E46;
      -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
      transform: scaleX(0);
      -webkit-transition: -webkit-transform 0.2s ease;
      transition: -webkit-transform 0.2s ease;
      transition: transform 0.2s ease;
      transition: transform 0.2s ease, -webkit-transform 0.2s ease; }
    .c-pagenation__number a:hover {
      opacity: 0.5; }
      .c-pagenation__number a:hover:before {
        -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
        transform: scaleX(1); }

.a-body .a-author, .a-body .video, .a-body h2, .a-body h3, .a-body h4, .a-body h5, .a-body p {
  margin-right: auto;
  margin-left: auto; }

.a-header, .a-job, .a-wrapper {
  margin-right: auto;
  margin-left: auto; }

@media screen and (max-width: 768px) {
  .no-search {
    padding-top: 3rem;
    padding-bottom: 3rem; } }
.a-body figure {
  margin-top: 6em;
  margin-bottom: 6em; }

@media screen and (max-width: 768px) {
  .a-body figure {
    margin-top: 4em;
    margin-bottom: 4em; } }
.a-post h2, .a-post h3, .a-post h4, .a-post h5, .a-post p {
  margin-bottom: 2em; }
.a-post h2:first-child, .a-post h3:first-child, .a-post h4:first-child, .a-post h5:first-child, .a-post p:first-child {
  margin-top: -4rem; }
.a-post h2 {
  margin: 4em auto 3em; }
  .a-post h2:first-child {
    margin-top: 0; }
.a-post a {
  text-decoration: underline;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease; }
  .a-post a:hover {
    opacity: 0.7; }
.a-post ol {
  margin-bottom: 2em; }
.a-post ul {
  margin-bottom: 2em;
  padding-left: 1.5em;
  list-style-type: disc;
  list-style-position: outside; }
.a-post ol {
  padding-left: 1.5em;
  list-style-type: decimal;
  list-style-position: outside; }
.a-post table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 2em;
  border: 2px solid #001E46; }
  .a-post table caption {
    font-size: 0.8em;
    text-align: left;
    padding: 0.25em 0; }
  .a-post table td {
    text-align: left;
    border: 1px solid #001E46;
    padding: 0.75em 1em;
    line-height: 1.5; }
  .a-post table th {
    text-align: left;
    border: 1px solid #001E46;
    padding: 0.75em 1em;
    line-height: 1.5;
    font-weight: 400;
    background-color: #e9e9e9; }

@media screen and (max-width: 768px) {
  .a-post h2, .a-post h3, .a-post h4, .a-post h5, .a-post p {
    margin-bottom: 1.5em; }
  .a-post h2:first-child, .a-post h3:first-child, .a-post h4:first-child, .a-post h5:first-child, .a-post p:first-child {
    margin-top: 0; } }
@media screen and (max-width: 768px) {
  .a-post h2 {
    margin: 3em auto 2em; } }
@media screen and (max-width: 768px) {
  .a-post ol, .a-post ul {
    margin-bottom: 1.5em; } }
@media screen and (max-width: 768px) {
  .a-post table {
    margin-bottom: 1.5em;
    border: 1px solid #001E46; } }
@media screen and (max-width: 768px) {
  .a-post table td, .a-post table th {
    padding: 0.5em 0.75em; } }
.a-body .video {
  position: relative; }
  .a-body .video:after {
    content: "";
    display: block;
    padding-top: 56.25%; }
  .a-body .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.a-ttl-no-search {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem; }

@media screen and (max-width: 768px) {
  .a-ttl-no-search {
    margin-bottom: 2rem; } }
.a-header {
  margin-bottom: 6rem; }

@media screen and (max-width: 768px) {
  .a-header {
    margin-bottom: 3.5rem; } }
.a-meta {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

@media screen and (max-width: 768px) {
  .a-meta {
    display: block; } }
.a-meta__number {
  margin-right: 2rem;
  line-height: 1;
  letter-spacing: 0.075em;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transform: translateY(0.3rem);
  -ms-transform: translateY(0.3rem);
  transform: translateY(0.3rem); }

@media screen and (max-width: 768px) {
  .a-meta__number {
    margin-bottom: 1.5em; } }
@media screen and (max-width: 414px) {
  .a-meta__number {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    margin-right: 0;
    margin-bottom: 1.5rem; } }
.a-meta__number-no {
  font-size: 2rem;
  -webkit-transform: translateY(0.3rem);
  -ms-transform: translateY(0.3rem);
  transform: translateY(0.3rem); }

@media screen and (max-width: 414px) {
  .a-meta__number-no {
    font-size: 1.3rem; } }
.a-meta__number-num {
  font-size: 4.3rem; }

@media screen and (max-width: 414px) {
  .a-meta__number-num {
    font-size: 2.8rem; } }
.a-meta__category {
  font-size: 2.6rem;
  margin-right: 1.5rem;
  line-height: 1;
  letter-spacing: 0.075em;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end; }

@media screen and (max-width: 768px) {
  .a-meta__category {
    display: inline-block; } }
@media screen and (max-width: 414px) {
  .a-meta__category {
    font-size: 2.2rem;
    margin-right: 0; } }
.a-meta__subcategory {
  font-size: 1.3rem;
  font-weight: 700;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  padding-left: 2.875rem;
  position: relative; }
  .a-meta__subcategory::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 2.3rem;
    height: 0.2rem;
    background-color: #001E46;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateY(-75%) rotate(-55deg);
    -ms-transform: translateY(-75%) rotate(-55deg);
    transform: translateY(-75%) rotate(-55deg); }
  .a-meta__subcategory:before {
    top: 25%; }

@media screen and (max-width: 768px) {
  .a-meta__subcategory {
    display: inline-block; } }
.a__title {
  font-size: 3rem;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-bottom: 3.5rem;
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif; }

@media screen and (max-width: 768px) {
  .a__title {
    font-size: 2.2rem; } }
@media screen and (max-width: 414px) {
  .a__title {
    font-size: 2rem; } }
.a-tag__list {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .a-tag__list li {
    margin-right: 2rem; }
    .a-tag__list li a span {
      font-weight: 700; }

@media screen and (max-width: 414px) {
  .a-tag__list {
    font-size: 1.3rem; } }
.a-thumbnail {
  margin: 0 auto 10rem;
  position: relative;
  padding-top: 52.2449%;
  width: calc(100vw - 150px);
  width: calc(var(--vw) - 150px);
  max-width: 1770px; }
  .a-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 0;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    font-family: "object-fit: cover; object-position: 50% 0%;"; }

@media only screen and (max-width: 1200px) {
  .a-thumbnail {
    width: calc(100vw - 130px);
    width: calc(var(--vw) - 130px); } }
@media screen and (max-width: 768px) {
  .a-thumbnail {
    width: auto;
    padding-top: 76.5625%;
    margin-left: -3rem;
    margin-right: -3rem;
    margin-bottom: 5rem; } }
@media screen and (max-width: 414px) {
  .a-thumbnail {
    margin-left: -2rem;
    margin-right: -2rem;
    margin-bottom: 4rem; } }
.a-thumbnail__date {
  line-height: 1;
  padding: 0.5em;
  letter-spacing: 0.05em;
  background-color: #fff; }

@media only screen and (min-width: 768px) {
  .a-thumbnail__date {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    position: absolute;
    top: 0;
    right: 0; }
    .a-thumbnail__date _::-webkit-full-page-media, .a-thumbnail__date _:future {
      right: 1em; }

  :root .a-thumbnail__date {
    right: 1em; } }
@media all and (-ms-high-contrast: none) {
  .a-thumbnail__date {
    right: 1em; } }
@supports (-ms-ime-align: auto) {
  .a-thumbnail__date {
    right: 1em; } }
@media screen and (max-width: 768px) {
  .a-thumbnail__date {
    display: none; } }
.a-intro {
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 2.25;
  margin: 6em auto 8em; }

@media screen and (max-width: 768px) {
  .a-intro {
    font-size: 13px; } }
@media screen and (max-width: 414px) {
  .a-intro {
    font-size: 11px;
    margin: 4em auto 6em;
    line-height: 2; } }
.a-body {
  text-align: justify;
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.06em;
  line-height: 2; }
  .a-body h2 {
    font-size: 2.6rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    font-weight: 700;
    padding-left: 6.25rem;
    position: relative;
    padding-left: 0; }
    .a-body h2::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 5rem;
      height: 0.2rem;
      background-color: #001E46;
      -webkit-transform-origin: center;
      -ms-transform-origin: center;
      transform-origin: center;
      -webkit-transform: translateY(-75%) rotate(-55deg);
      -ms-transform: translateY(-75%) rotate(-55deg);
      transform: translateY(-75%) rotate(-55deg); }
    .a-body h2:before {
      top: 0;
      left: -5rem;
      -webkit-transform: rotate(-55deg) translateY(75%);
      -ms-transform: rotate(-55deg) translateY(75%);
      transform: rotate(-55deg) translateY(75%); }
  .a-body h3 {
    font-size: 2rem;
    color: #909090;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 700;
    margin: 3.5em auto; }
    .a-body h3::before {
      content: "";
      display: block;
      width: 6.7rem;
      height: 0.1rem;
      background-color: #aaa;
      -webkit-transform: translateY(2rem);
      -ms-transform: translateY(2rem);
      transform: translateY(2rem);
      margin-right: 1em; }
  .a-body .a-post > figure {
    margin-left: -4.5rem;
    margin-right: -4.5rem;
    position: relative; }
    .a-body .a-post > figure:before {
      content: "";
      display: block;
      padding-top: 50.5618%; }
    .a-body .a-post > figure img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 0;
      -webkit-transition: -webkit-transform 0.5s ease;
      transition: -webkit-transform 0.5s ease;
      transition: transform 0.5s ease;
      transition: transform 0.5s ease, -webkit-transform 0.5s ease;
      font-family: "object-fit: cover; object-position: 50% 0%;"; }
    .a-body .a-post > figure figcaption {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%; }
  .a-body figcaption {
    font-size: 15px;
    line-height: 1.5;
    padding-top: 0.5em; }
  .a-body .fig_col {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 6em auto 6em;
    margin: 6em auto calc(6em - 40px); }
    .a-body .fig_col figure {
      width: 46.25%;
      margin: 0 7.5% 40px 0;
      height: auto; }
      .a-body .fig_col figure:nth-child(2n) {
        margin-right: 0; }

@media screen and (max-width: 768px) {
  .a-body {
    font-size: 1.5rem; } }
@media screen and (max-width: 414px) {
  .a-body {
    font-size: 1.2rem; } }
@media screen and (max-width: 768px) {
  .a-body h2 {
    font-size: 2rem;
    margin-left: 2rem; }
    .a-body h2:before {
      width: 2.4rem;
      height: 1px;
      left: -3rem; } }
@media screen and (max-width: 414px) {
  .a-body h2 {
    margin-left: 3rem;
    font-size: 1.5rem; } }
@media screen and (max-width: 768px) {
  .a-body h3 {
    margin: 2em auto;
    font-size: 1.5rem; } }
@media screen and (max-width: 414px) {
  .a-body h3 {
    font-size: 1.2rem; } }
@media screen and (max-width: 768px) {
  .a-body h3::before {
    width: 4rem;
    -webkit-transform: translateY(1.5rem);
    -ms-transform: translateY(1.5rem);
    transform: translateY(1.5rem); } }
@media screen and (max-width: 1024px) {
  .a-body .a-post > figure {
    margin-left: -4rem;
    margin-right: -4rem; } }
@media screen and (max-width: 768px) {
  .a-body .a-post > figure {
    margin-left: 0;
    margin-right: 0; } }
@media screen and (max-width: 768px) {
  .a-body figcaption {
    font-size: 13px; } }
@media screen and (max-width: 414px) {
  .a-body figcaption {
    font-size: 11px; } }
@media screen and (max-width: 1024px) {
  .a-body .fig_col {
    margin: 6em auto calc(6em - 30px); } }
@media screen and (max-width: 768px) {
  .a-body .fig_col {
    margin: 4em auto calc(6em - 30px); } }
@media only screen and (max-width: 600px) {
  .a-body .fig_col {
    display: block;
    max-width: 400px;
    margin: 4em auto; } }
@media screen and (max-width: 1024px) {
  .a-body .fig_col figure {
    margin: 0 7.5% 30px 0; } }
@media only screen and (max-width: 600px) {
  .a-body .fig_col figure {
    width: 100%;
    margin: 0 auto; }
    .a-body .fig_col figure + figure {
      margin-top: 20px; } }
.a-hr {
  margin: 10rem 0;
  margin-left: -9rem;
  margin-right: -9rem; }

@media screen and (max-width: 1024px) {
  .a-hr {
    margin: 7.5rem 0;
    margin-left: -4rem;
    margin-right: -4rem; } }
@media screen and (max-width: 768px) {
  .a-hr {
    margin: 4.5rem 0;
    margin-left: 0;
    margin-right: 0; } }
.a-author {
  margin: 10rem 0; }
  .a-author figure {
    margin-left: 0;
    margin-right: 0; }

@media screen and (max-width: 1024px) {
  .a-author {
    margin: 7.5rem 0; } }
@media screen and (max-width: 768px) {
  .a-author {
    max-width: 400px;
    margin: 4.5rem auto;
    display: block; } }
@media screen and (max-width: 414px) {
  .a-author {
    line-height: 1.75; } }
.a-author__img {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 50%;
  position: relative; }
  .a-author__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease;
    font-family: "object-fit: cover; object-position: 50% 50%;"; }

@media screen and (max-width: 768px) {
  .a-author__img {
    padding-top: 60%; } }
.a-author__profile {
  margin-top: 3em;
  font-size: 15px; }

@media screen and (max-width: 768px) {
  .a-author__profile {
    margin-top: 1.5em;
    font-size: 14px; } }
@media screen and (max-width: 414px) {
  .a-author__profile {
    font-size: 12px; } }
.a-author__profile-name {
  font-weight: 700; }

.a-author__profile-discription p {
  margin-bottom: 0; }
  .a-author__profile-discription p:empty {
    margin-bottom: 1.25em; }

.a-share {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-top: 1px solid #C8C8C8;
  border-bottom: 1px solid #C8C8C8;
  padding: 40px 0;
  margin: 125px auto;
  line-height: 1;
  position: relative; }

@media screen and (max-width: 980px) {
  .a-share {
    margin: 80px auto; } }
@media screen and (max-width: 768px) {
  .a-share {
    max-width: 400px;
    padding: 25px 0;
    margin: 45px auto; } }
@media screen and (max-width: 414px) {
  .a-share {
    padding: 15px 0; } }
.a-share__heading {
  margin-left: 0;
  margin-right: auto;
  font-size: 15px;
  font-family: Staatliches, dnp-shuei-gothic-kin-std, Meiryo, sans-serif;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .a-share__heading:after {
    content: "";
    display: inline-block;
    background-image: url(../img/svg/link_arrow.svg);
    width: 28px;
    padding-top: 16.2169%;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 0.5em;
    margin-top: -4px; }

@media screen and (max-width: 768px) {
  .a-share__heading {
    font-size: 12px; } }
@media screen and (max-width: 414px) {
  .a-share__heading {
    font-size: 11px; } }
@media screen and (max-width: 768px) {
  .a-share__heading:after {
    width: 18px; } }
@media screen and (max-width: 414px) {
  .a-share__heading:after {
    width: 14px; } }
.a-share__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: auto;
  margin: 0; }
  .a-share__list li + li {
    margin-left: 25px; }

@media screen and (max-width: 768px) {
  .a-share__list li + li {
    margin-left: 15px; } }
.a-share__icon {
  width: 32px;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease; }
  .a-share__icon:hover {
    opacity: 0.5; }

@media screen and (max-width: 768px) {
  .a-share__icon {
    width: 24px; } }
@media screen and (max-width: 414px) {
  .a-share__icon {
    width: 16px; } }
.a-job__heading {
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  margin: 125px auto; }

@media screen and (max-width: 768px) {
  .a-job__heading {
    margin: 45px auto 40px;
    font-size: 14px; } }
@media screen and (max-width: 414px) {
  .a-job__heading {
    font-size: 12px; } }
.a-job__ttl {
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  background-color: #001E46;
  color: #fff;
  padding: 4rem;
  text-align: center;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  margin-bottom: 3rem; }
  .a-job__ttl::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: -webkit-transform 150ms ease;
    transition: -webkit-transform 150ms ease;
    transition: transform 150ms ease;
    transition: transform 150ms ease, -webkit-transform 150ms ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden; }
  .a-job__ttl:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 2rem;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: -webkit-transform 150ms ease;
    transition: -webkit-transform 150ms ease;
    transition: transform 150ms ease;
    transition: transform 150ms ease, -webkit-transform 150ms ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate(0, -50%) rotate(90deg);
    -ms-transform: translate(0, -50%) rotate(90deg);
    transform: translate(0, -50%) rotate(90deg); }
  .a-job__ttl.open:after {
    -webkit-transform: translate(0, -50%) rotate(0);
    -ms-transform: translate(0, -50%) rotate(0);
    transform: translate(0, -50%) rotate(0); }

@media screen and (max-width: 768px) {
  .a-job__ttl {
    margin-bottom: 3rem; } }
@media screen and (max-width: 768px) {
  .a-job__ttl {
    padding: 2rem; } }
@media screen and (max-width: 414px) {
  .a-job__ttl {
    padding: 2rem 6rem 2rem 2rem;
    text-align-last: left; } }
@media screen and (max-width: 768px) {
  .a-job__ttl::before, .a-job__ttl:after {
    top: 30%; } }
@media screen and (max-width: 414px) {
  .a-job__ttl::before, .a-job__ttl:after {
    top: inherit;
    bottom: 3rem;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); } }
.a-job__ttl-jobs {
  position: absolute;
  font-size: 1.4rem;
  left: 2rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }
  .a-job__ttl-jobs::before {
    content: "";
    display: block;
    width: 4rem;
    height: 0.1rem;
    top: 1.5rem;
    left: 0;
    -webkit-transform: translateY(0) rotate(-55deg);
    -ms-transform: translateY(0) rotate(-55deg);
    transform: translateY(0) rotate(-55deg);
    background-color: #fff;
    position: relative; }

@media only screen and (min-width: 769px) {
  .a-job__ttl-jobs {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl; } }
@media screen and (max-width: 768px) {
  .a-job__ttl-jobs {
    position: static;
    display: block;
    text-align: left;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); } }
@media screen and (max-width: 768px) {
  .a-job__ttl-jobs::before {
    display: none; } }
.a-job__ttl-title {
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-weight: 700; }

@media screen and (max-width: 768px) {
  .a-job__ttl-title {
    font-size: 1.4rem; } }
.a-job__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.a-job__toggle {
  display: none;
  margin-bottom: 4rem; }
  .a-job__toggle.open {
    display: block; }

.a-job__summary {
  letter-spacing: 0.1em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  border-right: 1px solid #001E46;
  padding: 0 1rem;
  margin-right: 5rem; }

@media screen and (max-width: 1024px) {
  .a-job__summary {
    margin-right: 3rem; } }
@media only screen and (max-width: 600px) {
  .a-job__summary {
    padding-left: 0; } }
.a-job__list {
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1; }

.a-job__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }
  .a-job__item:not(:last-of-type) {
    margin-bottom: 5rem; }
  .a-job__item:nth-of-type(1) > .a-job__item-ttl::before {
    content: "1."; }
  .a-job__item:nth-of-type(2) > .a-job__item-ttl::before {
    content: "2."; }
  .a-job__item:nth-of-type(3) > .a-job__item-ttl::before {
    content: "3."; }
  .a-job__item:nth-of-type(4) > .a-job__item-ttl::before {
    content: "4."; }
  .a-job__item:nth-of-type(5) > .a-job__item-ttl::before {
    content: "5."; }
  .a-job__item:nth-of-type(6) > .a-job__item-ttl::before {
    content: "6."; }
  .a-job__item:nth-of-type(7) > .a-job__item-ttl::before {
    content: "7."; }
  .a-job__item:nth-of-type(8) > .a-job__item-ttl::before {
    content: "8."; }
  .a-job__item:nth-of-type(9) > .a-job__item-ttl::before {
    content: "9."; }
  .a-job__item:nth-of-type(10) > .a-job__item-ttl::before {
    content: "10."; }
  .a-job__item:nth-of-type(11) > .a-job__item-ttl::before {
    content: "11."; }
  .a-job__item:nth-of-type(12) > .a-job__item-ttl::before {
    content: "12."; }
  .a-job__item:nth-of-type(13) > .a-job__item-ttl::before {
    content: "13."; }
  .a-job__item:nth-of-type(14) > .a-job__item-ttl::before {
    content: "14."; }
  .a-job__item:nth-of-type(15) > .a-job__item-ttl::before {
    content: "15."; }
  .a-job__item:nth-of-type(16) > .a-job__item-ttl::before {
    content: "16."; }
  .a-job__item:nth-of-type(17) > .a-job__item-ttl::before {
    content: "17."; }
  .a-job__item:nth-of-type(18) > .a-job__item-ttl::before {
    content: "18."; }
  .a-job__item:nth-of-type(19) > .a-job__item-ttl::before {
    content: "19."; }
  .a-job__item:nth-of-type(20) > .a-job__item-ttl::before {
    content: "20."; }
  .a-job__item:nth-of-type(21) > .a-job__item-ttl::before {
    content: "21."; }
  .a-job__item:nth-of-type(22) > .a-job__item-ttl::before {
    content: "22."; }
  .a-job__item:nth-of-type(23) > .a-job__item-ttl::before {
    content: "23."; }
  .a-job__item:nth-of-type(24) > .a-job__item-ttl::before {
    content: "24."; }
  .a-job__item:nth-of-type(25) > .a-job__item-ttl::before {
    content: "25."; }
  .a-job__item:nth-of-type(26) > .a-job__item-ttl::before {
    content: "26."; }
  .a-job__item:nth-of-type(27) > .a-job__item-ttl::before {
    content: "27."; }
  .a-job__item:nth-of-type(28) > .a-job__item-ttl::before {
    content: "28."; }
  .a-job__item:nth-of-type(29) > .a-job__item-ttl::before {
    content: "29."; }
  .a-job__item:nth-of-type(30) > .a-job__item-ttl::before {
    content: "30."; }

@media only screen and (max-width: 600px) {
  .a-job__item {
    display: block; } }
@media screen and (max-width: 768px) {
  .a-job__item:not(:last-of-type) {
    margin-bottom: 3rem; } }
.a-job__item-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%; }
  .a-job__item-ttl::before {
    font-family: Staatliches, dnp-shuei-gothic-kin-std, Meiryo, sans-serif;
    font-weight: 500;
    font-size: 1.5em;
    content: "1.";
    display: inline-block;
    margin-right: 0.5em; }

.a-job__item-contents {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 2.9rem;
  -webkit-flex-basis: auto;
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  max-width: 100%; }
  .a-job__item-contents a {
    text-decoration: underline;
    -webkit-transition: opacity 0s ease;
    transition: opacity 0s ease; }
    .a-job__item-contents a:hover {
      opacity: 0.7; }

@media all and (-ms-high-contrast: none) {
  .a-job__item-contents {
    max-width: 75%; } }
@media only screen and (max-width: 600px) {
  .a-job__item-contents {
    line-height: 2;
    max-width: 100%;
    word-break: break-all; } }
@media screen and (max-width: 414px) {
  .a-job__item-contents {
    font-size: 1.2rem; } }
.a-nav {
  margin-bottom: 15rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }
  .a-nav .summary__item {
    max-width: 280px;
    position: relative; }
    .a-nav .summary__item .arrow {
      position: absolute;
      line-height: 1;
      top: 50%; }
      .a-nav .summary__item .arrow span {
        display: block;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        font-size: 0.875em;
        letter-spacing: 0.1em;
        line-height: 1; }
      .a-nav .summary__item .arrow:after {
        pointer-events: none; }
      .a-nav .summary__item .arrow:before {
        pointer-events: none;
        content: "";
        display: block;
        width: 30px;
        height: 1px;
        background-color: #001E46;
        position: absolute;
        top: 50%;
        margin-top: -2px;
        -webkit-transition: width 0.3s ease;
        transition: width 0.3s ease; }
      .a-nav .summary__item .arrow:after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 6px 0 0 9px;
        border-color: transparent transparent transparent #001E46;
        position: absolute;
        top: 50%;
        margin-top: -8px; }

@media screen and (max-width: 768px) {
  .a-nav .summary__item .arrow span {
    font-size: 1rem; } }
@media screen and (max-width: 1024px) {
  .a-nav .summary__item .arrow:before {
    width: 25px; } }
@media only screen and (max-width: 600px) {
  .a-nav .summary__item .arrow:before {
    width: 15px; } }
@media only screen and (max-width: 600px) {
  .a-nav .summary__item .arrow:after {
    border-width: 4px 0 0 6px;
    margin-top: -6px; } }
@media only screen and (max-width: 1200px) {
  .a-nav {
    margin-left: 120px; } }
@media screen and (max-width: 1024px) {
  .a-nav {
    margin-bottom: 10rem; }
    .a-nav .summary__item {
      max-width: none;
      width: 80%;
      min-width: 80%; } }
@media screen and (max-width: 768px) {
  .a-nav {
    margin-bottom: 7.5rem;
    margin-left: 0; } }
@media screen and (max-width: 414px) {
  .a-nav {
    margin-bottom: 5rem; } }
.a-nav__prev {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 4rem 5rem 4rem 4rem;
  margin-right: 2.5%;
  background-color: #E9E9E9; }
  .a-nav__prev .summary__item {
    margin-left: auto;
    margin-right: 10px; }
  .a-nav__prev .arrow {
    left: calc(-35% - 30px);
    padding-left: 30px; }
    .a-nav__prev .arrow span {
      margin-right: -5px; }
    .a-nav__prev .arrow:before {
      right: 20px; }
    .a-nav__prev .arrow:after {
      right: 41px;
      -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
      transform: scale(-1, 1);
      -webkit-transition: right 0.3s ease;
      transition: right 0.3s ease; }

@media screen and (max-width: 1024px) {
  .a-nav__prev {
    padding: 4rem 3rem 4rem 4rem; } }
@media screen and (max-width: 768px) {
  .a-nav__prev .arrow span {
    margin-right: 0; } }
@media screen and (max-width: 414px) {
  .a-nav__prev .arrow span {
    margin-right: -5px; } }
@media only screen and (max-width: 1300px) {
  .a-nav__prev .arrow {
    left: calc(-22.5% - 30px); } }
@media screen and (max-width: 768px) {
  .a-nav__prev .arrow {
    padding-left: 25px;
    left: -55px; } }
@media only screen and (max-width: 600px) {
  .a-nav__prev .arrow {
    padding-left: 15px;
    left: -45px; } }
@media screen and (max-width: 414px) {
  .a-nav__prev .arrow {
    left: -40px; } }
@media only screen and (max-width: 600px) {
  .a-nav__prev .arrow:before {
    right: 15px; } }
@media screen and (max-width: 1024px) {
  .a-nav__prev .arrow:after {
    right: 36px; } }
@media only screen and (max-width: 600px) {
  .a-nav__prev .arrow:after {
    right: 24px; } }
@media screen and (max-width: 768px) {
  .a-nav__prev {
    padding: 2rem 2rem 2rem 3rem; }
    .a-nav__prev .summary__item {
      margin-right: 0; } }
@media screen and (max-width: 414px) {
  .a-nav__prev {
    margin-right: 1.5%;
    padding: 1rem 1rem 1rem 3rem; } }
@media only screen and (min-width: 769px) {
  .a-nav__prev .summary__link:hover .arrow:before {
    width: 45px; } }
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .a-nav__prev .summary__link:hover .arrow:before {
    width: 35px; } }
@media only screen and (min-width: 769px) {
  .a-nav__prev .summary__link:hover .arrow:after {
    right: 56px; } }
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .a-nav__prev .summary__link:hover .arrow:after {
    right: 46px; } }
.a-nav__next {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 4rem 4rem 4rem 5rem;
  margin-left: 2.5%;
  background-color: #E9E9E9; }
  .a-nav__next .arrow {
    right: calc(-35% - 30px);
    padding-right: 30px; }
    .a-nav__next .arrow span {
      margin-left: -5px; }
    .a-nav__next .arrow:before {
      left: 20px; }
    .a-nav__next .arrow:after {
      left: 41px;
      -webkit-transition: left 0.3s ease;
      transition: left 0.3s ease; }

@media screen and (max-width: 1024px) {
  .a-nav__next {
    padding: 4rem 4rem 4rem 3rem; } }
@media screen and (max-width: 768px) {
  .a-nav__next .arrow span {
    margin-left: 0; } }
@media screen and (max-width: 414px) {
  .a-nav__next .arrow span {
    margin-left: -5px; } }
@media only screen and (max-width: 1300px) {
  .a-nav__next .arrow {
    right: calc(-22.5% - 30px); } }
@media screen and (max-width: 768px) {
  .a-nav__next .arrow {
    padding-right: 25px;
    right: -55px; } }
@media only screen and (max-width: 600px) {
  .a-nav__next .arrow {
    padding-right: 15px;
    right: -45px; } }
@media screen and (max-width: 414px) {
  .a-nav__next .arrow {
    right: -40px; } }
@media only screen and (max-width: 600px) {
  .a-nav__next .arrow:before {
    left: 15px; } }
@media screen and (max-width: 1024px) {
  .a-nav__next .arrow:after {
    left: 36px; } }
@media only screen and (max-width: 600px) {
  .a-nav__next .arrow:after {
    left: 24px; } }
@media screen and (max-width: 768px) {
  .a-nav__next {
    padding: 2rem 3rem 2rem 2rem; } }
@media screen and (max-width: 414px) {
  .a-nav__next {
    margin-left: 1.5%;
    padding: 1rem 3rem 1rem 1rem; } }
@media only screen and (min-width: 769px) {
  .a-nav__next .summary__link:hover .arrow:before {
    width: 45px; } }
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .a-nav__next .summary__link:hover .arrow:before {
    width: 35px; } }
@media only screen and (min-width: 769px) {
  .a-nav__next .summary__link:hover .arrow:after {
    left: 56px; } }
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .a-nav__next .summary__link:hover .arrow:after {
    left: 46px; } }
.a-nav__link {
  display: block; }

.a-nav-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 8rem; }
  .a-nav-btn::before {
    content: "";
    display: inline-block;
    width: 7.6rem;
    height: 1rem;
    background: url(../img/svg/arrow_next.svg) no-repeat center center;
    background-size: contain; }
  .a-nav-btn::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 27px;
    background: url(../img/svg/font-next.svg) no-repeat center center;
    background-size: contain; }
  .a-nav-btn._prev {
    right: inherit;
    left: -15rem; }
    .a-nav-btn._prev::before {
      background: url(../img/svg/arrow_prev.svg) no-repeat center center; }
    .a-nav-btn._prev::after {
      background: url(../img/svg/font-prev.svg) no-repeat center center; }
  .a-nav-btn._next {
    right: -15rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }

@media screen and (max-width: 768px) {
  .a-nav-btn {
    width: 6rem; } }
@media screen and (max-width: 414px) {
  .a-nav-btn {
    width: 4rem; } }
@media screen and (max-width: 768px) {
  .a-nav-btn::before {
    width: 5.7rem;
    height: 0.75rem; } }
@media screen and (max-width: 414px) {
  .a-nav-btn::before {
    width: 3.8rem;
    height: 0.5rem; } }
@media screen and (max-width: 1024px) {
  .a-nav-btn._prev {
    left: -12rem; } }
@media screen and (max-width: 768px) {
  .a-nav-btn._prev {
    left: -8rem; } }
@media screen and (max-width: 414px) {
  .a-nav-btn._prev {
    left: -5rem; } }
@media screen and (max-width: 1024px) {
  .a-nav-btn._next {
    right: -12rem; } }
@media screen and (max-width: 768px) {
  .a-nav-btn._next {
    right: -8rem; } }
@media screen and (max-width: 414px) {
  .a-nav-btn._next {
    right: -5rem; } }
.a-related {
  margin-bottom: 3rem; }

@media screen and (max-width: 768px) {
  .a-related {
    margin-bottom: 3rem; } }
@media screen and (max-width: 768px) {
  .a-related {
    padding-left: 2.5%; } }
.a-related-ttl {
  max-width: inherit !important;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  border-bottom: 1px solid #001E46;
  padding-bottom: 0.5rem;
  margin-bottom: 4rem; }

.a-about {
  margin-bottom: 15rem; }

@media screen and (max-width: 1024px) {
  .a-about {
    margin-bottom: 10rem; } }
@media screen and (max-width: 768px) {
  .a-about {
    margin-bottom: 7.5rem; } }
@media screen and (max-width: 414px) {
  .a-about {
    margin-bottom: 5rem; } }
.a-about__ttl {
  font-size: 7.4rem;
  margin-bottom: 4rem;
  letter-spacing: 0.075em; }

@media screen and (max-width: 1024px) {
  .a-about__ttl {
    font-size: 5.5rem;
    margin-bottom: 3rem; } }
@media screen and (max-width: 768px) {
  .a-about__ttl {
    font-size: 4.5rem;
    margin-bottom: 2rem; } }
@media screen and (max-width: 414px) {
  .a-about__ttl {
    font-size: 3.5rem; } }
.a-about__box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between; }

@media screen and (max-width: 414px) {
  .a-about__box {
    display: block; } }
.a-about__box-ttl {
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20%;
  -ms-flex: 0 0 20%;
  flex: 0 0 20%; }

@media screen and (max-width: 414px) {
  .a-about__box-ttl {
    margin-bottom: 2rem; } }
.a-about__box-contents {
  font-family: dnp-shuei-gothic-kin-std, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", -apple-system, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
  font-size: 1.4rem;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  line-height: 2;
  letter-spacing: 0.14rem; }

.a-about__list {
  margin-top: 5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-right: 1px solid #C3C3C3; }

@media screen and (max-width: 768px) {
  .a-about__list {
    display: block;
    border-right: none; } }
@media screen and (max-width: 414px) {
  .a-about__list .a-about__item:nth-child(1) .a-media__item:nth-child(3), .a-about__list .a-about__item:nth-child(1) .a-media__item:nth-child(4), .a-about__list .a-about__item:nth-child(1) .a-media__item:nth-child(5) {
    width: 27.5%;
    margin: 0 5px 15px; } }
.a-about__item {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 1rem 2rem;
  border-left: 1px solid #C3C3C3; }

@media screen and (max-width: 768px) {
  .a-about__item {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 2rem;
    border-left: none;
    border-top: 1px solid #C3C3C3; } }
.a-about__item-ttl {
  margin-bottom: 4rem;
  font-weight: 400; }
  .a-about__item-ttl strong {
    font-weight: 700; }

@media screen and (max-width: 768px) {
  .a-about__item-ttl {
    text-align: center; } }
@media screen and (max-width: 768px) {
  .a-media__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 500px;
    margin: auto; } }
@media screen and (max-width: 414px) {
  .a-media__list {
    max-width: none;
    margin: auto -20px; } }
.a-media__item {
  max-width: 100%;
  line-height: 1;
  margin-bottom: 3.5rem;
  text-align: center;
  position: relative; }
  .a-media__item a {
    display: block;
    -webkit-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease; }
  .a-media__item img {
    max-width: 60%;
    min-width: 110px;
    margin: auto; }

@media only screen and (min-width: 1025px) {
  .a-media__item a:hover {
    opacity: 0.7; } }
@media screen and (max-width: 768px) {
  .a-media__item {
    width: 35%;
    max-width: 125px;
    margin: 0 20px 20px; }
    .a-media__item img {
      max-width: 100%;
      min-width: auto; } }
@media screen and (max-width: 414px) {
  .a-media__item {
    width: 30%;
    margin: 0 10px 15px; } }
.a-footer {
  margin-top: 10rem; }

@media screen and (max-width: 768px) {
  .a-footer {
    margin-top: 5rem; } }
@media screen and (max-width: 414px) {
  .a-footer {
    margin-top: 4rem; } }
.norec, .notfound {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  padding: 15rem 0;
  letter-spacing: 0.1em;
  line-height: 2; }

@media screen and (max-width: 768px) {
  .norec, .notfound {
    font-size: 1.7rem;
    padding: 12.5rem 0; } }
@media screen and (max-width: 414px) {
  .norec, .notfound {
    font-size: 1.5rem;
    padding: 10rem 0; } }
.norec p, .notfound p {
  font-weight: inherit; }

.svg--logo--pc {
  display: block;
  position: relative; }
  .svg--logo--pc:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 53.34487%; }
  .svg--logo--pc img, .svg--logo--pc svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.svg--logo--sp {
  display: block;
  position: relative; }
  .svg--logo--sp:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 48.8015%; }
  .svg--logo--sp img, .svg--logo--sp svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.svg--logo--en {
  display: block;
  position: relative; }
  .svg--logo--en:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 40.91777%; }
  .svg--logo--en img, .svg--logo--en svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.svg--logo--jp {
  display: block;
  position: relative; }
  .svg--logo--jp:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 5.46379%; }
  .svg--logo--jp img, .svg--logo--jp svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .svg--logo--jp:after {
    padding-top: 5.5%; }

.svg--icon--sns {
  display: block;
  position: relative; }
  .svg--icon--sns:after {
    content: "";
    display: block;
    width: 100%;
    padding-top: 100%; }
  .svg--icon--sns img, .svg--icon--sns svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.svg-fill {
  -webkit-transition: fill 150ms ease;
  transition: fill 150ms ease; }

/* pc */
.top_post_heading {
  font-size: 5rem;
  font-weight: bold; }

/* tablet  */
.top_post_heading {
  font-size: 3rem;
  font-weight: bold; }

/* smartPhone */
.top_post_heading {
  font-size: 2.5rem;
  font-weight: bold; }

/*# sourceMappingURL=style.css.map */
