html{
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

/* Common */
strong {
  font-weight: bold;
  color: var(--main-color);
}

main .inner_box{
  width: 100%!important;
}

body {
  margin: 0;
  font-family: var(--font-family-pr);
  color: var(--black);
  line-height: 1.5;
  scroll-behavior: smooth;
  width: 75%;
  font-weight: 500;
  font-size: 1rem;
}
@media screen and (max-width: 1050px) {
  body {
    width: 100%;
  }
}
.accordion-area.caution .title::before,
.accordion-area.caution .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--black);
}
.accordion-area.caution .title::before {
  top: 48%;
  right: 600px;
  transform: rotate(0deg);
}
.accordion-area.caution .title::after {
  top: 48%;
  right: 600px;
  transform: rotate(0deg);
}
.accordion-area.caution {
  text-align: center;
  padding: 10px;
}
/*　closeというクラスがついたら形状変化　*/
.accordion-area.caution .title.close::before {
  transform: rotate(0deg);
}

.accordion-area.caution .title.close::after {
  transform: rotate(90deg);
}
.accordion-area.caution .title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-size: 15px;
  padding: 5px;
  transition: all 0.5s ease;
  background: #fff;
  font-weight: bold;
}

/*アコーディオンで現れるエリア*/
.accordion-area.caution .box {
  display: none; /*はじめは非表示*/
  background: #fff;
  padding: 5px;
  /* font-size: var(--p); */
}

@media screen and (max-width: 1500px) {
  .accordion-area.caution .title::before {
    right: 40%;
  }
  .accordion-area.caution .title::after {
    right: 40%;
  }
}

@media screen and (max-width: 1050px) {
  .accordion-area.caution .title::before {
    right: 20%;
  }
  .accordion-area.caution .title::after {
    right: 20%;
  }
}
.Forsp {
  display: none;
}
img {
  width: 100%;
}
p {
  /* font-size: var(--p); */
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}
.number {
  font-weight: bold;
  color: #120e6a;
}
section {
  padding: 6rem 0;
  /* text-align: center; */
  overflow: hidden;
}
.inner_box {
  max-width: 1050px;
  margin: 0 auto;
  width: 100%;
}
.section-txt {
  margin-top: 10px;
  margin-bottom: 30px;
}
.center{
  text-align: center;
}
.small{
  font-size: 0.875rem;
}

.lnk_btn a{
  display: inline-block;
  text-align: center;
  color: var(--white-color);
  font-weight: bold;
  box-shadow: var(--object-box-shadow);
  background: var(--orange);
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: 0.3s;
  margin-top: 2rem;
}

.lnk_btn a:focus,
.lnk_btn a:hover{
  box-shadow: var(--object-box-shadow-off);
  transform: translate(2px, 2px);
  transition: 0.3s;
}

h2 {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
}

.english_title{
  text-align: center;
}
.english_title span{
  display: inline-block;
  font-family: var(--font-family-en);
  background: var(--gradation-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.5rem;
  line-height: 1;
  font-weight: bold;
  margin: 0 auto;
}

h3 {
  font-size: var(--h3);
  font-weight: bold;
}
.heading {
  background: #120e6a;
  color: #fff;
  font-size: 15px;
  width: fit-content;
  padding: 3px 10px;
  margin: 0 auto 10px;
  font-weight: bold;
}

/* header */
header {
  width: 75%;
  box-shadow: none;
  background: transparent;
  /* padding: 0.5rem 2rem; */
  box-sizing: border-box;
  box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
  background-color: #fff;
}
.header_note_flex {
  display: flex;
  gap: 20px;
  align-items: center;
}

@media screen and (max-width: 1050px) {
header {
  width: 100%;
  }
}
@media screen and (max-width: 750px) {
header {padding: 0;}
}

header .note {
    font-size: 11px;
    text-align: right;
    color: #fff;
    margin-top: 0.5rem;
    margin-left: 1rem;
}

header .note a{
    text-decoration: underline;
}

@media screen and (max-width: 750px) {
header .note {
    margin-top: 0rem;
}
}

.header-logo {
  width: 130px ;
  height: auto;
}
.header-logo a {
  display: block;
}
.header-contents {
  padding: 10px 30px;
  /* max-width: unset;
  width: unset; */
}

.header-contents .header-btn-area {
  /* width: unset; */
  gap: 1rem;
}

.header-btn-area a {
  padding: 0.8rem 1rem;
}
.header-btn-area a.bg_white {
  background-color: #fff;

}
/* .header-btn-area a:last-child {
  width: unset;
}

.header-btn-area a:first-child {
  width: unset;
} */

/* ----------
スクロールすると出てくるメニュー
---------- */
#scrollmenu {
  width: 75%;
  background: var(--tr-pink);
}

