@charset "UTF-8";

/* top.css
************************************************************** */
.m-carousel-hero_slider {
  margin-bottom: 20px;
}
/* .m-carousel-hero .slick-slide {
  border: 1px solid #cccccc;
} */
.m-carousel-hero li picture,
.m-carousel-hero li img,
.m-carousel-hero li a {
  display: block;
  width: 100%;
}
/* .m-carousel-hero li a:focus-visible {
  outline: -webkit-focus-ring-color auto 3px;
} */
.m-carousel-hero_control-wrap {
  padding: 0 15px;
}
/* .m-carousel-hero .slick-slide {
  padding: 3px 0;
} */
.m-carousel-hero_control {
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  justify-content: flex-end;
}
.carousel_indicator {
  position: relative;
  width: 200px;
  margin-left: 15px;
}
.carousel_indicator::before {
  display: block;
  content: "";
  width: 100%;
  height: 0.5px;
  background: #222222;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.carousel_indicator_bar {
  height: 4px;
  background: #ea002a;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.5s;
}
.m-carousel-hero_nav {
  display: flex;
  margin-left: 40px;
}
.carousel_number_current {
  font-size: 2rem;
  margin-right: 5px;
  line-height: 1.1;
}
.carousel_number_max {
  font-size: 1.6rem;
  margin-left: 5px;
  line-height: 1.14;
}
/* 前へ・次へボタン */
.m-carousel-hero_nav .slick-arrow {
  font-size: 1rem;
}
.m-carousel-hero_nav .slick-arrow + .slick-arrow {
  margin-left: 30px;
}
.m-carousel-hero_nav .slick-arrow button {
  font-size: 0;
  border: 0;
  background: transparent;
  display: block;
  width: 28px;
  height: 28px;
}
.m-carousel-hero_nav .slick-arrow .js-carousel_prev,
.m-carousel-hero_nav .slick-arrow .js-carousel_next {
  position: relative;
}
.m-carousel-hero_nav .slick-arrow .js-carousel_prev::before,
.m-carousel-hero_nav .slick-arrow .js-carousel_next::after {
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.m-carousel-hero_nav .slick-arrow .js-carousel_prev::before {
  left: 12px;
  transform: translateY(-50%) rotate(135deg);
  border-bottom: 2px solid #525b5c;
  border-left-width: 0;
  border-right: 2px solid #525b5c;
  border-top-width: 0;
}
.m-carousel-hero_nav .slick-arrow .js-carousel_next::after {
  right: 12px;
  transform: translateY(-50%) rotate(-45deg);
  border-bottom: 2px solid #525b5c;
  border-left-width: 0;
  border-right: 2px solid #525b5c;
  border-top-width: 0;
}
/* 再生・停止ボタン */
.m-carousel-hero_button {
  margin-left: 40px;
}
.m-carousel-hero_button button {
  display: block;
  font-size: 0;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border: 1px solid #babdbe;
  border-radius: 2px;
  position: relative;
}
.m-carousel-hero_button button:not(.is-active) {
  display: none;
}
.m-carousel-hero_button .js-carousel_pause::before,
.m-carousel-hero_button .js-carousel_pause::after {
  display: block;
  content: "";
  width: 2px;
  height: 12px;
  background: #222222;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.m-carousel-hero_button .js-carousel_pause::before {
  left: 8px;
}
.m-carousel-hero_button .js-carousel_pause::after {
  right: 8px;
}
.m-carousel-hero_button .js-carousel_play::before {
  display: block;
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: 6px solid transparent;
  border-left: 6px solid #222222;
  border-top: 6px solid transparent;
}
@media print, screen and (max-width: 1046px) {
  .m-carousel-hero .slick-slide {
    max-width: 1046px;
  }
}
@media print, screen and (max-width: 767px) {
  .m-carousel-hero_control {
    justify-content: center;
  }
  .carousel_indicator {
    width: 100px;
  }
  .m-carousel-hero_nav {
    margin-left: 15px;
  }
  .m-carousel-hero_nav .slick-arrow + .slick-arrow {
    margin-left: 5px;
  }
  .m-carousel-hero_button {
    margin-left: 15px;
  }
}

.column {
  margin-bottom: 120px;
}
.fl-column {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.fl-column .fl-img {
  max-width: 450px;
}
.fl-column > div {
  flex-basis: 50%;
}
.item-column {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}
.item-column > li {
  width: calc(100% / 3 - 30px);
}
.item-column > li * {
  color: #525b5c;
}
.item-column > li a {
  display: block;
  height: 100%;
  background: #ffffff;
  padding-bottom: 15px;
  transition: 0.3s ease-in-out;
}
.item-column > li a:hover {
  text-decoration: none;
  background: #ea002a;
}
.item-column > li a:hover * {
  color: #ffffff;
}
.item-column > li .item-thumb {
  width: 100%;
}
.item-column > li .item-txt-box {
  padding: 20px 15px 0 15px;
}
.item-column > li .item-txt-box .item-ttl {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 16px;
}
.item-column > li .item-txt-box .txt-box {
  margin-bottom: 0;
}
.item-column > li .item-tag {
  display: flex;
  gap: 5px;
  margin: 24px auto;
}
.item-column > li .item-tag .tag {
  font-size: 1.3rem;
  padding: 5px 10px;
  color: #ea002a;
  border: 1px solid #ea002a;
}
.item-column > li a:hover .item-tag .tag {
  color: #ffffff;
  border: 1px solid #ffffff;
}
.item-column > li .item-more {
  text-align: right;
  padding: 0px 45px 0 15px;
  font-size: 1.4rem;
  position: relative;
}
.item-column > li .item-more::before,
.item-column > li .item-more::after {
  display: block;
  content: "";
  position: absolute;
}
.item-column > li .item-more::before {
  width: 15px;
  height: 2px;
  background: #ea002a;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.item-column > li .item-more::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #ea002a;
  border-right: 2px solid #ea002a;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  right: 20px;
}
.item-column > li a:hover .item-more::before {
  background: #ffffff;
}
.item-column > li a:hover .item-more::after {
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}
.item-card {
  display: flex;
  gap: 30px;
}
.item-card li {
  width: 50%;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e2e2e2;
}
.item-card li a {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding: 20px;
}
.item-card li a * {
  color: #525b5c;
}
.item-card li a:hover {
  box-shadow:
    0px 4px 4px 0px rgb(0 0 0 / 20%),
    0px 0px 3px 0px rgb(0 0 0 / 20%);
}
.item-card li a .img-thumb {
  flex-shrink: 0;
  width: 150px;
}
.item-card li a .card-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.item-card li .txt-box {
  margin-bottom: 0;
}
.item-card li .txt-box .txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 900px) {
  .fl-column {
    flex-direction: column;
    gap: 0;
  }
  .fl-column.reverse {
    flex-direction: column-reverse;
    gap: 0;
  }
  .fl-column .fl-img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768.9px) {
  .column {
    margin-bottom: 64px;
  }
  .fl-column {
    display: block;
    margin-bottom: 32px;
  }
  .fl-column.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .fl-column .fl-img {
    width: 100%;
  }
  .fl-column > div {
    flex-basis: 100%;
  }

  .item-column {
    display: block;
    margin-bottom: 32px;
  }
  .item-column > li {
    width: 100%;
  }
  .item-column > li:not(:last-of-type) {
    margin-bottom: 32px;
  }
  .item-column > li .item-txt-box .item-ttl {
    font-size: 1.6rem;
  }
  .item-column > li .item-tag {
    margin: 16px auto;
  }

  .item-card.col-01 li {
    width: calc(50% - 15px);
  }

  .item-card li {
    width: 100%;
  }
  .item-card li a {
    display: block;
  }
  .item-card li a .img-thumb {
    width: 50%;
    display: block;
    margin: 0 auto 16px;
  }
  .item-card li a .card-ttl {
    font-size: 1.5rem;
  }
}

/* **************************************************************

active-slider

************************************************************** */
.slider-box {
  margin-bottom: 56px;
}
.active-slider .slick-track {
  display: flex;
}
.active-slider .slick-slide {
  height: auto !important;
}
.active-slider .slider-item {
  background: #ffffff;
}
.active-slider .item-inner {
  padding: 30px;
}
.active-slider .slider-item {
  border: 1px solid #e2e2e2;
  margin: 0 20px;
  line-height: 1.8;
}
.active-slider .slider-item.icon-new {
  position: relative;
}
.active-slider .slider-item.icon-new .new {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
}
.active-slider .slider-item > a {
  transition: 0.4s ease;
}
.active-slider .slider-item > a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.active-slider .slider-item > a .item-thum img {
  width: 100%;
}
.active-slider .item-tag-list {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}
.active-slider .item-tag-list li {
  border: 1px solid #f5002f;
  color: #f5002f;
  font-size: 1.4rem;
  padding: 0 10px;
}
.active-slider .date {
  font-weight: bold;
  color: #9f9f9f;
  font-size: 1.4rem;
}
.active-slider .item-ttl {
  color: #525b5c;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 15px;
  display: block;
}
.active-slider .item-ttl.tab-link::after {
  display: inline-block;
  content: "";
  width: 0.9em;
  height: 0.9em;
  background: url(/cmn/img/icon_window_r.gif) center center / contain
    no-repeat;
  margin-left: 10px;
}
.active-slider .item-txt {
  color: #525b5c;
  font-size: 1.4rem;
}
/* ドットカスタマイズ */
.active-slider .bar-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 40px auto 0;
  max-width: 100%;
}
.active-slider .bar-dots li {
  width: 15px;
  height: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  background: #cfcfcf;
}
.active-slider .bar-dots li:hover {
  background-color: #f5022f;
}
.active-slider .bar-dots li.slick-active {
  background: #f5022f;
}
.active-slider .bar-dots li:nth-of-type(n + 2) {
  margin-left: 20px;
}
.active-slider .bar-dots li button {
  border: none;
  visibility: hidden;
}
/* アローカスタマイズ */
.active-slider .slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  width: 45px;
  height: 55px;
  background-color: #f5022f;
}
.active-slider .slide-arrow.slick-disabled {
  display: none !important;
}
.active-slider .slide-arrow.prev-arrow {
  left: 0;
}
.active-slider .slide-arrow.next-arrow {
  right: 0;
}
.active-slider .slide-arrow.prev-arrow {
  background-image: url(/cmn/img/icon_arrow_white_left.svg);
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: 50%;
}
.active-slider .slide-arrow.next-arrow {
  background-image: url(/cmn/img/icon_arrow_white_right.svg);
  background-repeat: no-repeat;
  background-size: 30%;
  background-position: 50%;
}
@media screen and (min-width: 769px) {
  .active-slider .bar-dots {
    width: auto;
  }
}
@media screen and (max-width: 768.9px) {
  .active-slider {
    margin-bottom: 30px;
  }
  .active-slider .item-inner {
    padding: 20px 25px;
  }
  .active-slider .item-tag-list li {
    font-size: 1.3rem;
  }
  .active-slider .item-ttl {
    margin: 10px 0 10px;
  }
  /* ドットカスタマイズ */
  .active-slider .bar-dots {
    margin: 30px auto 0;
    padding: 0;
  }
  .active-slider .bar-dots li {
    width: 12px;
    height: 12px;
    margin-bottom: 20px;
  }
  .active-slider .bar-dots li:nth-of-type(n + 2) {
    margin-left: 10px;
  }
  /* アローカスタマイズ  */
  .active-slider .slick-arrow {
    width: 40px;
    height: 50px;
  }
}
/* **************************************************************

news

************************************************************** */
.news-list {
  margin-bottom: 40px;
}
.news-list > li:first-of-type {
  padding: 0 0 16px;
}
.news-list > li {
  border-bottom: 1px solid #ccc;
  padding: 16px 0;
}
.news-list > li .news-txt a {
  font-size: 1.6rem;
}
.news-list > li .news-txt a:hover {
  text-decoration: underline;
}
.news-txt-area {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
.news-txt-area .news-date {
  color: #9b9b9b;
  font-weight: bold;
  font-size: 1.4rem;
}
.news-txt-area .tag-list {
  display: flex;
  gap: 10px;
}
.news-txt-area .tag {
  display: inline-block;
  border: 1px solid #f5002f;
  color: #f5002f;
  padding: 2px 10px;
  margin-bottom: 5px;
  font-size: 1.3rem;
}
.news-txt a {
  color: #525b5c;
}
@media screen and (max-width: 768.9px) {
  .news-list > li {
    padding: 16px 0;
  }
  .news-txt-area {
    gap: 15px;
  }
  .news-list > li .news-txt a {
    font-size: 1.4rem;
  }
  .news-txt-area .tag-list {
    gap: 5px;
  }
  .news-txt-area .tag {
    font-size: 1.15rem;
    word-break: break-all;
  }
}

/* **************************************************************

about

************************************************************** */
#about {
  background: url(/asset/img/home/bg_earth.png) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
#about::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  top: 0;
  left: 0;
}
#about .inner {
  position: relative;
  z-index: 1;
}
#about .inner .txt-box {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768.9px) {
  #about .inner .txt-box {
    text-align: left;
    margin-bottom: 30px;
  }
}
