/*--------------------------------------*
 * 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: 2vw 2vw;
  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: 16vw;
}
.l-header__logo p {
  font-size: 6vw;
  margin: 0 0 0 3vw;
  font-weight: bold;
  color: #fff;
}
.l-header__menu-btn {
  width: 20vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(226, 249, 255, 0.25);
  backdrop-filter: blur(1px);
  border-radius: 2vw;
  padding: 2vw 2vw;
  color: #fff;
  font-size: 3.3vw;
  font-weight: bold;
  z-index: 33;
}

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

.l-main {
  background: #fff;
  padding: 0 0 20vw;
}

.l-footer {
  width: 100vw;
  background-color: #25aecf;
  padding: 1vw 0;
}
.l-footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__logo img {
  width: 16vw;
}
.l-footer__logo p {
  font-size: 6vw;
  margin: 0 0 0 3vw;
  font-weight: bold;
  color: #fff;
}
.l-footer__copyright {
  font-size: 3vw;
  text-align: center;
  color: #fff;
}

/*--------------------------------------*
 * project
 *--------------------------------------*/
.p-nav {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(54, 164, 205, 0.6);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  transform: translateX(100vw);
}
.p-nav__list {
  padding: 15vw 5vw;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  z-index: 30;
}
.p-nav__item {
  padding: 3vw 3vw;
  width: 60vw;
  margin: 15vw auto;
  border: solid 1px #fff;
  border-radius: 2vw;
}
.p-nav__item:last-child {
  background: #ffad46;
  padding: 3vw 3vw;
  width: 60vw;
  margin: 0 auto;
  border-radius: 2vw;
  border: none;
}
.p-nav__link {
  color: #fff;
  font-size: 5.5vw;
  display: block;
  font-weight: bold;
  text-align: center;
}

.p-nav.active {
  transform: translateX(0);
}

.p-footer-menu__list {
  margin: 4vw 0 16vw;
}
.p-footer-menu__item {
  padding: 3vw 0;
  margin: 0 0 0 5vw;
  display: flex;
  align-items: center;
}
.p-footer-menu__item:last-child {
  background: #ffad46;
  border-radius: 2vw;
  width: 60vw;
  display: flex;
  justify-content: center;
  margin: 3vw auto;
}
.p-footer-menu__link {
  color: #fff;
  font-size: 4vw;
}

.p-top-heading {
  margin: 5vw 0;
}
.p-top-heading__title {
  font-size: 8vw;
  color: #25aecf;
  text-align: center;
}
.p-top-heading__note {
  font-size: 3.5vw;
  text-align: center;
  font-weight: bold;
  color: #9d9d9d;
  padding: 0 0.5vw;
}

.p-top-mainvisual {
  position: relative;
  width: 100vw;
}
.p-top-mainvisual__img {
  width: 100vw;
  height: 135vw;
  object-fit: cover;
  object-position: -114vw -17vw;
}
.p-top-mainvisual__head {
  font-size: 40px;
  color: #fff;
  margin: 0 0 10px;
}
.p-top-mainvisual__message {
  width: 92vw;
  position: relative;
  padding: 4vw 4vw;
  margin: -35vw 4vw 0vw;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 7px;
}
.p-top-mainvisual__text {
  font-size: 3.3vw;
  color: #fff;
  line-height: 1.5;
}

.p-top-card__item {
  display: block;
  margin: 10vw 0;
  background-color: #fff;
  border-radius: 3vw;
  border-color: transparent;
  box-shadow: 0px 2px 6px 0px rgba(100, 100, 100, 0.15);
}
.p-top-card__figure {
  width: 100%;
  overflow: hidden;
  height: 50%;
  border-radius: 3vw 3vw 0 0;
}
.p-top-card__img {
  width: 100%;
  height: auto;
  transition: all 0.7s;
  background: #fff;
}
.p-top-card__text {
  padding: 7vw 7vw;
}
.p-top-card__name {
  font-size: 4.7vw;
  color: #565656;
  margin: 0 0 2vw;
}
.p-top-card__description {
  font-size: 3.5vw;
  color: #515151;
}
.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: end;
  flex-wrap: wrap;
  box-shadow: 0px 0px 0px 0px rgba(100, 100, 100, 0.15);
  transition: all 0.7s;
  align-items: center;
  padding: 8vw 0;
  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 {
  min-width: 20vw;
  margin: 0 5vw 0 0;
}
.p-top-news__category-name {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #565656;
  padding: 1.5vw 1.5vw;
  border: solid 1px #d2d2d2;
  font-size: 3vw;
}
.p-top-news__body {
  width: 65vw;
}
.p-top-news__time {
  display: block;
  color: #25aecf;
  font-size: 3vw;
  font-weight: bold;
}
.p-top-news__title {
  color: #565656;
  font-size: 4vw;
  font-weight: bold;
  margin: 1vw 0;
  display: block;
}
.p-top-news__note {
  color: #565656;
  font-size: 3.2vw;
}

.p-top-schedule__iframe {
  width: 100%;
  min-height: 110vw;
}

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

.p-page-heading {
  margin: 27vw 0 0;
}
.p-page-heading__title {
  font-size: 8vw;
  color: #25aecf;
  text-align: center;
}
.p-page-heading__text {
  text-align: center;
  line-height: 1.6;
  font-size: 3vw;
  margin: 3vw 0 0;
}

.p-about-main__text {
  font-size: 4.5vw;
  line-height: 1.8;
}
.p-about-main__figure {
  margin: 2vw 0;
}
.p-about-main__figcaption {
  margin: 2vw 0;
  font-size: 3.3vw;
  text-align: center;
}
.p-about-main__img {
  width: 100%;
  border-radius: 2vw;
}

.p-about-contents__title {
  font-size: 6.5vw;
  text-align: center;
  color: #565656;
}
.p-about-contents__box {
  margin: 10vw 0;
}
.p-about-contents__name {
  font-size: 5.5vw;
}
.p-about-contents__text {
  font-size: 4.5vw;
  line-height: 1.8;
}

.p-about-reqruit__body {
  background: #fffae3;
  padding: 6vw;
}
.p-about-reqruit__message {
  font-weight: bold;
  text-align: center;
  font-size: 6vw;
  margin: 0 5vw 5vw;
}
.p-about-reqruit__text {
  font-size: 4.3vw;
  line-height: 1.8;
}
.p-about-reqruit__mail {
  font-size: 3.3vw;
}

.p-competition__section {
  margin: 8vw auto;
}
.p-competition__head {
  font-size: 6vw;
  margin: 3vw 0;
}
.p-competition__text {
  font-size: 4vw;
  line-height: 1.8;
}
.p-competition__link {
  color: #378dd7;
  font-weight: bold;
}
.p-competition__img {
  width: 100%;
  margin: 4vw auto;
}
.p-competition__line-box {
  display: block;
  margin: 3vw 3vw;
  padding: 3vw 3vw;
  border: solid 1px #333;
}

/*--------------------------------------*
 * component
 *--------------------------------------*/
.c-inner {
  width: 90vw;
  padding: 0;
  margin: 15vw 5vw;
}

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

.c-btn {
  margin: 8vw auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-btn__link {
  width: 80vw;
  color: #fff;
  background-color: #ffad46;
  border-radius: 8px;
  text-align: center;
  padding: 4.4vw;
  font-size: 5vw;
  font-weight: bold;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

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

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

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