@charset "UTF-8";

/* Scss Document */
iframe {
  border: 0;
}

.center {
  text-align: center;
}

.center img {
  margin: 0 auto;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.notes {
  margin-top: 1em;
  font-size: 1.3rem;
}

.text-red {
  color: #c6161d;
}

.text-dred {
  color: #9a2b4a;
}

.bg-beige {
  background: rgba(245, 245, 240, 0.75);
}

.bg-gray {
  background: #f7f7f7;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 640px) {
  .sp {
    display: inherit !important;
  }
}

@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
}

.anchor {
  margin-top: -10vw;
  padding-top: 10vw;
}

@media only screen and (max-width: 640px) {
  .anchor {
    /*top: -19vw;*/
  }
}

.page-nav {
  margin-bottom: 4em;
}

.page-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

@media only screen and (max-width: 640px) {
  .page-nav ul {
    justify-content: space-between;
  }
}

.page-nav ul li {
  margin: 0 .5rem 1em;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.2;
}

@media only screen and (max-width: 640px) {
  .page-nav ul li {
    width: 48%;
    margin: .5em 0;
    font-size: calc((30/760)*100vw);
  }
}

.page-nav ul li a,
.page-nav ul li span {
  padding: 0 1.5em .8em;
  display: block;
  border-bottom: rgba(0, 0, 0, 0.1) 1px solid;
  text-decoration: none;
  color: #251d1a;
  text-align: center;
}

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

  .page-nav ul li a,
  .page-nav ul li span {
    padding: 0 0 .7em;
  }
}

.page-nav ul li a:hover,
.page-nav ul li span:hover {
  border-bottom: #9a2b4a 1px solid;
}

.page-nav ul li.active a,
.page-nav ul li.active span {
  border-bottom: #9a2b4a 1px solid;
}

.btn-more {
  text-align: center;
}

.btn-more a {
  padding: .5em;
  border: solid 1px #9a2b4a;
  display: inline-block;
  min-width: 25rem;
  font-size: 2rem;
  color: #9a2b4a;
  background: #fff;
  text-decoration: none;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-style: normal;
  line-height: 1.3;
}

@media only screen and (max-width: 640px) {
  .btn-more a {
    min-width: 16rem;
    font-size: 1.6rem;
  }
}

.bottom-nav {
  margin-top: 8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media only screen and (max-width: 640px) {
  .bottom-nav {
    margin-top: 4rem;
  }
}

@media only screen and (max-width: 640px) {
  .bottom-nav .btn-more a {
    min-width: 8rem;
  }
}

.bottom-nav li {
  min-width: 25rem;
}

@media only screen and (max-width: 640px) {
  .bottom-nav li {
    min-width: 10rem;
  }
}

.animation-wrapper {
  overflow: hidden;
}

.animation {
  opacity: 0;
}

.isPlay {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}

.isPlay:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(109.6deg, #9cfcf8 11.2%, #6e7bfb 91.1%);
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(100%);
  }
}

.mt-0 {
  margin-top: 0;
}

.mt-1em {
  margin-top: 1em;
}

@media only screen and (max-width: 640px) {
  .mt-1em {
    margin-top: .5em;
  }
}

.mt-2em {
  margin-top: 2em;
}

@media only screen and (max-width: 640px) {
  .mt-2em {
    margin-top: 1em;
  }
}

.mt-3em {
  margin-top: 3em;
}

@media only screen and (max-width: 640px) {
  .mt-3em {
    margin-top: 1.5em;
  }
}

.mt-4em {
  margin-top: 4em;
}