@media screen and (max-width: 1050px) {
  #scrollmenu {
    width: 100%;
  }
}

/* footer */
footer {
  background: var(--white);
  padding: 65px 1.5rem 40px !important;
}
footer .footer-box {
  color: var(--black);
}
footer .footer-link-box {
  width: 480px;
}
footer .footer-logo img {
  width: 230px;
}

.triangle2 {
  width: 0;
  height: 0;
  border-top: 35px solid var(--black);
  border-right: 40px solid transparent;
  border-left: 40px solid transparent;
  margin: 20px auto;
}

.download_link {
  /* font-size: var(--p); */
  font-weight: bold;
}

.inner_box {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* fv */
#fv {
  background: url(../img/background-image.png);
  background-size: cover;
  background-position: right;
  padding: 10rem 5rem 5rem!important;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
@media screen and (max-width: 1050px) {
  #fv {
    padding: 8rem 2rem 3rem!important;
  }
}
@media screen and (max-width: 480px) {
  #fv {
    background-position: 70%;
  }
}
#fv .fv_bk_img {
  width: 500px;
}
#fv .fv_box {
  width: 100%;
}
#fv .fv_box .brand-logo {
  width: 150px;
  display: flex;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #fv .fv_box .brand-logo {
    width: 100px;
    margin-bottom: 2rem;
  }
}
#fv .fv_box h1 {
  font-size: 48px;
  color: #ffffff;
}
#fv .fv_box h1 p {
  font-size: inherit!important;
}
.bracket_align {
  text-indent: -.5em;
}
@media screen and (max-width: 768px) {
  #fv .fv_box h1 {
    font-size: 30px;
  }
}
#fv .fv_box h1 strong {
  color: unset;
}
#fv p {
  font-weight: 700;
  color: #ffffff;
  font-size: 16px;
}
#fv2 {
  background: url(../img/fv_bk.png);
  background-size: cover;
  padding: 50px 0 50px;
}
#fv2 p {
  text-align: left;
}
#fv2 .fv_bk_img {
  width: 370px;
}
#fv2 .fv_box {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#fv2 .fv_box h1 {
  text-align: left;
  position: relative;
  font-size: 40px;
  font-weight: bold;
  color: var(--green);
}

.achievement_area {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .achievement_area {
    margin-top: 2rem;
  }
}
.achievement_area li {
  max-width: 10rem;
}


#company {
  padding: 2rem 0;
}

#company .inner_box {
  max-width: 1050px;
  margin: 0 auto;
}

#company .slider_company {
  margin: 0 auto;
}

#company .slider_company .slick-slide {
  padding: 0;
}

#company .slider_company .slick-slide img {
  display: block;
  width: 150px;
  height: 90px;
  object-fit: contain;
  margin: 0 auto;
}

#company .slider_company .slick-track {
  align-items: center;
}

#company .slick-list {
  overflow: visible !important;
}


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

#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 h2{
  margin-top: 0;
  align-self: center; 
}

