@charset "UTF-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

.main {
  background-color: #fff;
}

.breadcrumb {
  position: fixed;
  top: 73px;
  right: 0;
  left: 0;
  z-index: 10;
}
@media only screen and (max-width: 1390px) {
  .breadcrumb {
    top: 60px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
}

/* IE6 */
*:first-child + html .clearfix {
  zoom: 1;
}

/* IE7 */
/* スライダー全体 */
.vertical-slider {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

/* スライド */
.vertical-slider__slide {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10rem;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #fff;
  background-color: #fff;
  position: relative;
}
.vertical-slider__slide .picture {
  height: calc(100% - 121px);
  top: calc(50% + 60.5px);
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1390px) {
  .vertical-slider__slide .picture {
    height: calc(100% - 107px);
    top: calc(50% + 53.5px);
  }
}
.vertical-slider__slide .picture img {
  max-width: initial;
  height: 100%;
}
@media only screen and (max-width: 375px) {
  .vertical-slider__slide .picture img.img-01 {
    width: 100vw;
    height: auto;
  }
}

/* 1枚目のスライド */
/* 2枚目のスライド */
/* 3枚目のスライド */
/* 4枚目のスライド */
/* 5枚目のスライド */
/* SP時の文字サイズ調整 */
.subpage #wrap {
  margin-top: 0;
}

.txt-01 {
  width: 27%;
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  left: 9%;
  z-index: 2;
}
@media only screen and (max-width: 834px) {
  .txt-01 {
    width: 41%;
    top: 41%;
  }
}
@media only screen and (max-width: 575px) {
  .txt-01 {
    width: 71%;
    top: 82%;
    left: 4%;
  }
}
@media only screen and (max-width: 320px) {
  .txt-01 {
    width: 55%;
    top: 87%;
    left: 7%;
  }
}

.txt-02 {
  width: 24.5%;
  position: absolute;
  top: 83%;
  transform: translateY(-50%);
  left: 9%;
  z-index: 2;
}
@media only screen and (max-width: 834px) {
  .txt-02 {
    width: 34.5%;
    top: 90%;
    left: 7%;
  }
}
@media only screen and (max-width: 575px) {
  .txt-02 {
    width: 41.5%;
    top: 24%;
    right: 20px;
    left: initial;
  }
}
@media only screen and (max-width: 320px) {
  .txt-02 {
    top: 30%;
    right: 15px;
  }
}

.wrap {
  position: absolute;
  top: calc(50% + 60.5px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .wrap {
    top: calc(50% + 53.5px);
  }
}

.ttl {
  height: 26px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 320px) {
  .ttl {
    height: 22px;
  }
}
.ttl img {
  width: auto;
  height: 100%;
}

.name {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.name a {
  height: 24px;
  margin-bottom: 2px;
  display: inline-block;
}
@media only screen and (max-width: 320px) {
  .name a {
    height: 20px;
  }
}
.name a img {
  width: auto;
  height: 100%;
}
.name + .ttl {
  margin-top: 20px;
}

.btn-backnumber {
  max-width: 194px;
  margin: 30px auto 10px;
  display: block;
}

.sns-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.sns-wrap a {
  display: inline-block;
}

.footer .totop {
  display: none;
}

.scroll_down {
  position: fixed;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
@media only screen and (max-width: 575px) {
  .scroll_down {
    right: 20px;
    left: initial;
    transform: none;
  }
}

.scroll_down a {
  position: absolute;
  left: 10px;
  bottom: 87px;
  color: #fff;
  font-size: 14px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll_down:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 11px;
  height: 11px;
  background: #fff;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 120px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 120px;
  background: #fff;
}

@media only screen and (max-width: 575px) {
  .slide-2 .scroll_down:before {
    background: #000;
  }
}
@media only screen and (max-width: 575px) {
  .slide-2 .scroll_down:after {
    background: #000;
  }
}

.slide-1 .scroll_down:before,
.slide-3 .scroll_down:before {
  background: #000;
}
.slide-1 .scroll_down:after,
.slide-3 .scroll_down:after {
  background: #000;
}

@media only screen and (max-width: 575px) {
  .slide-4 .scroll_down:before {
    background: #000;
  }
}
@media only screen and (max-width: 575px) {
  .slide-4 .scroll_down:after {
    background: #000;
  }
}

.slide-5 .scroll_down,
.slide-6 .scroll_down {
  display: none;
}/*# sourceMappingURL=style.css.map */