@charset "UTF-8";
/*共通*/
/*リセット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;
}

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;
  text-decoration: none;
}

ins {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #fff;
  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;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/*common*/
body {
  min-width: 880px;
  color: #363636;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  vertical-align: middle;
}

a {
  color: #0081CC;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover {
  opacity: 0.7;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.textCenter, .textCenter_pc {
  text-align: center;
}

.textRight {
  text-align: right;
}

.w800Box {
  width: 800px;
  margin: 0 auto;
}

.contentsBox {
  margin-bottom: 80px;
}

h2.normalTitle {
  text-align: center;
  font-size: clamp(18px, 5vw, 26px);
  position: relative;
  margin-bottom: 2em;
}
h2.normalTitle::after {
  content: "";
  position: absolute;
  display: block;
  width: 2em;
  height: 0.3em;
  background-color: #0081CC;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.8em;
}

h3.normalTitle {
  font-weight: bold;
  position: relative;
  padding-left: 2.4em;
  margin-bottom: 1em;
}
h3.normalTitle::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 2px;
  background-color: #363636;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.textLink {
  position: relative;
  color: #0081CC;
  padding-right: 1em;
}
.textLink::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #0081CC;
  border-right: 2px solid #0081CC;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  right: 0;
  top: 7px;
}
.textLink.disableLink {
  color: #969696;
  pointer-events: none;
  cursor: default;
}
.textLink.disableLink::before {
  border-top: 2px solid #969696;
  border-right: 2px solid #969696;
}

.linkArea {
  text-align: center;
  margin-top: 24px;
}

#anc_top {
  margin-top: -80px;
  padding-top: 80px;
}

@media screen and (max-width: 640px) {
  body {
    min-width: 100%;
  }
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  .textCenter_pc {
    text-align: left;
  }
  .w800Box {
    width: 92%;
  }
  .contentsBox {
    margin-bottom: 40px;
  }
}
/*header*/
.headerArea {
  z-index: 120;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #ffffff;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  padding: 16px 16px 16px;
  width: 100%;
}
.headerArea .headerInner {
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 640px) {
  .headerArea {
    padding: 8px 0;
  }
  .headerArea .headerInner {
    width: 90%;
  }
  .headerArea .headerInner img {
    width: 120px;
  }
}
/*mainArea*/
.mainArea {
  padding: 160px 0 120px;
  background-color: #EFF8FD;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
.mainArea .titleArea {
  position: relative;
  margin-left: 4%;
}
.mainArea .titleArea .mainBack {
  position: absolute;
  left: -16%;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
}
.mainArea .titleArea h1.main {
  position: relative;
  z-index: 5;
  font-size: clamp(26px, 6.8vw, 56px);
  font-family: "Noto Serif JP", serif;
  opacity: 0;
  animation: 2s fadein ease-in-out forwards;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.mainLogoImg {
  display: block;
  margin: 40px auto 32px;
  width: 50%;
  max-width: 180px;
}

@media screen and (max-width: 640px) {
  .mainArea {
    padding: 140px 0 100px;
    margin-bottom: 40px;
  }
  .mainArea .titleArea .mainBack {
    left: -8%;
  }
  .mainArea .titleArea .mainBack {
    width: 60%;
  }
}
/*会社概要*/
.corpAccessBox {
  margin-bottom: 40px;
}

.accessInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accessInner p:not(:last-child) {
  margin-bottom: 1em;
}

.accessMap {
  width: 420px;
}

.accessMapInner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.accessMapInner iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.corpAisatsuBox p:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (max-width: 640px) {
  .corpAccessBox {
    margin-bottom: 40px;
  }
  .accessInner {
    flex-direction: column;
    gap: 8px;
  }
  .accessMap {
    width: 100%;
  }
}
/*お知らせ*/
.oshiraseTable {
  border-collapse: collapse;
  width: 100%;
  border-top: 1px solid #7ECEF4;
}
.oshiraseTable th, .oshiraseTable td {
  border-bottom: 1px solid #7ECEF4;
}
.oshiraseTable th {
  padding: 16px 24px;
  width: 120px;
  white-space: nowrap;
  vertical-align: top;
  font-weight: normal;
}
.oshiraseTable td {
  padding: 16px 16px 16px 0;
}
.oshiraseTable td a {
  color: #363636;
}

@media screen and (max-width: 640px) {
  .oshiraseTable {
    border-top: 1px solid #7ECEF4;
  }
  .oshiraseTable th, .oshiraseTable td {
    display: block;
    width: calc(100% - 16px);
  }
  .oshiraseTable th {
    padding: 8px 8px 0px;
    text-align: left;
    border: none;
  }
  .oshiraseTable td {
    padding: 0px 8px 8px;
    border-top: none;
  }
}
/*採用情報*/
.saiyouBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.saiyouBox img {
  width: 100%;
  max-width: 380px;
}

.saiyouLinkList {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 64px;
  margin: 24px auto 0;
}
.saiyouLinkList li {
  text-align: center;
}
.saiyouLinkList li span {
  font-size: 12px;
  display: block;
}

@media screen and (max-width: 640px) {
  .saiyouBox {
    flex-direction: column;
    gap: 8px;
  }
  .saiyouLinkList {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 24px auto 0;
  }
}
/*snsList*/
.snsList {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}
.snsList li img {
  width: 48px;
}

.gakkenLogo {
  width: 40%;
  max-width: 200px;
  display: block;
  margin: 16px auto 0;
}

/*footerLink*/
.footerLink {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 12px;
  margin-bottom: 24px;
}

.footerArea {
  font-size: 12px;
  text-align: center;
  padding: 8px 0;
}

@media screen and (max-width: 640px) {
  .footerLink {
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 0px 16px;
  }
}
