@charset "UTF-8";

/* ###########################
    foundation 
  ###########################*/
body,
html {
  /* height: 100%; */
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
}

* {
  box-sizing: border-box !important;
}

/* ###########################
    layout 
  ###########################*/
.wrapper {
  width: 100%;
  max-width: 800px;
  margin: auto;
}

.title {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 36px;
  font-weight: 400;
}

@media screen and (max-width: 1024px) {
  .title {
    margin-top: 36px;
    margin-bottom: 40px;
    text-align: center;
    font-size: 36px;
    margin-right: auto;
    margin-left: auto;
    width: 96%;
  }
}

@media screen and (max-width: 510px) {
  .title {
    font-size: 6.88vw;
  }
}

#kakuform {
  margin-bottom: 80px;
}

#kakuform * {
  font-family: 'Noto Sans JP', sans-serif;
}

form {
  max-width: 800px !important;
  /* margin-left: auto;
  margin-right: auto; */
  /* border-top: 1px solid #ccc; */
  width: 100% !important;
}

form * {
  box-sizing: border-box;
}

@media screen and (max-width: 1024px) {
  form {
    width: 90% !important;
    margin: auto;
  }
}

/* footer */
#footer_bottom02 {
  display: none;
}

.p-footer__menu {
  display: none;
}

/* modal */
body {
  min-height: 400px;
}

.modal_open {
  cursor: pointer;
  z-index: 100;
}

.modal_overlay,
.modal_content {
  display: none;
  position: fixed;
}

.modal_content {
  width: 90%;
  height: auto;
  max-width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 101;
  text-align: center;
  padding: 1em;
  border-radius: 8px;
}

