/*
Theme Name: Nagatomi

*/

@charset "UTF-8";
/*====================================

----------------------------------
  color
----------------------------------

  Main   : #000

----------------------------------
  font
----------------------------------

// font-family: A1MinchoStd, 'YuMincho', '游明朝体', 'YuMincho', serif ;
// font-family: TsukuAOldMinPr6, serif;
// font-family: A-OTF Gothic BBB Pr6N Medium;
// font-family: a-otf-gothic-bbb-pr6n, sans-serif;
// font-family: '游明朝体', 'YuMincho, serif';
// font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;

  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;

----------------------------------
  structure
----------------------------------

  reset
  common
  #top
  #greeting
  #summary
  #scholarship

----------------------------------
  change Log
----------------------------------

  -

====================================*/
/*===============================

  Reset CSS（HTML5 Doctor Reset CSS）

================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* added to reset css */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*===============================

  common

================================*/
html, body {
  background: #fff;
  color: #000;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-style: normal;
  font-size: 16px;
  font-size: 1.33333vw;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

@media (min-width: 1200px) {
  html, body {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  html, body {
    font-size: 10.66667px;
  }
}

body {
  padding-top: 8.33333vw;
}

@media (min-width: 1200px) {
  body {
    padding-top: 100px;
  }
}

br.pc_none {
  display: none;
}

@media (max-width: 767.98px) {
  body {
    padding-top: 50px;
  }
  br.pc_none {
    display: block;
  }
}

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

.container {
  margin: 0 auto;
  max-width: 100%;
  width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  opacity: 0.7;
}

.btn {
  text-align: center;
}

.btn a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  display: inline-block;
  position: relative;
}

@media (max-width: 767.98px) {
  .btn a {
    width: 70%;
  }
}

.btn a::before {
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 1em;
  transform: translateY(-50%);
}

.btn a.arrow-white::before {
  background-image: url("assets/images/arrow-right-white.svg");
  width: 8.6168px;
  height: 17.2336px;
}

.btn a.arrow-blue::before {
  background-image: url("assets/images/arrow-right-blue.svg");
  width: 6.7194px;
  height: 13.4388px;
}

.btn a.arrow-green::before {
  background-image: url("assets/images/arrow-right-green.svg");
  width: 6.7194px;
  height: 13.4388px;
}

/* モーダルウィンドウを開いたときに背景を止める（javascriptでクラス付与） */
.scroll-prevent {
  position: fixed;
  /*動き固定*/
  z-index: -1;
  /*奥行きを管理*/
  /*下2つで背景を元のサイズのまま表示*/
  width: 100%;
  height: 100%;
}

#header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 9999;
  transform: translateX(-50%);
  height: 8.33333vw;
  max-height: 100px;
}

@media (max-width: 767.98px) {
  #header {
    width: 100vw;
    height: 50px;
  }
}

#header .container {
  position: relative;
  padding: 0;
  width: inherit;
  height: inherit;
}

#header .header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  height: 8.33333vw;
  max-height: 100px;
  width: 100vw;
  /*max-width: 1200px;*/
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  z-index: 10;
  padding-left: 20px;
  padding-right: 20px;
  /*
      ハンバーガーメニュー（スマホ用）
    ================================*/
  /*チェックボックス等は非表示に*/
}

@media (max-width: 767.98px) {
  #header .header-wrap {
    width: inherit;
    height: inherit;
    padding-right: 0;
  }
}

#header .header-wrap h1 img {
  width: 36.72644vw;
  max-width: 440.7173px;
}

@media (max-width: 767.98px) {
  #header .header-wrap h1 img {
    width: 200px;
  }
}

#header .header-wrap #nav-drawer {
  width: 50%;
}

#header .header-wrap .menu {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  #header .header-wrap .menu {
    display: block;
  }
  #header .header-wrap .menu a {
    display: block;
    padding: 1.5rem;
    font-size: 14px;
  }
}

#header .header-wrap .nav-unshown {
  display: none;
}

