/* --------------------
 contents
-------------------- */
.con-sec {
  padding: 0 3rem 8rem;
}
.con-sec__items {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 98rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1rem;
}
.con-sec__items__item {
  width: calc((100% - 2rem) / 3);
  margin: 0;
  padding: 0.6rem;
  border: 1px #cbcbcb solid;
  height: 12rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 2rem;
  line-height: 1.5;
  color: #000;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .con-sec__items__item {
    font-size: 1.4rem;
    height: 10rem;
  }
}
.con-sec__items__item:hover {
  color: #fff;
  background-color: #58c6be;
}
@media screen and (max-width: 768px) {
  .con-sec__items__item:hover {
    color: #000;
    background-color: #fff;
  }
}

.con-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 2rem;
}
.con-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.con-modal-content {
  width: 100%;
  max-width: 59rem;
  position: relative;
}
.con-modal-content__inner {
  padding: 7.8rem 3rem 9rem;
  width: 100%;
  max-height: 70vh;
  background-color: #fff;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .con-modal-content__inner {
    padding: 6rem 2rem;
  }
}
.con-modal-content__ttl {
  margin-bottom: 1.4rem;
  font-size: 2.8rem;
  line-height: 1.4;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .con-modal-content__ttl {
    font-size: 2.2rem;
  }
}
.con-modal-content__txt {
  font-size: 1.6rem;
  line-height: 2;
  color: #000;
  text-align: center;
}
.con-modal-content__btn {
  margin-bottom: 2.2rem;
}
.con-modal-content__btn:last-child {
  margin-bottom: 0;
}
.con-modal-content__btn a {
  margin: 0 auto;
  padding: 0 2.4rem;
  max-width: 42.4rem;
  height: 8.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #01b901;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 2.2rem;
  line-height: 1.2;
  gap: 0 3.2rem;
}
@media screen and (max-width: 768px) {
  .con-modal-content__btn a {
    gap: 0 2rem;
    height: 6rem;
    font-size: 1.8rem;
  }
}
.con-modal-content__btn a::before {
  content: "";
  width: 4.1rem;
  aspect-ratio: 41/39;
  background: url("../img/icon-line.png") no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .con-modal-content__btn a::before {
    width: 3.4rem;
  }
}
.con-modal-content__btn a:hover {
  color: #fff;
  opacity: 0.8;
}
.con-modal-content__btn2 {
  margin: 0 auto 2.2rem;
  max-width: 42.4rem;
}
.con-modal-content__btn2:last-child {
  margin: 0 auto;
}
.con-modal-content__btn2 .txt {
  margin-bottom: 0.6rem;
  display: block;
  font-size: 2rem;
  line-height: 1.4;
}
.con-modal-content__btn2 a {
  margin: 0 auto;
  padding: 0 2.8rem;
  max-width: 42.4rem;
  height: 6.8rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #0a244a;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 2.8rem;
  line-height: 1.2;
  gap: 0 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .con-modal-content__btn2 a {
    height: 6rem;
    font-size: 1.8rem;
  }
}
.con-modal-content__btn2 a::before {
  content: "";
  width: 2.1rem;
  aspect-ratio: 1/1;
  background: url("../img/icon-btn-tel.png") no-repeat center center/contain;
}
.con-modal-content__btn2 a:hover {
  color: #fff;
  opacity: 0.8;
}
.con-modal-content__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  border: none;
  position: absolute;
  bottom: calc(100% + 1rem);
  right: 0.2rem;
  background-color: transparent;
  cursor: pointer;
}