.modal_overlay {
  width: 100%;
  height: 100%;
  background: grey;
  opacity: .6;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.modal_overlay.open,
.modal_content.open {
  display: block;
}

.modal_delete {
  cursor: pointer;
  text-align: center;
}

.popup-inner_tel_number {
  font-size: 24px;
  vertical-align: baseline;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding: 0;
  border: 0;
  background: transparent;
  outline: none;
}

.popup-color-red {
  color: #f00;
  font-size: 14px;
  margin-bottom: 30px;
}



.close-btn {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  border: 2px solid #333;
  /* 枠の調整 */
  background: #fff;
  /* ボタンの背景色 */
  margin-left: auto;
  margin-right: 0;
}

.close-btn::before,
.close-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  /* 棒の幅（太さ） */
  height: 27px;
  /* 棒の高さ */
  background: #333;
  /* バツ印の色 */
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ###########################
    object 
  ###########################*/
.check-area {
  font-size: 1.6rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 600px) {
  .check-area {
    font-size: 1.5rem;
  }
}

.check-area__list {
  margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {
  .check-area {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}

.check-area label {
  display: block;
  padding-right: 2em;
}

@media screen and (max-width: 1024px) {
  .check-area label {
    padding-right: 1em;
  }
}

@media screen and (max-width: 600px) {
  .check-area label {
    display: block;
    padding-right: 0;
  }
}

.radiobtn__txt {
  width: 100%;
  border: 1px solid #CCC;
  border-bottom: 0;
  background: #eee;
  text-align: center;
  padding: 1em;
  margin-top: 20px;
  font-size: 16px;
  font-weight: bold;
}

.radiobtn__box {
  border: 1px solid #CCC;
  padding: 8px 40px;
}

@media screen and (max-width: 1024px) {
  .radiobtn__box {
    padding: 8px 20px;
  }
}

@media screen and (max-width: 800px) {
  .radiobtn__box {
    padding: 8px;
  }
}


.form-area ul {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .form-area ul {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}


/* formstyle */

.mktoFormRow {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #ccc; */
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  /* margin: -1px 0 0 !important; */
  width: 100%;
}


@media screen and (max-width: 600px) {
  .mktoFormRow {
    border-bottom: 0;
    border-top: 0;
    flex-direction: column;
  }
}

/* フォーム列 */
.mktoForm .mktoFormCol {
  align-items: center;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  padding: 0;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

/* ###########################
    project ページごと変更部分
  ###########################*/
.mktoFormRow:nth-child(n+4):nth-child(-n+4) {
  flex-direction: column;
  /* background-color: red; */
}

#LblFormFirstName {
  border-top: 0px;
  border-bottom: 1px solid #CCC;
  border-left: 1px solid #CCC;
}

/* コンテンツ列 jsの幅打ち消し */
label.mktoLabel.mktoHasWidth {
  width: 180px !important;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  display: block;
  padding: 10px 30px 10px 10px;
  background: #eee;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  margin-top: -1px;
  align-items: center;
  font-weight: bold !important;
}


@media screen and (max-width: 800px) {
  label.mktoLabel.mktoHasWidth {
    width: 120px !important;
  }
}

.l-rightBox label.mktoLabel.mktoHasWidth {
  width: 140px !important;
}

.l-content--form__right label.mktoLabel.mktoHasWidth {
  width: 80px !important;
}

.l-content--form__right .mktoForm .mktoLabel {
  font-size: 1.4rem;
}

/* 幅打ち消し */
.mktoHtmlText.mktoHasWidth {
  width: 100% !important;
}

/* floatを打ち消してflexboxを使用 */
.mktoForm .mktoFieldWrap {
  float: none !important;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

/* floatを打ち消してflexboxを使用 */
.mktoForm .mktoLabel {
  float: none !important;
  line-height: normal !important;
  position: relative;
  font-size: 1.6rem;
  color: #333;
}

@media screen and (max-width: 600px) {
  label.mktoLabel.mktoHasWidth {
    width: 100% !important;
    box-sizing: border-box;
    display: block;
    border-right: none !important;
  }

  .l-rightBox label.mktoLabel.mktoHasWidth {
    width: 100% !important;
  }

  /* スマホサイズ二重をなくしてる */
  .mktoFieldWrap.mktoRequiredField {
    border-left: none;
  }

  .mktoForm .mktoFieldWrap {
    display: block !important;
    width: 100% !important;
  }

  .l-content--form__right label.mktoLabel.mktoHasWidth {
    width: 100% !important;
  }
}

/* *-必須マーク */
.mktoForm .mktoAsterix {
  color: #ff535b !important;
  padding-left: 5px;
  float: none !important;
  position: absolute;
  right: 10px;
}

@media screen and (max-width: 600px) {
  .mktoForm .mktoAsterix {
    position: relative;
    right: 0;
    float: right !important;
  }
}

/* ラベル */
/* no-use */
/* .p-input-wrap {
  margin-bottom: 0 !important;
  margin-left: 0;
  position: relative;
  overflow: hidden;
    padding: 0 !important;  
} */
/* no-use */
/* .l-content--form__right input[type="text"] {
  max-width: 300px;
} */
/* label[for=FirstName] {
  display: none !important;
} */

.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date] {
  font-size: 16px !important;
  padding: 5px 10px !important;
  border-radius: 5px;
  outline: none;
  border: 1px solid #cbcbcb;
  box-sizing: border-box !important;
}

input[type=text] {
  max-width: 500px;
  /* width: 100% !important; */
}

input#Email {
  margin: 12px;
  max-width: calc(100% - 210px);
  width: 100% !important;
}

#PMCF_QA03 {
  max-width: calc(100% - 210px);
  width: calc(100% - 20px) !important;
}

@media screen and (max-width: 800px) {
  input#Email {
    max-width: calc(100% - 149px);
  }

  #PMCF_QA03 {
    max-width: calc(100% - 149px);
  }
}

@media screen and (max-width: 600px) {
  input#Email {
    max-width: 100%;
  }

  #PMCF_QA03 {
    max-width: 100%;
    width: calc(100% - 24px) !important;
  }
}

input[type=hidden] {
  display: none !important;
}


input[type=checkbox] {
  display: none;
}

input[type=checkbox]+label:before {
  top: 14px;
  /* transform: translateY(25%); */
  width: 15px;
  height: 15px;
  content: "";
  display: block;
  position: absolute;
  transform: translateY(5%);
  left: 0;
  border: 1px solid #999;
  border-radius: 4px;
}

input[type=checkbox]+label {
  /* padding-left: 30px !important; */
  padding-left: 20px !important;
  line-height: 2.7rem !important;
  font-size: 0.9rem;
  position: relative;
  margin-right: 20px;
  font-size: 16px;
  display: inline-block;
}

input[type=checkbox]:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  /* left: 6px; */
  left: 3px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #666;
  border-right: 3px solid #666;
  top: 9px;
}

input[type=radio] {
  margin: auto 2px 2px auto;
}

input[type=radio]+label {
  /* padding-left: 10px; */
  padding-left: 3px;
  font-size: 16px;
  padding-bottom: 10px;
  margin-top: 10px;
}

