@charset "UTF-8";
.c-btn {
  display: inline-block;
  padding: 20px 45px;
  border: 2px solid #29297c;
  border-radius: 0px;
  min-width: 300px;
  line-height: 1.4;
  background: transparent;
  color: #29297c;
  font-size: 1.3125rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 100ms 0s ease;
  transition: all 100ms 0s ease;
  position: relative;
}
.c-btn:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #29297c;
  border-bottom: 2px solid #29297c;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 990px) {
  .c-btn {
    min-width: 290px;
  }
}
.c-btn:hover {
  border-color: #29297c;
  background-color: #29297c;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.c-btn:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-white {
  border-color: #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.c-btn.is-white:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-white:hover {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #29297c;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.c-btn.is-white:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  left: auto;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #29297c;
  border-bottom: 2px solid #29297c;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}

/***** ボタン 状態・大きさ *****/
.c-btn.is-primary {
  border-color: transparent;
  background: #29297c;
  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;
}
.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;
}
.c-btn.is-primary:hover {
  background: rgba(41, 41, 124, 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: #29297c;
  border-width: 1px;
  background: #ffffff;
  color: #29297c;
  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 #29297c;
  border-bottom: 1px solid #29297c;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-link:hover {
  position: relative;
  background: #29297c;
  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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.c-btn.is-pdf {
  padding: 15px;
  font-size: 16px;
}
.c-btn.is-pdf::before {
  content: none;
}
.c-btn.is-s {
  padding: 20px 35px;
  min-width: 270px;
  font-size: 1rem;
  position: relative;
}
.c-btn.is-s:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #29297c;
  border-bottom: 2px solid #29297c;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
@media only screen and (max-width: 990px) {
  .c-btn.is-s {
    padding: 15px 35px;
    min-width: 240px;
  }
}
.c-btn.is-s.is-white {
  position: relative;
}
.c-btn.is-s.is-white:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-s.is-white:hover {
  position: relative;
}
.c-btn.is-s.is-white:hover:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #29297c;
  border-bottom: 2px solid #29297c;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.c-btn.is-m {
  padding: 11px 30px;
}
.c-btn.is-l {
  padding: 15px 30px;
  font-size: 1.125rem;
}
@media only screen and (max-width: 990px) {
  .c-btn.is-l {
    padding: 11px 30px;
    font-size: 1rem;
  }
}

/***** 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: 990px) {
  .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: 990px) {
  .c-second-btn-wrap .c-btn-more {
    margin-top: 0;
    margin-bottom: 15px;
    padding: 0;
  }
}

.c-btn-more {
  margin-top: 45px;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .c-btn-more {
    margin-top: 30px;
  }
}

.c-card-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: 990px) {
  .c-card-list {
    display: block;
    margin-left: 0px;
    margin-right: 0px;
  }
}

.c-card-list__item {
  margin-bottom: 60px;
  padding-left: 15px;
  padding-right: 15px;
  width: 33.3333%;
}
@media only screen and (max-width: 990px) {
  .c-card-list__item {
    margin-bottom: 30px;
    padding-left: 0px;
    padding-right: 0px;
    width: auto;
  }
}

.c-card-list__link {
  overflow: hidden;
  display: block;
  border: 1px solid #dddddd;
  border-radius: 5px;
  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-card-list__link:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}
.c-card-list__link:hover {
  text-decoration: none;
}

.c-card-list__img {
  --imgWidth: 540;
  --imgHeight: 360;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  min-height: 205px;
}
@media only screen and (max-width: 990px) {
  .c-card-list__img {
    --containerWidth: calc(100vw - (15px * 2) - 20px);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: var(--imgShowHeight);
  }
}

.c-card-list__txt {
  padding: 15px;
}

.c-card-list__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #000000;
}

.c-card-list__body {
  color: #393939;
}

.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: 990px) {
  .c-contents-category-list {
    display: block;
    margin-bottom: 45px;
  }
}

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

.c-contents-category-list__link {
  display: block;
  padding: 12px;
  border: 1px solid #29297c;
  background: #fffff;
  color: #393939;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .c-contents-category-list__link {
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
  }
}
.c-contents-category-list__link:hover, .c-contents-category-list__link.is-on {
  background: #29297c;
  color: #ffffff;
  text-decoration: none;
}
.c-contents-category-list__link.is-page-link {
  position: relative;
}
.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 #29297c;
  border-bottom: 1px solid #29297c;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-contents-category-list__link.is-page-link:hover::before {
  border-right-color: #ffffff;
  border-bottom-color: #ffffff;
}

/***** カテゴリーリスト 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: 990px) {
  .c-contents-category-type02-list {
    display: block;
    margin-bottom: 45px;
  }
}

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

.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: 990px) {
  .c-contents-category-type02-list__link {
    padding-left: 15px;
    padding-right: 15px;
    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: 990px) {
  .c-contents-category-type03-list {
    display: block;
    margin-bottom: 45px;
  }
}

.c-contents-category-type03-list__item {
  border-right: 1px solid #dddddd;
  width: 33.3333%;
}
@media only screen and (max-width: 990px) {
  .c-contents-category-type03-list__item {
    margin-bottom: 1px;
    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: 990px) {
  .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: 990px) {
  .c-contents-category-type03-list__link {
    padding-left: 15px;
    padding-right: 15px;
    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: 990px) {
  .c-category-list-type01 {
    display: block;
  }
}

.c-category-list-type01__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}
@media only screen and (max-width: 990px) {
  .c-category-list-type01__item {
    margin-bottom: 30px;
    width: auto;
  }
}

.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;
  --imgWidth: 580;
  --imgHeight: 385;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  min-height: 210px;
}
@media only screen and (max-width: 1530px) {
  .c-category-list-type01__img {
    --containerWidth: calc((100vw - (15px * 4)) / 3);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: auto;
  }
}
@media only screen and (max-width: 990px) {
  .c-category-list-type01__img {
    --containerWidth: calc(100vw - (15px * 2) - 20px);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: var(--imgShowHeight);
  }
}

.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: 990px) {
  .c-category-list-type01__ttl {
    font-size: 1.125rem;
  }
}

/* 内容用 */
.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: 990px) {
  .c-category-list-type02 {
    display: block;
  }
}

