@charset "utf-8";
html {
  font-style: normal;
  font-size: 62.5%;
  position: relative;
  text-align: justify;
  color: var(--font-color);

}


body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;

  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
}



/***header***/
header {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.5rem;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255,255,255,0.7);
}

.lp_logo {
  font-size: 4.4vw;
  position: relative;
  flex: 1;
  font-weight: bold;
}

.header_navi {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 10px;
}

.lp_header_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.65vw;
  padding: 15px 15px;
  background: var(--orange);
  color: white;
  border-radius: 30px;
  font-weight: bold;
}


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




  .header_menu {
    position: fixed;
    background-color: white;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    padding: 13rem 4rem 2rem;
    z-index: 99;
    display: none;
  }


  .header_menu > ul {
    flex-direction: column;
    gap: 0rem;
    align-items: flex-start;
  }

  

    .header_menu > ul > li {
        font-size: 4.6vw;
      width: 100%;
      padding: 3.4vw 0;
    }

    .header_menu > ul > li:not(:last-of-type) {
      border-bottom: 1px solid var(--border-color);
    }

  .header_menu > ul > li > ul {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    width: 100%;
    visibility:visible;
    opacity: 1;
    margin-top: 10px;
    padding-left: 20px;
  }

  .header_menu > ul > li > ul li {
    padding: 8px 0;
  }

  .header_menu > ul > li > ul li a {
    position: relative;
    padding: 0;
    padding-left: 14px;
    display: inline-block;

  }

    .header_menu > ul > li > ul li a::before {
      content: '';
      position: absolute;
      top: 7px;
      left: 0;
      border-top: 1px solid var(--green-blue);
      border-right: 2px solid var(--green-blue);
      transform: rotate(45deg);
      width: 6px;
      height: 6px;
    }

.header_menu li.contact {
  width: 100%;
}
.header_menu li.contact a {
  display: block;
  margin: 10px auto 0;
  max-width: 200px;
  text-align: center;
}


  header .openbtn{
    position: relative;/*ボタン内側の基点となるためrelativeを指定*/
    cursor: pointer;
    width: 40px;
    height: 36px;
    display: block;
    z-index: 100;
    background-color: white;
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      height: 3px;
      border-radius: 3px;
    background:  var(--font-color);
      width: calc(100% - 10px);
    }
  
  .openbtn span:nth-of-type(1) {
    top: 10px; 
  }
  
  .openbtn span:nth-of-type(2) {
    top:50%;
  }
  
  .openbtn span:nth-of-type(3) {
    top:calc(100% - 10px);
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn.active span:nth-of-type(1) {
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(-45deg);

  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn.active span:nth-of-type(3){
    top: 50%;
    left: 50%;
      transform: translate(-50%, -50%) rotate(45deg);

  }

}



@media screen and (min-width: 801px) {
.lp_logo {
  font-size: 1.8rem;
}
.header_menu > ul {
  display: flex;
  gap: 5rem;
  align-items: center;
  flex-wrap: wrap;
}

.header_menu li {
  font-size: 1.6rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
  font-weight: bold;
  position: relative;
  padding: 10px 0;
}

.header_menu > ul > li:hover > a {
  text-decoration: underline;
}



.header_menu > ul > li > ul {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  background-color: white;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease;
}

.header_menu > ul > li:hover ul {
  visibility: visible;
  opacity: 1;
}

.header_menu > ul > li > ul li {
  padding: 0;
}

.header_menu > ul > li > ul li a {
  display: block;
  width: 100%;
    padding: 10px;
}

.header_menu > ul > li > ul li a:hover {
  background-color: var(--back-red);
  color: white;
}

.header_menu li.contact a {
  background-color: var(--red);
  color: white;
  padding: 1.4rem 6rem;
  border-radius: 5rem;
  border: 2px solid white;
}

header .openbtn {
  display: none;
}


.lp_header_contact a {

  font-size: 1.6rem;
}

}


/***footer***/
footer {
  background-color: var(--font-color);
  color: white;
  padding: 8.2vw 0 20vw;
}

.footer_logo {
  text-align: center;
  margin-bottom: 6.8vw;
  font-size: 5.5vw;
}


.footer_menu {
  margin-bottom: 2.7vw;
  padding: 0 10.9vw;
}
.footer_menu li {
  font-size: 3.3vw;
}
.footer_menu > li:not(:last-of-type) {
  margin-bottom: 2.7vw;
}

footer .copy {
  font-size: 3.3vw;
  text-align: center;
}

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


}


@media screen and (min-width: 801px) {
footer {
  padding: 30px 0;
}
.footer_logo {
  margin-bottom: 30px;
  font-size: 2.6rem;
}
.footer_menu {
  margin: 0 auto;
  margin-bottom: 30px;
  max-width: 1000px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer_menu li {
  font-size: 1.6rem;
}
.footer_menu > li:not(:last-of-type) {
  margin-bottom: 0;
}

footer .copy {
  font-size: 1.4rem;
}

}

/***lp common***/
img {
    width: 100%;
}
.lp_sec {
    padding: 10vw 0;
}
.lp_wrapper {
    width: calc(100% - 8.8vw);
    margin-right: auto;
    margin-left: auto;
}

.lp_sec_title {
    font-size: 4.9vw;
    text-align: center;
    margin-bottom: 8.2vw;
}

.lp_title_box {
    margin-bottom: 8.2vw;
}

.lp_title_box .en {
    font-size: 3.8vw;
    color: var(--blue);
    margin-bottom: 2.7vw;
    font-weight: bold;
}

.lp_title_box .jp {
    font-size: 8.7vw;
}

.lp_btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: var(--btn-color);
    padding: 1.2em 0;
    width: 90%;
    font-size: 2rem;
    border-radius: 40rem;
    color: white;
    font-weight: bolder;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
      animation: btn_animation 4.5s infinite;
}

