@charset "UTF-8";
/*********************************************
ALL
*********************************************/
.fontColorBlueGreen {
  color: #38acb5;
}

.bgGray {
  background: #f2f2f2;
}

.bgWhite {
  background: #ffffff;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  color: #444444;
  font-size: clamp(0.8rem, 4vw, 1rem);
  line-height: 1.7;
  font-weight: 400 !important;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 65px;
  word-break: normal;
}
@media screen and (max-width: 540px) {
  body {
    margin: 0;
  }
}

.pc {
  display: none;
}
@media only screen and (min-width: 541px) {
  .pc {
    display: inherit;
  }
}

@media screen and (max-width: 540px) {
  .sp {
    display: initial;
  }
}
@media only screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}

h2 {
  font-size: 35px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  line-height: 1.7;
  padding: 0;
  margin: 0 auto 5%;
}
@media screen and (max-width: 540px) {
  h2 {
    font-size: 1.375rem;
    margin: 0 auto 30px;
  }
}
h2:after {
  content: "";
  border-bottom: 5px solid #38acb5;
  width: 100px;
  display: block;
  margin: 15px auto 0;
}

h3 {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.6;
  display: block;
  padding-bottom: 3%;
}

main .inner,
footer .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
  main .inner,
  footer .inner {
    width: 94%;
  }
}

dd,
p {
  line-height: 1.7;
}

strong {
  font-weight: bold;
}

/*********************************************
余白/文字
*********************************************/
.center,
.center-pc {
  text-align: center;
}

@media screen and (max-width: 540px) {
  .center-pc {
    text-align: left;
  }
}
.ptb30 {
  padding: 30px 0;
}
@media screen and (max-width: 540px) {
  .ptb30 {
    padding: 15px 0;
  }
}

.ptb60 {
  padding: 60px 0;
}
@media screen and (max-width: 540px) {
  .ptb60 {
    padding: 30px 0;
  }
}

.ptb120 {
  padding: 120px 0;
}
@media screen and (max-width: 540px) {
  .ptb120 {
    padding: 60px 0;
  }
}

/*********************************************
header
*********************************************/
header {
  width: 100%;
  height: 65px;
  padding: 10px 0 0;
  background: #ffffff;
}
@media screen and (max-width: 540px) {
  header {
    height: 60px;
  }
}
header .inner {
  width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  header .inner {
    width: 94%;
  }
}
header .inner .logo {
  width: 154px;
  margin-top: 2px;
}
@media screen and (max-width: 540px) {
  header .inner .logo {
    width: 137px;
  }
}
@media only screen and (max-width: 430px) {
  header .inner .logo {
    width: 120px;
    margin: 14px auto 5px;
  }
}
header .inner .logo img {
  width: 100%;
}

.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

/*********************************************
資料請求ボタン
*********************************************/
.btn,
a.btn,
button.btn {
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
}

/****　header：資料請求ボタン　****/
header a.btn {
  color: #ffffff;
  background-color: #38acb5;
  border: 2px solid #38acb5;
}
header a.btn:hover {
  color: #38acb5;
  background: #ffffff;
  border: 2px solid #38acb5;
}
@media only screen and (max-width: 540px) {
  header a.btn {
    font-size: 0.8rem;
  }
}
@media only screen and (max-width: 350px) {
  header a.btn {
    font-size: 0.6rem;
    margin-top: 6px;
  }
}
header a.btn-c {
  position: relative;
  padding: 0.6rem 1.4rem 0.6rem 1.4rem;
  border-radius: 100vh;
}
@media only screen and (max-width: 375px) {
  header a.btn-c {
    padding: 0.6rem 0.9rem 0.6rem 1rem;
  }
}
header a.btn-c i {
  margin-right: 0.5rem;
}