@media (max-width: 767.98px) {
  #header .header-wrap {
    /*アイコンのスペース*/
    /*ハンバーガーアイコンをCSSだけで表現*/
    /*閉じる用の薄黒カバー*/
    /*中身*/
    /*チェックが入ったら閉じるボタンを表示*/
    /*チェックが入ったらもろもろ表示*/
  }
  #header .header-wrap #nav-drawer {
    display: block;
    position: relative;
    margin-left: auto;
    width: 70px;
    height: 50px;
  }
  #header .header-wrap #nav-open {
    display: inline-block;
    width: 100%;
    height: 100%;
    vertical-align: middle;
  }
  #header .header-wrap #nav-open span,
  #header .header-wrap #nav-open span:before,
  #header .header-wrap #nav-open span:after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    /*線の太さ*/
    width: 25px;
    /*長さ*/
    border-radius: 3px;
    background: #67B9CC;
    display: inline-block;
    content: '';
    cursor: pointer;
  }
  #header .header-wrap #nav-open span {
    top: 47%;
  }
  #header .header-wrap #nav-open span:before {
    bottom: 10px;
    transform: translateX(-52%);
  }
  #header .header-wrap #nav-open span:after {
    top: 10px;
    transform: translateX(-52%);
  }
  #header .header-wrap #nav-close {
    display: none;
    /*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 50px;
    /*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
  }
  #header .header-wrap #nav-content {
    overflow: auto;
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 9999;
    /*最前面に*/
    width: 100%;
    /*右側に隙間を作る（閉じるカバーを表示）*/
    max-width: 60%;
    /*最大幅（調整してください）*/
    height: 100%;
    overflow-y: auto;
    /* 中身がデバイスの長さより長いときにスクロール（height:100%とセット） */
    padding-bottom: 100px;
    background: #fff;
    /*背景色*/
    transition: .3s ease-in-out;
    /*滑らかに表示*/
    -webkit-transform: translateX(105%);
    transform: translateX(105%);
    /*右に隠しておく*/
  }
  #header .header-wrap #nav-input:checked ~ #nav-open span {
    background: rgba(51, 51, 51, 0);
  }
  #header .header-wrap #nav-input:checked ~ #nav-open span::before,
  #header .header-wrap #nav-input:checked ~ #nav-open span::after {
    content: "";
    display: block;
    height: 100%;
    left: 46%;
    margin: -8% 0 0 -42%;
    position: absolute;
    top: 50%;
    width: 100%;
  }
  #header .header-wrap #nav-input:checked ~ #nav-open span::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #header .header-wrap #nav-input:checked ~ #nav-open span::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #header .header-wrap #nav-input:checked ~ #nav-close {
    display: block;
    /*カバーを表示*/
    opacity: .5;
  }
  #header .header-wrap #nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    /*中身を表示（左へスライド）*/
  }
}

#header .shadow {
  position: absolute;
  z-index: 1;
  top: initial;
  bottom: -2.8vw;
}

@media (min-width: 1200px) {
  #header .shadow {
    bottom: -33px;
  }
}

#footer .container {
  padding: 3rem 0;
}

#footer .info {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575.98px) {
  #footer .info {
    flex-direction: column;
  }
}

#footer .info .left .name {
  letter-spacing: 0;
  font-size: 19.56px;
  font-size: 1.63vw;
}

@media (min-width: 1200px) {
  #footer .info .left .name {
    font-size: 19.56px;
  }
}

@media (max-width: 575.98px) {
  #footer .info .left .name {
    font-size: 13.04px;
  }
}

@media (max-width: 575.98px) {
  #footer .info .left .name {
    font-size: 16px;
    margin-bottom: 1rem;
  }
}

#footer .info .left .name span {
  font-size: 13.04px;
  font-size: 1.08667vw;
}

@media (min-width: 1200px) {
  #footer .info .left .name span {
    font-size: 13.04px;
  }
}

@media (max-width: 575.98px) {
  #footer .info .left .name span {
    font-size: 8.69333px;
  }
}

@media (max-width: 575.98px) {
  #footer .info .left .name span {
    font-size: 14px;
  }
}

#footer .info .right {
  margin-left: 1rem;
  padding: 0.1rem 1rem;
  border-left: 0.5px solid #000;
  line-height: 1.2;
}

@media (max-width: 575.98px) {
  #footer .info .right {
    border-left: 0;
    margin-left: 0;
    padding: 0;
  }
}

#footer .info .right .address {
  font-size: 10px;
  display: flex;
}
#footer .info .right .address small {
  display: inline-block;
  width: 80px;
  overflow: hidden;
}
#footer .info .right .address span {
  display: inline-block;
}

#footer .info .right .tel {
  font-size: 12px;
  margin-left: 80px;
}

#footer .copy {
  font-size: 10px;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 575.98px) {
  #footer .copy {
    margin-top: 3rem;
  }
}

#cnt .container {
  padding: 3rem 15px;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

#cnt .container .bd-color {
  margin-bottom: 1em;
  padding-left: 0.1em;
  border-bottom: 2px solid #B5B5B6;
  position: relative;
}

#cnt .container .bd-color::after {
  content: '';
  display: inline-block;
  width: 23%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}

@media (max-width: 767.98px) {
  #cnt .container .bd-color::after {
    width: 150px;
  }
}

#cnt .container .bd-color.bd-blue::after {
  background-color: #68C3D8;
}

#cnt .container .bd-color.bd-green::after {
  background-color: #BEDF58;
}

#cnt .container .list {
  font-size: 18px;
  font-size: 1.5vw;
  letter-spacing: 0;
  line-height: 2.22222;
}

@media (min-width: 1200px) {
  #cnt .container .list {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  #cnt .container .list {
    font-size: 12px;
  }
}

#cnt .container .list li {
  padding-left: 1.5em;
  position: relative;
}

#cnt .container .list li::before {
  content: '';
  display: inline-block;
  width: 1.37979vw;
  height: 1.37979vw;
  position: absolute;
  top: 0.9vw;
  left: 0.25em;
}

@media (min-width: 1200px) {
  #cnt .container .list li::before {
    width: 13.7979px;
    height: 13.7979px;
    top: 13px;
  }
}

@media (max-width: 767.98px) {
  #cnt .container .list li::before {
    width: 10px;
    height: 10px;
    top: 8px;
  }
}

#cnt .container .list li span {
  display: block;
  font-size: 14px;
  font-size: 1.16667vw;
  margin-top: -0.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

