@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-size: 2.8205128205vw;
  transition: all 1.6s ease 0s;
  background-color: #ececec;
  font-family: "obviously", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #2b5883;
  padding: 0 6.5vw;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.5625vw;
  }
}

img {
  display: block;
  width: 100%;
}

.R41 {
  font-family: "r41-alfabeta-16", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 7.1794871795vw;
  text-align: center;
}

.Mrs {
  font-family: "mrs-eaves-xl-serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5897435897vw;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

.sec {
  margin-top: 31vw;
  overflow-x: hidden;
}
@media screen and (min-width: 769px) {
  .sec {
    margin-top: 20vw;
  }
}

.in-view {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.credit {
  margin-top: 8.4vw;
}
.credit li {
  display: flex;
  justify-content: space-between;
  margin-top: 4.1vw;
}
@media screen and (min-width: 769px) {
  .credit li {
    width: 60%;
    margin: 4.1vw auto;
  }
}
.credit a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2b5883;
  border-radius: 100px;
  text-decoration: none;
  font-size: 3.8461538462vw;
  line-height: 1;
  width: 18.4615384615vw;
  height: 8.7179487179vw;
  color: #2b5883;
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 769px) {
  .credit a {
    font-size: 1.875vw;
    width: 10.0775193798vw;
    height: 4.375vw;
  }
}

.credit a:hover {
  color: #fff;
  background-color: #2b5883;
  border-color: #fff;
}

/* .load
===================================================== */
.load {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  display: block;
}

/* .fv
===================================================== */
.fv {
  opacity: 0;
  transition: opacity 1s;
}
.fv.on {
  opacity: 1;
}

@keyframes fade-in-out {
  0%, 30%, 100% {
    opacity: 0;
  }
  50%, 80% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0%, 30%, 100% {
    opacity: 1;
  }
  50%, 80% {
    opacity: 0;
  }
}
.fv_txt {
  margin-top: 20vw;
}
@media screen and (min-width: 769px) {
  .fv_txt {
    margin-top: 10vw;
  }
}

.fv_img {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  counter-reset: fv-counter;
  margin-top: 14vw;
}
.fv_img a {
  width: 20%;
  counter-increment: fv-counter;
  /* aタグごとにカウンターを増やす */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.0512820513vw;
}
.fv_img a .img-wrap {
  display: grid;
}
.fv_img a .img-wrap > img {
  grid-area: 1/1;
}
.fv_img a .img-wrap > img:first-child {
  animation: fade-out 4s ease-in-out infinite;
}
.fv_img a .img-wrap > img:last-child {
  animation: fade-in-out 4s ease-in-out infinite;
}
.fv_img a::after {
  content: counter(fv-counter, decimal-leading-zero);
  /* カウンターの値を表示 */
  font-family: "mrs-eaves-xl-serif", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.1025641026vw;
}

/* .sec1
===================================================== */
.sec1_box1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec1_box1 > img:first-child {
  width: 41%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec1_box1 > img:last-child {
  width: 54%;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec1_box2 {
  position: relative;
  margin-top: 4.1vw;
  min-height: 75vw;
}
.sec1_box2 > img:first-child {
  position: absolute;
  top: 0;
  right: 6vw;
  width: 54%;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec1_box2 > img:last-child {
  position: absolute;
  bottom: 0;
  left: 6vw;
  width: 38%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}

/* .sec2
===================================================== */
.sec2_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec2_box > img {
  width: 55%;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec2_box1 {
  display: flex;
  width: 42%;
  flex-direction: column;
  gap: 4.1vw;
}
.sec2_box1 > img {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec2_box1 > img:nth-child(1) {
  transition-delay: 0.2s;
}
.sec2_box1 > img:nth-child(2) {
  transition-delay: 0.4s;
}
.sec2_box1 > img:nth-child(3) {
  transition-delay: 0.6s;
}

/* .sec3
===================================================== */
.sec3 .sec3_box > img {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec3_box1 {
  display: flex;
  margin-top: 4.1vw;
  gap: 4.1vw;
  align-items: flex-start;
  justify-content: center;
}
.sec3_box1 > img:first-child {
  margin-top: 7.6923076923vw;
  width: 46%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec3_box1 > img:last-child {
  width: 46%;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec3_box2 {
  position: relative;
  margin-top: 4.1vw;
  min-height: 75vw;
}
.sec3_box2 > img:first-child {
  position: absolute;
  top: 0;
  left: 6vw;
  width: 54%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec3_box2 > img:last-child {
  position: absolute;
  bottom: 0;
  right: 6vw;
  width: 38%;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}

/* .sec4
===================================================== */
.sec4_box1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.sec4_box1 > img:first-child {
  width: 32%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec4_box1 > img:last-child {
  width: 64%;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec4_box2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4.1vw;
}
.sec4_box2 > img:first-child {
  width: 64%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec4_box2 > img:last-child {
  width: 32%;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}

/* .sec5
===================================================== */
.sec5 .sec5_box > img {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec5_box1 {
  display: flex;
  width: 42%;
  flex-direction: column;
  gap: 4.1vw;
  margin-left: auto;
  margin-top: 4.1vw;
}
.sec5_box1 > img {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec5_box1 > img:nth-child(1) {
  transition-delay: 0.2s;
}
.sec5_box1 > img:nth-child(2) {
  transition-delay: 0.4s;
}
.sec5_box1 > img:nth-child(3) {
  transition-delay: 0.6s;
}
.sec5_box2 {
  display: flex;
  width: 69%;
  height: auto;
  margin-top: 4.1vw;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}

/* .sec6
===================================================== */
.sec6_box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
}
.sec6_box > *:nth-child(odd) {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec6_box > *:nth-child(even) {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}

/* .sec7
===================================================== */
.sec7_box1 {
  display: flex;
  align-items: flex-end;
}
.sec7_box1 > img:first-child {
  width: 38%;
  height: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec7_box1 > img:last-child {
  width: 50%;
  height: auto;
  margin-left: auto;
  margin-bottom: 20vw;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec7_box2 {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 4.1vw;
}
.sec7_box2 > img:nth-child(1) {
  width: 50%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.4s;
}
.sec7_box2 > img:nth-child(2) {
  width: 31%;
  height: auto;
  position: absolute;
  top: -8vw;
  right: 7vw;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec7_box2 > img:nth-child(3) {
  width: 46%;
  height: auto;
  margin-left: auto;
  margin-top: 40vw;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec7_box > img {
  margin-top: 12.3076923077vw;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}

/* .sec8
===================================================== */
.sec8_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec8_box > img {
  width: 55%;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec8_box1 {
  display: flex;
  width: 42%;
  flex-direction: column;
  gap: 4.1vw;
}
.sec8_box1 > img {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec8_box1 > img:nth-child(1) {
  transition-delay: 0.2s;
}
.sec8_box1 > img:nth-child(2) {
  transition-delay: 0.4s;
}
.sec8_box1 > img:nth-child(3) {
  transition-delay: 0.6s;
}

/* .sec9
===================================================== */
.sec9_box1 {
  position: relative;
  margin-top: 4.1vw;
  min-height: 75vw;
}
.sec9_box1 > img:first-child {
  position: absolute;
  top: 0;
  left: 6vw;
  width: 54%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec9_box1 > img:last-child {
  position: absolute;
  bottom: 0;
  right: 6vw;
  width: 38%;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec9_box2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 6.1538461538vw;
}
.sec9_box2 > img:first-child {
  width: 32%;
  height: auto;
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
  transition-delay: 0.2s;
}
.sec9_box2 > img:last-child {
  width: 64%;
  height: auto;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}

/* .sec10
===================================================== */
.sec10_box {
  display: flex;
  gap: 2vw;
  align-items: flex-start;
  width: 100%;
}
.sec10_box1, .sec10_box2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.sec10_box1 > img {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec10_box1 > img:nth-child(1) {
  transition-delay: 0.2s;
}
.sec10_box1 > img:nth-child(2) {
  transition-delay: 0.4s;
}
.sec10_box2 {
  margin-top: 10.2564102564vw;
}
.sec10_box2 > img {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.sec10_box2 > img:nth-child(1) {
  transition-delay: 0s;
}
.sec10_box2 > img:nth-child(2) {
  transition-delay: 0.2s;
}

/* all item
===================================================== */
.allitem {
  margin-top: 16.1538461538vw;
  text-align: center;
}
.allitem a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #2b5883;
  border-radius: 100px;
  text-decoration: none;
  font-size: 6.1538461538vw;
  line-height: 1;
  width: 100%;
  height: 16.1538461538vw;
  color: #2b5883;
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (min-width: 769px) {
  .allitem a {
    width: 40.625vw;
    height: 7.5vw;
    font-size: 2.5vw;
  }
}

.allitem a:hover {
  color: #fff;
  background-color: #2b5883;
  border-color: #fff;
}

/* footer
===================================================== */
.footer {
  margin-top: 30.7692307692vw;
  margin-bottom: 12.3076923077vw;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .footer {
    margin-top: 20vw;
    margin-bottom: 3.75vw;
  }
}
.footer img {
  width: 24.6153846154vw;
  margin: 0 auto 4.1vw;
}
@media screen and (min-width: 769px) {
  .footer img {
    width: 9.375vw;
    margin-bottom: 2vw;
  }
}
.footer .copy {
  font-family: "obviously", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #000;
}
@media screen and (min-width: 769px) {
  .footer .copy {
    font-size: 0.78125vw;
  }
}/*# sourceMappingURL=style.css.map */