@charset "UTF-8";
.c-detail-article {
  margin-bottom: 120px;
}
@media only screen and (max-width: 768px) {
  .c-detail-article {
    margin-bottom: 16vw;
  }
}

.c-detail-main {
  margin-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .c-detail-main {
    margin-bottom: 24vw;
  }
}

.c-detail-box {
  margin-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .c-detail-box {
    margin-bottom: 24vw;
  }
}

.c-detail-img {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .c-detail-img {
    margin-bottom: 8vw;
  }
}

.c-detail-body {
  margin-bottom: 30px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .c-detail-body {
    margin-bottom: 8vw;
  }
}

.c-btn {
  display: inline-block;
  position: relative;
  padding: 0 30px;
  min-width: 270px;
  border: none;
  border-radius: 50vh;
  color: #ffffff;
  background: #000000;
  font-size: 1rem;
  line-height: 60px;
  overflow: hidden;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-btn {
    padding: 0 8vw;
    min-width: 72vw;
    font-size: 4.2666666667vw;
    line-height: 16vw;
  }
}
.c-btn span {
  position: relative;
  z-index: 2;
}
.c-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  background: #333333;
  width: 120%;
  height: 100%;
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
}
.c-btn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*波紋の形状*/
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  -webkit-transform: scale(10, 10);
          transform: scale(10, 10);
  opacity: 0;
  -webkit-transition: opacity 1s, -webkit-transform 0.3s;
  transition: opacity 1s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 1s;
  transition: transform 0.3s, opacity 1s, -webkit-transform 0.3s;
}
.c-btn:hover {
  color: #ffffff;
  text-decoration: none;
}
.c-btn:hover:before {
  -webkit-animation: skewanime 0.3s forwards;
          animation: skewanime 0.3s forwards;
}
.c-btn:active:after {
  -webkit-transform: scale(0, 0);
          transform: scale(0, 0);
  -webkit-transition: 0s;
  transition: 0s;
  opacity: 0.3;
}

@-webkit-keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}

@keyframes skewanime {
  100% {
    left: -10%; /*画面の見えていない左から右へ移動する終了地点*/
  }
}
/***** ボタン 状態・大きさ *****/
.c-btn.is-primary {
  border-color: transparent;
  background: #8a2155;
  color: #ffffff;
  position: relative;
}
.c-btn.is-primary:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-primary:before {
    right: 5.3333333333vw;
    margin-top: -1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-right: 0.2666666667vw solid #ffffff;
    border-bottom: 0.2666666667vw solid #ffffff;
  }
}
.c-btn.is-primary.is-no-arrow {
  position: relative;
}
.c-btn.is-primary.is-no-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-primary.is-no-arrow:before {
    left: 0vw;
    margin-top: 0vw;
    width: 0vw;
    height: 0vw;
    border-right: 0vw solid #696969;
    border-bottom: 0vw solid #696969;
  }
}
.c-btn.is-primary:hover {
  background: rgba(138, 33, 85, 0.9);
  color: #ffffff;
}
.c-btn.is-success {
  border-color: #398439;
  background: #449d44;
  color: #ffffff;
}
.c-btn.is-success:hover {
  background: #398439;
  color: #ffffff;
}
.c-btn.is-link {
  border-color: #8a2155;
  border-width: 1px;
  background: #ffffff;
  color: #8a2155;
  position: relative;
}
.c-btn.is-link:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #8a2155;
  border-bottom: 1px solid #8a2155;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-link:before {
    right: 5.3333333333vw;
    margin-top: -1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-right: 0.2666666667vw solid #8a2155;
    border-bottom: 0.2666666667vw solid #8a2155;
  }
}
.c-btn.is-link:hover {
  position: relative;
  background: #8a2155;
  color: #ffffff;
}
.c-btn.is-link:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-link:hover:before {
    right: 5.3333333333vw;
    margin-top: -1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-right: 0.2666666667vw solid #ffffff;
    border-bottom: 0.2666666667vw solid #ffffff;
  }
}
.c-btn.is-disable {
  border-color: #dddddd;
  background: #e5e5e5;
  color: #aaaaaa;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: default;
}
.c-btn.is-disable:hover {
  margin: 0 2px 2px 0;
}
.c-btn.is-arrow {
  padding-right: 30px;
  position: relative;
}
.c-btn.is-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-arrow:before {
    right: 4vw;
    margin-top: -1.0666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-right: 0.5333333333vw solid #666666;
    border-bottom: 0.5333333333vw solid #666666;
  }
}
.c-btn.is-arrow-bottom {
  padding-right: 30px;
  position: relative;
}
.c-btn.is-arrow-bottom:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #666666;
  border-bottom: 2px solid #666666;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-arrow-bottom:before {
    right: 3.2vw;
    margin-top: -1.0666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    border-right: 0.5333333333vw solid #666666;
    border-bottom: 0.5333333333vw solid #666666;
  }
}
.c-btn.is-no-arrow {
  position: relative;
}
.c-btn.is-no-arrow:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 0px;
  margin-top: 0px;
  width: 0px;
  height: 0px;
  border-right: 0px solid #696969;
  border-bottom: 0px solid #696969;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-no-arrow:before {
    left: 0vw;
    margin-top: 0vw;
    width: 0vw;
    height: 0vw;
    border-right: 0vw solid #696969;
    border-bottom: 0vw solid #696969;
  }
}
.c-btn.is-back {
  position: relative;
}
.c-btn.is-back:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #696969;
  border-bottom: 1px solid #696969;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-back:before {
    left: 5.3333333333vw;
    margin-top: -1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-right: 0.2666666667vw solid #696969;
    border-bottom: 0.2666666667vw solid #696969;
  }
}
.c-btn.is-back:hover {
  position: relative;
}
.c-btn.is-back:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: auto;
  left: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #696969;
  border-bottom: 1px solid #696969;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-back:hover:before {
    left: 5.3333333333vw;
    margin-top: -1.3333333333vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    border-right: 0.2666666667vw solid #696969;
    border-bottom: 0.2666666667vw solid #696969;
  }
}
.c-btn.is-pdf {
  padding: 12px 45px;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-pdf {
    padding: 3.2vw 12vw;
  }
}
.c-btn.is-s {
  padding: 4px 5px;
  font-size: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-s {
    padding: 1.0666666667vw 1.3333333333vw;
    font-size: 3.2vw;
  }
}
.c-btn.is-m {
  padding: 11px 30px;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-m {
    padding: 2.9333333333vw 8vw;
  }
}
.c-btn.is-l {
  padding: 15px 30px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 768px) {
  .c-btn.is-l {
    padding: 2.9333333333vw 8vw;
    font-size: 4.2666666667vw;
  }
}

