section{
  padding: 6rem 0;
}

/* ========== ヘッダー（index.html仕様） ========== */
#header.Forpc {
  width: calc(100% - 25rem);
  background-color: #fff;
  box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}
.header-contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 12px 2rem 12px;
}
.header-contents .header-btn-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 500px;
}
.header-contents .header-logo {
  width: 200px;
}
.header-btn-area a {
  text-align: center;
  color: #fff;
  font-size: 13px;
  padding: 10px 3px;
  font-weight: bold;
  line-height: 1.3;
  box-shadow: 2px 2px 4px #ddd;
}

.header-btn-area a {
  width: 170px;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s;
}
.header-btn-area a:last-child {
  background: #fff;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50px;
}


/* スクロールメニュー */
#scrollmenu {
  position: fixed;
  width: calc(100% - 25rem);
  z-index: 2;
  color: var(--black);
  padding: 15px 0;
  font-weight: 600;
  left: 0;
  background: #1daf58d9;
}
#scrollmenu .g-nav {
  width: 100%;
}
#scrollmenu .g-nav-menu {
  display: flex;
  padding: 0;
  justify-content: space-evenly;
  font-size: 13px;
  color: #fff;
}
#scrollmenu.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(0); }
}
#scrollmenu.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from { opacity: 0; transform: translateY(0); }
  to { opacity: 1; transform: translateY(0); }
}

/* SPヘッダー・固定CTA */
.header-sp {
  position: fixed;
  background: rgba(255, 255, 255, 0.699);
  box-shadow: inherit;
}
.header-sp .header__inner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  padding: 12px 15px;
}
.header-sp .header-logo {
  width: 170px;
}
.header-sp .header__menu {
  position: fixed;
  z-index: 50000;
  right: -100%;
  background: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}
.header-sp .header__inner.active .header__menu {
  opacity: 1;
  visibility: visible;
  position: absolute;
  height: 100dvh;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  padding: 5rem 10px;
}
.header-sp .menu__item {
  border-bottom: 1px solid var(--black);
}
.header-sp .menu__link {
  display: block;
  padding: 13px 20px;
  color: var(--black);
  font-size: var(--p);
  font-weight: bold;
}
.header-sp .header__menu-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.header-sp .header__menu-btn span:nth-child(-n + 3) {
  position: absolute;
  display: block;
  width: 30px;
  height: 2px;
  background: var(--black);
}
.header-sp .header__menu-btn span:nth-child(1) {
  top: 5px;
  transition: all 0.2s ease;
}
.header-sp .header__inner.active .header__menu-btn span:nth-child(1) {
  top: 12px;
  transform: rotate(45deg);
}
.header-sp .header__menu-btn span:nth-child(2) {
  top: 13px;
  transition: opacity 0.2s ease;
}
.header-sp .header__inner.active .header__menu-btn span:nth-child(2) {
  opacity: 0;
}
.header-sp .header__menu-btn span:nth-child(3) {
  top: 21px;
  transition: all 0.2s ease;
}
.header-sp .header__inner.active .header__menu-btn span:nth-child(3) {
  top: 12px;
  transform: rotate(-45deg);
}
.fixbutton {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 20px 0 10px;
  background-color: #ffffffbd;
  width: 100%;
  z-index: 100;
  justify-content: space-evenly;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.fixbutton .btn {
  margin: 10px auto;
  display: block;
}
.fixbutton.active {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 1050px) {
  #header.Forpc {
    width: 100vw;
    padding: 0;
  }
  .header-btn-area a:first-child {
    width: 11vw;
  }
  .header-btn-area a:last-child {
    width: 16vw;
  }
  .header-contents {
    width: 94vw;
  }
  .header-contents .header-btn-area {
    width: 29vw;
  }
  #scrollmenu {
    width: 100%;
  }
  #scrollmenu .g-nav-menu {
    font-size: 1.5vw;
  }
}