/* #about .about_area p{
  text-align: left;
  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,#F29235, #F7DD36 100%);
}
#services h2 {
  color: var(--white-color);
}
#services .english_title span,
#voice .english_title span{
  background: var(--white-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#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);
}
@media screen and (max-width: 768px) {
  #services .services_box{
    padding: 1.5rem;
  }
}

#services .services_wrapper .services_box{
  padding: 1.5rem;
}

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

#services .num{
  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: 100%;
    max-width: 500px;
    display: block;
    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;
}
@media screen and (max-width: 768px) {
  #services .recommend{
    padding: 1rem;
  }
}

#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;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  #services .list_recommend li{
    background-size: 1rem;
    background-position: 0.5rem 0.8rem;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
  }
}

#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 .services_box > div{
  margin-bottom: 1rem;
} */
#services .services_wrapper .services_box h3{
  display: inline;
  line-height: 2;
  padding: 0.3rem 0.8rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* @media screen and (max-width: 768px) {
  #services .services_wrapper .services_box > div{
    min-height: auto;
    margin-bottom: 1rem;
  }
} */
#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;
}

#services .mgb1rem{
  margin-bottom: 1rem;
}

#services .not_btn{
  text-align: center;
  font-weight: bold;
  background: var(--bg-gray-color);
  padding: 1rem 2rem;
  margin-top: 2rem;
  border: solid 1px var(--gray-color);
}

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

/* #feature h3{
  margin-bottom: 2rem;
} */

#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_box:last-child{
  margin-bottom: 0;
}

#feature .feature_box .num{
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and ( max-width:750px){
  #feature .feature_box .num{
    grid-template-columns: 1fr;
  }
}

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

#feature .human_resource{
  margin-bottom: 2rem;
}

#feature .human_resource{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.875rem, 0.65rem + 1.13vw, 2rem);
  margin: 2rem 0 1rem;
}
@media screen and ( max-width:896px){
  #feature .human_resource{
    grid-template-columns: repeat(2, 1fr);
  }
} 
@media screen and ( max-width:480px){
  #feature .human_resource{
    grid-template-columns: 1fr;
  }
} 

#feature .human_resource li{
  background: var(--white-color);
  box-shadow: var(--object-box-shadow);
  border-radius: var(--border-radius);
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.8rem;
}

#feature .human_resource li img{
  display: block;
  margin: 0 auto 1em;
  max-width: 60%;
}
@media screen and ( max-width:750px){
  #feature .human_resource li img{
    max-width: 40%;
  }
}


#feature .feature_box .num p{
  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: 700;
  font-style: italic;
}

/* -------------------
#voice
--------------------*/

#voice {
  background: var(--main-color);
}

#voice section{
  background: var(--white-color);
  border-radius: var(--border-radius);
  box-shadow: var(--object-box-shadow);
  padding: 2rem;
  margin-bottom: 3rem;
}

#voice h2 {
  color: var(--white-color);
}
#voice h2 span{
  background: var(--white-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


#voice .voice_box{
  display: grid;
  grid-template-columns: clamp(7rem, 6.4rem + 3vw, 10rem) 1fr;
  gap: clamp(1rem, 0.667rem + 1.11vw, 2rem);
  margin-bottom: 1.5rem;
}
@media screen and (max-width:480px) {
  #voice .voice_box{
    grid-template-columns: 1fr;
  }

  #voice .voice_box img{
    margin: 0 auto;
    max-width: 40%;
    display: block;
  }
}

/* #voice .voice_box img.voice_first_img{
  max-width: 120px;
} */
@media screen and (max-width:480px) {
  #voice .voice_box img{
    margin: 0 auto;
    max-width: 40%;
  }
}

#voice .voice_box h3{
  color: var(--white-color);
}

#voice .voice_box h3 span{
  background: var(--orange);
  padding: 0.1rem 0.2rem;
}

#voice .voice_box .manager{
  font-weight: bold;
  /* padding-left: 3.5rem;
  position: relative;
  text-align: left; */
}

/* #voice .voice_box .manager::before{
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/company_icon.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
} */
#voice .dl {
  display: grid;
  grid-template-columns: 5.2rem 1fr;
  gap: 1rem;
}
#voice .dl dt span {
  background: var(--bg-gray-color);
  padding: 0.5rem 0.8rem;
  font-size: 0.875rem;
}

