@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";
}

.form_area .submit {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-left: 5px;
  padding-right: 5px;
  gap: 20px;
  margin-top: 80px;
}

@media only screen and (max-width: 768px) {
  .form_area .submit {
    padding: 0;
    margin-top: 40px;
    margin-bottom: 10px;
  }
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

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

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

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

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

.form_area .input__post-wrapper .button01 {
  display: inline-block;
  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;
}

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

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

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

.field_title .badge._option {
  line-height: 18px;
  color: #002060;
  border: 1px solid #002060;
  background-color: #ffffff;
}

.form_area .input-top {
  display: block;
  height: 20px;
}

.form_area .input-top .example {
  font-size: 12px;
  color: #777777;
}

.form_area .input-top .label {
  font-size: "Noto Sans JP", "メイリオ", 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: 60px;
  font-size: 16px;
  border: 1px solid #777777;
  padding: 6px;
}

.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: 60px;
  font-size: 16px;
  background-color: #ffffff;
  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: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-left: 2px solid #555555;
  border-bottom: 2px solid #555555;
  transform-origin: right bottom;
  transform: rotate(-45deg);
  right: 14px;
  bottom: 50%;
}

.form_area select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-left: 15px;
  border: 1px solid #777777;
}

.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 #777777;
  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 #002060;
  border-left: 2px solid #002060;
}

.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 #777777;
  background-color: #fff;
}

.form_area .radio-field label .radio-field-text:after {
  content: "";
  position: absolute;
  transition: 0.3s;
  display: none;
  background: #002060;
  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;
}

.contact_txt {
  margin-bottom: 60px;
}

.contact_txt .text_container {
  width: auto;
  max-width: 520px;
  padding: 20px;
  display: block;
  border: 1px solid #002060;
  border-radius: 10px;
  margin: 0 auto;
}

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

.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 .back {
  background-color: rgba(21, 162, 118, 0.1);
  color: #222222;
}

.form_area.confirm .submit .back:hover {
  background-color: #15a276;
  color: #ffffff;
}

.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;
  line-height: 1.3;
}

/*完了ページ*/
.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: #e6ebf5;
}

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

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

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