/****　全体：資料請求ボタン　****/
main .btn-wrap {
  margin: 60px auto 0;
  padding-top: 27px;
  width: 350px;
}
@media screen and (max-width: 540px) {
  main .btn-wrap {
    margin: 30px auto 0;
  }
}
@media only screen and (max-width: 375px) {
  main .btn-wrap {
    width: 300px;
  }
}
main .btn-wrap a.btn-c2 {
  font-size: 20px;
  line-height: 1.5em;
  width: 100%;
  position: relative;
  padding: 0 2rem 1.6rem 2rem;
  color: #ffffff;
  background: #38acb5;
  border-radius: 60px;
  margin-bottom: 5px;
  border: 2px solid #38acb5;
}
@media screen and (max-width: 540px) {
  main .btn-wrap a.btn-c2 {
    line-height: 1.2em;
    padding: 0 2rem 1rem 2rem;
  }
}
@media only screen and (max-width: 375px) {
  main .btn-wrap a.btn-c2 {
    padding: 0 1rem 1rem 1rem;
    font-size: 1rem;
  }
}
main .btn-wrap a.btn-c2 i {
  margin-right: 1rem;
}
main .btn-wrap a.btn-c2 span {
  font-size: 16px;
  position: absolute;
  top: -1.6rem;
  left: 21%;
  display: block;
  width: 197px;
  padding: 0.2rem 0;
  color: #38acb5;
  border: 2px solid #38acb5;
  border-radius: 100vh;
  background: #ffffff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 540px) {
  main .btn-wrap a.btn-c2 span {
    top: -1.4rem;
  }
}
@media only screen and (max-width: 375px) {
  main .btn-wrap a.btn-c2 span {
    left: 19%;
  }
}
main .btn-wrap a.btn-c2 span:before, main .btn-wrap a.btn-c2 span:after {
  position: absolute;
  left: calc(50% - 10px);
  content: "";
}
main .btn-wrap a.btn-c2 span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #38acb5 transparent transparent transparent;
}
main .btn-wrap a.btn-c2 span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #ffffff transparent transparent transparent;
}
main .btn-wrap a.btn-c2:hover {
  color: #38acb5;
  background: #ffffff;
  border: 2px solid #38acb5;
}
main .btn-wrap p {
  color: #38acb5;
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
}

/*********************************************
メインビジュアル
*********************************************/
.main_img {
  background: url(../images/main_img_bg.png) center bottom repeat-x;
  background-size: 1790px;
}
@media screen and (max-width: 540px) {
  .main_img {
    background: none;
  }
}
.main_img h1 {
  text-indent: -99999px;
  height: 0;
}
.main_img img {
  width: 100%;
  margin: 0 auto;
}
.main_img img.pc {
  max-width: 1000px;
}
.main_img h1 {
  text-indent: -9999px;
  height: 0;
  background: url("../images/main_img.png") center bottom no-repeat;
  background-size: 100%;
  margin: 0 auto;
  width: 96%;
  padding-bottom: 50%;
}
@media screen and (min-width: 1000px) {
  .main_img h1 {
    width: 1000px;
    padding-bottom: 500px;
  }
}
@media screen and (max-width: 540px) {
  .main_img h1 {
    background: url("../images/main_img_sp_20241212.jpg") 0 0 no-repeat;
    background-size: 100%;
    width: 100%;
    height: 0;
    padding-bottom: 113%;
  }
}

/*********************************************
CVエリア
*********************************************/
.cva .btn-wrap {
  margin-top: 0;
}

/*********************************************
CVエリア2
*********************************************/
.cva2 {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 1;
  background: #ffffff;
  padding: 6px 0 15px;
}
.cva2 .btn-wrap {
  margin-top: 0;
}

/*********************************************
導入企業の声
*********************************************/
.case_area .inner .caseLabo {
  padding: 5%;
}
@media screen and (max-width: 540px) {
  .case_area .inner .caseLabo {
    padding: 8%;
  }
}
.case_area .inner .caseLabo h3 {
  text-align: left;
}
@media screen and (max-width: 540px) {
  .case_area .inner .caseLabo h3 {
    font-size: 1.25rem;
  }
}
.case_area .inner .caseLabo dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .case_area .inner .caseLabo dl {
    display: inline-block;
  }
}
.case_area .inner .caseLabo dl dt {
  max-width: 460px;
  width: 60%;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .case_area .inner .caseLabo dl dt {
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .case_area .inner .caseLabo dl dt {
    width: 100%;
  }
}
.case_area .inner .caseLabo dl dd {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .case_area .inner .caseLabo dl dd {
    width: 100%;
    margin: 3% auto 0;
  }
}
@media screen and (max-width: 540px) {
  .case_area .inner .caseLabo dl dd {
    margin: 4% auto 0;
  }
}
.case_area .inner .caseLabo dl dd span {
  font-weight: bold;
  display: block;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .case_area .inner .caseLabo dl dd span {
    margin-top: 3%;
  }
}
.case_area .inner .caseLabo img {
  width: 100%;
}

/*********************************************
このような課題はありませんか？
*********************************************/
.assignmentArea .problem-list {
  max-width: 780px;
  width: 90%;
  padding: 30px;
  margin: 0 auto 34px;
  position: relative;
}
@media screen and (max-width: 540px) {
  .assignmentArea .problem-list {
    width: 100%;
    padding: 4%;
  }
}
.assignmentArea .problem-list::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -33px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 54px solid transparent;
  border-right: 54px solid transparent;
  border-top: 54px solid #f2f2f2;
}
@media screen and (max-width: 540px) {
  .assignmentArea .problem-list::after {
    bottom: -40px;
  }
}
.assignmentArea .problem-list ul li {
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #ffffff;
  background-image: url("../images/icon_check.png");
  background-size: 34px;
  background-repeat: no-repeat;
  background-position: 0.8rem center;
  padding: 1.4rem 1.4rem 1.4rem 4rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 540px) {
  .assignmentArea .problem-list ul li {
    font-size: 1rem;
    padding: 4% 4% 4% 4rem;
    margin-bottom: 4%;
  }
}
.assignmentArea .problem-list ul li:last-child {
  margin: 0;
}
@media only screen and (max-width: 540px) {
  .assignmentArea .btn-wrap {
    margin-top: 40px;
  }
}

