.sp_only_nav {
  display: none;
}
@media screen and (max-width: 909px) {
  .sp_only_nav {
    display: block;
  }
}
.pc_only_nav {
  display: block;
}
@media screen and (max-width: 909px) {
  .pc_only_nav {
    display: none;
  }
}
header {
  position: fixed;
  top: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0px 0px 16px 0px #30476b4d;
  border-radius: 8px;
  max-width: 1260px;
  width: 100%;
}
@media screen and (max-width: 1259px) {
  header {
    margin: 0 16px;
    width: auto;
  }
}
header .header_title {
  container-type: inline-size;
  width: 30%;
  height: 100%;
}
@media screen and (max-width: 909px) {
  header .header_title {
    width: 100%;
  }
}
header h1 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  padding-left: 40px;
  padding-right: 16px;
  line-height: 1.2;
}
header h1 span {
  font-size: 0.95rem;
}
@media screen and (max-width: 909px) {
  header h1 {
    padding-left: 16px;
  }
}
header .menu_toggle {
  display: none;
  /* PCでは隠す */
}
header .global_nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}
header .global_nav ul {
  display: flex;
  gap: 2px 20px;
  flex-wrap: wrap;
}
header .global_nav ul li a {
  color: #1a365d;
  font-weight: 500;
}
header .global_nav ul li a:hover {
  color: #216fb2;
}
header .global_nav .contact {
  border-radius: 8px;
}
header .global_nav .contact a {
  display: block;
  padding: 18px 32px;
  background-color: #1a365d;
  color: #ffffff;
  border-radius: 0 8px 8px 0;
  font-weight: 500;
  white-space: nowrap;
}
header .global_nav .contact a:hover {
  background-color: #216fb2;
}
@media screen and (max-width: 909px) {
  header .menu_toggle {
    display: block;
    /* ボタンを表示 */
    position: relative;
    z-index: 100;
    cursor: pointer;
    border: none;
    border-radius: 0 8px 8px 0;
    background-color: #1a365d;
    padding: 10px;
  }
  header .menu_toggle .hamburger_lines {
    position: relative;
    height: 40px;
    width: 40px;
  }
  header .menu_toggle .hamburger_lines span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s;
  }
  header .menu_toggle .hamburger_lines span:nth-child(1) {
    top: 18px;
  }
  header .menu_toggle .hamburger_lines span:nth-child(2) {
    top: 6px;
  }
  header .menu_toggle .hamburger_lines span:nth-child(3) {
    top: 30px;
  }
  header .menu_toggle.is-active .hamburger_lines span:nth-child(1) {
    transform: rotate(45deg);
    top: 18px;
  }
  header .menu_toggle.is-active .hamburger_lines span:nth-child(2) {
    opacity: 0;
  }
  header .menu_toggle.is-active .hamburger_lines span:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
  }
  header .global_nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.3s;
    /* スライドするアニメーション */
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    display: none;
  }
  header .global_nav .header_title {
    height: auto;
    margin: 14px 0;
    background-color: #fff;
    box-shadow: 0px 0px 16px 0px #30476b4d;
    padding: 6px 0 6px 0;
    border-radius: 8px;
  }
  header .global_nav ul {
    flex-direction: column;
    /* 縦並びに変更 */
    align-items: flex-start;
    margin-left: 32px;
    margin-top: 60px;
    gap: 30px;
  }
  header .global_nav ul li {
    font-size: 1.25rem;
    line-height: 2;
  }
  header .global_nav.is-active {
    display: block;
  }
  header .global_nav .contact {
    width: 100%;
  }
}
footer {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
}
footer .copyright {
  font-size: 0.9rem;
  color: #1a365d;
  font-weight: 500;
}
footer .footer_nav_list {
  display: flex;
  gap: 24px;
  color: #1a365d;
  font-weight: 500;
}
footer .footer_nav_list li:hover {
  color: #216fb2;
}
@media screen and (max-width: 909px) {
  footer {
    flex-direction: column-reverse;
    padding: 50px 32px;
    gap: 60px;
  }
  footer .copyright {
    text-align: center;
  }
  footer .footer_nav_list {
    flex-direction: column;
    gap: 32px;
  }
}
html,
body {
  margin: 0;
  height: 100%;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}
