/*--------------------------------------*
 * foundation
 *--------------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html {
  font-size: 62.5%;
  line-height: 1.35;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  color: #333333;
  font-size: 1.6rem;
  width: 100%;
  overflow-x: hidden;
  font-family: sans-serif;
  background: #fdfdfd;
}

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

button {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*--------------------------------------*
 * color
 *--------------------------------------*/
/*--------------------------------------*
 * layout
 *--------------------------------------*/
.l-header {
  width: 100%;
  margin: 0 auto;
  padding: 10px 50px 11px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: all 0.3s;
}
.l-header__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__logo img {
  width: 100px;
}
.l-header__logo p {
  font-size: 24px;
  margin: 0 0 0 15px;
  font-weight: bold;
  color: #fff;
}
.l-header__menu-btn {
  display: none;
}

.l-header.fillColor {
  background-color: #25aecf;
}
.l-header.fillColor .p-nav__list {
  background-color: transparent;
}

.l-main {
  background: #fff;
  padding: 0 0 100px;
}

.l-footer {
  width: 100%;
  background-color: #25aecf;
}
.l-footer__logo {
  width: 350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-footer__logo img {
  width: 100px;
}
.l-footer__logo p {
  font-size: 32px;
  margin: 0 0 0 15px;
  font-weight: bold;
  color: #fff;
}
.l-footer__copyright {
  font-size: 12px;
  text-align: center;
  color: #fff;
}

/*--------------------------------------*
 * project
 *--------------------------------------*/
.p-nav__list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 12px 10px;
  background: rgba(226, 249, 255, 0.25);
  backdrop-filter: blur(1px);
  border-radius: 15px;
  transition: all 0.3s;
  cursor: pointer;
}
.p-nav__item {
  transition: all 0.3s;
  margin: 0px 15px;
}
.p-nav__item:last-child {
  background: #ffad46;
  padding: 6px 12px;
  border-radius: 6px;
}
.p-nav__link {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s;
}

.p-footer-menu__list {
  display: flex;
  justify-content: flex-start;
  margin: 25px 0 70px;
}
.p-footer-menu__item {
  padding: 6px 0;
  margin: 0 30px 0 0;
  display: flex;
  align-items: center;
}
.p-footer-menu__item:last-child {
  background: #ffad46;
  padding: 6px 13px;
  border-radius: 6px;
}
.p-footer-menu__link {
  color: #fff;
  font-size: 15px;
}

.p-top-heading {
  margin: 40px 0;
}
.p-top-heading__title {
  font-size: 45px;
  color: #25aecf;
}
.p-top-heading__note {
  font-size: 14px;
  font-weight: bold;
  color: #565656;
  padding: 0 2px;
}

.p-top-mainvisual {
  position: relative;
}
.p-top-mainvisual__img {
  width: 100vw;
  height: 42vw;
  object-fit: cover;
  object-position: 100% 100%;
}
.p-top-mainvisual__head {
  font-size: 40px;
  color: #fff;
  margin: 0 0 10px;
}
.p-top-mainvisual__message {
  width: 600px;
  position: absolute;
  bottom: 2%;
  left: calc(50% - 500px);
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 7px;
}
.p-top-mainvisual__text {
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}

.p-top-card {
  display: flex;
  justify-content: space-between;
}
.p-top-card__item {
  width: 31%;
  margin: 15px 4px 10px;
  background-color: #fff;
  border-radius: 12px;
  border-color: transparent;
  box-shadow: 0px 2px 6px 0px rgba(100, 100, 100, 0.15);
  transition: all 0.7s;
}
.p-top-card__figure {
  width: 100%;
  overflow: hidden;
  height: 50%;
  border-radius: 12px 12px 0 0;
}
.p-top-card__img {
  width: 100%;
  height: auto;
  transition: all 0.7s;
  background: #fff;
}
.p-top-card__text {
  padding: 30px 30px;
}
.p-top-card__name {
  font-size: 18px;
  color: #565656;
  margin: 0 0 10px;
}
.p-top-card__description {
  font-size: 13px;
  color: #515151;
  min-height: 60px;
}
.p-top-card__link {
  font-size: 12px;
  font-weight: bold;
  display: block;
  text-align: right;
  color: #0066aa;
}
.p-top-card__item:hover {
  box-shadow: 0px 2px 8px 0px rgba(100, 100, 100, 0.3);
}
.p-top-card__item:hover .p-top-card__img {
  transform: scale(1.05);
  filter: saturate(1.35);
}
.p-top-card__more-info {
  display: flex;
  justify-content: flex-end;
}

