@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Lato", "Zen Kaku Gothic New", sans-serif;
  line-height: 1.6;
  font-size: 1.6rem;
  margin: 0;
  background-color: #ffffff;
  color: #848484;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4em;
  font-weight: 400;
  margin: 0;
}

p {
  margin: 0;
}
p + p {
  margin-top: 1em;
}

a {
  transition: all 0.3s ease-in-out;
}
a, a:visited {
  color: #19233b;
}
a:hover {
  opacity: 0.8;
}

sup {
  font-size: 0.8em;
}

textarea {
  resize: vertical;
}

.l-header,
.l-footer {
  display: block;
  width: 100%;
}

.l-footer {
  background: #001e64;
  padding: 60px 0 40px;
}

.l-contentsSection {
  width: 100%;
  padding: 7em 0;
}
@media screen and (max-width: 764px) {
  .l-contentsSection {
    padding: 4em 0;
  }
}

.l-stack, .l-stack--vertical {
  display: flex;
  gap: 16px;
}
.l-stack--vertical {
  flex-direction: column;
}

.c-header__nav {
  display: flex;
  justify-content: space-between;
}
.c-header__logo {
  margin: 0;
}
.c-header__logo__link, .c-header__logo__image, .c-header__logo__caption {
  display: block;
}
.c-header__logo__link {
  outline: none;
}
.c-header__logo__caption {
  color: #19233b;
  font-size: 1.4rem;
  line-height: 1.4em;
  margin-top: 4px;
}
.c-header__tel {
  color: #001e64;
  font-size: 3.2rem;
}
.c-header__tel__number {
  display: flex;
  align-items: center;
  font-size: 3.2rem;
  line-height: 1.2;
}
.c-header__tel__number::before {
  content: "";
  width: 1em;
  height: 1em;
  background-image: url(../images/icon--tel.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  margin-right: 4px;
}
.c-header__tel__businesshour {
  display: block;
  font-size: 1.2rem;
  text-align: right;
}
@media screen and (max-width: 764px) {
  .c-header__tel {
    display: none;
  }
}

.c-container {
  width: 100%;
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
}

.c-contentSection + .c-contentSection {
  margin-top: 5em;
}
@media screen and (max-width: 764px) {
  .c-contentSection + .c-contentSection {
    margin-top: 3em;
  }
}

.c-heading__heading {
  font-size: inherit;
  color: #19233b;
}
.c-heading--lv1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  text-align: center;
  margin-bottom: 2em;
}
.c-heading--lv1 .c-heading__heading {
  line-height: 1.4em;
  letter-spacing: 2px;
}
.c-heading--lv1 .c-heading__caption {
  font-size: 1.6rem;
  line-height: 1.6em;
}
.c-heading--lv1::after {
  display: block;
  content: "";
  width: 100px;
  height: 2px;
  background-color: #ff4b00;
  margin: 1em auto 0;
}
.c-heading--lv1 > * + * {
  margin-top: 16px;
}
.c-heading--lv3 {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

.c-imageContainer {
  display: flex;
}
.c-imageContainer img {
  display: block;
  max-width: 100%;
  height: auto;
}
.c-imageContainer.-responsive img {
  width: 100%;
}
.c-imageContainer.-center {
  justify-content: center;
  align-items: center;
}
.c-imageContainer.-round {
  border-radius: 8px;
  overflow: hidden;
}

.c-emphasis {
  background: #ffff78;
  color: #001e64;
  line-height: 1.9em;
  font-size: 1.25em;
  padding: 0.2em;
  font-weight: inherit;
}

.c-gridContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 32px;
}
@media screen and (min-width: 765px) {
  .c-gridContainer.-col2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 765px) {
  .c-gridContainer.-col3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1025px) {
  .c-gridContainer.-col3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.c-buttonContainer {
  display: flex;
}
.c-buttonContainer.-center {
  justify-content: center;
}

.c-button, .c-button--secondary, .c-button--primary, [class^=c-formButton] {
  display: flex;
  text-decoration: none;
  outline: none;
  cursor: pointer;
}
.c-button--primary, [class^=c-formButton] {
  background-color: #001e64;
  color: #ffffff;
  font-size: 1.3em;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 56px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}
.c-button--primary:hover, [class^=c-formButton]:hover {
  background-color: #3d3f7a;
}
.c-button--secondary {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 12px 24px;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 360px;
  transition: all 0.3s ease-in-out;
}
.c-button--secondary::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 3px solid #3d3f7a;
  border-right: 3px solid #3d3f7a;
  transform: rotate(45deg);
  transform-origin: center;
  position: absolute;
  right: 20px;
  transition: inherit;
}
.c-button--secondary, .c-button--secondary:visited {
  color: #313131;
}
.c-button--secondary:hover {
  background-color: #3d3f7a;
  color: #ffffff;
}
.c-button--secondary:hover::after {
  border-color: #ffffff;
}

