@charset "utf-8";

/**********************************************************************/
/*  共通
/**********************************************************************/

#contents{
  background-image: url("../img/contents_bg.svg");
  background-repeat: no-repeat;
  background-position: left 20% top -10%;
  background-size: 3795px auto;
}
@media screen and (max-width: 520px){
  #contents{
    background-image: url("../img/contents_bg.svg");
    background-repeat: no-repeat;
    background-position: left 50% top;
    background-size: 500% auto;
  }
}

/**********************************************************************/
/* ヒーロー
/**********************************************************************/

section.hero{
  
}
section.hero .bg{
  padding: 12.5em 4vw 8em 4vw;
  background-image: url("../img/hero_eyecatch.png");
  background-repeat: no-repeat;
  background-position: left 47vw top 60%;
  background-size: clamp(840px, 70.15625vw, 1347px) auto;
  box-sizing: border-box;
}
section.hero .lead{
  display: inline-flex;
  flex-direction: column;
  justify-items: auto;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
section.hero h1 > span{
  display: block;
}
section.hero .main{
  margin-top: .25em;
  letter-spacing: .04em;
}
section.hero .main .letter{
  position: relative;
}
section.hero .main .letter::before{
  content: "";
  display: block;
  position: absolute;
  width: .12em;
  height: .12em;
  border-radius: 50%;
  background-color: var(--c_primary);
  top: 0;
  left: 50%;
  transform: translate(-50%, 75%);
}
section.hero .comp{
  margin-top: 1.5em;
  --font-size-min-origin: 16;
}
@media screen and (max-width: 1400px){
  section.hero .bg{
    padding: 10em 4vw 8em 4vw;
    background-image: url("../img/hero_eyecatch.png");
    background-repeat: no-repeat;
    background-position: left 47vw top 50%;
    background-size: clamp(840px, 70.15625vw, 1347px) auto;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 520px){
  section.hero .bg{
    padding: 8em 4vw 100vw 4vw;
    background-position: center bottom;
    background-size: 150% auto;
  }
  section.hero .lead{
    width: 100%;
  }
  section.hero .heading .sub{
    font-size: 6.75vw;
    margin-bottom: .75em;
  }
  section.hero .heading .main{
    font-size: 10vw;
  }
  section.hero .comp{
    font-size: 4vw;
  }
}

/*--------------------------------------------------------------------*/

section.hero .action{
  margin-top: 5em;
}
section.hero .action a{
  display: block;
}
section.hero .action a:hover{
  opacity: 1;
}
section.hero .action .button{
  background: var(--c_grad_primary);
  color: #fff;
  border-radius: 50em;
  padding: 2.5em 8em;
  position: relative;
  box-shadow: 0 1em 2em rgba(0, 41, 129, 0.16);
  transition: box-shadow .3s, transform .3s;
}
section.hero .action .button:hover{
  transform: translate(0, 5px);
  box-shadow: 0 0 5px rgba(0, 41, 129, 0.16);
}
section.hero .action .button::before{
  width: 6.66em; /*211 206*/
  height: 6.66em;
  background-image: url("../img/cta_image_1.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  left: 2em;
  bottom: .75em;
}
section.hero .action .button .fast{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  padding: .5em 1em .6em 1em;
  border-radius: 5em;
  background-color: var(--c_black);
}
@media screen and (max-width: 520px){
  section.hero .action{
    margin-top: 3em;
  }
  section.hero .action .button{
    padding: 1.75em 10vw;
    white-space: nowrap;
  }
  section.hero .action .button .fast{
    font-size: 3.2vw;
  }
  section.hero .action .button .label{
    font-size: 4vw;
  }
  section.hero .action .button .label > span{
    font-size: 3.2vw;
  }
  section.hero .action .button::before{
    width: 16vw; /*211 206*/
    height: 16vw;
    left: 0vw;
    bottom: .75em;
  }
}

/*--------------------------------------------------------------------*/

section.hero .see_projects{
  margin-top: 2em;
}
section.hero .see_projects .icon_arrow::before{
  border-color: var(--c_primary);
}

/*--------------------------------------------------------------------*/

section.hero .medals{
  margin-top: 3em;
  gap: .75em;
  flex-wrap: wrap;
}
section.hero .medals .medal{
  color: #3D3426;
  padding: 0 2.25em;
  background-image: url("../img/medal_bg_l.png"), url("../img/medal_bg_r.png");
  background-repeat: no-repeat;
  background-position: left center, right center;
  background-size: contain;
  white-space: nowrap;
}
section.hero .medals .medal .pre{
  margin-bottom: .5em;
}
section.hero .medals .medal .main{
  line-height: 1.15;
  padding-bottom: .25em;
}
@media screen and (max-width: 520px){
  section.hero .medals{
    justify-content: center;
  }
  section.hero .medals .medal .pre{
    font-size: 3vw;
  }
  section.hero .medals .medal .main{
    font-size: 3.65vw;
  }
}

/*--------------------------------------------------------------------*/

section.hero .annotation{
  margin-top: 3em;
  opacity: .66;
  line-height: 1.5;
}
section.hero .annotation a{
  text-decoration: underline;
}
@media screen and (max-width: 520px){
  section.hero .annotation{
    white-space: normal;
  }
}

/**********************************************************************/
/* 5つの理由
/**********************************************************************/

section.features{
  padding: 100px 4vw;
}
section.features .heading{
  margin-bottom: 5em;
  line-height: 1;
}
section.features .heading .index .pre,
section.features .heading .index .main{
  display: block;
}
section.features .heading .index .main .num{
  font-size: 200%;
  font-style: italic;
}

/*--------------------------------------------------------------------*/

section.features .bodying .panels{

}
section.features .bodying .panel{
  background-color: #fff;
  padding: 6em 4em;
  border-radius: 2em;
  gap: 6em;
  margin-bottom: 3em;
}
section.features .bodying .panel:nth-of-type(even){
  flex-direction: row-reverse;
}
section.features .bodying .panel .image{

}
section.features .bodying .panel .image img{
  height: auto;
}
section.features .bodying .panel .reason{
  max-width: 33em;
}
section.features .bodying .panel .reason .numbering{
  margin-bottom: 1em;
  font-style: italic;
}
section.features .bodying .panel .reason .title{
  margin-bottom: 1em;
}
@media screen and (max-width: 520px){
  section.features{
    padding: 4em 2vw;
  }
  section.features .heading{
    margin-bottom: 2em;
  }
  section.features .heading .index .pre{
    font-size: 6vw;
  }
  section.features .heading .index .main{
    font-size: 8vw;
  }
  section.features .bodying .panel{
    padding: 6vw 8vw 10vw 8vw;
    border-radius: .75em;
    gap: 2em;
    margin-bottom: 1em;
  }
  section.features .bodying .panel .image{
    padding: 8vw 4vw 2em 4vw;
    border-bottom: 1px dotted var(--c_border_gray)
  }
  section.features .bodying .panel .image img{

  }
}

/**********************************************************************/
/* サポート
/**********************************************************************/

section.support{
  padding-bottom: 120px;
}
section.support .bodying .wrapper{
  gap: 7em;
  max-width: 1000px;
  margin: 0 auto;
}
section.support .bodying .wrapper .item .title{
  margin-bottom: 1em;
}
section.support .bodying .wrapper .item .description{
  max-width: 450px;
  margin: 0 auto;
}
section.support .bodying .wrapper .item .document{
  margin-top: 4em;
}
section.support .bodying .wrapper .item .button.mini_black{

}
section.support .bodying .wrapper .item .button.mini_black::after{
  width: 11em;
  height: 8.68em;
  background-image: url("../img/support_image_3.webp");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
  pointer-events: none;
  right: 0;
  bottom: 0;
  transform: translate(10%, 10%);
}
section.support .bodying .wrapper .item .button.mini_black a{
  padding-right: 11em;
}
section.support .bodying .wrapper .item .button.mini_black a .icon{
  padding-right: 1.75em;
}
@media screen and (max-width: 520px){
  section.support{
    padding: 1em 4vw 6em 4vw;
  }
  section.support .bodying .wrapper{
    gap: 3em;
  }
  section.support .bodying .wrapper .item{
    padding: 0 3vw;
  }
  section.support .bodying .wrapper .item .image{
    padding: 0 8vw;
  }
  section.support .bodying .wrapper .item .button.mini_black a{
    padding-left: 5em;
    padding-right: 2em;
    display: block;
    white-space: nowrap;
  }
  section.support .bodying .wrapper .item .button.mini_black::after{
    width: 7em;
    height: 5em;
    right: auto;
    bottom: auto;
    left: 0;
    top: 50%;
    transform: translate(-20%, -80%);
  }
  section.support .bodying .wrapper .item .button.mini_black a .icon{
    display: block;
    font-size: 3.6vw;
  }
}

/**********************************************************************/
/* ご紹介可能な案件例
/**********************************************************************/

section.projects{
  padding: 120px 0;
  background-image: url("../img/projects_bg.webp");
  background-repeat: no-repeat;
  background-position: left 80% top 10%;
  background-size: clamp(310px, 25.833vw, 497px) auto;
}
section.projects .heading{
  margin-bottom: 3em;
}
section.projects .heading .index{

}
section.projects .heading .index .en{
  margin-bottom: .5em;
}
@media screen and (max-width: 1400px){
  section.projects .heading{
    padding: 0 4vw;
  }
  section.projects .bodying .upper .index{
    padding: 0 4vw;
  }
}
@media screen and (max-width: 520px){
  section.projects{
    padding: 6em 0 3em 0;
    background-image: url("../img/projects_bg.webp");
    background-repeat: no-repeat;
    background-position: right -7vw top 1em;
    background-size: auto 50vw;
    padding-top: 40vw;
  }
  section.projects .heading{

  }
}

/*--------------------------------------------------------------------*/

section.projects .bodying .index{
  gap: 2em;
}
section.projects .bodying .index .marker{
  padding: .25em .75em;
  background-color: var(--c_primary);
  color: #fff;
}
section.projects .bodying section.upper{
  
}
section.projects .bodying section.upper .index .description{
  max-width: 30em;
}
section.projects .bodying section.upper .list{
  margin-top: 5em;
  width: 100%;
  height: 100%;;
}
section.projects .bodying section.upper .panel{
  max-width: 660px;
  padding: 3em;
  background-color: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: 
  "headline headline"
  "outline details"
  "text text";
  gap: 1.5em;
  border-radius: 1.5em;
  box-shadow: 0 3px 2em rgba(0,0,0,.05);
}
section.projects .bodying section.upper .panel .headline{
  grid-area: headline;
}
section.projects .bodying section.upper .panel .outline{
  grid-area: outline;
}
section.projects .bodying section.upper .panel .details{
  grid-area: details;
}
section.projects .bodying section.upper .panel .text{
  grid-area: text;
}
@media screen and (max-width: 520px){
  section.projects .bodying .index{
    align-items: flex-start;
    gap: 1em;
  }
  section.projects .bodying .index .marker{
    padding: .25em .75em;
    font-size: 4vw;
  }
  section.projects .bodying .index .description{
    font-size: 1rem;
  }
  section.projects .bodying section.upper .list{
    margin-top: 3em;
    padding: 0 3vw;
    box-sizing: border-box;
  }
  section.projects .bodying section.upper .panel{
    max-width: 100%;
    padding: 2em;
    box-sizing: border-box;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: 
    "headline"
    "outline"
    "details"
    "text";
    gap: 1em;
    border-radius: .5em;
  }
}

/*--------------------------------------------------------------------*/

section.projects .bodying section.upper .panel .headline{

}
section.projects .bodying section.upper .panel .headline .title{
  min-height: 3.5em;
}

/*--------------------------------------------------------------------*/

section.projects .bodying section.upper .panel .outline{
  min-width: 10em;
}
section.projects .bodying section.upper .panel .outline .howmuch{
  line-height: 1;
  white-space: nowrap;
  margin-bottom: .75em;
}
section.projects .bodying section.upper .panel .outline .unit{
  margin-left: .25em;
}
section.projects .bodying section.upper .panel .outline .terms{
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .25em;
  max-width: 15em;
}
section.projects .bodying section.upper .panel .outline .terms span{
  padding: .1em .5em;
  border-radius: .5em;
  background-color: var(--c_primary_light);
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 520px){
  section.projects .bodying section.upper .panel .outline .howmuch{
    --font_size_factor: 1.4;
  }
  section.projects .bodying .button.mini_black a{
    min-width: 16em !important;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/*--------------------------------------------------------------------*/

section.projects .bodying section.upper .panel .details{
  padding: 0;
}
section.projects .bodying section.upper .panel .details table{
  border-collapse: separate;
  border-spacing: 3px;
}
section.projects .bodying section.upper .panel .details th,
section.projects .bodying section.upper .panel .details td{
  padding: .25em 1em;
}
section.projects .bodying section.upper .panel .details th{
  padding: .25em .75em .25em .5em;
  background-color: #F3F3F3;
}
section.projects .bodying section.upper .panel .details th .icon{
  position: relative;
  display: inline-flex;
  align-items: center;
}
section.projects .bodying section.upper .panel .details th .icon::before{
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("../img/icons/project_icons.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  position: relative;
  margin-right: .25em;;
}
section.projects .bodying section.upper .panel .details th.location .icon::before{
  background-position: left top 0%;
}
section.projects .bodying section.upper .panel .details th.weekly .icon::before{
  background-position: left top 50%;
}
section.projects .bodying section.upper .panel .details th.hours .icon::before{
  background-position: left top 100%;
}

/*--------------------------------------------------------------------*/

section.projects .bodying section.upper .panel .text{
  min-height: 7em;
}

/*--------------------------------------------------------------------*/

section.projects .bodying section.upper .action{
  margin-top: 3em;
}

/*--------------------------------------------------------------------*/

.swiper .controls{
  margin-top: 2em;
}
.swiper .controls .arrow._prev{
  transform: scale(-1, 1);
}
.swiper .swiper-pagination{
  position: static;
  width: auto;
  margin: 0 2em;
  padding-bottom: .1em;
}
.swiper .swiper-button-next, 
.swiper .swiper-button-prev{
  position: static;
}

/*--------------------------------------------------------------------*/

section.projects .bodying section.lower{
  margin-top: 5em;
}
section.projects .bodying section.lower .panel{
  padding: 4em 6em;
  padding-right: 10em;
  border-radius: 1.5em;
  background-color: #fff;
}
section.projects .bodying section.lower .index .description{
  max-width: 40em;
}
section.projects .bodying section.lower .action .button.mini_black a{
  min-width: 15em;
  text-align: center;
}
@media screen and (max-width: 1400px){
  section.projects .bodying .lower{
    padding: 0 4vw;
  }
  section.projects .bodying section.lower .panel{
    padding: 4em 4em;
    padding-right: 6em;
    border-radius: .5em;
  }
  section.projects .bodying section.lower .action .button.mini_black a{
    min-width: 0;
  }
}
@media screen and (max-width: 520px){
  section.projects .bodying section.lower .panel{
    padding: 3em 2em;
    align-items: stretch;
  }
  section.projects .bodying section.lower .action{
    margin-top: 2em;
  }
  section.projects .bodying section.lower .action a{
    display: block;
  }
}

/**********************************************************************/
/* ボイス
/**********************************************************************/

section.voices{
  background-image: url("../img/voice_bg.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  background-color: #fff;
  padding: 120px 0;
}
section.voices{

}
section.voices .bodying{
  
}
section.voices .bodying .panel{
  max-width: 948px;
}
section.voices .bodying .panel .position .label{
  padding: .25em 1.5em;
  border-radius: 10em;
  background-color: var(--c_primary);
  color: #fff;
}
section.voices .bodying .panel .name{
  margin-top: .5em;
}
section.voices .bodying .panel .info{
  gap: 3.125em;
  margin-top: 1em;
  padding: 0 3em;
}
section.voices .bodying .panel .portrait{

}
section.voices .bodying .panel .outline{
  flex: 1;
}
section.voices .bodying .panel .outline .message{
  text-indent: .75em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--c_border_gray);
  margin-bottom: 1em;;
}
section.voices .bodying .panel .outline .message::before{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c_primary_light);
  left: 0;
  top: .75em;
}
section.voices .bodying .panel .outline .terms{
  display: flex;
  gap: 6px;
  margin-bottom: 1em;
}
section.voices .bodying .panel .outline .terms span{
  border: 1px solid var(--c_primary);
  padding: 0 .25em;
  border-radius: .25em;
}
section.voices .bodying .panel .outline .income{
  margin-bottom: .5em;
}
section.voices .bodying .panel .outline .income .num{
  position: relative;
  top: -.1em;
  margin: 0 .15em 0 .5em;
}
section.voices .bodying .controls{
  margin-top: 4em;
}
@media screen and (max-width: 520px){
  section.voices{
    padding: 4em 4vw;
  }
  section.voices .bodying .panel .portarit{
    width: 12em;
  }
  section.voices .bodying .panel .info{
    padding: 0 1em;
    gap: 2em;
  }
}

/**********************************************************************/
/* ご利用開始までの流れ
/**********************************************************************/

section.flow{
  padding: 10em 4vw;
}
@media screen and (max-width: 1400px){
  section.flow .image{
    max-width: 1200px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 520px){
  section.flow{
    padding: 4em 4vw;
  }
}

/**********************************************************************/
/* よくあるご質問
/**********************************************************************/

section.faq{
  background-color: #fff;
  padding: 10em 4vw;
}
section.faq .item{
  margin-bottom: 1em;
}
section.faq .item .q{
  padding: 1em 2em;
  border-bottom: 1px solid var(--c_border_gray);
  cursor: pointer;
}
section.faq .item .q::before{
  content: "Q";
  font-family: "Roboto", sans-serif;
  font-size: 155.555%;
  color: var(--c_primary_light);
  left: 0;
  top: .5em;
  line-height: 1;
}
section.faq .item .q .text{
  flex: 1;
}
section.faq .item .q .button{
  width: 14px;
  height: 14px;
}
section.faq .item .q .button::before,
section.faq .item .q .button::after{
  width: 14px;
  height: 2px;
  background-color: var(--c_dark);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform .3s;
}
section.faq .item .q .button::after{
  transform: translate(-50%, -50%) rotate(90deg);
}
section.faq .item .q._open .button::after{
  transform: translate(-50%, -50%) rotate(360deg);
}
section.faq .item .a{
  overflow: hidden;
  display: none;
}
section.faq .item .a .text{
  padding: 1.5em 1em;
}
section.faq .item .a .text p + p{
  margin-top: 1.5em;
}
section.faq .item .a .text a{
  text-decoration: underline;
}
@media screen and (max-width: 520px){
  section.faq{
    padding: 4em 4vw;
  }
  section.faq .item .q{
    padding: .75em .5em .75em 1.5em;
    border-bottom: 1px solid var(--c_border_gray);
    cursor: pointer;
  }
  section.faq .item .q::before{
    font-size: 120%;
    top: .8em;
  }
  section.faq .item .q .button::before,
  section.faq .item .q .button::after{
    width: 10px;
    height: 2px;
  }
  section.faq .item .q .text{
    padding-right: 1em;
  }
  section.faq .item .a .text{
    padding-top: 1em;
  }
}
