@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap');
/* =======================================

	CommonElements

======================================= */
:root {
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}
html {
  font-size: 62.5%;
}
body {
  color: #333333;
  line-height: 2;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', 'Yu Gothic Medium', YuGothic, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  position: relative;
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
}
a {
  color: #333333;
  text-decoration: none;
}
a.underline {
  text-decoration: underline;
}
.container {
  margin: 80px 0 0 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
  min-height: calc(100vh - 80px);
}
@media only screen and (max-width: 980px) {
  .container {
    margin: 60px 0 0 0;
    min-height: calc(100vh - 60px);
  }
}
/* ------------------------------------
	header
------------------------------------ */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: #FFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
}
header .inner {
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media print, screen and (min-width: 980px) {
  header .inner {
    max-width: 1550px;
    height: 80px;
  }
  header .logo {
    max-width: 278px;
    margin-top: 8px;
  }
  header .logo img {
    width: 100%;
    display: block;
  }
  header .menu {
    display: flex;
    align-items: center;
  }
  header .menu li {
    position: relative;
  }
  header .menu li a {
    height: 80px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    color: #333333;
    font-weight: var(--fw-bold);
  }
  header .menu li a {
    position: relative;
    transition: all 0.2s ease-in;
  }
  header .menu li a::after {
    content: "";
    transition: all 0.2s ease-in;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #0064B6;
    opacity: 0;
  }
  .hamburger, .hamburger_close {
    display: none;
  }
}
@media only screen and (min-width: 980px) {
  header .menu li a:hover {
    background: #F1F1F1;
  }
  header .menu li a:hover::after {
    opacity: 1;
  }
}
@media only screen and (max-width: 980px) {
  header .inner {
    height: 60px;
  }
  header .logo {
    max-width: 204px;
  }
  header .logo img {
    vertical-align: middle;
  }
  header nav {
    position: absolute;
    top: 60px;
    padding-top: 6px;
    width: 100%;
    left: 100%;
    background: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    transition: all 0.2s ease-in;
  }
  header nav.is-open {
    left: 0;
  }
  header nav::before {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    top: -6px;
    left: 0;
    height: 6px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
  }
  header .menu {
    display: block;
  }
  header .menu li {
    border-bottom: 1px solid #C8C8C8;
  }
  header .menu li a {
    display: block;
    padding: 24px 20px;
    font-weight: var(--fw-medium);
  }
  .hamburger {
    display: block;
  }
  .hamburger {
    width: 24px;
    height: 20px;
    position: relative
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #0064B6;
    position: absolute;
    top: 0;
  }
  .hamburger span:nth-child(2) {
    position: absolute;
    top: 9px;
  }
  .hamburger span:nth-child(3) {
    position: absolute;
    top: 18px;
  }
  .hamburger.is-opend {
    width: 24px;
    height: 20px;
    position: relative
  }
  .hamburger.is-opend span:first-child {
    transform: rotate(45deg);
    top: 10px;
  }
  .hamburger.is-opend span:nth-child(2) {
    display: none;
  }
  .hamburger.is-opend span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  .hamburger_close {
    display: block;
    margin: 24px 0;
    text-align: center;
    color: #0064B6;
    font-size: 18px;
    font-weight: var(--fw-semibold);
  }
  .hamburger_close span {
    position: relative;
    padding-left: 24px;
  }
  .hamburger_close span::before, .hamburger_close span::after {
    content: "";
    width: 20px;
    height: 3px;
    display: block;
    background: #0064B6;
    position: absolute;
  }
  .hamburger_close span::before {
    left: 0;
    top: 13px;
    transform: rotate(45deg);
  }
  .hamburger_close span::after {
    left: 0;
    top: 13px;
    transform: rotate(-45deg);
  }
}
@media only screen and (max-width: 768px) {
  header .logo {
    margin-left: -10px;
  }
}
/* ------------------------------------
	footer
------------------------------------ */
footer {
  background: #333333;
}
footer .inner {
  max-width: 1140px;
  height: 124px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo {
  max-width: 278px;
  margin-top: 8px;
}
footer .logo img {
  width: 100%;
  display: block;
}
footer .menu {
  display: flex;
  align-items: center;
}
footer .menu li a {
  display: inline;
  margin: 0 26px;
  padding: 0;
  color: #ffffff;
  font-weight: var(--fw-bold);
  transition: all 0.2s ease-in;
}
footer .menu li:last-child a {
  margin-right: 0;
}
footer small {
  padding: 5px 20px 7px;
  display: block;
  text-align: center;
  color: #FFF;
  font-size: 14px;
  background: #707070;
}
@media only screen and (min-width: 980px) {
  footer .menu li a:hover {
    opacity: .5;
  }
}
@media only screen and (max-width: 980px) {
  footer .inner {
    height: auto;
    padding: 0;
    display: block;
  }
  footer .logo {
    max-width: 317px;
    margin: 0 auto;
    padding: 32px 20px 26px;
  }
  footer .menu {
    display: block;
  }
  footer .menu li {
    border-top: 1px solid #C8C8C8;
  }
  footer .menu li a {
    display: block;
    margin: 0;
    padding: 12px 20px;
  }
}
@media only screen and (max-width: 768px) {
  footer small {
    padding: 12px 20px;
    font-size: 10px;
  }
}
/* ------------------------------------
	main 共通
------------------------------------ */
.mv {
  height: 224px;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  background-image: linear-gradient(105deg, #278ADB, #C49EF8);
}
.mv .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 100%;
}
.mv_title {
  font-size: 36px;
  font-weight: var(--fw-semibold);
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  color: #fff;
  letter-spacing: .05em
}
.breadcrumb {
  line-height: 1.68;
}
.breadcrumb ul {
  max-width: 1140px;
  margin: 0 auto;
  padding: 6px 20px 70px;
  font-size: 13px;
  font-weight: var(--fw-regular);
  letter-spacing: .025em;
}
.breadcrumb li {
  display: inline-block;
  padding-left: 1.5em;
}
.breadcrumb li:first-child {
  background: url("/img/common/icon_home.png") no-repeat center left / 14px;
}
.breadcrumb li:not(:first-child) {
  position: relative;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  width: 5px;
  height: 5px;
  display: inline-block;
  border-top: 1px solid #223229;
  border-right: 1px solid #223229;
  transform: rotate(45deg);
  position: absolute;
  left: 5px;
  top: 8px;
}
section .inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 72px;
}
.news_list {
  border-top: 1px dotted #C8C8C8;
}
.news_item {
  border-bottom: 1px dotted #C8C8C8;
  position: relative;
}
.news_inner {
  padding: 17px 0;
  display: flex;
}
a.news_inner {
  padding-right: 20px;
  transition: all 0.2s ease-in;
}
.news_date {
  color: #777777;
  letter-spacing: .14em;
	flex-basis: 153px;
}
.news_item p {
  color: #393633;
	flex: 1 0 0%;
}
.news_list a:after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  border-right: 2px solid #0064B6;
  border-top: 2px solid #0064B6;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  bottom: calc(50% - 7px);
}
.news_pdf {
  color: #000;
  font-size: 14px;
  letter-spacing: .08em;
  padding-left: 20px;
	flex-basis: 130px;
}
.news_pdf img {
  width: 24px;
}
.title {
  font-size: 24px;
  letter-spacing: .025em;
	line-height: 1.68;
  font-weight: var(--fw-medium);
  color: #0064B6;
  margin: 60px 0 20px;
  padding-left: 40px;
  background: url("/img/common/icon_title.png") no-repeat left center / 22px;
}
.title:first-child {
  margin-top: 0;
}
.table {
  width: 100%;
}
.table tr {
  border-bottom: 1px dotted #C8C8C8;
}
.table th {
  width: 176px;
  padding: 17px 10px 17px 0;
}
.table td {
  padding: 17px 0;
}
.table tr:first-child th, .table tr:first-child td {
  padding-top: 0;
}
@media only screen and (min-width: 980px) {
  a.news_inner:hover {
    opacity: .5
  }
}
@media only screen and (max-width: 768px) {
  section .inner {
    padding-bottom: 56px;
  }
  .breadcrumb ul {
    padding-bottom: 50px;
  }
  .news_inner {
    padding: 17px 0 21px;
    display: block;
  }
  .news_list a:after {
    width: 10px;
    height: 10px;
    bottom: calc(50% - 5px);
  }
  .news_date {
    display: block;
    margin-bottom: 6px;
  }
  .news_title {
    display: inline;
  }
  .news_pdf {
    font-size: 12px;
    padding-left: 0;
    display: inline;
  }
  .news_pdf img {
    width: 22px;
  }
  .table th, .table td {
    display: block;
    width: 100%;
  }
  .table th {
    font-weight: var(--fw-semibold);
    padding-bottom: 10px;
  }
  .table td {
    padding-top: 0;
  }
}
/* ------------------------------------
	TOP
------------------------------------ */
@media only screen and (max-width: 768px) {
  .top_mv {
    height: 102.4vw;
    background: url("/img/top/mv_sp.jpg") no-repeat right center / cover;
  }
  .top_mv img {
    display: none;
  }
}
.sec_top_news .inner {
  padding-top: 67px;
}
.sec_top_news .news_list {
  margin-bottom: 40px;
}
.sec_top_news h2 {
  font-size: 36px;
  color: #0064B6;
  letter-spacing: .05em;
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  font-weight: var(--fw-semibold);
}
.top_news_btn {
  text-align: right;
}
.top_news_btn a {
  width: 320px;
  padding: 10px 60px 10px 24px;
  display: inline-block;
  overflow: hidden;
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: #FFF;
  position: relative;
  background: linear-gradient(90deg, #21CCF9, #C49EF8);
  border-radius: 60px;
  text-align: left;
}
.top_news_btn a::before {
  content: "";
  background: #0064B6;
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: all 0.2s ease-in;
}
.top_news_btn a::after {
  content: "";
  display: block;
  background: #fff url("/img/common/icon_arrow.png") no-repeat center / 12px;
  position: absolute;
  right: 20px;
  top: 17px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
}
.top_news_btn a span {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 980px) {
  .top_news_btn a:hover::before {
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  .sec_top_news .inner {
    padding-top: 52px;
  }
  .sec_top_news .news_list {
    margin-bottom: 30px;
  }
  .sec_top_news h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .top_news_btn a {
    width: 100%;
  }
}
.sec_top_category {
  background: url("/img/top/category_bg.jpg") no-repeat center / cover;
}
.sec_top_category .inner {
  padding-top: 72px;
}
.top_category {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
.top_category_item {
  position: relative;
  flex-basis: calc((100% - 75px) / 4);
  border-radius: 25px 0 25px 0;
  overflow: hidden;
}
.top_category_item a {
  transition: all 0.2s ease-in;
}
.top_category_title {
  position: absolute;
  bottom: 0;
  display: inline-block;
  width: 100%;
  padding: 24px 30px;
}
.top_category_title::before, .top_category_title::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
}
.top_category_title::before {
  background: linear-gradient(105deg, #21ccf9a6, #c49ef8a6);
}
.top_category_title::after {
  background: linear-gradient(105deg, #278adb, #c49ef8);
  mix-blend-mode: multiply;
}
.top_category_title h3 {
  position: relative;
  z-index: 1;
  line-height: 1;
  font-size: 20px;
  color: #fff;
  font-weight: var(--fw-medium);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top_category_title h3::after {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: rotate(45deg);
}
@media only screen and (min-width: 980px) {
  .top_category_item a:hover {
    opacity: .5;
  }
}
@media only screen and (max-width: 980px) {
  .top_category_item {
    flex-basis: calc((100% - 25px) / 2);
  }
}
@media only screen and (max-width: 768px) {
  .sec_top_category .inner {
    padding-top: 56px;
  }
  .top_category_item {
    flex-basis: 100%;
    aspect-ratio: 335/160;
  }
  .top_category_title {
    padding: 12px 27px 12px 22px;
    min-height: 11.46vw;
    display: flex;
    align-items: center;
  }
  .top_category_title h3 {
    font-size: max(18px, 4.8vw);
    width: 100%;
  }
}
/* ------------------------------------
	代表理事ご挨拶
------------------------------------ */
.message_container {
  display: flex;
  gap: 24px;
}
.message_img {
  flex-basis: 240px;
  max-width: 240px;
  margin: 0 auto;
}
.message_txt {
  flex: 1 0 0%;	
}
.message_name {
  font-weight: var(--fw-semibold);
  margin: 24px 0 0 auto;
  display: block;
  width: fit-content;
	line-height: 1.68;
}
.message_name span {
  font-size: 20px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .message_container {
    display: block;
  }
  .message_txt {
    margin-top: 24px;
  }
}
/* ------------------------------------
	奨学金について
------------------------------------ */
.sec_scholarship .parentheses_list li {
  text-indent: -3em;
  padding-left: 3em;
}
.sec_scholarship .disc_list li {
  text-indent: -1em;
  padding-left: 1em;
}
.sec_scholarship .disc_list li::before {
  content: "・";
}
/* ------------------------------------
	404
------------------------------------ */
.sec_404, .sec_404 .inner ,.notfound_container{
  height: 100%;
}
.notfound_container{
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.notfound_title {
	font-size: 36px;
  font-weight: var(--fw-semibold);
  font-family: "游明朝 Medium", "Yu Mincho Medium", "YuMincho Medium", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", serif;
  letter-spacing: .05em;
	text-align: center;
	margin: 70px 0 20px;
	line-height: 1.4;
}
.notfound_txt {
	text-align: center;
}
.notfound_btn {
  text-align: center;
	margin-top: 50px;
}
.notfound_btn a {
  width: 320px;
  padding: 10px 60px 10px 24px;
  display: inline-block;
  overflow: hidden;
  font-size: 18px;
  font-weight: var(--fw-medium);
  color: #FFF;
  position: relative;
  background: linear-gradient(90deg, #21CCF9, #C49EF8);
  border-radius: 60px;
  text-align: left;
}
.notfound_btn a::before {
  content: "";
  background: #0064B6;
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: all 0.2s ease-in;
}
.notfound_btn a::after {
  content: "";
  display: block;
  background: #fff url("/img/common/icon_arrow.png") no-repeat center / 12px;
  position: absolute;
  right: 20px;
  top: 17px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
}
.notfound_btn a span {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 980px) {
  .notfound_btn a:hover::before {
    opacity: 0;
  }
}
@media only screen and (max-width: 768px) {
  .notfound_btn a {
    width: 100%;
  }
}