/*********************************************
ピックアップテキスト
*********************************************/
.pickupContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pickupContents .pickupText {
  width: auto;
  font-size: 1.875rem;
  font-weight: 600;
  padding: 20px 40px;
  margin: 30px auto 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .pickupContents .pickupText {
    font-size: 1.4rem;
    width: 100%;
    padding: 2% 4%;
  }
}
@media screen and (max-width: 540px) {
  .pickupContents .pickupText {
    font-size: 1rem;
  }
}
.pickupContents .pickupText img {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .pickupContents .pickupText img {
    margin-right: 4%;
  }
}
.pickupContents .pickupText img.img_lSize {
  width: 74px;
}
@media screen and (max-width: 540px) {
  .pickupContents .pickupText img.img_lSize {
    width: 50px;
  }
}
.pickupContents .pickupText img.img_sSize {
  width: 56px;
}
@media screen and (max-width: 768px) {
  .pickupContents .pickupText img.img_sSize {
    width: 40px;
  }
}
.pickupContents .pickupText span.font_s {
  font-size: 1.25rem;
  display: block;
}
@media screen and (max-width: 768px) {
  .pickupContents .pickupText span.font_s {
    font-size: 0.9rem;
  }
}
.pickupContents .pickupText img {
  width: 74px;
}

/*********************************************
Fancrew ICRでできること
*********************************************/
.canDoArea .inner .box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4%;
  gap: 5%;
}
@media screen and (max-width: 540px) {
  .canDoArea .inner .box_list {
    margin-bottom: 0;
  }
}
.canDoArea .inner .box_list dl img {
  width: 100%;
}
.canDoArea .inner .box_list dl:nth-child(1), .canDoArea .inner .box_list dl:nth-child(2), .canDoArea .inner .box_list dl:nth-child(3) {
  width: 30%;
  margin-bottom: 5%;
}
.canDoArea .inner .box_list dl:nth-child(4), .canDoArea .inner .box_list dl:nth-child(5) {
  width: 40%;
}
@media screen and (max-width: 540px) {
  .canDoArea .inner .box_list dl {
    width: 90% !important;
    margin-bottom: 9% !important;
  }
}
@media screen and (max-width: 540px) {
  .canDoArea .inner .box_list dl:last-child {
    margin-bottom: 0 !important;
  }
}
.canDoArea .inner .box_list dl dd {
  text-align: left;
}
.canDoArea .inner .box_list dl dd span {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 15px 0;
}
@media only screen and (max-width: 540px) {
  .canDoArea .inner .btn-wrap {
    margin-top: 40px;
  }
}

/*********************************************
活用イメージ
*********************************************/
.utilizationImageArea .utilizationImageBox {
  width: 90%;
  max-width: 940px;
  padding: 30px;
  margin: 0 auto 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 540px) {
  .utilizationImageArea .utilizationImageBox {
    text-align: center;
    display: block;
    padding: 6%;
    margin: 0 auto 9%;
  }
}
.utilizationImageArea .utilizationImageBox img {
  width: 140px;
  margin-right: 30px;
}
@media screen and (max-width: 540px) {
  .utilizationImageArea .utilizationImageBox img {
    width: 80px;
    margin-right: 0;
    margin-bottom: 3%;
  }
}
.utilizationImageArea .utilizationImageBox dl dt {
  font-size: 1.25rem;
  font-weight: bold;
  display: block;
  padding-bottom: 3%;
}
@media screen and (max-width: 540px) {
  .utilizationImageArea .utilizationImageBox dl dd {
    text-align: left;
  }
}

