@charset "UTF-8";
/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.75;
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

main {
  background: #fff;
  width: 100%;
} /* margin設定
----------------------- */
.u-mgt {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .u-mgt {
    margin-top: 26px;
  }
}

.u-mgt10 {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .u-mgt10 {
    margin-top: 26px;
  }
}

.u-mgb {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .u-mgb {
    margin-bottom: 26px;
  }
}

.u-mgl {
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .u-mgl {
    padding-left: 26px;
  }
}

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

/* レスポンシブ設定
----------------------- */
.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

.u-pc-only {
  display: block;
}
@media screen and (max-width: 1279px) {
  .u-pc-only {
    display: none;
  }
}

.u-tab-only {
  display: none;
}
@media screen and (max-width: 1279px) {
  .u-tab-only {
    display: block;
  }
}

.u-sp-none {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-sp-none {
    display: none;
  }
}

/* 画像
----------------------- */
.f-img {
  width: 100%;
  display: block;
  object-fit: contain;
}

/* リンク
----------------------- */
.f-link {
  width: 100%;
  display: block;
  transition: 0.3s;
}
.f-link:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.f-link--blue {
  color: #2d75a6;
  text-decoration: underline;
  display: inline;
}
.f-link--blue i {
  padding-left: 5px;
}

/* コンテナー
----------------------- */
.l-container {
  max-width: 1140px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 100%;
    margin: 0 auto;
  }
}

.l-container02 {
  width: 820px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-container02 {
    width: 100%;
    margin: 0 auto 40px;
    padding: 0 12px;
  }
}

.l-container03 {
  width: 270px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-container03 {
    width: 100%;
    margin: 0 auto;
  }
}

.l-flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-flex {
    display: block;
  }
}

/* セクションレイアウト
----------------------- */
.l-section {
  padding: 65px 0 160px;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 45px 0 110px;
  }
}
.l-section--100vh {
  min-height: calc(100vh - 380px);
}
@media screen and (max-width: 1279px) {
  .l-section--100vh {
    min-height: calc(100vh - 390px);
  }
}
@media screen and (max-width: 767px) {
  .l-section--100vh {
    min-height: calc(100vh - 453px);
  }
}

.submenu {
  width: 100%;
}
.submenu__title {
  background-color: #cc0000;
  color: #fff;
  display: block;
  font-size: 18px;
  padding: 12px 16px;
}
.submenu__menu li {
  border-bottom: 1px solid #ccc;
}
.submenu__menu li a {
  display: block;
  padding: 12px 12px;
  transition: 0.3s;
}
.submenu__menu li a::before {
  font-family: "FontAwesome";
  content: "\f138";
  margin-right: 5px;
}
.submenu__menu li a.active {
  background-color: #eee;
}
.submenu__menu li a:hover {
  background-color: #222;
  color: #fff;
  transition: 0.3s;
}

/* ボタン
----------------------- */
.c-btn {
  max-width: 280px;
  height: 50px;
  margin: 25px auto;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 90%;
    height: 40px;
  }
}
.c-btn__link {
  position: relative;
  background: #fff;
  color: #222222;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  border: 1px solid #222222;
  transition: 0.3s;
}
.c-btn__link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.c-btn__link:hover {
  background: #222222;
  color: #fff;
  transition: 0.3s;
}
.c-btn__link i {
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    font-size: 18px;
  }
}

.l-btn {
  max-width: 400px;
  height: 50px;
  margin: 25px auto;
}
@media screen and (max-width: 767px) {
  .l-btn {
    width: 90%;
    height: 40px;
  }
}
.l-btn__link {
  position: relative;
  background: #fff;
  color: #222222;
  border-radius: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  border: 1px solid #222222;
  transition: 0.3s;
}
.l-btn__link::after {
  font-family: "Font Awesome 6 Free";
  content: "\f061";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.l-btn__link:hover {
  background: #222222;
  color: #fff;
  transition: 0.3s;
}
.l-btn__link i {
  padding-left: 5px;
}
@media screen and (max-width: 767px) {
  .l-btn__link {
    font-size: 16px;
  }
}

/* 見出しタイトル
----------------------- */
.c-title {
  font-size: 72px;
  color: #222222;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 36px;
}
.c-title span {
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 8vw;
    padding-bottom: 40px;
    margin-bottom: 18px;
  }
  .c-title span {
    font-size: 3.6vw;
  }
}
.c-title::after {
  position: absolute;
  content: "";
  background: #cc0000;
  height: 48px;
  width: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-title::after {
    height: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-title span.met00 {
    font-feature-settings: "palt";
  }
}
.c-title--blue::before {
  background: #7db8e0;
}

.c-blue-title {
  color: #0a409a;
  font-size: 18px;
  font-weight: 700;
}

.c-blue-title--indent {
  text-indent: -2.6em;
  padding-left: 2.6em;
}

.s-title {
  font-size: 26px;
  color: #222222;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  .s-title {
    font-size: 5vw;
  }
}

