/*---------------
reset
---------------*/
*:where(:not(html,iframe,canvas,img,svg,video,audio):not(svg*,symbol*)){all:unset;display:revert}*,*::before,*::after{box-sizing:border-box}
*{margin: 0; padding: 0; text-rendering: optimizeLegibility;}
html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;text-size-adjust:none;scroll-behavior: smooth;}
a{transition: .3s;}
a,button{cursor:revert}
ol,ul,menu,summary{list-style:none}
img{display: block;}
table{border-collapse:collapse;}
input,textarea{-webkit-user-select:auto}
textarea{white-space:revert}
meter{-webkit-appearance:revert;appearance:revert}:where(pre){all:revert;box-sizing:border-box}::placeholder{color:unset}:where([hidden]){display:none}:where([contenteditable]:not([contenteditable="false"])){-moz-user-modify:read-write;-webkit-user-modify:read-write;overflow-wrap:break-word;-webkit-line-break:after-white-space;-webkit-user-select:auto}:where([draggable="true"]){-webkit-user-drag:element}:where(dialog:modal){all:revert;box-sizing:border-box}
:root{--black: #010101;--blue: #4eaa8f;--gray: #515151;--white: #fff;}

*{
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body{
  position: relative;
}
#pc-main{
  display:block;
}
@media screen and (max-width: 833px) {
  #pc-main{
    display:none;
  }
}
#sp-main{
  display:none;
}
@media screen and (max-width: 833px) {
  #sp-main{
    display:block;
  }
}

#pc-tablet-menu{
  display:block;
}
@media screen and (max-width: 833px) {
  #pc-tablet-menu{
    display:none;
  }
}
#sp-menu{
  display:none;
}
@media screen and (max-width: 833px) {
  #sp-menu{
    display:block;
  }
}
/*---------------
header
---------------*/
header {
  width:98vw;
  max-width: 1340px;
  margin: 0 auto;
  padding:15px 0 15px 0;
}
header > div {
  line-height: 0;
}
header > div img {
  width: 215px;
}
header nav {
  width:calc(100% - 250px);
}
header nav ul li {
  margin:1px 0 1px 0;
}
header nav ul li a {
  width:100%;
  display:inline-block;
  text-decoration: none;
  position: relative;
  color:#000066;
  background: #c6def2;
  border-top:2px solid #d6e8f7;
  border-left:2px solid #7884b5;
  border-right:2px solid #7884b5;
  border-bottom:2px solid #6268a4;
  font-size:30px;
  padding:5px 10px 5px 10px;
  text-align:center;
}
@media screen and (max-width: 1220px) {
  header nav ul li a {
    font-size:28px;
  }
}
@media screen and (max-width: 1080px) {
  header {
    width:98vw;
    max-width: 1340px;
    margin: 0 auto;
    padding:15px 0 15px 0;
  }
  header > div img {
    width: 165px;
  }
  header nav {
    width:calc(100% - 185px);
  }
  header nav ul li a {
    width:100%;
    display:inline-block;
    text-decoration: none;
    position: relative;
    color:#000066;
    background: #c6def2;
    border-top:2px solid #d6e8f7;
    border-left:2px solid #7884b5;
    border-right:2px solid #7884b5;
    border-bottom:2px solid #6268a4;
    font-size:24px;
    padding:4px 10px 4px 10px;
    text-align:center;
  }
}

header nav ul li a:hover {
  color:#fff;
  background: #000066;
}
header nav ul li:nth-child(1) {
  width: 23%;
}
header nav ul li:nth-child(2) {
  width: 23%;
}
header nav ul li:nth-child(3) {
  width: 23%;
}
header nav ul li:nth-child(4) {
  width: 30%;
}
header nav ul li:nth-child(5) {
  width: 23%;
}
header nav ul li:nth-child(6) {
  width: 46.5%;
}
header nav ul li:nth-child(7) {
  width: 30%;
}

/*---------------
main
---------------*/
main {
  width:98vw;
  max-width: 1340px;
  margin: 0 auto;
  padding:0 0 0;
}
main img {
  width:100%;
  display:block;
}

@media screen and (max-width: 1080px) {
  main {
    width:98vw;
    max-width: 1280px;
    margin: 0 auto;
    padding:0 0 0;
  }
}

/*---------------
footer
---------------*/

