@charset "utf-8";

/* 
=================================================================================

▼▼▼　テンプレJS用のCSS。不要なものは削除　▼▼▼

=================================================================================
*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  line-height: 2;
  color: #000;
}
h1, h2, h3, h4, h5 {
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  /* PC用 */
  html {
    font-size: 10px;
  }
  .inner {
    position: relative;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  /* SP用 */
  html {
    font-size: calc(10vw / 395 * 100); /* 最大値768px、文字サイズ10pxの場合 */
  }
  .inner {
    width: 100%;
    padding: 0 5rem;
    max-width: 100%;
    margin: auto;
  }
}


section[class^="area"] {
  position: relative;
}

i[id] + section[class^="area"] { margin-top: 5rem; }

/* 
=================================================================================

▼▼▼　文字　▼▼▼

=================================================================================
*/
.go {
  font-family: "Noto Sans JP", sans-serif;
}
.pop {
  font-family: "Poppins", sans-serif;
}
.ald {
  font-family: "Aldrich", sans-serif;
}
.b {
  font-weight: bold;
}
.m {
  font-weight: 500;
}
/* googleマテリアルアイコン */
body .material-icons-outlined {
  font-size: inherit;
}

/* 
=================================================================================

▼▼▼　ちらつき対策（CSS）　▼▼▼

=================================================================================
*/

.loading {
  position: fixed;
  background: #fff;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 1s all;
  opacity: 1;
  pointer-events: all;
}

/* 
=================================================================================

▼▼▼　SP用フローティングメニュー　▼▼▼

=================================================================================
*/

.floatig_menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 9;
  transition: 1s all;
}

/* 
=================================================================================

▼▼▼　サンプルボタン　▼▼▼

=================================================================================
*/

/* ▼ btn02 ▼ */
.btn02 > * {
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em 1.5em 1em 2.5em;
  gap: 1em;
  background: #000;
  color: #fff;
  transition: .5s all;
}
.btn02 > *:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background: #ccc;
  color: #000;
}
.btn02 > * .arrow {
  color: #000;
  background: #fff;
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5em;
  height: 2em;
  overflow: hidden;
  overflow: clip;
  position: relative;
}
.btn02:hover > * .arrow > * {
  animation: btn02_move .5s 1;
}
@keyframes btn02_move {
  0% { transform: translateX(0); }
  49% { transform: translateX(5em); }
  50% { transform: translateX(-5em); }
  51% { transform: translateX(-5em); }
  100% { transform: translateX(0); }
}
/* ▲ btn02 ▲ */

/* 
=================================================================================

▼▼▼　カスタム　▼▼▼

=================================================================================
*/

body {
  width: 100%;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  overflow: clip;
  position: relative;
}

/* ID登録用 */
i[id] {
  font-size: 0;
  display: block;
}