.m-title {
  font-size: 21px;
  font-weight: bold;
  border-left: 5px solid #cc0000;
  margin-bottom: 16px;
  padding: 0 0 0 12px;
}

.b-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .b-title {
    font-size: 6vw;
    margin-bottom: 1em;
  }
}

/* ページヘッダー
----------------------- */
.c-pagehead {
  padding-top: 130px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .c-pagehead {
    padding: 80px 12px 0;
  }
}
.c-pagehead__title {
  font-size: 72px;
  color: #222222;
  font-weight: 700;
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 24px;
  border-bottom: 2px solid #ccc;
}
.c-pagehead__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  background-color: #cc0000;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.c-pagehead__title span {
  font-size: 20px;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-pagehead__title {
    font-size: 8vw;
    padding-bottom: 40px;
    margin-bottom: 18px;
  }
  .c-pagehead__title span {
    font-size: 3.6vw;
  }
}

.breadcrumb {
  margin-bottom: 20px;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  font-size: 13px;
  margin-right: 5px;
}
.breadcrumb ul li::after {
  content: ">";
  margin-left: 5px;
}
.breadcrumb ul li:last-child::after {
  content: "";
}

/* ブロック
----------------------- */
.c-block {
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .c-block {
    padding: 26px 0;
  }
}
.c-block--access iframe {
  width: 100%;
  height: 320px;
}
.c-block--rec .nothing {
  border: 1px solid #111111;
  text-align: center;
  padding: 20px 0;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .c-block--rec .nothing {
    font-size: 18px;
  }
}
.c-block--rec ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px 0 30px;
}
@media screen and (max-width: 1279px) {
  .c-block--rec ul {
    margin: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-block--rec ul {
    row-gap: 10px;
    margin: 30px auto 20px;
    max-width: 390px;
  }
}
.c-block--rec li {
  width: calc(25% - 10px);
}
@media screen and (max-width: 767px) {
  .c-block--rec li {
    width: calc(50% - 5px);
  }
}
.c-block--rec img {
  border-radius: 7px;
}
@media screen and (max-width: 767px) {
  .c-block--rec img {
    border-radius: 5px;
  }
}
.c-block--company p.title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #2d75a6;
  font-weight: 700;
}
.c-block--company p {
  margin-bottom: 0.7rem;
}
.c-block--company p.last {
  margin-top: 2rem;
  font-weight: 700;
  color: #222222;
  text-align: right;
  font-size: 0.9rem;
}
.c-block--privacy ul {
  margin: 20px 0;
}
.c-block--privacy p {
  margin: 10px 0;
}
.c-block--privacy p.indent {
  text-indent: -1em;
  padding-left: 1em;
}

/* テーブル
----------------------- */
.c-table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.c-table tr {
  border-bottom: 1px solid #e6e6e6;
}
.c-table th {
  background: #fff;
  vertical-align: middle;
  padding: 17px 30px;
}
@media screen and (max-width: 767px) {
  .c-table th {
    width: 100%;
    display: block;
    padding: 10px 5% 3px;
    font-size: 14px;
  }
}
.c-table td {
  background: #fff;
  vertical-align: middle;
  padding: 17px 0;
}
@media screen and (max-width: 767px) {
  .c-table td {
    width: 100%;
    display: block;
    padding: 3px 5% 10px;
    line-height: 1.5;
    font-size: 14px;
  }
}
.c-table--com {
  margin: 30px auto 60px;
}
@media screen and (max-width: 767px) {
  .c-table--com {
    margin: 0 auto 30px;
  }
}
.c-table--rec {
  margin: 60px auto 60px;
}
@media screen and (max-width: 767px) {
  .c-table--rec {
    margin: 40px auto 40px;
  }
}
.c-table--rec th {
  width: 320px;
}

