body {
  background-color: #f5f5f5;
  overflow-x: hidden;
}

body .loading {
  width: 100vw;
  height: 100vh;
  background-color: #f5f5f5;
  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: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 1;
  -webkit-animation-name: loadingAnime1;
          animation-name: loadingAnime1;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes loadingAnime1 {
  0% {
    z-index: 4;
    opacity: 1;
  }
  99% {
    z-index: 4;
  }
  100% {
    z-index: -2;
    opacity: 0;
  }
}

@keyframes loadingAnime1 {
  0% {
    z-index: 4;
    opacity: 1;
  }
  99% {
    z-index: 4;
  }
  100% {
    z-index: -2;
    opacity: 0;
  }
}

body .loading img {
  width: 150px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
  -webkit-animation-name: loadingAnime2;
          animation-name: loadingAnime2;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes loadingAnime2 {
  from {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes loadingAnime2 {
  from {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
    opacity: 0;
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

body header {
  width: 100%;
  height: 100vh;
  position: relative;
}

body header .drawer {
  width: 25px;
  height: 25px;
  position: fixed;
  top: 25px;
  left: 25px;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  z-index: 3;
}

body header .drawer div:nth-of-type(1) {
  width: 100%;
  height: 3px;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body header .drawer div:nth-of-type(2) {
  width: 100%;
  height: 3px;
  background-color: #f5f5f5;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body header .drawer div:nth-of-type(3) {
  width: 100%;
  height: 3px;
  background-color: #f5f5f5;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body header .drawer:hover {
  opacity: .75;
}

body header .drawerOpen div:nth-of-type(1) {
  background-color: #f5f5f5;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body header .drawerOpen div:nth-of-type(2) {
  background-color: #f5f5f5;
  opacity: 0;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body header .drawerOpen div:nth-of-type(3) {
  background-color: #f5f5f5;
  position: absolute;
  bottom: 50%;
  left: 0;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body header .menu {
  width: 100%;
  height: 100%;
  background-color: rgba(172, 208, 209, 0.9);
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: -1;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  cursor: pointer;
}

body header .menu li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 50px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.25em;
  color: #333;
  letter-spacing: .1em;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
}

body header .menu li:hover {
  color: #f5f5f5;
}

body header .menu li:hover li:nth-of-type(3) {
  cursor: auto;
}

body header .menu li:nth-of-type(1) {
  margin-top: 0;
}

body header .menu li:nth-of-type(3) {
  cursor: auto;
}

body header .menu li:nth-of-type(3):hover {
  color: #333;
}

body header .menu li:nth-of-type(4), body header .menu li:nth-of-type(5), body header .menu li:nth-of-type(6) {
  margin-top: 50px;
  font-size: 1em;
}

body header .menuOpen {
  width: 100%;
  height: 100vh;
  opacity: 1;
  z-index: 2;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #indexHeader {
  background-image: url(../images/index/mainVisual.webp);
  background-size: cover;
  background-position: center;
  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;
}

body #indexHeader .headerContents {
  width: 960px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-left: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

body #indexHeader .headerContents h1 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 3.5em;
  font-weight: 600;
  color: #f5f5f5;
}

body #indexHeader .headerContents p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 100px 100px 0 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: 'Shippori Mincho B1', serif;
  font-size: 1.1em;
  font-weight: 600;
  color: #f5f5f5;
  letter-spacing: .1em;
  line-height: 3em;
}

body #indexHeader .scroll {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  bottom: 100px;
  left: 10px;
}

body #indexHeader .scroll p {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: bold;
  color: #f5f5f5;
  letter-spacing: .1em;
}

body #indexHeader .scroll div {
  width: 1.5px;
  height: 0;
  background-color: #f5f5f5;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-animation-name: scrollAnime;
          animation-name: scrollAnime;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes scrollAnime {
  0% {
    height: 0;
    bottom: 0;
    opacity: 0;
  }
  50% {
    height: 100px;
    bottom: -100px;
    opacity: 1;
  }
  100% {
    height: 0;
    bottom: -100px;
    opacity: 0;
  }
}

@keyframes scrollAnime {
  0% {
    height: 0;
    bottom: 0;
    opacity: 0;
  }
  50% {
    height: 100px;
    bottom: -100px;
    opacity: 1;
  }
  100% {
    height: 0;
    bottom: -100px;
    opacity: 0;
  }
}

body #indexMain {
  width: 100%;
  margin-top: 25vh;
}

body #indexMain .mainContents1 h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 3em;
  color: #555;
  letter-spacing: .1em;
}

body #indexMain .mainContents1 img {
  display: block;
  width: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 50px auto 0 auto;
}

body #indexMain .mainContents1 p {
  width: 960px;
  margin: 50px auto 0 auto;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #555;
  letter-spacing: .1em;
  line-height: 1.5em;
  text-align: center;
}

