@charset "UTF-8";

/* =========================================================
  top
========================================================= */

/* site layout
----------------------------------------------- */
#main {
  padding-bottom: 0;
}

/* slick
----------------------------------------------- */
.slick-slider {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.slick-slider .banner {
  vertical-align: bottom;
}

.slick-slide a {
  display: block;
  outline-offset: -4px;
}

.slick-slide a:not([href="#"]):hover {
  /*
  opacity: 0.8;
  */
}

.slick-slide a[href="#"] {
  pointer-events: none;
  cursor: default;
}

.slick-slide img {
  height: auto;
}

/* dot-class */
.dot-class {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 0;
}

.dot-class li button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--mono-color-2);
  border-radius: 50%;
  background: var(--mono-color-2);
  font-size: 0;
  white-space: nowrap;
  cursor: pointer;
}

.dot-class li.slick-active button {
  background: #000;
}

/* slide-controll */
.slide-controll {
  position: relative;
}

.slide-controll button {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 2px 10px 2px 30px;
  border: 1px solid var(--mono-color-2);
  border-radius: 5px;
  background-position-y: center;
  background-repeat: no-repeat;
  background-color: var(--mono-color-9);
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
}

.slide-controll button:hover {
  /*
  opacity: 0.6;
  */
}

.slide-controll button.current {
  display: none;
}

.slide-controll button.startBtn {
  background-position-x: 12px;
  background-image: url(/_themes/site/images/ic-slider_play.svg);
}

.slide-controll button.stopBtn {
  background-position-x: 9px;
  background-image: url(/_themes/site/images/ic-slider_stop.svg);
}

@media only screen and (max-width: 959px) {
  .slide-controll button {
    font-size: 0.8125rem;
  }
}

/* column-block
----------------------------------------------- */
.column-block {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.column-block-item {
  min-width: 0;
}

@media only screen and (max-width: 959px) {
  .column-block {
    flex-direction: column;
  }

  .column-block-item {
    width: 100%;
  }
}

/* column-block slider
----------------------------------------------- */
.column-block.slider {
  gap: 0 45px;
  position: relative;
  max-width: 1130px;
  margin: 0 auto 48px;
  padding: 20px 15px;
}

.column-block.slider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  background: linear-gradient(135deg, #ff6700 0%,#ffc760 100%);
}

.column-block.slider .column-block-item:first-child {
  flex-basis: calc(100% - 350px);
}

.column-block.slider .column-block-item:last-child {
  flex-basis: 305px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

@media only screen and (max-width: 959px) {
  .column-block.slider {
    gap: 15px;
    margin-bottom: 35px;
    padding: 25px 15px 20px;
  }

  .column-block.slider .column-block-item:first-child {
    flex-basis: 100%;
  }

  .column-block.slider .column-block-item:last-child {
    flex-basis: 100%;
    display: block;
  }

  .column-block.slider .column-block-item .siteSearch {
    display: none;
  }
}

/* slider
----------------------------------------------- */
#slider .slick-slider {
  gap: 18px 0;
}

#slider .slick-list {
  flex-basis: 100%;
}

#slider .banner .caption {
  position: absolute;
  right: 0;
  bottom: 23px;
  padding: 2px 5px 5px 7px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.75rem;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

@media only screen and (max-width: 959px) {
  #slider .banner .caption {
    bottom: 0;
  }

  #slider .dot-class,
  #slider .slide-controll {
    display: none !important;
  }
}

/* column-block news
----------------------------------------------- */
.column-block.news {
  gap: 54px 30px;
  margin-bottom: 50px;
}
.column-block.news .column-block-item:first-child {
  flex-basis: calc(100% - 275px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.column-block.news .column-block-item:last-child {
  flex-basis: 265px;
}

.column-block.news .column-block-item:last-child .koho-wrapper {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 30px 32px 50px;
  border: 1px solid #EBEBEB;
  background: #EBEBEB;
}

@media only screen and (max-width: 959px) {
  .column-block.news {
    margin-bottom: 15px;
  }

  .column-block.news .column-block-item:first-child {
    flex-basis: 100%;
  }

  .column-block.news .column-block-item:last-child .koho-wrapper {
    width: calc(100% + 30px);
    margin: 0 -15px;
  }
}

/* recentDocsTab
----------------------------------------------- */
#recentDocsTab .pieceHeader {
  position: relative;
}

#recentDocsTab .pieceHeader h2 {
  position: absolute;
  top: 6px;
  max-width: 45%;
  font-weight: 400;
  font-size: 1.5rem;
}

#recentDocsTab .pieceBody .tabs {
  display: flex;
  justify-content: flex-end;
}

#recentDocsTab .pieceBody .tabs ul {
  display: flex;
  justify-content: flex-end;
  max-width: 55%;
  border: 1px solid var(--mono-color-5);
  border-bottom: none;
}