/* 文字とアイコン */
.tpbox {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.tpbox img {
  vertical-align: baseline;
}

/* メイン */

/* MV */
.mv_box{
  width: 85.33vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 6.5vw;
  right: calc(50% - 42.67vw);
}
.mv_text{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 0.5vw;
}
.mv_text p{
    width: 43%;
    font-size: 2.5vw;
    color: #fff;
    position: relative;
    text-align: center;
    z-index: 0;
    line-height: 1;
}
.mv_text p::before{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 80%;
    background-color: #000;
    z-index: -1;
}
.mv_text p:last-child::before{
    width: 66%;
    right: calc(50% - 33%);
  }
.mv_text p span{
    color: #F2FF3F;
    -webkit-text-stroke-width: 0.1vw;
    -webkit-text-stroke-color: #000;
    font-size: 5.21vw;
    position: relative;
    bottom: -0.5vw;
    line-height: 1;
}
.mv_box h2{
  font-size: 1.6vw;
  color: #fff;
  text-align: center;
  margin-top: 2vw;
}
.mv_logo{
  width: 15.75vw;
  margin-top: 1.75vw;
}
.mv_box button{
  width: 15.75vw;
  font-size: 1.05vw;
  font-weight: 700;
  text-align: center;
  border-radius: 2vw;
  background: #D45032;
  color: #fff;
  margin-top: 2.7vw;
  box-shadow: 0px 6px  23.8px 0px rgba(0, 0, 0, 0.49), 0px 0px 8px 0px #FF6F4F inset, 0px -8px 18.2px 0px #BA0B0B inset, 0px 0px 10.5px 0px #FFE1DA inset;
}
.mv_box button:hover{
  background-color: #CA4A2D;
}
.mv_box button a{
    padding: 1vw 0;
    width: 100%;
    display: block;
    opacity: 1.0;
}
.mv_news{
  background-color: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  gap: 4rem;
}
.mv_news_contents{
  font-size: 1.6rem;
  padding-right: 3rem;
  border-right: solid 1px #fff;
}
.mv_news_category{
  font-size: 1.3rem;
  color: #000;
  background-color: #fff;
  text-align: center;
}
.mv_news_item{
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
}
/* MV */

/* コンテンツ */
.about{
  text-align: center;
}
.about_bg{
  background: url(../img/about_bg.png) no-repeat center;
  background-size: cover;
  padding: 5.5rem 0 ;
}
.about_inner{
  max-width: 88rem;
  margin: 0 auto;
  font-size: 2rem;
}
.section_subtitle{
  font-size: 1.8rem;
  color: #07AD8B;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.5rem;
}
.section_title{
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-align: center;
}
.section_title span{
  font-size: 10rem;
  line-height: 1;
  line-height: 1.5;
}
.about_list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
}
.about_list li{
  width: 19rem;
  height: 19rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: #6B6B6B;
  background-color: #fff;
  border: solid 1px #07AD8B;
  border-radius: 50%;
  font-weight: 700;
}
.about_list li img{
  width: 3rem;
}

