﻿@charset "UTF-8";

/** 基本共通設定 **/

@import url("https://fonts.googleapis.com/css?family=Lato:400,700,900,900i|Noto+Sans+JP:400,500,700&display=swap");

:root {
  --cl-bk: #222222;
  --cl-dbl: #012e61;
  --cl-rd: #c2000b;
  --cl-bdr: #d8d8d8;
}

.block-loading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--cl-dbl);
  z-index: 99999;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.block-loading > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 560px) {
  .sp {
    display: none !important;
  }

  .base-inner {
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 559px) {
  .pc {
    display: none !important;
  }
}

html {
  font-size: 62.5%;
}

body {
  color: #222;
  font-weight: 400;
  font-family: "Lato", "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.875;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (min-width: 560px) {
  body {
    font-size: 1.6rem;
  }

  .wrapper {
    min-width: 1200px;
    overflow: hidden;
  }
}

@media screen and (max-width: 559px) {
  body {
    width: 100vw;
    font-size: 4.27vw;
  }

  body > * {
    width: 100vw;
    overflow: hidden;
  }
}

li {
  list-style-type: none;
}

.base-article p + p {
  margin-top: 2em;
}

.base-txt-right {
  text-align: right;
}

@media screen and (max-width: 559px) {
  .right-left-padding {
    padding: 0 4.27vw;
  }
}

/** フォント**/

a {
  color: #222;
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

a:hover {
  color: var(--cl-rd);
}

.txt-red {
  color: var(--cl-rd);
}

.txt-en {
  font-weight: 900;
}

.lato-i {
  font-style: italic;
}

/** タイトル **/

.ttl-common-h1 {
  position: relative;
  color: var(--cl-dbl);
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

@media screen and (min-width: 560px) {
  .ttl-common-h1 .txt-en {
    font-size: 7rem;
  }

  .ttl-common-h1 .txt-en .txt-red {
    font-size: 8.6rem;
  }

  .ttl-common-h1 .txt-ja {
    margin-top: 11px;
    font-size: 1.8rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 559px) {
  .ttl-common-h1 .txt-en {
    font-size: 10.67vw;
  }

  .ttl-common-h1 .txt-en .txt-red {
    font-size: 14.93vw;
  }

  .ttl-common-h1 .txt-ja {
    margin-top: 4.27vw;
    font-size: 4.8vw;
    font-weight: 400;
  }
}

.ttl-top-h2 {
  position: relative;
  color: var(--cl-dbl);
  letter-spacing: 0.08em;
}

.ttl-top-h2 .txt-en {
  font-weight: 900;
}

.ttl-top-h2 .txt-ja {
  font-weight: 400;
}

@media screen and (min-width: 560px) {
  .ttl-top-h2 .txt-en {
    font-size: 7rem;
    line-height: 1.1;
  }

  .ttl-top-h2 .txt-en .txt-red {
    font-size: 8.6rem;
  }

  .ttl-top-h2 .txt-ja {
    margin-top: 10px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 559px) {
  .ttl-top-h2 .txt-en {
    font-size: 16vw;
    line-height: 1.2;
  }

  .ttl-top-h2 .txt-en .txt-red {
    font-size: 20.27vw;
  }

  .ttl-top-h2 .txt-ja {
    margin-top: 2vw;
    font-size: 4.8vw;
  }
}

.ttl-lower-common-h1 {
  position: relative;
  font-weight: 600;
}

@media screen and (min-width: 560px) {
  .ttl-lower-common-h1 {
    margin-top: 33px;
    font-size: 4rem;
    line-height: 1.46;
    letter-spacing: 0.06em;
  }
}

@media screen and (max-width: 559px) {
  .ttl-lower-common-h1 {
    padding: 0 4.27vw;
    font-size: 8vw;
    line-height: 1.38;
    letter-spacing: 0.04em;
  }
}

.ttl-lower-common-h2 {
  position: relative;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.ttl-lower-common-h2::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  height: 5px;
  margin-top: -2px;
  background-color: var(--cl-rd);
}

.ttl-lower-common-h2 .small {
  display: block;
  font-weight: 400;
}

@media screen and (min-width: 560px) {
  .ttl-lower-common-h2 {
    margin: 100px 0 48px;
    padding-left: 36px;
    font-size: 3.6rem;
    line-height: 1.46;
  }

  .ttl-lower-common-h2::before {
    width: 20px;
  }

  .ttl-lower-common-h2 .small {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 559px) {
  .ttl-lower-common-h2 {
    margin: 20.51vw 0 10vw;
    padding-left: 7.69vw;
    font-size: 6.15vw;
    line-height: 1.38;
  }

  .ttl-lower-common-h2::before {
    width: 5.12vw;
  }

  .ttl-lower-common-h2 .small {
    font-size: 3.73vw;
  }
}

.ttl-lower-common-h3 {
  position: relative;
  border-bottom: 1px solid #d3d3cc;
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 560px) {
  .ttl-lower-common-h3 {
    margin-bottom: 40px;
    padding-bottom: 24px;
    font-size: 3rem;
    line-height: 1.46;
  }
}

@media screen and (max-width: 559px) {
  .ttl-lower-common-h3 {
    margin-bottom: 6.2vw;
    padding-bottom: 4.27vw;
    font-size: 6.4vw;
    line-height: 1.43;
  }
}

.ttl-lower-common-h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  background-color: #f5f5f2;
  font-weight: 600;
  line-height: 1.46;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 560px) {
  .ttl-lower-common-h4 {
    min-height: 80px;
    padding: 20px 24px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 559px) {
  .ttl-lower-common-h4 {
    min-height: 17.07vw;
    margin-bottom: 4vw;
    padding: 4vw 4.27vw;
    font-size: 5.33vw;
  }
}

.ttl-lower-common-h5 {
  position: relative;
  font-weight: 600;
  letter-spacing: 0.06em;
}

@media screen and (min-width: 560px) {
  .ttl-lower-common-h5 {
    font-size: 2rem;
    line-height: 1.46;
  }

  * + .ttl-lower-common-h5 {
    margin-top: 64px;
  }
}

@media screen and (max-width: 559px) {
  .ttl-lower-common-h5 {
    margin-bottom: 4vw;
    font-size: 4.8vw;
    line-height: 1.6;
  }

  * + .ttl-lower-common-h5 {
    margin-top: 10vw;
  }
}

.ttl-h2 {
  span {
    display: block;
    letter-spacing: 0.04em;
  }

  .txt-en {
    color: var(--cl-dbl);
    font-weight: 900;
    line-height: 1.2;
  }

  .txt-ja {
    font-weight: 700;
    line-height: 1.428;
  }
}

@media screen and (min-width: 560px) {
  .ttl-h2 {
    .txt-en {
      font-size: 10rem;
    }

    .txt-ja {
      margin-top: 10px;
      font-size: 1.6rem;
    }
  }
}

@media screen and (max-width: 559px) {
  .ttl-h2 {
    .txt-en {
      font-size: 12.82vw;
    }

    .txt-ja {
      margin-top: 2.56vw;
      font-size: 3.58vw;
    }
  }
}

/** タグ **/

.tag {
  position: relative;
  font-size: 1.4rem;
}

.tag-info {
  color: #a8b309;
}

.tag-artist {
  color: #ea5e16;
}

.tag-other {
  color: #004480;
}

.tag-about {
  color: #ad34c4;
}

.tag-job {
  color: #ff5d6d;
}

.tag-campaign {
  color: #0bb6b2;
}

.tag-serialization {
  color: #2c8fcd;
}

@media screen and (min-width: 560px) {
  .tag {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 559px) {
  .tag {
    font-size: 3.73vw;
  }
}

/** ボタン・リンク **/

.btn-border {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.btn-border a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid var(--cl-dbl);
  background-color: #fff;
  font-weight: 600;
}

@media screen and (min-width: 560px) {
  .btn-border a {
    width: 600px;
    height: 86px;
    font-size: 2.4rem;
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .btn-border a:hover {
    border-color: #d91f26;
  }
}

@media screen and (max-width: 559px) {
  .btn-border a {
    width: 100%;
    min-height: 21.33vw;
    padding: 3.47vw 4vw;
    font-size: 4.8vw;
    line-height: 1.7;
  }
}

.btn-read-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.btn-read-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-weight: 900;
}

.btn-read-more a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--cl-dbl);
}

@media screen and (min-width: 560px) {
  .btn-read-more a {
    padding-bottom: 5px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 559px) {
  .btn-read-more a {
    padding-bottom: 1.6vw;
    font-size: 4.27vw;
  }
}

@media screen and (min-width: 560px) {
  * + .base-common-link,
  * + .base-common-btn-link {
    margin-top: 60px;
  }

  .base-common-link li + li {
    margin-top: 1.3em;
  }

  .base-common-link.link-center {
    text-align: center;
  }

  .base-common-link.link-right {
    text-align: right;
  }

  .base-common-btn-link > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .base-common-btn-link.link-center > ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .base-common-btn-link.link-right > ul {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }

  .base-common-btn-link > ul + ul {
    margin-top: 16px;
  }

  .base-common-btn-link li + li {
    margin-left: 10px;
  }
}

@media screen and (max-width: 559px) {
  * + .base-common-link,
  * + .base-common-btn-link {
    margin-top: 10vw;
  }

  .base-common-link li + li {
    margin-top: 1.3em;
  }

  .base-common-link.link-center {
    text-align: center;
  }

  .base-common-link.link-right {
    text-align: right;
  }

  .base-common-btn-link > ul + ul {
    margin-top: 6.4vw;
  }

  .base-common-btn-link li + li {
    margin-top: 6.4vw;
  }
}

.link-bottom-border {
  text-decoration: underline;
}

.link-bottom-border:hover {
  text-decoration: none;
}

.link-inner,
.link-outer {
  position: relative;
}

.link-inner::after,
.link-outer::after {
  content: "";
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 560px) {
  .link-inner::after {
    top: -1px;
    width: 14px;
    height: 9px;
    margin-left: 10px;
    background: url(../image/common/arw_blue.png) center no-repeat;
    background-size: contain;
  }

  .link-outer::after {
    width: 39px;
    height: 12px;
    margin-left: 10px;
    background: url(../image/common/icon_link_outer.png) center no-repeat;
    background-size: contain;
  }
}

@media screen and (max-width: 559px) {
  .link-inner::after {
    width: 3.6vw;
    height: 2.27vw;
    margin-left: 2.67vw;
    background: url(../image/common/arw_blue@2x.png) center no-repeat;
    background-size: contain;
  }

  .link-outer::after {
    width: 10.27vw;
    height: 3.07vw;
    margin-left: 2.67vw;
    background: url(../image/common/icon_link_outer@2x.png) center no-repeat;
    background-size: contain;
  }
}

.link-pdf {
  position: relative;
}

.link-pdf::after,
.btn-link-pdf::after {
  content: "PDF";
  display: inline-block;
  position: relative;
  background-color: var(--cl-dbl);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

@media screen and (min-width: 560px) {
  .link-pdf::after,
  .btn-link-pdf::after {
    top: 15px;
    padding: 7px 9px;
    margin-left: 16px;
    border-radius: 4px;
  }
}

@media screen and (max-width: 559px) {
  .link-pdf::after,
  .btn-link-pdf::after {
    top: 4vw;
    padding: 1.87vw 2.4vw;
    margin-left: 4.27vw;
    border-radius: 1.07vw;
  }
}

.btn-link-inner,
.btn-link-outer,
.btn-link-pdf {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.btn-link-inner,
.btn-link-outer {
  background-color: var(--cl-dbl);
  color: #fff;
}

.btn-link-pdf {
  border: 2px solid var(--cl-dbl);
}

.btn-link-outer::after {
  content: "";
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 560px) {
  .btn-link-inner,
  .btn-link-outer,
  .btn-link-pdf {
    width: 320px;
    min-height: 64px;
    padding: 17px 16px;
    font-size: 1.8rem;
  }

  .btn-link-outer::after {
    width: 15px;
    height: 12px;
    margin-left: 10px;
    background: url(../image/common/icon_link_outer_white.png) center no-repeat;
    background-size: contain;
  }

  .btn-link-inner:hover,
  .btn-link-outer:hover {
    color: #fff;
    opacity: 0.8;
  }
}

@media screen and (max-width: 559px) {
  .btn-link-inner,
  .btn-link-outer,
  .btn-link-pdf {
    width: 100%;
    min-height: 17.07vw;
    padding: 3.2vw 4.27vw;
    font-size: 4.8vw;
  }

  .btn-link-outer::after {
    width: 3.87vw;
    height: 3.07vw;
    margin-left: 2.67vw;
    background: url(../image/common/icon_link_outer_white@2x.png) center no-repeat;
    background-size: contain;
  }
}

.link-gmap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #80919f;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
}

@media screen and (min-width: 560px) {
  .link-gmap {
    width: 110px;
    height: 32px;
    font-size: 1.2rem;
  }

  .link-gmap:hover {
    background-color: #d91f26;
    color: #fff;
  }
}

@media screen and (max-width: 559px) {
  .link-gmap {
    width: 29.33vw;
    height: 8.53vw;
    font-size: 3.2vw;
  }
}

.block-btn-read_more {
  display: flex;
  justify-content: flex-end;

  a {
    display: flex;
    align-items: center;
    position: relative;
    color: var(--cl-dbl);
    font-weight: 900;

    span {
      display: block;
      position: absolute;
      top: 0;

      &.bg {
        background-color: var(--cl-dbl);
      }

      &.arw {
        &::before,
        &::after {
          content: "";
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
          background-image: url(../images/common/arw_readmore.png);
          background-position: center;
          background-repeat: no-repeat;
          background-size: contain;
        }
      }
    }
  }

  &.btn-wt {
    a {
      color: #ffffff;

      span {
        &.bg {
          background-color: #ffffff;
        }

        &.arw {
          &::before,
          &::after {
            background-image: url(../images/common/arw_readmore_wt.png);
          }
        }
      }
    }
  }
}

@media screen and (min-width: 560px) {
  .block-btn-read_more {
    margin-top: 64px;

    a {
      height: 60px;
      padding-right: 90px;
      font-size: 1.8rem;
      transition: padding 0.3s;

      span {
        right: 10px;
        width: 60px;
        height: 60px;

        &.bg {
          transition: background-color 0.3s, transform 0.3s;
        }

        &.arw {
          &::before,
          &::after {
            width: 18px;
            height: 16px;
            margin: -8px 0 0 -9px;
            transition: left 0.3s, opacity 0.3s;
          }

          &::after {
            left: -40px;
            opacity: 0;
          }
        }
      }

      &:hover {
        padding-right: 110px;

        span {
          &.bg {
            background-color: #004593;
            transform: scale(1.33333);
          }

          &.arw {
            &::before {
              left: 60px;
              opacity: 0;
            }

            &::after {
              left: 50%;
              opacity: 1;
            }
          }
        }
      }
    }

    &.btn-wt {
      a {
        &:hover {
          padding-right: 110px;

          span {
            &.bg {
              background-color: #d6dcff;
            }
          }
        }
      }
    }
  }
}

@media screen and (max-width: 559px) {
  .block-btn-read_more {
    margin-top: 10.25vw;

    a {
      height: 12.82vw;
      padding-right: 17.94vw;
      font-size: 4.61vw;

      span {
        right: 0;
        width: 12.82vw;
        height: 12.82vw;

        &.bg {
          transition: background-color 0.3s, transform 0.3s;
        }

        &.arw {
          &::before,
          &::after {
            width: 4.61vw;
            height: 4.1vw;
            margin: -2.05vw 0 0 -2.305vw;
          }
        }
      }
    }
  }
}

a {
  .link-read_more {
    display: flex;
    justify-content: flex-end;

    span {
      display: block;
      position: relative;
      color: var(--cl-dbl);
      font-weight: 900;
      line-height: 1.1875;

      &::after {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--cl-dbl);
      }
    }
  }

  &[target="_blank"] {
    .link-read_more {
      position: relative;

      &::after {
        content: "";
        display: inline-block;
        position: relative;
        background-image: url(../images/common/icon_link_blank.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }
    }
  }
}

@media screen and (min-width: 560px) {
  a {
    .link-read_more {
      margin-top: 16px;
      span {
        height: 31px;
        overflow: hidden;

        &::after {
          left: -100%;
          opacity: 0;
          transition: left 0.3s, opacity 0.3s;
        }
      }
    }

    &:hover {
      .link-read_more {
        span {
          &::after {
            left: 0;
            opacity: 1;
          }
        }
      }
    }

    &[target="_blank"] {
      .link-read_more {
        &::after {
          top: 2px;
          width: 15px;
          height: 15px;
          margin-left: 10px;
        }
      }
    }
  }
}

@media screen and (max-width: 559px) {
  a {
    .link-read_more {
      margin-top: 2.56vw;

      span {
        height: 7.94vw;
        font-size: 4.1vw;
        overflow: hidden;
      }
    }

    &[target="_blank"] {
      .link-read_more {
        &::after {
          top: 0.51vw;
          width: 3.84vw;
          height: 3.84vw;
          margin-left: 2.56vw;
        }
      }
    }
  }
}

.btn-bl-arw,
.btn-wt-arw {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--cl-dbl);
  color: #ffffff;
  font-weight: 700;
  text-align: center;

  &::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    background-image: url(../images/common/arw_readmore.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

.btn-wt-arw {
  background-color: #ffffff;
  color: var(--cl-dbl);

  &::after {
    background-image: url(../images/common/arw_readmore_wt.png);
  }
}

@media screen and (min-width: 560px) {
  .btn-bl-arw,
  .btn-wt-arw {
    width: 436px;
    height: 80px;
    font-size: 2rem;

    &::after {
      right: 24px;
      width: 18px;
      height: 16px;
      margin-top: -8px;
    }
  }

  .btn-wt-arw {
    &::after {
      right: 24px;
    }
  }
}

@media screen and (max-width: 559px) {
  .btn-bl-arw,
  .btn-wt-arw {
    width: 100%;
    height: 17.94vw;
    font-size: 4.61vw;

    &::after {
      right: 4.1vw;
      width: 4.61vw;
      height: 4.1vw;
      margin-top: -2.05vw;
    }
  }
}

/** カテゴリリンク **/

.base-common-category-link {
  position: relative;
}

.ttl-base-common-category-link {
  position: relative;
  color: var(--cl-dbl);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

@media screen and (min-width: 560px) {
  .base-common-category-link {
    margin-top: 118px;
  }

  .base-common-category-link::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 114px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(245, 245, 242, 1)), color-stop(49%, rgba(245, 245, 242, 1)), color-stop(50%, rgba(245, 245, 242, 0)), to(rgba(245, 245, 242, 0)));
    background: linear-gradient(to right, rgba(245, 245, 242, 1) 0%, rgba(245, 245, 242, 1) 49%, rgba(245, 245, 242, 0) 50%, rgba(245, 245, 242, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f2', endColorstr='#00f5f5f2', GradientType=1);
    z-index: -1;
  }

  .base-common-category-link .base-inner {
    position: relative;
  }

  .base-common-category-link-bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 900px;
    height: 114px;
    background-color: #f5f5f2;
  }

  .category-link-service .base-common-category-link-bg {
    width: 100%;
  }

  .ttl-base-common-category-link {
    font-size: 3rem;
  }

  .base-common-category-link-link-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 32px;
    padding-bottom: 33px;
    letter-spacing: 0;
  }

  .base-common-category-link-link-list li + li {
    margin-left: 64px;
  }

  .category-link-service .base-common-category-link-link-list li + li {
    margin-left: 40px;
  }
}

@media screen and (max-width: 559px) {
  .base-common-category-link {
    margin-top: 26.67vw;
    padding: 0 0 14.93vw;
    background-color: #f5f5f2;
  }

  .base-common-category-link-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.8vw;
    background-color: #fff;
  }

  .ttl-base-common-category-link {
    padding: 0 8.8vw;
    font-size: 8vw;
  }

  .base-common-category-link-link-list {
    margin-top: 6.2vw;
    padding: 0 10.67vw;
    letter-spacing: 0.02em;
  }

  .base-common-category-link-link-list li {
    border-bottom: 1px solid #d3d3cc;
  }

  .base-common-category-link-link-list a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 17.07vw;
    padding: 0 4.27vw;
    font-size: 4vw;
  }

  .base-common-category-link-link-list a::after {
    position: absolute;
    top: 50%;
    right: 2.67vw;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}

/** アンカーリンク **/

.base-common-anker-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.base-common-anker-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
}

.base-common-anker-link a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--cl-bdr);
}

.base-common-anker-link a::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  border-right: 2px solid var(--cl-dbl);
  border-bottom: 2px solid var(--cl-dbl);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 560px) {
  .base-common-anker-link {
    margin-top: 80px;
  }

  .base-common-anker-link a {
    width: 580px;
    height: 60px;
    padding: 0 24px;
    font-size: 1.6rem;
  }

  .base-common-anker-link a::after {
    right: 24px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
  }
}

@media screen and (max-width: 559px) {
  .base-common-anker-link {
    margin-top: 10.67vw;
    padding: 0 4.27vw;
  }

  .base-common-anker-link a {
    justify-content: flex-start;
    width: 43.4vw;
    min-height: 21.33vw;
    padding: 0 12vw 0 4.27vw;
    font-size: 4.1vw;
    line-height: 1.5;
  }

  .base-common-anker-link a::after {
    margin-top: -1.08vw;
    right: 4.1vw;
    width: 2.13vw;
    height: 2.13vw;
  }
}

/** リンクリスト **/

.base-common-img-link-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.base-common-img-link-list a {
  display: block;
  position: relative;
}

.base-common-img-link-list-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--cl-dbl);
  color: #fff;
}

