/*サンプルページ共通パーツ*/
.content {}

.content_inner {
  max-width: 900px;
  padding: 0 25px;
  margin: 0 auto;
  box-sizing: content-box;
}

.content_inner.wide {
  max-width: 1000px;
}

/*プレゼンテーション・ホワイトペーパー用パーツ*/
.flex-items {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 40px 30px 40px;
  background: #fff;
}

.flex-items.bg-gray {
  background: #F5F5F5;
}

.flex-items figure {
  width: 39%;
  margin-right: 30px;
}

.flex-items figure img {
  width: 100%;
}

.flex-items > div {
  width: calc((100% - 39%) - 30px);
}

.flex-items .flex-items_ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
}

.flex-items .flex-items_caption {
  margin: 19px 0 16px;
  font-size: 14px;
  line-height: 1.8;
}

.flex-items .flex-items_cta {
  margin-top: auto;
  margin-left: auto;
}

.flex-items .flex-items_cta .btn {
  margin: 13px 0 0;
}

.flex-items + .flex-items {
  margin-top: 20px;
}

@media only screen and (max-width: 768px) {

  .flex-items {
    padding: 40px 0;
  }

  .flex-items figure {
    width: 60%;
    margin: 0 auto;
  }

  .flex-items > div {
    width: 100%;
    padding: 20px;
  }

  .flex-items_cta {
    margin: 0 auto;
  }

  .flex-items_cta .btn {
    margin: 0;
  }
}

@media only screen and (max-width: 500px) {

  .flex-items {
    padding: 0;
  }

  .flex-items figure,
  .flex-items figure img {
    width: 100%;
  }
}


/*特徴・導入事例*/
.piledBox {
  position: relative;
}

.piledBox + .piledBox {
  margin-top: 120px;
}

.piledBox figure {
  position: absolute;
  display: grid;
  width: 50%;
  max-height: 407px;
  overflow: hidden;
  right: 0;
}

.piledBox figure img {
  margin: 0 auto;
}

.piledBox .piledBox-txt {
  width: 56%;
  min-height: 340px;
  flex-basis: 56%;
  padding: 50px;
  background: #fff;
  z-index: 90;
}

.piledBox.position-inversion {
  flex-direction: row-reverse;
}

.piledBox.position-inversion figure {
  left: 0;
}

.piledBox-txt .piledBox-txt_head {
  font-size: 23px;
  font-weight: 700;
}

.piledBox-txt .piledBox-txt_name {
  margin: 18px 0 20px;
  color: #919191;
  font-size: 14px;
}

.piledBox-txt .piledBox-txt_note {
  font-size: 15px;
  line-height: 32px;
}

.piledBox_caption {
  margin-top: 20px;
}

@media only screen and (max-width: 1200px) {
  .piledBox .piledBox-txt {
    width: 50%;
    flex-basis: 50%;
  }
}

@media only screen and (max-width: 768px) {
  .piledBox + .piledBox {
    margin-top: 20px;
  }

  .piledBox figure {
    position: static;
    width: 100%;
  }

  .piledBox-txt .piledBox-txt_head {
    font-size: 15px;
    line-height: 24px;
  }

  .piledBox .piledBox-txt {
    width: 100%;
    padding: 20px;
    min-height: auto;
  }

  .piledBox_caption {
    margin-top: 11px;
  }
}

/*ここまで*/

#servicePage {
  background: #fff;
  color: #333;
}

#servicePage h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #333;
}

#servicePage h2 span {
  display: block;
  font-size: 18px;
  color: #E82313;
  font-weight: 400;
  margin: 11px 0 0;
  letter-spacing: 2.16px;
}

#servicePage h2 span.p-top {
  margin: 0 0 15px;
}

#servicePage h2.with_border {
  position: relative;
  display: flex;
  justify-content: center;
}

#servicePage h2.with_border:after {
  position: absolute;
  display: block;
  width: 90px;
  height: 3px;
  bottom: -16px;
  background: #E95C56;
  content: "";
}