#voice .voice_overview {
  display: grid;
  gap: 1.5rem;
}
/* #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 h2 span{
  background: var(--white-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#case .case_box{
  background: var(--white-color);
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  text-align: center;
}
#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;
}


 */

#flow {
  background-color: var(--bg-gray-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;
}


/* common.css の #flow 上書き */
#flow .flow_box {
  display: block;
  margin-top: 0;
  justify-content: initial;
}

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

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




#example .example_area{
  padding: 1.5rem 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-gray-color);
  border-radius: var(--border-radius);
  padding: 2rem;
}

#example .example_box p.working_days{
  display: inline-block;
  padding: 0.2rem 1rem;
  border-radius: 100px;
  border: solid 1px var(--font-color);
  /* font-weight: bold; */
  font-size: 0.75rem;
}

#example .example_box h3{
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.125rem;
  background: var(--orange);
  color: var(--white-color);
  padding: 0.5rem;
  border-radius: 5px;
  margin-bottom: 1rem;
}

/* #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_box ul{
  margin-top: 2rem;
}

#example .example_box ul li{
  margin-bottom: 1rem;
  text-align: left;
}

#example .example_box ul li::before{
  content: "";
  display: inline-block;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--main-color);
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

#example .example_img{
  max-width: 8rem;
  width: 100%;
  margin: 0 auto;
}


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

#faq .faq_area{
  padding-top: 2rem;
}

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

#faq .faq_box h3{
  font-size: 1.125rem;
  /* margin-bottom: 1rem; */
}

#faq .faq_box .answer{
  padding-left: 5rem;
}
@media screen and ( max-width:750px){
  #faq .faq_box .answer{
    padding-left: 0;
  }
}
#faq .faq_box .num{
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  align-items: start;
}
@media screen and ( max-width:750px){
  #faq .faq_box .num{
    grid-template-columns: 1fr;
  }
}

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



/* .english_title {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #ffaa6b;
  font-family: var(--font-family-en);
} */

