@charset "UTF-8";
/*-------------------------------------------------
	idx Layout
---------------------------------------------------*/
.mainVisual {
  background: url(../../images/idx/mv.jpg) no-repeat 50% 50%;
  background-size: cover;
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  line-height: 1;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 80px;
}
.mainVisual .catch--copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 7.5%;
  z-index: 2;
}
.mainVisual .scrolldown {
  width: 64px;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.mainVisual .scrolldown__inner {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.mainVisual .scrolldown__inner p {
  color: #222;
  font-weight: bold;
  font-size: 0.75em;
  letter-spacing: 4px;
  text-align: start;
  transform: rotate(90deg);
  white-space: nowrap;
}
.mainVisual .scrolldown__inner .arrow {
  width: 1px;
  height: 80px;
  margin: 48px auto 0;
  position: relative;
  overflow: hidden;
  display: block;
}
.mainVisual .scrolldown__inner .arrow::before {
  content: "";
  width: 100%;
  height: 0;
  background: #222;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
          animation: arrow 2.5s ease 0s infinite normal;
}
@-webkit-keyframes arrow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
@keyframes arrow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
.mainVisual .cv {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  width: 144px;
  opacity: 0;
}
.mainVisual .cv.active {
  -webkit-animation-name: idxFilterBlue;
          animation-name: idxFilterBlue;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
}
.mainVisual .loader__wrap {
  position: absolute;
  top: calc(50% - 32px);
  left: calc(50% - 32px);
  width: 64px;
  height: 64px;
}
.mainVisual .loader__wrap .loader {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: solid 4px;
  border-color: #000000 rgba(0, 0, 0, 0.062745098) rgba(0, 0, 0, 0.062745098);
  position: relative;
  -webkit-animation-name: spin;
          animation-name: spin;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
}

@-webkit-keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes idxRightSlide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes idxRightSlide {
  0% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@-webkit-keyframes idxFilterBlue {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
@keyframes idxFilterBlue {
  0% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}
.idx__message {
  background: url(../../images/idx/bg_message_pc.jpg) no-repeat 50% 50%;
  background-size: cover;
  padding: 120px 0 240px;
}
.idx__message__body {
  width: calc(50% - 144px);
  margin-left: auto;
  padding: 80px 0 0;
}
.idx__message--copy {
  font-size: 2em;
  margin: 0 0 24px;
}
.idx__message--txt {
  font-size: 0.875em;
  margin: 0 0 24px;
}
.idx__message .name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-weight: normal;
  font-size: 1.25em;
}
.idx__message .name span {
  margin-right: 24px;
  font-size: 0.75em;
}

.sns {
  margin: 120px 0 0;
  max-width: 1200px;
  background: url(../../images/idx/bg_sns.jpg) no-repeat 50% 50%;
  padding: 80px 0;
}
.sns--lst {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px 0 0;
}
.sns--lst li {
  margin: 0 16px;
}
.sns--lst li:nth-of-type(1) {
  width: 40px;
}
.sns--lst li:nth-of-type(2) {
  width: 40px;
}
.sns--lst li:nth-of-type(3) {
  width: 120px;
}

.idx__news {
  background: #E2A956;
}
.idx__news__body {
  background: #fff;
  padding: 40px 64px;
}
.idx__news .topics__link {
  margin: 24px 0 0;
  text-align: right;
  font-size: 0.875em;
}
.idx__news .topics__link a {
  color: #fff;
}
.idx__news .topics__link a::after {
  content: "→";
  padding: 0 0 0 8px;
}

.topics__dl {
  display: flex;
  border-top: 1px dotted #ccc;
  padding: 16px 0;
}
.topics__dl:first-child {
  border-top: none;
}
.topics__dl .date {
  color: #666;
  margin: 0 40px 0 0;
}
.topics__txt {
  font-size: 1em;
}
.topics__txt a {
  text-decoration: underline;
  transition: all 0.4s;
  display: block;
  color: #222;
}
.topics__txt a:hover {
  opacity: 0.4;
}
.topics::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 60%;
  height: 100%;
  background: #E8F5F6;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .mainVisual {
    width: 100%;
    height: 50vh;
    margin: 0;
  }
  .mainVisual .catch--copy {
    z-index: 2;
    width: 45%;
  }
  .mainVisual .scrolldown {
    display: none;
  }
  .mainVisual .scrolldown__inner p {
    color: #666;
  }
  .mainVisual .scrolldown__inner .arrow::before {
    background: #666;
  }
  .idx__message {
    background: url(../../images/idx/bg_message_sp.jpg) no-repeat 0 100%;
    background-size: 100% auto;
    padding: 64px 0 95%;
  }
  .idx__message__body {
    width: auto;
    padding: 24px 0 0;
    margin: 0;
  }
  .idx__message--copy {
    margin: 0 15% 24px 0;
  }
  .idx__message--txt {
    font-size: 1em;
    margin: 0 0 24px;
  }
  .idx__message--txt br {
    display: none;
  }
  .idx__message .name {
    font-size: 1.25em;
  }
  .idx__message .name span {
    margin-right: 16px;
    font-size: 0.875em;
  }
  .sns {
    margin: 64px 0 0;
    padding: 48px 0;
  }
  .sns--lst {
    margin: 24px 0 0;
  }
  .sns--lst li {
    margin: 0 8px;
  }
  .sns--lst li:nth-of-type(1) {
    width: 24px;
  }
  .sns--lst li:nth-of-type(2) {
    width: 24px;
  }
  .sns--lst li:nth-of-type(3) {
    width: 100px;
  }
  .idx__news {
    background: #E2A956;
  }
  .idx__news__body {
    padding: 8px 16px;
  }
  .idx__news .topics__link {
    margin: 16px 0 0;
    text-align: right;
    font-size: 0.875em;
  }
  .idx__news .topics__link a {
    color: #fff;
  }
  .idx__news .topics__link a::after {
    content: "→";
    padding: 0 0 0 8px;
  }
  .topics__dl {
    display: flex;
    border-top: 1px dotted #ccc;
    padding: 24px 0;
  }
  .topics__dl:first-child {
    border-top: none;
  }
  .topics__dl .date {
    color: #666;
    margin: 0 24px 0 0;
  }
  .topics__txt {
    font-size: 1em;
  }
  .topics__txt a {
    text-decoration: underline;
    transition: all 0.4s;
    display: block;
  }
  .topics__txt a:hover {
    opacity: 0.4;
  }
  .topics::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 60%;
    height: 100%;
    background: #E8F5F6;
    z-index: -1;
  }
}
.swiper-button-prev, .swiper-button-next {
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  transition: all 0.4s;
  border-radius: 50%;
  background: #444;
}