/***** moreボタン *****/
.c-second-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .c-second-btn-wrap {
    display: block;
  }
}
.c-second-btn-wrap .c-btn-more {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (max-width: 768px) {
  .c-second-btn-wrap .c-btn-more {
    padding-left: 4vw;
    padding-right: 4vw;
    margin-top: 0;
    margin-bottom: 4vw;
    padding: 0;
  }
}

.c-btn-more {
  margin-top: 60px;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .c-btn-more {
    margin-top: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .c-btn-more {
    margin-top: 8vw;
  }
}
.c-btn-more.is-left {
  text-align: left;
}

.c-card-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
@media only screen and (max-width: 990px) {
  .c-card-list {
    margin: 0 -30px;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list {
    display: block;
    margin: 0;
  }
  .c-card-list.is-top {
    margin-bottom: 36vw;
  }
}

.c-card-people-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
@media only screen and (max-width: 990px) {
  .c-card-people-list {
    margin: 0;
  }
}

.c-card-list__item {
  position: relative;
  padding: 0 15px;
  width: 33.3333%;
}
@media only screen and (max-width: 990px) {
  .c-card-list__item {
    padding: 0 30px;
    padding-bottom: 60px;
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list__item {
    padding: 0;
    width: auto;
  }
}
.c-card-list__item:before {
  content: attr(data-number) "";
  position: absolute;
  left: 15px;
  top: 0;
  color: #000000;
  font-size: 3.75rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans Japanese", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 1;
  font-weight: bold;
  z-index: 2;
}
@media only screen and (max-width: 990px) {
  .c-card-list__item:before {
    left: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list__item:before {
    left: 0;
    font-size: 16vw;
  }
}
.c-card-list__item.is-top {
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .c-card-list__item.is-top {
    padding-bottom: 8vw;
  }
}
.c-card-list__item.is-second {
  padding-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .c-card-list__item.is-second {
    padding-bottom: 16vw;
  }
}
.c-card-list__item.is-wide {
  margin-right: calc(100% - 810px);
  padding-bottom: 120px;
  width: 810px;
}
@media only screen and (max-width: 1230px) {
  .c-card-list__item.is-wide {
    margin-right: calc(100% - 560px);
    width: 560px;
  }
}
@media only screen and (max-width: 990px) {
  .c-card-list__item.is-wide {
    margin-right: 0;
    padding-bottom: 60px;
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list__item.is-wide {
    padding-bottom: 0;
    width: auto;
  }
}
.c-card-list__item.is-list {
  width: 25%;
}
@media only screen and (max-width: 990px) {
  .c-card-list__item.is-list {
    margin-right: 0;
    padding: 0 10px 30px 10px;
    width: 50%;
  }
}

.c-card-list__link {
  display: block;
  color: #000000;
  overflow: hidden;
}
.c-card-list__link:hover {
  text-decoration: none;
}
.c-card-list__link:hover .c-card-list__img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.c-card-list__en {
  display: block;
  text-align: right;
  margin-bottom: 5px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-card-list__en {
    margin-bottom: 1.3333333333vw;
  }
}
.c-card-list__en.is-list {
  font-size: 12px;
  color: #999999;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .c-card-list__en.is-list {
    font-size: 3.2vw;
  }
}

.c-card-list__img {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.c-card-list__img img {
  -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;
}
.c-card-list__body {
  position: relative;
  margin-top: -60px;
}
@media only screen and (max-width: 990px) {
  .c-card-list__body {
    margin-top: -65px;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list__body {
    margin-top: -13.3333333333vw;
  }
}
.c-card-list__body span {
  display: inline;
  color: #000000;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0%, #ffffff));
  background: linear-gradient(transparent 0, #ffffff 0%);
  font-size: 1.5rem;
  font-family: YakuHanMPs, "Noto Serif JP", serif;
}
@media only screen and (max-width: 990px) {
  .c-card-list__body span {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list__body span {
    font-size: 5.3333333333vw;
  }
}
.c-card-list__body.is-wide {
  margin-top: -75px;
}
@media only screen and (max-width: 990px) {
  .c-card-list__body.is-wide {
    margin-right: -65px;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list__body.is-wide {
    margin-top: -13.3333333333vw;
  }
}
.c-card-list__body.is-wide span {
  font-size: 1.75rem;
}
@media only screen and (max-width: 990px) {
  .c-card-list__body.is-wide span {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list__body.is-wide span {
    font-size: 5.3333333333vw;
  }
}

.c-card-list__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .c-card-list__txt {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 2.6666666667vw;
  }
}
.c-card-list__txt.is-wide {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
  .c-card-list__txt.is-list {
    display: inline-block;
  }
}

.c-card-list__ttl {
  color: #000000;
  font-weight: bold;
}

.c-card-list__job {
  padding: 2px 10px 0 10px;
  color: #ffffff;
  background-color: #000000;
  font-size: 0.75rem;
}
@media only screen and (max-width: 768px) {
  .c-card-list__job {
    display: inline-block;
    margin-left: 4vw;
    padding: 0.5333333333vw 2.6666666667vw 0 2.6666666667vw;
    font-size: 3.2vw;
  }
}
.c-card-list__job.is-wide {
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .c-card-list__job.is-wide {
    margin-left: 4vw;
  }
}
@media only screen and (max-width: 768px) {
  .c-card-list__job.is-list {
    margin-left: 0;
  }
}

.c-contents-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list {
    display: block;
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
    margin-bottom: 12vw;
  }
}

.c-contents-category-list__item {
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__item {
    width: auto;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    margin-bottom: 5.3333333333vw;
  }
}

.c-contents-category-list__link {
  display: block;
  padding: 12px;
  border: 1px solid #8a2155;
  background: #ffffff;
  color: #000000;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__link {
    padding: 3.2vw;
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: left;
  }
}
.c-contents-category-list__link:hover, .c-contents-category-list__link.is-on {
  background: #8a2155;
  color: #ffffff;
  text-decoration: none;
}
.c-contents-category-list__link.is-page-link {
  position: relative;
  z-index: 0;
}
.c-contents-category-list__link.is-page-link:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid #8a2155;
  border-bottom: 1px solid #8a2155;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__link.is-page-link:before {
    right: 4vw;
    margin-top: -1.0666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
  }
}
.c-contents-category-list__link.is-page-link:hover::before, .c-contents-category-list__link.is-page-link.is-on::before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

.c-contents-sub-category-list {
  position: absolute;
  bottom: 1px;
  left: 10px;
  z-index: 1;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: calc(100% - 20px);
  background: #ffffff;
  border: 1px solid #8a2155;
  border-top: none;
  overflow: hidden;
  line-height: 0;
  -webkit-transition: line-height 0.1s ease-out;
  transition: line-height 0.1s ease-out;
}
@media only screen and (max-width: 768px) {
  .c-contents-sub-category-list {
    bottom: 0;
    left: 2.6666666667vw;
    width: calc(100% - 5.3333333333vw);
  }
}

.c-contents-sub-category-list__item {
  padding: 15px;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  -webkit-transition: padding-top 0.1s ease-out, padding-bottom 0.1s ease-out, line-height 0.1s ease-out;
  transition: padding-top 0.1s ease-out, padding-bottom 0.1s ease-out, line-height 0.1s ease-out;
}
.c-contents-sub-category-list__item.is-close {
  height: 0;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-contents-sub-category-list__item {
    padding-left: 4vw;
    padding-right: 0;
  }
}

.c-contents-sub-category-list__link {
  display: inline-block;
  color: #000000;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: padding-top 0.1s ease-out, padding-bottom 0.1s ease-out, line-height 0.1s ease-out, opacity 0.1s linear, visibility 0.1s linear;
  transition: padding-top 0.1s ease-out, padding-bottom 0.1s ease-out, line-height 0.1s ease-out, opacity 0.1s linear, visibility 0.1s linear;
}
.c-contents-sub-category-list__link i {
  font-size: 1.875rem;
  color: #8a2155;
  line-height: 0;
  -webkit-transition: line-height 0.1s ease-out;
  transition: line-height 0.1s ease-out;
}
.c-contents-sub-category-list__link:hover {
  color: #8a2155;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .c-contents-sub-category-list__link i {
    font-size: 5.3333333333vw;
  }
}

.c-contents-category-list__link.is-on + .c-contents-sub-category-list {
  z-index: 2;
  line-height: 1.5;
}
.c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item {
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.5;
}
.c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item.is-close {
  height: auto;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item {
    padding-top: 1.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
}
.c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item > .c-contents-sub-category-list__link {
  padding-top: 5px;
  padding-bottom: 5px;
  line-height: 1.5;
  opacity: 1;
  visibility: visible;
}
.c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item > .c-contents-sub-category-list__link > i {
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-list__link.is-on + .c-contents-sub-category-list > .c-contents-sub-category-list__item > .c-contents-sub-category-list__link {
    padding-top: 1.3333333333vw;
    padding-bottom: 1.3333333333vw;
  }
}

/***** カテゴリーリスト 02 *****/
.c-contents-category-type02-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type02-list {
    display: block;
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
    margin-bottom: 12vw;
  }
}

.c-contents-category-type02-list__item {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type02-list__item {
    width: auto;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    margin-bottom: 0.5333333333vw;
  }
}

.c-contents-category-type02-list__link {
  display: block;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #007ae5;
  background: #ffffff;
  color: #007ae5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type02-list__link {
    padding: 3.2vw;
    padding-left: 4vw;
    padding-right: 4vw;
    border-radius: 1.3333333333vw;
    text-align: left;
  }
}
.c-contents-category-type02-list__link:hover {
  background: rgba(0, 122, 229, 0.8);
  color: #ffffff;
  text-decoration: none;
}
.c-contents-category-type02-list__link.is-on {
  background: #007ae5;
  color: #ffffff;
  text-decoration: none;
}

/***** カテゴリーリスト 03 *****/
.c-contents-category-type03-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type03-list {
    display: block;
    margin-bottom: 12vw;
  }
}

.c-contents-category-type03-list__item {
  border-right: 1px solid #dddddd;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type03-list__item {
    margin-bottom: 0.2666666667vw;
    border-right: 0;
    border-bottom: 1px solid #dddddd;
    width: auto;
  }
}
.c-contents-category-type03-list__item:first-child {
  border-left: 1px solid #dddddd;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type03-list__item:first-child {
    border-top: 1px solid #dddddd;
    border-left: 0;
  }
}

.c-contents-category-type03-list__link {
  display: block;
  padding: 12px;
  background: #ffffff;
  color: #007ae5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-contents-category-type03-list__link {
    padding: 3.2vw;
    padding-left: 4vw;
    padding-right: 4vw;
    text-align: left;
  }
}
.c-contents-category-type03-list__link:hover {
  background: rgba(0, 122, 229, 0.8);
  color: #ffffff;
  text-decoration: none;
}
.c-contents-category-type03-list__link.is-on {
  background: #007ae5;
  color: #ffffff;
  text-decoration: none;
}