@keyframes btn_animation {
    0% {
        transform: scale(1);
    }
    90% {
        transform: scale(1);
    }
    95% {
        transform: scale(1.1);
        
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@media screen and (min-width: 801px) {


.lp_btn a {
    padding: 1.2em 0;
    width: 100%;
    max-width: 600px;
    font-size: 2.4rem;

}
.lp_sec {
    padding: 70px 0;
}

.lp_wrapper {
    width: 100%;
    max-width: 1000px;
}


.lp_sec_title {
    font-size: 3.2rem;
    margin-bottom: 40px;
}

.lp_title_box {
    margin-bottom: 30px;
    text-align: center;
}

.lp_title_box .en {
    font-size:1.6rem;
    margin-bottom: 10px;
}

.lp_title_box .jp {
    font-size: 3.2rem;
}


}

/***fv***/
.lp_fv_sec {
    padding-bottom: 2rem;
}

.lp_fv_sec .fv_wrapper {
    width: calc(100% - 4vw);
    margin: 0 auto;
}

.lp_fv_sec .sp_fv .top_text {
    margin-bottom: 2.7vw;

}

.lp_fv_sec .sp_fv .ex {
    font-size: 3.8vw;
    text-align: center;
    margin-bottom: 4.4vw;
}

.lp_fv_sec .main_image {
    width: 75%;
    margin: 0 auto 3.8vw;
}

.lp_fv_sec .rate_image {
    margin-bottom: 4.4vw;
}

.lp_fv_sec .list {
    width: 73%;
    margin: 0 auto;
    margin-bottom: 4.4vw;
}
.lp_fv_sec .lp_btn {
    margin-bottom: 4vw;
}

.lp_fv_sec .fv_add_text {
    font-size: 2.7vw;
}


@media screen and (min-width: 801px) {
    .lp_fv_sec .fv_wrapper {
        max-width: 1440px;
        padding-top: 20px;
    }
.lp_fv_sec .pc_fv {
    margin: 0 auto;
    width: 100%;
    margin-bottom: 30px;
            max-width: 160vh;

}
.lp_fv_sec .fv_add_text {
    font-size: 1.2rem;
    line-height: 1.3;
}

}
/***worry***/

.lp_worry_sec .worry_box figure{
    margin: 0 auto;
}
.lp_worry_sec .worry_box figure:nth-of-type(1) {
    margin-bottom: 2.7vw;
    width: 82%;
}

.lp_worry_sec .worry_box figure:nth-of-type(2) {
    margin-bottom: 2.7vw;
    width: 90%;
}

.lp_worry_sec .worry_box figure:nth-of-type(3) {
    width: 100%;
}

@media screen and (min-width: 801px) {

    .lp_worry_sec .worry_box {
        position: relative;
        width: 100%;
        padding-bottom: 40%;
        height: 0;
    }
    .lp_worry_sec .worry_box figure {
        position: absolute;
    }
    .lp_worry_sec .worry_box figure:nth-of-type(1) {
        margin: 0;
        width: 47%;
        top: 0;
        left: 0;
    }


    .lp_worry_sec .worry_box figure:nth-of-type(2) {
        margin: 0;
        width: 49%;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }


    .lp_worry_sec .worry_box figure:nth-of-type(3) {
        width: 53%;
        left: 0;
        bottom: 0;
    }



}
/***wecan***/
.wecan_box {
    border: 0.5vw solid var(--blue);
    border-radius: 4.4vw;
    padding: 5.5vw;
    background-color: white;
}

.wecan_box figure {
    margin-bottom: 6.8vw;
}

.wecan_box h3 {
    text-align: center;
    font-size: 4.9vw;
    margin-bottom: 6.8vw;
}

.wecan_box p {
    font-size: 3.8vw;
}
@media screen and (min-width: 801px) {

.wecan_box  {
    padding: 40px;
    border-radius: 20px;
    border: 3px solid var(--blue);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.wecan_box  figure {
    margin: 0;
    width: 300px;
}

.wecan_box .text {
    flex: 1;
}

.wecan_box h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-align: left;
}
.wecan_box p {
    font-size: 1.6rem;
}

}

/***compair***/
/*table*/
.lp_compair_sec .compair_table {
    margin-bottom: 5.5vw;
    overflow-x: scroll;
    overflow-y: visible;
    padding: 2.7vw 0;
    margin-right: calc(50% - 50vw);
}

.lp_compair_sec .compair_table table {
    width: calc(27vw + 38vw + 27vw + 27vw);
}


.lp_compair_sec .compair_table table tr th:nth-of-type(1),
.lp_compair_sec .compair_table table tr td:nth-of-type(1) {
    width: 27vw;
}
.lp_compair_sec .compair_table table tr th:nth-of-type(2),
.lp_compair_sec .compair_table table tr td:nth-of-type(2) {
    width: 38vw;
}
.lp_compair_sec .compair_table table tr th:nth-of-type(3),
.lp_compair_sec .compair_table table tr td:nth-of-type(3),
.lp_compair_sec .compair_table table tr th:nth-of-type(4),
.lp_compair_sec .compair_table table tr td:nth-of-type(4) {
    width: 27vw;
}

.lp_compair_sec .compair_table table th,
.lp_compair_sec .compair_table table td {
    position: relative;
    z-index: 1;
    text-align: center;
    vertical-align: middle;
    padding: 2.7vw;
    font-size: 3.8vw;
}
@media screen and (min-width: 801px) {

.lp_compair_sec .compair_table {
    margin: 0;
    margin-bottom: 100px;
    padding: 0;
    overflow: inherit;
}

.lp_compair_sec .compair_table table {
    width: 100%;
}

.lp_compair_sec .compair_table table tr th:nth-of-type(1),
.lp_compair_sec .compair_table table tr td:nth-of-type(1) {
    width: 20%;
}
.lp_compair_sec .compair_table table tr th:nth-of-type(2),
.lp_compair_sec .compair_table table tr td:nth-of-type(2) {
    width: 30%;
}
.lp_compair_sec .compair_table table tr th:nth-of-type(3),
.lp_compair_sec .compair_table table tr td:nth-of-type(3),
.lp_compair_sec .compair_table table tr th:nth-of-type(4),
.lp_compair_sec .compair_table table tr td:nth-of-type(4) {
    width: 25%;
}
.lp_compair_sec .compair_table table th,
.lp_compair_sec .compair_table table td {
    padding: 20px 10px;
    font-size: 1.8rem;
}


}
/*th*/
.lp_compair_sec .compair_table table th::before,
.lp_compair_sec .compair_table table td::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.lp_compair_sec .compair_table table thead tr th {
    color: white;
}
.lp_compair_sec .compair_table table thead tr th:nth-of-type(2) {
    padding-top: 0;
}
.lp_compair_sec .compair_table table thead tr th:nth-of-type(2)::before {
    background-color: var(--blue);
    border-radius: 2.7vw 2.7vw 0 0;
    height: calc(100% + 2.7vw);
    top: inherit;
    bottom: 0;
}

.lp_compair_sec .compair_table table thead tr th:nth-of-type(n + 3)::before {
    background-color: #C4C4C7;
}

.lp_compair_sec .compair_table table thead tr th:nth-of-type(3)::before {
    border-right: 0.27vw solid white;
}
@media screen and (min-width: 801px) {

.lp_compair_sec .compair_table table thead tr th:nth-of-type(2)::before {
    border-radius: 10px 10px 0 0;
    height: calc(100% + 20px);
}

.lp_compair_sec .compair_table table thead tr th:nth-of-type(3)::before {
    border-right: 2px solid white;
}

.lp_compair_sec .compair_table table thead tr th:nth-of-type(3)::before {
    border-right: 2px solid white;
    width: calc(100% + 2px);
}

.lp_compair_sec .compair_table table thead tr th:nth-of-type(4)::before  {
    width: calc(100% - 2px);
    left: 2px;
}
}

/*td*/
.lp_compair_sec .compair_table table tbody td::before {
    background-color: white;
    border: 0.27vw solid #C4C4C7;
    border-bottom: none;
    border-right: none;
}

.lp_compair_sec .compair_table table tbody tr:last-of-type td:nth-of-type(2) {
    padding-bottom: 0;
}
.lp_compair_sec .compair_table table tbody tr:last-of-type td:nth-of-type(2)::before {
    height: calc(100% + 2.7vw);
    width: calc(100% + 0.27vw);
    border-radius: 0 0 2.7vw 2.7vw;
    border-right: 0.27vw solid #C4C4C7;
}

.lp_compair_sec .compair_table table tbody tr td:last-of-type::before {
    border-right: 0.27vw solid #C4C4C7;
}


.lp_compair_sec .compair_table table tbody tr:last-of-type td::before {
    border-bottom: 0.27vw solid #C4C4C7;
}

.lp_compair_sec .compair_table table tbody tr:last-of-type td:nth-of-type(3)::before {
    border-left: none;
    width: calc(100% - 0.27vw);
    left: 0.27vw;
}
.lp_compair_sec .compair_table td strong span {
    font-size: 5.5vw;
}


.lp_compair_sec .compair_table td .add {
    font-size: 3.3vw;
}
@media screen and (min-width: 801px) {

.lp_compair_sec .compair_table table tbody td::before {
    border: 1px solid #C4C4C7;
}
.lp_compair_sec .compair_table table tbody tr:last-of-type td:nth-of-type(2)::before {
    height: calc(100% + 20px);
    width: calc(100% + 2px);
    border-radius: 0 0 10px 10px;
    border-right: 2px solid #C4C4C7;
}
.lp_compair_sec .compair_table table tbody tr td:last-of-type::before {
    border-right: 2px solid #C4C4C7;
}
.lp_compair_sec .compair_table table tbody tr:last-of-type td::before {
    border-bottom: 2px solid #C4C4C7;
}
.lp_compair_sec .compair_table table tbody tr:last-of-type td:nth-of-type(3)::before {
    width: calc(100% - 2px);
    left: 2px;
}
.lp_compair_sec .compair_table td strong span {
    font-size: 3rem;
}


.lp_compair_sec .compair_table td .add {
    font-size: 1.4rem;
}

}

/*etc*/
.lp_compair_sec h3.graph_title {
    text-align: center;
    font-size: 3.8vw;
    margin-bottom: 2.7vw;
}

.lp_compair_sec .graph {
    margin-bottom: 6.8vw;
}

.lp_compair_sec .ex {
    font-size: 3.8vw;
}

.lp_compair_sec .bottom_image {
    margin-left: auto;
    width: 46%;
    margin-bottom: 6.8vw;
}

@media screen and (min-width: 801px) {


    .lp_compair_sec .middle_box {
        display: flex;
        gap: 30px;
        align-items: center;
        margin-bottom: 70px;
    }

    .lp_compair_sec .middle_box .graph_box {
        width: 50%;
    }
.lp_compair_sec h3.graph_title {
    font-size: 2.8rem;
    margin-bottom: 20px;
}



.lp_compair_sec .graph {
    margin: 0;
}

.lp_compair_sec .text_box {
    flex: 1;
}

.lp_compair_sec .text_box .ex {
    font-size: 2rem;
    margin-bottom: 20px;
}

.lp_compair_sec .bottom_image {
    margin-bottom: 0;
}

}
/***solution***/
.lp_solution_sec .solution_box {
    margin-bottom: 8.2vw;
    padding: 8.2vw 4.1vw;
    border-radius: 1.7vw;
}

.lp_solution_sec .solution_list .solution_box:last-of-type {
    margin-bottom: 2.7vw;
}

.lp_solution_sec .solution_title,
.lp_solution_sec .solution_answer {
    background-color: white;
    border-radius: 1.7vw;
    border: 0.55vw solid var(--blue);
    padding: 4.9vw 3.0vw;
    position: relative;
    text-align: center;
}

.lp_solution_sec .solution_title {
    margin-top: 20%;
    margin-bottom: 38%;
}

.lp_solution_sec .solution_title figure,
.lp_solution_sec .solution_answer figure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: calc(100% - 4.9vw );
    width: 32%;
}
.lp_solution_sec .solution_answer figure {
    width: 39%;
}

.lp_solution_sec .solution_title .num,
.lp_solution_sec .solution_answer .num {
    color: var(--blue);
    border: 0.27vw solid var(--blue);
    padding: 0.55vw 2.7vw;
    border-radius: 3.8vw;
    font-size: 3.8vw;
    display: inline-block;
    margin-bottom: 2.7vw;
    font-weight: bold;
}

.lp_solution_sec .solution_answer .num {
    background-color: var(--blue);
    color: white;
}

.lp_solution_sec .solution_title h3,
.lp_solution_sec .solution_answer h4 {
    font-size: 4.7vw;
}

.lp_solution_sec .solution_answer h4 {
    color: var(--blue);
    margin-bottom: 2.7vw;
}


.lp_solution_sec .solution_answer .ex {
    text-align: left;
    font-size: 3.8vw;

}

.lp_solution_sec .solution_example h3 {
    text-align: center;
    margin: 5.5vw auto;
    font-weight: bold;
    font-size: 4.9vw;
}

.lp_solution_sec .solution_example .example_table table {
    width: 100%;
}

.lp_solution_sec .example_table th,
.lp_solution_sec .example_table td {
    text-align: center;
    vertical-align: middle;
    font-size: 3.8vw;
    border-bottom: 0.27vw solid var(--blue);
    padding: 2.7vw 0;
}

.lp_solution_sec .example_table th {
    background-color: var(--blue);
    color: white;
}
.lp_solution_sec .example_table td {
    background-color: white;
}

.lp_solution_sec .example_table .ex {
    margin-top: 2.7vw;
    font-size: 3.3vw;
}

.lp_solution_sec .add_text {
        font-size: 3.3vw;
}
.lp_solution_sec .solution_answer .more_read {
    display: none;
}
@media screen and (min-width: 801px) {


.solution_list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}
.lp_solution_sec .solution_box {
    margin-bottom: 0;
    padding: 30px 20px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: flex-start;
}
.lp_solution_sec .solution_title figure,
.lp_solution_sec .solution_answer figure  {
    max-width: 150px;
    width: 100%;
    bottom: calc(100% - 40px);

}

.lp_solution_sec .solution_title,
.lp_solution_sec .solution_answer {
    border-radius: 20px;
    border: 2px solid var(--blue);
    padding: 20px;
    padding-top: 60px;
    margin-top: 100px;
    min-height: 232px;

}

.lp_solution_sec .solution_title {
    margin-bottom: 0px;
    width: 40%;
    position: relative;
}

.lp_solution_sec .solution_title::after {
    content: '';
      width: 0;
  height: 0;
  border-style: solid;
  border-top: 35px solid transparent;
  border-bottom: 35px solid transparent;
  border-left: 45px solid var(--blue);
  border-right: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(100% + 20px);

}
.lp_solution_sec .solution_answer {
    width: 45%;
}


.lp_solution_sec .solution_title .num,
.lp_solution_sec .solution_answer .num {
    border: 1px solid var(--blue);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.lp_solution_sec .solution_title h3,
.lp_solution_sec .solution_answer h4 {
    font-size: 2rem;
    min-height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lp_solution_sec .solution_answer h4 {
    margin-bottom: 0;
}
.lp_solution_sec .solution_answer .ex {
    font-size: 1.6rem;
    margin-top: 20px;
    display: none;
}
.lp_solution_sec .solution_example {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}
.lp_solution_sec .solution_example h3 {
    margin: 40px auto 20px;
    font-size: 2.4rem;
}
.lp_solution_sec .example_table th,
.lp_solution_sec .example_table td {
    font-size: 1.6rem;
    border-bottom: 1px solid var(--blue);
    padding:10px 0;
}
.lp_solution_sec .example_table .ex {
    margin-top: 10px;
    font-size: 1.4rem;
}
.lp_solution_sec .add_text {
        font-size: 1.4rem;
}


.lp_solution_sec .solution_answer .more_read {
    display: inline-block;
    background-color: transparent;
    padding: 0;
    text-decoration: underline;
    color: var(--blue);
    border: none;
    font-size: 14px;
}

.lp_solution_sec .solution_answer.open .more_read {
    margin-top: 10px;
}
}

/***cta***/
.lp_cta_sec {
    padding: 10.9vw 0;
    text-align: center;
    background-color: var(--blue);
    color: white;
}

.lp_cta_sec .lp_sec_title span {
    font-size: 1.3em;
}

@media screen and (min-width: 801px) {

.lp_cta_sec {
    padding: 100px 0;

}

.lp_cta_sec .lp_sec_title span {
    font-size: 1.3em;
}

}
/***voice***/
.lp_voice_sec .voice_box {
    background-color: white;
    border-radius: 1.7vw;
    padding: 13.7vw 8.7vw 8.7vw;
    position: relative;
}

.lp_voice_sec .voice_box::before {
    content: '“';
    font-size: 19.1vw;
    color: var(--blue);
    position: absolute;
    left: 0;
    top: 2.7vw;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 1;

}
.lp_voice_sec .voice_list .voice_box:not(:last-of-type) {
    margin-bottom: 6.8vw;
}

.lp_voice_sec .voice_box .text p {
    font-size: 3.8vw;
}

.lp_voice_sec .voice_box .bottom {
    display: flex;
    align-items: center;
}

.lp_voice_sec .voice_box .bottom .name {
    flex: 1;
        font-size: 3.3vw;
}

.lp_voice_sec .voice_box .bottom .image {
    width: 18.0vw;
}

.lp_voice_sec .voice_box .bottom .image img {
    border-radius: 50%;
}

@media screen and (min-width: 801px) {
.lp_voice_sec .voice_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.lp_voice_sec .voice_box {
    border-radius: 10px;
    padding: 60px 20px 20px;
    width: calc(100% / 2 - 30px / 2);
}
.lp_voice_sec .voice_box::before {
    font-size: 6rem;
    top: 20px;
}
.lp_voice_sec .voice_list .voice_box:not(:last-of-type) {
    margin-bottom: 0;
}
.lp_voice_sec .voice_box .text p {
    font-size: 1.8rem;
}
.lp_voice_sec .voice_box .bottom .image {
    width: 100px;
}
.lp_voice_sec .voice_box .bottom .name {
    font-size: 1.6rem;
}
}
/***step***/
.lp_step_sec .step_list li {
    display: flex;
    padding: 4.6vw 0;
    border: 0.27vw solid var(--blue);
    border-radius: 1.7vw;
    align-items: center;
    width: 100%;
    background-color: white;
}

.lp_step_sec .step_list li:not(:last-of-type) {
    margin-bottom: 9.6vw;
    position: relative;
}

.lp_step_sec .step_list li:not(:last-of-type)::after {
    content: '';
    height: 9.6vw;
    width: 7.4vw;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/step_arrow.png) center / contain no-repeat;
}


.lp_step_sec .step_list li .num {
    padding: 2.7vw 0;
    width: calc(14.2vw + 2.7vw + 2.7vw);
    border-right: 0.27vw solid var(--blue);
    text-align: center;
    margin-right: 2.7vw;
}

.lp_step_sec .step_list li .num p {
    color: var(--blue);
    font-weight: bold;
    font-size: 3.8vw;
    line-height: 1;
}

.lp_step_sec .step_list li .num p span {
    display: block;
    font-size: 8.7vw;
}

.lp_step_sec .step_list li .text {
    flex: 1;
    display: flex;
    align-items: center;
}

.lp_step_sec .step_list li .text figure {
    width: 21.8vw;
}

.lp_step_sec .step_list li .text p {
    text-align: center;
    flex: 1;
    font-size: 4.9vw;
    font-weight: 500;
}

@media screen and (min-width: 801px) {

 .lp_step_sec .step_list {
    display: flex;
    gap: 40px;
 }
    .lp_step_sec .step_list li {
    display: block;
    padding: 20px 10px;
    border: 1px solid var(--blue);
    border-radius: 10px;
    width: calc(100% / 5 - 160px / 5);
}
.lp_step_sec .step_list li:not(:last-of-type) {
    margin-bottom: 0;
}

.lp_step_sec .step_list li:not(:last-of-type)::after {
    height: 30px;
    width: 30px;
    top: 50%;
    left: calc(100% + 5px);
    transform: translateY(-50%) rotate(-90deg);
    background: url(../img/step_arrow.png) center / contain no-repeat;
}

.lp_step_sec .step_list li .num {
    padding: 10px 0;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--blue);
    margin-right: 0;
}
.lp_step_sec .step_list li .num p {
    font-size: 1.6rem;
}
.lp_step_sec .step_list li .num p span {
    font-size: 3rem;
}
.lp_step_sec .step_list li .text {
    display: block;
}
.lp_step_sec .step_list li .text figure {
    width:100px;
    margin: 0 auto 10px;
}

.lp_step_sec .step_list li .text p {
    font-size: 1.8rem;
}



}
/***model***/
.lp_model_sec .model_box {
    background-color: white;
    border-radius: 4.1vw;
    padding: 8.2vw 9.6vw;
    border: 0.27vw solid var(--font-color);
}



