@charset "utf-8";
/* https://piccalil.li/blog/a-modern-css-reset/ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-gray);
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}
/* common */
html {
  font-size: 62.5%;
}
:root {
  --color-white: #FFF;
  --color-black: #333;
  --color-red: #FF4750;
  --color-green: #4DAAB3;
  --color-gray: #F5F5F5;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
.inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.btn a {
  font-size: max(1.1vw,1.6rem);
  text-decoration: none;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.2);
  border-radius: 5rem;
  padding: 1.2em 6em;
  display: inline-block;
  position: relative;
  font-weight: 700;
  transition: 0.3s;
}
.btn a::before {
  content: " ";
  display: block;
  width: 2.2em;
  height: 2.2em;
  top: calc(50% - 1.1em);
  right: 0.7em;
  position: absolute;
  border-radius: 5rem;
}
.btn a::after {
  content: " ";
  display: block;
  width: 0.6em;
  height: 0.6em;
  top: calc(50% - 0.3em);
  right: 1.5em;
  position: absolute;
  border-radius: 5rem;
  transition: 0.3s;
  background: url(../image/arrow_white.svg) no-repeat 54% center rgba(255, 255, 255, 1);
  background-size: 20%;
}
.btn a:hover {
  box-shadow: none;
}
.btn a:hover::after {
  top: calc(50% - 1.1em);
  right: 0.7em;
  width: 2.2em;
  height: 2.2em;
}
.btn_entry a {
  background-color: var(--color-red);
  color: var(--color-white);
}
.btn_entry a::before {
  background-color: var(--color-white);
  opacity: 0.5;
}
.btn_entry a:hover::after {
  background: url(../image/arrow_red.svg) no-repeat 54% center rgba(255, 255, 255, 1);
  background-size: 20%;
}
.btn_dl a {
  background-color: var(--color-white);
  color: var(--color-green);
}
.btn_dl a::before {
  background-color: var(--color-green);
  opacity: 0.5;
}
.btn_dl a:hover::after {
  background: url(../image/arrow_green.svg) no-repeat 54% center rgba(255, 255, 255, 1);
  border: 2px solid var(--color-green);
  background-size: 20%;
}
.brn_layout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2vw;
  row-gap: 1.6rem;
}
.scroll-bg {
  width: 100%;
  height: 14vw;
  background: url('../image/main_bg_txt.svg') repeat-x;
  background-size: auto 100%;
  animation: scroll-x 120s linear infinite;
  position: absolute;
  bottom: -2vw;
}
.sp_br {
  display: none;
}
@media screen and (max-width: 724px) {
  .btn a {
    width: 100%;
    min-width: 300px;
    max-width: 320px;
    padding: 1em 4em;
    text-align: center;
  }
  .brn_layout {
    flex-direction: column;
    align-items: center;
  }
  .scroll-bg {
    height: 28vw;
  }
  .sp_br {
    display: initial;
  }
}
@keyframes scroll-x {
  0% { background-position: 0 0; }
  100% { background-position: 100% 0; }
}
/* mv */
#main_visual .wrap {
  width: 100%;
  background: url(../image/bg_fv.webp) no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 6.4rem 0 8.8rem;
  position: relative;
}
#main_visual .content {
  width: 94%;
  max-width: 1400px;
  position: relative;
  z-index: 2;
}
#main_visual .main_copy  {
  font-size: max(5.0vw,5.4rem);
  color: var(--color-white);
  text-shadow: 0px 2px 14px rgba(0, 0, 0, 0.6);
  line-height: 140%;
  margin-bottom: 2rem;
}
#main_visual .sub_copy {
  font-size: max(1.88vw,2.8rem);
  color: var(--color-white);
  text-shadow: 0px 2px 14px rgba(0, 0, 0, 0.6);
  line-height: 160%;
  font-weight: 700;
  margin-bottom: 1.6em;
}
#main_visual .sub_copy br.sp_br {
  display: none;
}
#main_visual .cp_copy {
  font-size: max(2.3vw,2.5rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}
#main_visual .cp_copy span {
  display: inline-block;
  background: linear-gradient(#FFD752 , #FFBD42);
  color: var(--color-black);
  padding: 0 0.8em 0.1em;
  border-radius: 1rem;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}
