@charset "UTF-8";
/* CSS Document */
.spmask {
  display: inline-block;
}

.spmask-inline {
  display: inline;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .spmask-inline {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
:root {
  --bgGray: #f0f0f0;
  --lineGray: #c5ccd5;
}

/*------------------------------*/
.contentsMv {
  margin-bottom: 0;
}

/*------------------------------*/
.flow {
  background-color: var(--bgGray);
  padding-block: 6rem;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-block: 4rem 3rem;
  }
}
.flow .title {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .flow .title {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
  }
}
.flow .title::before, .flow .title::after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: var(--lineGray);
}
.flow .title p {
  flex-shrink: 0;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--navy);
}
@media screen and (max-width: 767px) {
  .flow .title p {
    font-size: 1.8rem;
  }
}
.flow ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .flow ul {
    margin-top: 3rem;
    flex-direction: column;
  }
}
.flow ul li {
  width: 21.2765957447%;
  height: 6.8rem;
  display: grid;
  place-content: center;
  background-color: var(--main);
}
@media screen and (max-width: 767px) {
  .flow ul li {
    width: 100%;
    height: 4.5rem;
  }
}
.flow ul li.next {
  background-color: transparent;
  width: 1rem;
  background: url("../../common/images/arrow-c.svg") no-repeat center/contain;
}
@media screen and (max-width: 767px) {
  .flow ul li.next {
    height: 2.2rem;
    width: 0.8rem;
    rotate: 90deg;
    transform-origin: center;
  }
}
.flow ul li p {
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .flow ul li p {
    font-size: 1.4rem;
  }
}
.flow ul li p span {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .flow ul li p span {
    font-size: 1.2rem;
  }
}
.flow p.readText {
  text-align: right;
  font-size: 1.4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .flow p.readText {
    margin-top: 2.5rem;
  }
}

/*------------------------------*/
.requirement {
  padding-block: 10rem 7rem;
}
@media screen and (max-width: 767px) {
  .requirement {
    padding-block: 3rem;
  }
}
.requirement .tab {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  border-bottom: 1px solid var(--lineGray);
  margin-bottom: 2rem;
  padding-top: 1rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .requirement .tab {
    margin-bottom: 1rem;
  }
}
.requirement .tab a {
  display: grid;
  place-content: center;
  background-color: var(--bgGray);
  color: var(--navy);
  padding-block: 1.6rem 1.9rem;
  translate: 0 0.5rem;
  transition: translate 0.1s;
}
@media screen and (max-width: 767px) {
  .requirement .tab a {
    padding-block: 2.1rem 2.4rem;
  }
}
.requirement .tab a.active {
  background-color: var(--navy);
  color: #fff;
  pointer-events: none;
  translate: 0 0.5rem !important;
  transition: translate 0s;
}
.requirement .tab a span {
  font-size: 1.8rem;
  font-weight: 600;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .requirement .tab a span {
    font-size: 4.1025641026vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .requirement .tab a:hover {
    translate: 0 0;
  }
}
.requirement .content-wrap .item li {
  display: flex;
  padding-block: 3.2rem 2.2rem;
}
@media screen and (max-width: 767px) {
  .requirement .content-wrap .item li {
    flex-direction: column;
    padding-block: 2.7rem 2.4rem;
  }
}
.requirement .content-wrap .item li + li {
  border-top: 1px solid var(--lineGray);
}
.requirement .content-wrap .item li p.title {
  width: 20rem;
  line-height: 2;
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .requirement .content-wrap .item li p.title {
    width: 100%;
    margin-bottom: 0.6rem;
    font-size: 1.8rem;
  }
}
.requirement .content-wrap .item li p.readText span.indent {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}

.content-wrap .item {
  display: none;
  opacity: 0;
}

.content-wrap .item.active {
  display: block;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* アニメーションクラス */
.fade-in {
  -webkit-animation: fadeIn 0.4s ease-in-out forwards;
          animation: fadeIn 0.4s ease-in-out forwards;
}

/*------------------------------*/
.entry {
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .entry {
    padding-bottom: 5rem;
  }
}
.entry a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: var(--main);
  background-size: 100%;
  width: 100%;
  height: 28rem;
  transition: background-position 0.3s ease;
}
@media screen and (max-width: 767px) {
  .entry a.btn {
    height: 14rem;
    justify-content: flex-start;
    padding-left: 2rem;
  }
}
.entry a.btn .text {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: color 0.1s ease;
}
@media screen and (max-width: 767px) {
  .entry a.btn .text {
    text-align: left;
  }
}
.entry a.btn .text .title-ja {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .entry a.btn .text .title-ja {
    font-size: 3.5897435897vw;
    margin-bottom: 0.25em;
  }
}
.entry a.btn .text .title-en {
  font-size: 4.8rem;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .entry a.btn .text .title-en {
    font-size: 7.1794871795vw;
  }
}
.entry a.btn .arrow-icon {
  position: absolute;
  z-index: 2;
  top: calc(50% - 2.5rem);
  right: 6rem;
  transition: border background-color 0.1s;
}
.entry a.btn .arrow-icon::after {
  transition: background-image 0.1s;
}
@media screen and (max-width: 767px) {
  .entry a.btn .arrow-icon {
    right: 2rem;
    top: calc(50% - 2rem);
  }
}
@media (hover: hover) and (pointer: fine) {
  .entry a.btn:hover .arrow-icon {
    border: 1px solid #fff;
    background-color: transparent;
  }
  .entry a.btn:hover .arrow-icon::after {
    background-image: url("../../common/images/arrow-w.svg");
  }
}
/*# sourceMappingURL=style.css.map */