#recentDocsTab .pieceBody .tabs li:not(:last-child) {
  border-right: 1px solid var(--mono-color-5);
}

#recentDocsTab .pieceBody .tabs li {
  overflow: hidden;
}

#recentDocsTab .pieceBody .tabs li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-width: min(138px,8vw);
  padding: 10px;
  text-align: center;
  outline-offset: -4px;
}

#recentDocsTab .pieceBody .tabs li.current a {
  background: var(--ac-color-orange-1);
  color: var(--mono-color-9);
  text-decoration: none;
}

#recentDocsTab .pieceBody .wrapper {
  padding: 20px 34px 35px;
  border: 1px solid var(--mono-color-5);
}

#recentDocsTab .pieceBody .wrapper .feed {
  display: none;
}

#recentDocsTab .pieceBody .wrapper .more {
  justify-content: center;
  margin-top: 12px;
}

@media only screen and (max-width: 959px) {
  #recentDocsTab .pieceHeader h2 {
    position: static;
    max-width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  #recentDocsTab .pieceBody .tabs ul {
    width: 100%;
    max-width: 100%;
  }

  #recentDocsTab .pieceBody .tabs li {
    flex: 1 1 0;
  }

  #recentDocsTab .pieceBody .tabs li a {
    min-width: 0;
    min-height: 60px;
    padding: 5px;
    font-size: 1rem;
  }

  #recentDocsTab .pieceBody .wrapper {
    padding: 5px 15px 40px;
  }
}

/* eventList
----------------------------------------------- */
#eventList .pieceHeader h2 {
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 1.5rem;
}

#eventList .pieceBody ul {
  display: flex;
  gap: 28px;
}

#eventList .pieceBody li {
  flex: 1 1 0;
}

#eventList .pieceBody li a {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  padding-top: calc(74.8% + 5px);
  text-decoration: none;
}

#eventList .pieceBody li a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  aspect-ratio: 250/188;
  background: url(/_themes/site/images/no-image.png) center center / cover no-repeat;
}

#eventList .pieceBody li a span.image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  aspect-ratio: 250/187;
  overflow: hidden;
}

#eventList .pieceBody li a img {
  opacity: 1;
}

#eventList .pieceBody li a:hover .title {
  text-decoration: underline;
}

#eventList .pieceBody .more {
  justify-content: center;
  margin-top: 40px;
}

@media only screen and (max-width: 959px) {
  #eventList .pieceHeader h2 {
    margin-bottom: 20px;
    text-align: center;
  }

  #eventList .pieceBody ul {
    flex-direction: column;
  }
}

/* noticeBanner
----------------------------------------------- */
#noticeBanner .banner {
  margin-bottom: 20px;
  text-align: center;
}

#noticeBanner .banner a[href="#"] {
  pointer-events: none;
  cursor: default;
}

/* column-block-item koho
----------------------------------------------- */
.column-block-item.koho .pieceHeader h2 {
  margin-bottom: 15px;
  padding: 0 5px;
  font-weight: 400;
  font-size: 1.6875rem;
  line-height: 1.2;
  text-align: center;
}

.column-block-item.koho .docs {
  margin-bottom: 30px;
  text-align: center;
}

.column-block-item.koho .image img {
  width: 100%;
  max-width: 245px;
}

.column-block-item.koho .more {
  justify-content: center;
}

.column-block-item.koho .more a {
  width: 100%;
  max-width: 245px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--mono-color-5);
  background: var(--mono-color-9);
  font-size: 1rem;
  text-align: center;
}

.column-block-item.koho .more a:hover {
  background: var(--ac-color-orange-1);
}

@media only screen and (max-width: 959px) {
  .column-block-item.koho .pieceHeader h2 {
    padding: 0 18vw;
  }
}

/* content
----------------------------------------------- */
#guide h2,
#featuredContent h2,
#relationBanner h2,
#otherBanner h2 {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 1.6875rem;
  line-height: 1.1;
  text-align: center;
}

/* featuredBanner
----------------------------------------------- */
#featuredBanner {
  margin-bottom: 67px;
  text-align: center;
}

@media only screen and (max-width: 959px) {
  #featuredBanner {
    margin-bottom: 25px;
  }
}

/* guide
----------------------------------------------- */
#guide {
  position: relative;
  padding: 48px 0;
}

#guide::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  background: linear-gradient(135deg, #aae6ff 0%, #ffffa4 100%);
}

#guide .pieceHeader h2 {
  margin-bottom: 28px;
}

#guide ul {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 1.875%;
}

#guide li {
  width: 18.5%;
}