.lp_model_sec .model_list .model_box:not(:last-of-type) {
    margin-bottom: 6.8vw;
}

.lp_model_sec .model_box h3 {
    font-size: 4.9vw;
    margin-bottom:  4.1vw;
}
.lp_model_sec .model_box figure {
        margin-bottom:  4.1vw;
}
.lp_model_sec .model_box .check_list li {
    position: relative;
    padding-left: 4.9vw;
    font-size: 3.8vw;
}
.lp_model_sec .model_box .check_list > li:not(:last-of-type) {
    margin-bottom: 2.2vw;
}

.lp_model_sec .model_box .check_list li::before {
    content: '';
    width: 4.4vw;
    height: 4.4vw;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/price_check.svg) center / contain no-repeat;
}

@media screen and (min-width: 801px) {

.lp_model_sec .model_list {
    display: flex;
    justify-content: space-around;
}
.lp_model_sec .model_box {
    border-radius: 20px;
    padding: 30px 20px;;
    border: 1px solid var(--font-color);
    width: 45%;
}
.lp_model_sec .model_list .model_box:not(:last-of-type) {
    margin-bottom: 0;
}


.lp_model_sec .model_box h3 {
    font-size: 2.8rem;
    margin-bottom:  20px;
    text-align: center;
}
.lp_model_sec .model_box figure {
    margin-bottom: 20px;
}
.lp_model_sec .model_box .check_list {
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
}
.lp_model_sec .model_box .check_list li {
    position: relative;
    padding-left: 20px;
    font-size: 1.8rem;
}

.lp_model_sec .model_box .check_list > li:not(:last-of-type) {
    margin-bottom: 10px;
}
.lp_model_sec .model_box .check_list li::before {
    width: 18px;
    height: 20px;
    top: 4px;
}

}