.form-box {
  padding: 0 30px 70px;
}
.form-box .container-box {
  margin: 0 auto;
  max-width: 990px;
}
.form-box .container-box .box-1 {
  margin-bottom: 48px;
  display: table;
  width: 100%;
}
.form-box .container-box .box-1 .item {
  display: table-cell;
  width: 50%;
}
.form-box .container-box .box-1 .item:first-child {
  padding-right: 62px;
  border-right: 1px #e5e5e5 solid;
}
.form-box .container-box .box-1 .item:last-child {
  padding-left: 62px;
}
.form-box .container-box .box-1 .item .box {
  margin-top: 56px;
}
.form-box .container-box .box-1 .item .box:first-child {
  margin-top: 0;
}
.form-box .container-box .box-1 .item .box h2 {
  margin-bottom: 28px;
  margin-top: 44px;
  padding-bottom: 12px;
  color: #000;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.2;
  position: relative;
}
.form-box .container-box .box-1 .item .box h2:first-child {
  margin-top: 0;
}
.form-box .container-box .box-1 .item .box h2::after {
  content: "";
  width: 38px;
  height: 1px;
  display: block;
  background-color: #000;
  position: absolute;
  left: 0;
  bottom: 0;
}
.form-box .container-box .box-1 .item .box dl {
  margin-bottom: 16px;
}
.form-box .container-box .box-1 .item .box dl.line {
  margin-top: 36px;
  padding-top: 32px;
  background: url(../img/line-1.gif) no-repeat left top;
}
.form-box .container-box .box-1 .item .box dl dt {
  margin-bottom: 8px;
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
}
.form-box .container-box .box-1 .item .box dl dt.hissu {
  padding-left: 46px;
  background: url(../img/icon-hissu.svg) no-repeat 0 4px;
  background-size: 38px 20px;
}
.form-box .container-box .box-1 .item .box dl dt.nini {
  padding-left: 46px;
  background: url(../img/icon-nini.svg) no-repeat 0 4px;
  background-size: 38px 20px;
}
.form-box .container-box .box-1 .item .box dl dt .text-1 {
  color: #666;
  font-size: 11px;
  font-size: 1.1rem;
  display: inline-block;
  margin-left: -46px;
}
.form-box .container-box .box-1 .item .box dl dd .inner {
  margin-top: 12px;
}
.form-box .container-box .box-1 .item .box dl dd .inner:first-child {
  margin-top: 0;
}
.form-box .container-box .box-1 .item .box dl dd input::-webkit-input-placeholder {
  color: #b2b2b2;
}
.form-box .container-box .box-1 .item .box dl dd input::-moz-placeholder {
  color: #b2b2b2;
}
.form-box .container-box .box-1 .item .box dl dd input:-ms-input-placeholder {
  color: #b2b2b2;
}
.form-box .container-box .box-1 .item .box dl dd .input-text {
  border: 1px #e2e2e2 solid;
  background: #fafafa;
  height: 40px;
  padding: 2px 12px;
}
.form-box .container-box .box-1 .item .box dl dd .input-textarea {
  border: 1px #e2e2e2 solid;
  background: #fafafa;
  padding: 2px 12px;
}
.form-box .container-box .box-1 .item .box dl dd .type-1 {
  width: 100%;
}
.form-box .container-box .box-1 .item .box dl dd .type-2 {
  width: 100%;
  max-width: 214px;
}
.form-box .container-box .box-1 .item .box dl dd .text-1 {
  color: #666;
  font-size: 11px;
  font-size: 1.1rem;
  display: inline-block;
}
.form-box .container-box .box-1 .item .box dl dd .list-1 {
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: -0.4em;
}
.form-box .container-box .box-1 .item .box dl dd .list-1 li {
  margin: 0 30px 0 0;
  padding: 0;
  letter-spacing: normal;
  display: inline-block;
  vertical-align: top;
}
.form-box .container-box .box-1 .item .box dl dd .list-1 li:last-child {
  margin: 0;
}
.form-box .container-box .box-1 .item .box dl dd .list-2 {
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: -0.4em;
}
.form-box .container-box .box-1 .item .box dl dd .list-2 li {
  margin: 0 10px 0 0;
  padding: 0;
  letter-spacing: normal;
  display: inline-block;
  vertical-align: top;
}
.form-box .container-box .box-1 .item .box dl dd .list-2 li:last-child {
  margin: 0;
}
.form-box .container-box .box-1 .item .box dl dd select {
  border: 1px #e2e2e2 solid;
  height: 40px;
  padding: 2px 12px;
}
.form-box .container-box .box-1 .item .box dl dd .koumoku {
  margin-bottom: 8px;
}
.form-box .container-box .box-1 .item .box dl dd .mb {
  margin-bottom: 20px;
}
.form-box .container-box .privacy-box {
  border: 1px #cbcbcb solid;
  padding: 22px;
  color: #000;
  text-align: center;
}
.form-box .container-box .privacy-box .input-check {
  position: relative;
  top: 2px;
}
.form-box .container-box .privacy-box a {
  color: #000;
  text-decoration: underline;
}
.form-box .container-box .privacy-box a:hover {
  color: #f00;
}
.form-box .container-box .privacy-box.hissu::before {
  content: url(../img/icon-hissu.svg);
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: 2px;
}
.form-box .container-box .submit-box {
  margin: 54px 0 0 0;
  padding: 0;
  list-style: none;
  letter-spacing: -0.4em;
  text-align: center;
}
.form-box .container-box .submit-box li {
  margin: 0 10px 20px;
  padding: 0;
  letter-spacing: normal;
  display: inline-block;
}
.form-box .container-box .submit-box li .btn-confirm {
  border: 0;
  width: 380px;
  height: 60px;
  display: inline-block;
  background: url(../img/btn-confirm.svg) no-repeat left top;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 101%;
  cursor: pointer;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.form-box .container-box .submit-box li .btn-confirm:hover {
  opacity: 0.8;
}
.form-box .container-box .submit-box li .btn-submit {
  border: 0;
  width: 380px;
  height: 60px;
  display: inline-block;
  background: url(../img/btn-submit.svg) no-repeat left top;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 101%;
  cursor: pointer;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.form-box .container-box .submit-box li .btn-submit:hover {
  opacity: 0.8;
}
.form-box .container-box .submit-box li .btn-back {
  border: 0;
  width: 380px;
  height: 60px;
  display: inline-block;
  background: url(../img/btn-back.svg) no-repeat left top;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 101%;
  cursor: pointer;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
}
.form-box .container-box .submit-box li .btn-back:hover {
  opacity: 0.8;
}
.form-box .container-box .text-3 {
  margin-top: 18px;
  color: #333;
  text-align: center;
}

.form-box-2 {
  padding: 56px 30px 74px;
  background-color: #f1f1f1;
}
.form-box-2 .container-box {
  margin: 0 auto;
  max-width: 770px;
}
.form-box-2 .container-box > .text-2 {
  margin-top: 40px;
  margin-bottom: 18px;
  color: #333;
  text-align: center;
}
.form-box-2 .container-box > .btn {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  letter-spacing: -0.4em;
}
.form-box-2 .container-box > .btn li {
  margin: 0 30px 0 0;
  padding: 0;
  letter-spacing: normal;
  display: inline-block;
}
.form-box-2 .container-box > .btn li:last-child {
  margin-right: 0;
}
.form-box-2 .container-box > .btn li a {
  display: block;
  padding: 10px 30px;
  width: 270px;
  text-align: center;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  position: relative;
}
.form-box-2 .container-box > .btn li a::after {
  content: "\e5c8";
  font-family: "Material Icons";
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  vertical-align: middle;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 16px;
  margin: auto;
}
.form-box-2 .container-box > .btn li a:hover {
  opacity: 0.8;
}
.form-box-2 .container-box > .btn li a.type-1 {
  background-color: #58c6be;
}
.form-box-2 h3 {
  margin-top: 54px;
  margin-bottom: 18px;
  font-size: 30px;
  color: #000;
  text-align: center;
  font-weight: normal;
}
.form-box-2 h3:first-child {
  margin-top: 0;
}
.form-box-2 .text-1 {
  margin-bottom: 30px;
  color: #000;
  text-align: center;
}
.form-box-2 .box-1-w {
  margin-left: -30px;
  margin-right: -30px;
}
.form-box-2 .box-1-w .box-1 {
  width: 100%;
  display: table;
  border-collapse: separare;
  border-spacing: 30px 0;
  table-layout: fixed;
}
.form-box-2 .box-1-w .box-1 .item {
  padding: 28px 20px;
  display: table-cell;
  background-color: #fff;
  text-align: center;
  vertical-align: middle;
}
.form-box-2 .box-1-w .box-1 .item .icon {
  margin-bottom: 10px;
}
.form-box-2 .box-1-w .box-1 .item .icon i {
  color: #00a89c;
  font-size: 48px;
  height: 40px;
  line-height: 40px;
}
.form-box-2 .box-1-w .box-1 .item .text-2 {
  margin-bottom: 10px;
  color: #000;
  font-size: 22px;
  line-height: 1.2;
}
.form-box-2 .box-1-w .box-1 .item .text-3 {
  margin-bottom: 20px;
  color: #333;
  text-align: left;
}
.form-box-2 .box-1-w .box-1 .item .text-4 {
  color: #333;
  font-size: 12px;
}
.form-box-2 .box-1-w .box-1 .item .tel-1 {
  margin-bottom: 4px;
}
.form-box-2 .box-1-w .box-1 .item .btn a {
  display: block;
  max-width: 270px;
  margin: 0 auto;
  color: #fff;
  background-color: #00002b;
  padding: 10px;
  vertical-align: middle;
  border-radius: 20px;
  text-decoration: none;
}
.form-box-2 .box-1-w .box-1 .item .btn a:hover {
  opacity: 0.8;
}
.form-box-2 .box-1-w .box-1 .item .btn a i {
  font-size: 20px;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

#c-box-6 {
  padding: 42px 30px 60px;
  background-color: #ccede9;
}
#c-box-6 .container-box {
  max-width: 990px;
  margin: 0 auto;
}
#c-box-6 .container-box h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: normal;
  text-align: center;
}
#c-box-6 .container-box .box-1 {
  padding: 48px;
  min-height: 232px;
  background: #fff url(../../wp-nishino/wp-content/themes/original/img/contents/admission/adm-bg-4.jpg) no-repeat right top;
}
#c-box-6 .container-box .box-1 .box {
  margin-bottom: 20px;
  padding-left: 108px;
  position: relative;
}
#c-box-6 .container-box .box-1 .box::before {
  content: "";
  width: 90px;
  height: 90px;
  background: url(../../wp-nishino/wp-content/themes/original/img/contents/admission/adm-icon-tel-1.gif) no-repeat left top;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
