@charset "UTF-8";
/**
* Available vars:
* @var --viewport-from: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --viewport-to: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --font-size-from: <number> - Number in pixels without the unit. Required if `--font-size` and `--min-font-size` is not exist.
* @var --font-size-to: <number> - Number in pixels without the unit. Required if `--font-size` and `--max-font-size` is not exist.
* @var --max-font-size: <number> - Number in pixels without the unit. Optional.
* @var --min-font-size: <number> - Number in pixels without the unit. Optional.
* @var --viewport-unit-converter: 1vw | 1vh | 1vmin | 1vmax - Optional. Default: 1vw.
* @var --font-size: <length> | <percentage> | <absolute-size> | <relative-size> | Global values - Optional.
*/
*,
*::before,
*::after {
  --viewport-unit-converter: 1vw;
  --fz-from: var(--font-size-from, var(--min-font-size));
  --fz-to: var(--font-size-to, var(--max-font-size));
  --fz-slope: (var(--fz-to) - var(--fz-from)) / (var(--viewport-to) - var(--viewport-from)) * 100;
  --fz-intercept: (var(--viewport-to) * var(--fz-from) - var(--viewport-from) * var(--fz-to)) / (var(--viewport-to) - var(--viewport-from));
  --font-size: calc(var(--fz-slope) * var(--viewport-unit-converter) + var(--fz-intercept) * 1px);
  --min-fz-px: calc(var(--min-font-size) * 1px);
  --max-fz-px: calc(var(--max-font-size) * 1px);
  --clamp: clamp(var(--min-fz-px), var(--font-size), var(--max-fz-px));
  --max: var(--has-max, var(--min));
  --min: var(--has-min, var(--font-size));
  --has-max: min(var(--max-fz-px), var(--font-size));
  --has-min: max(var(--min-fz-px), var(--font-size));
  font-size: var(--clamp, var(--max));
}

/* -----------------------------------------------------------
  basic
----------------------------------------------------------- */
dl {
  margin-bottom: 0;
}

dd {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .align-items-start_md {
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
            align-items: flex-start !important;
  }
}
@media only screen and (max-width: 768px) {
  .align-items-center_xs {
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
            align-items: center !important;
  }
}
/* -----------------------------------------------------------
  sec-opn
----------------------------------------------------------- */
.sec-opn_bg {
  padding: 60px 0;
  background: url(../img/common/opn_bg.jpg) no-repeat center;
  background-size: cover;
}

.opn-ttl img {
  max-height: 55px;
}

.waiting-ttl {
  font-size: 2.1rem;
  font-weight: 600;
}

@media (min-width: 769px) {
  .sec-opn_bg {
    padding: 180px 0;
  }
}
@media only screen and (max-width: 768px) {
  .opn-ttl img {
    max-height: 35px;
  }
}
/* -----------------------------------------------------------
  sec01
----------------------------------------------------------- */
.sec01_bg {
  padding: 60px 20px;
  background: url(../img/top/sec04_bg.svg) no-repeat center;
  background-size: cover;
}

.form-ttl {
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
}

.sec-ttl img {
  display: inline-block;
}

.sec-cap {
  font-weight: 600;
  line-height: 2.1;
  text-indent: 1rem;
}

.form-width {
  width: 100%;
  padding: 5vw;
  background: #FFF;
}

.article-list {
  width: 100%;
}

.article-ttl {
  letter-spacing: 0.075rem;
  min-width: 30%;
  font-size: 0.95em;
  font-weight: 600;
  color: #656565;
}

.article-ttl div {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem;
}

.article-cap {
  line-height: 1.6;
  width: 100%;
  font-size: 0.9em;
}

.article-cap div {
  position: relative;
  width: 100%;
}

.form-container {
  padding: 4vw;
  background: #FFF;
}

.article-ttl {
  display: block;
}

.article-cap {
  width: 100%;
  display: block;
}

.num-between {
  padding: 0 1rem;
  height: 100%;
}

.phone-box {
  width: 100%;
  max-width: 80px;
  height: 100%;
}

.phone {
  padding: 0.5rem 1rem !important;
}

.graduate-year {
  max-width: 120px;
}

.graduate-month {
  width: 100%;
  max-width: 80px;
  position: relative;
}