/***faq***/
.lp_faq_sec .faq_list dl {
    background-color: #EEEEF0;
    border-radius: 1.7vw;
    padding: 2.7vw;
}

.lp_faq_sec .faq_list dl:not(:last-of-type) {
    margin-bottom: 4.4vw;
}

.lp_faq_sec .faq_list dl dt,
.lp_faq_sec .faq_list dl dd {
    padding-left: 8.2vw;
    position: relative;
    font-size: 3.8vw;
}

.lp_faq_sec .faq_list dl dt {
    margin-bottom: 2.7vw;
}

.lp_faq_sec .faq_list dl dt::before,
.lp_faq_sec .faq_list dl dd::before {
    width: 6.3vw;
    height: 6.3vw;
    position: absolute;
    top: -0.82vw;
    left: 0;
    font-size: 3.8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.82vw;
}

.lp_faq_sec .faq_list dl dt::before {
    content: 'Q';
    background-color: var(--blue);
    color: white;
}

.lp_faq_sec .faq_list dl dd::before {
    content: 'A';
    border: 0.27vw solid var(--blue);
    background-color: white;
    color: var(--blue);
}

@media screen and (min-width: 801px) {

.lp_faq_sec .faq_list dl {
    border-radius: 20px;
    padding: 30px 20px;
}

.lp_faq_sec .faq_list dl:not(:last-of-type) {
    margin-bottom: 30px;
}

.lp_faq_sec .faq_list dl dt,
.lp_faq_sec .faq_list dl dd {
    padding-left: 3rem;
    font-size: 1.8rem;
}
.lp_faq_sec .faq_list dl dt {
    margin-bottom: 15px;
}

.lp_faq_sec .faq_list dl dt::before,
.lp_faq_sec .faq_list dl dd::before {
    width: 25px;
    height: 25px;
    top: 1px;
    font-size: 1.6rem;
    border-radius: 4px;
}
.lp_faq_sec .faq_list dl dd::before {
    border: 1px solid var(--blue);
}


}
/***message***/
.lp_message_sec {
    background-color: var(--blue);
}