.title_text{
  text-align: center;
  font-weight: 500;
  margin-top: 1rem;
}
#voice .title_text{
  color: var(--white-color);
  margin-bottom: 2rem;
}
/* #problem {
  background: var(--white);
}
#problem .problem_box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 1.5rem;
  padding: 0 1rem;
}
#problem .problem_box .problem_s_box h3 span {
  background: var(--green);
  color: #fff;
  padding: 2px;
}
#problem .problem_box .problem_s_box {
  width: 30%;
}
#problem .problem_box .problem_s_box img {
  height: 165px;
  max-width: 95%;
  margin: 30px auto;
  object-fit: contain;
}
#problem .problem_box .problem_s_box p {
  font-weight: bold;
  font-size: 15px;
}
#problem .problem_box .problem_s_box p.solution_text {
  font-weight: bold;
}
#problem .problem_box .problem_s_box p.solution_text span {
  color: var(--orange);
  font-size: 18px;
}
#problem .problem_box .problem_s_box .fukidashi {
  background: #fff;
  padding: 10px;
  position: relative;
  width: 80%;
  margin: 20px auto;
}
#problem .problem_box .problem_s_box .fukidashi::before {
  position: absolute;
  content: "";
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
#problem .problem_box .problem_s_box .fukidashi p strong {
  text-align: center;
}
#problem .problem_box .problem_s_box .fukidashi p.features_text {
  text-align: left;
} */
/* .cta_area2 {
  background: var(--white);
}
.cta_area .inner_box {
  display: flex;
  gap: 3rem;
  justify-content: center;
}
.cta_area .inner_box h3 span {
  color: var(--orange);
}
.cta_area .inner_box .btn {
  margin-top: 20px;
}
.cta_area .inner_box div:nth-child(2) .btn {
  background: var(--green);
} */
/* #reason {
  background: var(--white);
}
#reason .reason_s_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
}
#reason .reason_s_box:nth-child(2) {
  flex-direction: row-reverse;
}
#reason .reason_s_box .reason_text {
  flex: 1;
  margin: 0 30px;
}
#reason .reason_s_box .reason_text h3 {
  background: var(--green);
  color: #fff;
  padding: 5px 0;
}
#reason .reason_s_box .reason_text p {
  margin: 5px 0;
  font-weight: bold;
  font-size: 18px;
  text-align: left;
}
#reason .reason_s_box .reason_text p span {
  font-size: 30px;
  font-weight: bold;
  color: #f98438;
  margin-left: 10px;
}
#reason .reason_s_box .reason_text p small {
  font-size: 13px;
}
#reason .reason_s_box .reason_img {
  flex: 1;
  padding: 0 1rem 0 0;
} */
/* #features .features_box {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
  justify-content: space-between;
}
#features .features_box .features_s_box {
  background: #fff9ea;
  width: 45%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
}
#features .features_box .features_s_box .features_text {
  flex: 3;
  text-align: left;
}
#features .features_box .features_s_box .features_text h3 strong {
  font-size: var(--h3);
}
#features .features_box .features_s_box .features_img {
  flex: 1;
  margin-left: 30px;
}
#example .example_box {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
}
#example .example_box .example_s_box {
  background: url(../img/example_bk.png) var(--white);
  background-size: cover;
  width: 330px;
  border-radius: 5px;
  padding-bottom: 30px;
}
#example .example_box .example_s_box h3 {
  background: var(--green);
  position: relative;
  width: 100%;
  color: #fff;
  border-radius: 5px 5px 0 0;
  padding: 10px 0;
}
#example .example_box .example_s_box h3::after {
  content: "";
  position: absolute;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--green);
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
#example .example_box .example_s_box .days {
  background: var(--green);
  color: #fff;
  font-size: 15px;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 50px;
  text-align: center;
  margin: 20px auto 10px;
  font-weight: bold;
}
#example .example_box .example_s_box .price {
  font-size: 20px;
  font-weight: bold;
}
#example .example_box .example_s_box .price span {
  font-size: 40px;
  font-weight: bold;
}
#example .example_box .example_s_box ul {
  width: 85%;
  margin: 10px auto 0;
  text-align: left;
}
#example .example_box .example_s_box ul li {
  text-indent: -1em;
  padding-left: 1em;
  margin: 10px 0;
} */

#article{
  background: var(--bg-gray-color);
}
#article .inner-box .btn {
  margin-top: 2rem;
}
#article .article_box {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
  gap: 1.5rem;
  /* padding: 0 1rem; */
}
@media screen and (max-width: 768px) {
  #article .article_box {
    flex-direction: column;
    gap: 2.5rem;
  }
}
#article .article_box .article_s_box {
  width: 330px;
  border-radius: 5px;
  /* padding-bottom: 30px; */
}
@media screen and (max-width: 768px) {
  #article .article_box .article_s_box {
    width: 100%;
    padding-bottom: 0;
  }
}

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

/* #article .article_box .article_s_box p {
  font-size: 14px;
  margin: 0.5rem 0;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -1px;
}
 */
