@charset "utf-8";

:root {
  --main-color: #1eb2c8;
  --sub-color: #103161;
  --accent-o: #f6921e;
  --accent-y: #fdc200;
  --accent-r: #e54242;
  --title-w: rgb(255, 255, 255/.2);
  --title-b: #1eb2c8;
  --title-o: #fcdcaf;
  --color-red: #e54242;
  --bg-o: rgb(253, 194, 0/.2);
  --bg-b: rgb(253, 194, 0/.2);
  --dots: #5acad7;
}

body {
  text-align: justify;
  letter-spacing: .08em;
  font: 500 1.125rem /1.5 'Noto Sans JP', sans-serif;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 1280px) {

  main {
    overflow: hidden;
  }

}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Make images easier to work with */
img {
  max-width: 1200px;
  display: block;
  width: 100%;
  margin-inline: auto;
}

/* リキッドレイアウト対応 */
@media (max-width: 640px) {
  html {
    font-size: 15px;
  }
}

@media screen and (min-width: 640px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 481px) {
  .br-pc {
    display: block
  }

  .br-sp {
    display: none
  }
}

@media screen and (max-width: 480px) {
  .br-pc {
    display: none
  }

  .br-sp {
    display: block
  }
}

@media screen and (min-width: 375px) {
  .br-sp2 {
    display: none
  }
}

@media screen and (max-width: 374px) {
  .br-sp2 {
    display: block
  }
}

.container_L {
  width: calc(100vw - 17px);
  margin-inline: auto;
}

.container_S {
  width: 1280px;
  margin-inline: auto;
}

@media screen and (max-width: 1280px) {

  .container_S {
    width: 95%;
  }

}

.c_btn {
  width: 100%;
  max-width: 450px;
  height: 80px;

  a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 80px;
    border-radius: 50px;
    background: var(--accent-o);
    padding-left: 50px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, .15);
    position: relative;

    &::before {
      content: "";
      width: 100px;
      height: 15px;
      background: url(../images/arrow.svg) no-repeat center center;
      background-size: cover;
      position: absolute;
      top: 0;
      right: 30px;
      bottom: 0;
      margin: auto;
    }

    &:hover {
      background: var(--accent-y);
      transition: .3s;
    }

    &:hover::before {
      right: 25px;
      transition: .3s;
    }

  }
}

.c_btn.btn_r a{
  background: var(--accent-r);
}

@media screen and (max-width: 980px) {

  .c_btn {
    margin: 0 auto 60px;
  }

}

@media screen and (max-width: 600px) {

  .c_btn {
    a {
      font-size: 20px;
      padding-left: 40px;

      &::before {
        width: 84px;
        height: 12px;
        right: 28px;
      }
    }
  }

}

@media screen and (max-width: 374px) {

  .c_btn {
    a {
      font-size: 16px;
      padding-left: 30px;

      &::before {
        width: 74px;
        height: 11px;
        right: 24px;
      }
    }
  }

}

.marker {
  background: linear-gradient(transparent 85%, var(--accent-y) 15%);
}

@font-face {
  font-family: 'josefin';
  src: url(../font/JosefinSans-Bold.ttf);
}

.arrow_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% -50%;

  &.container_S {
    padding: 0 120px;
  }

  .prev-arrow {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;
    transform: rotate(180deg);
    margin-right: 20px;

    &::before {
      position: absolute;
      content: "";
      width: 25px;
      height: 25px;
      border-right: 5px solid var(--main-color);
      border-top: 5px solid var(--main-color);
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      transform: rotate(45deg);
    }
  }

  .next-arrow {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: relative;

    &::before {
      position: absolute;
      content: "";
      width: 25px;
      height: 25px;
      border-right: 5px solid var(--main-color);
      border-top: 5px solid var(--main-color);
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      margin: auto;
      transform: rotate(45deg);
    }
  }

}

@media screen and (max-width: 1280px) {

  .arrow_box {

    &.container_S {
      width: 100%;
      padding: 0;
    }
  }

}

@media screen and (max-width: 480px) {

  .arrow_box {

    &.container_S {
      top: 30%;
    }
  }

}

.cf::after {
  content: '';
  display: block;
  clear: both;
}



.effectIn {
  transition: .8s;
  opacity: 0;
}

.effectOut {
  transition: .8s;
  opacity: 1.0;
}

.effectIn1 {
  transition: .8s ease-in;
  transform: translate(0, 30px);
  opacity: 0;
}

.effectOut1 {
  transition: .8s ease-out;
  transform: translate(0, 0px);
  opacity: 1.0;
}

.effectIn2 {
  transition: .8s ease-in;
  transform: translate(-30px, 0);
  opacity: 0;
}

.effectOut2 {
  transition: .8s ease-out;
  transform: translate(0, 0px);
  opacity: 1.0;
}

.effectIn3 {
  transition: .8s ease-in;
  transform: translate(30px, 0);
  opacity: 0;
}

.effectOut3 {
  transition: .8s ease-out;
  transform: translate(0, 0px);
  opacity: 1.0;
}

.effectIn4 {
  transition: .8s ease-in;
  transform: translate(0, -30px);
  opacity: 0;
}

.effectOut4 {
  transition: .8s ease-out;
  transform: translate(0, 0px);
  opacity: 1.0;
}

.order1 {
  transition-delay: 0s
}

.order2 {
  transition-delay: .3s
}

.order3 {
  transition-delay: .9s
}

.order4 {
  transition-delay: 1.2s
}

.order5 {
  transition-delay: 1.5s
}

.order6 {
  transition-delay: 1.8s
}

.order7 {
  transition-delay: 2.1s
}

.order8 {
  transition-delay: 2.4s
}

.order9 {
  transition-delay: 2.7s
}

.order10 {
  transition-delay: 3.0s
}