.c-category-list-type02__item {
  margin-bottom: 50px;
  padding-left: 10px;
  padding-right: 10px;
  width: 33.3333%;
}
@media only screen and (max-width: 990px) {
  .c-category-list-type02__item {
    margin-bottom: 30px;
    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__img {
  --imgWidth: 580;
  --imgHeight: 385;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  min-height: 210px;
}
@media only screen and (max-width: 1530px) {
  .c-category-list-type02__img {
    --containerWidth: calc((100vw - (15px * 4)) / 3);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: auto;
  }
}
@media only screen and (max-width: 990px) {
  .c-category-list-type02__img {
    --containerWidth: calc(100vw - (15px * 2) - 20px);
    --imgShowHeight: calc(var(--containerWidth) * var(--imgRatio));
    min-height: var(--imgShowHeight);
  }
}

.c-category-list-type02-txt {
  position: relative;
  padding: 30px 15px;
  border: 1px solid #dddddd;
  background: #ffffff;
}

.c-category-list-type02-txt__ttl {
  margin-bottom: 15px;
  font-size: 1.125rem;
  color: #000000;
}

.c-category-list-type02-txt__category {
  position: absolute;
  top: -15px;
  right: -1px;
  padding: 5px 15px;
  min-width: 120px;
  background: #29297c;
  color: #ffffff;
  font-size: 0.75rem;
  text-align: center;
}

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

.c-check-list__item {
  margin-bottom: 15px;
}
.c-check-list__item:last-child {
  margin-bottom: 0;
}

/* メインビジュアル */
.p-main-visual-bg-a {
  overflow: hidden;
  position: relative;
  line-height: 1;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.p-main-visual-bg-a:before {
  display: block;
  padding-top: 44%;
  content: "";
}
@media screen and (max-width: 767px) {
  .p-main-visual-bg-a:before {
    padding-top: 159%;
  }
}

.p-main-visual-a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-main-visual {
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  max-height: 870px;
  overflow: hidden;
  --imgWidth: 1500;
  --imgHeight: 660;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
}
@media only screen and (max-width: 1530px) {
  .p-main-visual {
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
  }
}
@media only screen and (max-width: 990px) {
  .p-main-visual {
    --imgWidth: 750;
    --imgHeight: 1200;
    --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
  }
}

.p-main-visual-wrap .slick-arrow {
  top: auto;
  bottom: 30px;
  border-radius: 0;
  background: rgba(41, 41, 124, 0.8);
}
@media only screen and (max-width: 990px) {
  .p-main-visual-wrap .slick-arrow {
    bottom: 15px;
  }
}
.p-main-visual-wrap .slick-arrow:hover {
  background: #29297c;
}
.p-main-visual-wrap .slick-prev {
  left: auto;
  right: 77px;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-wrap .slick-prev {
    right: 62px;
  }
}
.p-main-visual-wrap .slick-next {
  left: auto;
  right: 30px;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-wrap .slick-next {
    right: 15px;
  }
}

.p-main-visual-link {
  position: relative;
}

.p-main-visual__img {
  position: relative;
}
.p-main-visual__img img {
  width: 100%;
}

.p-main-visual-txt {
  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;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .p-main-visual-txt {
    padding-right: 5%;
    left: 5%;
  }
}

.p-main-visual-txt__ttl-main {
  display: block;
  margin-bottom: 20px;
  line-height: 1;
  font-size: 6vw;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #29297c;
  letter-spacing: 0;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.5), 0 0 15px rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .p-main-visual-txt__ttl-main {
    margin-bottom: 15px;
    line-height: 1.2;
    font-size: 9.6vw;
  }
}

.p-main-visual-txt__ttl-sub {
  display: block;
  line-height: 1.7;
  font-size: 1.4vw;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-main-visual-txt__ttl-sub {
    font-size: 3.4666666667vw;
  }
}
.p-main-visual-txt__ttl-sub span {
  display: inline-block;
  margin-bottom: 5px;
  padding: 2px 10px;
  background: #29297c;
  color: #ffffff;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-txt__ttl-sub span {
    padding: 2px 5px;
  }
}

.slick-slide-animation .p-main-visual__img img {
  -webkit-animation: zoom-in ease 7s forwards;
          animation: zoom-in ease 7s forwards;
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
/***** メインビジュアル コントロール *****/
.p-main-visual-control__item {
  position: absolute;
  top: 50%;
}
.p-main-visual-control__item.is-prev {
  left: 15px;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-control__item.is-prev {
    left: 10px;
  }
}
.p-main-visual-control__item.is-next {
  right: 15px;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-control__item.is-next {
    right: 10px;
  }
}

.p-main-visual-control__btn {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  position: relative;
  width: 65px;
  height: 65px;
  border: 0;
  background: transparent;
}
@media only screen and (max-width: 990px) {
  .p-main-visual-control__btn {
    width: 45px;
    height: 45px;
  }
}
.p-main-visual-control__btn:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -20px;
  margin-left: -7px;
  width: 40px;
  height: 40px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media only screen and (max-width: 990px) {
  .p-main-visual-control__btn:before {
    margin-top: -13px;
    margin-left: -7px;
    width: 25px;
    height: 25px;
  }
}
.p-main-visual-control__btn.is-next:before {
  left: auto;
  right: 50%;
  margin-left: 0;
  margin-right: -7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-main-visual-bg {
  background: #e4e4ef;
  overflow: hidden;
  width: 100%;
  max-height: 870px;
  --imgWidth: 1500;
  --imgHeight: 660;
  --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
  --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
  height: var(--imgShowHeight);
}
@media only screen and (max-width: 1530px) {
  .p-main-visual-bg {
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
    height: var(--imgShowHeight);
  }
}
@media only screen and (max-width: 990px) {
  .p-main-visual-bg {
    --imgWidth: 750;
    --imgHeight: 1200;
    --imgRatio: calc(var(--imgHeight) / var(--imgWidth));
    --imgShowHeight: calc((100vw - 20px) * var(--imgRatio));
    max-height: var(--imgShowHeight);
    height: var(--imgShowHeight);
  }
}

.c-ttl-main {
  position: relative;
  margin-bottom: 75px;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .c-ttl-main {
    margin-bottom: 45px;
  }
}
.c-ttl-main.is-left {
  text-align: left;
}
@media only screen and (max-width: 990px) {
  .c-ttl-main.is-left {
    text-align: center;
  }
}
.c-ttl-main.is-left .c-ttl-main__ja {
  text-align: left;
}
@media only screen and (max-width: 990px) {
  .c-ttl-main.is-left .c-ttl-main__ja {
    text-align: center;
  }
}

.c-ttl-main__en {
  line-height: 1;
  font-size: 5.625rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  color: #e4e4ef;
}
@media only screen and (max-width: 990px) {
  .c-ttl-main__en {
    font-size: 3rem;
  }
}
.c-ttl-main__en.is-white {
  color: #ffffff;
}
.c-ttl-main__en.is-opa {
  opacity: 0.3;
}

.c-ttl-main__ja {
  display: block;
  position: absolute;
  bottom: -15px;
  left: 0;
  right: 0;
  font-size: 1.875rem;
  font-weight: bold;
  color: #000000;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .c-ttl-main__ja {
    bottom: -10px;
    font-size: 1.5rem;
  }
}
.c-ttl-main__ja.is-white {
  color: #ffffff;
}

.c-ttl-sub {
  position: relative;
  margin-bottom: 45px;
  font-size: 1.625rem;
  color: #000;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .c-ttl-sub {
    margin-bottom: 30px;
    font-size: 1.3125rem;
  }
}
.c-ttl-sub.is-left {
  text-align: left;
}
.c-ttl-sub.is-left:before {
  left: 0;
  margin-left: 0;
}

.c-ttl-sub-s {
  margin-bottom: 30px;
  padding: 3px 0 3px 25px;
  border-left: 3px solid #29297c;
  font-size: 1.3125rem;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
}
@media only screen and (max-width: 990px) {
  .c-ttl-sub-s {
    margin-bottom: 20px;
    padding-left: 15px;
    font-size: 1.125rem;
  }
}

.c-ttl-sub-ss {
  margin-bottom: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  line-height: 1.4;
}

.c-lead {
  margin-bottom: 45px;
  font-size: 1.125rem;
  line-height: 2;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .c-lead {
    font-size: 1rem;
  }
}

/***** 下層ヘッダービジュアル *****/
.c-second-header-visual-bg {
  position: relative;
  padding: 0;
  padding-top: 100px;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  background-position: center;
}
@media only screen and (max-width: 990px) {
  .c-second-header-visual-bg {
    height: 150px;
    padding-top: 50px;
  }
}

.c-second-header-visual-ttl {
  font-weight: bold;
  font-size: 2.8125rem;
  line-height: 2.8125rem;
  color: #fff;
}
.c-second-header-visual-ttl span {
  display: block;
  margin-top: 15px;
  font-weight: normal;
  font-size: 1.875rem;
  line-height: 1.875rem;
}
@media only screen and (max-width: 990px) {
  .c-second-header-visual-ttl {
    font-size: 1.875rem;
    line-height: 1.875rem;
  }
  .c-second-header-visual-ttl span {
    font-size: 0.9375rem;
    line-height: 0.9375rem;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  /*display: none;*/
}

.slick-arrow.slick-hidden:before {
  color: #ccc;
  opacity: 1;
  cursor: default;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  src: url("../images/fonts/slick.eot");
  src: url("../images/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../images/fonts/slick.woff") format("woff"), url("../images/fonts/slick.ttf") format("truetype"), url("../images/fonts/slick.svg#slick") format("svg");
}
/************************ Arrows ************************/
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  z-index: 100;
  display: block;
  width: 45px;
  height: 45px;
  margin-top: -23px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  color: transparent;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.slick-prev:hover,
.slick-next:hover {
  background: #29297c;
}
.slick-prev.slick-hidden,
.slick-next.slick-hidden {
  display: none;
}

.slick-prev:before,
.slick-next:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.slick-prev:before {
  left: 50%;
  margin-left: -4px;
  border-left: 2px solid #fff;
  border-top: 2px solid #fff;
}

.slick-next:before {
  right: 50%;
  margin-right: -4px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.slick-prev {
  left: -30px;
}

[dir=rtl] .slick-prev {
  right: -30px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -30px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -30px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/************************ Dots ************************/
.slick-dots {
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  display: block;
  padding: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  display: inline-block;
  margin: 0 10px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  overflow: hidden;
  white-space: nowrap;
  text-indent: -99999px;
  font-size: 0;
  display: block;
  padding: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  background: #eee;
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  background: #29297c;
}

.slick-dots li.slick-active button {
  background: #29297c;
}

/***** TOP TOPICS *****/
.p-top-topics {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #e4e4ef;
}

.p-top-topics__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-top-topics__wrap {
    display: block;
  }
}

.p-top-topics__ttl {
  width: 120px;
  font-size: 1.3125rem;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-topics__ttl {
    margin-bottom: 15px;
    width: auto;
    font-size: 1rem;
    text-align: center;
  }
}

.p-top-topics-list-wrap {
  padding-left: 60px;
  border-left: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .p-top-topics-list-wrap {
    padding-left: 0;
    border-left: none;
  }
}

.p-top-topics-list {
  margin-top: 10px;
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .p-top-topics-list {
    padding-left: 0;
  }
}

.p-top-topics-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-topics-list__item {
    display: block;
  }
}
.p-top-topics-list__item a {
  color: #393939;
}
.p-top-topics-list__item:last-child {
  margin-bottom: 0;
}

.p-top-topics-list__date {
  width: 105px;
  font-family: "Oswald", sans-serif;
  color: #696969;
}
@media screen and (max-width: 767px) {
  .p-top-topics-list__date {
    width: auto;
  }
}

.p-top-topics-list__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 767px) {
  .p-top-topics-list__ttl {
    margin-top: 5px;
  }
}

.p-top-topics-list__category {
  display: inline-block;
  padding: 0 15px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-size: 0.875rem;
  font-weight: normal;
}
.p-top-topics-list__category.is-2nd {
  margin-top: 20px;
}

/***** TOP 事業紹介 *****/
.p-top-business {
  padding-top: 90px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 990px) {
  .p-top-business {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-business .c-lead {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-top-business-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  max-width: 1530px;
}
@media only screen and (max-width: 990px) {
  .p-top-business-section {
    display: block;
  }
}

.p-top-business-section__item {
  position: relative;
  width: 33.3333%;
}
@media only screen and (max-width: 990px) {
  .p-top-business-section__item {
    margin-bottom: 1px;
    width: auto;
  }
}

@media only screen and (max-width: 990px) {
  .p-top-business-section__img img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 390px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-business-section__img img {
    height: 450px;
  }
}

.p-top-business-section__txt {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 45px 0px;
  text-align: center;
  background: rgba(41, 41, 124, 0.8);
  color: #ffffff;
}
@media only screen and (max-width: 990px) {
  .p-top-business-section__txt {
    padding: 30px 15px;
  }
}

.p-top-business-section__ttl {
  margin-bottom: 15px;
  font-size: 1.875rem;
  font-weight: bold;
}
@media screen and (max-width: 1530px) {
  .p-top-business-section__ttl {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-business-section__ttl {
    margin-bottom: 10px;
    font-size: 1.3125rem;
  }
}

.p-top-business-section__body {
  margin-bottom: 30px;
  font-size: 1rem;
}
@media screen and (max-width: 1530px) {
  .p-top-business-section__body {
    font-size: 1.0666666667vw;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-business-section__body {
    font-size: 0.875rem;
  }
}

.p-top-business__btn {
  margin-top: 60px;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .p-top-business__btn {
    margin-top: 45px;
  }
}

/***** TOP 取扱商品 *****/
.p-top-product {
  margin-bottom: 60px;
  padding: 90px 0;
  background: #e4e4ef;
}
@media only screen and (max-width: 990px) {
  .p-top-product {
    margin-bottom: 60px;
    padding: 60px 0;
  }
}

.p-top-product-list {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 90px -15px 0 -15px;
}
@media only screen and (max-width: 990px) {
  .p-top-product-list {
    width: auto;
    margin: 60px -10px 0 -10px;
  }
}

.p-top-product-list__item {
  margin-bottom: 10px;
  padding: 0 15px;
  width: 50%;
  position: relative;
  /*
  &:nth-child(5) {
  	width: 50%;
  	display: none;
  	flex: 1;
  }
  */
}
.p-top-product-list__item:nth-child(5) {
  width: 50%;
}
@media only screen and (max-width: 990px) {
  .p-top-product-list__item {
    padding: 0 10px;
    width: 50%;
    margin-bottom: 30px;
  }
}

.p-top-product-list__item-inverter {
  width: 50%;
  margin-bottom: 30px;
  padding: 0 15px;
  position: absolute;
  right: 0;
}
.p-top-product-list__item-inverter img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 990px) {
  .p-top-product-list__item-inverter {
    position: relative;
    right: auto;
  }
}

.p-top-product-list__ttl {
  color: #ffffff;
  background: rgba(41, 41, 124, 0.7);
  font-weight: bold;
  line-height: 26px;
  text-align: center;
  position: relative;
  top: -26px;
}
.p-top-product-list__ttl::after {
  content: "";
  width: 3px;
  height: 18px;
  background: #ffffff;
  position: absolute;
  right: 5px;
  top: 4px;
}
@media only screen and (max-width: 990px) {
  .p-top-product-list__ttl {
    font-size: 0.75rem;
    letter-spacing: 0;
  }
}

.p-top-product__btn {
  margin-top: 30px;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .p-top-product__btn {
    margin-top: 15px;
  }
}

/***** TOP 会社概要 *****/
.p-top-company {
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-top-company {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.p-top-company__wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1530px;
}

.p-top-company__img {
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
  width: 870px;
}
@media only screen and (max-width: 990px) {
  .p-top-company__img {
    max-width: 660px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__img {
    position: static;
    max-width: inherit;
  }
}

.p-top-company__txt {
  position: relative;
  z-index: 10;
  padding: 90px;
  margin-left: auto;
  width: 58%;
  min-width: 870px;
  min-height: 670px;
  background: rgba(41, 41, 124, 0.95);
  color: #ffffff;
}
@media only screen and (max-width: 990px) {
  .p-top-company__txt {
    padding: 60px;
    min-width: 660px;
    min-height: inherit;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__txt {
    position: static;
    padding: 60px 20px;
    width: auto;
    min-width: inherit;
  }
}

.p-top-company__body {
  margin-bottom: 60px;
  font-size: 1.125rem;
  line-height: 2;
}
@media only screen and (max-width: 990px) {
  .p-top-company__body {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-company__body {
    margin-bottom: 45px;
  }
}

@media screen and (max-width: 767px) {
  .p-top-company__btn {
    text-align: center;
  }
}

/***** TOP サポート体制 *****/
.p-top-support {
  overflow: hidden;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .p-top-support {
    padding-bottom: 60px;
  }
}

.p-top-support__wrap {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1530px;
}

.p-top-support__img {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 1;
  width: 870px;
}
@media only screen and (max-width: 990px) {
  .p-top-support__img {
    max-width: 660px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-support__img {
    position: static;
    max-width: inherit;
  }
}

.p-top-support__txt {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 10;
  padding: 90px;
  margin-right: auto;
  width: 58%;
  min-width: 870px;
  min-height: 670px;
  background: rgba(228, 228, 239, 0.95);
}
@media only screen and (max-width: 990px) {
  .p-top-support__txt {
    min-width: 660px;
    min-height: inherit;
  }
}
@media screen and (max-width: 767px) {
  .p-top-support__txt {
    display: block;
    padding: 60px 20px;
    width: auto;
    min-width: inherit;
    min-height: inherit;
  }
}

.p-top-support__body {
  margin-bottom: 60px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-top-support__body {
    margin-bottom: 45px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-support__btn {
    text-align: center;
  }
}

/***** TOP 背景画像 *****/
body.is-loaded .p-top-bg {
  background: url(../images/top-bg.jpg) no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
}
@media only screen and (max-width: 990px) {
  body.is-loaded .p-top-bg {
    background-image: url(../images/top-bg-sp.jpg);
    background-attachment: scroll;
  }
}

.p-top-bg {
  margin-top: 60px;
  width: 100%;
  height: 360px;
}
@media only screen and (max-width: 1530px) {
  .p-top-bg {
    height: 300px;
  }
}
@media only screen and (max-width: 990px) {
  .p-top-bg {
    margin-top: 30px;
    height: 240px;
  }
}

/***** TOP NEWS *****/
.p-top-news {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 990px) {
  .p-top-news {
    padding-top: 60px;
    padding-bottom: 90px;
  }
}

.p-top-news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #cccccc;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list__item {
    padding-top: 13px;
    padding-bottom: 13px;
  }
}
.p-top-news-list__item:first-child {
  border-top: 1px dashed #cccccc;
}
.p-top-news-list__item.is-topics {
  margin-right: -500%;
  margin-left: -500%;
  padding-right: 500%;
  padding-left: 500%;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
}
.p-top-news-list__item.is-topics a {
  color: #393939;
}
.p-top-news-list__item.is-topics:nth-child(even) {
  background-color: #ffffff;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list__item.is-topics {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.p-top-news-list-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 45px;
  font-size: 0.875rem;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list-head {
    margin-right: 0;
  }
}

.p-top-news-list__date {
  min-width: 70px;
  margin-right: 30px;
  font-family: "Oswald", sans-serif;
  color: #696969;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list__date {
    margin-right: 15px;
  }
}

.p-top-news-list__category {
  display: inline-block;
  width: 120px;
  font-size: 0.625rem;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list__category {
    min-width: 115px;
    width: auto;
  }
}
.p-top-news-list__category span {
  display: inline-block;
  width: 120px;
  padding: 2px 5px;
  border: 1px solid #a3794b;
  font-size: 0.75rem;
  color: #a3794b;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list__category span {
    padding: 0;
  }
}

.p-top-news-list__ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2px;
  font-weight: 400;
}
@media only screen and (max-width: 990px) {
  .p-top-news-list__ttl {
    -webkit-box-flex: inherit;
        -ms-flex: inherit;
            flex: inherit;
    margin-top: 10px;
    width: 100%;
  }
}
.p-top-news-list__ttl a {
  color: #393939;
}
.p-top-news-list__ttl a:hover { /*マウスをのせたとき*/
  color: #393939;
  text-decoration: underline;
}
.p-top-news-list__ttl a:active { /*マウスを押したとき*/
  color: #393939;
  text-decoration: none;
}

.p-top-news__btn {
  margin-top: 60px;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .p-top-news__btn {
    margin-top: 30px;
  }
}

.sdgs-top-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .sdgs-top-wrap {
    display: block;
    margin-bottom: 10px;
  }
}

.sdgs-top_logo {
  width: 185px;
  margin-right: 45px;
}
@media screen and (max-width: 767px) {
  .sdgs-top_logo {
    margin: 0 auto 30px;
  }
}

.sdgs-top-body_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 204px;
  position: relative;
}
@media only screen and (max-width: 990px) {
  .sdgs-top-body_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.sdgs-top-body_ttl {
  width: 225px;
  height: 100px;
  line-height: 100px;
  color: #ffffff;
  background: #29297c;
  font-size: 26px;
  text-align: center;
  position: relative;
  z-index: 100;
}
@media only screen and (max-width: 990px) {
  .sdgs-top-body_ttl {
    height: 60px;
    line-height: 60px;
  }
}

.sdgs-top-body_txt {
  width: calc(100% - 60px);
  background: #e4e4ef;
  padding: 30px 40px 30px 200px;
  position: absolute;
  right: 0;
  z-index: 90;
}
@media only screen and (max-width: 990px) {
  .sdgs-top-body_txt {
    width: 100%;
    padding: 50px 40px 30px 40px;
    position: relative;
    top: -30px;
  }
}

.sdgs-top-right_txt {
  text-align: right;
}

.p-top-sdgs__btn {
  margin-top: 60px;
  text-align: center;
}
@media only screen and (max-width: 990px) {
  .p-top-sdgs__btn {
    margin-top: 30px;
  }
}