/*********************************************
活用の流れ
*********************************************/
.flowUtilizationArea .inner .box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4%;
  gap: 5%;
}
@media screen and (max-width: 540px) {
  .flowUtilizationArea .inner .box_list {
    text-align: center;
    display: block;
    padding: 6%;
    margin: 0 auto 0;
  }
}
.flowUtilizationArea .inner .box_list dl {
  width: 30%;
  margin-bottom: 3%;
}
@media screen and (max-width: 540px) {
  .flowUtilizationArea .inner .box_list dl {
    width: 90% !important;
    margin: 0 auto 10% !important;
  }
}
@media screen and (max-width: 540px) {
  .flowUtilizationArea .inner .box_list dl:last-child {
    margin-bottom: 0 !important;
  }
}
.flowUtilizationArea .inner .box_list dl img {
  width: 100%;
}
.flowUtilizationArea .inner .box_list dl dd {
  text-align: left;
}
.flowUtilizationArea .inner .box_list dl dd span {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 15px 0;
}

/*********************************************
機能のご紹介
*********************************************/
.functionArea .inner .box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .functionArea .inner .box_list {
    display: block;
  }
}
.functionArea .inner .box_list .functionBox {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .functionArea .inner .box_list .functionBox {
    width: 60%;
    margin: 0 auto 6%;
  }
}
@media screen and (max-width: 540px) {
  .functionArea .inner .box_list .functionBox {
    width: 100%;
    margin-bottom: 9%;
  }
}
.functionArea .inner .box_list .functionBox p {
  margin-bottom: 30px;
}
@media screen and (max-width: 540px) {
  .functionArea .inner .box_list .functionBox p {
    margin-bottom: 6%;
  }
}
.functionArea .inner .box_list .functionBox dl {
  background: #f2f2f2;
  padding: 30px;
  min-height: 85%;
}
@media screen and (max-width: 540px) {
  .functionArea .inner .box_list .functionBox dl {
    padding: 8%;
  }
}
.functionArea .inner .box_list .functionBox dl dt {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 0 0 3% 0;
}
.functionArea .inner .box_list .functionBox dl dd span {
  text-align: right;
  display: block;
}
.functionArea .inner .box_list .functionBox img {
  width: 100%;
}
.functionArea .inner .box_list .functionBox img:first-child {
  margin-bottom: 40px;
}
@media screen and (max-width: 540px) {
  .functionArea .inner .box_list .functionBox img:first-child {
    margin-bottom: 4%;
  }
}

/*********************************************
選べるアンケート依頼方法
*********************************************/
.requestSurveyArea .inner .box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 4%;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .requestSurveyArea .inner .box_list {
    display: inline-block;
    margin-bottom: 0;
  }
}
.requestSurveyArea .inner .box_list dl {
  width: 40%;
  margin-bottom: 4%;
}
@media screen and (max-width: 768px) {
  .requestSurveyArea .inner .box_list dl {
    width: 90%;
    margin: 0 auto 4%;
  }
}
@media screen and (max-width: 540px) {
  .requestSurveyArea .inner .box_list dl {
    margin-bottom: 9%;
  }
}
.requestSurveyArea .inner .box_list dl img {
  width: 100%;
}
.requestSurveyArea .inner .box_list dl dd {
  text-align: left;
}
.requestSurveyArea .inner .box_list dl dd span {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  display: block;
  margin: 15px 0;
}
.requestSurveyArea .inner .box_list dl dd ul {
  margin-top: 14px;
}
.requestSurveyArea .inner .box_list dl dd ul li {
  margin-bottom: 2px;
}