@media (min-width: 1200px) {
  #cnt .container .list li span {
    font-size: 14px;
  }
}

@media (max-width: 575.98px) {
  #cnt .container .list li span {
    font-size: 9.33333px;
  }
}

#cnt .container .list.list-blue li::before {
  background-color: #67B9CC;
}
#cnt .container .list.list-blue li.hogosha::before {
  background-color: #e60012;
}
li.hogosha {color:#e60012;}

#cnt .container .list.list-green li::before {
  background-color: #C0D836;
}

#cnt .container .list.list-bd li {
  border-bottom: 0.5px solid #231815;
}

#top #top-main {
  background-color: #67B9CC;
}

#top #top-main .container {
  background: url("assets/images/main-people2.png");
  background-repeat: no-repeat;
  background-position: right 5% bottom 0;
  background-size: 37.87087vw;
  padding: 2.5rem 2.5% 2rem;
}

@media (min-width: 1200px) {
  #top #top-main .container {
    background-size: 454.4504px;
  }
}

@media (max-width: 767.98px) {
  #top #top-main .container {
    background-position: right 0 top;
    background-size: 40%;
  }
}

#top #top-main .top-main-wrap {
  color: #fff;
  padding-left: 2rem;
}

@media (max-width: 767.98px) {
  #top #top-main .top-main-wrap {
  padding-left: 0;
  }
}

#top #top-main .top-main-wrap h2 img {
  width: 49.2844vw;
  max-width: 591.4128px;
}

@media (max-width: 767.98px) {
  #top #top-main .top-main-wrap h2 img {
    width: 65%;
	  margin-bottom: 1rem;
  }
}

#top #top-main .top-main-wrap h3 {
  font-size: 23.89px;
  font-size: 1.99083vw;
  width: 57%;
  text-align: center;
  margin-top: 1.5rem;
  position: relative;
}

@media (min-width: 1200px) {
  #top #top-main .top-main-wrap h3 {
    font-size: 23.89px;
  }
}

@media (max-width: 575.98px) {
  #top #top-main .top-main-wrap h3 {
    font-size: 15.92667px;
  }
}

@media (max-width: 767.98px) {
  #top #top-main .top-main-wrap h3 {
    width: 100%;
    background: #fff;
    color: rgb(103, 185, 204);
    font-weight: normal;
  }
}

#top #top-main .top-main-wrap h3::before, #top #top-main .top-main-wrap h3::after {
  content: '';
  display: inline-block;
  background: #fff;
  height: 1px;
  width: 25%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767.98px) {
  #top #top-main .top-main-wrap h3::before, #top #top-main .top-main-wrap h3::after {
    width: 20%;
  }
}

#top #top-main .top-main-wrap h3::before {
  left: 0;
}

#top #top-main .top-main-wrap h3::after {
  right: 0;
}

#top #top-main .support {
  width: 57%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 767.98px) {
  #top #top-main .support {
    width: 100%;
  }
}

#top #top-main .support .item {
  width: 25%;
}

#top #top-main .support .item + .item {
  position: relative;
}

#top #top-main .support .item + .item::before {
  content: '';
  display: inline-block;
  background: #fff;
  height: 90%;
  width: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

#top #top-main .support .item:first-child img {
  width: 7.48552vw;
  max-width: 89.8262px;
}

#top #top-main .support .item:nth-child(2) img {
  width: 10.39017vw;
  max-width: 124.6821px;
}

#top #top-main .support .item:nth-child(3) img {
  width: 7.81747vw;
  max-width: 93.8096px;
}

#top #top-main .support .item:nth-child(4) img {
  width: 8.04476vw;
  max-width: 96.5371px;
}

@media (max-width: 767.98px) {
  #top #top-main .support .item img {
    width: initial !important;
    height: 15vw;
  }
}

#top #top-news .container {
  margin-top: 2rem;
}

#top #top-news h3,
#info h3,
#contact h3 {
  font-size: 32px;
  font-size: 2.66667vw;
  text-align: center;
  letter-spacing: 0;
}

@media (min-width: 1200px) {
  #top #top-news h3,
  #info h3,
  #contact h3 {
    font-size: 32px;
  }
}

@media (max-width: 575.98px) {
  #top #top-news h3,
  #info h3,
  #contact h3
  {
    font-size: 21.33333px;
  }
}

#top .parent {
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 80px auto 60px;
}

#top #top-news .news-table {
  width: 640px;
  margin: 1rem auto;
  letter-spacing: 0.05em;
}

@media (max-width: 767.98px) {
  #top #top-news .news-table {
    width: 100%;
  }
  #top .parent {
    margin: 30px auto 20px;
  }}

#top #top-news .news-table tr {
  border-bottom: 1px solid #C9CACA;
}

#top #top-news .news-table td {
  padding: 0.5em;
}

#top #top-news .news-table td:first-child {
  width: 90px;
  max-width: 20%;
}

#top #top-news .news-table td:nth-child(2) {
  font-family: a-otf-gothic-bbb-pr6n, sans-serif;
  padding-right: 2.5em;
  position: relative;
}

#top #top-news .news-table td:nth-child(2)::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 5.5px;
  background: url("assets/images/news-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}

#top #top-news .more-link {
  text-align: center;
}