@media only screen and (max-width: 768px) {
  #servicePage h2 {
    font-size: 18px;
  }

  #servicePage h2 span {
    margin: 6px 0 0;
    font-size: 12px;
  }

  #servicePage h2 span.p-top {
    margin: 0 0 8px;
  }
}


.hero {
  position: relative;
  width: 100%;
  margin-top: 60px;
}

.hero_inner {
  position: absolute;
  padding: 0 80px;
  top: 0;
}

.hero_inner h1 {
  padding-top: 64px;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 66px;
}

.hero_inner p {
  margin: 21px 0 31px;
  color: #fff;
  font-size: 15px;
  line-height: 32px;
}

.hero_inner .inquiryBtn {
  position: absolute;
}

.hero figure,
.hero figure img {
  width: 100%;
}

.spOnly {
  display: none;
}

.tabOnly,
.spTabOnly {
  display: none;
}

@media only screen and (max-width: 1100px) {
  .hero_inner h1 {
    padding-top: 20px;
    font-size: 27px;
    line-height: 43px;
  }

  .hero_inner p {
    margin: 8px 0 18px;
  }
}

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

  .tabOnly,
  .spTabOnly {
    display: block;
  }

  .inquiryBtn {
    background: #F3F3EF;
    text-align: center;
    padding: 30px 0;
  }

  .hero_inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero_inner h1 {
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  /*
  .hero_inner h1 {
    font-size: 38px;
  }
*/
}

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

  .spOnly {
    display: block;
  }

  .hero_inner {
    padding: 0 25px;
    height: 100%;
  }

  .hero_inner h1 {
    padding-top: 50px;
    font-size: 20px;
    line-height: 36px;
    text-align: center;
  }

  .hero_inner p {
    font-size: 12px;
    line-height: 22px;
  }

  .hero_inner .inquiryBtn {
    bottom: 50px;
    left: calc((100% - 300px)/2);
  }

}


/*ページ内リンク*/
.pnavWrap {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 70px;
  overflow: hidden;
}

.pnav {
  width: 100%;
}

.pnav.scroll {
  position: fixed;
  top: 60px;
  z-index: 300;
  background: #fff;
}

.pnavWrap .nav {
  display: block;
  flex-wrap: nowrap;
  /*  margin: 0 70px;*/
}

.pnavWrap .nav-item .nav-link {
  /*  width: 162px;*/
  height: 71px;
  padding: 0 18px;
  font-size: 14px;
  line-height: 71px;
  color: #333;
  white-space: nowrap;
  text-align: center;
}
.pnavDummy {
  height: 71px;
}

.pnavWrap .nav-item .nav-link:hover {
  background: #FFF0F0;
  text-decoration: none;
}
@media (hover: none) {
  .pnavWrap .nav-item .nav-link:hover {
    background: none;
  }
}

.pnavWrap .nav-item.active .nav-link {
  background: #FFF0F0;
  text-decoration: none;
}
/*スライダー*/
.slick-slide {
  /*  width: 162px;*/
}

.slick-arrow:before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  color: #333;
}

.slick-prev,
.slick-next {
  width: 71px;
  height: 71px;
  bottom: 0;
  background: #fff;
}

.slick-prev {
  left: -71px;
}

.slick-next {
  right: -71px;
}

.slick-prev:hover,
.slick-next:hover {
  background: #FFF0F0;
}

.slick-prev:before,
.slick-next:before {
  width: 71px;
  height: 71px;
  color: #919191 !important;
  font-weight: 900;
  font-family: "Font Awesome 5 Free" !important;
  line-height: 71px;
}

.slick-prev:before {
  content: '\f053' !important;
}

.slick-next:before {
  color: #919191 !important;
  font-weight: 900;
  font-family: "Font Awesome 5 Free" !important;
  content: '\f054' !important;
}