h2 {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  z-index: 1;
}

.title_tmp {
  text-align: center;
}

.en_title {
  display: inline-block;
  font-family: var(--font-family-en);
  background: var(--gradation-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 4rem!important;
  line-height: 1!important;
}

.en_title.white {
  background: var(--white-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3{
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

/* fv */
#fv {
  background: url(../img/background-image.png);
  background-size: cover;
  background-position: right;
  padding: 3rem 5rem;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1200px) {
  #fv {
    padding: 2.5rem 2rem 0 !important;
  }
}
@media screen and (max-width: 480px) {
  #fv {
    background-position: 70%;
  }
}
#fv .fv_bk_img {
  width: 500px;
}
#fv .fv_box {
  width: 100%;
  display: unset;
  max-width: unset;
}
#fv .fv_box .brand-logo {
  width: 250px;
  display: flex;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #fv .fv_box .brand-logo {
    width: 200px;
    margin-bottom: 2rem;
  }
}
#fv .fv_box h1 {
  font-size: 2.6rem;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  #fv .fv_box h1 {
    font-size: 30px;
  }
}
#fv .fv_box h1 strong {
  color: unset;
}
#fv p {
  font-weight: bold;
  color: var(--white-color);
  font-size: 1.25rem;
  margin: 1rem 0 3rem;
}

#fv .fv_box img {
  width: 23rem;
}
@media screen and (max-width: 480px) {
  #fv .fv_box img {
    width: 100%;
  }
}

/* responsive */
@media screen and (max-width: 768px) {
  #fv {
    padding: 90px 0 50px;
  }
  #fv p {
    font-size: 15px;
  }
  #fv .fv_bk_img {
    width: 100%;
  }
  #fv .fv_box {
    display: block;
  }

  #fv .fv_box h1 span {
    font-size: 15px;
    width: 80px;
    min-width: auto;
    padding: 5px;
  }
  #fv .fv_box h1 span.span_1 {
    top: -65px;
    left: -5px;
  }
  #fv .fv_box h1 span.span_2 {
    top: -65px;
    left: 100px;
  }
  /* .service_banner {
    width: 80%;
    margin: 0px auto 80px;
    display: block;
  }
  .service_banner h3 {
    font-size: 17px;
  } */
}

/*FV btn*/
.fv-btn-area {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.fv-btn-area .btn {
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  /* border-radius: 50px; */
  border: 0;
  box-shadow: 0 0 0 transparent;
  background: #ffffff;
  color: #2cb179;
  text-decoration: none;
  color: #2cb179;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem !important;
  width: 180px !important;
  margin: 0;
  border: 2px solid #fff;
  border-radius: 100px;
}

.fv-btn-area .btn::after {
  content: "";
  display: none;
}

.fv-btn-area .download_link .btn {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
}

@media screen and (max-width: 480px) {
  .fv-btn-area {
    flex-direction: column;
  }
  .fv-btn-area .btn {
    width: auto !important;
  }
}







#about{
  /* background: var(--bg-color); */
  position: relative;
}

#about .about_area{
  display: grid;
  grid-template-columns: 1fr 3px 2fr;
  gap: 2rem;
}
#about .about_area span.border{
  background: var(--gray-color);
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  #about .about_area{
    grid-template-columns: 1fr;
    grid-template-rows: 0.5fr 3px 2fr;
  }
}

#about .about_area .title_tmp{
  margin-bottom: 0;
  align-self: center; 
}

#about .about_area p{
  /* text-align: center; */
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
}

#about .about_area strong{
  display: inline;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white-color);
  background: var(--gradation-color);
}



#services {
  background: linear-gradient(135deg,#1DAC56, #DEDE43 100%);;
}
#services h2 {
  color: var(--white-color);
}