body #indexMain .mainContents2 {
  width: 100%;
  margin-top: 30vh;
}

body #indexMain .mainContents2 h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 3em;
  color: #555;
  letter-spacing: .1em;
}

body #indexMain .mainContents2 .mainContents2Contents1, body #indexMain .mainContents2 .mainContents2Contents3 {
  width: 960px;
  height: 480px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  position: relative;
}

body #indexMain .mainContents2 .mainContents2Contents1 h3, body #indexMain .mainContents2 .mainContents2Contents3 h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 2em;
  color: #555;
  letter-spacing: .1em;
  position: relative;
}

body #indexMain .mainContents2 .mainContents2Contents1 h3 span:nth-of-type(1), body #indexMain .mainContents2 .mainContents2Contents3 h3 span:nth-of-type(1) {
  font-size: .5em;
  position: relative;
}

body #indexMain .mainContents2 .mainContents2Contents1 h3 span:nth-of-type(1) img, body #indexMain .mainContents2 .mainContents2Contents3 h3 span:nth-of-type(1) img {
  width: 75px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-25%, -50%) rotate(-30deg);
          transform: translate(-25%, -50%) rotate(-30deg);
  opacity: .75;
  z-index: -1;
}

body #indexMain .mainContents2 .mainContents2Contents1 h3 span:nth-of-type(2), body #indexMain .mainContents2 .mainContents2Contents3 h3 span:nth-of-type(2) {
  position: relative;
}

body #indexMain .mainContents2 .mainContents2Contents1 h3 span:nth-of-type(2)::after, body #indexMain .mainContents2 .mainContents2Contents3 h3 span:nth-of-type(2)::after {
  content: '';
  width: .5px;
  height: 50px;
  background-color: #555;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

body #indexMain .mainContents2 .mainContents2Contents1 p, body #indexMain .mainContents2 .mainContents2Contents3 p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px 50px 0 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  color: #555;
  letter-spacing: .1em;
  line-height: 1.5em;
}

body #indexMain .mainContents2 .mainContents2Contents1 img, body #indexMain .mainContents2 .mainContents2Contents3 img {
  display: block;
  width: 300px;
  height: 300px;
  -webkit-box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.75);
  margin-right: 75px;
}

body #indexMain .mainContents2 .mainContents2Contents1 button, body #indexMain .mainContents2 .mainContents2Contents3 button {
  width: 200px;
  height: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #indexMain .mainContents2 .mainContents2Contents1 button a, body #indexMain .mainContents2 .mainContents2Contents3 button a {
  width: 100%;
  height: 100%;
  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;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.25em;
  color: #555;
  letter-spacing: .1em;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #indexMain .mainContents2 .mainContents2Contents1 button:hover, body #indexMain .mainContents2 .mainContents2Contents3 button:hover {
  border: solid 1px transparent;
}

body #indexMain .mainContents2 .mainContents2Contents1 button:hover a, body #indexMain .mainContents2 .mainContents2Contents3 button:hover a {
  color: #f5f5f5;
}

body #indexMain .mainContents2 .mainContents2Contents1 {
  margin: 15vh auto 0 auto;
}

body #indexMain .mainContents2 .mainContents2Contents1 button {
  border: solid 1px rgba(172, 208, 209, 0.5);
}