/*********************************************
導入までの流れ
*********************************************/
.introductionFlowArea .mainText {
  font-size: clamp(1rem, 3vw, 1.1rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 6%;
}
@media screen and (max-width: 540px) {
  .introductionFlowArea .mainText {
    text-align: left;
  }
}
@media screen and (max-width: 540px) {
  .introductionFlowArea .introductionFlowBox {
    padding: 8px;
    margin-top: 4%;
    border: 1px solid #dadada;
  }
}
.introductionFlowArea .introductionFlowBox img {
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 540px) {
  .introductionFlowArea .introductionFlowBox img {
    width: 230%;
    max-width: none;
  }
}

@media screen and (max-width: 540px) {
  .scroll {
    overflow: auto;
    padding-bottom: 20px;
  }
  .simplebar-track.simplebar-horizontal {
    height: 10px;
    background: #f2f2f2;
    margin: 0 auto;
  }
  .simplebar-scrollbar {
    height: 10px;
    background: #7e7e7e;
    border-radius: 5px;
    top: 0;
  }
  .simplebar-scrollbar:before {
    background: none;
  }
}
/*********************************************
会社情報
*********************************************/
.company .inner .box_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 540px) {
  .company .inner .box_list {
    display: block;
  }
}
.company .inner .box_list div dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1% 0 2%;
  margin: 1% 0;
  border-bottom: 1px solid #dadada;
}
@media only screen and (max-width: 540px) {
  .company .inner .box_list div dl {
    display: block;
  }
}
.company .inner .box_list div dl:last-child {
  border-bottom: 0;
}
.company .inner .box_list div dl dt {
  font-weight: bold;
  width: 100px;
}
@media only screen and (max-width: 540px) {
  .company .inner .box_list div dl dt {
    padding: 5px 0;
  }
}
.company .inner .box_list div.companyInformation {
  width: 70%;
}
@media only screen and (max-width: 540px) {
  .company .inner .box_list div.companyInformation {
    width: 90%;
    margin: 0 auto;
  }
}
.company .inner .box_list div ul {
  list-style: disc !important;
  margin-left: 20px;
}

/*********************************************
よくある質問
*********************************************/
.faq_area .inner div ul {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .faq_area .inner div ul {
    width: 94%;
  }
}
@media only screen and (max-width: 540px) {
  .faq_area .inner div ul:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
.faq_area .inner div ul li {
  font-size: 0.9em;
  width: 100%;
  line-height: 1.6;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2%;
  margin-bottom: 2%;
}
.faq_area .inner div ul li span {
  color: #444444;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 1%;
  display: block;
}
.faq_area .inner div ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.faq_area .inner div ul:nth-child(1) {
  margin-right: 5%;
}
@media only screen and (max-width: 540px) {
  .faq_area .inner div ul:nth-child(1) {
    margin-right: auto;
  }
}

/*********************************************
フォーム
*********************************************/
#contents .formWrapper {
  font-weight: 400;
  /*	max-width: 980px;*/
  max-width: 700px;
  width: 90%;
  margin: 0px auto;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper {
    width: 100%;
    margin: 0 auto 60px;
  }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
}
#contents .formWrapper dl {
  display: table;
  padding-bottom: 10px;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper dl {
    width: 100%;
    padding: 10px 0;
    border: none;
    display: block;
  }
}
#contents .formWrapper dl:nth-last-of-type(1) {
  border: none;
}

#contents .formWrapper dl dt {
  font-weight: 700;
  letter-spacing: 0.5px;
  min-width: 230px;
  width: 27%;
  padding: 15px;
  background: #f2f2f2;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper dl dt {
    width: 100%;
    margin-bottom: 10px;
    display: block;
  }
}
#contents .formWrapper dl dt span {
  display: inherit;
}

#contents .formWrapper dl dt,
#contents .formWrapper dl dd {
  font-size: 16px;
  line-height: 1.6em;
}

@media screen and (max-width: 375px) {
  #contents .formWrapper dl dt,
  #contents .formWrapper dl dd {
    font-size: 15px;
    line-height: 1.5em;
  }
}
#contents .formWrapper dl dd {
  padding: 10px 20px;
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper dl dd {
    width: 100%;
    display: block;
  }
}
#contents .formWrapper dl dd p:nth-last-of-type(1) {
  margin: 0;
}

#contents .formWrapper .policy {
  width: 100%;
  margin: 20px auto;
  padding: 10px;
  height: 150px;
  overflow: scroll;
  font-size: 14px;
  border: 1px solid #eee;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper .policy {
    width: 94%;
  }
}
#contents .formWrapper .policy dl {
  display: block;
}

#contents .formWrapper .policy dl dt,
#contents .formWrapper .policy dl dd {
  width: 100%;
}

