@charset "UTF-8";

/* scroll-top */
.scroll-top {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  display: inline-block;
  padding: .5rem 1rem;
}
.scroll-top i {
  display: inline-block;
  margin-left: .5rem;
}


/* スクルール連動アニメーション */
.js-scroll-item {
  overflow: hidden;
}
.js-scroll-item.animated .js-scroll-item-in {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);

}
.js-scroll-item .js-scroll-item-in {
  position: relative;
  overflow: hidden;
  -webkit-transition-delay: .1s;
  -o-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transform: translate3d(-10.5%, 0, 0);
  transform: translate3d(-10.5%, 0, 0);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition-duration: 1.5s;
  -o-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  -o-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.js-scroll-item.animated .js-scroll-item-in::before {
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
}
.js-scroll-item .js-scroll-item-in::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  background: #2243a6;
  -webkit-transition-delay: .5s;
  -o-transition-delay: .5s;
  transition-delay: .5s;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition-duration: 1.5s;
  -o-transition-duration: 1.5s;
  transition-duration: 1.5s;
  -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  -o-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-property: transform, -webkit-transform;
  -webkit-transition-delay: .4s;
  -o-transition-delay: .4s;
  transition-delay: .4s;
}
.js-scroll-item .js-scroll-item-in img {
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition-duration: 4s;
  -o-transition-duration: 4s;
  transition-duration: 4s;
  -webkit-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  -o-transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-timing-function: cubic-bezier(.075, .82, .165, 1);
  transition-property: transform, -webkit-transform;
}


/* タブ切り替え（お知らせ） */
.news-tab-change-wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.news-tab-change-wrap .tab-wrap {
  width: 25%;
}
.news-tab-change-wrap .panel-wrap {
  width: 75%;
}
.news-tab-change-wrap .tab-wrap .txt1 {
  font-size: 2rem;
  position: relative;
  padding-bottom: .5rem;
  margin-bottom: 3rem;
}
.news-tab-change-wrap .tab-wrap .txt1::before {
  position: absolute;
  content: "";
  background: #ccc;
  width: 30;
  height: 1px;
  bottom: 0;
  left: 0;
}
.news-tab-change-wrap .ul-tab {
  margin-bottom: 2rem;
}
.news-tab-change-wrap .ul-tab input {
  display: none;
}
.news-tab-change-wrap .ul-tab label {
  cursor: pointer;
  position: relative;
  padding-left: 1.5rem;
  display: block;
}
.news-tab-change-wrap .ul-tab label::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.5px;
  height: 2.5px;
  background: #181818;
  border-radius: 50%;
}
.news-tab-change-wrap .ul-tab label:has(input:checked) {
  font-weight: 600;
  color: #2734AC;
}
.news-tab-change-wrap .ul-panel > li {
  display: none;
}
.news-tab-change-wrap:has(.ul-tab li:nth-of-type(1) input:checked) .ul-panel > li:nth-of-type(1),
.news-tab-change-wrap:has(.ul-tab li:nth-of-type(2) input:checked) .ul-panel > li:nth-of-type(2),
.news-tab-change-wrap:has(.ul-tab li:nth-of-type(3) input:checked) .ul-panel > li:nth-of-type(3),
.news-tab-change-wrap:has(.ul-tab li:nth-of-type(4) input:checked) .ul-panel > li:nth-of-type(4) {
  display: block;
}

/* タブ切り替え下層対応 */
.news-archive-eles .ul-panel > li {
  display: block;
}
.news-archive-eles .news-tab-change-wrap {
  align-items: flex-start;
}
.news-archive-eles .ul-tab li {
  cursor: pointer;
  position: relative;
  padding-left: 1.5rem;
  display: block;
}
.news-archive-eles .ul-tab li::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2.5px;
  height: 2.5px;
  background: #181818;
  border-radius: 50%;
}
.news-archive-eles .ul-tab li.current a {
  font-weight: 600;
  color: #2734AC;
}
@media screen and (max-width: 767px) {
  .news-tab-change-wrap {
    flex-wrap: wrap;
  }
  .news-tab-change-wrap .tab-wrap {
    width: 100%;
  }
  .news-tab-change-wrap .panel-wrap {
    width: 100%;
  }
  .news-tab-change-wrap .tab-wrap .txt1 {
    margin-bottom: 0;
  }
}


