@charset "UTF-8";
/*ヘッダー設定*/
/*pc基本設定*/
/*sp基本設定*/
/*背景*/
/*ボーダー*/
/*ボタン*/
/*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";
}

/*テキストエリア*/
.contact .c_inner {
  width: 1040px;
}

@media only screen and (max-width: 768px) {
  .contact .c_inner {
    width: 100%;
  }
}

.contact h3 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 10px 0 25px;
  margin-bottom: 40px;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .contact h3 {
    margin-bottom: 20px;
    font-size: 22px;
  }
}

.contact h3:after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 2px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background: #ffffff;
}

.contact .text_container {
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  background: #f8f8f8;
  border-radius: 10px;
}

.contact .text_container p {
  font-size: 18px;
  letter-spacing: 0.1em;
  text-align: left;
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .contact .text_container p {
    margin-bottom: 30px;
  }
}

.contact .text_container .tel_box {
  width: 100%;
  padding: 30px 0;
  display: flex;
  align-items: center;
}

.contact .text_container .tel_box p {
  margin: 0;
  line-height: 2;
}

.contact .text_container .tel_box p span.tel {
  font-size: 50px;
  font-family: "Manrope", sans-serif;
  line-height: 1;
  padding-left: 50px;
  padding-right: 50px;
  margin-right: 50px;
  position: relative;
  border-right: 1px solid #222222;
  white-space: nowrap;
}

.contact .text_container .tel_box p span.tel:after {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #0636BA;
}

.contact .text_container .tel_box p span.day {
  padding-left: 25px;
}

@media only screen and (max-width: 768px) {
  .contact .text_container .tel_box p span.day {
    padding-left: 0;
  }
}

@media only screen and (max-width: 768px) {
  .contact .text_container {
    width: 100%;
  }
  .contact .text_container .tel_box {
    flex-direction: column;
    padding: 0;
    gap: 5px;
  }
  .contact .text_container .tel_box p span.tel {
    font-size: 26px;
    font-weight: bold;
    margin: 0;
    padding-left: 30px;
    padding-right: 0;
    border-right: none;
  }
  .contact .text_container .tel_box p span.tel:after {
    font-size: 24px;
  }
}

/* form */
/*基本設定*/
.contact {
  padding-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  .contact {
    padding-bottom: 100px;
  }
}

.contact .form_area {
  background-color: #ffffff;
  padding: 60px;
  border-radius: 20px;
}

@media only screen and (max-width: 768px) {
  .contact .form_area {
    padding: 20px;
  }
}

.contact .form_area .submit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 60px;
}

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

.contact .form_area .submit .button01 {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 60px;
  font-size: 16px;
  line-height: 56px;
  text-align: left;
  transition: 0.5s;
  background-color: #222222;
  border: 2px solid #222222;
  position: relative;
  border-radius: 30px;
  padding-left: 30px;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  transition: 0.5s;
  letter-spacing: 0.12em;
}

.contact .form_area .submit .button01:hover {
  cursor: pointer;
  color: #ffffff;
  background-color: #ffffff;
  opacity: 1 !important;
  color: #222222;
}

.contact .form_area .submit .button01._center {
  display: block;
  margin: 0 auto;
}

.contact .form_area .submit .button01._wide {
  max-width: none;
}

.contact .form_area .submit .button01._small {
  height: 40px;
  font-size: 12px;
  line-height: 40px;
  max-width: 160px;
}

@media only screen and (max-width: 768px) {
  .contact .form_area .submit .button01 {
    display: block;
    margin: 0 auto;
  }
}

.contact .form_area .submit._arr {
  position: relative;
  width: 280px;
  margin: 0 auto;
}

.contact .form_area .submit._arr:before, .contact .form_area .submit._arr:after {
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  pointer-events: none;
}

.contact .form_area .submit._arr:before {
  width: 15px;
  height: 2px;
  background-color: #ffffff;
  z-index: 1;
}

.contact .form_area .submit._arr:after {
  right: 21px;
  width: 10px;
  height: 10px;
  margin-top: -6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  display: inline-block;
  vertical-align: middle;
}

.contact .form_area .submit._arr:hover:before, .contact .form_area .submit._arr:hover:after {
  color: #ffffff;
}

.contact .form_area .submit._arr:before {
  background-color: #ffffff;
}

.contact .form_area .submit._arr:hover:before {
  background-color: #222222;
}

.contact .form_area .submit._arr:hover::after {
  border-top: 2px solid #222222;
  border-right: 2px solid #222222;
}