/* フォーム
----------------------- */
.c-form {
  padding: 70px 0 0 0;
  margin: 0 auto;
  max-width: 800px;
}
@media screen and (max-width: 1279px) {
  .c-form {
    padding: 40px 0 0 0;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .c-form {
    padding: 30px 0 0 0;
  }
}
.c-form__item {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1279px) {
  .c-form__item {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.c-form__title {
  font-size: 16px;
  font-weight: 700;
  padding-left: 20px;
  width: 260px;
  line-height: 60px;
}
.c-form__title span.require {
  color: #cc0000;
  border: 1px solid #cc0000;
  border-radius: 3px;
  font-size: 14px;
  padding: 0 10px;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .c-form__title span.require {
    font-size: 14px;
  }
}
@media screen and (max-width: 1279px) {
  .c-form__title {
    padding-left: 0px;
    width: 100%;
    line-height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-form__title {
    font-size: 16px;
    line-height: 40px;
  }
}
.c-form input {
  background: #efefef;
  height: 45px;
  width: calc(100% - 260px);
  border: 1px solid #cccccc;
  padding: 0 10px;
  font-size: 16px;
}
@media screen and (max-width: 1279px) {
  .c-form input {
    width: 100%;
  }
}
.c-form textarea {
  background: #efefef;
  width: calc(100% - 260px);
  border: 1px solid #cccccc;
  padding: 10px;
  font-size: 16px;
  height: 180px;
}
@media screen and (max-width: 1279px) {
  .c-form textarea {
    width: 100%;
  }
}
.c-form__radio {
  height: 60px;
  width: calc(100% - 260px);
  margin-bottom: 40px;
}
@media screen and (max-width: 1279px) {
  .c-form__radio {
    width: 100%;
    height: auto;
    margin: 10px 0 0 0;
  }
}
.c-form__radio .wrapper {
  display: flex;
  margin: 0 0 0 0;
}
@media screen and (max-width: 1279px) {
  .c-form__radio .wrapper {
    margin-bottom: 20px;
    padding: 0 3%;
  }
}
.c-form__radio .wrapper label {
  display: flex;
  padding: 16px 90px 10px 10px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .c-form__radio .wrapper label {
    padding: 0 0 0 0;
    align-items: center;
    width: 50%;
  }
}
.c-form__radio .wrapper label p {
  padding-left: 10px;
  font-size: 18px;
  font-weight: 700;
}
.c-form p.caption {
  display: block;
  width: 100%;
  font-size: 14px;
  text-indent: -1em;
  padding-left: 1em;
}
.c-form__btnarea {
  margin: 60px 0 0 0;
  padding-left: 260px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1279px) {
  .c-form__btnarea {
    padding-left: 0px;
  }
}
@media screen and (max-width: 767px) {
  .c-form__btnarea {
    margin: 40px 0 0 0;
  }
}
.c-form__btnarea p.privacy {
  display: inline;
  margin-top: 20px;
  font-size: 14px;
}
.c-form__btn {
  background: #222222 !important;
  border: 1px solid #222222 !important;
  border-radius: 10px;
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  transition: 0.3s;
  height: 50px;
  max-width: 280px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-form__btn {
    max-width: 100%;
  }
}
.c-form__btn:hover {
  background: #fff !important;
  color: #222222 !important;
  transition: 0.3s;
}

input[type=radio] {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ef9a31;
  content: "";
}

/* ===============================================
ヘッダー
=============================================== */
.p-header {
  position: fixed;
  background: #fff;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 112px;
  z-index: 999;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-header {
    border-radius: 0;
    height: 60px;
    width: 100%;
    top: 0;
    border: none;
  }
}
.p-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 5%;
}
.p-header__logo {
  width: 480px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 60%;
  }
}
.p-header__list {
  display: flex;
  justify-content: right;
  font-size: 16px;
  width: 540px;
  padding-right: 5%;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    width: 100%;
    flex-direction: column;
    margin-top: 60px;
    padding: 0;
    height: auto;
    background: #fff;
    justify-content: flex-start;
    box-shadow: 0px 30px 30px -20px rgba(37, 83, 121, 0.3);
  }
}
.p-header__item {
  width: 210px;
  margin-left: 20px;
  position: relative;
}
.p-header__item a {
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .p-header__item a {
    padding: 10px 15px;
  }
}
.p-header__item .p-header__sub-list {
  display: none;
  margin-bottom: 10px;
}
.p-header__item .p-header__sub-list a {
  display: block;
  padding: 8px 30px;
}
.p-header__item .p-header__sub-list a:hover {
  transition: 0.2s;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-header__item .p-header__sub-list {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-header__item {
    padding: 0;
    width: auto;
    margin-left: 0;
    text-align: left;
  }
}
.p-header__item:hover .p-header__sub-list {
  display: block;
  width: 100%;
  position: absolute;
  top: 36px;
  left: 0;
  background-color: #fff;
  padding: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .p-header__item:hover .p-header__sub-list {
    display: block;
    position: static;
    box-shadow: none;
  }
}
.p-header__item:hover .p-header__sub-list a {
  display: block;
  font-size: 16px;
  padding: 10px 16px;
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-header__item:hover .p-header__sub-list a {
    padding: 8px 30px;
  }
}
.p-header__item:hover .p-header__sub-list a:hover {
  transition: 0.2s;
  color: #fff;
  background-color: #222;
}
.p-header__link {
  transition: 0.2s;
}
.p-header__link:hover {
  transition: 0.2s;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .p-header__link {
    display: block;
    padding: 10px 20px;
  }
}

/* ===============================================
ナビゲーションメニュー
=============================================== */
.p-navi__hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-navi__hamburger {
    display: block;
    position: fixed;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 999;
    background: #222222;
    right: 0;
    top: 0;
  }
}
.p-navi__hamburger-span {
  position: absolute;
  display: block;
  width: 35px;
  height: 3px;
  background-color: #fff;
  left: 0;
  right: 0;
  margin: auto;
  transition: all 0.2s ease;
}
.p-navi__hamburger-span:nth-child(1) {
  top: 20px;
}
.p-navi__hamburger-span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.p-navi__hamburger-span:nth-child(3) {
  bottom: 20px;
}
@media screen and (max-width: 767px) {
  .p-navi__list {
    opacity: 0;
    position: fixed;
    transition: 0.2s;
    top: -100%;
    left: 0;
    pointer-events: none;
    z-index: 999;
  }
}

.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(1) {
  top: 27px;
  transform: rotate(-45deg);
}
.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(2) {
  opacity: 0;
}
.p-navi__hamburger.is-open .p-navi__hamburger-span:nth-child(3) {
  bottom: 30px;
  transform: rotate(45deg);
}

@media screen and (max-width: 767px) {
  .p-navi__list.is-open {
    opacity: 1;
    top: 0;
    pointer-events: auto;
    z-index: 999;
  }
}

/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv {
  background: url(../img/kv.jpg) no-repeat center center/cover;
  height: 100%;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
  min-height: 550px;
}
@media screen and (max-width: 767px) {
  .p-kv {
    margin-top: 60px;
    height: 120vw;
  }
}
.p-kv__contents {
  position: absolute;
  top: 24%;
  color: #000;
  left: 10%;
  width: 10%;
  writing-mode: vertical-rl;
}
.p-kv__contents span.red {
  color: #cc0000;
}
@media screen and (max-width: 767px) {
  .p-kv__contents {
    top: 8%;
    left: 42%;
  }
}
.p-kv__contents p.copy {
  font-size: 4vw;
  position: relative;
  font-weight: 700;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.p-kv__contents p.copy::after {
  content: "";
  width: 0.75em;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  background-color: #fff;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-kv__contents p.copy {
    font-size: 10vw;
  }
}
.p-kv__contents .english {
  font-size: 1.2vw;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-kv__contents .english {
    font-size: 3vw;
  }
}

.js-fadeUp {
  opacity: 0; /* 最初は非表示 */
  transform: translateY(30px); /* 下に30pxの位置から */
  transition: opacity 0.8s, transform 0.8s; /* 透過率と縦方向の移動を0.8秒 */
}

.js-fadeUp.is-inview {
  opacity: 1; /* 表示領域に入ったら表示 */
  transform: translateY(0); /* 30px上に移動する */
  transition-delay: 0.5s; /* フェード開始を0.5秒遅らせる */
}

/* ===============================================
TOP
=============================================== */
.p-top-contents {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .p-top-contents {
    padding: 40px 0;
  }
}

.p-scholarship__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-scholarship__box {
    display: block;
  }
}
.p-scholarship__text {
  width: 54%;
}
@media screen and (max-width: 767px) {
  .p-scholarship__text {
    width: auto;
  }
}
.p-scholarship__text .area {
  display: flex;
  margin-bottom: 24px;
}
.p-scholarship__text .area li {
  background-color: #cc0000;
  color: #fff;
  padding: 3px 6px;
  margin-right: 10px;
}
.p-scholarship__img {
  width: 42%;
}
@media screen and (max-width: 767px) {
  .p-scholarship__img {
    width: auto;
  }
}
.p-scholarship__img img {
  max-width: 100%;
}