.base-common-img-link-list-ttl .txt-en {
  font-weight: 900;
}

.base-common-img-link-list-ttl .txt-ja {
  font-weight: 400;
}

@media screen and (min-width: 560px) {
  .base-common-img-link-list li {
    margin-top: 80px;
  }

  .base-common-img-link-list a {
    width: 550px;
    height: 356px;
  }

  .base-common-img-link-list img {
    width: 526px;
  }

  .base-common-img-link-list-ttl {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 148px;
    line-height: 1.6;
    -webkit-transition: 0.15s ease-in-out;
    transition: 0.15s ease-in-out;
  }

  .base-common-img-link-list-ttl .txt-en {
    font-size: 3.4rem;
  }

  .base-common-img-link-list-ttl .txt-en .txt-red {
    font-size: 4.4rem;
  }

  .base-common-img-link-list-ttl .txt-ja {
    font-size: 1.6rem;
  }

  .base-common-img-link-list a:hover .base-common-img-link-list-ttl {
    bottom: 6px;
  }
}

@media screen and (max-width: 559px) {
  .base-common-img-link-list {
    margin-top: 21vw;
    padding: 0 4.27vw;
  }

  .base-common-img-link-list a {
    width: 43.47vw;
    height: auto;
  }

  .base-common-img-link-list li:not(:nth-child(-n + 2)) {
    margin-top: 6.4vw;
  }

  .base-common-img-link-list img {
    width: 39.2vw;
    height: 24vw;
    height: auto;
  }

  .base-common-img-link-list-ttl {
    position: relative;
    width: 40vw;
    margin: -4.27vw 0 0 auto;
    padding: 3.8vw 4vw 4vw;
    text-align: center;
    line-height: 1.2;
  }

  .base-common-img-link-list-ttl .txt-en {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 5.33vw;
    text-align: center;
  }

  .base-common-img-link-list-ttl .txt-en .txt-red {
    font-size: 8vw;
  }

  .base-common-img-link-list-ttl .txt-ja {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    margin-top: 2.2vw;
    font-size: 3.73vw;
    line-height: 1.7;
    text-align: center;
  }
}