/* カテゴリ用 */
.c-category-list-type01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01 {
    display: block;
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
  }
}

.c-category-list-type01__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01__item {
    margin-bottom: 8vw;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    width: auto;
  }
}
.c-category-list-type01__item.is-top {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01__item.is-top {
    margin-bottom: 8vw;
  }
}

.c-category-list-type01__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-category-list-type01__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

.c-category-list-type01__img {
  position: relative;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01__img {
    margin-bottom: 2.6666666667vw;
  }
}

.c-category-list-type01__ttl {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 1.875rem;
  background: rgba(0, 0, 0, 0.1);
  color: #ffffff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 768px) {
  .c-category-list-type01__ttl {
    font-size: 4.8vw;
  }
}

/* 内容用 */
.c-category-list-type02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02 {
    display: block;
    margin-left: -2.6666666667vw;
    margin-right: -2.6666666667vw;
  }
}

.c-category-list-type02__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02__item {
    margin-bottom: 8vw;
    padding-left: 2.6666666667vw;
    padding-right: 2.6666666667vw;
    width: auto;
  }
}

.c-category-list-type02__link {
  display: block;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.c-category-list-type02__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.c-category-list-type02__link:hover {
  text-decoration: none;
}

.c-category-list-type02-txt {
  position: relative;
  padding: 30px 15px;
  border: 1px solid #dddddd;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02-txt {
    padding: 8vw 4vw;
  }
}