input[type=radio]+label:before {
  transform: translateY(22%);
  width: 15px;
  height: 15px;
}

input[type=radio]:checked+label:after {
  left: 3px;
  width: 9px;
  height: 9px;
  transform: rotate(40deg);
  top: 6px;
}

.mktoRadioList {
  padding: 20px !important;
}

textarea {
  min-width: 400px;
  font-size: 16px !important;
  border-color: #ccc;
  font-size: 0.9rem;
}

select {
  font-size: 16px !important;
  padding: 5px 10px !important;
  border-radius: 5px;
  outline: none;
  border: 1px solid #cbcbcb;
  box-sizing: border-box !important;
}

.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date],
.mktoForm textarea.mktoField,
.mktoForm select.mktoField {
  margin: 12px !important;
}

.mktoForm .mktoRadioList>label,
.mktoForm .mktoCheckboxList>label {
  margin-left: 12px !important;
}

.mktoFormRow .mktoFormCol:nth-child(1) .mktoFieldWrap {
  width: 100%;
}

.mktoLogicalField.mktoCheckboxList {
  width: calc(100% - 190px);
  padding: 1rem 0;
}

@media screen and (max-width: 1024px) {
  .mktoForm .mktoFormCol {
    width: 100% !important;
  }

  .mktoForm .mktoFormRow:nth-child(n+7):nth-child(-n+7) .mktoFormCol {
    width: 50% !important;
    /* background-color: red; */
  }

  #FormLastName {
    max-width: 150px;
  }

  #FormFirstName {
    max-width: 150px;
  }

  /* input[type=text] {
    width: 90% !important;
  } */

  input#Email {
    margin: 10px;
  }

  .mktoForm textarea.mktoField {
    line-height: normal !important;
    height: auto !important;
    padding: 7px 10px !important;
    font: inherit !important;
  }

  .mktoForm input[type=url],
  .mktoForm input[type=text],
  .mktoForm input[type=date],
  .mktoForm input[type=tel],
  .mktoForm input[type=email],
  .mktoForm input[type=number],
  .mktoForm select.mktoField {
    line-height: normal !important;
    height: auto !important;
    padding: 7px 10px !important;
    font: inherit !important;
  }

  .mktoFormRow .mktoFormCol:nth-child(1) .mktoFieldWrap {
    border-left: none !important;
  }

  input[type=checkbox]+label {
    min-height: 30px;
    width: 100%;
  }

  .mktoLogicalField.mktoCheckboxList {
    padding: 1rem 0;
    width: 100%;
  }


}

@media screen and (max-width: 600px) {
  .mktoForm .mktoFormRow:nth-child(n+7):nth-child(-n+7) .mktoFormCol {
    width: 100% !important;
    /* background-color: red; */
  }

  #FormLastName {
    max-width: 100%;
  }

  #LblFormFirstName {
    border-top: 1px solid #CCC;
    border-bottom: 0;
    border-left: 0;
  }

  #FormFirstName {
    max-width: 100%;
  }

  #expTxt {
    width: 90%;
    margin: auto;
  }

  textarea {
    min-width: calc(100% - 44px);
  }

  /* input[type=text] {
    width: 90% !important;
  } */
  input#Email {
    margin: 10px;
    width: calc(100% - 24px) !important;
  }

  .mktoForm textarea.mktoField {
    line-height: normal !important;
    height: auto !important;
    width: calc(100% - 44px) !important;
    padding: 7px 10px !important;
    font: inherit !important;
  }

  .mktoForm input[type=url],
  .mktoForm input[type=text],
  .mktoForm input[type=date],
  .mktoForm input[type=tel],
  .mktoForm input[type=email],
  .mktoForm input[type=number],
  .mktoForm select.mktoField {
    line-height: normal !important;
    height: auto !important;
    width: calc(100% - 24px) !important;
    padding: 7px 10px !important;
    font: inherit !important;
  }

  .mktoFormRow .mktoFormCol:nth-child(1) .mktoFieldWrap {
    border-left: none !important;
  }

  input[type=checkbox]+label {
    min-height: 30px;
    width: calc(100% - 20px);
    font-size: 15px;
  }

  .mktoLogicalField.mktoCheckboxList {
    padding: 1rem 0;
    width: 100%;
  }
}

/* input */
.mktoGutter.mktoHasWidth,
.mktoOffset {
  display: none;
}