.c-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.c-table__header {
  background-color: #001e64;
  color: #ffffff;
  padding: 8px;
  border-right: 2px solid #ffffff;
}
.c-table__rowc-academy-lead__body__emphasis {
  border: 6px solid #ffff78;
  color: #19233b;
  font-size: 1.3em;
  font-weight: bold;
}
.c-table__cell {
  background-color: #ffffff;
  padding: 2em 0.5em;
  border-right: 2px solid #eeeeee;
}
@media screen and (max-width: 1000px) {
  .c-table > thead {
    display: none;
  }
  .c-table > tbody > tr {
    width: 100%;
  }
  .c-table > tbody > tr > th, .c-table > tbody > tr > td {
    display: block;
  }
  .c-table__cell {
    padding: 2em 1em;
  }
  .c-table__cell:not(:first-child) {
    border-top: 1px solid #eeeeee;
  }
  .c-table__data {
    display: flex;
    gap: 12px;
    width: 100%;
  }
  .c-table__data::before {
    content: attr(data-label);
  }
  .c-table.-justified .c-table__data {
    justify-content: space-between;
  }
}
@media screen and (max-width: 764px) {
  .c-table__data {
    display: block;
  }
  .c-table__data::before {
    display: block;
    margin-bottom: 4px;
  }
}

.c-formTable {
  width: 100%;
  table-layout: fixed;
  margin: 0 auto;
}
.c-formTable > tbody > tr, .c-formTable > tbody > tr > th, .c-formTable > tbody > tr > td {
  display: block;
  text-align: left;
}

.c-form__item:not(:first-child) {
  margin-top: 32px;
}
.c-form__label {
  display: inline-block;
  vertical-align: middle;
}
.c-form__input {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  padding: 12px 16px;
  margin-top: 4px;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  outline: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease-in-out;
}
.c-form__input:focus, .c-form__input:active {
  border-color: rgba(0, 0, 0, 0.5);
}
.c-form__input::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.c-form__input::placeholder {
  color: #999999;
}
.c-form__comment {
  margin-top: 4px;
}
.c-form__note {
  margin: 28px;
}

.c-inputGroup {
  display: flex;
  gap: 8px 16px;
  width: 100%;
}
.c-inputGroup__item {
  flex-grow: 1;
}
.c-inputGroup__group {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
@media screen and (max-width: 724px) {
  .c-inputGroup {
    flex-direction: column;
  }
}

.c-checkbox__label {
  cursor: pointer;
}

.c-required {
  display: inline-block;
  margin-right: 8px;
  font-size: 0.8em;
  padding: 4px 8px;
  background-color: #001e64;
  color: #ffffff;
  font-weight: bold;
  border-radius: 10px;
  line-height: 1;
  vertical-align: middle;
}

.c-requiredError {
  margin-top: 8px;
  padding: 0 8px;
  color: #ff0000;
}
.c-requiredError__label {
  font-weight: bold;
}

.c-formConfirmation__title {
  font-family: sans-serif;
  text-align: center;
  font-size: clamp(2rem, 2vw, 2.6rem);
}
.c-formConfirmation__table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 24px;
}
.c-formConfirmation__table tr {
  background-color: #ffffff;
  border-top: 1px solid #cccccc;
}
.c-formConfirmation__table tr:nth-of-type(even) {
  background-color: #f6f7f9;
}
.c-formConfirmation__table tr:last-of-type {
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 764px) {
  .c-formConfirmation__table tr {
    display: block;
    padding: 16px;
  }
}
.c-formConfirmation__table th, .c-formConfirmation__table td {
  font-weight: normal;
  padding: 4px 12px;
  text-align: left;
}
@media screen and (max-width: 764px) {
  .c-formConfirmation__table th, .c-formConfirmation__table td {
    display: block;
  }
}
@media screen and (min-width: 765px) {
  .c-formConfirmation__table th {
    max-width: 40%;
  }
}
.c-formConfirmation__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px 24px;
}
@media screen and (max-width: 1000px) {
  .c-formConfirmation__footer {
    flex-direction: column;
  }
}