.c-category-list-type02-txt__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02-txt__ttl {
    margin-bottom: 4vw;
    font-size: 4.8vw;
  }
}

.c-category-list-type02-txt__category {
  position: absolute;
  top: -15px;
  right: -1px;
  padding: 5px 15px;
  min-width: 120px;
  background: #8a2155;
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-category-list-type02-txt__category {
    top: -4vw;
    right: -0.2666666667vw;
    padding: 1.3333333333vw 4vw;
    min-width: 32vw;
    font-size: 3.2vw;
  }
}

.c-category-list-type02-txt__body {
  color: #000000;
}

.c-check-list__item {
  margin-bottom: 15px;
}
.c-check-list__item:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .c-check-list__item {
    margin-bottom: 4vw;
  }
}

.c-flow-list {
  counter-reset: item;
}

.c-flow-list__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-flow-list__year {
  font-size: 1.375rem;
}
@media only screen and (max-width: 768px) {
  .c-flow-list__year {
    font-size: 5.8666666667vw;
  }
}

.c-flow-list__ttl {
  padding-right: 15px;
  padding-bottom: 30px;
  border-right: 1px dashed #cccccc;
  font-size: 1.125rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-flow-list__ttl {
    padding-right: 4vw;
    padding-bottom: 8vw;
    font-size: 4.8vw;
  }
}