.lp_message_sec .lp_sec_title {
    color: white;
}

.lp_message_sec .message_box {
    background-color: white;
    padding: 5.5vw 3.8vw;
    border-radius: 1.7vw;
}

.lp_message_sec .message_box p {
    font-size: 3.8vw;
    margin-bottom: 2.7vw;
}

.lp_message_sec .message_box figure {
    width: 68%;
    margin: 0 auto;
}

@media screen and (min-width: 801px) {
.lp_message_sec .message_box {
    display: flex;
    padding: 30px 20px;
    border-radius: 10px;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row-reverse;
}
.lp_message_sec .message_box p {
    font-size: 1.8rem;
    margin-bottom: 0;
    flex: 1;
}
.lp_message_sec .message_box figure {
    margin: 0;
    width: 30%;
}

}
/***form***/
.lp_contact_sec .lp_form_box dl {
    margin-bottom: 4.4vw;
    width: 100%;
}

.lp_contact_sec .lp_form_box dl dt {
    display: flex;
    align-items: center;
    margin-bottom: 1.37vw;
    font-size: 3.8vw;
}

.lp_contact_sec .lp_form_box dl dt::after {
    content: '任意';
    font-size: 3.0vw;
    padding: 1.09vw 1.09vw;
    border-radius: 0.55vw;
    background-color: #C4C4C7;
    color: white;
    margin-left: 4.4vw;
}