.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}
.pc_only {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}
.pc_only_small {
  display: block;
}
@media screen and (max-width: 455px) {
  .pc_only_small {
    display: none;
  }
}
.sp_only_small {
  display: none;
}
@media screen and (max-width: 455px) {
  .sp_only_small {
    display: block;
  }
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  /*   display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh; */
  /*ファーストビューセクション*/
  /*現在募集中の修学資金・奨学金*/
  /*news*/
  /*実施事業*/
  /*横いっぱいの画像と見出しのやつ*/
  /*奨学金事業について*/
  /*当財団について*/
  /*資料集*/
  /*リンク集*/
  /*お問い合わせ*/
}
body a {
  transition: all 0.3s;
}
body p {
  line-height: 1.8;
}
@media screen and (max-width: 909px) {
  body p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
body .btn {
  display: block;
  padding: 20px 32px 20px 20px;
  font-weight: 700;
  color: #1a365d;
  border: 1px solid #1a365d;
  border-radius: 8px;
  position: relative;
  max-width: 490px;
}
body .btn:hover {
  background-color: #f2f5fb;
}
body .btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #1a365d;
  border-right: 0;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  position: absolute;
}
body .gaibulink {
  position: relative;
}
body .gaibulink::after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 18px;
  background-image: url(../images/external_link.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: 8px;
  top: 8px;
}
body .page-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 909px) {
  body .page-wrapper {
    flex-direction: row;
    height: 100vh;
    /* ファーストビューの高さに固定 */
  }
}
body .page-wrapper .slider-container {
  position: relative;
  width: 100%;
  height: 32vh;
  /* モバイル時の高さ */
  overflow: hidden;
  background-color: #000;
  /* 各スライドのディレイ設定 */
  /* ズームアウトとフェードのキーフレーム */
}
@media screen and (min-width: 909px) {
  body .page-wrapper .slider-container {
    width: 50vw;
    /* 横幅半分 */
    height: 100%;
    /* 親要素(100vh)に対して100% */
  }
}
body .page-wrapper .slider-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: zoomFade 16s infinite;
}
body .page-wrapper .slider-container .slide:nth-child(1) {
  animation-delay: 0s;
}
body .page-wrapper .slider-container .slide:nth-child(2) {
  animation-delay: 4s;
}
body .page-wrapper .slider-container .slide:nth-child(3) {
  animation-delay: 8s;
}
body .page-wrapper .slider-container .slide:nth-child(4) {
  animation-delay: 12s;
}
@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(1.2);
  }
  10% {
    opacity: 1;
  }
  25% {
    opacity: 1;
  }
  35% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