.c-flow-list__body {
  padding-left: 15px;
  padding-bottom: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .c-flow-list__body {
    padding-left: 4vw;
    padding-bottom: 8vw;
  }
}

.c-galley-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 768px) {
  .c-galley-list {
    margin-left: -1.3333333333vw;
    margin-right: -1.3333333333vw;
  }
}

.c-galley-list__item {
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  width: 25%;
}
@media only screen and (max-width: 990px) {
  .c-galley-list__item {
    width: 33.3333%;
  }
}
@media only screen and (max-width: 768px) {
  .c-galley-list__item {
    margin-bottom: 4vw;
    padding-left: 1.3333333333vw;
    padding-right: 1.3333333333vw;
    width: 50%;
  }
}

.c-galley-list__img figcaption {
  margin-top: 10px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 768px) {
  .c-galley-list__img figcaption {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

/*************** 画像リスト ***************/
.c-img-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
@media only screen and (max-width: 768px) {
  .c-img-list {
    margin-left: -1.3333333333vw;
    margin-right: -1.3333333333vw;
  }
}

.c-img-list__item {
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  width: 25%;
}
@media only screen and (max-width: 768px) {
  .c-img-list__item {
    margin-bottom: 2.6666666667vw;
    padding-left: 1.3333333333vw;
    padding-right: 1.3333333333vw;
    width: 50%;
  }
}

.c-img-list__img figcaption {
  margin-top: 5px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 768px) {
  .c-img-list__img figcaption {
    margin-top: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}

/* メディア 01 */
.c-media-type01__img {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .c-media-type01__img {
    margin-left: -4vw;
    margin-right: -4vw;
    margin-bottom: 4vw;
  }
}

.c-media-type01__body {
  line-height: 1.8;
}

/* メディア 02 (画像左右) */
.c-media-type02-box:nth-child(even) .c-media-type02__txt {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-left: 0;
  margin-right: 60px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .c-media-type02-box:nth-child(even) .c-media-type02__txt {
    margin-right: 0;
  }
}

.c-media-type02-box {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .c-media-type02-box {
    margin-bottom: 12vw;
  }
}

.c-media-type02 {
  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;
}
@media only screen and (max-width: 768px) {
  .c-media-type02 {
    display: block;
  }
}
.c-media-type02.is-no-image .c-media-type02__txt {
  margin-left: 0;
}

.c-media-type02__img {
  width: 435px;
}
@media only screen and (max-width: 990px) {
  .c-media-type02__img {
    width: 345px;
  }
}
@media only screen and (max-width: 768px) {
  .c-media-type02__img {
    margin-bottom: 8vw;
    width: auto;
  }
}

.c-media-type02__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 60px;
  line-height: 1.8;
}
@media only screen and (max-width: 990px) {
  .c-media-type02__txt {
    margin-left: 45px;
  }
}
@media only screen and (max-width: 768px) {
  .c-media-type02__txt {
    margin-left: 0;
  }
}

.c-media-type02__body {
  line-height: 1.8;
}

.pager-list {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 768px) {
  .pager-list {
    padding: 5.3333333333vw 0;
  }
}

.pager-list__item {
  margin-left: 10px;
  margin-right: 10px;
  width: 45px;
  line-height: 43px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .pager-list__item {
    margin-left: 1.3333333333vw;
    margin-right: 1.3333333333vw;
    width: 10.6666666667vw;
    line-height: 10.1333333333vw;
    font-size: 3.7333333333vw;
  }
}
.pager-list__item span {
  display: block;
  border: 1px solid #8a2155;
  border-radius: 50%;
  background: #8a2155;
  color: #ffffff;
  text-decoration: none;
}
.pager-list__item.pager_omit span {
  border-color: #aaaaaa;
  background: #ffffff;
  color: #000000;
}

.pager-list__link {
  display: block;
  border: 1px solid #8a2155;
  border-radius: 50%;
  background: #ffffff;
  color: #8a2155;
  text-decoration: none;
}
.pager-list__link:hover {
  background: #8a2155;
  color: #ffffff;
  text-decoration: none;
}

/***** ページャー 四角 *****/
.pager.is-square .pager-list__item span {
  border-radius: 0;
}
.pager.is-square .pager-list__link {
  border-radius: 0;
}

/***** ページャー 角丸 *****/
.pager.is-square-r .pager-list__item span {
  border-radius: 1.3333333333vw;
}
.pager.is-square-r .pager-list__link {
  border-radius: 1.3333333333vw;
}

/*** テーブル風リスト 01 ***/
.c-tbl-list-type01 {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}

.c-tbl-list-type01__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 28px;
  padding-bottom: 28px;
  border-top: 1px dashed #333333;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-type01__tr {
    display: block;
    padding-top: 4vw;
    padding-bottom: 4vw;
  }
}
.c-tbl-list-type01__tr:last-child {
  border-bottom: 1px dashed #333333;
}