.swiper-button-prev::before, .swiper-button-next::before {
  /*
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  box-shadow: var(--box-shadow);
  */
}

.swiper-button-prev::after, .swiper-button-next::after {
  content: "";
  width: 8px;
  height: 8px;
  border: solid #fff;
  border-width: 3px 3px 0 0;
  border-radius: 1px;
}

.swiper-button-prev::after {
  margin-left: 0.4rem;
  transform: rotate(-135deg);
}

.swiper-button-next::after {
  margin-right: 0.4rem;
  transform: rotate(45deg);
}

.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.swiper-area {
  position: relative;
}

.swiper-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 0.8rem;
  justify-content: center;
  margin-top: 3.2rem;
  text-align: center;
}

.swiper-pagination-bullet {
  width: 1.6rem;
  height: 3px;
  cursor: pointer;
  transition: all 0.4s;
  vertical-align: top;
  background-color: #ccc;
}

.swiper-pagination-bullet-active {
  width: 4rem;
  background: #E2A956;
}

.swiper-button-prev, .swiper-button-next {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  margin: auto;
}

.swiper-button-prev {
  right: calc(100% + 2.4rem);
}

@media only screen and (max-width: 1024px) {
  .swiper-button-prev {
    right: calc(100% - 3.2rem);
  }
}
.swiper-button-next {
  left: calc(100% + 2.4rem);
}

@media only screen and (max-width: 1024px) {
  .swiper-button-next {
    left: calc(100% - 3.2rem);
  }
}
@media only screen and (max-width: 767px) {
  .swiper-button-prev, .swiper-button-next {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ccc;
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    content: "";
    width: 8px;
    height: 8px;
    border: solid #666;
    border-width: 1px 1px 0 0;
    border-radius: 1px;
  }
  .swiper-button-prev {
    right: calc(100% - 3.2rem);
    top: auto;
    bottom: -4rem;
  }
  .swiper-button-next {
    left: calc(100% - 3.2rem);
    top: auto;
    bottom: -4rem;
  }
}
.swiper-wrapper a {
  color: #222;
}
.swiper-wrapper .slide--media {
  margin: 0 0 16px;
}
.swiper-wrapper .slide--ttl {
  font-size: 1em;
  margin: 0 0 4px;
}
.swiper-wrapper .slide--place {
  font-size: 0.875em;
}
/*# sourceMappingURL=idx.css.map */