#top #top-news .more-link a {
  display: inline-block;
  font-size: 18px;
  font-size: 1.5vw;
  padding: 0 0.25rem;
  border-bottom: 0.5px solid #000;
  letter-spacing: 0.05em;
}

@media (min-width: 1200px) {
  #top #top-news .more-link a {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  #top #top-news .more-link a {
    font-size: 12px;
  }
}

#top #top-link .container {
  background: url("assets/images/link-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 3rem;
  padding: 3rem 15px;
  letter-spacing: 0.05em;
}

#top #top-link .link-wrap {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

@media (max-width: 575.98px) {
  #top #top-link .link-wrap {
    flex-direction: column;
  }
}

#top #top-link .link-wrap .item {
  width: 30.4%;
  background-color: rgba(255, 255, 255, 1.0);
  border: 1px solid #231815;
}

@media (max-width: 575.98px) {
  #top #top-link .link-wrap .item {
    margin-bottom: 2rem;
    width: 220px;
  }
  #top #top-link .link-wrap .item:last-child {
    margin-bottom: 0;
  }
}

#top #top-link .link-wrap .item .no {
  font-size: 21.32px;
  font-size: 1.77667vw;
  transform: translateY(-50%);
  position: relative;
}

@media (min-width: 1200px) {
  #top #top-link .link-wrap .item .no {
    font-size: 21.32px;
  }
}

@media (max-width: 575.98px) {
  #top #top-link .link-wrap .item .no {
    font-size: 14.21333px;
  }
}

#top #top-link .link-wrap .item .no::before, #top #top-link .link-wrap .item .no::after {
  content: '';
  display: inline-block;
  width: 42%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#top #top-link .link-wrap .item .no::before {
  left: 0;
}

#top #top-link .link-wrap .item .no::after {
  right: 0;
}

#top #top-link .link-wrap .item h3 {
  font-size: 30px;
  font-size: 2.5vw;
  margin-top: 0.75rem;
  position: relative;
}

@media (min-width: 1200px) {
  #top #top-link .link-wrap .item h3 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  #top #top-link .link-wrap .item h3 {
    font-size: 20px;
  }
}

#top #top-link .link-wrap .item h3::after {
  content: '';
  display: inline-block;
  width: 15%;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

#top #top-link .link-wrap .item .txt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 17.06px;
  font-size: 1.42167vw;
  line-height: 1.49941;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  #top #top-link .link-wrap .item .txt {
    font-size: 17.06px;
  }
}

@media (max-width: 575.98px) {
  #top #top-link .link-wrap .item .txt {
    font-size: 11.37333px;
  }
}

#top #top-contact .container {
  padding-top: 2rem;
}

#top #top-contact .contact-btn a {
  color: #fff;
  font-size: 24px;
  font-size: 2vw;
  font-weight: 500;
  padding: 0.5em 3em;
  letter-spacing: 0.05em;
  background-color: #68C3D8;
}

@media (min-width: 1200px) {
  #top #top-contact .contact-btn a {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  #top #top-contact .contact-btn a {
    font-size: 16px;
  }
}

#top #footer .container {
  padding: 3rem 0;
}

#top #footer .info {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 575.98px) {
  #top #footer .info {
    flex-direction: column;
  }
}

#top #footer .info .left .name {
  display: flex;
  align-items: center;
  letter-spacing: 0;
  font-size: 19.56px;
  font-size: 1.63vw;
  margin-bottom: 1rem;
}

@media (min-width: 1200px) {
  #top #footer .info .left .name {
    font-size: 19.56px;
  }
}

@media (max-width: 575.98px) {
  #top #footer .info .left .name {
    font-size: 13.04px;
  }
}

@media (max-width: 575.98px) {
  #top #footer .info .left .name {
    font-size: 16px;
  }
}

#top #footer .info .left .name span {
  font-size: 13.04px;
  font-size: 1.08667vw;
}

@media (min-width: 1200px) {
  #top #footer .info .left .name span {
    font-size: 13.04px;
  }
}

@media (max-width: 575.98px) {
  #top #footer .info .left .name span {
    font-size: 8.69333px;
  }
}

@media (max-width: 575.98px) {
  #top #footer .info .left .name span {
    font-size: 14px;
  }
}

#top #footer .info .right {
  margin-left: 1rem;
  padding: 0.1rem 1rem;
  border-left: 0.5px solid #000;
  line-height: 1.2;
}

@media (max-width: 575.98px) {
  #top #footer .info .right {
    border-left: 0;
    margin-left: 0;
    padding: 0;
  }
}

#top #footer .info .right .address {
  font-size: 10px;
}

#top #footer .info .right .tel {
  font-size: 12px;
}

#top #footer .copy {
  font-size: 10px;
  text-align: center;
  margin-top: 1rem;
}

@media (max-width: 575.98px) {
  #top #footer .copy {
    margin-top: 3rem;
  }
}

#greeting #cnt h2 {
  text-align: center;
  font-size: 48px;
  font-size: 4vw;
  position: relative;
}

@media (min-width: 1200px) {
  #greeting #cnt h2 {
    font-size: 48px;
  }
}

@media (max-width: 575.98px) {
  #greeting #cnt h2 {
    font-size: 32px;
  }
}