.base-common-blue_bg-link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.base-common-blue_bg-link-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--cl-dbl);
  color: #fff;
}

.base-common-blue_bg-link-list .txt-en {
  font-weight: 900;
}

@media screen and (min-width: 560px) {
  .base-common-blue_bg-link-list li:not(:nth-child(3n)) {
    margin-right: 24px;
  }

  .base-common-blue_bg-link-list li:not(:nth-child(-n + 3)) {
    margin-top: 24px;
  }

  .base-common-blue_bg-link-list a {
    width: 384px;
    min-height: 130px;
    padding: 20px 0;
    line-height: 1.2;
  }

  .base-common-blue_bg-link-list a:hover {
    opacity: 0.8;
  }

  .base-common-blue_bg-link-list .txt-en {
    font-size: 3.2rem;
  }

  .base-common-blue_bg-link-list .txt-en .txt-red {
    font-size: 4.2rem;
  }

  .base-common-blue_bg-link-list .txt-ja {
    margin-top: 12px;
  }
}

@media screen and (max-width: 559px) {
  .base-common-blue_bg-link-list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 4.27vw;
  }

  .base-common-blue_bg-link-list li:not(:nth-child(-n + 2)) {
    margin-top: 4.27vw;
  }

  .base-common-blue_bg-link-list a {
    width: 43.47vw;
    min-height: 28.27vw;
    padding: 2vw 0;
    text-align: center;
    line-height: 1.2;
  }

  .base-common-blue_bg-link-list .txt-en {
    font-size: 5.33vw;
  }

  .base-common-blue_bg-link-list .txt-en .txt-red {
    font-size: 8vw;
  }

  .base-common-blue_bg-link-list .txt-ja {
    margin-top: 2.67vw;
    font-size: 3.73vw;
  }
}

