/* reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
}

/* header */
.header {
  padding: 16px 0;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;

  @media (max-width: 767px) {
    max-width: 100%;
    margin: 0;
  }
}
.header_logo {
  padding-left: 0px;
  width: 240px;

  @media (max-width: 767px) {
    margin-left: 4%;
    width: 40%;
  }
}

/* common */
.max_image {
  width: 100%;
  height: auto;
}

.lp_slider {
  position: relative;
  padding: 20px;
}

.lp_slider .slick-track {
  display: flex;
}

.lp_slider .slick-slide {
  padding: 0 10px;
}

.lp_slider .slick-slide:not(.slick-current) {
  opacity: 0.5;
}

.lp_slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 1;
  border: none;
  background: none;
  font-size: 0;
  cursor: pointer;
}

.lp_slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: default;
}

.lp_slider .slick-prev {
  left: 20%;

  @media (max-width: 767px) {
    left: 0;
  }
}

.lp_slider .slick-next {
  right: 20%;

  @media (max-width: 767px) {
    right: 0;
  }
}

.lp_slider .slick-prev:before,
.lp_slider .slick-next:before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(/LP/tomobataraki_place/images/2_slider_icon.png) no-repeat center center;
  background-size: contain;
}

.lp_slider .slick-prev:before {
  transform: rotate(180deg);
}

.lp_slider .slick-dots {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 10px;
}

.lp_slider .slick-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
  border: 1px solid #005ca8;
  font-size: 0;
}

.lp_slider .slick-dots li.slick-active button {
  background: #005ca8;
}

/* footer */
.footer {
  padding: 50px 0;

  @media (max-width: 767px) {
    padding: 32px 0;
  }
}

.footer_upper {
  margin-bottom: 10px;
  text-align: center;
}

.footer_logo {
  padding-top: 37px;
}

.footer_logo_img {
  width: 246px;
}

.pcOnly {
  display: inherit !important;
}

.spOnly {
  display: none !important;
}

@media print, screen and (max-width: 767px) {
  .pcOnly {
    display: none !important;
  }

  .spOnly {
    display: inherit !important;
  }
}

.form_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1vw;

  @media (max-width: 767px) {
    gap: 3vw;
  }
}

.form_button > span {
  font-size: 1.4vw;
  font-weight: bold;
  color: #005ca8;

  @media (max-width: 767px) {
    font-size: 4vw;
  }
}

.form_button a {
  position: relative;
  text-decoration: none;
  padding: 1.3vw 13vw 1.2vw;
  transition-duration: 200ms;
  transition-property: transform;
  margin-bottom: 1vw;

  @media (max-width: 767px) {
    padding: 4.3vw 13vw 3.3vw;
    margin-bottom: 2vw;
  }
}

.form_button a:before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5vw;
  background-color: #ff3e79;
  border: 0.3vw solid #003a84;
  border-bottom: 0.8vw solid #003a84;
  transition-duration: 200ms;
  transition-property: border-bottom;

  @media (max-width: 767px) {
    border-width: 1vw;
    border-radius: 8.5vw;
    border-bottom-width: 2.5vw;
  }
}

.form_button a:hover {
  transform: translateY(0.5vw);

  @media (max-width: 767px) {
    transform: translateY(1.5vw);
  }
}

.form_button a:hover:before {
  border-bottom-width: 0.3vw;

  @media (max-width: 767px) {
    border-bottom-width: 1vw;
  }
}

.form_button a > span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 2.3vw;
  font-weight: bold;

  @media (max-width: 767px) {
    font-size: 5.5vw;
  }
}

.form_button a > img {
  position: absolute;
  top: calc(50% + 0.2vw);
  right: 1.7vw;
  transform: translateY(-50%);
  width: 3vw;

  @media (max-width: 767px) {
    width: 6vw;
    top: calc(50% + 0.8vw);
    right: 4vw;
  }
}

.footer_lower {
  margin-top: 32px;
  margin-right: 0;
  margin-bottom: 30px;
  font-size: 12px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 50px;

  @media (max-width: 767px) {
    display: block;
    margin-top: 10px;
  }
}

.footer_lower_withicon {
  margin-right: 0;
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;

  @media (max-width: 767px) {
    padding-top: 10px;
    padding-left: 9px;
  }
}