@media only screen and (max-width: 640px) {
  .mt-4em {
    margin-top: 2em;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1em {
  margin-bottom: 1em;
}

@media only screen and (max-width: 640px) {
  .mb-1em {
    margin-bottom: .5em;
  }
}

.mb-2em {
  margin-bottom: 2em;
}

@media only screen and (max-width: 640px) {
  .mb-2em {
    margin-bottom: 1em;
  }
}

.mb-3em {
  margin-bottom: 3em;
}

@media only screen and (max-width: 640px) {
  .mb-3em {
    margin-bottom: 1.5em;
  }
}

.mb-4em {
  margin-bottom: 4em;
}

@media only screen and (max-width: 640px) {
  .mb-4em {
    margin-bottom: 2em;
  }
}

.mt-l {
  margin-top: 3em;
}

@media only screen and (max-width: 640px) {
  .mt-l {
    margin-bottom: 1.5em;
  }
}

.fade,
.delay,
.delay2,
.delay3 {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: 1s;
}

/*-------------------------------------
  コーディングをしやすいようにコメントアウト
-------------------------------------*/
/*.effect-fade {
  opacity: 0;
  transform: translate(0, 4.5rem);
  transition: all 500ms;
}*/
.delay,
.delay2,
.delay3,
.delay4,
.delay5,
.delay6 {
  opacity: 0;
  transform: translate(0, 2rem);
  transition: all 500ms;
}

.effect-fade.effect-scroll {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-fade.effect-scroll .delay,
.effect-fade.effect-scroll .delay2,
.effect-fade.effect-scroll .delay3,
.effect-fade.effect-scroll .delay4,
.effect-fade.effect-scroll .delay5,
.effect-fade.effect-scroll .delay6 {
  opacity: 1;
  transform: translate(0, 0);
}

.effect-fade.effect-scroll .delay {
  transition-delay: .5s;
  -ms-transition-delay: .5s;
}

.effect-fade.effect-scroll .delay2 {
  transition-delay: 1s;
  -ms-transition-delay: 1s;
}

.effect-fade.effect-scroll .delay3 {
  transition-delay: 1.5s;
  -ms-transition-delay: 1.5s;
}

.effect-fade.effect-scroll .delay4 {
  transition-delay: 2s;
  -ms-transition-delay: 2s;
}

.effect-fade.effect-scroll .delay5 {
  transition-delay: 2.5s;
  -ms-transition-delay: 2.5s;
}

.effect-fade.effect-scroll .delay6 {
  transition-delay: 3s;
  -ms-transition-delay: 3s;
}

.sans-serif {
  font-family: YakuHanJP, 'Noto Sans JP', "游ゴシック", "YuGothic", YuMincho, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "MS Pゴシック", "MS PGothic", sans-serif;
}

.flow-list {
  width: 77rem;
  margin: 0 auto 6rem;
}

@media only screen and (max-width: 640px) {
  .flow-list {
    width: 100%;
  }
}

.flow-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2.7rem;
}

@media only screen and (max-width: 640px) {
  .flow-list li {
    margin-top: 4rem;
  }
}

.flow-list li:before {
  position: absolute;
  top: -2.7rem;
  left: 4.5rem;
  content: '';
  width: 1px;
  height: 2.7rem;
  background: #9a2b4a;
}

@media only screen and (max-width: 640px) {
  .flow-list li:before {
    top: -5rem;
    left: 10vw;
    height: 7rem;
    z-index: 11;
  }
}

.flow-list li:first-child {
  margin-top: 0;
}

.flow-list li:first-child:before {
  content: none;
}

.flow-list-step {
  position: relative;
  width: 9rem;
  height: 9rem;
  padding: 1.5rem;
  background: white;
  border: #9a2b4a 1px solid;
  border-radius: 4.5rem;
  color: #9a2b4a;
  font-size: 1.4rem;
  letter-spacing: .2rem;
  text-align: center;
  line-height: 1.0;
  z-index: 44;
}

@media only screen and (max-width: 640px) {
  .flow-list-step {
    width: 20vw;
    height: 20vw;
  }
}

.flow-list-step span {
  display: block;
  margin-top: -.5rem;
  font-size: 5.0rem;
  letter-spacing: 0;
}

.flow-list-textarea {
  width: 65rem;
}

@media only screen and (max-width: 640px) {
  .flow-list-textarea {
    width: 75%;
  }
}

.flow-list-text {
  font-size: 1.7rem;
  line-height: 1.5;
}