#main_visual .cp_copy b {
  font-size: 130%;
}
#main_visual .cp_copy b.inter {
  font-size: 160%;
}
#main_visual .cp_copy br {
  display: none;
}
@media screen and (max-width: 724px) {
  #main_visual .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #main_visual .wrap {
    background: url(../image/bg_fv_sp.webp) no-repeat center top;
    background-size: cover;
    padding: 1.6rem 0 4.8rem;
  }
  #main_visual .sub_copy {
    margin-bottom: 1.2em;
    font-size: max(1.48vw,2.4rem);
  }
    #main_visual .sub_copy br {
    display: inherit;
  }
  #main_visual .cp_copy {
    text-align: center;
  }
  #main_visual .cp_copy br {
    display: none;
  }
  #main_visual .mv_ing::after {
    content: " ";
    width: 100vw;
    height: 80vw;
    display: block;
    background: url(../image/bg_fv_img.webp) no-repeat center center;
    background-size: 100%;
    margin: -10vw 0 -14vw;
  }
}
@media screen and (max-width: 599px) {
  #main_visual .wrap {
    margin-bottom: 4rem;
  }
  #main_visual .main_copy  {
    font-size: max(5.0vw,3.6rem);
    margin-bottom: 1rem;
  }
  #main_visual .cp_copy {
    font-size: max(1.8vw,2.0rem);
    line-height: 140%;
    white-space: nowrap;
  }
  #main_visual .cp_copy span {
    padding: 0.4em 0.8em 0.2em;
  }
  #main_visual .sub_copy {
    font-size: max(1.2vw,1.6rem);
  }
}
/* trouble */
#trouble .wrap {
  background: var(--color-gray);
  padding: 1px 0;
}
#trouble .content {
  width: 94%;
  max-width: 1200px;
  margin: 4vw auto; 
}
#trouble .section_tit {
  text-align: center;
  font-size: max(2.8vw,2.2rem);
  margin-bottom: 1.8em;
}
#trouble .section_tit span {
  font-size: max(1.4vw,1.4rem);
  display: block;
  color: var(--color-green);
  margin-bottom: 0.5em;
}
#trouble .list {
  display: flex;
  gap: 2%;
}
#trouble .list .block {
  background-color: var(--color-white);
  text-align: center;
  border-radius: 2rem;
  padding: 3.2rem 1.2vw ;
  flex: 1;
}
#trouble .list .block .tit {
  font-size: max(1.4vw,1.8rem);
  color: var(--color-green);
  margin-bottom: 0.8em;
}
#trouble .list .block .txt {
  font-size: max(1.0vw,1.6rem);
}
#trouble .list .block .img img {
  width: 80%;
  max-height: 180px;
  margin: -8.0rem auto 2rem;
}
@media screen and (max-width: 724px) {
  #trouble .list {
    flex-direction: column;
    align-items: center;
  }
  #trouble .list .block {
    width: 90%;
    max-width: 360px;
    margin-top: 3.2rem;
  }
  #trouble .list .block:nth-child(2) {
    margin-top: 6.4rem;
  }
  #trouble .list .block .img img {
    width: 60%;
    max-height: 140px;
  }
}
/* point */
#point .wrap {
  padding-bottom: 8vw;
  background-color: var(--color-white);
}
#point .wrap::before {
  content: " ";
  display: block;
  position: relative;
  top: -1px;
  width: 100%;
  height: 7vw;
  margin-bottom: 4.8rem;
  background: url(../image/bg_point.svg) no-repeat center top;
  background-size: 100%;
}
#point .content {
  width: 94%;
  max-width: 1820px;
  margin: 0 auto;
}
#point .section_tit {
  text-align: center;
  font-size: max(3.4vw,2.4rem);
  margin-bottom: 1.2em;
}
#point .section_tit span {
  color: var(--color-red);
}
#point .list {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}
#point .list .block {
  text-align: center;
  width: 32%;
}
#point .list .block .img img {
  border-radius: 2rem;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.2);
}
#point .list .block .img span {
  font-size: max(1.2vw,1.4rem);
  color: var(--color-white);
  background: linear-gradient(#FFD752 , #FFBD42);
  padding: 0.5em 1.2em;
  display: inline-block;
  border-radius: 0.4rem;
  margin-bottom: 1em;
  margin-top: -1em;
}
#point .list .block .tit {
  font-size: max(1.4vw,2.0rem);
  color: var(--color-red);
  margin-bottom: 0.8em;
  font-weight: 700;
  margin-bottom: 0.8em;
}
#point .list .block .txt {
  font-size: max(1.0vw,1.6rem);
}
@media screen and (max-width: 960px) {
  #point .list {
    row-gap: 4rem;
  }
  #point .list .block {
    text-align: center;
    width: 49%;
  }
}
@media screen and (max-width: 724px) {
  #point .list {
    flex-direction: column;
    align-items: center;
  }
    #point .list .block {
      width: 92%;
      max-width: 360px;
  }
  #point .list .block .img img {
    border-radius: 1rem;
  }
  #point .wrap::before {
    margin-bottom: 1.6rem;
  }
}
/* plan */
#plan .wrap {
  position: relative;
  padding: 8vw 0;
  margin-bottom: 8vw;
}
#plan .wrap::after {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  background: url(../image/bg_plan.svg) no-repeat right top rgba(228, 248, 248, 1);
  border-radius: 0 2rem 2rem 0;
  width: 94%;
  max-width: 1820px;
  height: 100%;
}
#plan .wrap::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 46vw;
  background-color: var(--color-white);
}
#plan .content {
  position: relative;
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}
#plan .section_tit {
  text-align: center;
  font-size: max(2.8vw,2.2rem);
  margin-bottom: 1.2em;
}
#plan .section_tit span {
  font-size: max(1.4vw,1.4rem);
  display: block;
  color: var(--color-green);
  margin-bottom: 0.5em;
}
#plan .list {
  display: flex;
  gap: 2.4vw;
}
#plan .list .block {
  flex: 1;
  border-radius: 2rem;
  box-shadow: 0px 2px 20px  rgba(0, 0, 0, 0.1);
  padding: 4rem 2.4vw;
  position: relative;
}
#plan .list .block .recommend {
  text-align: center;
  position: absolute;
  font-size: max(1.2vw,1.4rem);
  top: -1.0em;
  left: 0;
  width: 100%;
}
#plan .list .block .recommend span {
  color: var(--color-white);
  background: linear-gradient(-45deg, #FFBD42 , #FFA600);
  font-weight: 700;
  display: inline-block;
  border: 4px solid var(--color-white);
  border-radius: 0.8rem;
  padding: 0.1em 0.4em;
}
#plan .block .tit {
  font-size: max(2.0vw,2.0rem);
  text-align: center;
  margin-bottom: 0.5em;
}
#plan .block .txt {
  font-size: max(1.0vw,1.6rem);
  text-align: center;
  margin-bottom: 1.4em;
}
#plan .block .option {
  width: 90%;
  margin: 1.6vw auto 0;
}
#plan .block .option .option_tit {
  font-size: max(1.0vw,1.8rem);
  font-weight: 700;
  margin-bottom: 0.5em;
}
#plan .block .option ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}
#plan .block .option li {
  width: 49%;
  font-size: max(0.9vw,1.6rem);
  text-align: center;
  border: 1px solid ;
  border-radius: 0.4rem;
  margin-bottom: 2%;
  font-weight: 700;
  padding: 0.2em 0.2em;
}
#plan .main_plan {
  background-color: var(--color-green);
}
#plan .main_plan .plan_box {
  background-color: var(--color-white);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 1.4vw 0 1.2vw;
  margin-bottom: 1vw;
}
#plan .main_plan .plan_box .plan_tit {
  font-size: max(1.0vw,1.6rem);
}
#plan .main_plan .plan_box .plan_tit span {
  color: var(--color-white);
  background-color: var(--color-green);
  padding: 0.2em 0.4em;
  margin-right: 0.4em;
}
#plan .main_plan .plan_box .price01 {
  color: var(--color-red);
  font-size: max(1.4vw,2.0rem);
  font-weight: 700;
}
#plan .main_plan .plan_box .price02 {
  color: var(--color-red);
  font-size: max(1.2vw,1.6rem);
  font-weight: 700;
  margin: 0.5em 0;
}
#plan .main_plan .plan_box .price01 span {
  font-size: 140%;
  letter-spacing: 0.1em;
}
#plan .main_plan .tit ,
#plan .main_plan .txt {
  color: var(--color-white);
}
#plan .main_plan .option li {
  border-color: var(--color-white);
  color: var(--color-white);
}
#plan .attent {
  font-size: max(0.8vw,1.2rem);
}
#plan .custom_plan {
  background-color: var(--color-white);
}
#plan .custom_plan .tit {
  color: var(--color-green);
}
#plan .custom_plan .option li {
  border-color: var(--color-green);
  color: var(--color-green);
}
#plan .custom_plan .attent {
  text-align: right;
}
#plan .custom_plan .plan_box {
  border-top: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.4vw 0;
}
#plan .custom_plan .plan_box p {
  font-size: max(1.34vw,2.0rem);
  font-weight: 700;
  margin: 0.3em 0;
}
@media screen and (max-width: 724px) {
  #plan .wrap::after {
    width: 98%;
  }
  #plan .list {
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
  }
  #plan .list .block {
    width: 92%;
    flex: auto;
    padding: 4rem 2rem 2.4rem;
    border-radius: 1rem;
  }
  #plan .block .option ul {
    flex-direction: column;
    align-items: center;
  }
  #plan .block .option li {
    width: 96%;
    font-size: max(0.9vw,1.4rem);
  }
  #plan .list .block .recommend span {
    border-width: 2px;
  }
  #plan .list .main_plan {
    padding-top: 3.2rem;
  }
  #plan .main_plan .plan_box {
    padding: 2rem;
    margin-bottom: 1.4rem;
    border-radius: 1rem;
    white-space: nowrap;
  }
  #plan .list .custom_plan {
    padding-top: 2.4rem;
  }
  #plan .custom_plan .plan_box {
    flex-direction: column;
    padding: 2rem 0;
    margin-bottom: 2rem;
  }
  #plan .custom_plan .plan_box p {
    font-size: max(1.34vw,1.8rem);
  }
  #plan .block .option .option_tit {
    font-size: max(1.0vw,1.4rem);
  }
}
/* flow */
#flow .wrap {
  margin-bottom: 2vw;
}
#flow .content {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4vw;
}
#flow .section_tit {
  font-size: max(2.4vw,2.2rem);
  margin-bottom: 0.8em;
  white-space: nowrap;
}
#flow .section_tit span {
  font-size: max(1.4vw,1.4rem);
  display: block;
  color: var(--color-green);
  margin-bottom: 0.5em;
}
#flow .list {
  display: flex;
  gap: 1vw;
  justify-content: space-between;
  list-style: none;
  counter-reset: number 0;
}
#flow .list .block {
  text-align: center;
  background-color: var(--color-white);
  border-radius: 1rem;
  padding: 4rem 3.4vw 4rem;
  position: relative;
}
#flow .list .block::before {
  counter-increment: number 1;
	content: counter(number) " ";
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-size: max(2.8vw,3.4rem);
  color: var(--color-green);
  position: absolute;
  left: calc(50% - 0.4em);
  top: -0.8em;
}
#flow .list .block::after {
  content: " ";
  display: block;
  position: absolute;
  z-index: 2;
  width: 4vw;
  height: 2vw;
  background: url(../image/arrow_line.svg) no-repeat center center;
  background-size: 100%;
  bottom: 0.8rem;
  right: -2.5vw;
}
#flow .list .block:last-of-type::after {
  display: none;
}
#flow .list .block .tit {
  font-size: max(1.2vw,1.8rem);
  margin-bottom: 0.8em;
  font-weight: 700;
  margin-bottom: 0.8em;
  white-space: nowrap;
}
#flow .list .block .txt {
  font-size: max(1.0vw,1.6rem);
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  #flow .wrap {
    margin-bottom: 8vw;
  }
  #flow .content {
    flex-wrap: wrap;
  }
  #flow .section_tit {
    text-align: center;
  }
  #flow .section_tit br {
    display: none;
  }
}
@media screen and (max-width: 724px) {
  #flow .content {
    flex-direction: column;
    align-items: center;
  }
  #flow .list {
    flex-direction: column;
    align-items: center;
    width: 92%;
    row-gap: 2.4rem;
  }
  #flow .list .block {
    width: 100%;
    padding: 2.4rem 1.6rem;
  }
  #flow .list .block::after {
    transform: rotate(90deg);
    left: 0%;
    bottom: -3rem;
    width: 8rem;
    height: 1.6rem;
  }
  #flow .list .block .txt br {
    display: none;
  }
}
/* open cp */
#open_cp .wrap {
  position: relative;
  margin-bottom: 8vw;
  overflow: hidden;
}
#open_cp .wrap::before {
  content: " ";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../image/bg_open_cp.svg) no-repeat right bottom ,linear-gradient(#FFD752 , #FFBD42);
  border-radius: 2rem 0 0 2rem;
  width: 94%;
  max-width: 1820px;
  height: 86%;
}
#open_cp .content {
  position: relative;
  z-index: 2;
  width: 94%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 2vw;
}
#open_cp .section_tit {
  font-size: max(2.4vw,2.2rem);
  margin-bottom: 0.6em;
  white-space: nowrap;
}
#open_cp .section_tit span {
  font-size: max(1.4vw,1.4rem);
  display: block;
  margin-bottom: 0.4em;
}
#open_cp .content .img {
  width: 42%;
  display: flex;
  align-items: flex-end;
}
#open_cp .content .txt {
  /*width: 56%;*/
  align-self: center;
  margin-top: 8vw;
}
#open_cp .content .element {
  background-color: var(--color-white);
  border-radius: 2rem;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  padding: 3.2rem 4.8rem 3.4rem 9.2vw;
  position: relative;
}
#open_cp .content .limit {
  background-color: var(--color-green);
  color: var(--color-white);
  width: 10.0vw;
  height: 10.0vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 100rem;
  font-size: max(2.0vw,2.0rem);
  line-height: 120%;
  font-weight: 700;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 4.6rem;
  left: -2vw;
}
#open_cp .content .limit b {
  font-size: 168%;
  line-height: 100%;
}
#open_cp .content .strong {
  font-size: max(3.2vw,2.8rem);
  font-weight: 700;
  line-height: 158%;
  margin-bottom: 0.2em;
}
#open_cp .content .strong b {
  color: var(--color-red);
  font-size: 160%;
}
#open_cp .content .strong span {
  background-color: var(--color-red);
  color: var(--color-white);
  font-size: max(1.6vw,2.0rem);
  display: inline-block;
  border-radius: 1rem;
  padding: 0.2em 0.4em;
  line-height: 130%;
  margin-left: 0.4em;
}
#open_cp .content .attent {
  font-size: max(0.88vw,1.3rem);
}
#open_cp .scroll-bg {
  top: 10%;
}
@media screen and (max-width: 960px) {
  #open_cp .wrap::before {
    height: 100%;
  }
  #open_cp .content .txt {
    margin: 4vw auto;
    width: 94%;
    max-width: 500px;
  }
  #open_cp .content .element {
    padding: 3.2rem 4.0rem 3.2rem;
    text-align: center;
  }
  #open_cp .content .strong {
    line-height: 188%;
    font-size: max(3.2vw,3.6rem);
    white-space: nowrap;
  }
  #open_cp .content .strong span {
    display: block;
    text-align: center;
    margin-top: 0.5em;
  }
  #open_cp .content .strong span br {
    display: none;
  }
  #open_cp .content .strong b {
    font-size: 200%;
  }
  #open_cp .content .limit {
    flex-direction: row;
    align-items: baseline;
    width: auto;
    height: auto;
    padding: 0.4em 0.8em;
    border-radius: 1rem;
    position: static;
    margin: 0 auto;
  }
  #open_cp .content .limit br {
    display: none;
  }
  #open_cp .content .img {
    margin-right: -20%;
    position: relative;
    z-index: 3;
  }
  #open_cp .scroll-bg {
    top: 0;
  }
}
@media screen and (max-width: 636px) {
  #open_cp .wrap::before {
    height:92%;
    width: 96%;
    border-radius: 1rem 0 0 1rem;
  }
  #open_cp .content {
    margin-right: 0;
    width: 96%;
  }
  #open_cp .content .txt {
    margin: 7.2rem 0 3.2rem auto;
  }
  #open_cp .content .element {
    border-radius: 1rem 0 0 1rem;
    padding: 2rem;
  }
  #open_cp .scroll-bg {
    top: 16%;
  }
}
@media screen and (max-width: 399px) {
    #open_cp .content .element::before {
      top: -48%;
      right: -8%;
      width: 48%;
      height: 74%;
    }
    #open_cp .content .limit {
      width: 9em;
      margin-left: -20%;
      border-radius: 0 1rem 1rem 0;
      font-size: max(2.0vw,2.4rem);
  }
  #open_cp .content .img {
    width: 48%;
    position: absolute;
    right: -6%;
    margin-right: 0;
    top: 0;
  }
    #open_cp .scroll-bg {
    top: 10%;
  }
}
/* cta */
#cta .wrap {
  position: relative;
  padding: 1px 0;
  margin-bottom: 6vw;
}
#cta .wrap::before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../image/bg_cta.svg) no-repeat left top ,linear-gradient(#88C8CE , #4DAAB3);
  border-radius: 0 2rem 2rem 0;
  width: 94%;
  max-width: 1820px;
  height: 90%;
}
#cta .content {
  position: relative;
  z-index: 2;
  width: 94%;
  margin: 2rem 0 0 6%;
  display: flex;
  justify-content: space-between;
}
#cta .section_tit {
  font-size: max(2.4vw,2.2rem);
  color: var(--color-white);
  text-shadow: 0px 0px 14px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.2em;
  white-space: nowrap;
}
#cta .content .img {
  width: 48%;
  align-self: flex-end;
}
#cta .content .txt {
  width: 50%;
  align-self: center;
  margin-bottom: 3.4vw;
}
#cta .scroll-bg {
  bottom: 0;
}
@media screen and (max-width: 724px) {
  #cta .wrap {
    margin-bottom: 4rem;
  }
  #cta .wrap::before {
    width: 96%;
    height: 72%;
  }
  #cta .content {
    flex-direction: column;
    margin: 3.2rem auto 0;
  }
  #cta .section_tit {
    font-size: max(2.4vw,2.8rem);
  }
  #cta .content .txt {
    width: auto;
    margin-bottom: 5.6rem;
  }
  #cta .content .img {
    margin: 0 auto;
    width: 100%;
    max-width: 400px;
  }
  #cta .scroll-bg {
    bottom: 34%;
  }
}
/* contact */
#contact .wrap {
  margin-bottom: 8vw;
}
#contact .content {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: var(--color-white);
  border-radius: 2rem;
  padding: 6vw 0;
}
#contact .section_tit {
  font-size: max(2.4vw,2.2rem);
  margin-bottom: 0.8em;
  white-space: nowrap;
  text-align: center;
}
#contact .section_tit span {
  font-size: max(1.4vw,1.4rem);
  display: block;
  color: var(--color-green);
  margin-bottom: 0.5em;
}
#contact .txt {
  font-size: max(1.0vw,1.6rem);
  text-align: center;
  line-height: 160%;
}
@media screen and (max-width: 724px) {
  #contact .content {
    width: 92%;
    border-radius: 1rem;
    padding: 3.2rem 0;
  }
  .title.multi-line.sf-text-center {
    font-size: max(1.0vw,1.6rem);
  }
}
/* footer */
.lp_footer {
  background-color: #5D5D5D;
  border-radius: 6rem 6rem 0 0;
  padding: 4vw 0;
  text-align: center;
  color: var(--color-white);
}
.lp_footer .name {
  font-size: max(1.2vw,1.8rem);
  font-weight: 700;
  margin-bottom: 1.4em;
}
.lp_footer .txt {
  font-size: max(1.0vw,1.4rem);
  margin-bottom: 1em;
}
.lp_footer .call {
  display: flex;
  column-gap: 2.4rem;
  justify-content: center;
  list-style: none;
}
.lp_footer .copyright {
  font-size: max(0.8vw,1.2rem);
  margin-top: 3.8em;
}
@media screen and (max-width: 724px) {
  .lp_footer {
    padding: 4rem 0 3.2rem;
  }
  .lp_footer .call {
    display: initial;
  }
  .lp_footer .call li {
    margin-bottom: 1em;
  }
}