.footer_lower_withicon:after {
  content: "";
  display: inline-block;
  background: url(../images/footer_link_icon.png) no-repeat top right;
  background-size: 11px 9px;
  width: 11px;
  height: 9px;
}

.footer_lower_withicon a {
  margin-right: 6px;
  vertical-align: top;
  font-size: 12px;
  color: #333;
  text-decoration: none;
}

.footer_lower_withicon a:hover {
  color: #3073bb;
  transition: all 0.3sease-in-out;
}

.footer_copy {
  font-size: 11px;
  text-align: center;
}

/* content */
.step1 {
  background-color: #e5fbff;
}

.step1_button {
  padding: 30px 0;
}

.step2 {
  background-color: #e5fbff;
}

.step2_area {
  background-color: #005ca8;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;

  @media (max-width: 767px) {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

.step2_inner {
  padding: 2vw 13vw 3vw;

  @media (max-width: 767px) {
    padding: 0 20px 20px;
  }
}

.step2_img_text {
  margin: 10px 0 20px;
}

.step2_img_pc {
  width: 75%;
  margin: 0 auto;
  display: block;
}

.step2_head {
  padding: 4vw 0 2vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  align-items: center;

  @media (max-width: 767px) {
    padding: 8vw 0 7vw;
    gap: 3vw;
  }
}

.step2_head > span {
  color: #ffffff;
}

.step2_head > span:first-child {
  font-size: 1.4vw;

  @media (max-width: 767px) {
    font-size: 4vw;
  }
}

.step2_head > span:last-child {
  font-size: 2.2vw;
  font-weight: bold;

  @media (max-width: 767px) {
    font-size: 6vw;
  }
}

.step2_box {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  background-color: #ffffff;
  padding: 4vw 3vw;
  border-radius: 14px;

  @media (max-width: 767px) {
    border-radius: 20px;
    padding: 8vw 6vw;
  }
}

.step2_box_inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3vw;
}

.step2_box_inner > div {
  background-color: #f4f4f4;
  border-radius: 3vw;
}

.step2_box_sp {
  display: flex;
  flex-direction: column;
  gap: 3vw;
  margin-bottom: 7vw;
}

.step2_box_sp > div {
  background-color: #f4f4f4;
  border-radius: 10vw;
}

.step2_box_sp p:not(:last-child) {
  margin-bottom: 12vw;
}

.step2_box_inner:first-child {
  align-items: center;
}

.step2_box h3 {
  font-size: 1.4vw;
  text-align: center;
  color: #005ca8;
  font-weight: bold;
  line-height: 1.5;

  @media (max-width: 767px) {
    font-size: 5vw;
    line-height: 1.6;
  }
}

.step2_box p {
  font-size: 1.2vw;
  text-align: left;
  color: #333333;
  line-height: 1.6;

  @media (max-width: 767px) {
    font-size: 4.2vw;
  }
}

.step2_box p > span {
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #fff43e 50%);
  background-size: 200% 0.2em;
  background-position: left -100% center;
  padding-bottom: 0.6em;
}

.step2_box img {
  display: block;
}

.step2_arrow {
  display: block;
  margin: 0 auto;
  width: 2vw;

  @media (max-width: 767px) {
    width: 12vw;
  }
}

.step2_bottom {
  margin-bottom: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.step2_bottom_image {
  width: 7vw;
  height: auto;
  margin-right: 1vw;

  @media (max-width: 767px) {
    width: 21vw;
    margin-right: 4vw;
  }
}

.step2_bottom > div {
  margin-bottom: 2vw;
}

.step2_bottom p:first-child {
  color: #ffffff;
  font-size: 1.5vw;
  margin-left: 0.6vw;

  @media (max-width: 767px) {
    font-size: 4.5vw;
  }
}

.step2_bottom p:last-child {
  color: #ffffff;
  font-size: 2.3vw;
  margin-top: 1.3vw;
  font-weight: bold;

  @media (max-width: 767px) {
    font-size: 6vw;
    line-height: 1.6;
  }
}

.step2_bottom p:last-child span {
  color: #005ca8;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #fff43e 50%);
  background-size: 200% 1.3em;
  background-position: left -100% center;
  padding-bottom: 0.1em;
  padding-left: 0.2em;
  padding-right: 0.2em;
  margin: 0 0.6vw;
  font-weight: bold;
}

.step3_head_text {
  color: #005ca8;
  font-weight: bold;
  font-size: 1.8vw;
  margin: 3vw 0 0;
  text-align: center;

  @media (max-width: 767px) {
    font-size: 4.5vw;
  }
}

.step3 {
  background-color: #005ca8;
}

.step3_area {
  padding: 20px 0 0;
  background-color: #e5fbff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  overflow: hidden;

  @media (max-width: 767px) {
    padding: 50px 0 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

.step3_inner {
  padding: 20px;
}

.step3_head {
  width: 65%;
  margin: 0 auto;
  display: block;
  margin-top: 50px;
  margin-bottom: 30px;

  @media (max-width: 767px) {
    margin-top: 0;
    margin-bottom: 30px;
    width: 95%;
  }
}

.step3_text {
  font-size: 1.4vw;
  text-align: center;
  line-height: 2.3;

  @media (max-width: 767px) {
    font-size: 4.4vw;
    text-align: left;
    line-height: 1.6;
  }
}

.step3_text > span {
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #fff43e 50%);
  background-size: 200% 1.3em;
  background-position: left -100% center;
  padding-bottom: 0.1em;

  @media (max-width: 767px) {
    line-height: 1.6;
  }
}

.step3_button {
  padding: 20px 0;
}

.step4 {
  background-color: #e5fbff;
}

.step4_area {
  padding: 20px 0 0;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  background-color: #ace6ff;
  overflow: hidden;

  @media (max-width: 767px) {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

.step4_inner {
  padding: 20px;
}

.step4_image {
  width: 40vw;
  margin: 20px auto;
  display: block;
}

.step4_text {
  font-size: 1.4vw;
  text-align: center;
  line-height: 1.6;

  @media (max-width: 767px) {
    font-size: 4.4vw;
    text-align: left;
    line-height: 1.6;
  }
}

.step4_text > span {
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, #fff43e 50%);
  background-size: 200% 1.3em;
  background-position: left -100% center;
  padding-bottom: 0.1em;

  @media (max-width: 767px) {
    line-height: 1.6;
  }
}

.step4_head_text {
  color: #005ca8;
  font-weight: bold;
  font-size: 4.5vw;
  margin: 30px 0 0;
  text-align: center;
}

.step4_head {
  width: 65%;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
  padding-top: 30px;

  @media (max-width: 767px) {
    padding-top: 20px;
    margin-bottom: 30px;
    width: 95%;
  }
}

.step5 {
  background-color: #ace6ff;
}

.step5_area {
  padding: 20px 0;
  background-color: #e5fbff;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;

  @media (max-width: 767px) {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}

.step5_button {
  padding: 20px 0 40px;
}

.step5_head {
  width: 65%;
  margin: 0 auto;
  display: block;
  margin-bottom: 30px;
  margin-top: 20px;

  @media (max-width: 767px) {
    width: 95%;
  }
}

.step5_image {
  width: 30vw;
  margin: 0 auto;
  display: block;

  @media (max-width: 767px) {
    width: 100%;
  }
}

.follow_button {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6.5vw;
  background-color: rgba(0, 0, 0, 0.2);
  justify-content: center;
  z-index: 1;
  opacity: 0;
  user-select: none;
  pointer-events: none;
  transition-duration: 200ms;
  transition-property: opacity;

  @media (max-width: 767px) {
    height: 18vw;
  }
}

.follow_button.active {
  opacity: 1;
  user-select: auto;
  pointer-events: all;
}

.follow_button.footer-remove {
  opacity: 0;
  user-select: none;
  pointer-events: none;
}

.follow_button a {
  padding: 1vw 13vw 0.8vw;

  @media (max-width: 767px) {
    padding: 3.3vw 13vw 3.2vw;
  }
}

.follow_button a:before {
  border-bottom-width: 0.6vw;

  @media (max-width: 767px) {
    border-width: 0.6vw;
    border-bottom-width: 1.5vw;
  }
}

.follow_button a:hover {
  transform: translateY(0.3vw);

  @media (max-width: 767px) {
    transform: translateY(0.9vw);
  }
}

.follow_button a:hover:before {
  @media (max-width: 767px) {
    border-bottom-width: 0.6vw;
  }
}

.follow_button a span {
  font-size: 2vw;

  @media (max-width: 767px) {
    font-size: 4.5vw;
  }
}

.follow_button a img {
  width: 2vw;

  @media (max-width: 767px) {
    width: 5vw;
  }
}