#greeting #cnt h2::before, #greeting #cnt h2::after {
  content: '';
  display: inline-block;
  width: 4%;
  height: 2px;
  position: absolute;
  bottom: 0;
}

@media (max-width: 767.98px) {
  #greeting #cnt h2::before, #greeting #cnt h2::after {
    width: 30px;
  }
}

#greeting #cnt h2::before {
  background-color: #67B9CC;
  right: 50%;
}

#greeting #cnt h2::after {
  background-color: #BEDF58;
  left: 50%;
}

#greeting #cnt .cnt-wrap {
  padding: 3rem 0;
  display: flex;
}

@media (max-width: 767.98px) {
  #greeting #cnt .cnt-wrap {
    display: block;
  }
}

#greeting #cnt .cnt-wrap .photo {
  width: 30%;
}

#greeting #cnt .cnt-wrap .txt {
  width: 70%;
  letter-spacing: 0.01em;
}

@media (max-width: 767.98px) {
  #greeting #cnt .cnt-wrap .photo {
    width: 100%;
  }
  #greeting #cnt .cnt-wrap .txt {
    width: 100%;
  }
}

#greeting #cnt .cnt-wrap .photo {
  padding-right: 2.9%;
}

@media (max-width: 767.98px) {
  #greeting #cnt .cnt-wrap .photo {
    padding-right: 0;
    text-align: center;
  }
}

#greeting #cnt .cnt-wrap .photo .name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  font-size: 26px;
  font-size: 2.16667vw;
}

@media (min-width: 1200px) {
  #greeting #cnt .cnt-wrap .photo .name {
    font-size: 26px;
  }
}

@media (max-width: 575.98px) {
  #greeting #cnt .cnt-wrap .photo .name {
    font-size: 17.33333px;
  }
}

#greeting #cnt .cnt-wrap .photo .name span {
  font-size: 16px;
  font-size: 1.33333vw;
  margin-right: 1rem;
}

@media (min-width: 1200px) {
  #greeting #cnt .cnt-wrap .photo .name span {
    font-size: 16px;
  }
}

@media (max-width: 575.98px) {
  #greeting #cnt .cnt-wrap .photo .name span {
    font-size: 10.66667px;
  }
}

@media (max-width: 767.98px) {
  #greeting #cnt .cnt-wrap .txt {
    padding-top: 3rem;
  }
}

#greeting #cnt .cnt-wrap .txt h3 {
  font-size: 40px;
  font-size: 3.33333vw;
  letter-spacing: 0.05em;
  line-height: 1;
}

@media (min-width: 1200px) {
  #greeting #cnt .cnt-wrap .txt h3 {
    font-size: 40px;
    font-weight: normal;
  }
}

@media (max-width: 575.98px) {
  #greeting #cnt .cnt-wrap .txt h3 {
    font-size: 26.66667px;
  }
}

@media (max-width: 767.98px) {
  #greeting #cnt .cnt-wrap .txt h3 {
    line-height: initial;
  }
}

#greeting #cnt .cnt-wrap .txt p {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-ideograph;
  margin-top: 2rem;
}

@media (max-width: 767.98px) {
  #greeting #cnt .cnt-wrap .txt p {
    font-size: 14px;
  }
}

#summary #cnt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}

#summary #cnt .container > div {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

#summary #cnt h2 {
  font-size: 30px;
  font-size: 2.5vw;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (min-width: 1200px) {
  #summary #cnt h2 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  #summary #cnt h2 {
    font-size: 20px;
  }
}

#summary #cnt h3 {
  font-size: 24px;
  font-size: 2vw;
  font-weight: 500;
  letter-spacing: 0.05em;
}

@media (min-width: 1200px) {
  #summary #cnt h3 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  #summary #cnt h3 {
    font-size: 16px;
  }
}

#summary #cnt .btn a {
  font-size: 20px;
  font-size: 1.66667vw;
  border: 0.5px solid #231815;
  padding: 0.35em 2.25em;
}

@media (min-width: 1200px) {
  #summary #cnt .btn a {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  #summary #cnt .btn a {
    font-size: 13.33333px;
  }
}

#summary #cnt .summary-wrap {
  padding-top: 0 !important;
}

#summary #cnt .summary-wrap .info {
  display: flex;
  justify-content: space-between;
  padding-bottom: 2rem;
}

#summary #cnt .summary-wrap .info table {
  width: 59.1%;
}

#summary #cnt .summary-wrap .info img {
  width: 37.02871%;
}

@media (max-width: 767.98px) {
  #summary #cnt .summary-wrap .info {
    flex-direction: column;
  }
  #summary #cnt .summary-wrap .info table {
    width: 100%;
    order: 2;
  }
  #summary #cnt .summary-wrap .info img {
    width: 100%;
    order: 1;
  }
}

#summary #cnt .summary-wrap .info table {
  letter-spacing: 0.075em;
}

@media (max-width: 767.98px) {
  #summary #cnt .summary-wrap .info table {
    font-size: 12px;
    margin-top: 1rem;
  }
}

#summary #cnt .summary-wrap .info table td {
  border-bottom: 0.5px solid #231815;
  padding: 0.65rem 0 0.25rem;
}