.lp_contact_sec .lp_form_box dl dt.req::after {
    content: '必須';
    background-color: var(--font-color);
}

.lp_contact_sec .lp_form_box dl dd input,
.lp_contact_sec .lp_form_box dl dd textarea,
.lp_contact_sec .lp_form_box dl dd select {
    width: 100%;
    padding: 2.7vw;
    border-radius: 1.7vw;
    font-size: 3.8vw;
    border: 0.27vw solid #C4C4C7;
}
.lp_contact_sec .lp_form_box dl dd textarea {
    height: 40vw;
}
.lp_contact_sec .policy-agree {
    text-align: center;
    margin-bottom: 5.5vw;

}

.lp_contact_sec .policy-agree label {
    font-size: 3.8vw;
    display: flex;
    justify-content: center;
    align-items: center;
        gap: 1.37vw;
}

.lp_contact_sec .policy-agree label input {
    width: 4.4vw;
    height: 4.4vw;
}

.lp_contact_sec .submit_box input {
        display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background: var(--btn-color);
    padding: 1.2em 0;
    width: 90%;
      font-size: 4.4vw;
    border-radius: 8.2vw;
    color: white;
    font-weight: bolder;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
}

.lp_contact_sec .add_text {
    font-size: 3.3vw;
    margin-top: 5.5vw;
}


@media screen and (min-width: 801px) {

.lp_contact_sec .lp_form_box dl {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}
.lp_contact_sec .lp_form_box dl dt {
    justify-content: space-between;
    margin-bottom: 0;
    font-size: 18px;
    width: 300px;
    padding-top: 10px;
}
.lp_contact_sec .lp_form_box dl dt::after {
    font-size: 1.2rem;
    padding: 5px 20px;
    border-radius: 5px;
    margin-left:0 ;
}
.lp_contact_sec .lp_form_box dl dd {
    flex: 1;
}

.lp_contact_sec .lp_form_box dl dd input,
.lp_contact_sec .lp_form_box dl dd textarea,
.lp_contact_sec .lp_form_box dl dd select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    font-size: 16px;
    border: 1px solid #C4C4C7;
}
.lp_contact_sec .lp_form_box dl dd textarea {
        height: 200px;
}


.lp_contact_sec .policy-agree {
    margin-bottom: 30px;

}

.lp_contact_sec .policy-agree label {
    font-size: 1.8rem;
        gap: 5px;
}

.lp_contact_sec .policy-agree label input {
    width: 18px;
    height: 18px;
}

.lp_contact_sec .submit_box input {
    padding: 1.2em 0;
    width: 100%;
    max-width: 600px;
    font-size: 2.4rem;
    border-radius: 6rem;
}

.lp_contact_sec .add_text {
    font-size: 1.4rem;
}

}



/***実績セクション***/
.lp_achivement_sec .ex {
    font-size: 3.8vw;
    margin-bottom: 5.5vw;
}
.achivement_list {
    display: flex;
    flex-wrap: wrap;
    gap: 3.3vw;
}

.achivement_list > li {
    width: 100%;
}

.achivement_list > li:nth-of-type(n + 7) {
    display: none;
}
.achivement_list > li .list_box {
    display: block;
    box-shadow: 0px 4px 4px rgba(0,0,0,0.25);
    padding: 4.1vw;
    position: relative;
}
.achivement_list > li .list_box::before {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.5);
    content: '詳細を見る';
    font-size: 4.4vw;
    z-index: 2;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
    opacity: 0;
}
.achivement_list > li .list_box:hover::before {
    opacity: 1;
}
.achivement_list > li .list_box figure {
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
    position: relative;
    overflow: hidden;
}

.achivement_list > li .list_box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    position: absolute;
    top: 0;
    left: 0;
}

.achivement_list > li .list_box .title {
    font-size: 4.4vw;
    margin-top: 1.7vw;
    text-align: center;
}

.list_modal h3 {
    font-size: 5.5vw;
    margin-bottom: 1.7vw;
    font-weight: bold;
}
.list_modal .image_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 6.6vw;
    align-items: center;
    justify-content: center;
    margin-bottom: 6.6vw;
}
.list_modal .pc_image,
.list_modal .sp_image {
    width: 100%;
}
.list_modal h4 {
    font-size: 4.4vw;
}
.list_modal .pc_image figure {
    width: 100%;
    height: 55vw;
    overflow-y: scroll;

}

.list_modal .sp_image figure {
    width: 80%;
    height: 80vw;
    overflow-y: scroll;
    margin: 0 auto;

}