.graduate-month::after {
  content: "";
  width: 7px;
  height: 7px;
  border: 0px;
  border-bottom: solid 2px #b4b3b3;
  border-right: solid 2px #b4b3b3;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}

@media only screen and (max-width: 1000px) {
  .article-ttl {
    min-width: 32%;
  }
}
@media (min-width: 769px) {
  .sec01_bg {
    padding: 80px 0;
  }
  .txt-width {
    width: 67%;
    margin: 0 auto;
  }
  .form-width {
    width: 80%;
    margin: 0 auto;
    padding: 3vw;
  }
}
@media only screen and (max-width: 768px) {
  .article-ttl {
    margin-right: 0px;
    margin-bottom: 0px;
  }
  .article-ttl div {
    padding: 1.2rem 0;
  }
}
/* -----------------------------------------------------------
  contact-form7
----------------------------------------------------------- */
.wpcf7-radio > .first {
  margin-left: 0 !important;
}

.wpcf7 span.wpcf7-not-valid-tip {
  font-size: 80%;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  background-color: #fff;
  color: #333;
  width: 100%;
  border-bottom: 1px solid #ccc;
  border-top: none;
  border-left: none;
  border-right: none;
  font-size: 100%;
  padding: 1.2rem;
}

.last {
  margin-left: 20px;
}

/*.wpcf7 input[type="radio"]{
  margin-left: 0.5rem;
}*/
.wpcf7 input[type=submit] {
  width: 40%;
  padding: 1.2em 0;
  letter-spacing: 0.1rem;
  position: relative;
  display: inline-block;
  background-color: #ca1315;
  font-weight: 700;
  color: #FFF;
  border: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 40px 1.5rem 0 1.5rem;
}

.wpcf7 input[type=submit]:hover {
  background-color: #252525;
  text-decoration: none;
  color: #FFF;
  border: none;
}

.wpcf7 input[type=confirm] {
  width: 40%;
  padding: 1.2em 6em;
  letter-spacing: 0.5rem;
  position: relative;
  display: inline-block;
  background-color: #005dad;
  color: #FFF;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 40px 1.5rem 0 1.5rem;
}

.wpcf7 input[type=confirm]:hover {
  background-color: #aaa;
  text-decoration: none;
  color: #FFF;
}

.wpcf7 input[type=button] {
  width: 40%;
  padding: 1.2em 6em;
  letter-spacing: 0.1rem;
  position: relative;
  display: inline-block;
  background-color: #ca1315;
  color: #FFF;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 40px 1.5rem 0 1.5rem;
  border: none;
}

.wpcf7 input[type=button]:hover {
  background-color: #252525;
  text-decoration: none;
  color: #FFF;
}

.wpcf7c-conf {
  background-color: transparent !important; /* 背景色 */
  color: black; /* 文字色 */
  border: none !important; /* 周りの線: 太さ　線種 線の色 */
}

.wpcf7-list-item-label {
  color: #222;
  vertical-align: -0.1em;
}

@media only screen and (max-width: 768px) {
  .wpcf7 input[type=submit] {
    width: 100%;
    margin-top: 30px;
  }
  span.wpcf7-list-item {
    width: 100%;
    margin: 0 !important;
  }
  /*  .wpcf7-list-item-label{
      font-size: .75rem;
    }*/
  .wpcf7-list-item-label {
    vertical-align: 0.2em;
  }
}
::-webkit-input-placeholder { /* WebKit browsers */
  color: #bbb !important;
  opacity: 1;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: #bbb !important;
  opacity: 1;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: #bbb !important;
  opacity: 1;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
  color: #bbb !important;
  opacity: 1;
}

/* -----------------------------------------------------------
  contact-form7_design
----------------------------------------------------------- */
/*.wpcf7 textarea[name="baru-option"]{
  width: 100%;
  height: 100px !important;
}
.wpcf7 textarea[name="store-option"]{
  width: 100%;
  height: 100px !important;
}
.wpcf7 textarea[name="menu-point"]{
  width: 100%;
  height: 150px !important;
}*/
textarea::-webkit-input-placeholder::after {
  display: block;
  content: "Second line \aThird line";
}

/*outline-blue-none*/
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea {
  width: 100% !important;
  background: #EEE;
  border: none;
  outline: none;
}

.d-none {
  display: none;
}

.url:before {
  display: none;
}

select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 1rem;
  border-radius: 0;
  border: none;
  outline: none;
  background: #EEE;
}

select::first_as_label {
  color: #bbb !important;
  opacity: 1;
}

.txtarea-height {
  max-height: 80px;
}

.th-txt {
  line-height: 1.8;
}

.th-txt span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.form-txt {
  margin-left: 10px;
}

.asterisk {
  margin: 0 0 0 10px;
  padding: 2px 5px;
  color: #FFF;
  font-size: 10px;
  font-weight: 700;
  background-color: #CA1315;
  border-radius: 10px;
}

.alert {
  color: #c0392b;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
  margin-top: 30px;
}

.button-box {
  text-align: center;
}

.camera-cat {
  min-width: 120px;
  padding-right: 1rem;
}

.eng-num {
  padding-left: 1rem;
}

@media only screen and (max-width: 768px) {
  div.wpcf7 .ajax-loader {
    display: none !important;
  }
}/*# sourceMappingURL=coverage.css.map */