@charset "UTF-8";
/* -------------

setting

------------- */
:root{
  --color-theme: #e4002d;
  --color-txt: #333;
  --font-size-main: 1.6rem;
  --font-jp: "Helvetica Neue", "Noto Sans JP", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Arial, メイリオ, Meiryo, sans-serif;
  --lh: 1.6;
  --ls: 0;
  --width-wrap: 950px;
}

/* -------------

base

------------- */
:root{
  color:var(--color-txt);
  font-size: 10px;
  font-family: var(--font-jp);
  letter-spacing: var(--ls);
	scroll-padding-top: var(--fixedHeaderH);
}
@media screen and (max-width: 768px) {
  :root{
    font-size: calc(10px * 14 / 16);
  } 
}
body{
  line-height: var(--lh);
  font-size: var(--font-size-main);
}

*{
  box-sizing: border-box;
}

/* -------------

layout

------------- */
/* ラッパー */
.l_wrap{}
.l_wrap__header{
  margin-bottom: 4rem;
}
.l_wrap__main{
  width: var(--width-wrap);
  margin: 0 auto;
  padding: 0 1rem;
}
.l_wrap__footer{
  margin-top: 4rem;
}
@media screen and (max-width: 768px){
  .l_wrap__main{
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
}

/* メインコンテンツ */
.l_main{}

/* 節 */
.l_section{}
.l_section__item{}
.l_section--primary{}
.l_section--primary > .l_section__item + .l_section__item {
  margin-top: 4rem;
}
.l_section--secondary > .l_section__item + .l_section__item {
  margin-top: 2.5rem;
}
.l_section--service > .l_section__item + .l_section__item {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #ccc;
}

/* グリッド */
.l_grid{
  display: flex;
  align-items: stretch;
  margin: -1rem;
  flex-wrap: wrap;
}
.l_grid__item{
  display: flex;
  padding: 1rem;
}
.l_grid__inner{
  display: block;
  width: 100%;
}
.l_grid--nav{
  margin: -.5rem;
}
.l_grid--nav .l_grid__item{
  padding: .5rem;
}

/* -------------

module

------------- */
/* グローバルヘッダー */
.m_gHeader{
  border-bottom: 1px solid #ccc;
  padding: .8rem 0;
}
.m_gHeader__inner{
  display: flex;
  justify-content: space-between;
  width: var(--width-wrap);
  margin: 0 auto;
  padding: 0 1rem;
}
.m_gHeader__logo{
  width: fit-content;
  line-height: 0;
}
.m_gHeader__logoLink{
  display: block;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px){
  .m_gHeader__inner{
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
}
/* グローバルフッター */
.m_gFooter{
  padding: 2rem 0 1rem;
  background: #f0f0f0;
}
.m_gFooter__inner{
  width: var(--width-wrap);
  margin: 0 auto;
  padding: 0 1rem;
}
.m_gFooter__item + .m_gFooter__item{
  margin-top: 1rem;
}
.m_gFooter__logo{
  width: fit-content;
  line-height: 0;
}
.m_gFooter__logoLink{
  display: block;
  max-width: 100%;
  height: auto;
}
.m_gFooter__copyright{
  text-align: center;
}
@media screen and (max-width: 768px){
  .m_gFooter__inner{
    width: 95%;
    margin: 0 auto;
    padding: 0;
  }
}
/* コピーライト */
.m_copyright{
  font-size: 1rem;
}

/* 脚注 */
.m_footNote{
  font-size: 12px;
}

/* アイコン */
.m_hasIco{
  position: relative;
  display: block;
  width: fit-content;
}
.m_hasIco::after,
.m_hasIco::before{
  content: "";
  position: absolute;
  display: block;
}
.m_hasIco::after{
  right: 0;
}
.m_hasIco::before{
  left: 0;
}
.m_hasIco--link{
  padding-left: 1.2em;
}
.m_hasIco--link::before{
  top: calc((1lh - 1em) / 2 + .26em); 
  width: .5em;
  height: .5em;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}
.m_hasIco--ast{
  padding-left: 1em;
}
.m_hasIco--ast::before{
  content: "\203B";
}
.m_hasIco--dot{
  padding-left: 1em;
}
.m_hasIco--dot::before{
  content: "\30FB";
}

/* リンク */
.m_link{
  color: inherit;
  text-decoration: underline;
  transition: .2s opacity;
}
.m_link:hover{
  opacity: .7;
}

/* ボタン */
.m_btn{
  width: fit-content;
}
.m_btn__target{
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  transition: .2s opacity;
}
.m_btn__target:hover{
  opacity: .7;
}
.m_btn__inner{
  position: relative;
  display: block;
  width: fit-content;
}
.m_btn__inner::before{
  content: "";
  position: absolute;
  display: block;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.m_btn--main{
  width: 100%;
}
.m_btn--main .m_btn__target{
  width: 100%;
  height: 4.5em;
  padding: 0 1rem;
  border: 1px solid #999;
  border-radius: 4px;
  line-height: 1.3;
  font-weight: bold;
  box-shadow: 3px 3px 6px rgba(48, 48, 48,.3);
}
.m_btn--mtg .m_btn__target{
  border-color: #2A6CAE;
  box-shadow: 3px 3px 6px rgba(27, 91, 129,.16);
}
.m_btn--mtg .m_btn__inner{
  padding-left: 4rem;
}
.m_btn--mtg .m_btn__inner::before{
  width: 3.2rem;
  height: 3.2rem;
  background: url(/resource/img/gnav/icon_navi-b03_business-discussion.svg) no-repeat center center / contain;
}
.m_btn--faq .m_btn__inner{
  padding-left: 4rem;
}
.m_btn--faq .m_btn__inner::before{
  width: 3.2rem;
  height: 3.2rem;
  background: url(/resource/img/inquiry/footer-icon_qa.svg) no-repeat center center / contain;
}
.m_btn--ask .m_btn__target{
  border-width: 2px;
  border-color: #E5002D;
  box-shadow: 3px 3px 6px rgba(158, 39, 48,.16);
}
.m_btn--ask .m_btn__inner{
  padding-left: 4rem;
}
.m_btn--ask .m_btn__inner::before{
  width: 3.2rem;
  height: 3.2rem;
  background: url(/resource/img/inquiry/footer-icon_inquiry.svg) no-repeat center center / contain;
}
.m_btn--apply .m_btn__target{
  border-width: 2px;
  border-color: #dfa300;
  box-shadow: 3px 3px 6px rgba(223, 163, 0,.16);
}
.m_btn--apply .m_btn__inner{
  padding-left: 4rem;
}
.m_btn--apply .m_btn__inner::before{
  width: 3.2rem;
  height: 3.2rem;
  background: url(/resource/img/inquiry/footer-icon_apply.svg) no-repeat center center / contain;
}
@media screen and (max-width: 768px){
  .m_btn--main .m_btn__target{
    font-size: 1.4rem;
  }
}

/* ハンバーガー */
.m_hamb{
  position: relative;
  display: none;
  width: 40px;
  padding-top: 100%;
}
.m_hamb__line{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 80%;
  height: 2px;
  margin: auto;
  border-radius: 100px;
  background: var(--color-txt);
  transition: .3s transform;
}
.m_hamb__line--first{
  transform: translateY(10px);
}
.m_hamb__line--third{
  transform: translateY(-10px);
}
@media screen and (max-width: 768px) {
  .m_hamb{
    display: block;
  }
}
/* 見出し */
.m_heading{}
.m_heading__ttl{
  font-size: bold;
  line-height: 1.4;
}
.m_heading--primary{
  margin-bottom: 3rem;
}
.m_heading--primary .m_heading__ttl{
  font-size: 2.4rem;
}

/* ローカルナビのラッパー */
.m_localNavWrap{
  padding: 10px 0;
  background: #fff;
}
.m_localNavWrap__inner{
  padding-bottom: 10px;
  border-bottom: 1px solid;
}
@media screen and (max-width: 768px){
  .m_localNavWrap{
    position: fixed;
    top: var(--fixedHeaderH);
    left: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    transition: .3s transform;
    transform: translateX(100%);
  }
  .m_localNavWrap__inner{
    width: 100%;
    padding: 0 1rem;
    border: none;
  }  
}

/* ローカルナビ */
.m_localNav{
  padding: 1rem;
  border: 1px solid #999;
  border-radius: 2px;
  line-height: 1;
  font-size: 1.4rem;
  color: inherit;
  text-decoration: none;
  transition: .3s background;
}
.m_localNav:hover{
  background: rgba(153, 153, 153, .2);
}
@media screen and (max-width: 768px){
  .m_localNav{
    padding: .5rem 1rem;
    line-height: 1.4;
  }
}
/* ヒーローズエリア */
.m_herosArea{
  margin-bottom: 4rem;
}
.m_herosArea__item + .m_herosArea__item{
  margin-top: 2rem;
}
.m_herosArea__msg{
  font-size: 1.8rem;
}
.m_herosArea__msg--em{
  color: var(--color-theme);
}
.m_herosArea__msg + .m_herosArea__msg{
  margin-top: .5em;
} 

/* 商談フォームボックス */
.m_mtgBox{
  border: 1px solid #ccc;
  padding: 2rem 4rem;
}
.m_mtgBox__cont{
  font-size: 1.8rem;
}
.m_mtgBox__btn{
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px){
  .m_mtgBox{
    padding: 2rem;
  }
}
/* FAQボックス */
.m_faqBox{
  border: 1px solid #ccc;
  padding: 2rem 4rem;
}
.m_faqBox__cont{
  font-size: 1.8rem;
}
.m_faqBox__btn{
  display: flex;
  align-items: center;
}
.m_faqBox__ttl{
  font-weight: bold;
  margin-bottom: 1rem;
}
.m_faqBox__listItem + .m_faqBox__listItem{
  margin-top: .5rem;
}
@media screen and (max-width: 768px){
  .m_faqBox{
    padding: 2rem;
  }
}
/* サービスボックス */
.m_service{}
.m_service__btns{
  display: flex;
  align-items: center;
}
.m_service__btnsInner{
  display: block;
  width: 100%;
}
.m_service__cont{}
.m_service__heading{
  margin-bottom: 2rem;
}
.m_service__ttl{
  font-size: 2rem;
}
.m_service__footer{
  margin-top: 2rem;
}
.m_service__listItem + .m_service__listItem{
  margin-top: 1rem;
}

/* 電話番号などのラッパー */
.m_telInfoWrap{}
.m_telInfoWrap__item + .m_telInfoWrap__item{
  margin-top: 2rem;
}

/* 電話番号など */
.m_telInfo{
  display: flex;
  align-items: flex-end;
}
.m_telInfo__ttl{
  margin-right: 2rem;
}
.m_telInfo__msg--num{
  font-weight: bold;
  font-size: 2rem;
  line-height: 100%;
}
.m_telInfo--hasTtl{
  line-height: 1;
}
.m_telInfo__msg + .m_telInfo__msg{
  margin-top: .5rem;
}
@media screen and (max-width: 768px){
  .m_telInfo{
    display: block;
  }
  .m_telInfo__ttl{
    margin-bottom: .5rem;
  }
  .m_telInfo--hasTtl{
    line-height: var(--lh);
  }
}

/* ガイダンスのラッパー */
.m_guidanceWrap{
  padding: 3rem 2rem;
  border: 1px solid;
  border-radius: 2px;
}
.m_guidanceWrap__item + .m_guidanceWrap__item{
  margin-top: 2rem;
}

/* ガイダンスのラッパー */
.m_guidance{}
.m_guidance__heading{
  display: flex;
  margin-bottom: 1rem;
  font-weight: bold;
}
.m_guidance__ttl{
  text-decoration: underline;
}
.m_guidance__ttlCont{}
.m_guidance__ttl + .m_guidance__ttlCont::before{
  content: " : ";
}
.m_guidance__body{
  padding-left: 1em;
}
@media screen and (max-width: 768px){
  .m_guidance__heading{
    display: block;
  }
  .m_guidance__ttl + .m_guidance__ttlCont::before{
    content: none;
  }
  .m_guidance__body{
    padding-left: 0;
  }
}
/* ガイダンスの流れ */
.m_guidanceFlow{
  counter-reset: guidanceNum;
}
.m_guidanceFlow__item{
  counter-increment: guidanceNum;
}
.m_guidanceFlow__item + .m_guidanceFlow__item{
  margin-top: 1rem;
} 
.m_guidanceFlow__ttl{
  position: relative;
  padding-left: 2.5em;
}
.m_guidanceFlow__ttl::before{
  content: "（" counter(guidanceNum) "）";
  position: absolute;
  left: 0;
}
.m_guidanceFlow__ttl + .m_guidanceFlow__list{
  margin-top: .5rem;
}
.m_guidanceFlow__list{
  padding-left: 2.5em;
}
@media screen and (max-width: 768px){
  .m_guidanceFlow__list{
    padding-left: 1em;
  }
}

/* -------------

state

------------- */
.js_fixNav.is_fixed .m_localNavWrap{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
}
.js_fixNav.is_fixed .m_localNavWrap__inner{
  width: var(--width-wrap);
  margin: 0 auto;
  padding-inline: 1rem;
}
.js_fixHeader.is_fixed .m_gHeader{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background: #fff;
}
.is_active.m_hamb .m_hamb__line--first{
  transform: translateY(0px) rotate(45deg);
}
.is_active.m_hamb .m_hamb__line--second{
  transform: rotate(45deg);
}
.is_active.m_hamb .m_hamb__line--third{
  transform: translateY(0px) rotate(-45deg);
}
.is_active.m_localNavWrap{
  transform: translateX(0px);
}
/* -------------

utility

------------- */
/*横幅*/
.u_col1{width:8.333%;}
.u_col2{width:16.667%;}
.u_col25{width:20%;}
.u_col3{width:25%;}
.u_col4{width:33.333%;}
.u_col5{width:41.666%;}
.u_col6{width:50%;}
.u_col7{width:58.333%;}
.u_col8{width:66.666%;}
.u_col9{width:75%;}
.u_col10{width:83.33%;}
.u_col11{width:91.666%;}
.u_col12{width:100%;}
@media screen and (max-width:768px){
  .u_resMdCol1{width:8.333%;}
  .u_resMdCol2{width:16.667%;}
  .u_resMdCol3{width:25%;}
  .u_resMdCol4{width:33.333%;}
  .u_resMdCol5{width:41.666%;}
  .u_resMdCol6{width:50%;}
  .u_resMdCol7{width:58.333%;}
  .u_resMdCol8{width:66.666%;}
  .u_resMdCol9{width:75%;}
  .u_resMdCol10{width:83.33%;}
  .u_resMdCol11{width:91.666%;}
  .u_resMdCol12{width:100%;}
}
@media screen and (max-width:599px){
  .u_resSmCol1{width:8.333%;}
  .u_resSmCol2{width:16.667%;}
  .u_resSmCol3{width:25%;}
  .u_resSmCol4{width:33.333%;}
  .u_resSmCol5{width:41.666%;}
  .u_resSmCol6{width:50%;}
  .u_resSmCol7{width:58.333%;}
  .u_resSmCol8{width:66.666%;}
  .u_resSmCol9{width:75%;}
  .u_resSmCol10{width:83.33%;}
  .u_resSmCol11{width:91.666%;}
  .u_resSmCol12{width:100%;}
}

/*間隙*/
.u_mt5{
  margin-top: .5rem;
}
.u_mt10{
  margin-top: 1rem;
}
.u_mt20{
  margin-top: 2rem;
}
.u_mb10{
  margin-bottom: 1rem;
}
.u_mb20{
  margin-bottom: 2rem;
}
.u_mb30{
  margin-bottom: 3rem;
}
@media screen and (max-width:768px){
  .u_resMdMb0{
    margin-bottom: 0;
  }
}

/*表示*/
@media screen and (max-width:768px){
  .u_resMdHide{display:none;}
}