.list_modal .pc_image p,
.list_modal .sp_image p {
    font-size: 3.3vw;
    margin-top: 1.7vw;
}

.list_modal .data_box {
    background-color: #EEEEF0;
    padding: 4.1vw;
    font-size: 3.8vw;
    text-align: left;
    margin-bottom: 3.8vw;
}

.list_modal .remodal-cancel {
    background-color: var(--blue);
}

.list_modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    padding: 0;
    font-size: 3.8vw;
}

.achivement_more {

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
        margin-top: 4.9vw;
    background: var(--blue);
    padding: 0.6em 0;
    width: 90%;
    font-size: 4.9vw;
    border-radius: 40rem;
    color: white;
    font-weight: bolder;
}

@media screen and (min-width: 801px) {
.lp_achivement_sec .ex {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

    .achivement_list {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
    }

.achivement_list > li {
        width: calc(100% / 3 - 60px / 3);
    }
    .achivement_list > li .list_box {
        padding: 20px;
    }

    .achivement_list > li .list_box::before {
        font-size: 16px;
    }
.achivement_list > li .list_box:hover::before {
    opacity: 1;
}

    .achivement_list > li .list_box .title {
        font-size: 18px;
        margin-top: 10px;
    }

    .list_modal h3 {
        font-size: 22px;
        margin-bottom: 20px;
    }
    .list_modal .image_flex {
        gap: 70px;
        margin-bottom: 20px;
        align-items: flex-start;
        justify-content: space-between;
    }
    .list_modal .pc_image {
        width: calc(65% - 35px);
    }
    .list_modal .sp_image {
        width: calc(35% - 35px);
    }
    .list_modal h4 {
        font-size: 18px;
    }
    .list_modal .pc_image figure {
        width: 100%;
        height: 400px;

    }

    .list_modal .sp_image figure {
        width: 100%;
        height: 500px;
    }

    .list_modal .pc_image p,
    .list_modal .sp_image p {
        font-size: 14px;
        margin-top: 10px;
    }
.list_modal .data_box {
    padding: 20px;
    font-size: 16px;
    margin-bottom: 30px
}

.list_modal .remodal-cancel {
    font-size: 16px;
    border: 1px solid var(--blue);
}

.list_modal .remodal-cancel:hover {
    background-color: white;
    color: var(--blue);
}


    .remodal.list_modal {
        max-width: 1000px;
    }


    .list_modal .close {
    font-size: 30px;
    top: 10px;
}

.achivement_more {


        margin-top: 30px;
    padding: 0.6em 0;
    width: 90%;
    font-size: 20px;
            max-width: 450px;
}

}



/***price***/

.lp_price_sec .lp_wrapper .price_table_box:not(:last-of-type) {
    margin-bottom: 9.6vw;
}

.price_table_box h3 {
    font-size: 6.0vw;
    margin-bottom: 2.7vw;
    text-align: center;
}

.price_table_box .ex {
    font-size: 3.8vw;
    margin-bottom: 2.7vw;
}

.price_table_box .function_box {
    margin-bottom: 2.7vw;
    padding: 2.7vw;;
    background-color: white;
}

.price_table_box .function_box h4 {
    font-size: 4.9vw;
    margin-bottom: 1.4vw;
}


.price_table_box .function_box ul li {
    font-size: 3.8vw;
    padding-left: 4.6vw;
    position: relative;
}

.price_table_box .function_box ul li::before {
    position: absolute;
    color: var(--blue);
    content: "◎";
    top: 0;
    left: 0;
}

.price_table_box .price_table {
    overflow-x: scroll;
}
.price_table_box .price_table table {
    width: max-content;
    position: relative;
}
.price_table_box .price_table th,
.price_table_box .price_table td {
    padding: 2.7vw 1.3vw;
    width: 34vw;
    font-size:3.8vw;
    vertical-align: middle;
    text-align: center;
}

.price_table_box .price_table th {
    border: 0.27vw solid white;
}
.price_table_box .price_table th.theme_blue {
    background-color: var(--blue);
    color: white;
}
.price_table_box .price_table th.gold {
    background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}
.price_table_box .price_table tr th:first-of-type {
    width: 20vw;
}
.price_table_box .price_table thead th {
    background-color: #C4C4C7;


}

.price_table_box .price_table tbody th {
    background-color: #f7f7f7;
    font-size: 3.3vw;

}
.price_table_box .price_table tr th:first-of-type,
.price_table_box .price_table tbody th {
    position: sticky;
    left: 0;
    top: 0;
}
.price_table_box .price_table td {
    background-color: white;
    border: 0.27vw solid #C4C4C7;

}
.price_table_box .price_table td ul {
    padding-left: 3.0vw;
}
.price_table_box .price_table td li {
    list-style: disc;
    
}
.price_table_box .price_table td li,
.price_table_box .price_table td p {
    font-size: 3.0vw;
    text-align: left;
}
.price_table_box .price_table .top td {
    vertical-align: top;
}

.price_table_box .price_table .budget td {
    font-size: 4.9vw;
    font-weight: bold;
}

.price_table_box .price_table p.small {
    font-size: 2.7vw;
    text-align: left;
    margin-top: 1.4vw;
}


@media screen and (min-width: 801px) {

.lp_price_sec .lp_wrapper .price_table_box:not(:last-of-type) {
    margin-bottom: 40px;
}

.price_table_box h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: left;
    position: relative;
}
.price_table_box h3::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--blue) 0%, var(--blue) 29.3%, rgba(150, 150, 150, .2) 29.3%, rgba(150, 150, 150, .2) 100%);
}
.price_table_box .ex {
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}


.price_table_box .function_box {
    margin-bottom: 30px;
    padding: 20px;
}
.price_table_box .function_box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.price_table_box .function_box ul {
    display: flex;
    flex-wrap: wrap;
}

.price_table_box .function_box ul li {
    font-size: 16px;
    padding-left: 20px;
    width: 50%;
}
.price_table_box .price_table {
    overflow-x: inherit;
}
.price_table_box .price_table table {
    width: 100%;
    position: relative;
}
.price_table_box .price_table th,
.price_table_box .price_table td {
    padding: 15px 10px;
    width: 30%;
    font-size: 16px;
}
.price_table_box .price_table th {
    border: 1px solid white;
}