@media only screen and (max-width: 768px) {

  .slick-prev,
  .slick-next {
    width: 41px;
    height: 50px;
  }

  .slick-prev:before,
  .slick-next:before {
    line-height: 50px;
  }

  .pnavWrap {
    padding: 0 40px;
  }

  .slick-prev {
    left: -41px;
  }

  .slick-next {
    right: -41px;
  }

  .pnavWrap .nav-item .nav-link {
    height: 50px;
    line-height: 50px;
  }
  .pnavDummy {
    height: 50px;
  }
  .pnavWrap .nav-item.active .nav-link {
    background: #FFF0F0;
    text-decoration: none;
  }

  .pnavWrap .nav-item .nav-link:active {
    background: #FFF0F0;
  }

  .ps__rail-x {
    display: block !important;
    opacity: 1 !important;
  }

  .ps__thumb-x {
    background-color: #E82313 !important;
    border-radius: 0 !important;
    height: 4px !important;
    opacity: 1 !important;
  }

  .ps--active-x > .ps__rail-x,
  .ps--active-y > .ps__rail-y {
    background-color: none !important;
    box-shadow: none;
  }
}

/*概要*/

.outline {
  padding-top: 60px;
  background: #F3F3EF;
}

.outline .content_inner {
  padding: 25px;
}

.outline-text_main {
  margin-top: 31px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 34px;
}

.outline-text_sub {
  margin: 20px 0 60px;
  font-size: 14px;
  text-align: center;
  line-height: 30px;
}

.outline figure {
  background: #fff;
}

@media only screen and (max-width: 768px) {
  .outline {
    padding-top: 50px;
  }

  .outline-text_main {
    font-size: 15px;
  }
}

/*よくある悩み*/

.problem {
  padding: 60px 0 84px;
  background: #F3F3EF;
}

.problem .problem_inner {
  max-width: 690px;
  margin: 0 auto;
}

.problem ul {
  margin-top: 46px;
}

.problem ul li {
  position: relative;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  padding-left: 61px;
}

.problem ul li:before {
  position: absolute;
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  font-size: 38px;
  left: 0;
  color: #6493DE;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  content: '\f058';
}

@media only screen and (max-width: 1000px) {
  .problem ul {
    display: table;
    margin: 24px auto 0;
  }
}

@media only screen and (max-width: 768px) {

  .problem ul li {
    font-size: 16px;
    padding-left: 40px;
  }

  .problem ul li:before {
    width: 30px;
    height: 30px;
    font-size: 30px;
  }
}


/*解決方法*/
.solution {
  padding: 80px 0 0;
}

.solution ol {
  counter-reset: my-counter;
  margin-top: 59px;
}

.solution li {
  position: relative;
  background: #FBF0EE;
}

.solution li:before {
  position: absolute;
  margin-left: 41px;
  top: calc((100% - 160px)/2);
  content: counter(my-counter, decimal-leading-zero);
  counter-increment: my-counter;
  font-weight: bold;
  color: #fff;
  font-size: 160px;
  line-height: 160px;
  font-family: din-condensed, sans-serif;
}

.solution li + li {
  margin-top: 20px;
}

.solution li > div {
  padding: 40px 40px 40px 210px;
}

.solution li h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
}

.solution li p {
  font-size: 14px;
  line-height: 30px;
}

@media only screen and (max-width: 768px) {
  .solution {
    padding: 50px 0 0;
  }

  .solution li > div {
    padding: 35px 20px 20px;
  }

  .solution li h3 {
    margin-bottom: 32px;
    padding-left: 61px;
    font-size: 15px;
  }

  .solution li:before {
    font-size: 60px;
    line-height: 60px;
    top: 20px;
    margin-left: 20px;
  }
}

/*特徴*/
.features {
  padding: 80px 0 134px;
}

.features .content_inner {
  max-width: none;
  padding: 0;
}

.featureList {
  margin-top: 60px;
}

.featureList .piledBox .piledBox-txt {
  background: #F5F5F5;
  width: 50%;
  flex-basis: 50%;
}

