:root {
  --border-radius: 8px;
}

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: "hiragino-kaku-gothic-pron", sans-serif; */
  font-family: "Noto Sans JP", sans-serif;
  /* font-weight: 600; */
  font-style: normal;
}
.contents {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
main{
  overflow-x: hidden;
}

a {
    text-decoration: none;  
}

ul li a{
  color: #000;
  text-decoration: none;
}
.menu_button a{
  color: #000;
  text-decoration: none;
}

/* animations */
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated_short {
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5;
}

/*************
* backInUp *
*************/

@keyframes backInUp {
    0% {
      transform: translateY(1200px) scale(0.7);
      opacity: 0.7;
    }
  
    80% {
      transform: translateY(0px) scale(0.7);
      opacity: 0.7;
    }
  
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .backInUp {
    opacity: 0;
  }
  .backInUp.go {
    animation-name: backInUp;
  }

/*************
* FadeInUp *
*************/

@-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(400px);
    }
  
    50% {
      opacity: 0.3;
    }
  
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(400px);
    }
  
    50% {
      opacity: 0.3;
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .fadeInUp {
    opacity: 0;
  }
  
  .fadeInUp.go {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  
/*************
* Flash *
*************/
@keyframes flash {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* header */

header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: sticky;
  top: 0;
  right: 0;
  background-color: #fff;
  z-index: 2;

}
.sf_tpm{
  width: 20% !important;
  padding-top: 30px;
}


/* header pc */

.header-right_pc {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
  font-weight: lighter;
}
.header-right_pc ul {
  display: flex;
  gap: 30px;
}
ul li {
  list-style: none;
}
.register_btn {
  margin-left: 2%;
  background-color: #f76f98;
  border: none;
  color: #fff;
  /* 親要素のfont-familyが効かないのでここで指定 */
  font-family: "Noto Sans JP", sans-serif;
  padding: 10px 40px;
  border-radius: 100px;
  /* height: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hidden_pc {
  display: none !important;
}
.hidden_sp {
  display: block !important;
}
.header_pc {
  display: flex !important;
  align-items: center;
  width: 94%;
  position: fixed;
}
.fv_section {
  margin-top: 83px;
}

.hidden {
  display: none !important;
}
.relative {
  position: relative;
}
.fixed{
  position: fixed;
}

.absolute {
  position: absolute;
}
.c {
  text-align: center;
}
.bold {
  font-weight: 600;
}
p {
  color: #333333;
  margin: 0;
}
.border_radius_top{
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.border_radius_bottom{
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}

/* font */
.font_normal {
  font-size: 16px;
  margin: 0;
}
.font_sml {
  font-size: 17px;
}
.font_large {
  font-size: 25px;
}
.font_exLarge {
  font-size: 35px;
}
.banner_title {
  font-size: 23px;
  padding-bottom: 30px;
}
.font_matching {
  font-size: 22px;
  font-weight: bold;
}
.font_service {
  font-size: 16px;
}
.font_thin {
    font-weight: lighter;
}
/* color */
.color-white {
  color: #fff;
}
.color-black {
  color: #333;
}
.color-green {
  color: #30b4a2;
}
.color-red {
  color: red;
}
.color-pink {
  color: #f5648e;
}
.color-white {
  color: #fff;
}
.color-blue {
  color: #9da1f6;
}
/* bg color */
.bg-green {
  background-color: #d3f2ec;
}
.bg-green2 {
  background-color: #30b4a2;
}
.bg-lightblue {
  background-color: #e9f4f2;
}
.bg-yellow {
  background-color: #f9f2e1;
}

.bg-orange {
  background-color: #ff9d00;
}
.bg-green2 {
  background-color: #30b4a2;
}
.bg-lightgray {
  background-color: #d1d1d1d1;
}
/* slick */
.slider {
  opacity: 0;
  transition: opacity .5s linear;
  padding: 5% 0 5% 5%;
  min-height: 340px;  

  /* width: 768px;
    margin: 30px auto 0; */
}

.slider.slick-initialized{
    opacity: 1;
}
.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}
.slider .slick-list {
  /* padding: 0 5% 0 0% !important; */
}

.slider img {
    display: none;
    margin-right: 0.2%;
    margin-left: 0.2%;
}

.slider.slick-initialized img {
  display: block;
}

.slick-dots {
  position: relative !important;
  margin-top: 3%;
  bottom: 0;;
}

.slick-dots li button:before {
  font-size: 20px !important;
  color: #fff !important;
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  color: #30b4a2 !important;
}
.slick-ed.slick-slider {
  margdottin-bottom: 0 !important;
}

/* blog */
/* .blog_section {
  padding: 3%;
} */
.blog-container {
  background-color: #fff;
  padding: 10px 15px 10px 40px;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-between;
}
.blog_detail {
  width: 85%;
}
.blog_detail a{
  text-decoration: none;
}
.blog_title_box {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.blog_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
}
.blog_box-left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.blog_box-left img{
    width: 50px;
}
.blog_border {
  border-bottom: 2px solid rgba(128, 128, 128, 0.507);
}


.new_icon{
    animation: 2s linear infinite flash;
}


/* tel section */

.tel-container {
  background-color: #fff;
  padding: 3% 3% 2% 3%;
  border-radius: var(--border-radius);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.btn_tel .sf_y_icon, .btn_contact .sf_y_icon{
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 17px;

}

.arrow_box {
  position: relative;
  background: #ffffff;
  padding: 20px;
  border: 2px solid #afafaf;
  border-radius: 13px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  height: max-content;
  width: 100%;
  /* font-size: 14px; */
}
.arrow_box:after,
.arrow_box:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  left: 100%;
  top: 50%;
}
.arrow_box:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-top: -17px;
  border-left-color: #ffffff;
}
.arrow_box:before {
  border-color: rgba(10, 250, 250, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-top: -17px;
  margin-left: 2px;
  border-left-color: #afafaf;
}
.tel_top {
  display: flex;
  gap: 9px;
}
.tel-woman {
  width: 14%;
  height: auto;
}

.tel-container {
  background-color: #fff;
  padding: 3% 3%;
  border-radius: var(--border-radius);
}
.tel_second-left-flex {
  display: flex;
  align-items: center;
  gap: 2px;
}
.check_txt {
  font-size: 19px;
}
a[href^="tel"] {
  color: inherit; /* 親要素の色を引き継ぐ */
  text-decoration: none; /* 下線を削除 */
}
a[href^="mailto"] {
  color: inherit; /* 親要素の色を引き継ぐ */
  text-decoration: none; /* 下線を削除 */
}
.phone_num {
  font-size: 49px;
  margin: 0;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-top: -11px;
  margin-bottom: -7px;
  color: black !important;
  text-decoration: none !important;

}
.tel_second-left-flex p {
  margin: 0;
  font-size: 19px;
}
.tel_second {
  margin: 3% 3% 2% 3%;
  display: flex;
  justify-content: space-between;
}
.tel_second-right {
  display: flex;
  flex-direction: column;
  width: 43%;
  gap: 10px;
}
.tel_second-right button {
  padding: 4%;
  border-radius: 100px;
  color: #fff;
  font-size: 19px;
  border: none;
  /* background-color: #ff5a5a; */
  background-color: #f5857d;
}
.see-more a{
  color: #30b4a2;
}
.sj_02_img {
  width: 25%;
}
.sj_03_img {
  width: 73%;
}
.return_btn  a{
  color: #fff;
  text-decoration: none;
}
.sj_02_txt {
  top: 29%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 35px;
  width: 100%;
  margin: 0;
  line-height: 114%;
}

.reason_txt_box {
  display: flex;
  align-items: center;
  gap: 2px;
  justify-content: center;
  padding: 12px 0;
}
.reason_txt {
  font-size: 30px;
  color: #fff;
}
.sf_9_01{
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.plus_icon {
  background-color: #fff;
  padding: 5px;
  border-radius: 100px;
  width: 23px;
  /* height: 13px; */
  text-align: center;
}
.showMore_btn {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto;
  justify-content: center;
  cursor: pointer;
  padding: 2%;
}
.reason_box {
  background-color: #30b4a2;
  border-radius: 10px;
}
.reason_box_sp {
  background-color: #30b4a2;
  border-radius: 4px;
  width: 1%;
  margin: 0 1px;
  padding: 5px 15px 15px 15px;
  height: 773px;
}
.slider6 {
  width: 90%;
  margin: 0 auto;
  margin-top: 4%;
}
.showMore_btn p {
  color: #fff;
}
.slider2 {
  padding: 5%;
}
.reason_box {
  margin-right: 20px;
}
.panel_area {
  /* padding: 5px 10px; */
  background-color: #fff;
  border-radius: 12px;
  margin: 0px 15px 0px 15px;
}
.panel_area_sp {
  /* padding: 5px 10px; */
  background-color: #fff;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.explanation_box {
  height: 0px;
  overflow: hidden;
  /* padding: 5px 10px;
  margin: 4px 15px 15px 15px; */
  transition: height 0.3s linear;
}
.txt_show {
  padding: 3%;
}
.explanation_box_btn{
  color: red;
  border: 1px solid red;
  padding: 4px 6px;
  margin-bottom: 30px;
  
}

.box_flex{
  display: flex;
  align-items: center;

  justify-content: center;
}

.txt_flex{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.border {
  background: linear-gradient(
    transparent 50%,
    #ffff00 10% 90%,
    transparent 90%
  );
}
.bg-gray {
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #00000096;
  z-index: 3;
}
.banner {
  cursor: pointer;
}
.banner_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #fff;
  margin: 0 auto;
  z-index: 3;
  padding: 30px 40px;
  border-radius: 13px;
  width: 515px;
  max-height: 600px;
  overflow-y: auto;
}
.banner_txt_area {
  display: flex;
  gap: 5px;
}
.banner_txt {
  margin: 0;
}
.num {
  margin: 0;
}
.necessary_part {
  background-color: #f4f4f4;
  padding: 2%;
  margin: 2% 0;
}
.price_table {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 5px;
  margin: 1% 6%;
}

.price_table div {
  padding: 6% 3%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kaku-maru {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.price_btn {
  background: #fff;
  border: 2px solid #30b4a2;
  border-radius: 10px;
  width: 63%;
  color: #30b4a2;
  font-size: 22px;
  padding: 4% !important;
  cursor: pointer;
}
.price_btn2 {
  background: #fff;
  border: 2px solid #ff9d00;
  border-radius: 10px;
  width: 63%;
  color: #ff9d00;
  font-size: 22px;
  padding: 4% !important;
  cursor: pointer;
}
.price_alert {
  font-size: 12px;
  margin-left: 22%;
  margin-right: 6%;
}
.sf_sj {
  border-radius: 20px;
  width: 80%;
  border: 2px solid #30b4a2;
  padding: 4%;
  background: #fff;
}
.sf_sj_sp_container {
  border-radius: 15px;
  border: 2px solid #30b4a2;
  padding: 4%;
  background: #fff;
  height: 79%;
}
.price_style {
  margin-top: 5%;
}
.sj_06 {
  margin-top: 9%;
}
.sj_06_txt {
  top: 17%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 100%;
  font-size: 25px;
}
.sj_06_txt_large {
  font-size: 50px;
}
.sf_06 {
  margin: 0 auto;
  display: flex;
}
.popularity_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2%;
}
.popularity {
  background-color: #fff;
}
.poplurairy_point {
  border: 3px solid #30b4a2;
  border-radius: 15px;
  width: 13%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3% 5%;
  color: #30b4a2;
  height: 30%;
  height: 31px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.hukudashi_area {
  display: flex;
  gap: 9px;
  width: 78%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: 4%;
}
.arrow_box2 {
  position: relative;
  background: #ededed;
  padding: 19px;
  border-radius: 13px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  height: max-content;
  width: 56%;
  font-size: 17px;
}
.arrow_box2:after,
.arrow_box2:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  left: 100%;
  top: 50%;
}
.arrow_box2:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-top: -17px;
  border-left-color: #ededed;
}
.arrow_box2:before {
  border-color: rgba(10, 250, 250, 0);
  border-top-width: 11px;
  border-bottom-width: 11px;
  border-left-width: 11px;
  border-right-width: 11px;
  margin-top: -17px;
  margin-left: 2px;
  border-left-color: #ededed;
}
.sf-woman {
  width: 23%;
}
.connect {
  background-color: #fff;
}
.data {
  background-color: #fff;
}
.data_flex {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  margin: 6% auto;
  width: 75%;
}
.member_txt {
  font-size: 24px;
}

.member_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding: 0 5%;
}

.member_box img {
  width: 69%;
  margin-bottom: auto;
}

.border-right {
  border-right: 1px solid gray;
}
/* .sk {
  padding: 5%;
} */
 
.sf_sk{
  width: 93%;
}


/* section sk */
.top1 {
  top: 43.7%;
}
.top2 {
  top: 53.3%;
}
.top3 {
  top: 63.4%;
}
.top4 {
  top: 73.2%;
}
.top5 {
  top: 83%;
}
.top6 {
  top: 93%;
}
.top7 {
  top: 36%;
}
.left {
  right: 54%;
  text-align: right;
}
.right {
  left: 54%;
}
.left2 {
  right: 70%;
  text-align: right;
}
.right2 {
  left: 72%;
}
.font_sk {
  font-size: 21px;
  width: 42%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.process_wrapper {
  display: flex;
  gap: 15px;
}
.process_box {
  background-color: #fff;
  border-radius: 10px;
}
.process_box-top {
  background-color: #30b4a2;
  color: #fff;
  font-size: 18px;
  padding: 1%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.g01 {
  width: 75%;
  padding: 7% 0;
}

.campagin {
  background-color: #fff;
}
.radius-img {
  border-radius: 15px;
}
.sj_08 {
  padding-top: 5%;
}
.ai {
  background-color: #30b4a2;
}
.sf_ai {
  width: 90%;
}
.matching_area {
  display: flex;
  background-color: #fff;
  padding: 17px 40px 17px 17px;
  align-items: center;
  gap: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.sf_fl {
  width: 17%;
}
.matching_area p {
  width: 83%;
  text-align: center;
}
.sf_sj_09{
  width: 60%;
}
.see-more{
  padding-top: 40px;
  text-decoration: underline;
}
.slider3{
  width: 60%;
  margin: auto;
}
.sf_yk_ti{
  width:40%;
}
.service {
  background-color: #30b4a2;
  padding-top: 10px;
}
.flex_service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}
.service_area-top {
  background-color: #847eb1;
  width: max-content;
  margin: 0 auto;
  color: #fff;
  padding: 1% 4%;
  font-size: 20px;
  border-radius: 10px;
}
.tel_section_pc {
  margin-top: 10px;
}
.service_area {
  background-color: #fff;
  padding: 20px;
}
.sf_cn {
  width: 85%;
}
.sf_c_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.left-area {
  display: flex;
  align-items: center;
  gap: 2%;
  width: 100%;
}
.rhombus {
  width: 24px;
}
.accordion_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #aee5dc;
}
.detail_box {
  /* background-color: #aee5dc; */
  background-color: #e5fcfa;
  padding: 1% 3%;
  border-radius: 10px;
}
.detail_area {
  height: 0px;
  overflow: hidden;
  transition: height 0.3s linear;
  margin-top: 2%;
}
.plus-icon {
  cursor: pointer;
  width: 24px;
}

.user-img {
  border-radius: 50%;
  width: 30%;
  margin: 0 auto;
}
.comment_box {
  background-color: #fff;
  border: 2px solid #30b4a2;
  border-radius: 10px;
  padding: 20px;
  /* padding: 1% 2%; */
  width: 1.7%;
  height: 403px !important;
}
.slider3 .slick-slide {
  margin-right: 1vw !important;
  margin-left: 1vw !important;
  min-width: 273px;
}

/*  */
.slider4 {
  margin: 0 auto;
  max-width: 500px;
  width: 80%;
}
.slider-img {
  margin: 0 10px;
}
.slider-img img {
  height: auto;
  width: 100%;
}
.slider3 .slick-dots {
  background-color: #d3f2ec;
}
/* .questions {
  padding-right: 30px;
  padding-left: 30px;
} */
.questions_wrapper, .yk_tl_wrapper{
  padding: 0 40px;
}
.question_category_area {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #b3b3b3;
  margin-top: 6%;
}
.question_category {
  padding: 2% 2%;
  width: 100%;
  text-align: center;
  /* background-color: #b3b3b3; */
  border-top-left-radius: 10px;
  color: #b3b3b3;
  border-top-right-radius: 10px;
  transition: 0.2s ease;
  cursor: pointer;
}

.question_category:hover {
  background-color: #b3b3b3;
  color: #fff;
}
.active {
  background-color: #b3b3b3;
  color: #fff;
}
.question_box {
  display: flex;
  justify-content: space-between;
  padding: 1% 2%;
  background-color: #d3f2ec;
  border-radius: 8px;
  align-items: center;
}
.question_area,
.answer_area {
  margin-top: 2%;
}
.answer_area {
  overflow: hidden;
  height: 0px;
  transition: height 0.3s linear;
}
.question_box_left {
  display: flex;
  align-items: center;
  gap: 2%;
  width: 95%;
}
.answer_box {
  padding: 1% 2%;
  display: flex;
  align-items: start;
  gap: 2%;
}
.question_box_right {
  cursor: pointer;
}
.answer-icon {
  margin-top: -1%;
}
.yk_tl_txt {
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  font-size: 32px;
  top: 56%;
}
.promise_box {
  background-color: #30b4a2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2% 10% 20% 10%;
  border-radius: 7px;
}
.promise_txt {
  color: #fff;
  margin: 0;
  font-size: 17px;
  text-align: center;
}
.promise_btn {
  color: #fff;
  border: 1px solid #fff;
  border-radius: 40px;
  padding: 1% 4%;
  bottom: 4%;
  margin: 0;
  font-size: 12px;
  right: 5%;
}
.promise_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2%;
  margin: 2% 0;
  grid-template-rows: 1fr 1fr;
}
.promise_icon {
  width: 60px;
  margin: 6% auto;
  border: 2px solid #309388;
  border-radius: 50%;
  height: 60px;
}

.promise_modal_icon {
  width:60px;
  height: 60px;
  margin: 2% auto;
}

.promise_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #fff;
  margin: 0 auto;
  z-index: 3;
  padding: 4%;
  border-radius: 13px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.promise_modal_btn {
  background-color: #30b4a2;
  font-size: 15px;
  padding: 2% 8%;
  margin-top: 30px;
  border: none;
  border-radius: 40px;
  color: #fff;
}
.menu_pc {
  top: 100%;
  right: 38%;
  background-color: #fff;
  padding: 20px 12px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.menu_pc  ul li a{
  font-size: 14px;
}
.menu_pc ul li{
  padding: 5px 0;
}
.menu_pc ul{
  padding: 0;
  margin:0;
}
.menu_pc ul li{
  font-weight: lighter;
}
.promise_title {
  font-size: 20px;
  padding: 20px 0;
}
.dummy {
  top: 0;
  width: 100%;
  height: 100%;
  right: 0;
  background-color: transparent;
}

/* security */
/* .security{
  padding: 5% 0%;
  margin-top: 12%;
} */
.security_container {
  border: 2px solid #30b4a2;
  border-radius: 15px;
  background-color: #fff;
  padding: 10px 31px;
  width: 500px;
  margin: 0 1vw;
}
.security_txt {
  font-size: 24px;
  width: max-content;
}
.security_container_top {
  display: flex;
  align-items: center;
  gap: 2%;
  padding: 1% 3%;
  justify-content: space-between;
  width: max-content;
  min-height: 120px;
  width: 94%;
}
.security_container_botton {
  padding: 1% 3%;
  min-height: 116px;
  padding-top: 5%;
}
.security_container_top img {
  width: 34%;
}
.border_dott {
  border-bottom: 5px dotted #30b4a2;
}
.slider5 {
  margin-top: 5%;
}
.cms-img {
  width: 18% !important;
}

.slider5_pc {
  width: 73%;
  margin: 50px auto;
}

/* contact */
.contact {
  font-weight: lighter;
  font-size: 18px;
  margin-bottom: 70px;
}
.contact_wrapper{
  padding: 0 50px;
}
.contact_input {
  width: 97%;
  background-color: #efefef;
  border: none;
  height: 35px;
  border-radius: 8px;
  margin-top: 2%;
  padding: 5px 10px;
}
.contact_textarea {
  width: 97%;
  background-color: #efefef;
  border: none;
  border-radius: 8px;
  margin-top: 2%;
  padding: 5px 10px;
}

.contact_input:focus {
  border: none;
  outline: none;
}
.required {
  background-color: #f5857d;
  color: #fff;
  padding: 4px 13px;
  font-weight: lighter;
  margin-left: 1%;
  font-size: 14px;
}

.select_container {
  display: flex;
  gap: 5px;
}
.select_container input{
    display: none;
}
.btn_contact a{
  color: #fff;
  text-decoration: none;
}
.select_btn {
  width: 100%;
  background-color: #efefef;
  border: none;
  height: 35px;
  border-radius: 8px;
  margin-top: 2%;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1%;
  cursor: pointer;
}
input[name="contact"]:checked + .select_btn{
    background-color: #f5857d;
    color: #fff;
}
.input_container {
  margin-top: 4%;
  width: 100%;
}

.submit_btn {
  width: 53%;
  background-color: #30b4a2;
  border: none;
  border-radius: 100px;
  padding: 3% 2%;
  color: #fff;
  font-size: 19px;
  font-weight: bold;
  margin-top: 8%;
}
.contents_pc {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 3%;
  left: 0;
  right: 0;
}

.FV_container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.FV_container img{
    margin-bottom: 15px;
}

.FV_container img:first-child{
    width: 100%;
}

.FV_container img:not(:first-child){
    width: 49%;
}



.FV_container_img_top {
  padding-top: 4%;
  margin-bottom: 10px;
}

.FV_container_img_bottom {
    display: flex;
    gap: 16px;
}

.FV_container_img_bottom img {
    width: 49%;
}
.sf_sj_01{
  width: 94%;
}

.border_radius15 {
  border-radius: 15px;
}
.padding_common {
  padding-top: 43px;
}
.bg-dummy_container {
  top: 15%;
  z-index: -1;
  width: 100%;
  max-width: 1800px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.bg-dummy_container2 {
  top: 61.5%;
  z-index: -1;
  width: 100%;
  max-width: 1800px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.bg01_img {
  width: 100%;
}

.sf_9_05_icon {
  width: 60%;
}
.dummy_bg {
  top: 46%;
  z-index: -1;
  width: 100%;
  background-color: #d3f2ec;
  width: 100%;
  height: 800px;
  margin-top: -1%;
}
.margin_bg {
  margin-top: -2%;
}

.sj_03_section_sp {
  background-color: #fff;
  padding: 73px 0px;
}
.sf_9title_img {
  width: 70%;
}
.no-img {
  width: 10%;
}
.reason_box_sp {
  opacity: 0.3;
  transform: scale(0.8);
  transition: opacity 0.5s, transform 0.5s;
}
.slick-center {
  opacity: 1;
  transform: scale(1);
}

.explanation_box_sp {
  height: 356px !important;
}

.slider6 .slick-dots li button:before {
  font-size: 20px !important;
  color: #d3f2ec !important;
  opacity: 1 !important;
}
.service_wrapper{
  padding: 0 20px;
}
.slider6 .slick-dots li.slick-active button:before {
  color: #30b4a2 !important;
}
.tel_wrapper{
  padding: 0 20px;
}
.price_area_pc {
  background-color: #fff;
}
.service_container_pc {
  display: flex;
  gap: 18px;
  padding: 3% 6%;
}
.sf_wd{
  width: 25%;
}
.price_pc,
.service_pc {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sf_sskz {
  width: 70%;
}
.data01 {
  width: 73%;
}

.border-title {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #30b4a2;
  color: #fff;
  padding: 10px;
}
.sf_cp_02 {
  width: 60%;
}
.sf_ai_box {
  padding: 3%;
  background-color: #fff;
  border-radius: 15px;
}
.matching_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

footer {
  padding-top: 10px;
  padding-bottom: 10px;

}


.copyright,
.copyright a {
  color: #333;
}

.copyright a:hover {
  text-decoration: underline;
}
.submit_btn_container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sj_02_img2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: 0.4;
}
.slick-prev:before,
.slick-next:before {
  color: #30b4a2 !important;
}

.container_radius {
  border-radius: 13px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.padding_txt {
  padding: 15px 0;
}

.ai_wrapper{
  padding: 0 20px;
}


/* ハンバーガーメニュー */
.menu_modal{
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding-top: 70px;
  background-color: #d3f2ec;
}
.register_btn_container{
  padding: 9% 5% 8% 5%;
}
.btn_container_modal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 45%;
  width: 100%;
}
.modal_register_btn p{
  color: #fff;
  text-align: center;
  font-size: 18px;
}
.register_arrow_icon{
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 15px;
  height: 15px;
}
.modal_register_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #30b4a2;
  padding: 20px 15px;
  border-radius: 10px;
}
.menu_button{
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
 font-size: 18px;
}
.modal_menu_container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  padding: 0% 5%;
  gap: 10px;
}



/* プランモーダル */
.plan_modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #fff;
  margin: 0 auto;
  z-index: 3;
  padding: 40px 50px;
  border-radius: 13px;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.plan_modal_btn {
  background-color: #30b4a2;
  font-size: 15px;
  padding: 2% 8%;
  margin-top: 30px;
  border: none;
  border-radius: 40px;
  color: #fff;
}
.plan_title{
  color: #fff;
  padding: 5px 10px;
}
.plan_padding{
  padding: 30px 0;
}

.banner_register{
  bottom: 4%;
  right: 0;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: end;
  width: 200px;
  z-index: 999;
  cursor: pointer;
  text-align: center;
}
.banner_register img{
  width: 100%;

}

.bg_shadow{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.banner_register_sp{
  bottom: -0.5%;
  width: 100%;
  text-align: center;
  z-index: 998;
  transform: translateY(116px);
  transition: .5s linear;
  opacity: 0;
}
.banner_register_sp img{
  width: 80%;
}

.active_banner{
  transform: translateY(0px) !important;
  opacity: 1 !important;

}
.close_banner_btn{
  background-color: #30b4a2;
  font-size: 15px;
  padding: 2% 8%;
  margin-top: 30px;
  border: none;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
}
.close_banner_modal{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* footer */
.footer_logo{
  width: 30%;
}

footer{
  background-color: #30b4a2;
  margin-top: auto;
  padding: 5px 20px;
  position: relative;
}

.footer_area{
  display: flex;
  flex-direction: column;
  align-items: start;
}
.footer_area.align_items_center{
  align-items: center;
}

.copyright p{
  color: #fff;
  margin: 0 10px;
}
.copyright p a{
  text-decoration: none;
  color: #fff;
  margin: 0 10px;
}
.copyright{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.copyright{
  width: 100%;
  margin-top: 15px;
  font-weight: lighter;
}