@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*----------------------------------------------------
  メイン
----------------------------------------------------*/
.main-wrap {
  display: grid;
  grid-template-areas: "stack";
  place-items: center;
  margin-inline: auto;
  height: 370px;
}
@media screen and (max-width: 767.98px) {
  .main-wrap {
    padding-top: 6.5rem;
    height: 250px;
  }
}
.main-wrap .page-title {
  display: inline-block;
}
.main-wrap .container {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1;
}
.main-wrap .container .text-area {
  z-index: 1;
  font-weight: 700;
  height: 100%;
  grid-area: stack;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: auto;
  max-width: 1400px;
  width: 100%;
  padding: 0 3rem;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .container .text-area {
    justify-content: start;
    top: 30%;
    left: 2rem;
    font-size: 8vw;
    padding: 0 2rem;
  }
}
.main-wrap .image-canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  grid-area: stack;
  margin-left: auto;
}
.main-wrap .image-canvas .dots-area {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}
.main-wrap .image-canvas .dots-area .dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  translate: -50% -50%;
  width: clamp(32px, var(--s, 2.4) * 1vw, 128px);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot {
    width: clamp(24px, var(--s, 2.4) * 1vw, 128px);
  }
}
.main-wrap .image-canvas .dots-area .dot-red {
  animation-delay: 0.2s;
  background: #C94A4A;
}
.main-wrap .image-canvas .dots-area .dot-blue {
  animation-delay: 0.5s;
  background: #4A6FA8;
}
.main-wrap .image-canvas .dots-area .dot-yellow {
  animation-delay: 0.5s;
  background: #EEAE50;
}
.main-wrap .image-canvas .dots-area .dot-01 {
  --x: 70%;
  --y: 27%;
  --s: 4;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-01 {
    --x: 70%;
    --y: 27%;
    --s: 4;
  }
}
.main-wrap .image-canvas .dots-area .dot-02 {
  --x: 80%;
  --y: 52%;
  --s: 3;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-02 {
    --x: 80%;
    --y: 52%;
    --s: 3;
  }
}
.main-wrap .image-canvas .dots-area .dot-03 {
  --x: 90%;
  --y: 15%;
  --s: 2;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-03 {
    --x: 90%;
    --y: 15%;
    --s: 2;
  }
}
.main-wrap .image-canvas .dots-area .dot-04 {
  --x: 95%;
  --y: 50%;
  --s: 10;
}
@media screen and (max-width: 767.98px) {
  .main-wrap .image-canvas .dots-area .dot-04 {
    --x: 95%;
    --y: 50%;
    --s: 10;
  }
}

/*----------------------------------------------------
  お知らせ
----------------------------------------------------*/
.info-wrap {
  padding: 8rem 0;
}