@media only screen and (max-width: 768px) {

  .featureBox figure {
    width: 50%;
    margin: 0 auto;
  }

  .featureBox + .featureBox {
    margin-top: 20px;
  }

  .featureBox > div {
    width: 100%;
    padding: 20px;
  }

  .features .feature_ttl {
    margin-bottom: 11px;
    font-size: 15px;
    line-height: 1.6;
  }

  .features .feature_caption {
    line-height: 1.7;
  }

}

/*機能リスト*/
.function {
  padding: 80px 0 70px;
  background: #F3F3EF;
}

.function .functionList {
  margin-top: 41px;
}

.function .functionList > div {
  width: calc((100% - 30px)/2);
  padding: 30px;
  background: #fff;
}

.function .functionList > div:nth-of-type(n + 3) {
  margin-top: 30px;
}

.function_ttl {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 700;
}

.function_caption {
  font-size: 14px;
  line-height: 1.7;
}

@media only screen and (max-width: 768px) {
  .function .functionList > div {
    width: 100%;
  }

  .function .functionList > div:nth-of-type(n + 2) {
    margin-top: 20px;
  }

  .function .functionList > div figure {
    width: 45%;
    margin: 0 auto;
  }

  .function_ttl {
    font-size: 15px;
    margin-bottom: 11px;
  }
}


/*お問い合わせ*/
.inquiry {
  padding: 0 0 141px 0;
}

.inquiry .content_inner {
  max-width: none;
  padding: 0;
}

.inquiry.high {
  padding: 0 0 126px 0;
}

.inquiry {
  text-align: center;
}

.inquiry .inquiry_ttl {
  padding: 16px;
  background: #333;
}

.inquiry h2 {
  position: relative;
  display: inline-block;
  padding-left: 68px;
  color: #fff !important;
}

.inquiry h2:before {
  position: absolute;
  width: 45px;
  height: 33px;
  top: calc((100% - 33px)/2);
  left: 0;
  background: url(/images/company/service/icon_mail.png) no-repeat;
  content: "";
}

.inquiry p {
  font-size: 14px;
  line-height: 28px;
  margin: 40px 0 46px;
}

.inquiry .btn.bg-red {
  width: 340px;
  height: 66px;
  line-height: 64px;
  font-size: 18px;
}

/*導入事例*/

.caseStudy {
  padding: 80px 0;
  background: #F3F3EF;
}

.caseStudy .content_inner {
  max-width: none;
  padding: 0;
}

.caseStudyList {
  margin-top: 60px;
}

.caseStudy .caseStudy_logo {
  max-width: 1000px;
  margin: 80px auto 0;
  padding: 45px;
  background: #fff;
  border: solid 1px #E95C56;
}

.caseStudy .caseStudy_num {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}

.caseStudy .caseStudy_num span {
  font-size: 60px;
  color: #E82313;
  font-family: din-condensed, sans-serif;
}

.caseStudy .caseStudy_logo > div figure {
  width: 210px;
  margin: 8px;
  display: inline-block;
}

.caseStudy .caseStudy_logo > div figure img {
  width: 100%;
}

@media only screen and (max-width: 800px) {
  .caseStudy .caseStudy_logo > div {
    flex-direction: row !important;
  }

  .caseStudy .caseStudy_logo > div figure {
    width: calc(50% - 16px);
    margin: 8px;
  }
}

@media only screen and (max-width: 600px) {
  .caseStudy {
    padding: 50px 25px;
  }

  .caseStudy .caseStudy_logo {
    padding: 20px;
  }

  .caseStudy .caseStudy_logo > div {
    flex-direction: column !important;
  }

  .caseStudy .caseStudy_logo > div figure {
    width: 100%;
    margin: 8px 0;
  }

  .caseStudy .caseStudy_num {
    font-size: 18px;
  }

  .caseStudy .caseStudy_num span {
    font-size: 50px;
  }
}

/*導入の流れ*/
.flow {
  padding: 80px 0 0;
}

.flow ol {
  margin-top: 59px;
  counter-reset: my-counter;
}

.flow li {
  position: relative;
  background: #F3F3EF;
}

.flow li + li {
  margin-top: 40px;
}