body .page-wrapper .first-view-content {
  width: 50%;
  background-image: url(../images/fv_bg.png);
  background-size: cover;
  padding: 80px;
}
@media screen and (max-width: 909px) {
  body .page-wrapper .first-view-content {
    width: 100%;
    padding: 20px 16px 40px 16px;
  }
}
body .page-wrapper .first-view-content .first-view-content-inner {
  margin: 100px auto 0 auto;
}
@media screen and (max-width: 909px) {
  body .page-wrapper .first-view-content .first-view-content-inner {
    margin: 0 auto;
  }
}
body .page-wrapper .first-view-content .first-view-content-inner .first-view-title {
  margin-bottom: 40px;
}
body .page-wrapper .first-view-content .first-view-content-inner .first-view-title h2 {
  font-size: 2rem;
  font-weight: normal;
  margin-bottom: 8px;
}
body .page-wrapper .first-view-content .first-view-content-inner .first-view-title h2 span {
  font-size: 1.25rem;
}
@media screen and (max-width: 909px) {
  body .page-wrapper .first-view-content .first-view-content-inner .first-view-title h2 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  body .page-wrapper .first-view-content .first-view-content-inner .first-view-title h2 span {
    font-size: 1rem;
  }
}
body .page-wrapper .first-view-content .first-view-content-inner .first-view-title p {
  color: #bf8c26;
}
@media screen and (max-width: 909px) {
  body .page-wrapper .first-view-content .first-view-content-inner .first-view-title p {
    font-size: 0.9rem;
  }
}
body .page-wrapper .first-view-content .first-view-content-inner .first-view-text {
  font-size: 1.25rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 909px) {
  body .page-wrapper .first-view-content .first-view-content-inner .first-view-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
body .page-wrapper .first-view-content .first-view-content-inner .first-view-btn {
  float: right;
  background-color: #1a365d;
  color: #ffffff;
  border-radius: 25px;
  padding: 10px 46px 10px 20px;
  position: relative;
}
body .page-wrapper .first-view-content .first-view-content-inner .first-view-btn::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid #ffffff;
  border-bottom: 0;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
body .page-wrapper .first-view-content .first-view-content-inner .first-view-btn:hover {
  background-color: #216fb2;
}
body main {
  flex: 1;
  position: relative;
  width: 100%;
}
body main .page_top {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 900;
}
body main .page_top a {
  display: block;
  background-color: #1a365d;
  width: 46px;
  height: 46px;
  border-radius: 25px 0 0 0;
  position: relative;
}
body main .page_top a:hover {
  background-color: #216fb2;
}
body main .page_top a::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 6px solid #ffffff;
  border-top: 0;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
body main .h2-title {
  margin-bottom: 20px;
  color: #1a365d;
  font-size: 2.5rem;
  font-weight: normal;
}
body main .h2-title span {
  display: block;
  font-size: 1.5rem;
  color: #bf8c26;
}
@media screen and (max-width: 909px) {
  body main .h2-title {
    font-size: 2rem;
  }
  body main .h2-title span {
    font-size: 1.25rem;
  }
}
body main article {
  margin: 0 auto;
}
body .info_area {
  display: flex;
  gap: 32px;
  align-items: end;
  position: absolute;
  top: -212px;
  max-width: 1200px;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (max-width: 909px) {
  body .info_area {
    position: initial;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
  }
}
body .info_area .scholarship {
  background-color: #ffffff;
  box-shadow: 0px 0px 16px 0px #30476b4d;
  border-radius: 8px;
  min-height: 180px;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 909px) {
  body .info_area .scholarship {
    width: calc(100% - 32px);
    margin: 0 auto;
  }
}
body .info_area .scholarship .scholarship-title {
  background-color: #1a365d;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px 8px 0 0;
  font-size: 1.25rem;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body .info_area .scholarship .scholarship-title .sc_links {
  font-size: 1rem;
  font-weight: normal;
}
@media screen and (max-width: 909px) {
  body .info_area .scholarship .scholarship-title {
    font-size: 1.15rem;
  }
  body .info_area .scholarship .scholarship-title .sc_links {
    font-size: 0.9rem;
  }
}
body .info_area .scholarship .scholarship-list {
  padding: 0 20px 20px 20px;
}
body .info_area .scholarship .scholarship-list ul {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 110px;
}
body .info_area .scholarship .scholarship-list ul li {
  line-height: 1.8;
}
body .info_area .scholarship .scholarship-list ul li a {
  position: relative;
  text-decoration: underline;
}
body .info_area .scholarship .scholarship-list ul li a span::after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 18px;
  background-image: url(../images/external_link.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: -18px;
  bottom: 0;
}
body .info_area .scholarship .scholarship-list ul li a:hover {
  color: #216fb2;
}
body .info_area .scholarship-link {
  width: 100%;
  max-width: 350px;
  background-color: #ffffff;
  display: block flex;
  border: 1px solid #1a365d;
  padding: 8px;
  gap: 8px;
  align-items: center;
}
body .info_area .scholarship-link:hover {
  background-color: #f2f5fb;
}
body .info_area .scholarship-link img {
  max-width: 64px;
  width: 100%;
  height: fit-content;
  aspect-ratio: 1 / 1;
}
body .info_area .scholarship-link p {
  font-size: 1.15em;
  font-weight: 500;
  line-height: 1.25;
}
body .info_area .scholarship-link p span {
  font-size: 0.85em;
  font-weight: normal;
}
body .news_bg {
  position: relative;
}
body .news_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  max-width: 683px;
  width: 100%;
  height: 250px;
  background-image: url(../images/news_bg01.png);
  background-size: cover;
  z-index: -1;
}
body .news_bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 683px;
  width: 100%;
  height: 250px;
  background-image: url(../images/news_bg02.png);
  background-size: cover;
  z-index: -1;
}
body .news {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 80px 0;
  max-width: 1200px;
  width: calc(100% - 32px);
}
@media screen and (max-width: 909px) {
  body .news {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }
}
body .news .news_ul li {
  border-bottom: 1px solid #b4b4b4;
  transition: all 0.3s;
  padding-top: 16px;
}
body .news .news_ul li:hover {
  background-color: #f2f5fb;
  padding-left: 1rem;
}
body .news .news_ul li .date {
  display: block;
  color: #1a365d;
  font-weight: normal;
}
body .news .news_ul li a {
  font-weight: 500;
  color: #191e23;
  padding: 12px 32px 12px 0;
  display: block;
  position: relative;
}
body .news .news_ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid #1a365d;
  border-right: 0;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
body .contents {
  background-color: #f2f5fb;
}
body .contents .contents-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}
body .contents .contents-inner .flexbox {
  display: flex;
  gap: 40px;
}
body .contents .contents-inner .flexbox .project-img .sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}
body .contents .contents-inner .flexbox .project-img .sticky img {
  max-width: 520px;
  width: 100%;
}
@media screen and (max-width: 909px) {
  body .contents .contents-inner .flexbox {
    flex-direction: column;
    align-items: center;
  }
  body .contents .contents-inner .flexbox .project-img .sticky {
    position: initial;
  }
}
body .contents .contents-inner .flexbox .project-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 100px;
}
@media screen and (max-width: 909px) {
  body .contents .contents-inner .flexbox .project-content {
    margin-top: 40px;
    margin-left: 16px;
  }
}
body .contents .contents-inner .flexbox .project-content .project-list {
  background-color: #ffffff;
  padding: 32px 30px 32px 90px;
  max-width: 620px;
  position: relative;
  box-shadow: 0px 0px 16px 0px #30476b4d;
  border-radius: 8px;
}
@media screen and (max-width: 909px) {
  body .contents .contents-inner .flexbox .project-content .project-list {
    padding: 24px 24px 24px 60px;
  }
}
body .contents .contents-inner .flexbox .project-content .project-list h3 {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 14px;
  font-weight: 500;
}
@media screen and (max-width: 909px) {
  body .contents .contents-inner .flexbox .project-content .project-list h3 {
    font-size: 1.15rem;
  }
}
body .contents .contents-inner .flexbox .project-content .project-list p {
  font-weight: 500;
}
@media screen and (max-width: 909px) {
  body .contents .contents-inner .flexbox .project-content .project-list p {
    font-size: 0.9rem;
  }
}
body .contents .contents-inner .flexbox .project-content .project-list ol {
  margin-left: 16px;
  list-style-type: decimal;
}
body .contents .contents-inner .flexbox .project-content .project-list ol li {
  line-height: 1.6;
  font-weight: 500;
  padding-left: 8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 909px) {
  body .contents .contents-inner .flexbox .project-content .project-list ol li {
    font-size: 0.9rem;
  }
}
body .contents .contents-inner .flexbox .project-content .project-list ol li span {
  font-weight: 500;
}
body .contents .contents-inner .flexbox .project-content .project-list::before {
  content: "1";
  position: absolute;
  top: 32px;
  left: -24px;
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  background-color: #1a365d;
  padding: 0 34px 4px 34px;
  border-radius: 0 10px 10px 0;
  display: block;
}
@media screen and (max-width: 909px) {
  body .contents .contents-inner .flexbox .project-content .project-list::before {
    font-size: 1.5rem;
    padding: 0 20px 4px 20px;
    left: -10px;
  }
}
body .contents .contents-inner .flexbox .project-content .project-list:nth-child(2)::before {
  content: "2";
}
body .contents .contents-inner .flexbox .project-content .project-list:nth-child(3)::before {
  content: "3";
}
body .contents .contents-inner .flexbox .project-content .project-list:nth-child(4)::before {
  content: "4";
}
body .contents .contents-inner .flexbox .project-content .project-list:nth-child(5)::before {
  content: "5";
}
body .contents .contents-inner .flexbox .project-content .project-list:nth-child(6)::before {
  content: "6";
}
body .contents .contents-inner .flexbox .project-content .project-list:nth-child(7)::before {
  content: "7";
}
body .mv {
  position: relative;
}
body .mv img {
  border-radius: 8px;
}
body .mv .h2-glass {
  position: absolute;
  bottom: -72px;
  left: 45px;
  background-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(12px) brightness(1.5);
  -webkit-backdrop-filter: blur(12px) brightness(1.5);
  padding: 16px 24px;
  margin-right: 16px;
}
body .mv .h2-glass span {
  font-size: 2.5rem;
  font-weight: 400;
  color: #1a365d;
}
@media screen and (max-width: 909px) {
  body .mv .h2-glass {
    left: 16px;
    bottom: -50px;
  }
  body .mv .h2-glass span {
    font-size: 1.35rem;
  }
}
body .mv .about-h2 {
  bottom: -40px;
}
body .mv .documents-h2 {
  bottom: -40px;
}
body .scholarship-about {
  padding: 48px 40px;
  background-image: url(../images/about_bg.png);
  background-size: cover;
  background-repeat: repeat;
}
@media screen and (max-width: 909px) {
  body .scholarship-about {
    padding: 40px 16px;
  }
}
body .scholarship-about .scholarship-about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 110px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner {
    gap: 32px;
  }
}
body .scholarship-about .scholarship-about-inner .scholarship-about-read .read-head {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner .scholarship-about-read .read-head {
    font-size: 1rem;
  }
}
body .scholarship-about .scholarship-about-inner .scholarship-about-content {
  padding: 40px;
  background-color: #ffffff;
  box-shadow: 0px 0px 16px 0px #30476b4d;
  border-radius: 8px;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner .scholarship-about-content {
    padding: 22px;
  }
}
body .scholarship-about .scholarship-about-inner .scholarship-about-content h3 {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 32px;
  font-weight: 500;
  border-bottom: 1px solid #1a365d;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner .scholarship-about-content h3 {
    font-size: 1.15rem;
  }
}
body .scholarship-about .scholarship-about-inner .scholarship-about-content .kingaku {
  display: flex;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner .scholarship-about-content .kingaku {
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
body .scholarship-about .scholarship-about-inner .scholarship-about-content .kingaku dt {
  color: #ffffff;
  font-weight: 700;
  padding: 8px 18px;
  background-color: #1a365d;
  border: 1px solid #1a365d;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner .scholarship-about-content .kingaku dt {
    padding: 8px;
  }
}
body .scholarship-about .scholarship-about-inner .scholarship-about-content .kingaku .flex-box {
  display: flex;
}
body .scholarship-about .scholarship-about-inner .scholarship-about-content .kingaku .flex-box dd {
  border: 1px solid #1a365d;
  background-color: #ffffff;
  padding: 8px 18px;
  margin-left: -1px;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner .scholarship-about-content .kingaku .flex-box {
    flex-direction: column;
  }
  body .scholarship-about .scholarship-about-inner .scholarship-about-content .kingaku .flex-box dd:first-child {
    border-bottom: none;
  }
}
body .scholarship-about .scholarship-about-inner .scholarship-about-content .list-area {
  display: flex;
  gap: 40px;
  margin: 24px 0;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner .scholarship-about-content .list-area {
    flex-direction: column;
    gap: 0px;
  }
}
body .scholarship-about .scholarship-about-inner .scholarship-about-content ul li {
  margin-bottom: 6px;
}
@media screen and (max-width: 909px) {
  body .scholarship-about .scholarship-about-inner .scholarship-about-content ul li {
    font-size: 0.9rem;
  }
}
body .scholarship-about .scholarship-about-inner #sc_list ul li a {
  text-decoration: underline;
  position: relative;
}
body .scholarship-about .scholarship-about-inner #sc_list ul li a span::after {
  content: "";
  position: absolute;
  display: block;
  width: 16px;
  height: 18px;
  background-image: url(../images/external_link.png);
  background-size: contain;
  background-repeat: no-repeat;
  right: -16px;
  bottom: 0;
}
body .scholarship-about .scholarship-about-inner #sc_list ul li a:hover {
  color: #216fb2;
}
body .about {
  padding: 48px 40px;
}
@media screen and (max-width: 909px) {
  body .about {
    padding: 40px 16px;
  }
}
body .about .about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 110px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 909px) {
  body .about .about-inner {
    gap: 40px;
    padding-top: 80px;
  }
}
body .about .about-inner .about-content {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 909px) {
  body .about .about-inner .about-content {
    flex-direction: column;
    gap: 20px;
  }
}
body .about .about-inner .about-content .h3-about {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  background-color: #1a365d;
  padding: 32px;
  max-width: 240px;
  width: 100%;
  border-radius: calc(8px / 2);
  max-height: 100px;
  text-align: center;
}
@media screen and (max-width: 909px) {
  body .about .about-inner .about-content .h3-about {
    font-size: 1.15rem;
    max-width: 100%;
    padding: 8px 16px;
    text-align: left;
  }
}
body .about .about-inner .about-content .about-content-text {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
body .about .about-inner .about-content .about-content-text--history {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
body .about .about-inner .about-content .about-content-text--history img {
  max-width: 360px;
  margin: 0 auto;
  width: 100%;
}
body .about .about-inner .about-content-bg-y {
  background-color: #fffbf2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
body .about .about-inner .about-content-bg-y h3 {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 32px;
  font-weight: 500;
  border-bottom: 1px solid #1a365d;
}
@media screen and (max-width: 909px) {
  body .about .about-inner .about-content-bg-y {
    gap: 32px;
    padding: 24px;
  }
  body .about .about-inner .about-content-bg-y h3 {
    font-size: 1.15rem;
    margin-bottom: 24px;
  }
}
body .documents {
  padding: 48px 40px;
}
@media screen and (max-width: 909px) {
  body .documents {
    padding: 40px 16px;
  }
}
body .documents .documents-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 16px;
}
@media screen and (max-width: 909px) {
  body .documents .documents-inner {
    padding: 80px 16px 40px 16px;
  }
}
body .documents .documents-inner .documents-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}
body .links {
  background-color: #f2f5fb;
}
body .links .links-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}
@media screen and (max-width: 909px) {
  body .links .links-inner {
    padding: 40px 20px;
  }
}
body .links .links-inner h3 {
  font-size: 1.5rem;
  color: #1a365d;
  margin-bottom: 24px;
  font-weight: 500;
  border-bottom: 1px solid #1a365d;
}
body .links .links-inner .link-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  width: 100%;
}
body .links .links-inner .link-list .link-btn {
  padding: 20px 16px;
  border: 1px solid #1a365d;
  background-color: #ffffff;
  text-align: left;
  display: block;
}
body .links .links-inner .link-list .link-btn:hover {
  background-color: #f2f5fb;
}
body .contact {
  background-image: url(../images/contact_bg.png);
  background-size: cover;
  background-repeat: repeat;
}
body .contact .contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  gap: 110px;
}
@media screen and (max-width: 909px) {
  body .contact .contact-inner {
    flex-direction: column;
    gap: 40px;
  }
}
body .contact .contact-inner .h2-contact {
  color: #ffffff;
}
body .contact .contact-inner .h2-contact span {
  color: #ffffff;
}
body .contact .contact-inner .contact-box {
  color: #ffffff;
}
body .contact .contact-inner .contact-box h3 {
  font-size: 1.3rem;
  font-weight: normal;
  margin-bottom: 10px;
}
body .contact .contact-inner .contact-box .contact-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
body .contact .contact-inner .contact-box .contact-list .contact-item {
  font-size: 1.5rem;
  padding: 14px 24px;
  border: 1px solid #ffffff;
}
@media screen and (max-width: 909px) {
  body .contact .contact-inner .contact-box .contact-list .contact-item {
    font-size: 1.15rem;
  }
}
body .contact .contact-inner .contact-box .contact-list .wide {
  grid-column: span 2;
}