/* footer - PC */
footer {
  width: 100%;
  margin: 24px 0 0 0;
  border-top: 1px solid #e6e6e6;
}
footer > div > div {
  width: 90vw;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  footer > div > div {
    width: 96vw;
    max-width: 1280px;
    margin: 0 auto;
  }
}
/* footer-copiright - PC */
.footer-copyright {
  padding: 16px 0 20px 0;
  background: #f0f0f0;
}
.footer-copyright > div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-copyright ul {
  display: flex;
}
.footer-copyright ul li {
  padding: 0 42px 0 0;
}
.footer-copyright ul li:last-child {
  padding: 0 0 0 0;
}
.footer-copyright ul li a {
  font-size: 14px;
  color: #222;
  position: relative;
  opacity: 1;
  text-decoration:none;
}
.footer-copyright ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000066;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.footer-copyright ul li a:hover {
  color: #000066;
}
.footer-copyright ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
  opacity: 1;
}
.footer-copyright p {
  text-align: right;
  font-size: 12px;
}

/* footer-copiright - SP */
@media screen and (max-width: 768px) {
  .footer-copyright > div > div{
    width: 100%;
  }
  .footer-copyright {
    width: 100%;
    padding: 36px 0 60px 0;
  }
  .footer-copyright ul {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 0 40px 0;
  }
  .footer-copyright ul li {
    padding: 0 5vw 14px 5vw;
  }
  .footer-copyright ul li:last-child {
    padding: 0 5vw 14px 5vw;
  }
  .footer-copyright ul li a {
    font-size: 12px;
    color: #222;
  }
  .footer-copyright p {
    width: 100%;
    font-size: 10px;
    text-align: center;
  }
}


/*---------------
Layout
---------------*/
.box-fl{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.box-st{
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

/*---------------
Module
---------------*/
.button {
  font: 400 15px 'Chillax', sans-serif;
  margin: -10px 0 0 0;
  text-decoration: none;
  display: inline-block;
  padding: 8px 50px 8px 50px;
  color: #000;
  background: #fff;
  border: 8px solid #efeded;
  border-radius: 35px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, .35);
  transition: .3s;
}
.button:hover {
  color: #fff;
  background: #000;
  border-color: #292b35;
  transform: scale(1.15, 1.15);
}

/*---------------
page-back
---------------*/
.page-back{
  text-align:left;
}
@media (max-width: 834px) {
  .page-back {
    text-align: center;
    margin: 0 0 0 -25px;
  }
}
.page-back a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  transition: .3s;
  padding: 0 0 0 38px;
  position: relative;
}
.page-back a:before {
  content: "";
  width: 26px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 2px;
  left: 0;
  transition: .3s;
}
.page-back a:after {
  content: "";
  width: 10px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 6px;
  left: -1px;
  transform: rotate(-45deg);
  transition: .3s;
}
.page-back a:hover {
  color: var(--blue);
}
.page-back a:hover:before {
  left: -3px;
}
.page-back a:hover:after {
  content: "";
  width: 10px;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 6px;
  left: -4px;
  transform: rotate(-45deg);
}




/*---------------
Cookie
---------------*/
#cookieBanner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #f8f8f8;
  padding: 20px;
  text-align: center;
  z-index:99;
}
#cookieBanner > div{
  display:flex;
  align-items: center;
  justify-content: center;
  flex-wrap:wrap;
}
#cookieBanner > div p{
  font-size:15px;
  color:#000;
  padding:20px;
}
#cookieBanner > div p a{
  color:#070059;
  padding:0 0 5px 0;
  text-decoration:none;
  border-bottom:1px dotted #070059;
}
#cookieBanner > div p a:hover{
  color:#000;
  padding:0 0 5px 0;
  border-bottom:1px dotted #f8f8f8;
  cursor: pointer;
}
#declineBtn{
  margin: 0 5px 0 5px;
  cursor: pointer;
  border-top:none;
  border-right:none;
  border-bottom:none;
  border-left:none;
  background:#adadad;
  color:#fff;
  vertical-align:6px;
  padding:8px 25px 8px 25px;
  font-size:15px;
  border-radius:5px;
  transition: .3s;
}
#declineBtn:hover{
  background:#cdcdcd;
  border-radius:2px;
}
#acceptBtn{
  margin: 0 5px 0 5px;
  cursor: pointer;
  border-top:none;
  border-right:none;
  border-bottom:none;
  border-left:none;
  background:#070059;
  color:#fff;
  vertical-align:6px;
  padding:8px 25px 8px 25px;
  font-size:15px;
  border-radius:5px;
  transition: .3s;
}
#acceptBtn:hover{
  background:#160b99;
  border-radius:2px;
}
@media (max-width: 834px) {
  #declineBtn{
    padding:20px 25px 20px 25px;
  }
  #acceptBtn{
    padding:20px 25px 20px 25px;
  }
}