#services .services_box{
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  position: relative;
  margin: 6rem 0 2rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

 #services h3{
  color: var(--white-color);
  padding: 0.5rem 1rem;
  background: var(--gradation-color);
  border-radius: 5px;
  display: inline-block;
  font-size: 2rem;
}

#services h3 span{
  background: var(--white-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-family-en);
  font-weight: bold;
  font-style: italic;
  font-size: 6rem;
  position: absolute;
  top: -5rem;
  left: 0;
  line-height: 1;
} 

#services .services_s_box{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #services .services_s_box{
    grid-template-columns: 1fr;
  }

  #services .services_s_box img{
    max-width: 100%;
    margin: 0 auto;
  }
}
  #services .services_box img{
    width: 500px;
    margin: 0 auto 2rem;
  }


#services .services_s_box dl{
  display: grid;
  grid-template-columns: 7rem 1fr;
  margin-bottom: 2rem;
}

#services .services_s_box dl dt{
  background: var(--main-color);
  text-align: center;
  color: var(--white-color);
  padding: 0.5rem 1rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 3px;
}

#services .services_s_box dl dd{
  padding: 0.5rem 1rem;
  font-weight: 500;
  line-height: 1;
}

#services .recommend{
  background: var(--sub-color);
  padding: 2rem;
}
#services h4{
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

#services .list_recommend{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #services .list_recommend{
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

#services .list_recommend li{
  background: var(--white-color) url(../img/icon_recommend.svg) no-repeat;
  background-position: 1rem 1.3rem;
  border-radius: 5px;
  padding: 1rem 1rem 1rem 3rem;
  font-weight: 500;
}

#services .services_wrapper{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  /* align-items: stretch;   */
}
@media screen and (max-width: 768px) {
  #services .services_wrapper{
    grid-template-columns: 1fr;
  }
}

#services .services_wrapper .services_box{
  display: flex;
  flex-direction: column;
}
#services .services_wrapper .recommend{
  flex: 1;
  display: flex;
  flex-direction: column;
}

#services .services_wrapper .list_recommend{
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

#services .services_wrapper .lnk_btn {
  margin-top: auto;
}

#services .services_wrapper .list_recommend{
  grid-template-columns: 1fr;
  gap: 1rem;
}

#feature .feature_area{
  padding: 2rem 0;
}

#feature .feature_box{
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin-bottom: 3rem;
  border: solid 3px var(--main-color);
}

#feature .feature_s_box{
  display: grid;
  grid-template-columns: repeat( 2, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #feature .feature_s_box{
    grid-template-columns: 1fr;
  }
}

#feature .feature_box .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 4rem;
  margin-right: 1rem;
  background: var(--main-color);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  vertical-align: middle;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-style: italic;
}



#case {
  background: var(--main-color);
}
#case .case_area{
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width:786px) {
  #case .case_area{
    grid-template-columns: 1fr;
  }
}
#case h2{
  color: var(--white-color);
}


#case .case_box{
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  /* display: grid;
  grid-template-rows: 1fr;
  gap: 2rem; */
  margin-bottom: 2rem;
  text-align: center;
}
/* @media screen and (max-width: 768px) {
  #case .case_box{
    grid-template-columns: 1fr;
  }
} */

#case .case_box img{
  width: 9rem;
}

#case .case_box .tag p{
  font-size: 0.875rem;
  font-weight: bold;
  padding: 0.3rem 1rem;
  border: solid 1px var(--font-color);
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 2rem;
}

/* @media screen and (max-width: 768px) {
  #case .case_box img{
    max-width:10rem;
    width: 100%;
    display: block;
    margin: 0 auto;
  }
} */


#case .case_box dl{
  text-align: left;
}

#case .case_box dt{
  color: var(--white-color);
  font-weight: bold;
  display: inline-block;
  padding: 0 0.5rem;
  background: var(--main-color);
  border-radius: 5px;
}

#case .case_box dd{
  font-weight: 500;
  margin-bottom: 1rem;
}