.c-tbl-list-type01__th,
.c-tbl-list-type01__td {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.c-tbl-list-type01__th {
  margin-right: 15px;
  width: 230px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-type01__th {
    margin-right: 0;
    margin-bottom: 4vw;
    width: auto;
    font-size: 4.2666666667vw;
  }
}

.c-tbl-list-type01__td {
  padding-top: 2px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-type01__td {
    padding-top: 0;
    font-size: 3.7333333333vw;
  }
}

/*** テーブル風リスト 02 ***/
.c-tbl-list-type02 {
  width: 100%;
}

.c-tbl-list-type02__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid #dddddd;
}
.c-tbl-list-type02__tr:last-child {
  border-bottom: 1px solid #dddddd;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-type02__tr {
    display: block;
    margin-bottom: 8vw;
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
  }
  .c-tbl-list-type02__tr:last-child {
    border-bottom: 0;
  }
}

.c-tbl-list-type02__th,
.c-tbl-list-type02__td {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.c-tbl-list-type02__th {
  padding: 15px;
  width: 180px;
  border-right: 1px solid #dddddd;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-type02__th {
    margin-bottom: 2.6666666667vw;
    padding: 0;
    width: auto;
    border-right: 0;
    color: #000000;
    text-align: left;
  }
}

.c-tbl-list-type02__td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-type02__td {
    padding: 0;
  }
}

/*** ２項目テーブル風リスト ***/
.c-tbl-second-list {
  border-top: 1px solid #dddddd;
}
@media only screen and (max-width: 768px) {
  .c-tbl-second-list {
    border-top: 0;
  }
}

.c-tbl-second-list__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #dddddd;
}

.c-tbl-second-list__th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  width: 240px;
  background: #cccccc;
}
@media only screen and (max-width: 768px) {
  .c-tbl-second-list__th {
    display: block;
    padding: 1.3333333333vw 4vw;
    width: 100%;
    border-bottom: 0;
    font-size: 3.2vw;
  }
}

.c-tbl-second-list__ttl {
  font-weight: bold;
  color: #ffffff;
}

.c-tbl-second-list__td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 15px;
  border-right: 1px solid #dddddd;
}
@media only screen and (max-width: 768px) {
  .c-tbl-second-list__td {
    padding: 2.6666666667vw 4vw;
    font-size: 3.2vw;
  }
}
.c-tbl-second-list__td.is-02 {
  border-right: 0;
}

