@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@media screen and (min-width: 769px) {
  .v-sp {
    display: none;
  }
  .v-pc {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .v-sp {
    display: block;
  }
  .v-pc {
    display: none;
  }
}
/**********************************
共通項目
 */
img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

.btn-custom-purple {
  background-color: #7f1083;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn-custom-purple:hover {
  color: #fff;
  opacity: 0.8;
}

/**********************************
全体
 */
body {
  background-image: url("/assets/2025/img/common/bg.png");
  background-repeat: repeat;
  background-size: contain;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

.footer-block {
  background-color: #7f1083;
  padding: 40px 0 20px;
  text-align: center;
  color: #FFF;
}

/**********************************
共通ヘッダー
 */
.header-block {
  height: 87px;
  padding: 10px 40px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .header-block {
    height: auto;
    padding: 10px 2%;
  }
}
@media only screen and (min-width: 768px) {
  .header-block .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.header-block .header .logo {
  max-width: 200px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .header-block .header .logo {
    max-width: 110px;
  }
}
.header-block .header .menu {
  display: none;
}
@media only screen and (max-width: 767px) {
  .header-block .header .menu {
    display: block;
    position: absolute;
    right: 2%;
    top: 20px;
    width: 25px;
    height: 20px;
  }
  .header-block .header .menu span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #000;
    position: absolute;
    left: 0;
  }
  .header-block .header .menu span:nth-child(1) {
    top: 0;
  }
  .header-block .header .menu span:nth-child(2) {
    top: 50%;
  }
  .header-block .header .menu span:nth-child(3) {
    top: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .header-block .header .nav {
    z-index: -99;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    padding: 10px 0;
  }
}
.header-block .header .nav a {
  display: block;
  margin: 0 20px;
  color: #000;
  font-weight: bold;
}
.header-block .header .nav.is-active {
  z-index: initial;
  display: block;
  visibility: visible;
  background-color: #FFF;
  margin-top: 10px;
  opacity: 1;
  transform: translateY(0);
}
.header-block .header .nav.is-active a {
  margin: 3% 5%;
}

/**********************************
余白
 */
.content-wrapper {
  padding-top: 87px;
}

.sec-padding {
  padding: 120px 0;
  background-color: rgba(127, 16, 132, 0.01);
}
@media only screen and (max-width: 767px) {
  .sec-padding {
    padding: 12% 0;
  }
}
.sec-padding:nth-child(2n) {
  background-color: rgba(0, 133, 208, 0.1);
}

/**********************************
見出し
 */
.section-title {
  position: relative;
  padding: 1rem;
  background-image: linear-gradient(19deg, #21D4FD 0%, #7f1083 100%);
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px 0 0;
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  .section-title {
    margin-bottom: 12%;
  }
}
.section-title::before, .section-title::after {
  position: absolute;
  content: "";
}
.section-title::before {
  top: 5px;
  right: -10px;
  width: 10px;
  height: 100%;
  background-color: #552a7c;
  transform: skewY(45deg);
}
.section-title::after {
  bottom: -10px;
  left: 5px;
  width: 100%;
  height: 10px;
  background-color: #529afb;
  transform: skewX(45deg);
}

.gradient-title {
  display: inline-block;
  background: linear-gradient(135deg, #552a7c 0%, #529afb 100%);
  background: -webkit-linear-gradient(-45deg, #552a7c 0%, #529afb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/**********************************
トップページ
 */
.p-top .mv-block {
  padding-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .p-top .timetable-box {
    overflow: scroll;
  }
  .p-top .timetable-box .timetable-item {
    width: 750px;
  }
}
.p-top .content-introduce .item {
  margin: 80px 0;
}
@media only screen and (max-width: 767px) {
  .p-top .content-introduce .item {
    margin: 12% 0;
  }
}
.p-top .content-introduce .item:last-child {
  margin: 12% 0 0;
}
.p-top .googlemap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}
.p-top .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**********************************
 アンケート
 */
.p-questionnaire {
  font-weight: normal;
}
.p-questionnaire .wrapper {
  background: #FFF;
}
@media only screen and (max-width: 767px) {
  .p-questionnaire .wrapper .inner {
    padding: 0 3%;
  }
}
@media only screen and (max-width: 767px) {
  .p-questionnaire .wrapper .inner .content {
    padding: 0;
  }
}
.p-questionnaire .wrapper .inner .content .form-check-inline {
  line-height: 1.3;
}

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