#contents .formWrapper .policy dl dt {
  margin-top: 10px;
  margin-bottom: 5px;
  font-size: 14px;
  background: none;
  padding: 0;
  min-width: inherit;
  display: inherit;
}

#contents .formWrapper .policy dl dd {
  font-size: 13px;
  display: inherit;
  padding: 0;
}

#contents .formWrapper .policy h3 {
  margin: 0;
  padding: 0 0 10px;
  font-size: 16px;
  text-align: center;
  border-bottom: 1px dotted #ccc;
}

@media screen and (max-width: 768px) {
  #contents .formWrapper .policy h3 {
    font-size: 14px;
  }
}
#contents .formWrapper .termsInput {
  text-align: center;
  padding: 20px 0;
}

@media screen and (max-width: 375px) {
  #contents .formWrapper .termsInput {
    font-size: 14px;
  }
}
#contents .formWrapper .required {
  font-size: 11px;
  line-height: 1.4em;
  color: #ffffff;
  width: 33px;
  background: #38acb5;
  padding: 2px 5px;
  margin-top: 3px;
  margin-right: 15px;
  float: left;
}

@media screen and (max-width: 375px) {
  #contents .formWrapper .required {
    font-size: 11px;
    line-height: 1.3em;
  }
}
#contents .formWrapper .termsInput .required {
  float: none;
  margin: 0 0 0 15px;
}

@media screen and (max-width: 375px) {
  #contents .formWrapper .termsInput .required {
    margin: 0 0 0 10px;
  }
}
#contents .formWrapper .termsInput .wpcf7-list-item label {
  margin: 0;
}

.mw_wp_form label a {
  margin-left: 6px;
}

.mw_wp_form label input[type=checkbox],
.mw_wp_form label input[type=radio] {
  margin-right: 4px;
}

/* #contents form input,  */
#contents form textarea,
#contents form input[type=email],
#contents form input[type=text] {
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  border-radius: 4px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 540px) {
  #contents form textarea,
  #contents form input[type=email],
  #contents form input[type=text] {
    margin-bottom: 2%;
  }
}

#contents form input[type=tel] {
  width: 30%;
  margin: 0;
  padding: 5px 10px;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #999;
  border-radius: 4px;
}

input[type=checkbox],
input[type=radio] {
  margin: 0;
}

#contents form textarea {
  width: 97%;
}

#contents form select {
  padding: 8px 10px 8px 5px;
  border: 1px solid #999;
  border-radius: 4px;
  background-color: #ffffff;
  letter-spacing: 0.1rem;
}

@media screen and (max-width: 575px) {
  #contents form input,
  #contents form textarea,
  #contents form select {
    max-width: 100%;
  }
}
#contents form input:focus,
#contents form textarea:focus,
#contents form select:focus {
  outline: none;
  border: 1px solid #38acb5;
  background-color: #f2f2f2;
}

#contents form input.alert,
#contents form textarea.alert,
#contents form select.alert {
  border: 1px solid #eb6e6e;
  background-color: #ffebeb;
}

#contents form input.alert::-webkit-input-placeholder, #contents form textarea.alert::-webkit-input-placeholder, #contents form select.alert::-webkit-input-placeholder {
  color: #eb6e6e;
}

#contents form input.alert::-moz-placeholder, #contents form textarea.alert::-moz-placeholder, #contents form select.alert::-moz-placeholder {
  color: #eb6e6e;
}

#contents form input.alert:-ms-input-placeholder, #contents form textarea.alert:-ms-input-placeholder, #contents form select.alert:-ms-input-placeholder {
  color: #eb6e6e;
}

#contents form input.alert::-ms-input-placeholder, #contents form textarea.alert::-ms-input-placeholder, #contents form select.alert::-ms-input-placeholder {
  color: #eb6e6e;
}

#contents form input.alert::placeholder,
#contents form textarea.alert::placeholder,
#contents form select.alert::placeholder {
  color: #eb6e6e;
}

#contents form input.button-L1 {
  border: none;
  width: 300px;
  margin: 15px auto 30px;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 60px;
  border: 3px solid #38acb5;
  font-weight: bold;
  padding: 15px;
  text-decoration: none;
  color: #ffffff;
  position: relative;
  -webkit-box-shadow: 0px 7px 10px -3px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 7px 10px -3px rgba(0, 0, 0, 0.1);
  background: #38acb5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
}