@media (max-width: 767.98px) {
  #summary #cnt .summary-wrap .info table td {
    padding: 0.65rem 0.25rem 0.25rem;
  }
}

#summary #cnt .summary-wrap .link,
#summary #cnt .material-wrap .link,
#summary #cnt .feature-wrap .link {
  display: flex;
}

#summary #cnt .feature-wrap .link {
  margin-top:10px;
}

#summary #cnt .material-wrap .keikaku {
    margin-top:2rem;
    font-size: 16px;
}
#summary #cnt .material-wrap .keikaku h5 {
  border-left:solid 4px #BEDF58;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  padding-left: 15px;
  margin-bottom:5px;
}
#summary #cnt .material-wrap .keikaku li {
  margin-bottom: 5px;
}
#summary #cnt .material-wrap .keikaku li:nth-child(2) {
  font-size: 14px;
  margin-bottom: 0.5rem;
}
#summary #cnt .material-wrap .keikaku li span {
  color: #BEDF58;
}

@media (max-width: 767.98px) {
  #summary #cnt .summary-wrap .link,
  #summary #cnt .material-wrap .link,
  #summary #cnt .feature-wrap .link {
    flex-direction: column;
  }
}

#summary #cnt .summary-wrap .link > div + div,
#summary #cnt .material-wrap .link > div + div,
#summary #cnt .feature-wrap .link > div + div {
  margin-left: 1rem;
}

@media (max-width: 767.98px) {
  #summary #cnt .summary-wrap .link > div + div,
  #summary #cnt .material-wrap .link > div + div,
  #summary #cnt .feature-wrap .link > div + div {
    margin-left: 0;
    margin-top: 2rem;
  }
}

#scholarship #cnt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #231815;
  font-size: 18px;
  font-size: 1.5vw;
}

@media (min-width: 1200px) {
  #scholarship #cnt {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt {
    font-size: 12px;
  }
}

#scholarship #cnt .container > p {
  line-height: 1.55556;
}

#scholarship #cnt h2, #scholarship #cnt h3 {
  font-size: 30px;
  font-size: 2.5vw;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000;
}

@media (min-width: 1200px) {
  #scholarship #cnt h2, #scholarship #cnt h3 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt h2, #scholarship #cnt h3 {
    font-size: 20px;
  }
}

#scholarship #cnt h3 {
  margin-top: 5rem;
}

#scholarship #cnt h4 {
  font-size: 24px;
  font-size: 2vw;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 1.5em;
}

@media (min-width: 1200px) {
  #scholarship #cnt h4 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt h4 {
    font-size: 16px;
  }
}

#scholarship #cnt .list {
  line-height: 1.55556;
}

#scholarship #cnt .list li {
  margin-bottom: 0.5em;
  padding-bottom: 0.25em;
}

#scholarship #cnt .list li::before {
  top: 0.4vw;
}

@media (min-width: 1200px) {
  #scholarship #cnt .list li::before {
    top: 7px;
  }
}

@media (max-width: 767.98px) {
  #scholarship #cnt .list li::before {
    top: 4px;
  }
}

#scholarship #cnt .list li span {
  margin-top: 0;
}

#scholarship #cnt .parent {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: 20px 0 30px;
}

#scholarship #cnt .requirement-wrap {
  background: url("assets/images/requirement-img.png");
  background-repeat: no-repeat;
  background-size: 30.23171vw;
  background-position: right 0 top 12%;
}

@media (min-width: 1200px) {
  #scholarship #cnt .requirement-wrap {
    background-size: 362.7805px;
  }
}

@media (max-width: 767.98px) {
  #scholarship #cnt .requirement-wrap {
    background-position: right 0 top 3.5rem;
    background-size: 130px;
  }
}

#scholarship #cnt .requirement-wrap h4 {
  color: #68c3d8;
}

#scholarship #cnt .requirement-wrap h4.long-margin {
  margin-top: 3.5em;
}

#scholarship #cnt .requirement-wrap h4 span {
  font-size: 16.31px;
  font-size: 1.35917vw;
  color: #717071;
  margin-left: 1em;
}

@media (min-width: 1200px) {
  #scholarship #cnt .requirement-wrap h4 span {
    font-size: 16.31px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .requirement-wrap h4 span {
    font-size: 10.87333px;
  }
}

#scholarship #cnt .requirement-wrap .requirement-table {
  width: 100%;
  text-align: center;
}

#scholarship #cnt .requirement-wrap .requirement-table tr:first-child th:first-child {
  width: 20%;
}

#scholarship #cnt .requirement-wrap .requirement-table tr:first-child th:nth-child(2) {
  width: 40%;
}

#scholarship #cnt .requirement-wrap .requirement-table tr:first-child th:nth-child(3) {
  width: 40%;
}

#scholarship #cnt .requirement-wrap .requirement-table th, #scholarship #cnt .requirement-wrap .requirement-table td {
  border: 0.5px solid #231815;
  height: 5.08333vw;
  vertical-align: middle;
}

@media (min-width: 1200px) {
  #scholarship #cnt .requirement-wrap .requirement-table th, #scholarship #cnt .requirement-wrap .requirement-table td {
    height: 61px;
  }
}

#scholarship #cnt .requirement-wrap .requirement-table th {
  font-size: 20px;
  font-size: 1.66667vw;
  font-weight: 500;
}

