@charset "UTF-8";
/*
******************************
    fadeアニメーション
*******************************
*/
/* 初期状態 */
.js-fadeInTrigger,
.js-fadeUpTrigger,
.js-fadeDownTrigger,
.js-fadeLeftTrigger,
.js-fadeRightTrigger {
  opacity: 0;
}

/* その場でfade */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下からfade */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上からfade */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左からfade */
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右からfade */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*
******************************
    背景が徐々に透明度が濃くなるアニメーション 
*******************************
*/
@keyframes moveanime {
  0% {
    bottom: 35px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 35px;
  }
}
/*
******************************
    画像やテキストのワイプ表示アニメーション 
*******************************
*/
.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative !important;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: black;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

/* 画像やテキストのワイプ表示のアニメーション1 */
@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
/* 画像やテキストのワイプ表示のアニメーション2 */
@keyframes img-animation {
  99% {
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
/*
******************************
    メインビジュアルでスライドする画像を少しずつ拡大していくアニメーション
*******************************
*/
@keyframes img-expansion {
  100% {
    transform: scale(1.2, 1.2);
  }
}
/*
******************************
    スクロールダウンで高さ・位置・透過が変化して線が上から下に動くアニメーション 
*******************************
*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 100px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
}
/*
******************************
    セクションの横棒が伸びるアニメーション
*******************************
*/
.js-lineExtend.is-animated {
  border-top: 1px solid black;
  animation: lineExtend 1s ease-in-out forwards;
  display: inline-block;
  position: relative;
  top: 3px;
}

@keyframes lineExtend {
  0% {
    width: 0;
  }
  100% {
    width: 220px;
  }
}
/*
******************************
    画像がblurしながら浮かび上がるアニメーション
*******************************
*/
.blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
/*
******************************
    readButton
*******************************
*/
.readBtn a {
  font-size: 1.4rem;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 220px;
  max-width: 220px;
  padding: 20px 25px;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  transform: skew(-10deg, 0deg);
  background: #054A91;
  color: #fff;
  border: 1px solid #787878;
}

.readBtn a span {
  transform: skewX(10deg);
}

.readBtn a:before {
  content: "";
  width: 65px;
  height: 1px;
  position: absolute;
  right: -20px;
  background: #313131;
  top: 35%;
  transition: 0.2s ease-in-out;
}

.readBtn a:after {
  content: "";
  width: 40px;
  height: 1px;
  position: absolute;
  right: -5px;
  background: #313131;
  top: 55%;
  transition: 0.2s ease-in-out;
}

.readBtn a:hover {
  background: #054A91;
  color: #fff;
  background: #fff;
  color: #313131;
}

.readBtn a:hover:before,
.readBtn a:hover:after {
  transform: translateX(10px);
}

/*
******************************
    トップへ戻るボタン 
*******************************
*/
#page-top {
  position: absolute;
  right: 35px;
  bottom: 35px;
  height: 50px;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(90deg);
  font-size: 90%;
  line-height: 2rem;
  color: #fff;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  animation: moveanime 2s ease-in-out infinite;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}

/*
******************************
    header
*******************************
*/
.header {
  background: #fff;
}
@media screen and (max-width: 479px) {
  .header {
    position: fixed;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header {
    position: fixed;
  }
}

.header * {
  color: black;
}
@media screen and (max-width: 479px) {
  .header * {
    color: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .header * {
    color: #fff;
  }
}

@media screen and (max-width: 479px) {
  .hamburger span {
    background: black;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger span {
    background: black;
  }
}

@media screen and (max-width: 479px) {
  .hamburger.active span {
    background: #fff;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .hamburger.active span {
    background: black;
  }
}

@media screen and (min-width:480px) and (max-width:959px) {
  .globalMenuSp__item-head {
    border-top: 1px solid #fff;
  }
}

/*
******************************
    pageHeader
*******************************
*/
.pageHeader {
  position: relative;
}

.pageHeader__bgImg {
  height: 300px;
  width: 100%;
  margin-top: 80px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 479px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__bgImg {
    height: 200px;
    background-position: center;
  }
}

.pageHeader__sectionTitle {
  font-size: 5rem;
  font-weight: 800;
  text-align: center;
  color: #054A91;
  margin-bottom: 16px;
  background: -webkit-linear-gradient(180deg, rgb(0, 63, 255), rgb(255, 255, 255));
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 99;
}
@media screen and (max-width: 479px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__sectionTitle {
    font-size: 4rem;
  }
}

.pageHeader__sectionTitle:after {
  content: "";
  margin: 0 auto;
  display: block;
  width: 49px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  z-index: 99;
}

.pageHeader__sectionTitle-sub {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  color: #fff;
  z-index: 99;
}

.pageHeader__mask {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 300px;
  z-index: 10;
  overflow: hidden;
}
@media screen and (max-width: 479px) {
  .pageHeader__mask {
    height: 200px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .pageHeader__mask {
    height: 200px;
  }
}

.pageHeader__mask-mask1 {
  height: 300px;
  z-index: 15;
  background: rgba(1, 63, 147, 0.35);
}

/*
******************************
    本ページ共通
*******************************
*/
html {
  scroll-behavior: unset;
}

@media screen and (max-width: 479px) {
  tr,
  td,
  th {
    display: block;
    width: 100% !important;
    word-break: break-all;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  tr,
  td,
  th {
    display: block;
    width: 100% !important;
    word-break: break-all;
  }
}

/*
******************************
    header
*******************************
*/
.header {
  box-shadow: 0 0 17px 0 rgba(172, 183, 191, 0.08);
}

/*
******************************
    contact
*******************************
*/
.contactForm {
  margin-top: 80px;
}

.contactForm__wrapper {
  padding: 72px 0;
  width: 950px;
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .contactForm__wrapper {
    padding-top: 32px;
    padding-bottom: 48px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__wrapper {
    padding-top: 48px;
    padding-bottom: 72px;
  }
}

.contactForm__readMessage {
  font-size: 1.6rem;
  margin-bottom: 64px;
}
@media screen and (max-width: 479px) {
  .contactForm__readMessage {
    margin-bottom: 40px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__readMessage {
    margin-bottom: 40px;
  }
}

.contactForm__info-head,
.contactForm__applicantInfo-head,
.contactForm__readMessage-head {
  font-size: 2.5rem;
  border-left: 8px solid #054A91;
  padding-left: 8px;
  margin-bottom: 32px;
}
@media screen and (max-width: 479px) {
  .contactForm__info-head,
  .contactForm__applicantInfo-head,
  .contactForm__readMessage-head {
    margin-bottom: 10px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__info-head,
  .contactForm__applicantInfo-head,
  .contactForm__readMessage-head {
    margin-bottom: 10px;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .contactForm__info-head,
  .contactForm__applicantInfo-head,
  .contactForm__readMessage-head {
    margin-bottom: 10px;
  }
}

.contactForm__info-seminarName {
  font-size: 1.6rem;
  font-weight: 800;
  padding-left: 24px;
}

.contactForm__info-date {
  font-size: 1.6rem;
  margin-bottom: 32px;
  font-weight: 800;
  padding-left: 24px;
}

.contactForm__progressbar {
  position: relative;
  margin: 0;
  margin-bottom: 64px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 479px) {
  .contactForm__progressbar {
    margin-bottom: 40px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__progressbar {
    margin-bottom: 40px;
  }
}

.contactForm__progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  color: #999999;
  font-weight: bold;
  font-size: 1.4rem;
}

.contactForm__progressbar li:before {
  display: block;
  width: 25px;
  height: 25px;
  margin: 7px auto 20px auto;
  content: "";
  text-align: center;
  border-radius: 50%;
  background-color: #BBBBBB;
}
@media screen and (max-width: 479px) {
  .contactForm__progressbar li:before {
    margin: 7px auto 10px auto;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__progressbar li:before {
    margin: 7px auto 10px auto;
  }
}

.contactForm__progressbar li:after {
  position: absolute;
  z-index: -1;
  top: 7px;
  left: -50%;
  width: 100%;
  height: 25px;
  content: "";
  background-color: #F5F5F5;
}

.contactForm__progressbar li:first-child:after {
  content: none;
}

.contactForm__progressbar li.active,
.contactForm__progressbar li.complete {
  color: #054A91;
}

.contactForm__progressbar li.active:before,
.contactForm__progressbar li.complete:before {
  background-color: #054A91;
}

.contactForm__progressbar li.active:after,
.contactForm__progressbar li.complete:after {
  background-color: #054A91;
}

.contactForm__form {
  font-size: 1.6rem;
  width: 100%;
  margin-bottom: 96px;
}
@media screen and (max-width: 479px) {
  .contactForm__form {
    margin-bottom: 36px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__form {
    margin-bottom: 36px;
  }
}

.contactForm__form .column-01 {
  width: 30%;
  font-weight: 800;
  vertical-align: middle;
}
@media screen and (max-width: 479px) {
  .contactForm__form .column-01 {
    padding: 0;
    padding-top: 20px;
    padding-bottom: 5px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__form .column-01 {
    padding: 0;
    padding-top: 25px;
    padding-bottom: 5px;
  }
}

.contactForm__form .column-02 {
  width: 70%;
  display: table-cell;
  vertical-align: middle;
  padding-block: 20px;
}
@media screen and (max-width: 479px) {
  .contactForm__form .column-02 {
    display: flex;
    padding-top: 0;
    padding-bottom: 4px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__form .column-02 {
    display: flex;
    padding-top: 0;
    padding-bottom: 4px;
  }
}

.contactForm__form input {
  width: 100%;
}

.contactForm__form input {
  height: 40px;
  padding: 0 20px;
  border: 0;
  background: #f5f5f5;
  outline: none;
}
@media screen and (max-width: 479px) {
  .contactForm__form input {
    padding: 0 10px;
    font-size: 1.4rem;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__form input {
    height: 50px;
    padding: 0 10px;
    font-size: 1.5rem;
  }
}

.contactForm__form textarea {
  width: 100%;
  height: 250px;
  resize: vertical;
  padding: 16px;
  border: 0;
  background: #f5f5f5;
  outline: none;
}

.contactForm__form select {
  height: 40px;
  padding: 0 16px;
  border: 0;
  background: #f5f5f5;
  outline: none;
}

.contactForm__agree {
  font-size: 1.6rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 72px;
}
@media screen and (max-width: 479px) {
  .contactForm__agree {
    margin-bottom: 40px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__agree {
    margin-bottom: 40px;
  }
}
@media screen and (min-width:960px) and (max-width:1279px) {
  .contactForm__agree {
    margin-bottom: 40px;
  }
}

.contactForm__privacypolicyLink {
  color: #7f7fff;
  text-decoration: underline;
  margin-right: 8px;
}

.contactForm__errorMessageBox {
  font-size: 1.6rem;
  font-weight: 800;
  background: #054A91;
  color: #fff;
  padding: 20px 0;
  margin-bottom: 24px;
}

.fa-solid.fa-triangle-exclamation {
  font-size: 3rem;
  margin-right: 16px;
}

.contactForm__errorMessageBox-content {
  width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 479px) {
  .contactForm__errorMessageBox-content {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__errorMessageBox-content {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .contactForm__errorMessageBox-content p {
    font-size: 1.4rem;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__errorMessageBox-content p {
    font-size: 1.4rem;
    width: 90%;
    margin: 0 auto;
  }
}

.contactForm__Messages {
  font-size: 1.4rem;
  list-style: circle;
  margin-top: 16px;
  margin-left: 64px;
}
@media screen and (max-width: 479px) {
  .contactForm__Messages {
    font-size: 1.3rem;
    margin-left: 36px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__Messages {
    font-size: 1.3rem;
    margin-left: 36px;
  }
}

.required {
  font-size: 1.2rem;
  margin-right: 16px;
  padding: 4px 8px;
  background: #054A91;
  color: #FFf;
  vertical-align: middle;
}
@media screen and (max-width: 479px) {
  .required {
    font-size: 1rem;
    padding: 2px 8px;
    margin-right: 7px;
    position: relative;
    top: -1px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .required {
    font-size: 1rem;
    padding: 2px 8px;
    margin-right: 7px;
    position: relative;
    top: -1px;
  }
}

#agree {
  width: 16px;
  height: 16px;
}

.contactForm__supplement {
  font-size: 1.3rem;
  width: 100%;
}

.contactForm__supplement-link {
  color: #054A91;
  text-decoration: underline;
  padding-inline: 4px;
}

.contactForm__inputWrap {
  position: relative;
}
@media screen and (max-width: 479px) {
  .contactForm__inputWrap {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__inputWrap {
    width: 100%;
  }
}

.contactForm__inputWrap::after {
  content: "";
  display: block;
  width: 18px;
  height: 19px;
  margin: auto;
  background: url(../../img/ico_validate-check.svg) center/contain no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s;
}

.contactForm__inputWrap.ok-input::after {
  opacity: 1;
}

.contactForm__inputWrap-name,
.contactForm__inputWrap-nameRubi,
.contactForm__inputWrap-tel {
  width: 45%;
}
@media screen and (max-width: 479px) {
  .contactForm__inputWrap-name,
  .contactForm__inputWrap-nameRubi,
  .contactForm__inputWrap-tel {
    width: 70%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .contactForm__inputWrap-name,
  .contactForm__inputWrap-nameRubi,
  .contactForm__inputWrap-tel {
    width: 70%;
  }
}

.contactForm__inputWrap-accept {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 8px;
  row-gap: 5px;
}

.error-input input,
.error-input select,
.error-input textarea {
  background: rgba(198, 0, 0, 0.15);
  border: 2px solid #f0f0f0;
}

.contactForm__inputWrap select {
  appearance: auto;
}

.ok-input input,
.ok-input select,
.ok-input textarea {
  border: 1.5px solid #28ca17;
  transition: all 0.2s;
}

.errorMessage {
  position: absolute;
  font-size: 1.1rem;
  color: red;
  transition: all 0.2s;
  bottom: -20px;
}
@media screen and (min-width:480px) and (max-width:959px) {
  .errorMessage {
    bottom: -15px;
  }
}

/* 確認画面用 */
.formConfirm_btn {
  display: flex;
}
@media screen and (max-width: 479px) {
  .formConfirm_btn {
    flex-direction: column;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .formConfirm_btn {
    flex-direction: column;
  }
}

.formConfirm_btn .backHistry {
  background: #fff;
  color: black;
  border: 1px solid black;
}
@media screen and (max-width: 479px) {
  .formConfirm_btn .backHistry {
    margin-bottom: 24px;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .formConfirm_btn .backHistry {
    margin-bottom: 24px;
  }
}

.formConfirm_btn .backHistry.btnArrow::before {
  background: #054A91;
}

.formConfirm_btn .backHistry.btnArrow::after {
  background: #054A91;
}

/* submitBtn */
.submitBtn {
  font-size: 1.6rem;
  color: #fff;
  width: 380px;
  display: flex;
  margin: 0 auto;
  background: #054A91;
  transition: 0.4s;
  position: relative;
}
@media screen and (max-width: 479px) {
  .submitBtn {
    width: 100%;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  .submitBtn {
    width: 100%;
  }
}

.submitBtn a {
  width: 100%;
  padding: 24px 0;
}

.submitBtn:hover {
  opacity: 0.6;
}

/* ReadMeBtn（矢印）*/
.btnArrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 40px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}

.btnArrow::after {
  content: "";
  position: absolute;
  top: 32%;
  right: 35px;
  width: 1px;
  height: 12px;
  background: #fff;
  transform: skewX(45deg);
  transition: all 0.3s ease;
}

.btnArrow:hover::before {
  right: 15px;
}

.btnArrow:hover::after {
  right: 20px;
}

/* 送信完了画面用 */
.contactForm__returnTopBtn {
  margin: 0;
}

/*
******************************
    contactAndRecruit
*******************************
*/
.contactAndRecruit {
  display: none;
}

/*
******************************
    footer
*******************************
*/
@media screen and (max-width: 479px) {
  footer {
    display: none;
  }
}
@media screen and (min-width:480px) and (max-width:959px) {
  footer {
    display: none;
  }
}/*# sourceMappingURL=contact.css.map */