/*** 横並びテーブル風リスト ***/
.c-tbl-list-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-double {
    display: block;
  }
}

.c-tbl-list-double__tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -1px;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 1px solid #dddddd;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-double__tr {
    padding-top: 2.6666666667vw;
    padding-bottom: 2.6666666667vw;
    border-left: 0;
    border-right: 0;
    width: auto;
  }
}
.c-tbl-list-double__tr:nth-child(even) {
  border-left: 0;
}

.c-tbl-list-double__th,
.c-tbl-list-double__td {
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-all;
}

.c-tbl-list-double__th {
  padding: 10px 15px;
  width: 120px;
  border-right: 1px solid #dddddd;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-double__th {
    padding: 1.3333333333vw 2.6666666667vw;
    width: 24vw;
    font-size: 3.2vw;
  }
}

.c-tbl-list-double__td {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px 15px;
  color: #777777;
}
@media only screen and (max-width: 768px) {
  .c-tbl-list-double__td {
    padding: 1.3333333333vw 2.6666666667vw;
    font-size: 3.2vw;
  }
}

/*************** table ***************/
.c-tbl {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .c-tbl {
    font-size: 3.2vw;
  }
}

.c-tbl__th {
  padding: 10px 20px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background: #f4f4f4;
  width: 165px;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  .c-tbl__th {
    padding: 1.3333333333vw 2.6666666667vw;
    width: 28vw;
  }
}

.c-tbl__td {
  padding: 10px 20px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .c-tbl__td {
    padding: 1.3333333333vw 2.6666666667vw;
  }
}

.c-ttl-main {
  margin-bottom: 40px;
  line-height: 1.2;
  text-align: center;
}
.c-ttl-main.is-left {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .c-ttl-main {
    margin-bottom: 10.6666666667vw;
  }
}

.c-ttl-main__en {
  font-size: 1.875rem;
  font-weight: bold;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .c-ttl-main__en {
    font-size: 8vw;
  }
}

