@charset "utf-8";
@import "reboot.css";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=M+PLUS+Rounded+1c:wght@400;700&display=swap');

html {
  overflow-y: scroll;
  width: 100%;
  font-size: 62.5%;
}
body {
  color: #3E3A39;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.8;
  text-align: center;
  width: 100%;
  min-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
}
a:link, a:visited {
  color: #004190;
  text-decoration: underline;
}
a:active, a:hover {
  color: #004190;
  text-decoration: underline;
  opacity: .6;
  transition: all 0.5s ease;
}
a:focus {
  outline: none;
}
.sp {
  display: none !important;
}
img {
  width: 100%;
}
#mainWrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* header */
#headerWrapper {
  width: 100%;
  position: relative;
  border-top: 10px solid #00A853;
  border-image: linear-gradient(to right, #EBEB6D, #00A853) 1;
}
header {
  max-width: 1200px;
  width: 100%;
  margin: 20px auto 25px auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
header h1 {
  margin-right: auto;
}
#lang {
  padding-right: 25px;
}
@media screen and (max-width: 767px) {
  header #lang { display: none;}
}
#lang a {
  padding: 0;
  color: #3E3A39;
  text-decoration: none;
  font-size: 14px;
  position: relative;
}
#lang a::before {
  position: absolute;
  top: 9px;
  left: -18px;
  content: "";
  width: 10px;
  height: 3px;
  background: #004190;
}

/* nav */
nav {
  margin: 0;
  padding: 0;
  text-align: left;
}
.menu {
  width: 100%;
  margin: 0 0 30px;
  padding: 5px 0;
  list-style: none;
  border-left: 2px solid #036EB8;
}
.menu li {
  width: 100%;
  margin: 0;
  padding: 0;
}
.menu li a {
  padding: 20px 0 18px 23px;
  line-height: 1;
  text-decoration: none;
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #3E3A39;
}
.menu_sub {
  margin-bottom: 5px;
  list-style: none;
}
.menu_sub li a {
  padding: 12px 10px 10px 0;
  line-height: 1.5;
  font-size: 14.5px;
  font-weight: normal;
}
/* ハンバーガーメニューの線 */
@media screen and (min-width: 768px) {/*PCでは非表示*/
  .toggle, nav .lang, .toggle-close {
  display: none;
  }
}
@media screen and (max-width: 767px) {
  .menu {
    padding: 0;
    border: none;
  }
  .toggle span {
    width: 100%;
    height: 2px;
    background-color: #ccc;
    position: relative;
    display: block;
  }
  .toggle span:nth-child(1) {
    top: 0;
  }
  .toggle span:nth-child(2) {
    margin: 10px 0;
  }
  .toggle span:nth-child(3) {
    top: 0;
  }
  .toggle:focus {
    outline: none;
  }
  /* ハンバーガーメニュークリック後のスタイル */
  .menu_side.active {
    transform: translateX(0);
    display: block;
  }
  .toggle.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
  }
  .toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .toggle.active span:nth-child(3) {
    top: -15px;
    transform: rotate(-45deg);
  }
  /* ナビのリンク */
  .menu {
    border-top: 1px solid #ccc;
  }
  .menu li {
    border-bottom: 1px solid #ccc;
  }
  .menu li li {
    border: none;
  }
  .menu a {
    width: 100%;
  }
  .menu ul li:last-child {
    padding-bottom: 15px;
  }
  .menu li a {
    position: relative;
  }
  .menu li a:after {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #036EB8;
  border-right: solid 2px #036EB8;
  position: absolute;
  top: 50%;
  right: 3vw;
  transform: rotate(45deg);
  }
  .menu_side {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateX(100%);
    background-color: #fff;
    transition: ease .4s;
    z-index: 999;
    display: none;
  }
  nav ul li br {
    display: none;
  }
  nav .lang a {
    width: 80%;
    margin: 1em auto;
    padding: 0.4em 0;
    color: #3E3A39;
    display: block;
    background: #f3f3f3;
    text-align: center;
    text-decoration: none;
  }
  .toggle-close {
    width: 100%;
    text-align: center;
    border: none;
    background: #3E3A39;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .3);
    color: #fff;
  }
  .toggle-close span {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 1em;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
  }