.contact .form_area .submit .button_form {
  width: 100%;
  max-width: 280px;
  height: 60px;
  border-radius: 30px;
  border: none;
  color: #0636BA;
  font-size: 16px;
  font-weight: bold;
  line-height: 54px;
  letter-spacing: 0.1em;
  transition: 0.5s;
}

.contact .form_area .submit .button_form:hover {
  cursor: pointer;
  color: #ffffff;
  opacity: 1 !important;
}

.contact .form_area .submit .button_form:hover span {
  color: #ffffff;
}

.contact._conf .text_container {
  background: none;
  padding: 0;
}

.contact._conf .text_container p._textcenter {
  text-align: center;
}

@media only screen and (max-width: 768px) {
  .contact._conf .text_container p._textcenter {
    text-align: left;
  }
}

.contact .h2_title01 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 768px) {
  .contact .h2_title01 .main {
    line-height: 1.4;
  }
}

.form_area dl {
  display: flex;
  width: 100%;
  height: auto;
  margin-bottom: 42px;
}

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

@media only screen and (max-width: 768px) {
  .form_area dl.last {
    margin-bottom: 30px;
  }
}

.form_area dl dt {
  width: 285px;
}

.form_area dl dd {
  width: 600px;
}

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

.form_area .input__post-wrapper.short {
  max-width: 380px;
}

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

.form_area .input__post-wrapper .button01 {
  display: inline-block;
  max-width: 200px;
  border-radius: 0;
  border: 1px solid #ffffff;
  position: relative;
}

.form_area .input__post-wrapper span {
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-left: -2em;
  color: #ffffff;
}

.form_area .input__post-wrapper span:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  font-size: 14px;
  line-height: 1.6;
  position: absolute;
  right: 33px;
  top: 10px;
}

@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;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #222222;
}

.field_title .caption {
  font-size: 12px;
  font-weight: normal;
}

.field_title .badge {
  display: inline-block;
  width: 36px;
  height: 20px;
  text-align: center;
  font-size: 12px;
  border-radius: 4px;
  margin-right: 5px;
}

.field_title .badge._required {
  line-height: 20px;
  color: #ffffff;
  background-color: red;
}

.field_title .badge._option {
  line-height: 18px;
  color: #ffffff;
  background-color: #222222;
}

.form_area .input-top {
  display: block;
  line-height: 20px;
  color: #222222;
}

.form_area .input-top .example {
  display: block;
  font-size: 12px;
  color: #777777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}

.form_area .input-top .label {
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  color: #222222;
}

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

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

@media only screen and (max-width: 768px) {
  .form_area input[type="text"].short,
  .form_area input[type="email"].short,
  .form_area textarea.short {
    max-width: none;
  }
}

.form_area textarea {
  resize: none;
  height: 240px;
  min-height: 180px;
}

.form_area .select_wrap {
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  font-size: 16px;
  position: relative;
}

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

@media only screen and (max-width: 768px) {
  .form_area .select_wrap.short {
    max-width: none;
  }
}

.form_area .select_wrap:after {
  content: "";
  height: 1em;
  line-height: 1;
  font-family: 'FontAwesome';
  vertical-align: middle;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #222222;
  z-index: 1;
  pointer-events: none;
}

.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;
  border: 1px solid #777777;
  background: #ffffff;
  border-radius: 5px;
  cursor: pointer;
  /*セレクトボックス矢印 疑似要素に変更*/
}

.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: 55px;
}

@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;
  font-size: 14px;
  letter-spacing: 0.1em;
  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 #0636BA;
  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: 4px solid #0636BA;
  border-left: 4px solid #0636BA;
}

.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: 35px;
}

@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;
  font-size: 14px;
  letter-spacing: 0.1em;
  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 #0636BA;
  background-color: #fff;
}

.form_area .radio-field label .radio-field-text:after {
  content: "";
  position: absolute;
  transition: 0.3s;
  display: none;
  background: #0636BA;
  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.confirm {
  width: 100%;
  margin: 0 auto;
  background: none;
}

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

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

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

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

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

.form_area.confirm .submit .back {
  background-color: #00af2c;
  color: #ffffff;
  text-align: center;
  padding: 0;
}

.form_area.confirm .submit .back:hover {
  background-color: rgba(46, 150, 72, 0.1);
  color: #222222;
}

.form_area.confirm .submit .prev {
  text-align: center;
  padding: 0;
}

@media only screen and (max-width: 768px) {
  .form_area.confirm.confirm dl {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .form_area.confirm.confirm dl dt {
    margin-bottom: 20px;
  }
}

.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: 3px;
  padding-left: 2px;
  font-size: 14px;
}

/*完了ページ*/
.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: rgba(46, 150, 72, 0.1);
}

.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: #dddddd;
}

.contact_thanks_box .small {
  font-size: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
}

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