.c-ttl-main__ja {
  display: block;
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: normal;
}
@media only screen and (max-width: 768px) {
  .c-ttl-main__ja {
    margin-top: 2.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.c-ttl-sub {
  margin-bottom: 45px;
  font-size: 2.625rem;
  color: #000000;
  font-weight: bold;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .c-ttl-sub {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 768px) {
  .c-ttl-sub {
    margin-bottom: 8vw;
    font-size: 6.4vw;
  }
}
.c-ttl-sub.is-left {
  font-size: 1.75rem;
  line-height: 1.6;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .c-ttl-sub.is-left {
    font-size: 6.4vw;
  }
}

.c-ttl-sub-s {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #000000;
  line-height: 1.4;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-ttl-sub-s {
    margin-bottom: 4vw;
    font-size: 5.3333333333vw;
  }
}
.c-ttl-sub-s.is-min-width {
  margin-right: auto;
  margin-left: auto;
  max-width: 800px;
  width: 100%;
}

.c-ttl-sub-ss {
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .c-ttl-sub-ss {
    margin-bottom: 4vw;
    font-size: 4.2666666667vw;
  }
}

.c-lead {
  margin-bottom: 45px;
  font-size: 1.125rem;
  line-height: 1.8;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-lead {
    margin-bottom: 12vw;
    font-size: 4.8vw;
  }
}

/***** 下層ヘッダービジュアル *****/
.c-second-header-visual-bg {
  padding-top: 255px;
  width: 100%;
  height: 760px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media only screen and (max-width: 990px) {
  .c-second-header-visual-bg {
    height: 540px;
  }
}
@media only screen and (max-width: 768px) {
  .c-second-header-visual-bg {
    padding-top: 32vw;
    height: 78.6666666667vw;
  }
}
.c-second-header-visual-bg.is-aboutus {
  background-image: url(../images/second-header-aboutus.jpg);
}
.c-second-header-visual-bg.is-company {
  background-image: url(../images/second-header-company.jpg);
}
.c-second-header-visual-bg.is-people {
  background-image: url(../images/second-header-people.jpg);
}
.c-second-header-visual-bg.is-business {
  background-image: url(../images/second-header-business.jpg);
}
.c-second-header-visual-bg.is-csr {
  background-image: url(../images/second-header-csr.jpg);
}
.c-second-header-visual-bg.is-news {
  background-image: url(../images/second-header-news.jpg);
}
.c-second-header-visual-bg.is-recruit {
  background-image: url(../images/second-header-recruit.jpg);
}
.c-second-header-visual-bg.is-report {
  background-image: url(../images/second-header-report.jpg);
}
.c-second-header-visual-bg.is-people-detail {
  padding-top: 240px;
}
@media only screen and (max-width: 990px) {
  .c-second-header-visual-bg.is-people-detail {
    padding-top: 120px;
  }
}
@media only screen and (max-width: 768px) {
  .c-second-header-visual-bg.is-people-detail {
    height: 138.6666666667vw;
    padding-top: 69.3333333333vw;
  }
}
.c-second-header-visual-bg.is-business, .c-second-header-visual-bg.is-csr, .c-second-header-visual-bg.is-news, .c-second-header-visual-bg.is-recruit, .c-second-header-visual-bg.is-report {
  padding-top: 165px;
  height: 400px;
}
@media only screen and (max-width: 768px) {
  .c-second-header-visual-bg.is-business, .c-second-header-visual-bg.is-csr, .c-second-header-visual-bg.is-news, .c-second-header-visual-bg.is-recruit, .c-second-header-visual-bg.is-report {
    padding-top: 32vw;
    height: 85.3333333333vw;
  }
}

.c-second-header-visual-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.c-second-header-visual-ttl {
  display: inline-block;
  padding: 10px 15px;
  min-width: 300px;
  background-color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .c-second-header-visual-ttl {
    padding: 0 4vw 1.3333333333vw 4vw;
    min-width: initial;
  }
}
.c-second-header-visual-ttl .c-second-header-visual-ttl__en {
  display: inline-block;
  margin-bottom: 5px;
  color: #444444;
}
@media only screen and (max-width: 768px) {
  .c-second-header-visual-ttl .c-second-header-visual-ttl__en {
    margin-bottom: 1.3333333333vw;
    font-size: 2.6666666667vw;
  }
}
.c-second-header-visual-ttl .c-second-header-visual-ttl__ja {
  display: block;
  font-weight: normal;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-second-header-visual-ttl .c-second-header-visual-ttl__ja {
    font-size: 6.4vw;
  }
}

/***** introduction *****/
.p-recruit-introduction-ttl {
  margin-bottom: 90px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-introduction-ttl {
    margin-bottom: 16vw;
  }
}

.p-recruit-introduction-sub-ttl {
  display: block;
  margin-bottom: 40px;
  color: #444444;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .p-recruit-introduction-sub-ttl {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .p-recruit-introduction-sub-ttl {
    margin-bottom: 4vw;
  }
}

.p-recruit-introduction-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-recruit-introduction-txt {
  display: block;
  margin: 0 auto;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  line-height: 1.8em;
  letter-spacing: 0;
  font-size: 2.625rem;
  font-weight: bold;
}
@media only screen and (max-width: 990px) {
  .p-recruit-introduction-txt {
    font-size: 1.875rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-recruit-introduction-txt {
    line-height: 1.8;
    font-size: 6.4vw;
  }
}
.p-recruit-introduction-txt span {
  padding: 15px 0;
  background: #ffffff;
}
@media only screen and (max-width: 768px) {
  .p-recruit-introduction-txt span {
    padding: 4vw 0;
  }
}

.p-recruit-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -15px;
}
@media only screen and (max-width: 768px) {
  .p-recruit-list {
    display: block;
    margin: 0;
  }
}

.p-recruit-list__item {
  margin-bottom: 30px;
  padding: 0 15px;
  width: 50%;
}
@media only screen and (max-width: 768px) {
  .p-recruit-list__item {
    margin-bottom: 12vw;
    padding: 0;
    width: auto;
  }
}

.p-recruit-list__link {
  display: block;
}
.p-recruit-list__link:hover {
  color: #000000;
  text-decoration: none;
}
.p-recruit-list__link:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-recruit-list__img {
  margin-bottom: 15px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-recruit-list__img {
    margin-bottom: 4vw;
  }
}
.p-recruit-list__img img {
  -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;
}

.p-recruit-list__ttl {
  position: relative;
  padding-right: 45px;
  color: #000000;
  font-size: 2.25rem;
  line-height: 1.4;
  font-weight: bold;
}
@media only screen and (max-width: 990px) {
  .p-recruit-list__ttl {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .p-recruit-list__ttl {
    padding-right: 12vw;
    font-size: 6.4vw;
  }
}
.p-recruit-list__ttl:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  margin-top: -5px;
  width: 12px;
  height: 12px;
  border-top: 1px solid #000000;
  border-right: 1px solid #000000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 3;
  -webkit-transition: top 0.3s ease;
  transition: top 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .p-recruit-list__ttl:before {
    right: 4vw;
    margin-top: -1.3333333333vw;
    width: 3.2vw;
    height: 3.2vw;
  }
}
.p-recruit-list__ttl:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #666666;
  background: #f4f4f4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .p-recruit-list__ttl:after {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
  }
}