/* ----------------------------------------
H&Gレイアウト
------------------------------------------*/
.ul-hg {
  display: flex;
  flex-wrap: wrap;
}
.ul-hg > li {
  padding: 1rem;
  position: relative;
  width: calc(100% / 3);
  height: 250px;
}
.top-philosophy-eles .ul-hg > li:nth-child(1) {
  background: url(../images/top/top-philosophy1.webp) no-repeat center / cover;
}
.top-philosophy-eles .ul-hg > li:nth-child(2) {
  background: url(../images/top/top-philosophy2.webp) no-repeat center / cover;
}
.top-philosophy-eles .ul-hg > li:nth-child(3) {
  background: url(../images/top/top-philosophy3.webp) no-repeat center / cover;
}
.top-philosophy-eles .ul-hg > li:nth-child(4) {
  background: url(../images/top/top-philosophy4.webp) no-repeat center / cover;
}
.top-philosophy-eles .ul-hg > li:nth-child(5) {
  background: url(../images/top/top-philosophy5.webp) no-repeat center / cover;
}
.top-philosophy-eles .ul-hg > li:nth-child(6) {
  background: url(../images/top/top-philosophy6.webp) no-repeat center / cover;
}

.top-initiative-eles .ul-hg > li:nth-child(1) {
  background: url(../images/top/top-initiative1.webp) no-repeat center / cover;
}
.top-initiative-eles .ul-hg > li:nth-child(2) {
  background: url(../images/top/top-initiative2.webp) no-repeat center / cover;
}
.top-initiative-eles .ul-hg > li:nth-child(3) {
  background: url(../images/top/top-initiative3.webp) no-repeat center / cover;
}
.top-initiative-eles .ul-hg > li:nth-child(4) {
  background: url(../images/top/top-initiative4.webp) no-repeat center / cover;
}
.top-initiative-eles .ul-hg > li:nth-child(5) {
  background: url(../images/top/top-initiative5.webp) no-repeat center / cover;
}
.top-initiative-eles .ul-hg > li:nth-child(6) {
  background: url(../images/top/top-initiative6.webp) no-repeat center / cover;
}
.ul-hg > li:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 1;
  transition: .5s;
}
.ul-hg > li:hover:before {
  opacity: 0;
}
.ul-hg > li:hover a:before,
.ul-hg > li:hover .item-inner:before {
  width: 100%;
}
.ul-hg > li:hover a:after,
.ul-hg > li:hover .item-inner:after {
  height: 100%;
}
.ul-hg a, .ul-hg .item-inner {
  height: 100%;
  position: relative;
}
.ul-hg a:before,
.ul-hg a:after,
.ul-hg .item-inner:before,
.ul-hg .item-inner:after {
  content: "";
  background: #fff;
  position: absolute;
  transition: .5s;
}
.ul-hg a:before,
.ul-hg .item-inner:before {
  width: 0;
  height: 2px;
}
.ul-hg a:after,
.ul-hg .item-inner:after {
  width: 2px;
  height: 0;
}
.ul-hg a {
  display: block;
}
.ul-hg a:hover {
  opacity: 1;
}
.ul-hg a:before,
.ul-hg a:after {
  top: 0;
}
.ul-hg a:before {
  left: 0;
}
.ul-hg a:after {
  right: 0;
}
.ul-hg .item-inner:before,
.ul-hg .item-inner:after {
  bottom: 0;
}
.ul-hg .item-inner:before {
  right: 0;
}
.ul-hg .item-inner:after {
  left: 0;
}
.ul-hg .item-text {
  position: absolute;
  color: #fff;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.ul-hg .txt1 {
  display: inline-block;
  font-size: 2rem;
  position: relative;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, .9);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .ul-hg {
    gap: .5rem;
  }
  .ul-hg > li {
    width: calc(100% / 2 - .3rem);
    height: 200px;
  }
  .ul-hg .txt1 {
    font-size: 1.6rem;
  }
}

/* よくあるご質問 */
.ul-faq li:not(:last-child) {
  margin-bottom: 1rem;
}
.dl-faq dt,
.dl-faq dd {
  padding: 2rem;
}
.dl-faq dt {
  cursor: pointer;
  position: relative;
  background: #e8f9ff;
}
.dl-faq dt::before,
.dl-faq dt::after {
  position: absolute;
  content: '';
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 12px;
  height: 2px;
  margin: auto;
  background: #181818;
}
.dl-faq dt::after {
  transform: rotate(-90deg);
  transition: transform .5s;
}
.dl-faq dt.active::after {
  transform: rotate(0deg);
}
.dl-faq dt span {
  color: #0d2270;
  font-weight: 600;
  display: inline-block;
  margin-right: .5rem;
}
.dl-faq dd {
  display: none;
  border-right: 1px solid #181818;
  border-bottom: 1px solid #181818;
  border-left: 1px solid #181818;
}
@media screen and (max-width: 1024px) {
  .dl-faq dt {
    padding: 2rem 4rem 2rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .dl-faq dt {
    padding: 1rem 4rem 1rem 1rem;
  }
  .dl-faq dd {
    padding: 1rem;
  }
}