.mktoFieldWrap.mktoRequiredField {
  width: 100% !important;
}

/* 必須情報 */
.mktoForm .mktoButtonWrap.mktoRound .mktoButton {
  /* background: #00a7db !important;*/
  background: #ff0000 !important;
  color: #fff;
  min-width: 180px;
  padding: 15px !important;
  border-radius: 5px;
  border: none !important;
  /* border: 1px solid #df0522; */
  font-size: 16px !important;
  transition: all 0.3s;
}

.mktoForm .mktoButtonWrap.mktoRound .mktoButton:hover {
  /* background: #0084c8 !important; */
  background: #b30000 !important;
  transition: all 0.3s;
}

.mktoButtonRow {
  display: block !important;
  margin: auto !important;
  margin-top: 20px !important;
  width: 398px;
  text-align: center !important;
}

span.mktoButtonWrap.mktoRound {
  margin-left: 0 !important;
}

@media screen and (max-width: 600px) {
  .mktoForm .mktoButtonWrap.mktoRound .mktoButton {
    font-size: 13px !important;
    width: 100% !important;
  }

  .mktoButtonRow {
    width: 100%;
  }
}

/* ボタン関連 */
.txt-area__confirm {
  width: calc(100% + 1px);
  font-size: 12px;
  /* border-right: 1px solid #fff;
  border-bottom: 1px solid #fff; */
  /* margin-right: -1px !important;
  margin-bottom: -1px !important; */
  padding-top: 13px !important;
  padding-bottom: 13px !important;
  padding-left: 13px !important;
  padding-right: 13px !important;
  /* margin-left: -1px !important; */
}


.txt-area__mail {
  /* max-width: 480px; */
  width: 100% !important;
  font-size: 14px;
  padding-left: 188px !important;
  margin: 0 !important;
  position: relative;
  top: 0 !important;
}

.txt-area__mail::before {
  content: "";
  position: absolute;
  display: block;
  background: #eee;
  width: 100%;
  max-width: 179px;
  height: calc(100% + 2px);
  min-height: 2em;
  left: 0;
  top: -5px;
  /* border-bottom: 1px solid #ccc; */
  border-bottom: 1px solid #eee;
  border-right: 1px solid #CCC;
}

@media screen and (max-width: 800px) {
  .txt-area__mail {
    left: 0;
    top: 0;
    width: 100%;
    padding-left: 128px !important;
  }

  .txt-area__mail::before {
    max-width: 119px;
  }
}

.txt-area__exp {
  font-size: 14px;
  padding: 0% 5% 0% 5% !important;
  margin-top: 2rem !important;
  text-align: center !important;
}

#Email {
  margin-bottom: 60px !important;
}

@media screen and (max-width: 800px) {
  #Email {
    margin-bottom: 80px !important;
  }
}

@media screen and (max-width: 600px) {
  .txt-area__confirm {
    font-size: 12px;
    /* padding: 0% 5% 5% 5% !important; */
    padding: 5% 5% 5% 5% !important;
    /* border: none !important; */
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    margin: 0 !important;
    text-align: left;
    width: 100% !important;
  }

  .txt-area__mail::before {
    display: none;
  }

  #Email {
    margin-bottom: 0px !important;
  }

  .txt-area__mail {
    font-size: 12px !important;
    position: relative;
    left: 0px;
    top: 0px;
    padding: 0% 5% 5% 5% !important;
    -webkit-text-size-adjust: none;
  }

  .txt-area__exp {
    width: 100%;
    font-size: 12px !important;
    padding: 0% 5% 0% 5% !important;
    margin-top: 2rem !important;
    background: #fff;
    text-align: left !important;
    -webkit-text-size-adjust: none;
  }
}

.p-btn-top a {
  border-radius: 3px;
  text-align: center;
  background: #294d70;
  color: #fff;
  text-decoration: none;
  position: relative;
  width: 400px;
  margin: auto;
  display: block;
  padding: 9px 20px;
  border: 2px solid #294d70;
  transition: 0.3s;
}

.p-btn-top a:hover {
  background: #fff;
  color: #294d70;
}

@media screen and (min-width: 0px) and (max-device-width: 30em) {
  .p-thanks-txt {
    width: 100%;
  }

  .st-Title.c-txt-center {
    margin-top: 1.5rem;
  }
}