.flow li:before {
  position: absolute;
  margin-left: 41px;
  top: calc((100% - 240px)/2);
  content: counter(my-counter, decimal-leading-zero);
  counter-increment: my-counter;
  list-style: decimal-leading-zero;
  font-weight: bold;
  color: #E8E8E5;
  font-size: 160px;
  font-family: din-condensed, sans-serif;
}

.flow li > div {
  padding: 40px 40px 40px 210px;
}

.flow li > div h3 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
}

.flow li > div p {
  font-size: 14px;
  line-height: 1.8;
}

.flow li:after {
  position: absolute;
  width: 23px;
  height: 20px;
  left: calc((100% - 23px)/2);
  bottom: -33px;
  background: url(/images/company/service/flow-icon-arrow.png) no-repeat;
  content: "";
}

.flow li:last-child:after {
  display: none;
}

@media only screen and (max-width: 768px) {
  .flow {
    padding: 50px 0 0;
  }

  .flow li > div {
    padding: 35px 20px 20px;
  }

  .flow li > div h3 {
    margin-bottom: 32px;
    padding-left: 61px;
    font-size: 15px;
  }

  .flow li:before {
    font-size: 60px;
    line-height: 60px;
    top: 20px;
    margin-left: 20px;
  }
}

/*よくある質問*/

.question {
  padding: 60px 0 120px;
}

.questionWrap {
  margin-top: 41px;
}

.questionWrap dl dt {
  position: relative;
  padding: 28px 76px;
  background: url(/images/company/service/question_icon.png) no-repeat 30px 21px/auto 50px;
  font-size: 18px;
  font-weight: 400;
}

.questionWrap dl dt:after {
  position: absolute;
  top: calc((100% - 51px)/2);
  right: 30px;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  font-size: 34px;
  content: '\f067';
}

.questionWrap dl dt.open:after {
  content: '\f068';
}

.questionWrap dl {
  border-top: solid 1px #E8E8E5;
}

.questionWrap dl:last-child {
  border-bottom: solid 1px #E8E8E5;
}

.questionWrap dl dd {
  display: none;
  padding: 30px;
  font-size: 14px;
  background: #F5F5F5;
  line-height: 30px;
}

@media only screen and (max-width: 768px) {
  .question {
    padding: 50px 0;
  }

  .questionWrap dl dt {
    padding: 20px 60px 20px 71px;
    font-size: 15px;
    background: url(/images/company/service/question_icon.png) no-repeat 25px 21px/auto 50px;
  }

  .questionWrap dl dt:after {
    right: 25px;
  }

  .questionWrap dl dd {
    padding: 20px;
  }
}


/*料金*/

.price {
  position: relative;
  padding: 80px 0;
  background: #FBF0EE;
}

.price:before {
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(/images/company/service/price-icon.png) no-repeat;
  top: -45px;
  left: calc((100% - 90px)/2);
  content: "";
}

.priceList {
  margin-top: 41px;
}

.priceList > div {
  padding: 40px 40px 30px 40px;
  background: #fff;
}

.priceList .priceList-plan + .priceList-plan {
  margin-top: 20px;
}

.priceList-plan figure {
  width: 23%;
  margin-right: 30px;
}

.priceList-plan figure img {
  max-width: 100%;
}

.priceList-plan > div {
  width: calc((100% - 23%) - 30px);
}

.priceList-plan .priceList-plan_ttl {
  font-size: 24px;
  font-weight: 700;
}

.priceList-plan_caption {
  margin: 16px 0 20px;
}

.priceList-plan .priceList-plan_price {
  font-size: 18px;
  color: #E82313;
}

.priceList-plan_buy {
  margin-top: auto;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {
  .price {
    padding: 50px 0;
  }

  .price:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: calc((100% - 60px)/2);
    background-size: contain;
  }

  .priceList {
    margin-top: 28px;
  }

  .priceList-plan figure {
    width: 100%;
    margin: 0;
    text-align: center;
  }

  .priceList > div {
    padding: 20px 20px 30px;
  }

  .priceList-plan > div {
    width: 100%;
  }

  .priceList-plan .priceList-plan_ttl {
    font-size: 18px;
  }

  .priceList-plan_caption {
    font-size: 14px;
    margin: 11px 0 20px;
  }

  .priceList-plan_buy {
    margin: 20px auto 0;
  }
}