.toggle-close span::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
  }
}

/*フッター*/
footer {
  width: 100%;
  font-size: 1.2rem;
  margin: 0 0 7px;
  padding: 15px 0;
  line-height: 1;
  color: #fff;
  background: linear-gradient(to right, #EBEB6D, #00A853);
}
@media screen and (min-width: 768px) {/*PCでは非表示*/
  footer br {
  display: none;
  }
}

/* ページトップへ戻る */
#page-top {
  display: block;
  position: fixed;
  z-index: 9999;
  bottom: 10px;
  right: 10px;
  width: 70px;
  height: 45px;
  padding: 15px 10px 10px;
  background: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 20px;
  line-height: 20px;
  clear: both;
  opacity: .7;
}
#page-top:hover {
  opacity: .8;
}
.arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-left-color: #fff;
  border-top-color: #fff;
  top: 20px;
  left: 26px;
  transform: rotate(45deg);
}
@media print {
  #page-top {
    display: none;
  }
}

/*top page*/
main.top {
  width: 100%;
  max-width: 920px;
  margin: 0;
  padding: 0 0 50px;
  text-align: left;
}
#mainvisual {
  width: 100%;
  margin: 0 0 60px;
  position: relative;
}
#mainvisual p {
  font-weight: 600;
  font-size: 4.5rem;
  margin: auto;
  color: #fff;
  line-height: 1.3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  width: 100%;
  text-align: center;
  text-shadow: 0 0 3px #605f5e, 0 0 3px #605f5e, 0 0 3px #605f5e, 0 0 3px #605f5e;
}
@media screen and (max-width: 767px) {
  #mainvisual p { font-size: 2rem; }
}
#introductoryEssay {
  width: 100%;
  padding: 0;
}
#introductoryEssay h2 {
  margin: 0 5px 15px;
  padding: 0;
  font-size: 2rem;
  line-height: 1.3;
  border: none;
}
#introductoryEssay p {
  margin: 5px;
  padding: 0;
  line-height: 1.7;
}
main.top h2 {
  margin: 0 0 10px;
  padding: 10px 0 15px;
  font-size: 2rem;
  line-height: 1;
  border-bottom: 1px solid #fe9101;
}
#newsWrapper {
  width: 100%;
  margin: 0 auto;
  padding: 25px 0 10px;
  text-align: left;
  background-color: #f3f3f3;
}
#news {
  width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #news { display: block;}
}
#news h2 {
  height: 33px;
  margin: 20px 35px 10px 0;
  padding: 10px 25px 30px;
  font-size: 1.9rem;
  line-height: 1;
  border: 1px solid #3E3A39;
  display: block;
  text-align: center;
}
#news ul {
  height: 350px;
  margin: 0 0 40px;
  padding: 5px;
  list-style: none;
  overflow: auto;
  overflow-y: scroll;
}
#news ul li {
  margin: 0;
  padding: 10px 0;
  line-height: 1.5;
  font-size: 14px;
}
#news ul li a[target="_blank"] {
  background: url("../image/ic_blank.png") right no-repeat;
  padding-right: 22px;
  background-size: 18px 17px;
}
#pickupWrapper {
  margin: 20px 0;
  padding: 15px 0;
  background: #fff;
  border: 1px solid #00A853;
}
#pickupWrapper h3 {
  padding-left: 20px;
  color: #00A853;
  font-size: 14px;
  position: relative;
}
#pickupWrapper h3::before {
  position: absolute;
  top: 10px;
  left: 0;
  content: "";
  width: 12px;
  height: 3px;
  background: #00A853;
}
#pickupWrapper ul {
  margin: 0 20px;
  padding: 0;
  height: auto;
  overflow-y: auto;
}