@media (min-width: 1200px) {
  #scholarship #cnt .requirement-wrap .requirement-table th {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .requirement-wrap .requirement-table th {
    font-size: 13.33333px;
  }
}

#scholarship #cnt .requirement-wrap .requirement-table .no, #scholarship #cnt .requirement-wrap .requirement-table .price {
  letter-spacing: 0.05em;
}

#scholarship #cnt .requirement-wrap .requirement-table .no td, #scholarship #cnt .requirement-wrap .requirement-table .price td {
  font-size: 25.36px;
  font-size: 2.11333vw;
}

@media (min-width: 1200px) {
  #scholarship #cnt .requirement-wrap .requirement-table .no td, #scholarship #cnt .requirement-wrap .requirement-table .price td {
    font-size: 25.36px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .requirement-wrap .requirement-table .no td, #scholarship #cnt .requirement-wrap .requirement-table .price td {
    font-size: 16.90667px;
  }
}

#scholarship #cnt .requirement-wrap .requirement-table .no td span, #scholarship #cnt .requirement-wrap .requirement-table .price td span {
  font-size: 30.99px;
  font-size: 2.5825vw;
  font-weight: bold;
}

@media (min-width: 1200px) {
  #scholarship #cnt .requirement-wrap .requirement-table .no td span, #scholarship #cnt .requirement-wrap .requirement-table .price td span {
    font-size: 30.99px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .requirement-wrap .requirement-table .no td span, #scholarship #cnt .requirement-wrap .requirement-table .price td span {
    font-size: 20.66px;
  }
}

#scholarship #cnt .requirement-wrap .requirement-table .term td {
  font-size: 22px;
  font-size: 1.83333vw;
}

@media (min-width: 1200px) {
  #scholarship #cnt .requirement-wrap .requirement-table .term td {
    font-size: 22px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .requirement-wrap .requirement-table .term td {
    font-size: 14.66667px;
  }
}

#scholarship #cnt .requirement-wrap .btn-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

@media (max-width: 767.98px) {
  #scholarship #cnt .requirement-wrap .btn-wrap {
    display: block;
  }
}

#scholarship #cnt .requirement-wrap .btn-wrap .btn a {
  font-size: 20px;
  font-size: 1.66667vw;
  font-weight: bold;
  padding: 0.5em 2em;
  letter-spacing: 0.05em;
}

@media (min-width: 1200px) {
  #scholarship #cnt .requirement-wrap .btn-wrap .btn a {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .requirement-wrap .btn-wrap .btn a {
    font-size: 13.33333px;
  }
}

#scholarship #cnt .requirement-wrap .btn-wrap .btn.requirement-btn a {
  color: #68C3D8;
  border: 1px solid #68C3D8;
}

#scholarship #cnt .requirement-wrap .btn-wrap .btn.flow-btn {
  margin-left: 1rem;
}

@media (max-width: 767.98px) {
  #scholarship #cnt .requirement-wrap .btn-wrap .btn.flow-btn {
    margin-left: 0;
    margin-top: 2rem;
  }
}

#scholarship #cnt .requirement-wrap .btn-wrap .btn.flow-btn a {
  color: #fff;
  background-color: #68C3D8;
}

#scholarship #cnt .apply-wrap h4 {
  color: #C0D836;
}

#scholarship #cnt .apply-wrap h4 span {
  font-size: 16.31px;
  font-size: 1.35917vw;
  color: #717071;
  margin-left: 1em;
}

@media (min-width: 1200px) {
  #scholarship #cnt .apply-wrap h4 span {
    font-size: 16.31px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .apply-wrap h4 span {
    font-size: 10.87333px;
  }
}

#scholarship #cnt .apply-wrap .form-btn {
  margin-top: 3rem;
}

#scholarship #cnt .apply-wrap .form-btn a {
  font-size: 20px;
  font-size: 1.66667vw;
  font-weight: bold;
  padding: 0.5em 2em;
  letter-spacing: 0.05em;
  color: #fff;
  background-color: #C0D836;
  margin: 0 5px;
}

@media (min-width: 1200px) {
  #scholarship #cnt .apply-wrap .form-btn a {
    font-size: 20px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .apply-wrap .form-btn a {
    font-size: 13.33333px;
  }
}

#scholarship #cnt .apply-wrap .submit-process {
  line-height: 1.55556;
}

#scholarship #cnt .apply-wrap .submit-flex {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  #scholarship #cnt .apply-wrap .submit-flex {
    display: block;
  }
}

#scholarship #cnt .apply-wrap .submit-flex > div {
  width: 49%;
}

@media (max-width: 767.98px) {
  #scholarship #cnt .apply-wrap .submit-flex > div {
    width: 100%;
  }
}

#scholarship #cnt .apply-wrap .submit-flex .submit-due {
  border-bottom: 4px solid #E50012;
}

#scholarship #cnt .apply-wrap .submit-flex .submit-due p {
  text-align: center;
  color: #E50012;
  font-size: 40px;
  font-size: 3.33333vw;
  letter-spacing: 0.025em;
  margin-top: 0.5rem;
  padding-top: 0.5em;
}

