@charset "UTF-8";

/* ===================================================================
  CSS information
  file name  :  style.css
  style info :  健脚アシストLP style
=================================================================== */

/* ---------------------------------------
  common
--------------------------------------- */
body {
  background-color: #f2f2f2;
}
header,
main,
footer {
  width: 100%;
}
img {
  width: 100%;
  height: auto;  
}
video {
  vertical-align: bottom;
}

.wrapper {
  background-color: #fff;
  width: 100%;
  max-width: 780px;
  margin: auto;
  box-shadow: 0 0 10px 2px #d6d6d6;
}
.inner {
  width: 92.31%;
  max-width: 720px;
  margin: 0 auto;
}

.grid-box {
  display: grid;
}

@media screen and (min-width: 781px) {
  .inner {
    width: 92%;
    max-width: 920px;
  }
  .sp_br {
    display: none;
  }
  .wrapper {
    max-width: 1000px;
  }
}

/* ---------------------------------------
  cv
--------------------------------------- */
.cv {
  text-align: center;
  background: url(../img/cv_bg_sp.png?260305) no-repeat center bottom / 100% auto;
  margin-top: max(calc(-54/780 * 100vw), -54px);
  padding-bottom: min(calc(76/780 * 100vw), 76px);
}

.cv .btnArea {
  position: relative;
  margin-bottom: min(calc(22/780 * 100vw), 22px);
}
.cv .btnArea form {
  width: 89.49%;
  max-width: 698px;
  margin: 0 auto;
  animation: move_btn 2s ease infinite normal;
}
.cv .btnArea form .cv-btn {
  max-width: 100%;
}

.cv .cv_modal_list {
  display: flex;
  width: 100%;
  justify-content: center;
}
.cv .cv_modal_list li + li {
  margin-left: 6.6em;
}
.cv .cv_modal_list li a {
  display: block;
  font-size: min(3.59vw, 28px);
  font-weight: 500;
  line-height: 1;
  color: #f07200;
  text-decoration: underline;
}

@media screen and (min-width: 781px) {
  .cv {
    background-image: url(../img/cv_bg_pc.png);
    margin-top: max(-4.7vw, -47px);
    padding-bottom: min(7.9vw, 79px);
  }

  .cv .btnArea {
    margin-bottom: min(0.8vw, 8px);
  }
  .cv .btnArea form {
    max-width: 88.8%;
  }

  .cv .cv_modal_list li + li {
    margin-left: 7.5em;
  }
  .cv .cv_modal_list li a {
    font-size: min(2vw, 20px);
  }
}

/* モーダル */
.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 40px 20px;
  overflow: auto;
  box-sizing: border-box;
}

.modal__content {
  background: #fff;
  text-align: left;
  padding: 0 0 14px 25px;
  width: 90%;
  max-width: 960px;
  position: relative;
  top: 50%;
  left: 50%;
  z-index: 8;
  font-size: calc(24/750 * 100vw);
  transform: translate(-50%, -50%);
}

.modal_scroll {
  height: min(90dvh, 800px);
  overflow-y: auto;
  padding: 30px 30px 30px 0;
  font-size: min(calc(20/750 * 100vw), 20px);
  line-height: 1.63;
}

.modal_scroll p:last-child {
  line-height: 1.4;
}

.modal_scroll span {
  font-size: min(calc(18/750 * 100vw), 18px);
}