.base-common-blue_bdr-link-list {
  display: flex;
  flex-wrap: wrap;

  li {
    a {
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      width: 100%;
      border: 1px solid var(--cl-dbl);

      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        background-image: url(../images/common/arw_readmore_wt.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }

      .txt-en {
        color: var(--cl-dbl);
        font-weight: 900;
        line-height: 1.2;
      }

      .txt-ja {
        color: var(--cl-bk);
        font-weight: 700;
        letter-spacing: 0.08em;
      }
    }
  }
}

@media screen and (min-width: 560px) {
  .base-common-blue_bdr-link-list {
    li {
      width: 374px;

      &:not(:nth-child(3n)) {
        margin-right: 24px;
      }

      &:not(:nth-child(-n + 3)) {
        margin-top: 24px;
      }

      a {
        height: 142px;
        padding: 0 55px 0 23px;

        &::after {
          right: 24px;
          width: 18px;
          height: 16px;
          margin-top: -8px;
        }

        .txt-en {
          margin-bottom: 10px;
          font-size: 4rem;
        }
      }
    }
  }
}

@media screen and (max-width: 559px) {
  .base-common-blue_bdr-link-list {
    li {
      width: 100%;

      &:not(:nth-child(-n + 1)) {
        margin-top: 4.1vw;
      }

      a {
        padding: 4.1vw 10.25vw 4.1vw 4.1vw;

        &::after {
          right: 4.1vw;
          width: 4.61vw;
          height: 4.1vw;
          margin-top: -2.05vw;
        }

        .txt-en {
          font-size: 8.2vw;
        }

        .txt-ja {
          font-size: 4.1vw;
        }
      }
    }
  }
}

