/*--------------------------------------------------
 Reset
--------------------------------------------------*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

input,
button,
textarea,
select,
iframe {
  font: inherit;
  line-height: inherit;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

button {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
  display: inline-block;
}

:disabled {
  cursor: not-allowed;
}

/*--------------------------------------------------
 00.1.Base
--------------------------------------------------*/
@media screen and (max-width: 67.5em) {
  html {
    font-size: 1.482vw;
  }
}

@media screen and (max-width: 48em) {
  html {
    font-size: 16px;
  }
}

@media screen and (max-width: 23.4375em) {
  html {
    font-size: 4.267vw;
  }
}

body {
  position: relative;
  color: #3b5e92;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.125rem;
  line-height: 2;
  font-weight: 400;
}

/*--------------------------------------------------
 00.2.Style
--------------------------------------------------*/
.is-hidden {
  font-size: 0;
  line-height: 0;
}

.js-anim {
  opacity: 0;
  transition: 1s cubic-bezier(0.42, 0, 0.58, 1);
}

.js-anim.is-show {
  opacity: 1;
}

.js-load {
  opacity: 0;
  transition: 1s cubic-bezier(0.42, 0, 0.58, 1) 0.1s;
}

.js-load.is-show {
  opacity: 1;
}

/*--------------------------------------------------
 01.1.Header
--------------------------------------------------*/
.l-header {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 9.75rem;
  padding-top: 4.375rem;
  background: #fff;
}

.l-header--top {
}

.header-bnner {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  font-size: 1.0625rem;
  color: #fff;
  background: #3b5e92;
  font-weight: 300;
  padding: 3px 0;
  letter-spacing: 0.065em;
}

.header-bnner p {
  width: 80%;
  margin: 0 auto;
}

.header-bnner__close {
  position: absolute;
  right: 7.5%;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  cursor: pointer;
}

@media screen and (max-width: 48em) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: auto;
    padding: 0;
    background: none;
  }
  .l-header.is-page {
    display: none;
  }
}

.header-logo.is-top {
  position: absolute;
  top: 4.375rem;
  left: 6.59%;
  z-index: 100;
  width: 9.5rem;
}

@media screen and (max-width: 75em) {
  .header-logo.is-top {
    width: 6.25rem;
  }
}

@media screen and (max-width: 48em) {
  .header-logo.is-top {
    z-index: -1;
    width: 29.167%;
    position: absolute;
    top: 4.375rem;
    left: 10%;
  }
}

.header-logo.is-page {
  position: absolute;
  top: 3.125rem;
  left: 6.59%;
  width: 5.125rem;
}

.header-contact {
  position: absolute;
  top: 4.375rem;
  right: 6.59%;
  width: 2.1875rem;
}

@media screen and (max-width: 48em) {
  .header-contact {
    display: none;
  }
}

/*--------------------------------------------------
 01.2.Gnav
--------------------------------------------------*/
@media screen and (max-width: 48em) {
  .gnav {
    display: none;
  }
}

.gnav-list {
  display: flex;
  justify-content: center;
}

.gnav-item {
  margin: 0 1em;
  color: #000;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.13em;
  font-weight: 300;
}

.gnav-item a {
  display: block;
}

@media screen and (max-width: 75em) {
  .gnav-item {
    margin: 0 1em;
  }
}

.gnav-item .icon {
  display: block;
  margin-top: 1.125rem;
  line-height: 0;
  text-align: center;
}

.gnav-item .is-arrow {
  fill: none;
  stroke: #3b5e92;
  width: 0.875rem;
}

.gnav-item .is-circle {
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  margin: 1.125rem auto 0;
  background: #3b5e92;
  border-radius: 50%;
}

/*--------------------------------------------------
 01.4. Sp hamburger
--------------------------------------------------*/
.sp-header {
  display: none;
  line-height: 0;
}

@media screen and (max-width: 48em) {
  .header-bnner {
    position: fixed;
    font-size: 0.8rem;
  }
  .sp-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    padding: 1.875rem 2.5rem;
  }

  .sp-header--top {
    margin-top: 30px;
  }
  .sp-header.is-page {
    background: #fff;
  }
}

.sp-header-logo {
  width: 2.75rem;
}