/*tablesorter*/
#matheList th {
  white-space: nowrap;
  position: relative;
  cursor: pointer;
  outline: none;
}
#matheList .tablesorter-header {
  &:before,
  &:after {
      content: "";
      height: 0;
      width: 0;
      position: absolute;
      border: 4px solid transparent;
      right: 8px;
      top: 50%;
  }
  &:before {
      border-bottom-color: #036eb8;
      margin-top: -12px;
  }
  &:after {
      border-top-color: #036eb8;
      margin-top: 2px;
  }
  &.tablesorter-headerDesc {
      &:before {
          border-bottom: none;
      }
      &:after {
          border-top-color: #036eb8;
          margin-top: 2px;
      }
  }
  &.tablesorter-headerAsc {
      &:before {
          border-bottom-color: #036eb8;
          margin-top: -12px;
      }
      &:after {
          border-top: none;
      }
  }
  &:nth-of-type(14) {
      &:before,
      &:after {
          content: none;
      }
  }
}
#matheList .nosort {
  &:before,
  &:after {
      content: none
    }
}
#matheList .tablesorter-headerDesc {
  border-bottom: 2px solid #036eb8;
}
#matheList .tablesorter-headerAsc {
  border-top: 2px solid #036eb8;
}


/* main */
main.contents {
  width: 960px;
  min-width: 960px;
  min-height: 700px;
  text-align: left;
  margin: 0;
  padding: 0 0 30px;
}
main.contents h1 {
  margin: 0 0 30px;
  padding: 20px 15px 24px;
  font-size: 2.3rem;
  line-height: 1;
  background: #f3f3f3;
  border-top: 2px solid #036eb8;
}
main.contents h2 {
  margin: 40px 5px 15px;
  padding: 12px 0 10px 10px;
  line-height: 1.5;
  font-size: 1.9rem;
  font-weight: 600;
  border-bottom: 3px solid #036eb8;
}
main.contents h3 {
  margin: 30px 10px 15px;
  padding: 2px 0 3px 10px;
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  border-left: 4px solid #036eb8;
}
main.contents h4 {
  margin: 18px 20px 10px;
  padding: 0;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #3d3d3d;
  font-weight: 600;
}
main.contents p {
  margin: 10px 20px;
  padding: 0;
}
/* list */
main.contents ul {
  margin: 5px 10px 5px 15px;
  padding: 0;
}
main.contents ul li {
  list-style: none;
  padding: 2px 0 2px 18px;
  margin: 0 0 0 7px;
  position: relative;
}
main.contents ul li::before {
  position: absolute;
  top: 13px;
  left: 0;
  content: "";
  width: 10px;
  height: 3px;
  background: #31a7da;
}
main.contents ul ul, main.contents ol ul {
  margin: 0 0 3px;
}
main.contents ul ul li, main.contents ol ul li {
  list-style: disc;
  padding: 0;
  margin: 0 0 0 20px;
}
main.contents ul ul li::before, main.contents ol ul li::before, main.contents ul ol li::before {
  display: none;
}
main.contents ul ul ul li {
  list-style: circle;
}
main.contents ul ol {
  margin: 0 0 0 20px;
}
main.contents ul ol li {
  list-style-type: inherit;
}
main.contents ol {
  margin: 5px 10px 5px 48px;
  padding: 0;
}
main.contents ol li {
  margin: 0;
  padding: 2px 0;
}
main.contents ol ol {
  margin: 0 0 0 20px;
}
main.contents ol ol li {
  margin: 0;
  padding: 0;
}
/* table */
table {
  padding: 0;
  margin: 25px auto;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 1px;
}
table th {
  padding: 7px 10px 5px;
  text-align: left;
  background-color: #f7f7f7;
  border: 1px solid #ccc;
  font-weight: 900;
}
table td {
  padding: 7px 10px 5px;
  border: 1px solid #ccc;
}
table.noborder th {
  border: none;
}
table.noborder td {
  border: none;
}
table.center th, table.center td {
  text-align: center;
}
/* figure */
figure {
  margin: 20px 45px;
}
figure.center {
  margin: 30px auto;
}
figure.fr {
  float: right;
  margin: 0 10px 15px 15px;
}
figure.fl {
  float: left;
  margin: 0 15px 15px 10px;
}
figure img, video {
  margin: 3px 0;
  width: 100%;
}
figcaption {
  line-height: 1.4;
  padding: 5px;
  text-align: left;
}
hr {
  border: 0;
  height: 1px;
  margin: 45px 25px;
  clear: both;
  background: linear-gradient(to right, #ebeb6D, #00a853, #ebeb6D);
}
/* utility */
#mainWrapper a[target="_blank"] {
  background: url(../image/ic_blank.png) right no-repeat;
  padding-right: 22px;
  background-size: 18px 17px;
}
a[href$=".pdf"] {
  background: url(../image/ic_pdf.png) right no-repeat;
  padding-right: 24px;
  background-size: 20px 20px;
}
a[href$=".doc"], a[href$=".docx"] {
  background: url(../image/ic_doc.png) right no-repeat;
  padding-right: 24px;
  background-size: 20px 18px;
}
.no_icon {
  background-image: none !important;
  padding-right: 0;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb05 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mt0 {
  margin-top: 0 !important;
}
.mt05 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.w05 {
  width: 10%;
}
.w10 {
  width: 10%;
}
.w15 {
  width: 15%;
}
.w20 {
  width: 20%;
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w35 {
  width: 35%;
}
.w40 {
  width: 40%;
}
.w45 {
  width: 45%;
}
.w50 {
  width: 50%;
}
.w55 {
  width: 55%;
}
.w60 {
  width: 60%;
}
.w70 {
  width: 70%;
}
.w75 {
  width: 75%;
}
.w80 {
  width: 80%;
}
.w90 {
  width: 90%;
}
.w95 {
  width: 95%;
}
.w98 {
  width: 98%;
}
.w100 {
  width: 100%;
}
.clear {
  clear: both;
  overflow: hidden;
}
.center {
  text-align: center;
  text-indent: 0;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.small {
  font-size: 0.85em;
}
.large {
  font-size: 1.2em;
}
blockquote {
  margin: 5px 0 5px 15px;
}
/* album */
.photoWrapper {
	width: 96%;
	margin: 10px auto;
	display: flex;
	flex-wrap: wrap;
}
.photo {
	width: 31%;
	margin: 10px 1%;
}
.photo2 {
	width: 23%;
	margin: 10px 1%;
}
.photoWrapper a:active, .photoWrapper a:hover {
	opacity: 1;
}
.photo img, .photo2 img {
	width: 100%;
	margin: 0 0 5px;
	object-fit: contain;
}
#mainWrapper .btn_apply {
  margin: 50px auto;
  text-align: center;
}
#mainWrapper .btn_apply a {
  margin: 0 auto;
  padding: 0.7em 50px;
  background: #00A853;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}
#mainWrapper .btn_apply a[target="_blank"] {
  background-image: none;
}
#mainWrapper .btn_detail {
  margin: 20px;
}
#mainWrapper .btn_detail a {
  margin: 0;
  padding: 0.7em 50px 0.8em;
  background: #f0f0f0;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  line-height: 1;
}