.modal-close {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #ca254f;
  border-radius: 50%;
  top: -3%;
  right: -3%;
  z-index: 9;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 20px;
  /* 棒の高さ */
  background: #fff;
  /* バツ印の色 */
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal__content p {
  margin: 0;
  letter-spacing: 0;
}
.modal__content p + p {
  margin-top: 1.63em;
}
p.modal-close {
  margin: 0;
}

@media screen and (min-width: 781px) {
  .modal__content {
    padding: 0 0 14px 50px;
  }
}


/* ---------------------------------------
  slider
--------------------------------------- */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slider .slick-prev, 
.slider .slick-next {
  width: min(calc(66/750 * 100vw), 66px);
  height: min(calc(66/750 * 100vw), 66px);
  z-index: 6;
}
.slider .slick-prev::before, 
.slider .slick-next::before,
.slider .slick-dots li button::before {
  content: none;
}
.slider .slick-prev {
  background: url(../img/slide_prev_sp.png) no-repeat center / contain;
}
.slider .slick-next {
  background: url(../img/slide_next_sp.png) no-repeat center / contain;
}

.slider .slick-dots li,
.slider .slick-dots li button {
  width: min(calc(18/750 * 100vw), 18px);
  height: min(calc(18/750 * 100vw), 18px);
  line-height: min(calc(18/750 * 100vw), 18px);
  padding: 0;
  border-radius: 50%;
}
.slider .slick-dots li {
  margin: 0 min(calc(16/750 * 100vw), 16px);
}
.slider .slick-dots li button {
  background-color: #fff;
}

@media screen and (min-width: 781px) {
  .slider-area {
    width: 65.2%;
    max-width: 652px;
  }

  .slider .slick-prev,
  .slider .slick-next {
    width: min(5.6vw, 56px);
    height: min(5.6vw, 56px);
  }
  .slider .slick-prev {
    background: url(../img/slide_prev_pc.png) no-repeat center / contain;
    left: -5.5%;
  }
  .slider .slick-next {
    background: url(../img/slide_next_pc.png) no-repeat center / contain;
    right: -5.5%;
  }

  .slider .slick-dots li,
  .slider .slick-dots li button {
    width: min(1.4vw, 14px);
    height: min(1.4vw, 14px);
    line-height: min(1.4vw, 14px);
  }

  .slider .slick-dots li {
    margin: 0 min(1.3vw, 13px);
  }
}

/* ---------------------------------------
  header
--------------------------------------- */
header {
  background-color: #fff;
}

/* ---------------------------------------
  fv
--------------------------------------- */
.fv {
  background: url(../img/fv_bg_sp.png) no-repeat center top / cover, #fff2d1;
}
.fv .ttl {
  margin-bottom: min(calc(236/780 * 100vw), 236px);
}

@media screen and (min-width: 781px) {
  .fv {
    background-image: url(../img/fv_bg_pc.png);
  }
  .fv .ttl {
    margin-bottom: max(-9.4vw, -94px);
  }
}

/* ---------------------------------------
  new
--------------------------------------- */
.new {
  background: url(../img/new_bg_sp.png) no-repeat center top / cover;
}

@media screen and (min-width: 781px) {
  .new {
    background-image: url(../img/new_bg_pc.png);
  }
  .new-01 {
    margin-bottom: max(calc(-11/780 * 100vw), -11px);
  }
}

/* ---------------------------------------
  catch-01
--------------------------------------- */
.catch-01 {
  background: url(../img/catch_01_bg_sp.png) no-repeat center top / cover;
}

@media screen and (min-width: 781px) {
  .catch-01 {
    background-image: url(../img/catch_01_bg_pc.png);
  }
}

/* ---------------------------------------
  nayami
--------------------------------------- */
.nayami {
  background: url(../img/nayami_bg_bottom_sp.png) no-repeat center bottom / 100% auto, url(../img/nayami_bg_top_sp.png) repeat-y center top / 100% auto, #cfd9e7;
}

.nayami-slider .slick-prev,
.nayami-slider .slick-next {
  top: 52%;
}
.nayami-slider .slick-dots li.slick-active button {
  background-color: #0a346b;
}
.nayami-slider .slick-dots {
  bottom: max(calc(-46/750 * 100vw), -46px);
}

@media screen and (min-width: 781px) {
  .nayami {
    background: url(../img/nayami_bg_bottom_pc.png) no-repeat center bottom / 100% auto, url(../img/nayami_bg_top_pc.png) repeat-y center top / 100% auto, #cfd9e7;
  }

  .nayami-slider .slick-prev,
  .nayami-slider .slick-next {
    top: 50%;
  }
  
  .nayami-slider .slick-dots {
    bottom: max(-4.5vw, -45px);
  }
}

/* ---------------------------------------
  support
--------------------------------------- */
.support {
  background: url(../img/support_bg_sp.png) no-repeat center top / 100% auto;
}

.support-01 {
  margin-bottom: min(calc(776/780 * 100vw), 776px);
}

@media screen and (min-width: 781px) {
  .support {
    background: url(../img/support_bg_pc.png) no-repeat center top / 100% auto;
  }

  .support-01 {
    margin-bottom: min(18.1vw, 181px);
  }
}

/* ---------------------------------------
  review
--------------------------------------- */
.review {
  padding-bottom: min(calc(974/780 * 100vw), 97px);
}

.review-slider .slick-dots {
  bottom: max(calc(-27/750 * 100vw), -27px);
}
.review-slider .slick-dots li button {
  background-color: #2b2b2b;
}
.review-slider .slick-dots li.slick-active button {
  background-color: #f07200;
}

@media screen and (min-width: 781px) {
  .review {
    padding-bottom: min(6.4vw, 64px);
  }

  .review-slider .slick-dots {
    bottom: max(-1.1vw, -11px);
  }
}

/* ---------------------------------------
  catch-02
--------------------------------------- */
.catch-02 {
  background: url(../img/catch_02_bg_sp.png) no-repeat center top / cover;
  padding-top: min(calc(484/780 * 100vw), 484px);
}

@media screen and (min-width: 781px) {
  .catch-02 {
    background-image: url(../img/catch_02_bg_pc.png);
    padding-top: 0;
  }
}

/* ---------------------------------------
  seibun
--------------------------------------- */
.seibun-01 {
  background: url(../img/seibun_01_bg_sp.png) no-repeat center bottom / 100% auto;
  margin-top: max(calc(-36/780 * 100vw), -36px);
  padding-bottom: min(calc(206/780 * 100vw), 206px);
}
.seibun-02 {
  background: url(../img/seibun_02_bg_sp.png) no-repeat center bottom / 100% auto;
  margin-top: max(calc(-94/780 * 100vw), -94px);
  padding-bottom: min(calc(72/780 * 100vw), 72px);
}
.seibun-02 .seibun-02-02 {
  margin-top: max(calc(-28/780 * 100vw), -28px);
}

@media screen and (min-width: 781px) {
  .seibun-01 {
    background-image: url(../img/seibun_01_bg_pc.png);
    margin-top: max(-5.7vw, -57px);
    padding-bottom: min(13.7vw, 137px);
  }

  .seibun-01 .grid-box p {
    grid-area: 1 / 1;
  }

  .seibun-02 {
    background-image: url(../img/seibun_02_bg_pc.png);
    margin-top: max(-5.9vw, -59px);
    padding-bottom: min(5.4vw, 54px);
  }

  .seibun-02 .seibun-02-01 {
    margin-top: max(-1.6vw, -16px);
  }
  .seibun-02 .seibun-02-02 {
    margin-top: max(-1.2vw, -12px);
  }
}

/* ---------------------------------------
  exciting
--------------------------------------- */
.exciting {
  background: url(../img/exciting_bg_sp.png) no-repeat center top / 100% auto;
  padding-bottom: min(calc(865/780 * 100vw), 865px);
}

@media screen and (min-width: 781px) {
  .exciting {
    background-image: url(../img/exciting_bg_pc.png);
    padding-bottom: min(31.2vw, 312px);
  }

  .exciting-01 {
    margin-top: max(-13.9vw, -139px);
  }
}

/* ---------------------------------------
  howto
--------------------------------------- */
.howto {
  background: url(../img/howto_bg_sp.png) no-repeat center top / 100% auto;
  margin-top: max(calc(-3/780 * 100vw), -3px);
}

@media screen and (min-width: 781px) {
  .howto {
    background-image: url(../img/howto_bg_pc.png);
    margin-top: max(-9.3vw, -93px);
  }
}

/* ---------------------------------------
  catch-03
--------------------------------------- */
.catch-03 {
  background: url(../img/catch_03_bg_sp.png) no-repeat center top / cover;
}

.catch-03 .grid-box {
  grid-template-columns: 1fr 1fr;
  direction: rtl;
}

@media screen and (min-width: 781px) {
  .catch-03 {
    background-image: url(../img/catch_03_bg_pc.png);
  }
  .catch-03 .grid-box {
    grid-template-columns: 1fr;
    direction: initial;
  }
}

/* ---------------------------------------
  message
--------------------------------------- */
.message {
  background: url(../img/message_bg_sp.png) no-repeat center top / 100% auto;
}

@media screen and (min-width: 781px) {
  .message {
    background-image: url(../img/message_bg_pc.png);
  }
}

/* ---------------------------------------
  faq
--------------------------------------- */
.qa-list {
  margin-bottom: min(calc(80/780 * 100vw), 80px);
}
.qa-box + .qa-box {
  margin-top: min(5.13vw, 40px);
}

.qa-box dt {
  position: relative;
  cursor: pointer;
}
.qa-box dt::after {
  content: '';
  cursor: inherit;
  position: absolute;
  right: min(3.21vw, 25px);
  top: min(7.18vw, 56px);
  background-color: #2b2b2b;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: min(calc(29/780 * 100vw), 29px);
  height: min(calc(17/780 * 100vw), 17px);
  transform: rotate(0deg) translateY(0);
  transition: all .5s;
}
.qa-box dt.open::after {
  transform: rotate(180deg) translateY(-10%);
}

@media screen and (min-width: 781px) {
  .qa-list {
    margin-bottom: min(8vw, 80px);
  }
  .qa-box + .qa-box {
    margin-top: min(4vw, 40px);
  }

  .qa-box dt::after {
    width: min(2.3vw, 23px);
    height: min(1.4vw, 14px);
    top: min(4.5vw, 45px);
    right: min(3vw, 30px);
  }
}

/* ---------------------------------------
  catch-04
--------------------------------------- */
.catch-04 {
  background: url(../img/catch_04_bg_sp.png) no-repeat center top / cover;
}

@media screen and (min-width: 781px) {
  .catch-04 {
    background-image: url(../img/catch_04_bg_pc.png);
  }
}

/* ---------------------------------------
  tokuten
--------------------------------------- */
.tokuten {
  background: url(../img/tokuten_bg_sp.png) no-repeat center top / cover;
}

@media screen and (min-width: 781px) {
  .tokuten {
    background-image: url(../img/tokuten_bg_pc.png);
  }
}

/* ---------------------------------------
  info
--------------------------------------- */
.info {
  padding: min(calc(46/780 * 100vw), 46px) 0 min(8.46vw, 66px);
  color: #252525;
  font-size: min(2.2vw, 18px);
  font-weight: 500;
  line-height: 1.68;
}
.info .inner {
  width: 88.46%;
  max-width: 690px;
}

.info dl {
  border: min(0.26vw, 2px) solid #e0e1e1;
  text-align: justify;
}
.info dt {
  font-size: min(3.08vw, 24px);
  line-height: 2.8;
  padding-left: 0.55em;
  background-color: #e0e1e1;
  letter-spacing: 0.05em;
}
.info dd {
  padding: 1.4em 0.8em 1.95em;
  letter-spacing: 0.05em;
}
.info dd .sub {
  font-size: 0.7em;
  vertical-align: -0.1em;
}

.info .info-bottom-txt {
  margin-top: 1.3em;
}

@media screen and (min-width: 781px) {
  .info {
    padding: min(5.6vw, 56px) 0 min(5.3vw, 53px);
    font-size: min(1.4vw, 14px);
    line-height: 1.7;
  }
  .info .inner {
    width: 92%;
    max-width: 920px;
  }

  .info dl {
    border-width: 2px;
  }
  .info dt {
    font-size: min(1.9vw, 19px);
    line-height: 2.94;
    padding-left: min(2.2vw, 22px);
  }
  .info dd {
    padding: 1em 1.6em 1.07em;
    letter-spacing: 0.06em;
  }

  .info .info-bottom-txt {
    margin-top: 1em;
  }
}

/* ---------------------------------------
  hanbai
--------------------------------------- */
.hanbai {
  border-bottom: #727171 solid 0.51vw;
  padding-bottom: 8.21vw;
}
@media screen and (min-width: 781px) {
  .hanbai {
    border-width: 4px;
    padding-bottom: min(5vw, 50px);
  }
  .hanbai .inner {
    width: 80%;
    max-width: 800px;
  }
}

/* ---------------------------------------
  footer
--------------------------------------- */
footer {
  width: 100%;
  padding: 6.15vw 0 12.82vw;
  text-align: center;
}

footer h2 {
  width: 100%;
  margin-bottom: 12px;
  width: calc(199/750 * 100vw);
  max-width: 199px;
  margin: 0 auto 2%;
}

footer p {
  font-size: min(calc(12/750 * 100vw), 12px);
}

footer p a {
  text-decoration: underline;
  color: #000;
  margin: 0 0.5em;
}

footer p a:hover {
  text-decoration: none;
}

@media screen and (min-width: 781px) {
  footer {
    padding: 36px 0;
  }
}

/* -----------------------------
	Animation
----------------------------- */
.shine {
  position: absolute;
  width: min(calc(670/780 * 100vw), 670px);
  height: min(calc(190/780 * 100vw), 190px);
  overflow: hidden;
  top: 0;
  left: min(calc(14/780 * 100vw), 14px);
  z-index: 2;
  pointer-events: none;
  border-radius: 2em;
  mix-blend-mode: overlay;
}

@media screen and (min-width: 781px) {
  .shine {
    left: min(1.4vw, 14px);
    top: 0;
    width: min(86vw, 860px);
    height: min(14.4vw, 144px);
  }
}

.shine::before {
  content: "";
  width: 200%;
  height: 200%;
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 1) 45%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#00ffffff', GradientType=0);
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: 1;
  animation: shine 1.8s linear infinite;
}

@keyframes shine {
  from,
  0% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(45deg);
    transform: translate3d(-100%, 0, 0) rotate(45deg);
    opacity: 0;
  }
  20% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(45deg);
    transform: translate3d(-100%, 0, 0) rotate(45deg);
    opacity: 1;
  }
  70% {
    -webkit-transform: translate3d(100%, 0, 0) rotate(45deg);
    transform: translate3d(100%, 0, 0) rotate(45deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translate3d(100%, 0, 0) rotate(45deg);
    transform: translate3d(100%, 0, 0) rotate(45deg);
    opacity: 0;
  }
  to,
  100% {
    -webkit-transform: translate3d(-100%, 0, 0) rotate(45deg);
    transform: translate3d(-100%, 0, 0) rotate(45deg);
    opacity: 0;
  }
}

@keyframes move_btn {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(0);
  }
  85% {
    transform: translateX(0);
  }
  90% {
    transform: translateX(2%);
  }
  95% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0);
  }
}