/* #service {
  background: var(--white);
}
#service .service_box {
  display: flex;
  margin-top: 32px;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
#service .service_box .service_s_box {
  max-width: 400px;
}
#service .service_box .service_img {
  display: block;
  margin-top: 24px;
  box-shadow: 0px 0px 11px #c4c4c4;
} */
/* #voice {
  background: var(--white);
}
#voice .voice_box {
  margin-top: 50px;
}
#voice .voice_s_box {
  display: flex;
  margin-top: 50px;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: 50px auto 0;
}
#voice .voice_s_box .voice_img {
  flex: 1;
  margin-right: 30px;
}
#voice .voice_s_box .voice_img:nth-child(2) {
  margin-right: 0;
  margin-left: 30px;
}
#voice .voice_s_box .voice_text {
  flex: 7;
  background: #ffffff;
  padding: 20px;
  position: relative;
  text-align: left;
  border-radius: 5px;
}
#voice .voice_s_box:nth-child(2n + 1) .voice_text::before {
  content: "";
  position: absolute;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ffffff;
  transform: rotate(90deg);
  top: 50%;
  left: -19px;
}
#voice .voice_s_box:nth-child(2n) .voice_text::before {
  content: "";
  position: absolute;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #ffffff;
  transform: rotate(-90deg);
  top: 50%;
  right: -19px;
}
#voice .voice_s_box .voice_text ul li {
  text-indent: -1em;
  padding-left: 1em;
  margin: 5px 0;
  font-size: var(--p);
  font-weight: bold;
}
#flow {
  background: transparent !important;
}
#flow .inner_box {
  padding: 0 1rem;
  width: unset;
}
#flow .flow_box {
  flex-direction: column;
}
#flow .flow_box .flow_s_box {
  margin-bottom: 30px;
  width: 80%;
  margin: auto;
}
#faq {
  background: var(--white);
}
#faq .inner_box {
  padding: 0 1.5rem;
  width: unset;
}
#faq .faq_s_box {
  margin-top: 50px;
  border: 2px solid var(--black);
  text-align: left;
  padding: 20px;
  border-radius: 5px;
  background: #ffffff;
}
#faq .faq_s_box h3 {
  text-indent: -1em;
  padding-left: 1em;
}
#faq .faq_s_box h3 strong {
  color: var(--green);
}
#faq .faq_s_box p strong {
  color: #f98438;
  font-size: 20px;
  font-weight: bold;
}
#faq .faq_s_box p {
  font-size: 15px;
  text-indent: -1.3em;
  padding-left: 1.3em;
}
#faq .btn {
  margin: 15px auto 0;
  display: block;
} */

#resources .resources_area{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: left;
  margin-top: 50px;
  padding: 0 1rem;
}
@media screen and (max-width:768px){
  #resources .resources_area{
    grid-template-columns: 1fr;
  }
}

#resources article a{
  display: block;
  height: 100%;
  box-shadow: var(--object-box-shadow);
  border-radius: 5px;
  transition: 0.3s;
}

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

#resources h3{
  color: var(--orange);
  padding: 1rem 1rem .5rem;
  font-size: 16px;
}

#resources h4{
  font-size: 14px;
  color: var(--black);
  padding: .5rem 1rem .7rem;
}

#resources ul {
  padding: 0 1.5rem 1rem 1.5rem;
}

#resources ul li {
  padding-left: 1rem;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

#resources ul li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: var(--orange);
  border-radius: 100px;
  position: absolute;
  left: 0;
  top: 9px;
}

#cta{
  background: var(--gradation-color);
  padding: 2rem 0;
}

#cta .cta_area{
  background: var(--white-color);
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #cta .cta_area{
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  #header .cta_area{
    padding: 2rem 0;
  }
}

#header .cta_btn a,
#cta .cta_btn a{
  display: block;
  text-align: center;
  color: var(--white-color);
  font-weight: bold;
  box-shadow: var(--object-box-shadow);
  background: var(--gradation-color);
  padding: 1.5rem;
  border-radius: 100px;
  transition: 0.3s;
  margin: 1rem auto 0;
  position: relative;
  box-sizing: border-box;
  font-size: 1.1rem;
}
@media screen and (max-width: 768px) {
  #cta .cta_btn:first-child a{
    margin-bottom: 1rem;
  }
  #header .cta_btn:first-child a{
    margin-bottom: 4rem;
  }
}

#cta .cta_btn a{
  max-width: 30rem;
}

#cta .cta_btn a span{
  display: block;
  text-align: center;
  color: var(--main-color);
  font-weight: bold;
  box-shadow: var(--object-box-shadow);
  background: var(--white-color);
  padding: 0.3rem;
  font-size: 0.875rem;
  border: solid 2px var(--main-color);
  border-radius: 100px;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: clamp(4rem, -4.352rem + 11.13vw, 9rem);
  right: clamp(4rem, -4.352rem + 11.13vw, 9rem);
  transform: translateY(-70%);
}
/* @media screen and (max-width:1200px){
  #cta .cta_btn a span{
    left: clamp(4rem, -4.921rem + 18.56vw, 9rem);
    right: clamp(4rem, -4.921rem + 18.56vw, 9rem);
  }
} */
@media screen and (max-width:768px){
  #cta .cta_btn a span{
    left: clamp(2rem, -3rem + 25vw, 9rem);
    right: clamp(2rem, -3rem + 25vw, 9rem);
  }
}