.price_table_box .price_table tr th:first-of-type {
    width: 10%;
}

.price_table_box .price_table tbody th {
    background-color: #f7f7f7;
    font-size: 16px;
}

.price_table_box .price_table tr th:first-of-type,
.price_table_box .price_table tbody th {
    position:relative;
    left: 0;
    top: 0;
}
.price_table_box .price_table td {
    border: 1px solid #C4C4C7;
}
.price_table_box .price_table td ul {
    padding-left: 16px;
}
.price_table_box .price_table td li,
.price_table_box .price_table td p {
    font-size: 16px;
}
.price_table_box .price_table .budget td {
    font-size: 20px;
}
.price_table_box .price_table p.small {
    font-size: 14px;
    margin-top: 10px;
}
}

.frame_box {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}
.frame_box.frame_pc {
 padding-bottom: 62.5%;
}

.frame_box.frame_sp {
    padding-bottom: 197%;
}
.frame_box figure {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);

}

.frame_box.frame_pc figure {
    width: 83% !important;
    height: 86% !important;
    top: 3%;
}
.frame_box.frame_sp figure {
    width: 90% !important;
    height: 84% !important;
    top: 10%;
}
.frame_box.frame_pc::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/pc_monitor.png) center / contain no-repeat;
    pointer-events: none;
    z-index: 2;
}


.frame_box.frame_sp::before {
    width: 100%;
    height: 100%;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/sp_monitor.png) center / contain no-repeat;
    pointer-events: none;
    z-index: 2;

}



/***price 追記****/
.price_list_boxes .price_box {
    background-color: white;
    border-radius: 2.7vw;
    padding: 4vw;
}

.price_list_boxes .price_box:not(:last-of-type) {
        margin-bottom: 5.4vw;
}

.price_list_boxes .price_box.premium {
        background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}

.price_list_boxes .price_box.standard {
    background: linear-gradient(45deg, #757575 0%, #9E9E9E 45%, #E8E8E8 70%, #9E9E9E 85%, #757575 90% 100%);
}

.price_list_boxes .price_box h4 {
        font-size: 5.2vw;
    margin-bottom: 1.4vw;
    text-align: center;
}
.price_list_boxes .price_box.premium .content,
.price_list_boxes .price_box.standard .content {
    background-color: rgba(255,255,255,0.9);
        padding: 2.7vw 1.7vw;
}

.price_list_boxes .price_box .content p{
    font-size: 4.4vw;
}
.price_list_boxes .price_box .content p.page_num {
    margin-bottom: 1vw;
    text-align: center;
}
.price_list_boxes .price_box .content p.price {
    font-weight: bold;

    text-align: center;
}
.price_list_boxes .price_box .content p.price span {
    font-size: 6.6vw;

}

.price_list_boxes .price_box ul {
    /* padding: 1.7vw; */
    padding-left: 3.8vw;
    /* background-color: white; */
        margin-bottom: 1.4vw;
    
}

.price_list_boxes .price_box ul li {
    list-style: disc;
    font-size: 3.8vw;
}


.price_list_boxes .price_box dl {
    margin-top: 1.4vw;
    border: 0.55vw solid #f2f2f2;
    background-color: white;
}

.price_list_boxes .price_box dl dt {
    font-size: 4vw;
    background-color: #f2f2f2;
    text-align: center;
    padding: 0.7vw;
    margin-bottom: 0.7vw;
    max-width: max-content;
}

.price_list_boxes .price_box dl dd {
    font-size: 4.4vw;
    padding: 0.7vw;
}

.price_list_boxes .price_box .content .add {
    font-size: 3.3vw;
}


@media screen and (min-width: 801px) {

    .price_list_boxes {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
    }

.price_list_boxes .price_box {
    width: calc(100% / 3 - 50px / 3);
    
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.price_list_boxes .price_box:not(:last-of-type) {
        margin-bottom: 0;
}

.price_list_boxes .price_box .box_wrap {
    width: 100%;
    flex: 1;
        display: flex;
    flex-direction: column;
    align-items: stretch;
}


.price_list_boxes .price_box h4 {
        font-size: 22px;
    margin-bottom: 20px;
    width: 100%;
}
.price_list_boxes .price_box.premium .content,
.price_list_boxes .price_box.standard .content {
        padding: 15px;
        width: 100%;
        flex: 1;
}

.price_list_boxes .price_box .content p{
    font-size: 16px;
}
.price_list_boxes .price_box .content p.page_num {
    margin-bottom: 10px;
}

.price_list_boxes .price_box .content p.price span {
    font-size: 26px;

}

.price_list_boxes .price_box ul {
    padding-left: 16px;
    margin-bottom: 10px;
}

.price_list_boxes .price_box ul li {
    font-size: 14px;
}


.price_list_boxes .price_box dl {
    margin-top: 16px;
    border: 2px solid #f2f2f2;
}

.price_list_boxes .price_box dl dt {
    font-size: 14px;
    padding: 3px 5px;
    margin-bottom: 0;
}

.price_list_boxes .price_box dl dd {
    font-size: 14px;
    padding: 10px;
}

.price_list_boxes .price_box .content .add {
    font-size: 12px;
}


}



/***フローティングメニュー***/
.common_booking_links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.common_booking_links.show {
    visibility: visible;
  opacity: 1;
}

.common_booking_links a {
    font-size: 4.4vw;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3.8vw 0;
    font-weight: bold;
}

.common_booking_links a img {
    width: 5.1vw;
    margin-right: 1vw;
    height: auto;
}

.common_booking_links a.link_form {
    background-color: var(--orange);
    color: white;
    
}

.common_booking_links a.link_line {
    background-color: #00B900;
    color: white;
}


@media screen and (min-width: 801px) {
.common_booking_links {
    bottom: inherit;
    top: 50%;
    transform: translateY(-50%);
    left: inherit;
    right: 0;
    display: block;
    max-width: 120px;
}

.common_booking_links a {
    font-size: 16px;
    width: 100%;
    text-align: center;
    
    flex-direction: column;
    padding: 20px 5px;
}

.common_booking_links a img {
    margin: 0 0 10px;
    width: 30px;
}


}