#contents form input.button-L1:after {
  position: absolute;
  margin: auto;
}

#contents form input.button-L1:hover {
  text-decoration: none;
  color: #38acb5;
  background: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

@media screen and (max-width: 575px) {
  #contents form input.button-L1 {
    width: 80%;
  }
}
#contents form input.button-L1:after {
  display: none;
}

#contents form input.button-L1.disable,
a.button-L1.disable {
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}

#contents form .error {
  margin-top: 5px;
  font-size: 12px;
  font-weight: bold;
}

#contents form .error:before {
  content: "※";
}

#contents .aroundLink {
  width: 100%;
  margin: 20px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.wpcf7 form .wpcf7-response-output {
  /* margin: -50px auto 5%;*/
  margin: 0 auto 5%;
  max-width: 800px;
}

.wpcf7 form .wpcf7-list-item {
  display: block;
  margin: 0;
}

.wpcf7 form .wpcf7-list-item-label {
  margin-left: 4px;
}

.formWrapper label,
.formWrapper label input[type=checkbox],
.formWrapper label input[type=radio] {
  cursor: pointer;
}

.formWrapper label a {
  margin-right: 4px;
}

.wpcf7 form label a:hover {
  color: #000;
}

.formBgWhite {
  width: 90%;
  background: #ffffff;
  padding: 4% 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .formBgWhite {
    width: 100%;
    padding: 4%;
  }
}

.formWrapper label {
  font-weight: 700;
  display: block !important;
  margin: 1% 0;
}

.wpcf7 form .termsInput .wpcf7-list-item {
  display: inline-block !important;
}

.formWrapper .notes {
  font-size: 0.8rem;
  line-height: 1.2;
  display: block;
}

.formWrapper a {
  color: #38acb5;
}

.formWrapper a:hover {
  color: #444444;
}

input[type=text],
input[type=email] {
  width: 100%;
}

#your-name1,
#your-name2 {
  width: 45%;
}

/*********************************************
footer
*********************************************/
footer {
  width: 100%;
}
footer .footer-wrap {
  background: #f2f2f2;
  border-top: 1px solid #d8d8d8;
}
footer .logo_f {
  width: 100%;
  text-align: center;
  background: #ffffff;
  padding: 2% 0;
  display: block;
}
footer .logo_f img {
  width: 250px;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  footer .logo_f img {
    width: 30%;
  }
}
footer a {
  color: #444444;
  font-weight: bold;
}
footer a:hover {
  color: #2594ad;
}
footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 540px) {
  footer .inner {
    display: block;
  }
}
footer .inner .f_left {
  width: 25%;
  margin-right: 10%;
}
@media only screen and (max-width: 540px) {
  footer .inner .f_left {
    width: 100%;
    text-align: center;
    margin: 0 0 10%;
  }
}
footer .inner .f_left img {
  width: 100%;
}
@media only screen and (max-width: 540px) {
  footer .inner .f_left img {
    width: 50%;
  }
}
@media only screen and (max-width: 540px) {
  footer .inner .f_right {
    width: 100%;
    display: block;
  }
}
footer .inner .f_right dl {
  margin-right: 7%;
  width: 80%;
}
@media only screen and (max-width: 540px) {
  footer .inner .f_right dl {
    margin: 0 auto;
    width: 100%;
  }
}
footer .inner .f_right dl dt {
  font-weight: bold;
  line-height: 1.6em;
}
footer .inner .f_right dl dt:nth-child(1) {
  font-size: 1.5em;
  margin-bottom: 4%;
}
@media only screen and (max-width: 540px) {
  footer .inner .f_right dl dt:nth-child(1) {
    font-size: 1.2em;
  }
}
footer .inner .f_right dl dd {
  margin-bottom: 2%;
}
footer .inner .f_right .pmark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 540px) {
  footer .inner .f_right .pmark {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
footer .inner .f_right .pmark img {
  width: 65px;
}
footer .inner .f_right .pmark p {
  font-size: 0.7rem;
  line-height: 1.2rem;
  width: 220px;
  margin: 0 0 0 20px;
  display: block;
}
footer .copy {
  text-align: center;
  padding: 2% 0 6%;
}
@media only screen and (max-width: 540px) {
  footer .copy {
    padding: 20px 0;
  }
}
footer .copy a {
  font-weight: 300;
  text-decoration: none;
}

/****************************************************
reCAPTCHA v3
/***************************************************/