#cta .cta_btn.wp a{
  color: var(--main-color);
  background: var(--white-color);
  border: 2px solid var(--main-color);
}

#header .cta_btn.wp span,
#cta .cta_btn.wp span{
  color: var(--white-color);
  background: var(--main-color);
  border: 0;
}

#cta .cta_btn a:focus,
#cta .cta_btn a:hover{
  box-shadow: var(--object-box-shadow-off);
  transform: translate(2px, 2px);
  transition: 0.3s;
}




footer {
  background: transparent !important;
}

.freelanceplus-box {
  margin-top: 20px;
  text-align: center;
}
.freelanceplus-box p strong {
  color: var(--green);
  background: #ffdc5fc1;
  font-size: 15px;
}
.freelanceplus-box .freelanceplus-banner {
  margin: 20px auto 0;
  text-align: center;
  width: 50%;
  font-weight: bold;
  color: var(--green);
}
.freelanceplus-box .freelanceplus-banner a {
  margin-top: 10px;
  display: block;
  box-shadow: 0px 0px 11px #c4c4c4;
}
.seminar-box {
  text-align: center;
  margin: 50px auto 0;
  font-size: 20px;
  color: var(--green);
}
.seminar-box p {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
}
.seminar-banner {
  width: 40%;
  margin: 0 auto;
}
.seminar-banner a {
  width: 100%;
  height: 100%;
  display: block;
}


.service_banner {
  /* margin: 100px auto; */
  display: block;
}
.service_banner h3 {
  text-align: center;
  color: #363089;
  margin-bottom: 24px;
}
.service_banner img {
  max-width: 768px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 1050px) {
  .seminar-banner {
    width: 90%;
  }
  .freelanceplus-box .freelanceplus-banner {
    width: 90%;
  }
}

@media screen and (max-width: 750px) {
  .inner_box {
    width: 85%;
  }
  .heading {
    padding: 0px 10px;
  }
  /* h2 {
    font-size: var(--h2);
    margin-bottom: 10px;
  } */
  h3 {
    font-size: var(--h3);
  }
  /* section {
    padding: 80px 0;
  } */
  .header-cta {
    padding: 15px 0;
  }
  .Forsp {
    display: block;
  }
  .Forpc {
    display: none !important;
  }

  .active {
    opacity: 1;
    visibility: visible;
  }
  #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;
  }
  .btn {
    width: 80%;
    margin-top: 30px;
  }

  .download_link {
    color: #fff;
  }
  #company ul {
    flex-wrap: wrap;
  }
  #company ul li {
    width: 17vw;
  }
  #company ul li.company_logo {
    width: 23vw;
    margin: 0;
  }
  /* .english_title {
    font-size: 17px;
  } */
  /* #problem .problem_box, */
  #example .example_box,
  #flow .flow_box
  /* ,#reason .reason_s_box */
   {
    display: block;
    margin-top: 30px;
  }
  /* .cta_area .inner_box {
    display: block;
  }
  .cta_area .inner_box div:nth-child(2) {
    margin-top: 30px;
  } */
  /* #reason .reason_s_box .reason_text {
    margin: 0;
  }
  #reason .reason_s_box .reason_text p {
    font-size: 15px;
  }
  #reason .reason_s_box .reason_text p span {
    font-size: 26px;
  }
  #reason .reason_s_box:nth-child(2) .reason_text p {
    margin: 5px 0 20px;
    line-height: 1.6;
  }
  #reason .reason_s_box .reason_img {
    margin-top: 30px;
  } */
  /* #problem .problem_box .problem_s_box {
    width: 100%;
    margin-bottom: 50px;
  }
  #problem .problem_box .problem_s_box .fukidashi {
    width: auto;
  } */
  #example .example_box .example_s_box {
    margin-bottom: 30px;
    width: auto;
  }
  /* #service .service_box {
    flex-direction: column;
    gap: 40px;
  }

  #service .service_box .service_s_box {
    max-width: 400px;
  }

  #service .service_box .service_img {
    display: block;
    margin-top: 24px;
  } */
  /* #voice .voice_s_box {
    margin-top: 30px;
    width: 100%;
    align-items: flex-start;
  }
  #voice .voice_s_box .voice_img {
    flex: 2;
    margin-right: 15px;
  }
  #voice .voice_s_box .voice_img:nth-child(2) {
    margin-right: 0;
    margin-left: 15px;
  }
  #voice h3 {
    margin-bottom: 10px;
  }
  #voice .voice_s_box .voice_text::before {
    top: 5% !important;
  } */
  #flow .flow_box .flow_s_box {
    width: 100%;
    margin-bottom: 30px;
  }
  #message p strong {
    font-size: 18px;
  }
  #message p {
    font-size: 15px;
  }
  #registration .inner_box {
    width: 90%;
  }
  #fv2 .fv_box {
    width: 90%;
    display: block;
  }
  #fv2 .fv_bk_img {
    width: 70%;
    margin: 20px auto;
  }
  #fv2 .fv_box h1 {
    font-size: 35px;
  }
  .service_banner {
    /* width: 80%; */
    margin: 0 auto;
    display: block;
  }
  .service_banner h3 {
    font-size: 16px;
  }
}