#voice {
  background-color: #fff;
}
#voice .inner-box .btn {
  margin-top: 2rem;
}
#voice .article_box {
  display: flex;
  margin-top: 50px;
  gap: 1.5rem;
  /* padding: 0 1rem; */
}
#voice .article_box .article_s_box {
  width: calc(33.33% - 1.5rem);
}
@media screen and (max-width: 768px) {
  #voice .article_box {
    flex-direction: column;
    gap: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  #voice .article_box .article_s_box {
    width: 100%;
    padding-bottom: 0;
  }
}

#voice .article_box .article_s_box p {
  font-weight: bold;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--main-color);
}
#voice .article_box .article_s_box h3 {
  font-size: 1rem;
  padding-top: 0.5rem;
}


#flow {
  background-color: var(--bg-color);
}

#flow .flow_area{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  #flow .flow_area{
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

#flow h3{
  padding-top: 1rem;
  border-top: solid 3px var(--gray-color);
  margin-top: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

#flow h3::before{
  content: "";
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 100px;
  border: solid 3px var(--bg-color);
  background: var(--main-color);
  position: absolute;
  top: calc((-1rem) + 5.5px );
  left: 50%;
  transform: translateX(-50%);
}

#flow h3::after{
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  border-radius: 100px;
  background: var(--main-color);
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

#flow h3 span {
  display: block;
  font-family: var(--font-family-en);
  color: var(--main-color);
  font-weight: bold;
  font-style: italic;
  font-size: 2rem;
}


#flow .flow_box img{
 width: 6rem ;
}

#flow .flow_box p{
 padding: 0 0.5rem;
}




#example .example_area{
  padding: 2rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #example .example_area{
    grid-template-columns: 1fr;
  }
}

#example .example_box{
  background: var(--bg-color);
  border-radius: var(--border-radius);
  padding: 1rem;
}

#example .example_box h3{
  position: relative;
}

#example .example_box h3::after{
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  border-radius: 100px;
  background: var(--main-color);
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

#example .example_box strong{
  font-size: 2.5rem;
  font-family: var(--font-family-en);
  margin-right: 1rem;
}

#example .example_img{
  width: 12rem;
  margin: 0 auto;
}


#faq{
  background: var(--bg-color);
}

#faq .faq_area{
  padding: 2rem 0;
}

#faq .faq_box{
  background: var(--white-color);
  padding: 1rem 2rem;
  margin-bottom: 2rem;
}

#faq .faq_box h3{
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

#faq .faq_box h3 span{
  color: var(--main-color);
  font-family: var(--font-family-en);
  font-weight: bold;
  font-size: 2rem;
  margin-right: 1rem;
  vertical-align: middle;
}






#resources .resources_list{
  display: grid;
  grid-template-columns: repeat( 3, 1fr);
  gap: 2rem;
  margin:4rem 0;
}

#resources .resources_list article{
  display: flex;
  height: 100%;
}

#resources .resources_list a{
  display: block;
  box-shadow: var(--object-box-shadow);
  border-radius: 5px;
  transition: 0.3s;
  flex: 1;
}

#resources .resources_list a h3{
  margin: 0;
  padding: 1rem 1rem 0.5rem;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  color: var(--main-color)
}

#resources .resources_list a h4{
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 14px;
}

#resources .resources_list ul{
  padding: 0 1rem 1rem 1rem;

}
#resources .resources_list ul li{
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.3rem;
  font-size: 0.875rem;
}
#resources .resources_list ul li::before{
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: var(--main-color);
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 0.7rem;
}

#resources .resources_list a:hover{
  box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.1);
  transform: translate(2px, 2px);
  transition: 0.3s;
}



@media screen and (max-width: 768px) {
  #resources .resources_list{
    grid-template-columns: repeat( 2, 1fr);
  }
}

@media screen and (max-width: 480px) {
  #resources .resources_list{
    grid-template-columns: 1fr;
  }
}