.p-top-news__link {
  transition: all 0.7s;
}
.p-top-news__link:hover {
  opacity: 0.7;
}
.p-top-news__item {
  display: flex;
  justify-content: flex-start;
  box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 0.15);
  transition: all 0.7s;
  align-items: center;
  padding: 30px 20px;
  border-bottom: solid 1px #d2d2d2;
}
.p-top-news__item:hover {
  box-shadow: 0px 2px 6px 0px rgba(100, 100, 100, 0.15);
}
.p-top-news__category {
  width: 100px;
  margin: 0 50px 0 0;
}
.p-top-news__category-name {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #565656;
  padding: 8px 10px;
  border: solid 1px #d2d2d2;
  font-size: 12px;
}
.p-top-news__body {
  width: 70%;
}
.p-top-news__time {
  display: block;
  color: #25aecf;
  font-size: 13px;
  font-weight: bold;
}
.p-top-news__title {
  color: #565656;
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
  display: block;
}
.p-top-news__note {
  color: #565656;
  font-size: 14px;
}

.p-top-schedule__iframe {
  width: 100%;
  min-height: 660px;
}

.p-top-links__links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-top-links__link {
  padding: 5px;
  margin: 15px auto;
  border: solid 1px #e8e8e8;
  transition: all 0.3s;
}
.p-top-links__link:hover {
  opacity: 0.7;
}
.p-top-links__img {
  height: 40px;
}

.p-page-heading {
  margin: 50px 0 0;
}
.p-page-heading__title {
  font-size: 45px;
  color: #25aecf;
  text-align: center;
}
.p-page-heading__text {
  text-align: center;
  line-height: 1.6;
  font-size: 15px;
  margin: 10px 0 0;
}

.p-about-main__text {
  font-size: 18px;
  line-height: 1.8;
}
.p-about-main__figure {
  margin: 20px 0;
}
.p-about-main__figcaption {
  margin: 5px 0;
  font-size: 12px;
  text-align: center;
}
.p-about-main__img {
  width: 100%;
  border-radius: 10px;
}

.p-about-contents__title {
  font-size: 26px;
  text-align: center;
  color: #565656;
}
.p-about-contents__box {
  margin: 30px 0;
}
.p-about-contents__name {
  font-size: 22px;
}
.p-about-contents__text {
  font-size: 18px;
  line-height: 1.8;
}

.p-about-reqruit__body {
  background: #fffae3;
  padding: 50px;
}
.p-about-reqruit__message {
  font-weight: bold;
  text-align: center;
  font-size: 28px;
  margin: 0 0 50px;
}
.p-about-reqruit__text {
  font-size: 16px;
  line-height: 1.8;
}

.p-competition {
  width: 1100px;
  margin: 0 auto;
}
.p-competition__section {
  margin: 50px auto;
}
.p-competition__head {
  font-size: 24px;
  margin: 10px 0;
}
.p-competition__text {
  font-size: 18px;
  line-height: 1.8;
}
.p-competition__link {
  color: #378dd7;
  font-weight: bold;
}
.p-competition__img {
  width: 90%;
  margin: 10px auto;
}
.p-competition__line-box {
  display: block;
  margin: 20px 20px;
  padding: 20px 20px;
  border: solid 1px #333;
}

/*--------------------------------------*
 * component
 *--------------------------------------*/
.c-inner {
  width: calc(100% - 200px);
  padding: 50px 50px;
  margin: 0 auto;
}

.c-more-info {
  background: #fff;
  width: 130px;
  padding: 5px 0;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-more-info p {
  font-size: 12px;
  color: #0066aa;
  margin: 0 3px 0 0;
}
.c-more-info svg {
  fill: #0066aa;
  width: 15px;
}

.c-spacer {
  width: 100%;
  height: 81px;
}

.c-btn {
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn__link {
  width: 330px;
  color: #fff;
  background-color: #ffad46;
  border-radius: 8px;
  text-align: center;
  padding: 20px;
  font-size: 20px;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}
.c-btn__link:hover {
  opacity: 0.8;
}

/*--------------------------------------*
 * utility
 *--------------------------------------*/
.u-ib {
  display: inline-block;
}

.u-bold {
  font-weight: bold;
}

.u-big {
  font-size: 1.3em;
}

/*# sourceMappingURL=style_pc.css.map */