/* bread-nav - PC */
.bread-nav {
  background: #f5f5f5;
  border-bottom: 1px solid #e6e6e6;
}
.bread-nav ul {
  width: 98vw;
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  padding: 12px 0 10px 0;
}
.bread-nav ul li {
  position: relative;
  padding: 0 20px 0 20px;
  font-size: 13px;
}
.bread-nav ul li a{
  text-decoration:none;
  color:#000066;
}
.bread-nav ul li:first-child {
  padding: 0 20px 0 0;
}
.bread-nav ul li:last-child {
  padding: 0 0 0 20px;
}
.bread-nav ul li:before {
  content: "";
  width: 5px;
  height: 1px;
  background: #000066;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 50%;
  margin:-2px 0 0 0;
}
.bread-nav ul li:after {
  content: "";
  width: 5px;
  height: 1px;
  background: #000066;
  transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 50%;
  margin: 1px 0 0 0;
}
.bread-nav ul li:last-child:before,
.bread-nav ul li:last-child:after {
  background: none;
}

/* bread-nav - SP */
@media screen and (max-width: 980px) {
  .bread-nav {
    display: none;
  }
}


/* page-title - PC */
.page-title {
  width: 98vw;
  max-width: 1340px;
  margin: 0 auto;
  padding: 80px 0 40px 0;
}
.page-title h1 {
  color: #000066;
  font-size: 50px;
}
.page-title span {
  font-size: 20px;
  display:block;
  padding:10px 0 0 0;
}
.page-title p {
  padding: 20px 0 0 0;
  line-height: 1.8em;
}

/* page-title - SP */
@media screen and (max-width: 768px) {
  .page-title {
    width: 96vw;
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 0 40px 0;
  }
  .page-title h1 {
    color: #000066;
    font-size: 38px;
  }
  .page-title h1 span {
    display: block;
    font-size: 35px;
  }
  .page-title p {
    padding: 20px 0 0 0;
    line-height: 1.8em;
  }
}


.recruit-entry {
  padding:0 0 30px 0;
}
.recruit-entry h2 {
  color: #000;
  background: #dfebf7;
  text-align: center;
  margin: 12px 0 0 0;
  padding: 15px;
  font-size: 26px;
}
.recruit-entry address{
  font-size: 26px;
}
.recruit-entry > p{
  font-size: 28px;
  text-align: center;
  font-weight: 500;
  padding: 30px 0 10px 0;
}
.recruit-entry > div > div{
  text-align: center;
  margin: 20px 0 20px 0;
}
.recruit-entry > div a{
  width:58%;
  color: #000;
  background: #dfebf7;
  text-align: center;
  font-size: 48px;
  padding: 40px;
  border-radius: 13px;
  display:inline-block;
  text-decoration:none;
  font-weight:600;
}
.recruit-entry > div a:hover{
  color: #dfebf7;
  background: #000;
}
.recruit-entry address{
  font-style: normal;
}
.recruit-entry address p{
  padding: 15px;
}
.recruit-entry address p br{
  display: block!important;
}
.recruit-entry ul {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.recruit-entry ul li {
  width: 30%;
  border: 1px solid #e6e6e6;
  margin: 0 20px;
}
.recruit-entry ul li:nth-child(2) img {
  margin-top: 4px;
}
.recruit-entry ul li a {
  width: 100%;
  padding: 32px 24px;
  display: block;
}
.recruit-entry ul li img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .recruit-entry > div a{
    width: 100%;
    max-width: 640px;
    text-align: center;
    font-size: 26px;
    padding: 20px;
    border-radius: 5px;
  }
  .recruit-entry ul {
    display: block;
  }
  .recruit-entry ul li {
    width: 100%;
    margin: 0 0 16px 0;
  }
}
@media screen and (max-width: 375px) {
  .recruit-entry > p{
    font-size: 22px;
    text-align: center;
    font-weight: 500;
    padding: 0 0 10px 0;
  }
  .recruit-entry h2 {
    color: #fff;
    background: #000066;
    text-align: center;
    margin: 12px 0 0 0;
    padding: 15px;
    font-size: 22px;
  }
  .recruit-entry > div a{
    width: 100%;
    max-width: 640px;
    text-align: center;
    font-size: 22px;
    padding: 18px;
    border-radius: 5px;
  }
  .recruit-entry address p{
    font-size: 22px;
  }
}
.job-part{
  text-align:center;
}
.job-part a{
  width:58%;
  color: #11086d;
  border:1px solid #060001;
  background: #a0d9f6;
  text-align: center;
  font-size: 38px;
  font-weight:600;
  padding: 30px;
  border-radius: 13px;
  display:inline-block;
  text-decoration:none;
}
.job-part a:hover{
  width:60%;
  color: #a0d9f6;
  border:1px solid #060001;
  background: #11086d;
  text-align: center;
  font-size: 38px;
  font-weight:600;
  padding: 30px;
  border-radius: 13px;
  display:inline-block;
  text-decoration:none;
}