.buttonHamburger {
  position: relative;
  z-index: 8000;
  width: 2.5rem;
  height: 1.5rem;
  margin-left: auto;
  outline: none;
  background: none;
  border: none;
}

.buttonHamburger-line {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 0.1875rem;
  background-color: #000;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}

.buttonHamburger-line::before,
.buttonHamburger-line::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 3px;
  transition: inherit;
}

.buttonHamburger-line::before {
  top: -0.5625rem;
}

.buttonHamburger-line::after {
  top: 0.5625rem;
}

.buttonHamburger[aria-expanded="true"] .buttonHamburger-line {
  background-color: transparent;
}

.buttonHamburger[aria-expanded="true"] .buttonHamburger-line::before,
.buttonHamburger[aria-expanded="true"] .buttonHamburger-line::after {
  top: 0;
}

.buttonHamburger[aria-expanded="true"] .buttonHamburger-line::before {
  transform: rotate(45deg);
}

.buttonHamburger[aria-expanded="true"] .buttonHamburger-line::after {
  transform: rotate(-45deg);
}

.sp-nav {
  position: fixed;
  top: 0;
  right: -22.0625rem;
  width: 22.0625rem;
  height: 100vh;
  padding: 17.08vh 0 0 12.75%;
  background: #fff;
  transition: 0.4s ease-out;
}

.sp-nav .title {
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.23em;
  font-weight: 500;
}

.sp-nav .list {
  margin-bottom: 9.757vh;
}

.sp-nav .item {
  position: relative;
  margin-top: 2.1875rem;
  padding-left: 1.25rem;
  color: #000;
  font-size: 1.1875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.sp-nav .item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.5rem;
  background: #3b5e92;
  border-radius: 50%;
}

.sp-nav .contact {
  margin-top: 2.1875rem;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.015em;
}

.sp-nav .contact .icon {
  margin-right: 0.625rem;
}

.sp-nav .contact .is-mail {
  fill: #3b5e92;
  width: 1.75rem;
  vertical-align: middle;
}

.sp-nav .logo {
  width: 5.875rem;
  position: absolute;
  bottom: 7.32vh;
  left: 50%;
  transform: translateX(-50%);
}

.sp-nav.is-show {
  right: 0;
}

/*--------------------------------------------------
 01.3.Content
--------------------------------------------------*/
.l-content {
  width: 100%;
}

/*--------------------------------------------------
 01.4.Footer
--------------------------------------------------*/
.l-footer {
  width: 100%;
  padding: 4.375rem 0;
  text-align: center;
}

@media screen and (max-width: 48em) {
  .l-footer {
    padding: 2.375rem 10% 2.0625rem;
    text-align: left;
  }
}

.l-footer.is-top {
  background-color: #fff;
}

.l-footer.is-top .icon svg {
  fill: #3b5e92;
  stroke: none;
}

.l-footer.is-page {
  margin-top: 7.1875rem;
  background-color: #3b5e92;
  color: #fff;
}

.l-footer.is-page .icon svg {
  fill: #fff;
  stroke: none;
}

.footer-access {
  display: inline-block;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 500;
  text-align: left;
}

.footer-access-wrap {
  display: flex;
  width: 100%;
}

@media screen and (max-width: 48em) {
  .footer-access-wrap {
    display: block;
  }
}

.footer-access-wrap + .footer-access-wrap {
  margin-top: 1.25rem;
}

@media screen and (max-width: 48em) {
  .footer-access-wrap + .footer-access-wrap {
    margin-top: 2.5rem;
  }
}

.footer-access-term {
  width: 10.875rem;
}

.footer-access-desc .icon {
  display: inline-block;
  width: 1.25rem;
  margin-right: 1.25rem;
  text-align: center;
  vertical-align: middle;
}

.footer-access-desc .icon .is-mail {
  width: 1.25rem;
}

.footer-access-desc .icon .is-map {
  width: 1rem;
}

.footer-access-desc br.is-sp {
  display: none;
}

@media screen and (max-width: 48em) {
  .footer-access-desc {
    display: flex;
    margin-top: 0.9375rem;
    font-size: 0.9375rem;
    line-height: 1.6;
  }
  .footer-access-desc .icon {
    margin-right: 0.8125rem;
  }
  .footer-access-desc br.is-sp {
    display: block;
  }
}