#c-box-6 .container-box .box-1 .box .text-1 {
  color: #000;
  font-size: 16px;
  font-size: 1.6rem;
}
#c-box-6 .container-box .box-1 .box .tel {
  color: #000;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1;
  font-weight: bold;
}
#c-box-6 .container-box .box-1 .box .tel a {
  color: #000;
  text-decoration: none;
}
#c-box-6 .container-box .box-1 .box .tel::before {
  content: "";
  width: 34px;
  height: 20px;
  display: inline-block;
  background: url(../../wp-nishino/wp-content/themes/original/img/contents/admission/adm-icon-tel-2.gif) no-repeat left top;
}
#c-box-6 .container-box .box-1 .box .text-2 {
  color: #333;
  font-size: 12px;
  font-size: 1.2rem;
}
#c-box-6 .container-box .box-1 .btn {
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: -0.4em;
}
#c-box-6 .container-box .box-1 .btn li {
  margin: 0 46px 0 0;
  padding: 0;
  letter-spacing: normal;
  display: inline-block;
}
#c-box-6 .container-box .box-1 .btn li:last-child {
  margin: 0;
}
#c-box-6 .container-box .box-1 .btn li a {
  color: #000;
  text-decoration: none;
  font-size: 15px;
  font-size: 1.5rem;
}
#c-box-6 .container-box .box-1 .btn li a:hover {
  text-decoration: underline;
}
#c-box-6 .container-box .box-1 .btn li a::before {
  font-family: "Material Icons";
  font-size: 20px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  color: #00a89c;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -2px;
  margin-right: 6px;
}
#c-box-6 .container-box .box-1 .btn li a.type-1::before {
  content: "\e554";
}
#c-box-6 .container-box .box-1 .btn li a.type-2::before {
  content: "\e0b9";
}
#c-box-6 .container-box .box-1 .btn li a.type-3::before {
  font-family: "FontAwesome";
  content: "\f041";
}