.info-area {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .info-area {
    display: block;
  }
}
.info-area .contents {
  flex: 1;
  width: calc(100% - 250px);
}
@media screen and (max-width: 767.98px) {
  .info-area .contents {
    width: 100%;
  }
}
.info-area .side {
  width: 250px;
  margin-left: 7rem;
  padding: 3rem;
  border: 1px solid #D9D4CC;
  border-radius: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .info-area .side {
    width: auto;
    margin-top: 5rem;
    margin-left: 0;
  }
}
.info-area .side .archive-block:nth-child(2) {
  margin-top: 3rem;
}
.info-area .side p.archive-title {
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767.98px) {
  .info-area .side p.archive-title {
    font-size: 1.6rem;
  }
}
.info-area .side ul.archive-list {
  list-style: none;
  padding-left: 0;
}
.info-area .side ul.archive-list li a {
  color: #222;
  text-decoration: none;
  display: block;
  padding: 0.7rem 1rem;
}
.info-area .side ul.archive-list li a:hover {
  opacity: 0.6;
}
.info-area .side ul.archive-list + p.archive-title {
  margin-top: 3rem;
}
.info-area ul.info-list {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}
@media screen and (max-width: 991.98px) {
  .info-area ul.info-list {
    margin-top: 0;
  }
}
.info-area ul.info-list li {
  border-bottom: 1px solid #ddd;
}
.info-area ul.info-list li:first-child {
  border-top: 1px solid #ddd;
}
.info-area ul.info-list li a {
  display: flex;
  padding: 1.5rem 1rem;
  color: #555;
  text-decoration: none;
  transition: all 0.2s;
}
@media screen and (max-width: 991.98px) {
  .info-area ul.info-list li a {
    display: block;
  }
}
.info-area ul.info-list li a div {
  width: 260px;
}
.info-area ul.info-list li a div data {
  display: inline-block;
  margin-top: 0.1em;
}
.info-area ul.info-list li a div span.label {
  display: inline-block;
  padding: 0.2rem 1.2em 0.3rem;
  font-size: 0.85em;
  font-weight: 500;
  border-radius: 3rem;
  color: #fff;
  margin-left: 1.5rem;
}
.info-area ul.info-list li a div span.label.information {
  background-color: #4A6FA8;
}
.info-area ul.info-list li a div span.label.recruit {
  background-color: #C94A4A;
}
.info-area ul.info-list li a p {
  flex: 1;
  line-height: 1.5;
}
@media screen and (max-width: 991.98px) {
  .info-area ul.info-list li a p {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 767.98px) {
  .info-area ul.info-list li a p {
    margin-top: 0.5rem;
  }
}
.info-area ul.info-list li:hover p {
  color: #4A6FA8;
}

.tablenav {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  .tablenav {
    margin-top: 2rem;
  }
}
.tablenav > a, .tablenav > span {
  display: inline-block;
  font-size: 1.4rem;
  color: #6A6F78 !important;
  padding: 5px 0.8em;
  border: solid 1px #6A6F78;
  text-decoration: none;
  background: #ffffff;
  margin: 0.5rem 0;
  transition: all 0.2s;
}
.tablenav > span.current {
  color: #fff !important;
  background-color: #6A6F78;
  font-weight: 500;
}
.tablenav > a:hover {
  opacity: 0.7;
}

/*----------------------------------------------------
  詳細
----------------------------------------------------*/
.info-area .single-title {
  font-size: 2.8rem;
  line-height: 1.4;
  padding-bottom: 0.2em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767.98px) {
  .info-area .single-title {
    margin-bottom: 2rem;
  }
}
.info-area data {
  display: inline-block;
  margin-top: 0.5em;
}
.info-area span.label {
  display: inline-block;
  padding: 0.2rem 1.2em 0.3rem;
  font-size: 0.85em;
  font-weight: 500;
  border-radius: 3rem;
  color: #fff;
  margin-left: 1.5rem;
}
.info-area span.label.information {
  background-color: #4A6FA8;
}
.info-area span.label.recruit {
  background-color: #C94A4A;
}
.info-area .cms-area {
  margin-top: 3rem;
  overflow: hidden;
}
.info-area .cms-area p {
  margin-bottom: 1rem;
}

/*ボタン*/
.button-area {
  margin: 4rem -1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .button-area {
    margin-left: -1rem;
    margin-right: -1rem;
  }
}
.button-area.left {
  justify-content: flex-start;
}
@media screen and (max-width: 767.98px) {
  .button-area.left {
    justify-content: center;
  }
}
.button-area .btn-back {
  margin: 1rem 1.5rem;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .button-area .btn-back {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

.btn-back,
a.btn-back {
  display: inline-block;
  border: 2px solid #4A6FA8;
  background-color: #fff;
  color: #555;
  font-size: 1.8rem;
  text-decoration: none;
  padding: 1em 2em 1em 3.6em;
  border-radius: 2em;
  font-weight: 700;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 767.98px) {
  .btn-back,
  a.btn-back {
    font-size: 1.5rem;
  }
}
.btn-back::before, .btn-back::after,
a.btn-back::before,
a.btn-back::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
}
.btn-back::before,
a.btn-back::before {
  width: 1.6em;
  height: 1.6em;
  background-color: #4A6FA8;
  border-radius: 50%;
  left: 1.2em;
  transform: translateY(-50%);
}
.btn-back::after,
a.btn-back::after {
  width: 0.5em;
  height: 0.5em;
  border-top: 0.14em solid #fff;
  border-right: 0.14em solid #fff;
  left: 1.84em;
  transform: translateY(-50%) rotate(-135deg);
}
.btn-back:hover,
a.btn-back:hover {
  opacity: 0.7;
}/*# sourceMappingURL=info.css.map */