.content img {
  width: 100%;
  max-width: 100%;
}
.content table {
  border-top: 1px solid #ccc;
  margin-bottom: 40px;
}
.content table tr {
  border-bottom: 1px solid #ccc;
}
.content table tr th {
  font-weight: bold;
  font-size: 16px;
  min-width: 150px;
  padding: 12px 0;
}
@media screen and (max-width: 767px) {
  .content table tr th {
    display: block;
    width: 100%;
  }
}
.content table tr td {
  padding: 12px 0;
  font-size: 15px;
}
.content table tr td a {
  color: #0a409a;
  text-decoration: underline;
}
.content table tr td a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .content table tr td {
    display: block;
    width: 100%;
  }
}
.content .area {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.content .area li {
  background-color: #cc0000;
  color: #fff;
  padding: 3px 6px;
  margin: 0 8px;
}
@media screen and (max-width: 767px) {
  .content .area li {
    font-size: 14px;
    margin: 0 4px;
  }
}

.overview p {
  margin-left: 1em;
}

dl.student {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
dl.student dt {
  background-color: #cc0000;
  color: #fff;
  text-align: center;
  padding: 4px 12px 5px;
  font-size: 18px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  border-radius: 22px;
  margin-bottom: 12px;
}
dl.student dd {
  width: calc(100% - 50px);
  margin-bottom: 12px;
  padding: 4px 0;
}

.area-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .area-flex {
    display: block;
  }
}
.area-flex .area-text {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .area-flex .area-text {
    width: auto;
    margin-bottom: 20px;
  }
}
.area-flex .area-text h3 {
  color: #cc0000;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 16px;
  padding-left: 40px;
  position: relative;
}
.area-flex .area-text h3 span {
  font-size: 14px;
  display: block;
}
.area-flex .area-text h3:before {
  font-size: 40px;
  font-family: "FontAwesome";
  content: "\f041";
  position: absolute;
  left: 0;
  top: 6px;
}
.area-flex .area-photo {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .area-flex .area-photo {
    width: auto;
  }
}

.privacy {
  margin-bottom: 60px;
}
.privacy h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 28px;
}