[class^=c-formButton].is-disabled, [class^=c-formButton].is-disabled:hover {
  background-color: #dddddd;
  cursor: default;
}

.c-formButton--cancel {
  background-color: #aaaaaa;
}
.c-formButton--cancel:hover {
  background-color: #bbbbbb;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
  margin: 32px 0;
}

.c-logoList {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(124px, 1fr));
  gap: 40px 24px;
}
.c-logoList__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.c-logoList__logo__image {
  display: block;
  max-width: 120px;
}

.c-catchCopy__copy {
  color: #19233b;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.4em;
  font-weight: 400;
  margin: 0;
}

.c-overflowBox {
  position: relative;
}
.c-overflowBox__flow {
  position: absolute;
  top: 10%;
  right: 0;
  background-color: rgba(255, 255, 255, 0.8);
  color: #19233b;
  padding: 32px;
  width: 45%;
}
@media screen and (max-width: 764px) {
  .c-overflowBox__flow {
    position: relative;
    width: auto;
    margin: -16px 12px 0;
  }
}

.c-unitDisplay__unit {
  font-size: 0.6em;
  padding-left: 2px;
}

.c-annotation {
  display: block;
  padding-left: 1.2em;
}
.c-annotation::before {
  display: inline-block;
  content: "※";
  margin-left: -1.2em;
}

.c-imageLink {
  display: inline-block;
  outline: none;
}

.c-floatingBanner, .c-floatingBanner.-documentRequest {
  position: fixed;
  display: none;
}
.c-floatingBanner.-visible {
  display: block;
}
@media screen and (min-width: 765px) {
  .c-floatingBanner.-documentRequest {
    right: 8px;
    bottom: 48px;
  }
  .c-floatingBanner.-documentRequest .c-floatingBanner__link {
    display: block;
    width: 130px;
    height: 120px;
    background-image: url(../images/banner--documentRequest.svg);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .c-floatingBanner.-documentRequest .c-floatingBanner__label {
    display: none;
  }
}
@media screen and (max-width: 764px) {
  .c-floatingBanner.-documentRequest {
    width: 80%;
    max-width: 360px;
    right: 0;
    bottom: 16px;
    left: 0;
    margin: auto;
  }
  .c-floatingBanner.-documentRequest .c-floatingBanner__link {
    display: block;
    padding: 4px;
    border: 2px solid #001e64;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    color: #001e64;
    text-decoration: none;
  }
  .c-floatingBanner.-documentRequest .c-floatingBanner__label {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 2.2rem;
  }
  .c-floatingBanner.-documentRequest .c-floatingBanner__label::before, .c-floatingBanner.-documentRequest .c-floatingBanner__label::after {
    display: block;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
  }
  .c-floatingBanner.-documentRequest .c-floatingBanner__label::before {
    width: 24px;
    height: 24px;
    background-image: url(../images/icon--documentRequest.svg);
  }
  .c-floatingBanner.-documentRequest .c-floatingBanner__label::after {
    width: 16px;
    height: 10px;
    background-image: url(../images/icon--arrowDown.svg);
  }
}

.c-footerCopy {
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 1px;
  font-size: 1.4rem;
}

.u-tar {
  text-align: right;
}

.u-tac {
  text-align: center;
}

.u-mt1em {
  margin-top: 1em;
}

.u-mt2em {
  margin-top: 2em;
}

.u-mt3em {
  margin-top: 3em;
}

.u-mt4em {
  margin-top: 4em;
}

.u-mt5em {
  margin-top: 5em;
}

@media screen and (min-width: 765px) {
  .u-sp {
    display: none;
  }
}

@media screen and (max-width: 1000px) {
  .u-pc {
    display: none;
  }
}/*# sourceMappingURL=style_common.css.map */