#guide li a {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 185px;
  padding: 12px 5px;
  /*
  border: 1px solid var(--mono-color-5);
  border-radius: 10px;
  background: var(--mono-color-9);
  font-size: min(1.1875rem, 2vw);
  */
  font-size: min(1.375rem, 2vw);
  text-decoration: none;
}

#guide li a:hover {
  /*
  opacity: 0.6;
  */
}

#guide li img {
  transform: translateY(10px);
  margin: auto;
}

#guide li span {
  position: relative;
  font-weight: 500;
  text-shadow:
    /* 白いフチ */
    1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff, /* 上下左右 */
    2px 0 0 #fff, 0 2px 0 #fff, -2px 0 0 #fff, 0 -2px 0 #fff, /* 十字方向を拡張 */
    /* 黒い影 */
    3px 3px 5px #000;
}

#guide li a:hover span {
  color: var(--mono-color-9);
  font-weight: 300;
  text-shadow:
    /* オレンジフチ */
    /* 1px オフセット（基本） */
    1px 1px 1px var(--ac-color-orange-1),
    -1px 1px 1px var(--ac-color-orange-1),
    1px -1px 1px var(--ac-color-orange-1),
    -1px -1px 1px var(--ac-color-orange-1),
    /* 2px オフセット（太くする） */
    2px 2px 1px var(--ac-color-orange-1),
    -2px 2px 1px var(--ac-color-orange-1),
    2px -2px 1px var(--ac-color-orange-1),
    -2px -2px 1px var(--ac-color-orange-1),
    /* 3px オフセット（さらに太くする） */
    3px 0 1px var(--ac-color-orange-1),
    0 3px 1px var(--ac-color-orange-1),
    -3px 0 1px var(--ac-color-orange-1),
    0 -3px 1px var(--ac-color-orange-1),
    /* 黒い影 */
    4px 4px 6px #000;
}

@media only screen and (max-width: 959px) {
  #guide {
    padding: 38px 0;
  }

  #guide ul {
    gap: 20px 11px;
  }

  #guide li {
    width: calc((100% - 11px) / 2);
  }

  #guide li a {
    min-height: 167px;
    font-size: 1.125rem;
  }

  #guide li img {
    transform: scale(0.9);
  }
}

/* featuredContent
----------------------------------------------- */
#featuredContent {
  padding: 64px 0 54px;
}

#featuredContent .pieceHeader h2 {
  margin-bottom: 36px;
}

#featuredContent ul {
  display: flex;
  justify-content: space-between;
}

#featuredContent li {
  flex-basis: 15.28%;
}

#featuredContent li a {
  display: block;
  position: relative;
}

#featuredContent li a:hover {
  /*
  opacity: 0.6;
  */
}

#featuredContent li img {
  opacity: 1 !important;
}

#featuredContent li span {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: absolute;
  inset: 0;
  padding-bottom: 5.5%;
  border: 2px solid var(--ac-color-orange-1);
  background: url(/_themes/site/images/contents.svg) left 0 bottom -1px / 100% auto no-repeat;
  color: var(--mono-color-9);
  font-size: min(1.125rem, 1.5vw);
}

#featuredContent li a:hover span {
  background: url(/_themes/site/images/contents-hover.svg) left 0 bottom -1px / 100% auto no-repeat;
}

@media only screen and (max-width: 959px) {
  #featuredContent {
    padding: 36px 0 54px;
  }

  #featuredContent .pieceHeader h2 {
    margin-bottom: 26px;
  }

  #featuredContent ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 11px;
  }

  #featuredContent li {
    flex-basis: 167px;
  }

  #featuredContent li span {
    font-size: 1.125rem;
  }
}

/* relationBanner
----------------------------------------------- */
#relationBanner {
  transform: translateX(-50%);
  width: 100vw;
  margin-left: 50%;
  padding: 37px 0 28px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #eee;
}

#relationBanner .slick-slider {
  gap: 30px 0;
}

#relationBanner .slick-list {
  flex-basis: calc(100% + 20px);
  margin: 0 -10px;
}

#relationBanner .slick-slide {
  margin: 0 10px;
}

@media only screen and (max-width: 428px) {
  #relationBanner {
    padding-bottom: 10px;
  }

  #relationBanner .dot-class {
    flex-basis: 100%;
  }

  #relationBanner .slide-controll button {
    position: static;
  }
}

/* advertisement
----------------------------------------------- */
.other-wrapper {
  position: relative;
  padding: 30px 0 22px;
}

.other-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%);
  width: 100vw;
  background: #f2f8fb;
}

#otherBanner .bannerImages {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
}

#otherBannerLower {
  padding-top: 16px;
  text-align: center;
}

@media only screen and (max-width: 959px) {
  .other-wrapper {
    padding: 35px 0 70px;
  }

  #otherBanner .bannerImages {
    gap: 15px;
  }

  #otherBanner .banner {
    max-width: 165px;
  }
}