/* ===============================================
サービスについて
=============================================== */
.p-service__list {
  display: flex;
  justify-content: space-between;
  margin: 70px 0 0 0;
}
@media screen and (max-width: 1279px) {
  .p-service__list {
    row-gap: 30px;
    flex-wrap: wrap;
    max-width: 780px;
    margin: 70px auto;
  }
}
@media screen and (max-width: 767px) {
  .p-service__list {
    row-gap: 24px;
    margin: 45px auto 0;
  }
}
.p-service__item {
  background: #efefef;
  border-radius: 10px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(25% - 15px);
}
@media screen and (max-width: 1279px) {
  .p-service__item {
    width: calc(50% - 15px);
    max-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__item {
    width: calc(50% - 8px);
    padding: 10px 5%;
  }
}
.p-service__icon {
  height: 115px;
  width: 115px;
}
@media screen and (max-width: 767px) {
  .p-service__icon {
    height: 82px;
    width: 82px;
  }
}
.p-service__title {
  font-size: 18px;
  color: #2d75a6;
  font-weight: 700;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-service__title {
    font-size: 15px;
    font-feature-settings: "palt";
    white-space: nowrap;
  }
}
.p-service__txt {
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .p-service__txt {
    font-size: 14px;
    margin: 0px 0px 10px;
    line-height: 1.5;
  }
}

/* ===============================================
フッター
=============================================== */
.p-footer {
  width: 100%;
  height: 110px;
  background: #efefef;
  color: #000;
  z-index: 888;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 0 3%;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-footer {
    height: auto;
    padding: 5% 3%;
  }
}
.p-footer__wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
}
@media screen and (max-width: 1279px) {
  .p-footer__wrapper {
    grid-template-columns: 240px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__wrapper {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__company img {
    width: 90%;
    max-width: 280px;
    margin: 0 auto;
  }
}
.p-footer__list {
  display: flex;
  align-items: center;
  column-gap: 30px;
  justify-content: flex-end;
}
.p-footer__list i {
  padding-right: 7px;
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    display: block;
    padding: 14px 0;
    text-align: center;
  }
}
.p-footer__link {
  display: flex;
  align-items: center;
  transition: 0.3s;
}
.p-footer__link:hover {
  transition: 0.3s;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .p-footer__link {
    display: block;
    padding: 6px 0;
  }
}
.p-footer__last {
  text-align: right;
  width: 100%;
  grid-column: 1/3;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .p-footer__last {
    text-align: center;
    font-size: 12px;
  }
}
.p-footer__pagetop {
  position: absolute;
  background: #7db8e0;
  border-radius: 50px;
  font-size: 14px;
  padding: 0 16px;
  right: 3%;
  top: -36px;
  cursor: pointer;
  transition: 0.3s;
}
.p-footer__pagetop:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.p-footer__pagetop i {
  padding-right: 5px;
}
.p-footer--fixed {
  position: fixed;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-footer--fixed {
    position: relative;
  }
}/*# sourceMappingURL=style.css.map */