@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
/*ヘッダー設定*/
/*pc基本設定*/
/*背景*/
/*ボーダー*/
/*ボタン*/
/*svg(#なしで記述)*/
/*aigis--*/
/*
---
name: アイコンフォント一覧
category:
  - iconfont
---

cssで直接追加する場合は  
```
content: $icon_アイコン名;  
@include iconFont();  
```

```html
<ul class="aigis-glyph js-aigis-hidden">
  <li>
    <div class="f-icon _arrow"></div>
    <div class="name">arrow</div>
    <div class="codepoint">EA01</div>
  </li>
  <li>
    <div class="f-icon _ex"></div>
    <div class="name">ex</div>
    <div class="codepoint">EA02</div>
  </li>
  <li>
    <div class="f-icon _beginner"></div>
    <div class="name">beginner</div>
    <div class="codepoint">EA03</div>
  </li>
  <li>
    <div class="f-icon _voice"></div>
    <div class="name">voice</div>
    <div class="codepoint">EA04</div>
  </li>
</ul>
```

```html 
<span class="f-icon _arrow" aria-hidden="true"></span>
<span class="f-icon _ex" aria-hidden="true"></span>
<span class="f-icon _beginner" aria-hidden="true"></span>
<span class="f-icon _voice" aria-hidden="true"></span>

``` 

*/
/*--aigis*/
@font-face {
  font-family: "icons";
  src: url("fonts/icons.eot");
  src: url("fonts/icons.eot?#iefix") format("eot"), url("fonts/icons.woff") format("woff"), url("fonts/icons.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.f-icon:before {
  display: inline-block;
  font-family: "icons";
  font-style: inherit;
  font-weight: inherit;
  font-variant: inherit;
  text-transform: none;
  vertical-align: middle;
  height: 1em;
  line-height: 1;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.f-icon._arrow:before {
  content: "\EA01";
}

.f-icon._ex:before {
  content: "\EA02";
}

.f-icon._beginner:before {
  content: "\EA03";
}

.f-icon._voice:before {
  content: "\EA04";
}

/* form */
/*基本設定*/
.form_area dl {
  display: flex;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  justify-content: space-between;
}

.form_area dl.noex {
  padding-top: 20px;
}

.form_area dl.last {
  margin-bottom: 40px;
}

.form_area dl dt {
  width: 200px;
}

.form_area dl dd {
  width: 700px;
}

.form_area .input-address01_wrapper {
  margin-top: 20px;
}

.form_area .input-address01_wrapper .post-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.form_area .input-address01_wrapper .post-wrap .post-search {
  font: 16px;
  font-weight: 700;
  color: #09727b;
  position: relative;
}

.form_area .input-address01_wrapper .post-wrap .post-search a {
  color: #09727b;
}

.form_area .input-address01_wrapper .post-wrap .post-search a::after {
  position: absolute;
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  top: 0;
  right: -20px;
}

.form_area .input-address02_wrapper {
  margin-top: 20px;
}

.form_area .input__post-wrapper input {
  margin-right: 20px;
}

.form_area .input__post-wrapper .button {
  max-width: 200px;
}

@media only screen and (max-width: 768px) {
  .form_area dl {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .form_area dl.noex {
    padding-top: 0;
  }
  .form_area dl dt, .form_area dl dd {
    width: 100%;
  }
  .form_area dl dt {
    margin-bottom: 10px;
  }
  .form_area .input__post-wrapper input {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .form_area .input__post-wrapper .button {
    max-width: 200px;
    margin-left: 0;
  }
}

.field_title {
  vertical-align: middle;
  line-height: 1.5;
  margin-top: -5px;
  font-weight: 700;
  color: #09727b;
  font-size: 18px;
}

.field_title .caption {
  padding-top: 10px;
  display: block;
  font-size: 12px;
  color: #2c2c2c;
  font-weight: 400;
  font-size: 15px;
}

.field_title .badge {
  display: inline-block;
  padding: 2px 4px;
  text-align: center;
  font-size: 10px;
  border-radius: 3px;
  margin-left: 5px;
}

.field_title .badge._required {
  font-weight: 700;
  line-height: 1.5;
  color: #ffffff;
  background-color: #05c1c6;
}

.field_title .badge._option {
  line-height: 18px;
  font-weight: 700;
  color: #05c1c6;
  border: 1px solid #05c1c6;
  background-color: #ffffff;
}

.form_area .input-top {
  display: block;
  height: 20px;
  font-size: 18px;
  font-weight: 700;
  color: #09727b;
  margin-bottom: 5px;
}

.form_area .input-top .example {
  font-size: 16px;
  color: #afafaf;
  font-weight: 400;
}

.form_area .input-top .label {
  font-size: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  color: #2c2c2c;
}

.form_area input[type="text"],
.form_area input[type="email"],
.form_area textarea {
  background: #f6f6f6;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  padding: 6px;
}

.form_area input[type="text"].short,
.form_area input[type="email"].short,
.form_area textarea.short {
  max-width: 300px;
  width: 100%;
}

.form_area textarea {
  resize: vertical;
  height: 310px;
  min-height: 180px;
  max-height: 600px;
}

.form_area .select_wrap {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border: none;
  background: #f6f6f6;
  border-radius: 5px;
  position: relative;
}

.form_area .select_wrap::before {
  content: "";
  position: absolute;
  background: #afafaf;
  height: calc(tan(60deg) * 14px / 2);
  width: 14px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 5;
  pointer-events: none;
}

.form_area .select_wrap.short {
  max-width: 300px;
  width: 100%;
}

.form_area select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.form_area select .icon {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid #8eb7b8;
  right: 10px;
  top: 27px;
}

.form_area .checkbox-field label input {
  display: none;
}

.form_area .checkbox-field label input:checked + .checkbox-field-text:after {
  display: block;
}

.form_area .checkbox-field label {
  display: inline-block;
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .form_area .checkbox-field label {
    display: block;
    margin-top: 20px;
  }
}

.form_area .checkbox-field label .checkbox-field-text {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}

.form_area .checkbox-field label .checkbox-field-text:before {
  content: "";
  position: absolute;
  transition: 0.3s;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #cecece;
  background-color: #fff;
}

.form_area .checkbox-field label .checkbox-field-text:after {
  content: "";
  position: absolute;
  transition: 0.3s;
  display: none;
  width: 20px;
  height: 10px;
  left: 0;
  top: 50%;
  margin-top: -8px;
  transform: scale(0.5) rotate(-45deg);
  border-bottom: 2px solid #09727b;
  border-left: 2px solid #09727b;
}

.form_area .checkbox_btn {
  display: flex;
  gap: 50px;
  align-items: center;
  font-weight: 500;
  flex-wrap: wrap;
  font-size: 18px;
}

.form_area .checkbox_btn .checkbox input {
  margin: 0 10px 2px 0;
}

@media only screen and (max-width: 768px) {
  .form_area .checkbox_btn {
    gap: 30px;
  }
}

.form_area .radio-field label input {
  display: none;
}

.form_area .radio-field label input:checked + .radio-field-text:after {
  display: block;
}

.form_area .radio-field label {
  display: inline-block;
  margin-right: 20px;
}

@media only screen and (max-width: 768px) {
  .form_area .radio-field label {
    display: block;
    margin-top: 20px;
  }
}

.form_area .radio-field label .radio-field-text {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
}

.form_area .radio-field label .radio-field-text:before {
  content: "";
  position: absolute;
  transition: 0.3s;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 20px;
  border: 1px solid #cecece;
  background-color: #fff;
}

.form_area .radio-field label .radio-field-text:after {
  content: "";
  position: absolute;
  transition: 0.3s;
  display: none;
  background: #09727b;
  width: 20px;
  height: 20px;
  left: 1px;
  top: 50%;
  margin-top: -10px;
  transform: scale(0.5);
}

.form_area .radio-field label .radio-field-text:before,
.form_area .radio-field label .radio-field-text:after {
  border-radius: 100px;
}

.form_area .radio_btn {
  display: flex;
  gap: 50px;
  align-items: center;
  font-weight: 500;
  flex-wrap: wrap;
  font-size: 18px;
}

.form_area .radio_btn .radio input {
  margin: 0 10px 2px 0;
}

@media only screen and (max-width: 768px) {
  .form_area .radio_btn {
    gap: 30px;
  }
}

.form_area .submit input,
.form_area .submit button {
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  font-size: 16px;
  border: 1px solid #cecece;
  border-radius: 5px;
  padding: 6px;
}

.form_area .submit input.short,
.form_area .submit button.short {
  max-width: 380px;
  width: 100%;
}

.form_area .submit,
.form_area .fix {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  .form_area .submit,
  .form_area .fix {
    flex-direction: column;
  }
}

.form_area .submit._arr {
  position: relative;
  width: 330px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.form_area .submit._arr .sbumit-btn {
  display: flex;
  align-items: center;
  padding-right: 100px;
  cursor: pointer;
  width: 100%;
  max-width: 330px;
  height: 70px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 600;
  color: #09727b;
  background: #ffffff;
  letter-spacing: 1px;
  border: none;
  transition: 0.5s;
  border: 2px solid #09727b;
}

.form_area .submit._arr::before {
  position: absolute;
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  color: #ffffff;
  background: #09727b;
  width: 22px;
  height: 25px;
  display: flex;
  justify-content: center;
  padding-left: 3px;
  align-items: center;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 35px;
  transition: 0.5s;
  z-index: 6;
}

.form_area .submit._arr:hover {
  opacity: 1 !important;
}

.form_area .submit._arr:hover .sbumit-btn {
  background-color: #09727b;
  color: #ffffff;
}

.form_area .submit._arr:hover::before {
  background: #ffffff;
  color: #09727b;
}

@media only screen and (max-width: 768px) {
  .form_area .submit._arr {
    width: 100%;
    max-width: 330px;
  }
  .form_area .submit._arr .sbumit-btn {
    padding-right: 20%;
  }
}

.form_area.confirm {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.form_area.confirm dl {
  padding-bottom: 40px;
  border-bottom: 1px solid #09727b;
}

.form_area.confirm dl dt {
  width: 33%;
  min-width: 200px;
}

.form_area.confirm dl dd {
  width: 67%;
}

.form_area.confirm dl dd span {
  display: block;
  background: #ffffff;
  width: 100%;
  word-break: break-all;
}

.form_area.confirm dl.last dd span {
  min-height: 180px;
}

.form_area.confirm .submit {
  gap: 40px;
}

.form_area.confirm .submit .submit_inner {
  background-color: #09727b;
  color: #ffffff;
  border-radius: 50px;
  border: 2px solid #09727b;
  font-weight: 500;
}

.form_area.confirm .submit .submit_inner:hover {
  background-color: #ffffff;
  color: #09727b;
  border: 2px solid #09727b;
  transition: 0.5s;
}

.form_area.confirm .back {
  background: #ffffff;
  color: #09727b;
  border-radius: 50px;
  border: 2px solid #09727b;
  font-weight: 500;
}

.form_area.confirm .back:hover {
  background-color: #09727b;
  color: #ffffff;
  transition: 0.5s;
}

.form_area input[type="text"].error-form,
.form_area input[type="email"].error-form,
.form_area textarea.error-form,
.form_area select.error-form {
  border-color: #D10000;
  background: #fff5f5;
}

.form_area .error {
  color: #D10000;
  padding-top: 5px;
  padding-left: 2px;
  font-size: 14px;
}

.clinicA .c_inner._dateil .c_txt p {
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 42px;
  padding: 40px 0;
  background: #f3f8fb;
  max-width: 640px;
}

/*完了ページ*/
.contact_thanks {
  text-align: center;
}

.contact_thanks_title {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 26px;
}

.contact_thanks_txt {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact_thanks_box {
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 40px 20px;
  background-color: #f3f8fb;
}

.contact_thanks_box .tel {
  font-size: 22px;
  letter-spacing: 0.2em;
  margin: 0 auto;
  margin-bottom: 15px;
}

.contact_thanks_box .tel svg {
  height: 22px;
  width: auto;
  vertical-align: -3px;
  fill: #09727b;
}

.contact_thanks_box .small {
  font-size: "Noto Sans JP", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
}

.entry {
  text-align: center;
}

.entry p {
  font-size: 16px;
  line-height: 32px;
}

.entry .btn_submit input {
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  height: 70px;
  width: 330px;
  text-align: center;
  border: 2px solid #09727b;
  color: #09727b;
  background: #ffffff;
}

.entry .btn_submit input:hover {
  background: #09727b;
  color: #ffffff;
  transition: 0.5s;
}

/*# sourceMappingURL=_maps/contact.css.map */

.recaptcha_policy {
  padding: 5px 0 !important;
  margin: 0 !important;
  text-align: center !important;
  font-size: 10px !important;
  color: #a1a0a0 !important;
}