@media screen and (max-width: 768px) {
  /* --------------------
   contents
  -------------------- */
  .form-box {
    padding: 0 15px 40px;
  }
  .form-box .container-box .box-1 {
    margin-bottom: 40px;
    display: block;
  }
  .form-box .container-box .box-1 > .item {
    display: block;
    width: 100%;
  }
  .form-box .container-box .box-1 > .item:first-child {
    padding-right: 0;
    border-right: none;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px #e5e5e5 solid;
  }
  .form-box .container-box .box-1 > .item:last-child {
    padding-left: 0;
  }
  .form-box .container-box .box-1 > .item .box dl dd > .text-1 {
    text-indent: -1em;
    padding-left: 1em;
  }
  .form-box .container-box .box-1 > .item .box dl dd input.type-3,
  .form-box .container-box .box-1 > .item .box dl dd textarea.type-3 {
    max-width: 100px;
  }
  .form-box .container-box .box-1 > .item .box dl dd .list-1 li {
    margin: 0 20px 0 0;
  }
  .form-box .container-box .submit-box {
    margin: 40px 0 0 0;
    letter-spacing: normal;
  }
  .form-box .container-box .submit-box li {
    margin: 0 0 10px;
    display: block;
    text-align: center;
  }
  .form-box .container-box .submit-box li .btn-confirm {
    margin: 0 auto;
    border: 0;
    width: 290px;
    height: 45px;
    display: block;
    background-size: contain;
  }
  .form-box .container-box .submit-box li .btn-confirm:hover {
    opacity: 1;
  }
  .form-box .container-box .submit-box li .btn-submit {
    margin: 0 auto;
    border: 0;
    width: 290px;
    height: 45px;
    display: block;
    background-size: contain;
  }
  .form-box .container-box .submit-box li .btn-submit:hover {
    opacity: 1;
  }
  .form-box .container-box .submit-box li .btn-back {
    margin: 0 auto;
    border: 0;
    width: 290px;
    height: 45px;
    display: block;
    background-size: contain;
  }
  .form-box .container-box .submit-box li .btn-back:hover {
    opacity: 1;
  }
  .form-box .container-box .text-3 {
    margin-top: 10px;
    text-align: left;
  }
  .form-box-2 {
    padding: 36px 20px;
  }
  .form-box-2 .container-box > .btn {
    margin: 0 auto;
    padding: 0;
    list-style: none;
    text-align: center;
    letter-spacing: normal;
    max-width: 290px;
  }
  .form-box-2 .container-box > .btn li {
    margin: 0 0 6px;
    display: block;
  }
  .form-box-2 .container-box > .btn li:last-child {
    margin: 0;
  }
  .form-box-2 .container-box > .btn li a {
    width: 100%;
  }
  .form-box-2 .container-box > .btn li a:hover {
    opacity: 1;
  }
  .form-box-2 h3 {
    margin-top: 26px;
    margin-bottom: 14px;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .form-box-2 .text-1 {
    margin-bottom: 30px;
    color: #000;
    text-align: center;
  }
  .form-box-2 .box-1-w {
    margin-left: 0;
    margin-right: 0;
  }
  .form-box-2 .box-1-w .box-1 {
    width: 100%;
    display: block;
    border-spacing: 0;
  }
  .form-box-2 .box-1-w .box-1 .item {
    margin: 0 0 10px;
    padding: 18px 14px;
    display: block;
  }
  .form-box-2 .box-1-w .box-1 .item:last-child {
    margin: 0;
  }
  .form-box-2 .box-1-w .box-1 .item .icon i {
    font-size: 40px;
  }
  .form-box-2 .box-1-w .box-1 .item .text-2 {
    font-size: 20px;
  }
  .form-box-2 .box-1-w .box-1 .item .btn a:hover {
    opacity: 1;
  }
}/*# sourceMappingURL=style.css.map */