body #indexMain .mainContents2 .mainContents2Contents1 button:hover {
  background-color: rgba(172, 208, 209, 0.5);
}

body #indexMain .mainContents2 .mainContents2Contents3 {
  margin: 30vh auto 0 auto;
}

body #indexMain .mainContents2 .mainContents2Contents3 button {
  border: solid 1px rgba(255, 192, 203, 0.5);
}

body #indexMain .mainContents2 .mainContents2Contents3 button:hover {
  background-color: rgba(255, 192, 203, 0.5);
}

body #indexMain .mainContents2 .mainContents2Contents2 {
  width: 960px;
  height: 480px;
  margin: 30vh auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

body #indexMain .mainContents2 .mainContents2Contents2 img {
  display: block;
  width: 300px;
  height: 300px;
  -webkit-box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.75);
          box-shadow: 0 10px 5px -5px rgba(0, 0, 0, 0.75);
  margin-right: 75px;
}

body #indexMain .mainContents2 .mainContents2Contents2 p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 25px 50px 0 0;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  color: #555;
  letter-spacing: .1em;
  line-height: 1.5em;
}

body #indexMain .mainContents2 .mainContents2Contents2 h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif;
  font-size: 2em;
  color: #555;
  letter-spacing: .1em;
  position: relative;
}

body #indexMain .mainContents2 .mainContents2Contents2 h3 span:nth-of-type(1) {
  font-size: .5em;
  position: relative;
}

body #indexMain .mainContents2 .mainContents2Contents2 h3 span:nth-of-type(1) img {
  width: 50px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-box-shadow: 0 0;
          box-shadow: 0 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-25%, -50%) rotate(-60deg);
          transform: translate(-25%, -50%) rotate(-60deg);
  opacity: .75;
  z-index: -1;
}

body #indexMain .mainContents2 .mainContents2Contents2 h3 span:nth-of-type(2) {
  position: relative;
}

body #indexMain .mainContents2 .mainContents2Contents2 h3 span:nth-of-type(2)::after {
  content: '';
  width: .5px;
  height: 50px;
  background-color: #555;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}

body #indexMain .mainContents2 .mainContents2Contents2 button {
  width: 200px;
  height: 50px;
  border: solid 1px rgba(172, 208, 209, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #indexMain .mainContents2 .mainContents2Contents2 button a {
  width: 100%;
  height: 100%;
  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;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 1.25em;
  color: #555;
  letter-spacing: .1em;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #indexMain .mainContents2 .mainContents2Contents2 button:hover {
  border: solid 1px transparent;
  background-color: rgba(172, 208, 209, 0.5);
}

body #indexMain .mainContents2 .mainContents2Contents2 button:hover a {
  color: #f5f5f5;
}

body #indexMain .mainContents3 {
  width: 100%;
  margin-top: 50vh;
  position: relative;
}

body #indexMain .mainContents3 .mainContents3H2 {
  width: 960px;
  height: 480px;
  position: relative;
}

body #indexMain .mainContents3 .mainContents3H2::after {
  content: '';
  width: 100%;
  height: 100%;
  background-image: url(../images/index/mainVisual.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

body #indexMain .mainContents3 .mainContents3H2 h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 75px 0 0 125px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 2.5em;
  color: #f5f5f5;
  letter-spacing: .1em;
  line-height: 1em;
  text-align: center;
}

body #indexMain .mainContents3 .mainContents3H2 h2 a {
  font-size: .5em;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #indexMain .mainContents3 .mainContents3H2 h2 a:hover {
  opacity: .5;
}

body #indexMain .mainContents3 .slick {
  width: 100%;
  position: absolute;
  bottom: -150px;
}

body #indexMain .mainContents3 .slick .slick-prev, body #indexMain .mainContents3 .slick .slick-next {
  width: 100px;
  height: 25px;
}

body #indexMain .mainContents3 .slick .slick-prev::before, body #indexMain .mainContents3 .slick .slick-next::before {
  content: '';
  width: 100%;
  height: .5px;
  background-color: #555;
  position: absolute;
  bottom: 12px;
  left: 0;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
}