/** テーブル **/

.base-common-tbl {
  line-height: 1.875;
}

.base-common-tbl > dl > dd p + p,
.base-common-tbl > dl > dd p + .news-detail-tbl-img {
  margin-top: 1.6em;
}

@media screen and (min-width: 560px) {
  * + .base-common-tbl {
    margin-top: 40px;
  }

  .base-common-tbl > dl {
    display: flex;
    border-bottom: 1px solid var(--cl-bdr);
  }

  .base-common-tbl > dl:first-child {
    border-top: 1px solid var(--cl-bdr);
  }

  .base-common-tbl > dl > dt,
  .base-common-tbl > dl > dd {
    padding: 18px 24px;
  }

  .base-common-tbl > dl > dt,
  .base-common-tbl > dl > dd {
    display: flex;
    flex-direction: column;
  }

  .base-common-tbl > dl > dt {
    width: 260px;
    background-color: #fafafa;
  }

  .base-common-tbl > dl > dt > p {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .base-common-tbl > dl > dd {
    width: 840px;
  }
}

@media screen and (max-width: 559px) {
  .base-common-tbl {
    margin: 0 -4.27vw;
  }

  .block-staff-requirements-tbl-container .base-common-tbl {
    margin: 0;
  }

  * + .base-common-tbl {
    margin-top: 10vw;
  }

  .base-common-tbl > dl {
    border-bottom: 1px solid #d3d3cc;
  }

  .base-common-tbl > dl:first-child {
    border-top: 1px solid #d3d3cc;
  }

  .base-common-tbl > dl > dt,
  .base-common-tbl > dl > dd {
    padding: 5vw 4.27vw;
  }

  .base-common-tbl > dl > dt,
  .base-common-tbl > dl > dd {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .base-common-tbl > dl > dt {
    background-color: #f5f5f2;
  }

  .base-common-tbl > dl > dt > p {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
  }
}

/** スライダー **/

.slick-prev,
.slick-next {
  z-index: 999;
}

/** ヘッダー **/

.block-header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.block-header-logo {
  padding: 0;

  img {
    display: block;
    height: auto;
  }
}

@media screen and (min-width: 560px) {
  .block-header {
    position: absolute;

    .base-inner {
      display: flex;
    }
  }

  .block-header-logo {
    margin: 20px 0 0;

    img {
      width: 110px;
    }
  }

  .block-header-pc-nav {
    padding-top: 40px;
    margin-left: auto;
  }

  .block-header-pc-nav-items {
    display: flex;
  }

  .block-header-pc-nav-item {
    position: relative;

    & + .block-header-pc-nav-item {
      margin-left: 56px;
    }

    .item-ttl {
      display: block;
      position: relative;
      padding-bottom: 17px;
      color: #ffffff;
      line-height: 1.5;

      span {
        display: block;
        padding-bottom: 3px;
        font-size: 1.4rem;
        font-weight: 900;
        transition: opacity 0.5s;
        opacity: 1;

        &.txt-ja {
          position: absolute;
          top: 0;
          left: 50%;
          font-weight: 700;
          transform: translate(-50%, 0);
          white-space: nowrap;
          opacity: 0;

          &::after {
            content: "";
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: #ffffff;
          }
        }
      }
    }

    &:hover {
      .item-ttl {
        span {
          &.txt-en {
            opacity: 0;
          }

          &.txt-ja {
            opacity: 1;
          }
        }
      }
    }
  }

  .block-header-pc-nav-submenu {
    display: none;
    position: absolute;
    top: 15px;
    left: 50%;
    width: 260px;
    margin-left: -130px;
    padding-top: 30px;

    ul {
      background-color: #ffffff;
      filter: drop-shadow(0px 2px 10px rgba(0, 0, 0, 0.16));

      li {
        a {
          display: flex;
          align-items: center;
          height: 70px;
          padding: 0 24px;
          font-size: 1.6rem;
          line-height: 1.5;
        }
      }
    }
  }
}

@media screen and (max-width: 559px) {
  .block-header {
    position: fixed;

    .base-inner {
      display: flex;
      align-items: center;
      position: relative;
      height: auto;
      padding: 4.1vw;
      transition: height 0.4s, padding 0.4s, background-color 0.4s;
    }
  }
  .block-header-logo {
    img {
      width: 15.38vw;
      transition: width 0.4s;
    }
  }

  .block-header-sp_menu-btn {
    display: block;
    position: fixed;
    top: 7.17vw;
    right: 5.12vw;
    width: 16px;
    height: 14px;
    cursor: pointer;
    z-index: 99;
    transition: top 0.4s;

    span {
      display: block;
      position: absolute;
      left: 0;
      width: 16px;
      height: 2px;
      background-color: #ffffff;
      transition: width 0.3s, transform 0.3s, opacity 0.3s;

      &:nth-child(1) {
        top: 0;
      }

      &:nth-child(2) {
        top: 50%;
        transform: translate(0, -50%);
      }

      &:nth-child(3) {
        bottom: 0;
        width: 10px;
      }
    }

    &.is-active {
      top: 5.89vw;

      span {
        &:nth-child(1) {
          transform: translateY(6px) rotate(45deg);
        }

        &:nth-child(2) {
          opacity: 0;
        }

        &:nth-child(3) {
          width: 16px;
          transform: translateY(-6px) rotate(-45deg);
        }
      }
    }
  }

  .is-scroll,
  .is-menu-open {
    .block-header {
      .base-inner {
        height: 15.38vw;
        padding: 0 4.1vw;
        background-color: var(--cl-dbl);
      }
    }

    .block-header-logo {
      img {
        width: 9.77vw;
      }
    }

    .block-header-sp_menu-btn {
      top: 5.89vw;
    }
  }

  .block-header-sp_menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    overflow: auto;
    z-index: 999;
  }

  .block-header-sp_menu-body {
    padding: 15.38vw 0 10.25vw;
  }

  .block-header-sp_menu-logo {
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 15.38vw;
    padding: 0 4.1vw;
    background-color: var(--cl-dbl);
    z-index: 9;

    img {
      display: block;
      width: 9.77vw;
      height: auto;
    }
  }

  .block-header-sp_menu-nav {
    position: relative;
    margin: 0 10.25vw;
    background-color: #ffffff;

    .layer-1-ttl,
    .layer-2-item a {
      display: flex;
      align-items: center;
      position: relative;
      padding: 0 10.25vw 0 4.1vw;
      border-bottom: 1px solid var(--cl-bdr);
      cursor: pointer;
    }

    .layer-1-ttl {
      min-height: 16.41vw;

      .txt-en {
        color: var(--cl-dbl);
        font-size: 4.1vw;
      }

      .txt-ja {
        margin-left: 2.3vw;
        font-size: 3.07vw;
        letter-spacing: 0;
      }

      .icon-plus {
        position: absolute;
        top: 50%;
        right: 2.56vw;
        width: 14px;
        height: 14px;
        margin-top: -7px;

        &::before,
        &::after {
          content: "";
          display: block;
          position: absolute;
          top: 50%;
          left: 0;
          width: 14px;
          height: 2px;
          margin-top: -1px;
          background-color: var(--cl-dbl);
        }

        &::after {
          transform: rotate(90deg);
          transition: transform 0.14s;
        }
      }

      &.is-open {
        .icon-plus {
          &::after {
            transform: rotate(0);
          }
        }
      }
    }

    .layer-2-item a {
      min-height: 14.35vw;
      font-size: 3.58vw;
    }

    a.layer-1-ttl,
    .layer-2-item a {
      &::after {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        right: 2.56vw;
        width: 1.66vw;
        height: 2.44vw;
        margin-top: -1.22vw;
        background-image: url(../images/common/sp/arw_nav.png);
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
      }
    }

    .js-menu-target {
      display: none;
    }
  }
}

/** フッター **/

.footer {
  position: relative;
  background-color: #f7f7f7;
}

.footer-nav {
  display: flex;
}

.page-top-btn {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 9999;
}

.page-top-btn a {
  display: block;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -999999px;
}

.page-top-btn.is-bottom {
  position: absolute;
  top: 0;
  bottom: auto;
}

@media screen and (min-width: 560px) {
  .footer .base-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
  }

  .footer-nav li {
    font-size: 1.4rem;

    & + li {
      position: relative;
      margin-left: 33px;

      ::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: -16px;
        width: 1px;
        height: 18px;
        margin-top: -9px;
        background-color: var(--cl-bdr);
      }
    }
  }

  .footer-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .copyright {
    margin-right: 40px;
    font-size: 1rem;
    font-weight: 400;
  }

  .privacymark img {
    display: block;
    width: 61px;
  }

  .page-top-btn {
    width: 64px;
    height: 64px;

    a {
      background-image: url(../images/common/page_top.png);
    }
  }
}