/* お問い合わせフォーム*/
.contact-box {
  width: 25%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 0;
}

.contact-box-inner {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}

.contact-box-inner h3 {
  font-size: 24px;
  text-align: center;
  margin-top: 2rem;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 1050px) {
  .pc-only {
    display: none;
  }
}



/*btn*/
.btn {
  width: 180px !important;
  padding: 1rem !important;
  border: 0;
  font-size: 16px;
  box-shadow: none;
}
.btn::after {
  display: none;
}

/*FV btn*/
.fv-btn-area {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .fv-btn-area {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .fv-btn-area {
    flex-direction: column;
  }
}
.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: #e67f0a;
  text-decoration: none;
  color: #e67f0a;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem !important;
  width: 180px !important;
  margin: 0;
}
@media screen and (max-width: 480px) {
  .fv-btn-area .btn {
    width: auto !important;
  }
}
.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;
}

/* .note {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #ffffff;
  font-size: 11px;
  text-align: right;
}

.note a {
  text-decoration-line: underline;
} */


/* nav調整 */



.header_nav ul{
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

.header_nav ul li a {
    font-weight: 700;
    font-size: 12px;
    color: #fff;
}

.header-sp{
  background: url(../img/background-image.png);
  background-size: auto 100vh;
  background-position: right;
}

@media screen and (max-width: 480px){
  header.scrolled {
    background: linear-gradient(90deg, #E07D1Ced, 50%, #E1C61Ded);
  }
.header-sp{
  background-position: 70%;
}
}

.header-sp .header__inner{
  background: none;
}

.header-sp .header__menu-btn span:nth-child(-n + 3) {
  background: var(--white);
}


.header-sp .header__inner{
  /* justify-content: flex-end; */
}

.header-sp .header__menu-btn{
  /* margin-left: 1rem; */
}

.header-sp .header__menu-btn{
  bottom: 0.3rem
}

.header-sp .header__inner.active .header__menu{
  /* position: fixed; */
  margin-top: 60px;
  padding-top: 0;
  background: #FFF;
  padding: 1em;
  box-sizing: border-box;
}

.header-sp .header__inner.active .header__menu .inner-box{
  text-align: center;
}

.header-sp .header__inner.active .header__menu .btn{
  width: 80% !important;
  margin-top: 30px;
  display: inline-block;
}
.header-sp .header__inner.active .header__menu .download .btn{
  background: var(--green);
}