body #indexMain .mainContents3 .slick .slick-prev::after, body #indexMain .mainContents3 .slick .slick-next::after {
  content: '';
  width: 10px;
  height: .5px;
  background-color: #555;
  position: absolute;
  bottom: 15.75px;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
}

body #indexMain .mainContents3 .slick .slick-prev:hover::before, body #indexMain .mainContents3 .slick .slick-prev:hover::after, body #indexMain .mainContents3 .slick .slick-next:hover::before, body #indexMain .mainContents3 .slick .slick-next:hover::after {
  background-color: #ACD0D1;
}

body #indexMain .mainContents3 .slick .slick-prev {
  position: absolute;
  top: -100px;
  left: 80%;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
}

body #indexMain .mainContents3 .slick .slick-prev::after {
  left: 0;
  -webkit-transform: translateX(-15.5%) rotate(-45deg);
          transform: translateX(-15.5%) rotate(-45deg);
}

body #indexMain .mainContents3 .slick .slick-prev:hover {
  left: 79.5%;
}

body #indexMain .mainContents3 .slick .slick-next {
  position: absolute;
  top: -100px;
  left: 89%;
  -webkit-transition-duration: .25s;
          transition-duration: .25s;
}

body #indexMain .mainContents3 .slick .slick-next::after {
  right: 0;
  -webkit-transform: translateX(15.5%) rotate(45deg);
          transform: translateX(15.5%) rotate(45deg);
}

body #indexMain .mainContents3 .slick .slick-next:hover {
  left: 89.5%;
}

body #indexMain .mainContents3 .slick li {
  margin: 0 5px;
  -webkit-box-shadow: -5px 200px 50px -150px rgba(0, 0, 0, 0.75);
          box-shadow: -5px 200px 50px -150px rgba(0, 0, 0, 0.75);
  -webkit-filter: grayscale(0.25);
          filter: grayscale(0.25);
  position: relative;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #indexMain .mainContents3 .slick li div {
  width: 75px;
  height: 75px;
  border: solid 1.75px rgba(245, 245, 245, 0.5);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body #indexMain .mainContents3 .slick li div img {
  width: 100%;
  height: 100%;
}

body #indexMain .mainContents3 .slick li div p {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #f5f5f5;
  letter-spacing: .1em;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 150%);
          transform: translate(-50%, 150%);
}

body #indexMain .mainContents3 .slick li img {
  width: 720px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

body #indexMain .mainContents3 .slick li:hover {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
}

body #indexMain .mainContents3 .slick li:hover div {
  border: solid 1.75px transparent;
  background-color: #ACD0D1;
}

body footer {
  width: 100%;
  height: 10vh;
  margin-top: 20vh;
  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: relative;
}

body footer::after {
  content: '';
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  z-index: -1;
}

body footer p {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #f5f5f5;
  letter-spacing: .1em;
  text-align: center;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body footer p:hover {
  opacity: .75;
}

body footer ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

body footer ul li {
  width: 25px;
  height: 100%;
  margin: 0 10px;
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
}

body footer ul li img {
  width: 100%;
  height: 100%;
}

body footer ul li:hover {
  opacity: .75;
}

body footer ul li:nth-of-type(1) {
  width: 1.5px;
  height: 150%;
  background-color: #f5f5f5;
  -webkit-transform: translateY(-15%);
          transform: translateY(-15%);
}

body footer ul li:nth-of-type(1):hover {
  opacity: 1;
}

body #indexFooter {
  margin-top: 30vh;
}

body #indexFooter::after {
  background-image: url(../images/index/mainVisual.webp);
  position: absolute;
  top: 0;
  left: 0;
}

body .fadeOut {
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  opacity: 0;
}

body .fadeIn {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  -webkit-transition-duration: 1.5s;
          transition-duration: 1.5s;
}

.noScroll {
  overflow: hidden;
}
/*# sourceMappingURL=style.css.map */