@media screen and (max-width: 559px) {
  .footer {
    width: 100vw;
    padding: 10.25vw 0 8.97vw 0;
  }

  .footer-nav {
    flex-wrap: wrap;
    line-height: 1.5;
  }

  .footer-nav li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    font-size: 3.58vw;

    &:not(:nth-child(2n + 1)) {
      position: relative;

      &::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 0;
        width: 1px;
        height: 4.62vw;
        margin-top: -2.31vw;
        background-color: var(--cl-bdr);
      }
    }

    &:not(:nth-child(-n + 2)) {
      margin-top: 4.1vw;
    }
  }

  .footer-right {
    position: relative;
  }

  .copyright {
    margin-top: 10.25vw;
    font-size: 2.56vw;
    font-weight: 400;
    text-align: center;
  }

  .privacymark {
    position: absolute;
    right: 2.56vw;
    bottom: -6.42vw;
  }

  .privacymark img {
    width: 15.38vw;
  }

  .page-top-btn {
    width: 10.25vw;
    height: 10.25vw;

    a {
      background-image: url(../images/common/sp/page_top.png);
    }
  }
}

/** ページャー **/

.pager-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pager-container ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.pager-container a,
.pager-container span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 900;
}

.pager-container a {
  border: 1px solid var(--cl-bdr);
}