/*--------------------------------------------------
 02.1.Top kv
--------------------------------------------------*/
@media screen and (max-width: 48em) {
  .swiper-container {
    z-index: -2;
    width: 100%;
    height: 100vh;
  }
}

@media screen and (max-width: 48em) {
  .swiper-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
  }
}

.swiper-slide {
  width: 100%;
  padding-bottom: 81.333%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.slider-item1 {
  background-image: url(../img/1x/top_mv_img_01.jpg);
}

.slider-item2 {
  background-image: url(../img/1x/top_mv_img_02.jpg);
}

.slider-item3 {
  background-image: url(../img/1x/top_mv_img_03.jpg);
}

.slider-item1-test2 {
  background-image: url(../img/test2/top_mv_img_01.jpg);
}

.slider-item2-test2 {
  background-image: url(../img/test2/top_mv_img_02.jpg);
}

.slider-item3-test2 {
  background-image: url(../img/test2/top_mv_img_03.jpg);
}

.slider-item1-test3 {
  background-image: url(../img/test3/top_mv_img_01.jpg);
}

.slider-item2-test3 {
  background-image: url(../img/test3/top_mv_img_02.jpg);
}

.slider-item3-test3 {
  background-image: url(../img/test3/top_mv_img_03.jpg);
}

@media screen and (max-width: 48em) {
  .slider-item1 {
    background-image: url(../img/1x/top_mv_img_01_sp.jpg);
  }
  .slider-item2 {
    background-image: url(../img/1x/top_mv_img_02_sp.jpg);
  }
  .slider-item3 {
    background-image: url(../img/1x/top_mv_img_03_sp.jpg);
  }
}

.top-kv .scroll {
  display: none;
}

@media screen and (max-width: 48em) {
  .top-kv .scroll {
    display: block;
    position: fixed;
    bottom: 0.9375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.75rem;
  }
}

/*--------------------------------------------------
 02.2.Top establishment
--------------------------------------------------*/
.establishment {
  position: relative;
  z-index: 2000;
  padding: 4.8125rem 0 4.375rem;
  background-color: #3b5e92;
  color: #fff;
  text-align: center;
}

.establishment .title {
  font-size: 1.5625rem;
  line-height: 1;
}

.establishment .text {
  margin-top: 2.5625rem;
  font-size: 1.025rem;
  line-height: 2;
  letter-spacing: 0.14em;
  font-weight: 300;
}

@media screen and (max-width: 48em) {
  .establishment {
    padding: 4.375rem 10%;
    text-align: left;
  }
  .establishment .title {
    text-align: center;
  }
  .establishment .text {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 1.9375;
    letter-spacing: 0.08em;
  }
  .establishment .text br.is-pc {
    display: none;
  }
}

/*--------------------------------------------------
 03.1.Overview
--------------------------------------------------*/
.section {
  position: relative;
  max-width: 67.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 0.3125rem;
  padding-left: 0.3125rem;
}

@media screen and (max-width: 48em) {
  .section {
    padding-right: 10%;
    padding-left: 10%;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 48em) {
  .flex {
    display: block;
  }
}

.flex-left {
  width: 25%;
}

.flex-right-img {
  padding-top: 1.2rem;
}

@media screen and (max-width: 48em) {
  .flex-left {
    width: 100%;
  }
}

.flex-right {
  width: 72.15%;
}

@media screen and (max-width: 48em) {
  .flex-right {
    width: 100%;
    margin-top: 2.5rem;
  }
}

.page-title {
  padding: 0.3125rem 0 0.3125rem 0.75rem;
  border-left: 11px solid #3b5e92;
  color: #000;
  font-size: 1.3125rem;
  line-height: 1.61905;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 48em) {
  /* .page-title br {
    display: none;
  } */
}

.page-top {
  margin-top: 4.375rem;
  margin-bottom: -1.875rem;
}

.page-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14.375rem;
  margin-left: auto;
  height: 2.8125rem;
  background: #3b5e92;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.page-top a svg {
  width: 1rem;
  margin-right: 1.25rem;
}

.overview-block1 {
  margin-top: 5.625rem;
}

.overview-block1 .text {
  padding: 1.25rem 1.25rem;
  border-top: 1px solid #3b5e92;
  border-bottom: 1px solid #3b5e92;
  font-size: 1.025rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 48em) {
  .overview-block1 {
    margin-top: 9rem;
  }
  .overview-block1 .text {
    font-size: 1rem;
    line-height: 1.9375;
    letter-spacing: 0.1em;
  }
}

.overview-block2 {
  align-items: center;
  margin-top: 6.25rem;
}

.overview-block2 .text {
  padding: 1.25rem 1.25rem;
  border-top: 1px solid #3b5e92;
  border-bottom: 1px solid #3b5e92;
  font-size: 1.025rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 48em) {
  .overview-block2 .text {
    font-size: 1rem;
    line-height: 1.9375;
    letter-spacing: 0.1em;
  }
}

.overview-block4 {
  margin-top: 6.25rem;
}

.overview-block4 .text {
  padding: 1.25rem 1.25rem;
  border-top: 1px solid #3b5e92;
  border-bottom: 1px solid #3b5e92;
  font-size: 1.025rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 48em) {
  .overview-block4 .text {
    font-size: 1rem;
    line-height: 1.9375;
    letter-spacing: 0.1em;
  }
}

.overview-block3 {
  margin-top: 6.25rem;
}

.overview-block3 table {
  width: 50%;
}

.overview-block3 th {
  height: 3.4375rem;
  padding-left: 1.25rem;
  background: #3b5e92;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.35em;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}

.overview-block3 td {
  height: 3.75rem;
  padding-left: 1.25rem;
  border-top: 1px solid #3b5e92;
  border-right: 1px solid #3b5e92;
  border-bottom: 1px solid #3b5e92;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.25em;
  text-align: left;
  vertical-align: middle;
}

.overview-block3 td:first-child {
  width: 6.25rem;
  padding: 0;
  border-right: 1px dashed #3b5e92;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: center;
}

.overview-block3 table:first-child td:first-child {
  border-left: 1px solid #3b5e92;
}

.overview-block3 table:first-child th {
  border-right: 1px solid #fff;
}

@media screen and (max-width: 48em) {
  .overview-block3 table {
    width: 100%;
  }
  .overview-block3 table:first-child th,
  .overview-block3 table th {
    border-right: 1px solid #3b5e92;
  }
  .overview-block3 table td:first-child {
    border-left: 1px solid #3b5e92;
  }
}

/*--------------------------------------------------
 04.1.Scholarship
--------------------------------------------------*/
.scholarship-block1 {
  margin-top: 5.625rem;
}

.scholarship-block1 .title {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2125rem;
  line-height: 1;
  letter-spacing: 0.07em;
  text-align: center;
}

.scholarship-block1 .text {
  margin-top: 6.25rem;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5625rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.scholarship-block1 .text br.is-sp {
  display: none;
}

@media screen and (max-width: 48em) {
  .scholarship-block1 {
    margin-top: 0;
    padding-top: 9rem;
  }
  .scholarship-block1 .title {
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.07em;
  }
  .scholarship-block1 .text {
    margin-top: 4.375rem;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .scholarship-block1 .text br.is-sp {
    display: block;
  }
}

.scholarship-block2,
.scholarship-block3,
.scholarship-block4,
.scholarship-block5,
.scholarship-block6,
.scholarship-block7,
.scholarship-block8 {
  margin-top: 6.25rem;
}

.scholarship-block2 .text,
.scholarship-block3 .text,
.scholarship-block4 .text,
.scholarship-block5 .text,
.scholarship-block6 .text,
.scholarship-block7 .text,
.scholarship-block8 .text {
  font-size: 1.025rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.scholarship-block2 .note,
.scholarship-block3 .note,
.scholarship-block4 .note,
.scholarship-block5 .note,
.scholarship-block6 .note,
.scholarship-block7 .note,
.scholarship-block8 .note {
  margin-top: 1.25rem;
  font-size: 0.91rem;
  line-height: 1.5625;
  letter-spacing: 0.06em;
}

.scholarship-block2 .note + .text,
.scholarship-block3 .note + .text,
.scholarship-block4 .note + .text,
.scholarship-block5 .note + .text,
.scholarship-block6 .note + .text,
.scholarship-block7 .note + .text,
.scholarship-block8 .note + .text {
  margin-top: 1.875rem;
}

.scholarship-block2 table,
.scholarship-block3 table,
.scholarship-block4 table,
.scholarship-block5 table,
.scholarship-block6 table,
.scholarship-block7 table,
.scholarship-block8 table {
  margin-top: 1.25rem;
}

.scholarship-block2 .table-wrap,
.scholarship-block3 .table-wrap,
.scholarship-block4 .table-wrap,
.scholarship-block5 .table-wrap,
.scholarship-block6 .table-wrap,
.scholarship-block7 .table-wrap,
.scholarship-block8 .table-wrap {
  overflow: auto;
}

@media screen and (max-width: 48em) {
  .scholarship-block2 .text,
  .scholarship-block3 .text,
  .scholarship-block4 .text,
  .scholarship-block5 .text,
  .scholarship-block6 .text,
  .scholarship-block7 .text,
  .scholarship-block8 .text {
    font-size: 1rem;
    line-height: 1.9375;
    letter-spacing: 0.1em;
  }
  .scholarship-block2 .note,
  .scholarship-block3 .note,
  .scholarship-block4 .note,
  .scholarship-block5 .note,
  .scholarship-block6 .note,
  .scholarship-block7 .note,
  .scholarship-block8 .note {
    font-size: 0.875rem;
    line-height: 1.57143;
    letter-spacing: 0.06em;
  }
}

.scholarship-table1 {
  width: 100%;
}

.scholarship-table1 th {
  padding: 1.25rem 0 1.25rem 1.25rem;
  background: #3b5e92;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1.85294;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
}

.scholarship-table1 td {
  width: 20.0625rem;
  padding: 1.25rem;
  border-right: 1px dashed #3b5e92;
  border-bottom: 1px solid #3b5e92;
  border-top: 1px solid #3b5e92;
  font-size: 1.025rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: top;
}

.scholarship-table1 td:last-child {
  border-right: 1px solid #3b5e92;
}

.scholarship-table1 thead th {
  border-top: 1px solid #3b5e92;
  border-right: 1px dashed #fff;
  border-bottom: 1px solid #fff;
}

.scholarship-table1 thead th:first-child {
  border-right: 1px solid #fff;
}

.scholarship-table1 thead th:last-child {
  border-right: 1px solid #3b5e92;
}

.scholarship-table1 tbody th {
  width: 8.125rem;
  border-top: 1px solid #fff;
}

.scholarship-table1 tbody tr:last-child th {
  border-bottom: 1px solid #3b5e92;
}

.scholarship-table1 .bd-dashed td {
  border-top: 1px dashed #3b5e92;
  border-bottom: 1px dashed #3b5e92;
}

.scholarship-table1 .bd-dashed td a {
  font-size: 0.95rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  width: 165px;
  display: block;
  padding: 8px 15px 10px 15px;
  margin-top: 8px;
  margin-left: calc(100% - 165px);
  border-radius: 6px;
  background-color: #3b5e92;
  transition: opacity 0.5s;
}
.scholarship-table1 .bd-dashed td a:hover {
  opacity: 0.8;
}

.bd-dashed__indent {
  display: block;
  text-indent: -3.3em;
  padding-left: 3.5em;
}

@media screen and (max-width: 48em) {
  .scholarship-table1 {
    width: 30rem;
  }
  .scholarship-table1 td {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.08em;
  }
  .scholarship-table1 th {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
}

.scholarship-table2.is-pc {
  width: 100%;
}

.scholarship-table2.is-pc th {
  padding: 1.25rem;
  background: #3b5e92;
  border: 1px solid #3b5e92;
  border-right: 1px dashed #fff;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.scholarship-table2.is-pc td {
  padding: 1.1rem;
  border: 1px solid #3b5e92;
  border-right: 1px dashed #3b5e92;
  font-size: 1.125rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: top;
}

.scholarship-table2.is-pc .capacity {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.scholarship-table2.is-pc th + th {
  border-left: 1px dashed #fff;
}

.scholarship-table2.is-pc th:last-child {
  border-right: 1px solid #3b5e92;
}

.scholarship-table2.is-pc td + td {
  border-left: 1px dashed #3b5e92;
}

.scholarship-table2.is-pc td:last-child {
  border-right: 1px solid #3b5e92;
}

@media screen and (max-width: 48em) {
  .scholarship-table2.is-pc {
    display: none;
  }
}

.scholarship-table2.is-sp {
  display: none;
}

@media screen and (max-width: 48em) {
  .scholarship-table2.is-sp {
    display: table;
    width: 100%;
    border: 1px solid #3b5e92;
  }
  .scholarship-table2.is-sp th {
    padding: 1.25rem;
    background: #3b5e92;
    color: #fff;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: left;
    vertical-align: top;
    white-space: nowrap;
  }
  .scholarship-table2.is-sp td {
    padding: 1.25rem;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.1em;
    text-align: left;
    vertical-align: top;
  }
  .scholarship-table2.is-sp tr + tr th {
    border-top: 1px solid #fff;
  }
  .scholarship-table2.is-sp tr + tr td {
    border-top: 1px solid #3b5e92;
  }
}

.scholarship-table3 {
  width: 100%;
}

.scholarship-table3 th {
  padding: 1.25rem;
  background: #3b5e92;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
}

.scholarship-table3 td {
  padding: 1.25rem;
  border: 1px solid #3b5e92;
  font-size: 1.025rem;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: middle;
}

.scholarship-table3 th:last-child {
  border-right: 1px solid #3b5e92;
}

.scholarship-table3 thead th {
  border-top: 1px solid #3b5e92;
}

.scholarship-table3 tbody th {
  border-right: 1px solid #3b5e92;
}

.scholarship-table3 tbody tr:last-child th {
  border-bottom: 1px solid #3b5e92;
}

@media screen and (max-width: 48em) {
  .scholarship-table3 th {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.08em;
    white-space: nowrap;
  }
  .scholarship-table3 td {
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.08em;
  }
}

/*--------------------------------------------------
 05.1.Information
--------------------------------------------------*/
.information-text {
  max-width: 66.875rem;
  margin: 6.25rem auto 0;
  padding: 0 0.3125rem;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5625rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 48em) {
  .information-text {
    margin: 0 10%;
    padding-top: 9rem;
    font-size: 1.25rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
}

.information-block1 {
  margin-top: 5.625rem;
}

.information-block2,
.information-block3 {
  margin-top: 6.25rem;
}

.information-table {
  width: 100%;
  border: 1px solid #3b5e92;
}

.information-table th {
  width: 13.0625rem;
  padding: 2rem 1.25rem;
  background: #3b5e92;
  border-bottom: 1px solid #fff;
  color: #fff;
  font-size: 1.0625rem;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.information-table tr:last-child th {
  border-bottom: none;
}

.information-table td {
  padding: 1.25rem 1.25rem;
  border: 1px solid #3b5e92;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.13em;
  text-align: left;
  vertical-align: middle;
}
.information-table td a {
  display: inline-block;
}
.information-table td a:first-child {
  margin-right: 20px;
}

@media screen and (max-width: 48em) {
  .information-table {
    display: block;
  }
  .information-table tbody,
  .information-table tr,
  .information-table th,
  .information-table td {
    display: block;
    width: 100%;
    border: none;
  }
  .information-table th,
  .information-table td {
    padding: 1.25rem 1.25rem;
    font-size: 1rem;
    line-height: 1.625;
    letter-spacing: 0.08em;
  }
}

th.capacity,
td.capacity {
  width: 95px;
}
th.pay_back,
td.pay_back {
  width: 115px;
}

/*--------------------------------------------------
 奨学生の義務の下部　ボタン追加
--------------------------------------------------*/
.btn-flex {
  display: flex;
  margin-top: 40px;
}
.btn-flex-item:first-child {
  margin-right: 10px;
}
.btn-flex-item {
  color: #fff;
  font-size: 0.95rem;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin-top: 8px;
  border-radius: 6px;
  background-color: #3b5e92;
  transition: 0.5s;
  max-width: 250px;
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.1em;
}
.btn-flex-item img {
  max-width: 16px;
  width: 100%;
  margin-left: 15px;
}
@media(hover: hover) {
  .btn-flex-item:hover {
    opacity: 0.8;
    transition: 0.5s;
  }
}
@media screen and (max-width: 48em) {
  .btn-flex {
    display: block;
  }
}