#page-top{
  position:fixed;
  bottom: 20px;
  right: 10px;
  width:45px;
  height:45px;
  background:#000066;
  border-radius:100%;
  color:#fff;
}

#page-top:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

#page-top::before {
  content: '';
  width: 0.65em;
  height: 0.65em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
  transform-origin: top right;
  position: absolute;
  top: 50%;
  right: 50%;
  box-sizing: border-box;
  margin: -5px 0 0 0;
}

#submenu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.header {
  justify-content: space-between;
  align-items: center;
  padding: 5px 12px 10px 15px;
  background: #000066;
}

.drawer_hidden {
  display: none;
}

.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;
  cursor: pointer;
}

.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 28px;
  border-radius: 3px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}

.drawer_open span:before {
  bottom: 8px;
}

.drawer_open span:after {
  top: 8px;
}

#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background: #000066;
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
  background: #000066;
}

.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 99;
  transition: 0.5s;
  background: #f8f8f8;
  box-shadow: -5px 0px 14px 6px rgba(176, 176, 176, 0.4);
}

.nav_list {
  list-style: none;
  padding: 80px 0 0 0;
}

.nav_list li {
  border-bottom: 1px solid #ededed;
}

.nav_list li a {
  display: block;
  padding: 25px 20px 25px 30px;
  color: #000066;
  text-decoration: none;
  font-size: 22px;
}
.nav_list li a:nth-child(2){
  display:block;
}
.nav_list li a:nth-child(1){
  display:none;
}
.nav_list li a:hover {
  background: #fff;
}

#drawer_input:checked ~ .nav_content {
  left: 0%;
}

.requirements *{
  font-family: "Noto Sans JP", sans-serif;
}
.job-entry *{
  font-family: "Noto Sans JP", sans-serif;
}
.nav-jobentry *{
  font-family: "Noto Sans JP", sans-serif;
}
.requirements h1 *{
  font-family: serif;
}
.requirements {
  width: 100%;
  margin: 0 auto;
  padding: 80px 24px;
  color: #222;

  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1.9;
}

.requirements h1 {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.01em;
  margin-bottom: 64px;
  line-height:3em;
  font-family: serif;
  color: #000066;
  font-weight:600;
}

.requirements h1 span {
  font-size: 44px;
  font-weight: 800;
  display: block;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.1em;
}
.job-wrap{
  display:flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}
.job-title{
  width: 32%;
  border-top: 1px solid #303030;
  padding: 36px 0 36px 0;
}

.job-title li{
  position:relative;
  padding: 0 0 0 20px;
  font-size: 16px;
}
.job-title li:before{
  content:"● ";
  position: absolute;
  left: 0;
}

.job-block{
  width: 68%;
  border-top: 1px solid #999;
  padding: 36px 0 36px 0;
}
.requirements h2 {
  font-size: 19px;
  font-weight: 600;
  margin: -4px 0 0 0 ;
}
.job-block h3,
.target-school h3 {
  font-size: 17px;
  margin-bottom: 5px;
}
.job-block ul li:nth-child(1) h4{
  margin: 0 0 0 0;
}
.job-block h4{
  margin: 20px 0 0 0;
}
.job-list-square li{
  font-size:17px;
  padding: 0 0 20px 0;
}
.job-list-square li h3{
  position: relative;
  padding: 0 0 0 35px;
  font-size:17px;
  line-heigt: 1.2em;
}
.job-list-square li h4{
  position: relative;
  font-size:17px;
}