.section_inner{
  max-width: 113rem;
  margin: 0 auto;
  padding: 6rem 0 8rem;
}
.features_list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.features_list li{
  height: 9rem;
  background-color: #494949;
  border-radius: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features_list li a{
  width: 36rem;
  height: 100%;
  display: flex;
  gap: 0.8rem;
  align-items: center;;
  padding: 2.5rem;
}
.features_list_text1{
  width: 3.5rem;
  font-size: 4.4rem;
  color: #61F5D7;
  line-height: 1;
  text-align: center;
}
.features_list_text2{
  font-size: 1.8rem;
  line-height: 1.5;
  color: #fff;
}
.features_arrow{
  background-color: #fff;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features_arrow .material-icons-outlined{
  color: #07AD8B;
}


.point{
  width: 0.8rem;
}
.detail_list{
  margin: 4rem 0 8rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.detail_box{
  padding: 4rem 7rem;
  border-radius: 62px;
  background: #FFF;
  box-shadow: 0px 0px 15.1px 0px #E5E5E5;
}
.features_detail_box_note{
  display: flex;
  align-items: center;
  gap: 1rem;
}
.features_detail_box_note p{
  font-size: 1.6rem;
  color: #6B6B6B;
  font-weight: 700;
}
.detail_title_box1{
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}
.detail_title_box2{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.detail_title_box3{
  display: flex;
  align-items: center;
  gap: 3rem;
}
.detail_title_box3 h2{
  font-size: 3rem;
  font-weight: 700;
}
.detail_title_box3 p{
  font-size: 11.8rem;
  color: #07AD8B;
  line-height: 1;
}
.detail_img{
  width: 40rem;
}
.fare_list_box{
  margin-top: 4rem;
}
.fare_list_box h3{
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  line-height: 35px;
}
.fare_list_table{
  width: 83.7%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #12b09b;
  border: 2px solid #12b09b;
  border-radius: 1.2rem;
  overflow: hidden;
  text-align: center;
  margin: auto;
}
.fare_list_table td{
  vertical-align: middle;
}
.fare_list_head{
  background: #12b09b;
  color: #fff;
  font-size: 1.8rem;
  border: none;
  text-align: center;
  padding: 0.5rem 0;
}
.fare_list_blank{
  background-color: #fff;
  border-bottom: 1px solid #12b09b;
  padding: 0.5rem 0;
}
.fare_list_place{
  background: #e1f4f0;
  color: #07AD8B;
  font-size: 1.6rem;
  font-weight: 700;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #12b09b;
  padding: 0.5rem 0;
}
.fare_list_item{
  background: #e1f4f0;
  color: #07AD8B;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid #12b09b;
}
.fare_list_price{
  background: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem 0;
  border-bottom: 1px solid #12b09b;
}
.fare_list_price span{
  font-size: 1.4rem;
}
.fare_list_note{
  font-size: 1.3rem;
  color: #6B6B6B;
  font-weight: 400;
  margin-top: 4rem;
}
.ec_list_box{
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
}
.ec_list{
  width: 49%;
}
.ec_icon_list{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}
.ec_list h3{
  font-size: 1.8rem;
  font-weight: 700;
  color: #07AD8B;
  background-color: #E5F6F2;
  text-align: center;
  padding: 0.4rem;
}
.ec_icon_list li{
  width: 15rem;
  height: 4.5rem;
  font-size: 1.2rem;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3rem;
  border: 1px solid rgba(7, 173, 139, 0.45);
}
.ec_list_box_note{
  font-size: 1.4rem;
  color: #6B6B6B;
  text-align: end;
}
.ec_list_box_note2{
  font-size: 1.4rem;
  color: #6B6B6B;
  margin-top: 3rem;
}

.contact_btn{
width: 100%;
}
.contact_btn > * {
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 1.5em 1em 2.5em;
  gap: 1em;
  background: #D45032;
  color: #fff;
  transition: .5s all;
  width: 62rem;
  margin: auto;
  font-size: 2rem;
  position: relative;
  box-shadow: 0px 5px 5.5px 0px rgba(212, 80, 50, 0.17), 0px 0px 8px 0px #FF6F4F inset, 0px -8px 18.2px 0px #BA0B0B inset, 0px 0px 10.5px 0px #FFE1DA inset;
}
.contact_btn > *:hover {
  opacity: 1;
  filter: alpha(opacity=100);
  background: #CA4A2D;
}
.contact_btn > * .arrow {
  color: #D45032;
  background: #fff;
  border-radius: 50vmin;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5em;
  height: 2em;
  overflow: hidden;
  overflow: clip;
  position: absolute;
  top: calc(50% - 1em);
  right: 2rem;
}
.contact_btn:hover > * .arrow > * {
  animation: btn02_move .5s 1;
}
@keyframes btn02_move {
  0% { transform: translateX(0); }
  49% { transform: translateX(5em); }
  50% { transform: translateX(-5em); }
  51% { transform: translateX(-5em); }
  100% { transform: translateX(0); }
}

.gray_bg{
  background-color: #F8F8F8;
}
.process_list{
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.process_list li{
  display: flex;
  border-radius: 2rem;
  border: 1px solid #D0D0D0;
  position: relative;
}
.process_list li:after{
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.8rem;
  background: url(../img/arrow01.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: calc(-2.5rem - 0.8rem);
  left: calc(50% - 0.8rem);
}
.process_list li:last-child:after{
  display: none;
}
.step{
  width: 8rem;
  font-size: 1rem;
  color: #fff;
  background-color: #07AD8B;
  text-align: center;
  border-radius: 2rem 0 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.step span{
  font-size: 4rem;
  line-height: 1;
}
.step_text_box{
  padding: 2.5rem 4rem;
}
.step_title{
  font-size: 2rem;
  font-weight: 700;
}

.faq_list{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.accordion_box {
  background-color: #E5F6F280;
  border-radius: 6rem;
  border: 1px solid #66C7B3;
  overflow: hidden;
  padding: 1.5rem 3rem;
  font-size: 2rem;
  font-weight: 700;
}
.accordion_box span{
  font-size: 4rem;
  color: #66C7B3;
  padding-right: 2rem;
}
.faq_title_box{
  display: flex;
  align-items: center;
}
.accordion {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion_menu {
  display: none;
  padding: 0rem 5.1rem 1.5rem;
  font-weight: 400;
}

.remove {
  display: none;
}
.bg_white{
  background-color: #fff !important;
}
.section_text{
  font-size: 2rem;
  text-align: center;
  margin-top: 4rem;
}

.solution_box{
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  gap: 2.5rem;
}
.solution_list{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 8.5rem;
  flex-direction: column;
  margin-top: 4rem;
}
.phase_box{
  width: 55rem;
  height: 36rem;
  background-color: #fff;
  border-radius: 3rem;
  padding: 2.5rem 4.5rem 4.5rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.phase_box::after{
  content: "";
  display: block;
  width: 1.6rem;
  height: 6.8rem;
  background: url(../img/arrow02.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: calc(0% - 6rem);
  left: calc(50% - 0.8rem);
}
.phase_box_comment{
  font-size: 2rem;
  color: #fff;
  text-align: center;
  border-radius: 3rem;
  padding: 0.5rem 0;
  position: relative;
}
.comment1::after{
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.7rem;
  background-color: #07AD8B;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -1.6rem;
  left: calc(50% - 0.8rem);
}
.comment2::after{
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.7rem;
  background-color: #1A705E;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  position: absolute;
  bottom: -1.6rem;
  left: calc(50% - 0.8rem);
}
.phase_box p{
  width: 34rem;
  margin: 0 auto;
  font-size: 2rem;
  text-align: center;
  background: rgba(48, 100, 214, 0.10);
}
.bg_green{
  background-color: #07AD8B;
}
.bg_d_green{
  background-color: #1A705E;
}
.phase_list{
  margin: 3rem 0 2rem;
}
.phase_list li{
  display: flex;
  align-items: center;
  font-size: 2rem;
  gap: 1.5rem;
  padding-left: 2rem;
}
.solution_note{
  color: #fff;
  text-align: center;
  width: 37rem;
  margin: 2rem auto;
  background: rgba(62, 85, 136, 0.60);
  line-height: 35px;
  position: absolute;
  top: calc(50% - 2rem);
  left: calc(50% - 18.5rem);
}

.plan_box1{
  width: 39rem;
  margin: auto;
  background-color: #fff;
  border-radius: 3rem;
  border: 6px solid #33B499;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
}
.plan_box1::after{
  content: "";
  display: block;
  width: 14rem;
  height: 5rem;
  background: url(../img/arrow03.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: calc(50% - 2.5rem);
  left: calc(100%);
}
@media screen and (max-width: 1124px) {
  .plan_box1::after{
    display: none;
  }
}
.plan_box2{
  width: 39rem;
  margin: auto;
  border-radius: 30px;
  border: 6px solid #1A705E;
  background: #FFF;
  padding: 4rem 3rem;
  text-align: center;
}
.plan_subtitle{
  font-size: 1.8rem;
  color: #A9A9A9;
}
.plan_title{
  font-size: 3rem;
  font-weight: 800; 
  margin-bottom: 3rem;
}
.plan_text{
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: start;
}
.plan_img{
  width: 19rem;
  margin: auto;
}

.news_list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.news_list li{
  width: 30%;
  padding: 2rem;
  border-radius: 3rem;
  border: 1px solid #F5F5F5;
  background: #FFF;
  box-shadow: 0px 1px 93px 0px rgba(182, 182, 182, 0.25);
}
.news_list li img{
  width: 32rem;
}
.news_list li h2{
  font-size: 2rem;
}
.news_list li p{
  font-size: 1.6rem;
  margin-top: 2rem;
}
.news_list .arrow{
  font-size: 2.4rem;
  width: 10rem;
  padding: 1rem 0;
  margin-left: auto;
  margin-top: 2rem;
  color: #fff;
  background-color: #07AD8B;
  border-radius: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news_list .arrow:hover .material-icons-outlined{
  animation: btn02_move .5s 1;
  color: #fff;
}
/* コンテンツ */

/* フッター */
footer {
  background: #000;
  color: #fff;
  padding: 4rem;
}
.f_list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5em;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {/* PC用 */
  .f_list > .adress {
    margin-right: auto;
  }
  .copyright {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
footer .logo {
  width: 17rem;
}
.table{
  display: block;
  line-height: 1;
}
.table .material-symbols-outlined{
  font-size: 1rem;
}

@media screen and (max-width: 768px) {/* SP用 */
  footer {
    padding: 4.2rem 0;
  }
  .f_list {
    gap: 2.625rem;
    justify-content: center;
    text-align: center;
  }
  footer .logo {
    display: table;
    margin: 0 auto;
    width: 18rem;
  }
  .copyright {
    text-align: center;
  }
  .adress{
    line-height: 1.5 !important;
  }
  .sp_mt60{
    margin-top: 6.3rem;
  }
  .sp_fs12{
    font-size: 1.265rem !important;
  }
  .table .ico{
    display: block;
    line-height: 1;
  }
  .ico .material-symbols-outlined{
    font-size: 1rem;
  }
  .din.lh100p{
    font-size: 1.05rem !important;
  }
}
@media screen and (min-width: 769px) {/* PC用 */
  .go_head {
    position: fixed;
    z-index:5;
    right: calc(50% - 54rem);
    bottom: -10rem;
    transition: 1s all;
    text-align: center;
    color: #fff;
    background: #000;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
  }
  .go_head > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .nav_active .go_head {
    bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {/* SP用 */
  .go_head {
    text-align: center;
  }
}

/* フッター */

/* メイン */

.font_g{
  color: #07AD8B;
}
.font_d_g{
  color: #1A705E;
}

/* お問い合わせ */
.contact_head{
  background-color: #000;
  padding: 2rem;
}
.contact_head img{
  width: 20rem;
}
.thanks_message{
  width: 62rem;
  margin: 10rem auto;
  font-size: 1.8rem;
  text-align: center;
}
.thanks_box{
  padding: 4rem;
  border: solid 1px #000000;
}
.back_to_top{
  margin-top: 10rem;
}
.thanks_box.contact_btn > *{
  width: 100% !important;
}
@media screen and (max-width: 768px) {
.thanks_message{
  width: 37rem;
  margin: 10rem auto;
  text-align: center;
}
.thanks_box{
  padding: 2rem;
  border: solid 1px #000000;
}
.back_to_top{
  margin-top: 5rem;
}
}
/* お問い合わせ */

/* スマホ */
@media screen and (max-width: 768px) {
  p{
    font-size: 1.4rem;
  }
  .mv_text{
    gap: 1.5rem;
  }
  .mv_text p{
    width: 25.5rem;
    font-size: 3rem;
  }
  .mv_text p span{
    font-size: 6.2rem;
  }
  .mv_box h2{
    font-size: 1.6rem;
    margin-top: 3rem;
  }
  .mv_logo{
    width: 20rem;
    margin-top: 2rem;
  }
  .mv_box button{
    width: 30rem;
    padding: 0.5rem 0;
    font-size: 1.6rem;
    border-radius: 4rem;
    margin-top: 4rem;
  }
  .mv_news{
    gap: 1rem;
  }
  .mv_news_contents{
    padding: 1rem;
  }
  .mv_news_item{
    flex-wrap: wrap;
    flex-direction: row;
    flex: 1;
    align-items: center;
    gap: 0 1rem;
  }
  .mv_news_title{
    width: 100%;
  }
  .about_inner{
    max-width: 91.2%;
    margin: auto;
  }
  .section_subtitle{
    font-size: 1.6rem;
  }
  .section_title{
    font-size: 2.3rem;
  }
  .about_text{
    font-size: 1.7rem;
  }
  .about_list{
    gap: 0.8rem;
  }
  .about_list li{
    width: 11rem;
    height: 11rem;
    font-size: 1.3rem;
  }

  .section_title span{
    font-size: 5rem;
  }
  .features_list_text2{
    font-size: 1.6rem;
  }
  .features_list li{
    height: 7rem;
  }
  .features_list li a{
    padding: 2rem;
  }

    
  .section_inner{
    max-width: 36rem;
    margin: auto;
    padding: 4rem 0 6rem;
  }
  .features .detail_box{
    box-shadow: none;
    position: relative;
    padding: 0;
  }
  .features .detail_box::after{
    content: "";
    display: block;
    width: 36rem;
    height: 1rem;
    border-top: solid #DBDBDB 1px;
    position: absolute;
    bottom: -3rem;
    left: calc(50% - 18rem);
  }
   .features .detail_box:last-child::after{
    display: none;
  }
  .detail_box{
    padding: 3rem 1.75rem;
    border-radius: 2rem;
  }
  .detail_title_box1{
    flex-direction: column;
  }
  .detail_title_box3 p{
    font-size: 7.8rem;
  }
  .detail_title_box3 h2{
    font-size: 2rem;
  }
  .detail_title_box_text{
    font-size: 1.4rem;
  }
  .fare_list_table{
    width: 100%;
    border-radius: 0.5rem;
  }
  .fare_list_box h3{
    font-size: 1.6rem;
  }
  .fare_list_head{
    font-size: 1.4rem;
  }
  .fare_list_place{
    font-size: 1.4rem;
  }
  .fare_list_subhead{
    font-size: 1.2rem;
  }
  .fare_list_item{
    font-size: 1.4rem;
  }
  .fare_list_price{
    font-size: 2.4rem;
  }
  .fare_list_price span{
    font-size: 1.4rem;
  }
  .fare_list_note{
    margin-top: 2rem;
  }
  .features_list_text1{
    position: relative;
    top: 0.25rem;
  }
  .ec_list_box{
    flex-direction: column;
    margin-top: 1rem;
    gap: 0rem;
  }
  .ec_list{
    width: 100%;
  }
  .ec_list h3{
    font-size: 1.4rem;
  }
  .ec_icon_list{
    gap: 1rem 0;
  }
  .ec_icon_list li{
    width: 11.5rem;
  }
  .ec_list_box_note{
    font-size: 1.3rem;
  }
  .ec_list_box_note2{
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  .contact_btn > *{
    width: 34rem;
    padding: 1.5rem 0;
    font-size: 1.5rem;
  }
  .contact_btn > * .arrow{
    width: 6rem;
  }
  .contact_btn  .material-icons-outlined{
    font-size: 2.4rem;
  }
  .detail_list{
    margin: 4rem 0;
  }
  .process_list{
    gap: 3rem;
  }
  .process_list li{
    border-radius: 1rem;
  }
  .process_list li:after{
    width: 1.2rem;
    height: 0.6rem;
    bottom: calc(-1.2rem - 0.8rem);
  }
  .step{
    width: 4.5rem;
    font-size: 1.2rem;
    padding: 1rem 0;
    justify-content: start;
    border-radius: 1rem 0 0 1rem;
  }
  .step span{
    font-size: 3rem;
  }
  .step_text_box{
    padding: 1rem;
    flex: 1;
  }
  .step_title{
    font-size: 1.7rem;
  }
  .step_text{
    margin-top: 1rem;
  }

  .accordion_box{
    border-radius: 1rem;
    padding: 2rem 1rem;
  }
  .faq_title_box{
    align-items: start;
  }
  .faq_title_box span{
    font-size: 3rem;
  }
  .faq_title{
    font-size: 1.7rem;
    align-items: start;
  }
  .accordion_box span {
    padding-right: 1rem;
    line-height: 1;
    padding-top: 0.5rem;
  }
  .accordion_menu{
    font-size: 1.4rem;
    padding: 0rem 3.5rem 1.5rem;
  }
  .add,
  .remove{
    width: 2rem;
    height: 2rem;
    align-items: center;
    position: relative;
    top: 0.5rem;
  }
  .section_text{
    font-size: 1.7rem;
  }
  .solution_list{
    width: 36rem;
    margin: auto;
  }
  .phase_box{
    width: 100%;
    height: 100%;
    padding: 2rem;
  }
  .phase_list{
    margin: 0;
  }
  .phase_list li{
    font-size: 1.7rem;
    align-items: start;
  }
  .point_icon2{
    width: 1.7rem;
    height: 1.7rem;
    position: relative;
    top: 1.0rem;
  }
  .phase_box{
    padding: 2rem 0 3rem;
  }
  .phase_box p{
    width: 27rem;
    font-size: 1.7rem;
    margin-top: 2rem;
  }
  .phase_box_comment{
    width: 100%;
    font-size: 1.5rem;
    padding: 1.5rem 0;
  }
  .tab_list{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  .plan_box1,
  .plan_box2{
    width: 100%;
    padding: 3rem;
  }
  .plan_subtitle{
    font-size: 1.6rem;
    letter-spacing: 0.48rem;
  }
  .plan_title{
    font-size: 2rem;
  }
  .plan_text{
    font-size: 1.7rem;
  }
  .plan_img{
    width: 15.5rem;
  }
  .solution_note{
    position: relative;
  }
  .plan_select{
    width: 100%;
    font-size: 1.5rem;
    background-color: #E5F6F280;
    border: solid #66C7B3 1px;
    border-radius: 3rem;
    text-align: center;
    padding: 1rem 0;
    position: relative;
  }
  .plan_box1,
  .plan_box2{
    position: relative;
  }
  .plan_box1 .material-icons-outlined{
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: calc(50% - 2rem);
    right: -1.5rem;
    font-size: 1.2rem;
    color: #D45032;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .plan_box2 .material-icons-outlined{
    width: 4rem;
    height: 4rem;
    position: absolute;
    top: calc(50% - 2rem);
    left: -1.5rem;
    font-size: 1.2rem;
    color: #D45032;
    background-color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom_plan .material-icons-outlined{
    position: absolute;
    top: calc(50% - 1.2rem);
    right: 1.5rem;
    font-size: 2.4rem;
    color: #07AD8B;
  }
  .basic_plan .material-icons-outlined{
    position: absolute;
    top: calc(50% - 1.2rem);
    left: 1.5rem;
    font-size: 2.4rem;
    color: #07AD8B;
  }
  .tabcontents {
    display: none;
  }
  .tab.tab_active,
  .tabcontents.tab_active {
  display: block;
  }
  .tab1,.tab2{
    background-color: #E5F6F280;
    border: solid #66C7B3 1px;
    border-radius: 3rem;
    color: #000000;
  }
  .tab1.tab_active {
  color: #fff;
  background-color: #07AD8B;
  }
  .tab2.tab_active {
  color: #fff;
  background-color: #1A705E;
  }
  .basic_plan,
  .custom_plan{
    display: block;
  }
  .basic_plan.tab_active,
  .custom_plan.tab_active{
    display: none;
  }

  .comment1::after{
    display: none;
  }
  .comment1.tab_active::after{
    content: "";
    display: block;
    width: 1.6rem;
    height: 1.7rem;
    background-color: #07AD8B;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    position: absolute;
    bottom: -1.6rem;
    left: calc(50% - 0.8rem);
  }
  .comment2::after{
    display: none;
  }
  .comment2.tab_active::after{
    content: "";
    display: block;
    width: 1.6rem;
    height: 1.7rem;
    background-color: #1A705E;
    clip-path: polygon(0 0, 100% 0%, 50% 100%);
    position: absolute;
    bottom: -1.6rem;
    left: calc(50% - 0.8rem);
  }

  .news_list li{
    width: 100%;
  }
  .w36{
    width: 36rem;
  }
  .float_contact::before{
    content: "";
    display: block;
    width: 2rem;
    height: 1.3rem;
    background: url(../img/contact_img1.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.65rem);
    left: 5rem;
  }
  .float_contact::after{
    content: "";
    display: block;
    width: 10.5rem;
    height: 7.4rem;
    background: url(../img/contact_img2.png) no-repeat center;
    background-size: contain;
    position: absolute;
    top: calc(50% - 4.3rem);
    right: 0.2rem;
  }
  .foot a{
    display: flex;
    align-items: center;
  }
}
/* スマホ */


/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
　▼▼　以降SP用　▼▼
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
@media screen and (max-width: 768px) {/* SP用 */
  :root {
    --res-font-size: 1; /* SP文字サイズの一括調整倍率 */
    --res-margin-size: 1; /* SP余白の一括調整倍率 */
  }
  .fs18{
    font-size: 1.9rem !important;
  }
  .fs16{
    font-size: 1.69rem !important;
  }
}