.pager-container span {
  background-color: var(--cl-dbl);
  color: #fff;
}

li[class^="pager-"] a {
  font-size: 0;
  color: transparent;
}

.pager-first,
.pager-prev,
.pager-next,
.pager-last {
  position: relative;
}

.pager-first::before,
.pager-first::after,
.pager-prev::before,
.pager-next::before,
.pager-last::before,
.pager-last::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  border-bottom: 2px solid var(--cl-dbl);
  border-left: 2px solid var(--cl-dbl);
}

.pager-first::before,
.pager-last::before {
  left: 41%;
}

.pager-first::after,
.pager-last::after {
  left: 59%;
}

.pager-prev::before,
.pager-next::before {
  left: 50%;
}

.pager-first::before,
.pager-first::after,
.pager-prev::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.pager-next::before,
.pager-last::after,
.pager-last::before {
  -webkit-transform: translate(-50%, -50%) rotate(-135deg);
  transform: translate(-50%, -50%) rotate(-135deg);
}

@media screen and (min-width: 560px) {
  .pager-container {
    margin-top: 64px;
    margin-bottom: 100px;
  }

  .pager-container li:not(:last-child) {
    margin-right: 10px;
  }

  li.pager-prev + li {
    margin-left: 14px;
  }

  li.pager-next {
    margin-left: 14px;
  }

  .pager-container a,
  .pager-container span {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .pager-container a:hover {
    border-color: var(--cl-rd);
    color: var(--cl-bk);
  }

  .pager-first::before,
  .pager-first::after,
  .pager-prev::before,
  .pager-next::before,
  .pager-last::before,
  .pager-last::after {
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 559px) {
  .pager-container {
    margin-top: 12.8vw;
    margin-bottom: 20.51vw;
  }

  .pager-container li:not(:last-child) {
    margin-right: 1.28vw;
  }

  li.pager-prev + li {
    margin-left: 1.28vw;
  }

  li.pager-next {
    margin-left: 1.28vw;
  }

  .pager-container a,
  .pager-container span {
    width: 8vw;
    height: 8vw;
    font-size: 3.33vw;
    line-height: 1;
  }

  .pager-first::before,
  .pager-first::after,
  .pager-prev::before,
  .pager-next::before,
  .pager-last::before,
  .pager-last::after {
    width: 1.8vw;
    height: 1.8vw;
  }
}

/** パンくず **/

.breadcrumbs {
  background-color: #f2f2f2;
  color: #999999;

  a {
    color: #999999;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.7;
}

.breadcrumbs li {
  position: relative;
}

.breadcrumbs li:not(:first-child)::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  background-image: url(../images/common/arw_breadcrumbs.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (min-width: 560px) {
  .breadcrumbs ol {
    min-height: 45px;
    padding: 5px 0;
  }

  .breadcrumbs li {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
  }

  .breadcrumbs li:not(:first-child) {
    margin-left: 24px;
  }

  .breadcrumbs li:not(:first-child)::before {
    left: -14px;
    width: 6px;
    height: 10px;
    margin-top: -5px;
  }
}

@media screen and (max-width: 559px) {
  .breadcrumbs {
    padding: 0 4.27vw;
  }

  .breadcrumbs ol {
    min-height: 10.25vw;
    padding: 3vw 0;
  }

  .breadcrumbs li {
    font-size: 3.33vw;
  }

  .breadcrumbs li:not(:first-child) {
    margin-left: 6.15vw;
  }

  .breadcrumbs li:not(:first-child)::before {
    left: -3.58vw;
    width: 1.53vw;
    height: 2.56vw;
    margin-top: -1.28vw;
  }
}

/**** 下層ページ共通 ****/

.lower-container {
  position: relative;
}

.lower-container::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #f5f5f2;
  z-index: -1;
}

.lower-catchcopy {
  color: var(--cl-dbl);
  font-weight: 600;
}

.comming_soon_message {
  color: var(--cl-dbl);
  text-align: center;
}

@media screen and (min-width: 560px) {
  .lower-container {
    min-width: 1200px;
    padding-top: 184px;
  }

  .lower-container::before {
    height: 250px;
  }

  .lower-catchcopy {
    margin-top: 80px;
    font-size: 3.6rem;
    text-align: center;
    line-height: 1.6;
  }

  .comming_soon_message {
    margin-top: 70px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 559px) {
  .lower-container {
    padding-top: 11.4vw;
  }

  .lower-container::before {
    height: 21.67vw;
  }

  .lower-catchcopy {
    margin-top: 12.8vw;
    padding: 0 4.27vw;
    font-size: 7.47vw;
    line-height: 1.48;
  }

  .comming_soon_message {
    margin-top: 10.67vw;
    font-size: 4.8vw;
  }
}