.job-list-address li{
  font-size:17px;
  padding: 0 0 30px 0;
}
.job-list-address li:nth-child(2){
  font-size:17px;
  padding: 0 0 0 0;
}
.job-list-address li h3{
  position: relative;
  padding: 0 0 0 0;
  font-size:17px;
  line-heigt: 1em;
  font-weight: 600;
}
.job-list-address li h4{
  position: relative;
  font-size:17px;
}

.job-list-square li:nth-child(1) h3:before{
  content:"1";
  background: #000;
  color: #fff;
  padding:12px 9px 14px 9px;
  line-height:1px;
  position:absolute;
  left: 0;
  top: 3px;
}
.job-list-square li:nth-child(2) h3:before{
  content:"2";
  background: #000;
  color: #fff;
  padding:12px 9px 14px 9px;
  line-height:1px;
  position:absolute;
  left: 0;
  top: 3px;
}
.job-list-square li:nth-child(3) h3:before{
  content:"3";
  background: #000;
  color: #fff;
  padding:12px 9px 14px 9px;
  line-height:1px;
  position:absolute;
  left: 0;
  top: 3px;
}

.job-list li{
  position:relative;
  padding: 0 0 0 20px;
  font-size: 16px;
}
.job-list li:before{
  content:"● ";
  position: absolute;
  left: 0;
}

.requirements table {
  width: 100%;
  border-collapse: collapse;
}

.requirements th,
.requirements td {
  vertical-align: middle;
  text-align: left;
}

.requirements th {
  width: 100px;
  font-weight: 700;
  white-space: nowrap;
}
.job-image img{
  width: 100%;
}
.job-entry{
  width: 100%;
  margin: 80px 0 0 0;
}
.job-entry h5{
  background: #f8f8f8;
  color: #000066;
  text-align:center;
  padding:20px;
  font-size:20px;
}
.job-entry > p{
  text-align:center;
  font-size:17px;
  padding: 30px 20px 10px 20px;
}
.job-entry > h6{
  text-align:center;
  font-size:17px;
  font-weight:600;
}
.job-entry > ul{
  display:flex;
  justify-content: space-between;
  padding: 40px 0 0 0;
}
.job-entry > ul li{
  width:49%;
}
.job-entry > ul li a{
  display:block;
  padding: 30px 20px 30px 20px;
  border-radius: 5px;
  background: #000066;
  color:#fff;
  text-align:center;
  text-decoration: none;
  font-size:20px;
}
.job-entry > ul li a:hover{
  background: #191919;
}
.job-parttime{
  margin: 80px 0 140px 0;
}
.job-parttime > a{
  display:block;
  padding: 30px 20px 30px 20px;
  border-radius: 5px;
  background: #191919;
  color:#fff;
  text-align:center;
  text-decoration: none;
  font-size:20px;
}
.job-parttime > a:hover{
  background: #000066;
}
.job-parttime > table{
  width: 100%;
  margin: 20px 0 0 0;
}
.job-parttime > table th{
  width: 20%;
  border:1px solid #cdcdcd;
  padding:20px;
  background: #f8f8f8;
}
.job-parttime > table td{
  border:1px solid #cdcdcd;
  padding:20px;
}
.nav-jobentry{
  padding: 0 24px 80px 24px;
}
.nav-jobentry h6{
  font-size:20px;
}
.nav-jobentry h6:before{
  content:"●";
}
.nav-jobentry ul{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav-jobentry ul li{
  width: 49%;
  margin: 20px 0 0 0;
}
.nav-jobentry ul li a{
  display:block;
  padding: 30px 20px 30px 20px;
  border-radius: 5px;
  background: #000066;
  color:#fff;
  text-align:center;
  text-decoration: none;
  font-size:20px;
}
.nav-jobentry ul li a:hover{
  background: #191919;
}
.nav-jobentry ul li span{
  display:block;
  padding: 30px 20px 30px 20px;
  border-radius: 5px;
  background: #ededed;
  color:#cdcdcd;
  text-align:center;
  text-decoration: none;
  font-size:20px;
}