/*プレゼンテーション*/

.presentation {
  position: relative;
  padding: 80px 0 126px;
  background: #FBF0EE;
}

.presentation:before {
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(/images/company/service/presentation-icon.png) no-repeat;
  top: -45px;
  left: calc((100% - 90px)/2);
  content: "";
}

.presentationList {
  margin-top: 41px;
}

.presentationList .presentationBox {
  padding: 40px 40px 30px 40px;
  background: #fff;
}

.presentationList .presentationBox + .presentationBox {
  margin-top: 20px;
}

.presentationBox figure {
  width: 36%;
  margin-right: 30px;
}

.presentationBox figure img {
  width: 100%;
}

.presentationBox > div {
  width: calc((100% - 36%) - 30px);
}

.presentationBox_ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 34px;
}

.presentationBox_caption {
  margin: 19px 0 16px;
  font-size: 12px;
  line-height: 23px;
}

.presentationBox_cta {
  margin-top: auto;
  margin-left: auto;
}

@media only screen and (max-width: 768px) {

  .presentation {
    padding: 50px 0;
  }

  .presentation:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: calc((100% - 60px)/2);
    background-size: contain;
  }

  .presentationList .presentationBox {
    padding: 0;
  }

  .presentationBox figure {
    width: 100%;
  }

  .presentationBox > div {
    width: 100%;
    padding: 20px;
  }

  .presentationBox_cta {
    margin: 0 auto;
  }

  .presentationBox_cta .btn {
    margin: 0;
  }
}

/*ホワイトペーパー*/

.whitepaper {
  position: relative;
  padding: 75px 0 80px;
}

.whitepaper:before {
  position: absolute;
  width: 90px;
  height: 90px;
  background: url(/images/company/service/whitepaper-icon.png) no-repeat;
  top: -45px;
  left: calc((100% - 90px)/2);
  content: "";
}

.whitepaperList {
  margin-top: 41px;
}

@media only screen and (max-width: 768px) {

  .whitepaper:before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: calc((100% - 60px)/2);
    background-size: contain;
  }
}


/*お問い合わせフォーム*/

.inquiryForm {
  padding: 80px 0;
  background: #F3F3EF;
}

.inquiryForm .content_inner {
  padding: 22px 60px 60px;
  background: #fff;
  overflow: hidden;
}

/* お問い合わせフォームの入力欄を丸角にするためにcssを上書き */
.inquiryForm .content_inner .form-control-lg {
  border-radius: .3rem !important;
}

.inquiryForm h2 {
  position: relative;
  padding-bottom: 22px;
}

.inquiryForm h2:after {
  position: absolute;
  width: 200%;
  height: 1px;
  bottom: 0;
  left: -30%;
  background: #E8E8E5;
  content: "";
}

.inquiryForm_intro {
  max-width: 662px;
  margin: 30px auto 60px;
  font-size: 14px;
}

.inquiryForm .agreement input {
  margin: 0;
}

.inquiryForm .agreement label {
  margin: 0 0 0 33px;
  font-weight: 400;
}

.inquiryForm .agreement label a {
  color: #E82313;
  text-decoration: underline;
}

.inquiryForm .btn {
  margin: 40px 0 0;
}

@media only screen and (max-width: 768px) {
  .inquiryForm {
    padding: 50px 0;
  }

  .inquiryForm_intro {
    margin: 30px auto !important;
  }

  .inquiryForm .content_inner {
    padding: 15px 20px 30px !important;
  }

  .inquiryForm {
    padding: 50px 25px;
  }

  .inquiryForm h2 {
    padding-bottom: 14px;
  }
}

/*お問い合わせフォーム*/

