@charset "utf-8";
html {
  font-size: 62.5%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: "Noto Sans JP","游ゴシック","Yu Gothic","Hiragino Kaku Gothic ProN","Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3",メイリオ,Meiryo,sans-serif;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
/* 共通設定ここまで */

.l-header {
  padding: 10px 20px;
  display: inline-block;
}
.l-header__logo {
  display: inline-block;
  width: 80px;
}

/* パンくずリスト */
.p-bc {
  padding: 0 0 0 10px;
  display: flex;
  flex-flow: row nowrap;
  overflow-x: scroll;
  width: 100%;
  height: 15px;
  height: 20px;
}
.p-bc__item {
  display: inline-block;
  padding: 0 15px 0 0;
  position: relative;
  white-space: nowrap;
}
.p-bc__item::after {
  content: "";
  position: absolute;
  top: 15%;
  right: 7px;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
.p-bc__item:last-child:after {
  content: none;
}  
.p-bc__link {
  color: #63a2ff;
}

/* メインビジュアル */
.p-mv{
  position: relative;
}
.p-mv__bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: rgba(1, 62, 154, 0.8);
  display: flex;
  align-items: center;
  padding: 0 0 0 20px;
}
.p-mv__h1 {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: bold;
}

/* ページ内リンクボタン */
.p-linkBtn {
  margin: 45px 0 0 0;
  display: flex;
  justify-content: space-around;
}
.p-linkBtn__link {
  display: inline-block;
  text-decoration: underline;
  color: #63a2ff;
  position: relative;
  font-size: 1.8rem;
  padding: 0 35px 0 0;
}
.p-linkBtn__link::before {
  content: "";
  position: absolute;
  top: 42%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #63a2ff;
  border-radius: 50%;
}
.p-linkBtn__link::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 12px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* 学校の特徴 */
.p-about {
  padding: 0 10px 1px;
  margin: 56px 0 0 0;
}
.p-about__container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.p-about__p {
  position: relative;
  font-size: 1.6rem;
  text-indent: 0.5rem;
  text-align: center;
  margin: 0 0 0 32px;
}
.p-about__p::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -12px;
  width: 12px;
  height: 18px;
  border-right: 4px solid #63a2ff;
  border-bottom: 4px solid #63a2ff;
  transform: rotate(45deg);
}
.p-about__list {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  padding: 0 0 0 64px;
  margin: 25px 0 20px 0;
}
.p-about__item {
  list-style-type: disc;
}
.p-about__link {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  color: #63a2ff;
  text-decoration: underline;
  vertical-align: middle;
  cursor: pointer;
}
.p-about__slick {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #999;
}
.p-about__title {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 15px 0;
  padding: 0 10px;
}
.p-about__text {
  font-size: 1.6rem;
  margin: 15px 0;
  padding: 0 10px;
  line-height: 1.5;
}

/* 開催日程 */
.p-date {
  margin: 50px 0 0 0;
}
.p-date__h2 {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  height: 60px;
  padding: 19px 0 19px 10px;
  background: #013e9a;
  color: #fff;
}
.p-date__container {
  padding: 0 10px;
}
@media(min-width:500px) {

  .p-about__list {
    padding: 0 0 0 20px;
  }

  .p-about__container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .p-date__container {
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-date__month {
  padding: 0 0 24px;
  border-bottom: 1px dotted #999;
}
.p-date__month:last-child {
  border-bottom: none;
}
.p-date__h3 {
  position: relative;
  margin: 20px 0 0 14px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 0 0 8px;
}
.p-date__h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 18px;
  background: #63a2ff;
  border-radius: 5px;
}
.p-date__box {
  margin: 24px 0 0 0;
  padding: 0 0 0 28px;
}
.p-date__p {
  font-size: 1.6rem;
}
.p-date__span {
  font-size: 1.4rem;
  font-weight: normal;
}
.p-date__link {
  display: inline-block;
  margin: 8px 0 0 3px;
  font-size: 1.6rem;
  color: #63a2ff;
  text-decoration: underline;
}

/* イベント内容 */
.p-event {
  margin: 50px 0 0 0;
}
.p-event__h2 {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  height: 60px;
  padding: 19px 0 19px 10px;
  background: #013e9a;
  color: #fff;
}
.p-event__container {
  padding: 0 10px;
}
.p-event__content {
  margin: 20px 0 0 0;
  padding: 0 0 12px;
  border-bottom: 1px dotted #999;
}
.p-event__content:last-child {
  border-bottom: none;
  padding: 0;
}

/* .p-event__title {
  padding: 0 0 0 10%;
} */
.p-event__h3 {
  font-size: 1.8rem;
  font-weight: bold;
}
.p-event__item {
  margin: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px 0;
  line-height: 1.75;
}
.p-event__box {
  width: 250px;
  margin: 0 auto;
}
.p-event__text {
  display: inline-block;
  /* max-width: 400px; */
  width: 95%;
 font-size: 1.5rem;
 margin-top: 10px;
}

/* 基本情報 */
.p-info {
  margin: 50px 0 0 0;
}
.p-info__h2 {
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  height: 60px;
  padding: 19px 0 19px 10px;
  background: #013e9a;
  color: #fff;
}
.p-info__container {
  padding: 0 5%;
}

.p-info__h3 {
  position: relative;
  margin: 32px 0 0 14px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 0 0 8px;
}
.p-info__h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 18px;
  background: #63a2ff;
  border-radius: 5px;
}
.p-info__title {
  margin: 16px 0 0 0;
  padding: 0 0 0 15px;
  font-size: 1.6rem;
}
.p-info__text {
  display: inline-block;
  margin: 8px 0 0 28px;
  font-size: 1.5rem;
  line-height: 2;
}

/* フッター */
.l-footer {
  margin: 50px 0 0 0;
}
.l-footer__container {
padding: 0 10px 16px;
}
.l-footer__logo {
  display: block;
  width: 80px;
  margin: 0 auto;
}
.l-footer__list {
  margin: 40px 0 0 0;
  padding: 0 50px;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  gap: 30px;
}
.l-footer__link {
  display: inline-block;
  font-size: 1.4rem;
  text-decoration: underline;
}
.l-footer__copy {
  margin: 30px 0 0 0;
  text-align: center;
}


/* 申し込みボタン */
.c-applyBtn {
  width: 210px;
  height: 40px;
  margin: 50px auto 0;
  border-radius: 5px;
  background: #ff9d00;
  box-shadow: 0px 2px 0.1px rgba(0, 0, 0, 0.3);
}
.c-applyBtn__text {
  position: relative;
  font-size: 1.8rem;
  font-weight:bold;
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 3px 0 0 10px;
}
.c-applyBtn__text::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
}
.c-applyBtn__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 13px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

/* イベントラベル */
.c-label {
  display: inline-block;
  border: 1px solid #63a2ff;
  border-radius: 5px;
  font-size: 1.4rem;
  height: 17px;
  line-height: 16px;
  margin: 5px;
  padding: 0 5px;
  vertical-align: middle;
}

.u-spOnly {
  display: block;
}
.u-pcOnly {
  display: none;
}

@media (max-width: 600px) {

  .p-about__list {

    gap: 10px 0;
    padding: 0 0 0 38px;

  }

  .p-about__link {
    font-size: 1.6rem;

  }

  .p-about__p {
    margin: 0 auto;
  }


}