@charset "UTF-8";
/* CSS Document */
/* CSS Document */
/*---------------------
カラム幅設定
----------------------*/
/*---------------------
カラー設定
----------------------*/
/*---------------------
ベンダープレフィックス初期設定
----------------------*/
/*---------------------
透明度　初期設定
----------------------*/
/*---------------------
フォントサイズ初期設定
----------------------*/
/*---------------------
フォントファミリー初期設定
----------------------*/
/*----------------
Retina,高解像度 対策
-----------------*/
/*---------------------
角丸　初期設定
----------------------*/
/*
.box {
     @include circle(100px);
     background: #fc0;
}
*/
/*---------------------
ボックスシャドウ　mixin
----------------------*/
/*
div { @include box-shadow(8px, 8px);}
*/
/*---------------------
グラデーション　mixin
----------------------*/
/* 使用例
 div { @include gradient(#ff00ff, #ff00cc, vertical);}
*/
/*---------------------
デュレーション　mixin
----------------------*/
/*
.move{
    @include transition(0.5s);
}
*/
/*---------------------
キーフレーム　mixin
----------------------*/
@keyframes $animation-name {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes $animation-name {
  0% {
    color: #fff;
  }
  100% {
    color: #007235;
  }
}
/*---------------------
カラムグリッド mixin
----------------------*/
/*---------------------
カラムグリッド mixin
----------------------*/
/*　使用例 
div { @include ghost-button(“Trebuchet”, 12px, #ffffff, 5px, #34dec6, 4px, 300ms, #000000 );}
*/
/*---------------------
リンクカラー初期設定
----------------------*/
/*---------------------
汎用BOX用　マージンMIXIN リセット
----------------------*/
.m_0 {
  margin: 0 !important;
}

.p_0 {
  padding: 0 !important;
}

/*---------------------
contact
----------------------*/
.contact-form-wrap {
  position: relative;
  width: 100%;
  max-width: 1440px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 0 auto;
}

@media screen and (max-width: 979px) {
  .contact-form-wrap {
    padding: 0;
  }
}
.contactFormWrap {
  position: relative;
  width: 75%;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  margin-bottom: 30px;
  box-sizing: border-box;
}

@media screen and (max-width: 1279px) {
  .contactFormWrap {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 767px) {
  .contactFormWrap {
    width: 100%;
  }
}
.contact-form-head {
  position: relative;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
  box-sizing: border-box;
}
.contact-form-head .flow {
  position: relative;
  width: 33.333%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
}
.contact-form-head .flow img {
  display: block;
  margin: 10px;
  margin-left: auto;
  margin-right: auto;
  width: calc(100% - 20px);
  max-width: 60px;
}
.contact-form-head .txt {
  font-size: 2rem;
  text-align: center;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.contact-form-head::after {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #007235;
  z-index: 1;
}

@media screen and (max-width: 979px) {
  .contact-form-head .flow {
    width: 33.333%;
    padding: 10px;
  }
  .contact-form-head .flow img {
    display: block;
    margin: 10px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 50px;
  }
  .contact-form-head .txt {
    font-size: 1.6rem;
  }
  .contact-form-head::after {
    top: 45px;
  }
}
@media screen and (max-width: 480px) {
  .contact-form-head .flow {
    width: 33.333%;
    padding: 5px;
  }
  .contact-form-head .flow img {
    display: block;
    margin: 5px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 45px;
  }
  .contact-form-head .txt {
    font-size: 1.5rem;
  }
  .contact-form-head::after {
    top: 35px;
  }
}
.p-privacy {
  margin-top: 20px;
  text-align: center;
  font-size: 1.4rem;
}
.p-privacy a {
  color: #000;
  text-decoration: underline;
}
.p-privacy a:hover {
  color: #888;
  text-decoration: none;
}

.Form {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1200px;
}

@media screen and (max-width: 480px) {
  .Form {
    margin-top: 10px;
  }
}
.Form-Item {
  position: relative;
  border-top: 1px solid #e8e8e8;
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.Form-Item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 350px;
  height: 1px;
  background: #007235;
}

.Form-Item:first-child {
  border-top: 0;
}

.form-type1 .Form-Item:nth-child(12)::after {
  background: none;
  height: 0;
}

.form-type3 .Form-Item:nth-child(8)::after {
  background: none;
  height: 0;
}

@media screen and (max-width: 979px) {
  .Form-Item {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 979px) {
  .Form-Item::after {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.Form-Item-Label {
  position: relative;
  width: 100%;
  max-width: 350px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #000;
}

@media screen and (max-width: 979px) {
  .Form-Item-Label {
    display: block;
    max-width: inherit;
    font-size: 1.5rem;
    padding: 10px 0;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  padding-bottom: 2px;
  width: 48px;
  display: inline-block;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  border: 1px solid #007235;
  color: #007235;
  font-size: 12px;
}

@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 1px;
    padding-top: 3px;
    padding-bottom: 3px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Input-Wrap {
  flex: 1;
  width: 100%;
  max-width: 600px;
}

.Form-Input-Wrap2 {
  flex: 1;
  width: 100%;
  max-width: 700px;
}

@media screen and (max-width: 979px) {
  .Form-Input-Wrap {
    display: block;
    width: 100%;
    max-width: 900px;
    padding: 10px 0;
  }
  .Form-Input-Wrap2 {
    display: block;
    width: 100%;
    max-width: 900px;
    padding: 10px 0;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  height: 48px;
  background: #fafafa;
  font-size: 1.6rem;
}

.Form-Item-Input:focus {
  outline: solid 2px #349f2d;
  transition: all 0.3s ease-out;
}

.Form-Item-Input-short {
  border: 1px solid #ddd;
  margin-left: 10px;
  padding-left: 1em;
  padding-right: 1em;
  width: 80px;
  height: 38px;
  background: #fafafa;
  font-size: 1.6rem;
}

.Form-Item-Input-short:focus {
  outline: solid 2px #349f2d;
  transition: all 0.3s ease-out;
}

.areaBottomBorder {
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}

@media screen and (max-width: 1200px) {
  span.inputAreaWrap {
    display: block;
    margin-top: 5px;
    margin-left: -10px;
  }
}
@media screen and (max-width: 480px) {
  span.inputAreaWrap {
    display: block;
    margin-top: 10px;
    margin-left: -10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #e8e8e8;
  }
}
.Form-Item-Input-area {
  border: 1px solid #ddd;
  margin-left: 10px;
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: 100px;
  height: 38px;
  background: #fafafa;
  font-size: 1.6rem;
  text-align: center;
}

.Form-Item-Input-area:focus {
  outline: solid 2px #349f2d;
  transition: all 0.3s ease-out;
}

@media screen and (max-width: 979px) {
  .Form-Item-Input {
    margin: 0 auto;
    width: 100%;
  }
  .Form-Item-Input-short {
    margin: 0 auto;
  }
  .Form-Item-Input-area {
    margin: 0 auto;
    margin-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .Form-Item-Input-area {
    margin-left: 10px;
    margin-top: 0;
    margin-bottom: 10px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Item-Input-short {
    margin-left: 0;
    margin-top: 0;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
  .Form-Item-Input-area {
    margin-left: 10px;
    margin-top: 0;
    margin-bottom: 10px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  background: #fafafa;
  font-size: 18px;
}

.Form-Item-Textarea:focus {
  outline: solid 2px #349f2d;
  transition: all 0.3s ease-out;
}

@media screen and (max-width: 979px) {
  .Form-Item-Textarea {
    margin-left: 0;
  }
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.formSelect {
  background: #fafafa;
  border: 1px solid #ddd;
  height: 40px;
  width: 300px;
  position: relative;
  z-index: 1;
  margin-left: 40px;
  font-size: 1.6rem;
}

@media screen and (max-width: 979px) {
  .formSelect {
    margin-left: 0;
  }
}
.formSelect::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-bottom: 2px solid #888;
  border-right: 2px solid #888;
  z-index: -1;
}

.formSelect select {
  /* 初期化 */
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  color: #333;
  font-size: 16px;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}

.formSelect select:focus {
  outline: solid 2px #349f2d;
  transition: all 0.2s linear;
}

.btnFormWrap {
  width: 100%;
  margin: 0 auto;
  margin: 40px 0;
  text-align: center;
}

.Form-Btn {
  position: relative;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 2em;
  width: 100%;
  max-width: 300px;
  display: block;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  background: #007235;
  border: 1px solid #007235;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  transition: all 0.5s ease;
}

.Form-Btn:hover {
  background: #fff;
  color: #007235;
  border: 1px solid #007235;
}

@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 15px;
    padding-bottom: 15px;
    width: 200px;
    font-size: 16px;
  }
}
.Form-Btn2 {
  position: relative;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 2em;
  width: 100%;
  min-width: 300px;
  max-width: 300px;
  display: block;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  background: #555;
  border: 1px solid #555;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  transition: all 0.5s ease;
}

.Form-Btn2:hover {
  background: #000;
  color: #fff;
}

@media screen and (max-width: 480px) {
  .Form-Btn2 {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.form-btn-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
  box-sizing: border-box;
}
.form-btn-wrap .forn-btn-back {
  width: 50%;
}
.form-btn-wrap .form-btn-ok {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .form-btn-wrap {
    display: block;
  }
  .form-btn-wrap .forn-btn-back {
    width: 100%;
  }
  .form-btn-wrap .form-btn-ok {
    width: 100%;
  }
}
.submitBtn1 {
  border: none;
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display: inline-block;
  border: 1px solid #000;
  box-sizing: border-box;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  transition: ease 0.2s;
  font-weight: 500;
  font-size: 2.2rem;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
}
.submitBtn1 input[type=submit] {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #000;
}
.submitBtn1 input[type=submit]:hover {
  color: #fff;
}

.check-txt {
  display: block;
  font-size: 1.6rem;
  margin: 0 25px;
  box-sizing: border-box;
}

.Form-Btn-Still {
  pointer-events: none;
  background: #ccc;
  border-color: #ccc;
}

.agree-check {
  text-align: center;
  padding: 12px 20px;
  margin-top: 15px;
  background-color: #f5f5f5;
  position: relative;
}

.agree-check span {
  font-weight: bold;
  padding-left: 10px;
}

.agree-check input {
  position: relative;
  margin: 0;
}

.txt-confirm {
  font-size: 1.6rem;
}

.txt-confirm-area {
  font-size: 1.6rem;
}

.error-msg {
  margin-top: 3px;
  font-size: 1.2rem;
  color: #ff0000;
}

@media screen and (max-width: 480px) {
  .error-msg {
    display: block;
    width: 100%;
    margin-top: 5px;
    font-size: 1.2rem;
    color: #ff0000;
  }
}
.p-contact-end {
  margin-top: 60px;
  margin-bottom: 40px;
  text-align: center;
  font-size: 1.6rem;
}

.contact-tel-wrap {
  padding: 10px;
}

.contact-tel {
  border: 4px solid #dcdcdc;
  max-width: 720px;
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
}
.contact-tel .contact-tel-inner {
  border: 1px solid #6388b5;
  background: rgba(255, 250, 250, 0.3);
  padding: 20px;
}
.contact-tel .tel-title {
  font-size: 1.6rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.contact-tel .tel-number {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4rem;
}
.contact-tel .tel-number span {
  font-size: 1.9rem;
  color: #154888;
}

.form-btn-wrap {
  position: relative;
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
  box-sizing: border-box;
}
.form-btn-wrap .forn-btn-back {
  width: 50%;
}
.form-btn-wrap .form-btn-ok {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .form-btn-wrap {
    display: block;
  }
  .form-btn-wrap .forn-btn-back {
    width: 100%;
  }
  .form-btn-wrap .form-btn-ok {
    width: 100%;
  }
}
.form-noticetxt {
  display: block;
  margin-left: 40px;
}
.form-noticetxt span {
  color: #007235;
}

.form-noticeboxtxt {
  width: 100%;
  margin: 0 auto;
  margin-left: 40px;
  margin-top: 15px;
  border: 1px solid #bed8bd;
  background: #f1faf0;
  padding: 15px;
  font-size: 1.5rem;
  color: #007235;
}

.form-check-wrap {
  vertical-align: middle;
  margin-left: 40px;
  margin-top: 15px;
  margin-bottom: 10px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: "Noto Sans JP", sans-serif;
}
.form-check-wrap label {
  font-size: 1.6rem;
}

@media screen and (max-width: 979px) {
  .form-noticetxt {
    margin-left: 0;
  }
  .form-noticeboxtxt {
    margin-left: 0;
  }
  .form-check-wrap {
    margin-left: 0;
  }
}
.add-license {
  margin-left: 40px;
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.6rem;
}
.add-license span {
  color: #007235;
  margin-right: 0.2em;
}

input.form-check[type=checkbox] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #007235;
  vertical-align: -3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s linear;
}

input.form-check[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 5px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
  z-index: 2;
  transition: all 0.3s linear;
}

input.form-check[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #007235;
  z-index: 1;
  transition: all 0.3s linear;
}

.formTypeLink {
  position: relative;
  width: 100%;
  max-width: 901px;
  margin: 0 auto;
  margin-bottom: 40px;
  border: 2px solid #007235;
}
.formTypeLink ul {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  box-sizing: border-box;
}
.formTypeLink li {
  width: 33.3333333333%;
  border-right: 2px solid #007235;
  box-sizing: border-box;
}
.formTypeLink li a {
  position: relative;
  display: block;
  padding: 15px 15px 18px 15px;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #007235;
  text-align: center;
  text-decoration: none;
}
.formTypeLink li a.selected {
  background: #007235;
  color: #fff;
  pointer-events: none;
}
.formTypeLink li a::after {
  /* 擬似要素で矢印アイコンをつくる */
  content: "";
  border: 0;
  border-top: solid 2px #007235;
  border-right: solid 2px #007235;
  display: inline-block;
  width: 10px;
  height: 10px;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}
.formTypeLink li a:hover {
  background-color: #d9eed8;
  transition: all 0.2s linear;
}
.formTypeLink li:last-child {
  border-right: none;
}

@media only screen and (max-width: 979px) {
  .formTypeLink {
    margin-bottom: 90px;
  }
  .formTypeLink ul {
    display: block;
    position: relative;
  }
  .formTypeLink li {
    width: 100%;
  }
  .formTypeLink li a {
    display: block;
    padding: 20px;
    font-size: 2rem;
    text-align: left;
  }
  .formTypeLink li:nth-child(1),
  .formTypeLink li:nth-child(2),
  .formTypeLink li:nth-child(3) {
    border-right: none;
  }
  .formTypeLink li:nth-child(2) {
    border-bottom: 2px solid #007235;
  }
}
@media only screen and (max-width: 767px) {
  .formTypeLink {
    margin-bottom: 50px;
  }
  .formTypeLink li a {
    padding: 20px;
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 480px) {
  .formTypeLink li a {
    padding: 10px;
    font-size: 1.6rem;
    text-align: left;
  }
}
.contact-notice {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.contact-notice p {
  display: block;
  background: #e3eae6;
  padding: 10px;
  border: 1px solid #a3c4b2;
  font-size: 1.6rem;
  text-align: center;
}/*# sourceMappingURL=contact.css.map */