/* サンキュー画面関連 */
/* 1カラム用 */
@media screen and (min-width: 0px) and (max-device-width: 30em) {
  .l-rightBox .mktoForm {
    width: auto;
    width: 100% !important;
  }
}

/* 2カラム用 */
/* product */
@media screen and (max-width: 1024px) {
  .p-title-area {
    max-width: 800px;
  }
}

.p-wf-txt {
  font-size: 1.6rem;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

@media screen and (max-width: 1024px) and (orientation: portrait) {

  .mktoFieldWrap,
  .mktoFieldWrap .mktoHtmlText {
    width: calc(100% + 1px) !important;
  }

  .txt-area__confirm {
    /* width: calc(114% + 1px) !important; */
    width: 100%;
  }
}

/* footer */
/* 一番下の線をなくす */

.mktoForm .mktoButtonWrap.mktoThoughtbot .mktoButton {
  background-color: #ff535b !important;
  background-image: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
  border-radius: 50px !important;
  width: 100% !important;
  border: none !important;
}

span.mktoButtonWrap.mktoThoughtbot {
  margin-left: auto !important;
}

.mktoHtmlText .Note_TextArea_CompanyName {
  margin-left: auto !important;
}

@media screen and (max-width: 600px) {
  #FormCompanyName {
    width: calc(100% - 5%) !important;
  }

}

@media screen and (max-width: 600px) {

  .mktoForm input[type=text],
  .mktoForm input[type=url],
  .mktoForm input[type=email],
  .mktoForm input[type=tel],
  .mktoForm input[type=number],
  .mktoForm input[type=date],
  .mktoForm textarea.mktoField,
  .mktoForm select.mktoField {
    width: calc(100% - 24px) !important;
  }

}

.mktoFormRow:nth-child(18) {
  /* border: 0; */
border-top: 0;
border-bottom: 0;
}

.mktoFormRow:nth-child(19) {
border-top: 0;
}

.mktoFormRow:nth-last-of-type(-n+5) {
  border: 0;
  /* background: red; */
}

#LblQ63 {
  height: auto !important;
}

/* ###########################
    utility 
  ###########################*/

.br--sp {
  display: none;
}

@media screen and (max-width:1024px) {
  .br--sp {
    display: block;
  }
}

.mktoForm input[type=text], .mktoForm input[type=url], .mktoForm input[type=email], .mktoForm input[type=tel], .mktoForm input[type=number], .mktoForm input[type=date], .mktoForm select.mktoField, .mktoForm textarea.mktoField,
.mktoForm input[type=checkbox] + label:before, .mktoForm input[type=radio] + label:before,
.mktoForm .mktoButtonWrap.mktoInset .mktoButton {
box-shadow: none !important;
}

.mktoForm .mktoButtonWrap.mktoInset .mktoButton {
color: #fff !important;
border: 1px solid #75ae4c !important;
background-color: #99c47c !important;
background-image: -webkit-gradient(linear, left top, left bottom, from(#99c47c), to(#75ae4c)) !important;
background-image: -webkit-linear-gradient(top, #99c47c, #75ae4c) !important;
background-image: -moz-linear-gradient(top, #99c47c, #75ae4c) !important;
background-image: linear-gradient(to bottom, #99c47c, #75ae4c) !important;
}

.mktoForm input[type=checkbox] + label:before {
    margin-left: 0 !important;
}

.mktoForm input[type=checkbox]:checked + label:before {
    content: "" !important;
}

.mktoButtonWrap.mktoInset {
  margin-left: auto !important;
}

.mktoForm .mktoRadioList > label, .mktoForm .mktoCheckboxList > label {
  margin-top: 0 !important;
}

.mktoForm input[type=checkbox] + label:before, .mktoForm input[type=radio] + label:before {
    border: 1px solid #999 !important;
}

.mktoForm input.mktoField.mktoInvalid, .mktoForm textarea.mktoField.mktoInvalid, .mktoForm select.mktoField.mktoInvalid, .mktoForm .mktoLogicalField.mktoInvalid {
    border: 1px solid #aeb0b6 !important;
}

.mktoFormRow:nth-child(3) .mktoInvalid {
    border: 1px solid transparent !important;
}
.mktoFormRow:nth-child(21) .mktoInvalid {
    border: 1px solid transparent !important;
}

label.mktoLabel.mktoHasWidth {
  font-size: 1.2rem;
}


.cLogo {
    margin: unset !important;
    padding: unset !important;
}