@media (min-width: 1200px) {
  #scholarship #cnt .apply-wrap .submit-flex .submit-due p {
    font-size: 40px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .apply-wrap .submit-flex .submit-due p {
    font-size: 26.66667px;
  }
}

@media (max-width: 767.98px) {
  #scholarship #cnt .apply-wrap .submit-flex .submit-due p {
    padding-top: 0;
  }
}

#scholarship #cnt .apply-wrap .submit-flex .address p {
  background-color: #F7F8F8;
  margin-top: 0.5rem;
  padding: 1.5em;
}

#scholarship #cnt .adopt-due {
  font-size: 28px;
  font-size: 2.33333vw;
  color: #E50012;
  font-weight: bold;
  letter-spacing: 0.025em;
}

@media (min-width: 1200px) {
  #scholarship #cnt .adopt-due {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .adopt-due {
    font-size: 18.66667px;
  }
}

#scholarship #cnt .list-oblige li:last-child span {
  line-height: 1.55556;
  font-size: 18px;
  font-size: 1.5vw;
  margin-top: 0.1em;
}

@media (min-width: 1200px) {
  #scholarship #cnt .list-oblige li:last-child span {
    font-size: 18px;
  }
}

@media (max-width: 575.98px) {
  #scholarship #cnt .list-oblige li:last-child span {
    font-size: 12px;
  }
}

#scholarship #cnt .flow li {
  background: rgba(103,185,204,0.15);
  padding: 30px;
  max-width: 600px;
  margin: 0 auto 90px;
}
#scholarship #cnt .flow li h5 {
  color: #67b9cc;
  font-size: 26px;
  line-height: 1.4;
  padding-bottom: 15px;
  border-bottom: solid 1px #67b9cc;
  margin-bottom: 15px;
}
#scholarship #cnt .flow li h5.parent_exp {
  color: #ff0000;
}
#scholarship #cnt .flow li h5 span {
  font-size: 85%;
  display: block;
  margin-left: 20px;
}
#scholarship #cnt .flow li h5 span,
#scholarship #cnt .flow li h5.parent_exp span {
  color: #000;
}
#scholarship #cnt .flow li h5 span strong {
  color: #FF0000;
}
#scholarship #cnt .flow li h5.parent_exp span strong {
  color: #000;
}
#scholarship #cnt .flow li p {
  font-size: 14px;
  line-height: 1.6;
}
#scholarship #cnt .flow li {
  position: relative;
}
#scholarship #cnt .flow li::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 30px solid #67b9cc;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  margin: 45px 0;
}
#scholarship #cnt .flow li:last-child::after {
  border: 0;
}
#scholarship #cnt .flow .parent {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 50px auto;
}

@media (max-width: 767.98px) {
  #scholarship #cnt .flow li {
    padding: 20px;
  }
  #scholarship #cnt .flow li h5 {
    font-size: 18px;
  }
  #scholarship #cnt .flow li p {
    font-size: 12px;
  }
  #scholarship #cnt .flow .parent {
    margin: 20px auto;
  }
}

#info .info-wrap {
  background: #f7f8f8;
  padding: 2.5vw;
  margin-top: 20px;
}
#info .info-wrap .date {
  color: #898989;
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 0;
}
#info .info-wrap h4 {
  font-size: 22px;
  margin-bottom: 30px;
}
#info .info-wrap .image {
  text-align: center;
}
#info .info-wrap .image img {
  display: block;
  width: 90% !important;
  height: auto;
  max-width: 360px !important;
  margin: 20px auto;
}

#contact h3+p {
  text-align: center;
  margin-bottom: 50px;
  font-size: 14px;
  line-height: 1.8;
}
#contact table {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	table-layout: fixed;
}
#contact th {
  width: 150px;
  color: #000;
	font-weight: normal;
    vertical-align: top;
}
#contact th, #contact td {
  border-bottom: 0;
  padding: 15px 0;
}

@media (max-width: 767.98px) {
	#contact h3+p {
		font-size: 12px;
	}
	#contact th, #contact td {
	  display:block;
	  width: 100%;
	}
	#contact th {
		padding-bottom: 0;
	}
}

#contact input[type="text"],
#contact input[type="email"],
#contact input[type="tel"],
#contact textarea {
  padding: 5px;
  width: 100%;
  border: solid 1px #999;
}
#contact .privacy {
  width: 80%;
  max-width: 600px;
  height: 200px;
  overflow-y: scroll;
  margin: 60px auto 40px;
  border: solid 1px #ccc;
  padding: 20px;
  font-size: 12px;
  line-height: 1.2;
  background: #F9F9F9;
}
#contact .privacy h4 {
	font-size: 16px;
}
#contact .privacy p {
	margin-bottom: 10px;
}
#contact .privacy h4+p {
	margin-top: 5px;
	margin-bottom: 20px;
}
#contact .check {
  text-align: center;
  font-size: 16px;
  margin-bottom: 40px;
}
#contact input[type="submit"] {
  display: block;
  width: 200px;
  margin: 0 auto;
  padding: 8px 0;
  background: #000;
  color: #fff;
  border: 0;
  font-size: 22px;
  text-align: center;
}
@media (max-width: 767.98px) {
  #contact h2+p {
    margin-top: 0;
    font-size: 12px;
  }
}