.form-head {
  font-size: 14px;
  margin-bottom: 30px;
}

.form-row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 0 30px 0 !important;
}

.form-row .col-auto + .col-auto {
  padding-left: 12px;
}

.form-group .form-confirm {
  margin-left: 20px;
  padding: 20px 0;
  font-size: 16px;
}

.form-group + .form-group {
  margin-top: 7rem;
}

form label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

form .btnWrap > a {
  text-decoration: none;
}

form .btnWrap > a + a {
  margin-left: 20px;
}

.col-md-6 {
  width: 50%;
}

textarea {
  height: 200px;
}

.mt10 {
  margin-top: 10px;
}

@media only screen and (max-width: 768px) {
  .inquiry {
    padding: 0 0 111px 0;
  }

  .inquiry h2 {
    padding-left: 42px;
  }

  .inquiry h2:before {
    width: 27px;
    height: 20px;
    top: calc((100% - 20px)/2);
    background-size: contain;
  }

  .inquiry p {
    margin: 30px 0 20px;
    padding: 0 30px;
  }

  .inquiry .btn.bg-red {
    width: 280px;
    margin: 0;
  }

  .row {
    flex-direction: column;
  }

  .row > div + div {
    margin-top: 10px;
  }

  .col-md-6 {
    width: 100%;
  }
}

@media only screen and (max-width: 500px) {
  .col-auto {
    width: 100%;
  }

  .form-row .col-auto + .col-auto {
    padding: 0;
  }
}


/* 外部リンク */

.external_link {
  margin: 30px auto;
  padding: 60px 0 84px;

}
.external_link ul {
  margin-top: 46px;
}
.external_link ul li {
  position: relative;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 35fr 65fr;
  column-gap: 5px;
}
.external_link ul li > .column {
  padding: 25px;
  display: grid;
  align-items: center;
  text-align: left;
  background: #f5f5f5;
}
.external_link ul li > .column.title {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}
.external_link ul li > .column.url {
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/*会社概要*/
.company {
  padding: 80px 0 140px;
}

.companyBox {
  margin-top: 41px;
}

.companyBox figure {
  width: 49%;
  height: 250px;
  margin-right: 40px;
  padding: 20px;
  border: solid 1px #F5F5F5;
}

.companyBox figure img {
  max-height: 250px;
}

.companyBox_text {
  width: calc((100% - 49%) - 40px);
}

.companyBox_text h3 {
  margin-bottom: 30px;
  font-size: 23px;
  font-weight: 700;
}

.companyBox_text p {
  font-size: 15px;
  line-height: 32px;
}

@media only screen and (max-width: 768px) {
  .company {
    padding: 40px 0 70px;
  }

  .company_inner {
    padding: 0 25px;
  }

  .companyBox figure {
    width: 100%;
    margin-right: 0;
  }

  .companyBox_text h3 {
    margin-bottom: 11px;
    font-size: 18px;
  }

  .companyBox_text {
    width: auto;
    margin-top: 20px;
  }

  .companyBox_text p {
    font-size: 12px;
  }
}

/*flexbox*/
.ml-auto {
  margin-left: auto;
}

.mt-auto {
  margin-top: auto;
}

@media only screen and (max-width: 768px) {
  .flex-sp-column {
    flex-direction: column !important;
  }
}

.custom-control {
  padding-left: 0;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: none;
  border-color: #86b7fe;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 0.35rem;
}
/* チェックボックスの色 */
.custom-control-label::before {
  height: 19px;
  width: 19px;
  left: -33px;
  box-shadow: none;
  -webkit-box-shadow: none;
  border: solid 1px #DDDDDD;
}
.custom-control-label::after {
  height: 19px;
  width: 19px;
  left: -33px;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  height: 19px;
  width: 19px;
  left: -33px;
  background-color: #E82313;
  box-shadow: none;
  -webkit-box-shadow: none;
}
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  height: 19px;
  width: 19px;
  left: -33px;
  background: no-repeat 100%/100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  box-shadow: none;
  -webkit-box-shadow: none;
}