@media only screen and (max-width: 767px) {
  body {
    min-width: initial;
    min-width: auto;
    position: relative;
  }
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
  header {
    width: 100%;
    margin: 1em 0;
    padding: 0 0.5em 0.5em;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  header img {
    height: auto;
    max-height: 200px;
  }
  header h1 {
    max-width: 62%;
  }
  header a.lang {
    display: none;
  }
  #tulogo {
    max-width: 10.5%;
  }
  .toggle {
    display: block;
    width: 8vw;
    max-width: 10.5%;
    margin: 0 0.5em 0 0.7em;
    padding: .2vw 0 1vw;
    background: #fff;
    border: none;
    cursor: pointer;
    z-index: 9999;
  }
  footer {
    padding: 2vw 0;
    font-size: 0.8rem;
    line-height: 1.2;
  }
  main.top {
    width: 100%;
  }
  #mvWrapper {
    width: 100%;
    height: 40vw;
  }
  #mv {
    width: 100%;
  }
  #about {
    width: 100%;
    padding: 5vw 3vw;
  }
  #news {
    width: 100%;
    margin: 5vw auto;
  }
  #news h2 {
    font-size: 2rem;
    border-bottom: 1vw solid #e8e8e8;
    margin: 0 0 10px;
    padding: 0 0 1vw;
    border: none;
  }
  #news h2::after {
    height: 1vw;
    width: 35vw;
    bottom: -1vw;
  }
  #news dl {
    padding: 2vw 1vw;
    height: 60vw;
  }
  #news dl dd {
    width: 75%;
    margin: 2vw 0 2vw 25%;
  }
  #banner ul {
    width: 100%;
    padding: 4vw 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  #banner ul li {
    margin: 1vw 0;
  }
  #banner ul li img {
    height: 11vw;
  }
  #banner ul li a {
    padding: 0;
  }
  main.contents {
    width: 100%;
    min-width: 100%;
    min-height: 150vw;
    padding: 0 0 5vw;
    margin: 0 auto 3vw;
  }
  main.contents h1 {
    font-size: 2.1rem;
    line-height: 1.2;
  }
  main.contents h2 {
    width: 98%;
    margin: 5vw auto 3vw;
    padding: 2.5vw;
    line-height: 1.2;
  }
  main.contents h3 {
    width: 98%;
    margin: 5vw auto 2vw;
    padding: 1vw 2vw;
    border-left: 0.2em solid #036eb8;
  }
  main.contents h4 {
    width: 96%;
    margin: 4vw auto 2vw;
    padding: 0;
  }
  main.contents p {
    margin: 2vw 3%;
  }
  main.contents ul {
    margin: 3vw 2% 3vw 3%;
  }
  main.contents ul li {
    padding: 1vw 0 1vw 6vw;
    margin: 0;
  }
  main.contents ul li::before {
    top: 3.8vw;
    left: 1vw;
    width: 3vw;
    height: .8vw;
  }
  main.contents li p {
    margin: 3vw 0;
  }
  main.contents ul ul, main.contents ol ul {
    margin: 0 0 1vw;
  }
  main.contents ul ul li, main.contents ol ul li {
    margin: 0 0 0 4vw;
  }
  main.contents ul ol {
    margin: 0 0 0 2vw;
  }
  main.contents ol {
    margin: 3vw 3% 3vw 8%;
  }
  main.contents ol li {
    padding: .3vw 0;
  }
  main.contents ol ol {
    margin: 0 0 0 2vw;
  }
  table {
    width: 95%;
    margin: 3vw auto;
  }
  table th {
    padding: 1vw 2vw;
  }
  table td {
    padding: 1vw 2vw;
  }
  figure {
    width: 90%;
    margin: 6vw auto;
  }
  figure.fl, figure.fr, figure.center {
    float: none;
    width: 90%;
    margin: 2vw auto;
    text-align: center;
  }
  figure img, video {
    width: 100%;
    margin: 0 auto 1vw;
  }
  figcaption {
    padding: 0 2%;
  }
  hr {
    margin: 4vw;
  }
  a[target="_blank"] {
    padding-right: 4vw;
    background-size: 3.5vw 3.4vw;
  }
  a[href$=".pdf"] {
    padding-right: 4vw !important;
    background-size: 3.5vw 3.5vw !important;
  }
  a[href$=".doc"], a[href$=".docx"] {
    padding-right: 4vw !important;
    background-size: 3.5vw 3.3vw !important;
  }
  #page-top {
    bottom: 5vw;
    right: 3vw;
  }
  .xscroll {
    width: 100%;
    overflow-x: auto;
  }
  .xscroll table {
    width: 900px;
    margin: 2vw 2%;
  }
  blockquote {
    margin: 2vw 0 2vw 3vw;
  }
  .pic {
    margin: 5vw auto;
  }
  .pic img {
    height: auto;
    width: 90%;
    margin: 2vw;
  }
  /*cooperation*/
  .cooperation1 li {
    flex-wrap: wrap;
    margin-top: 4vw !important;
    padding-bottom: 5vw !important;
  }
  .cooperation1 li p {
    margin: 0 !important;
  }
  .cooperation1 li img {
    width: 90%;
    margin: 1vw 0;
  }
  .cooperation2 li {
    flex-wrap: wrap;
    margin-top: 4vw !important;
    padding-bottom: 5vw !important;
  }
  .cooperation2 li p {
    margin: 0 !important;
  }
  .cooperation2 li img {
    width: 50%;
    margin: 1vw 30% 1vw 20%;
  }
}