@charset "utf-8";

/************** base *************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

:root {
  --primary-color: #;
  --background-color1: #;
  --background-color2: #;
  --button-color: #;
  --white-color: #ffffff;
  --Black-color: #000000;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 680px;
  --content-width-from: 760px;
  --content-width-md: 960px;
  --content-width: 1080px;
  --content-width-lg: 1124px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* base */
.container-sm,
.container-from,
.container-md,
.container,
.container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.container-from {
  max-width: calc(var(--content-width-sm) + 32px);
}

.container-md {
  max-width: calc(var(--content-width-md) + 32px);
}

.container {
  max-width: calc(var(--content-width) + 32px);
}

.container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.contents {
  padding: 80px 0 0 0;
}

@media screen and (min-width: 1080px) {
  .contents {
    padding: 120px 0 0 0;
  }
}

.inter {
  font-family: "Inter", sans-serif;
}

.inter span {
  font-family: "Noto Sans JP", sans-serif;
}

.m-bg {
  background: linear-gradient(0deg, #2D69AF, #61A8FB);
}


a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.8;
}

.sp-br {
  display: none;
}

@media screen and (max-width: 600px) {
  .sp-br {
    display: block;
  }
}


body {
  padding-top: 80px;
}

@media screen and (max-width: 600px) {
  body {
    padding-top: 60px;
  }
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 40px;
  z-index: var(--z-index-default);
}

.nav__item {
  font-weight: 500;
}

.sp-cta {
  width: 100%;
  padding: 0 8px;
  margin: 0 auto;
  position: fixed;
  bottom: 80px;
  left: 0;
  z-index: var(--z-index-default);
}

.sp-cta--top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.sp-cta--top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (max-width: 600px) {
  .sp-cta {
    bottom: 40px;
  }
}

.sp-cta__btn-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0px;
}

/*************** Layout ***************/





/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  height: 80px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

@media screen and (max-width: 600px) {
  .header {
    height: 60px;
  }
}

.header__logo {
  width: 200px;
}

@media screen and (max-width: 600px) {
  .header__logo {
    width: 150px;
  }
}


/* フッター */
.footer {
  margin-top: 40px;
}

.footer__inner {
  padding: 20px 0;
}

.footer__logo {
  width: 30vw;
  min-width: 200px;
  max-width: 400px;
}

@media screen and (max-width: 600px) {
  .footer__logo {
    margin: 0 auto;
  }
}

/* フォーム */

.contact {
  padding: 120px 0;
}

@media (max-width: 600px) {
  .contact {
    padding: 80px 0;
    padding-bottom: 20px;
  }
}

.contact__title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .contact__title {
    font-size: 16px;
  }
}

.contact__info {
  font-size: 14px;
  text-align: center;
  line-height: 2;
}

@media (max-width: 600px) {
  .contact__info {
    font-size: 13px;
  }
}

.contact__form {
  margin-top: 64px;
  width: 100%;
}

.form-unit {
  width: 100%;
  margin-bottom: 2em;
}

.form-unit__head {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
}

.m-required::after {
  content: "必須";
  color: red;
  font-size: 10px;
  margin-left: 2px;
  border-radius: 4px;
  padding: 0 5px;
}

.form-head {
  margin-bottom: 15px;
  font-weight: 600;
}

.form-unit__input,
.form-unit__input-wrap {
  width: 100%;
  height: auto;
  padding: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

.form-unit__textarea,
.form-unit__textarea-wrap {
  width: 100%;
  padding: 8px;
  height: 210px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

.form-unit__radio {
  margin-top: 20px;
}

.form-unit__date {
  width: 40%;
  height: 70px;
  padding: 8px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .form-unit__date {
    width: 50%;
    height: 54px;
  }
}

.wpcf7-list-item {
  display: block;
}

.wpcf7-submit {
  text-align: center;
  display: block;
  width: 100%;
  margin: 40px auto 0;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: #045bd6;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.wpcf7-submit:hover {
  background-color: #0344a8;
  border-color: #0344a8;
}

/* チェックボックスがチェックされていない時の送信ボタンのスタイル */
.wpcf7-submit:disabled {
  background-color: #ccc !important;
  border-color: #ccc !important;
  cursor: not-allowed !important;
  opacity: 0.6;
}

.wpcf7-submit:disabled:hover {
  background-color: #ccc !important;
  border-color: #ccc !important;
}

.wpcf7-radio {
  -webkit-appearance: button !important;
  appearance: button !important;
  display: flex;
}

.wpcf7-radio input:hover,
.wpcf7-radio label:hover {
  cursor: pointer;
}

.wpcf7-response-output {
  border-color: transparent !important;
  text-align: center !important;
}

input[type=radio] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(-2px);
}

input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #555;
  transform: translate(-50%, -50%);
}

.form-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid #555;
  position: relative;
  background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(4px);
}

.form-checkbox:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 25%;
  width: 5px;
  height: 10px;
  border-right: 1px solid #555;
  border-bottom: 1px solid #555;
  transform: rotate(45deg) translate(-50%, -50%);
}



.form-unit__policy-link {
  border-bottom: 1px solid #555;
}

@media screen and (max-width: 768px) {
  .form-unit__policy-link {
    font-size: 15px;
  }
}

.form-consent {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.contact__thanks-form {
  min-height: 40vh;
  padding-top: 50px;
}

.contact__thanks-txt {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 20px;
  line-height: 1.75;
}

.contact__thanks-txt span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

/* メイン */
.mainV {
  width: 100%;
  height: auto;
}


.top-cta {
  margin-top: 30px;
  padding: 40px 0;
}

.top-cta__btn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media screen and (max-width: 600px) {
  .top-cta__btn-wrap {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 600px) {
  .top-cta__btn {
    width: 85%;
    margin: 0 auto;
    max-width: 400px;
  }
}

.top-start {
  margin-top: 30px;
  padding: 40px 0;
}

.top-start__title {
  font-style: italic;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .top-start__title {
    font-size: 22px;
  }
}

.top-start__day {
  width: fit-content;
  min-width: 50%;
  background: #fff;
  padding: 10px 20px;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
  margin-top: 40px;
}

.top-start__day span {
  font-size: 18px;
}

.top-start__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media screen and (max-width: 600px) {
  .top-start__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.top-start__item {
  text-align: center;
  font-size: 16px;
  padding: 10px;
  font-weight: bold;
  background: #fff;
}

.top-chance {
  margin-top: 30px;
}



.top-chance__inner {
  color: #fff;
  padding: 40px 20px;

  background: url("../../assets/img/top/bg_chance.png") center center / cover no-repeat;
}

.top-chance__title {
  font-style: italic;
  font-size: 46px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .top-chance__title {
    font-size: 32px;
  }
}

.top-chance__text {
  font-size: 24px;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 30px;
}

@media screen and (max-width: 600px) {
  .top-chance__text {
    font-size: 18px;
  }
}

.top-chance__img {
  width: 50%;
  margin: 0 auto;
  margin-top: 60px;
}

@media screen and (max-width: 600px) {
  .top-chance__img {
    width: 80%;
  }
}

.top-point {
  margin-top: 30px;
}

.top-event {
  margin-top: 30px;
}

.m-top__inner {
  border-radius: 15px;
  box-shadow: 0px 1px 5px 0px rgba(0, 51, 153, .6);
  padding: 40px;

}

@media screen and (max-width: 600px) {
  .m-top__inner {
    padding: 30px 20px;
  }
}

.top-event__info-item {
  display: flex;
  width: fit-content;
  border-bottom: 1px solid #555;
}

@media screen and (max-width: 600px) {
  .top-event__info-item {
    margin-top: 15px;
  }
}

@media screen and (max-width: 600px) {
  .top-event__info-item {
    flex-direction: column;
  }
}

.top-event__info-item-title {
  font-style: italic;
  font-size: 20px;
  min-width: 8em;
}

@media screen and (max-width: 600px) {
  .top-event__info-item-title {
    font-size: 16px;

  }
}

.m-top__title {
  width: fit-content;
  font-family: "Inter", sans-serif;
  text-align: center;
  font-size: 50px;
  font-weight: 400;
  margin: 0 auto;
  font-style: italic;
  color: #0796CF;
  line-height: 1;
  border-bottom: 1px solid #555;
  padding-bottom: 8px;
}

@media screen and (max-width: 600px) {
  .m-top__title {
    font-size: 32px;
  }
}

.m-top__title-ja {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}


@media screen and (max-width: 600px) {
  .m-top__title-ja {
    font-size: 16px;
  }
}

.top-event__info {
  margin-top: 40px;
}



.top-event__info-item-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.75;
}

@media screen and (max-width: 600px) {
  .top-event__info-item-text {
    font-size: 18px;
    margin-top: 6px;
  }
}

.top-event__info-item-text span {
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.top-event__info-wrap {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

@media screen and (max-width: 600px) {
  .top-event__info-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.top-event__map {
  width: 50%;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .top-event__map {
    width: 100%;
  }
}

.top-event__map-iframe {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: contain;
  max-height: 300px;
}

@media screen and (max-width: 600px) {
  .top-event__map-iframe {
    max-height: 260px;
  }
}

.top-event__desc {
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}

.top-company {
  margin-top: 50px;
}

.top-company__btn {
  width: 50%;
  margin: 0 auto;
  margin-top: 50px;
}

@media screen and (max-width: 600px) {
  .top-company__btn {
    width: 85%;
    margin-top: 30px;
    max-width: 400px;
  }
}

.page-top {
  width: 100px;
  margin: 0 0 0 auto
}

.m-page-top {
  margin-top: 40px;
}

.page-top a img {
  object-fit: contain;

}


.top-chance .container,
.top-point .container-lg {
  padding: 0;
}

.contact__form-btn {
  display: block;
  max-width: 400px;
  margin: 0 auto;
}


/* 参加企業 */
.company {
  padding-top: 80px;
}

@media screen and (max-width: 600px) {
  .company {
    padding-top: 50px;
  }
}

.company__title {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .company__title {
    font-size: 18px;
  }
}

.company__content {
  padding: 40px 0;
}


.company {
  min-height: calc(100vh - 120px);
}


.company__content-txt {
  padding-bottom: 50px;
}

.company__content-txt h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .company__content-txt h2 {
    font-size: 18px;
  }
}

.company__content-txt h3 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
}

@media screen and (max-width: 600px) {
  .company__content-txt h3 {
    font-size: 16px;
  }
}

.company__content-txt img {
  object-fit: contain;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.company__content-txt p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 1em;
}

@media screen and (max-width: 600px) {
  .company__content-txt p {
    font-size: 14px;
  }
}

.company__content-txt a {
  color: #045bd6;
}

.wpcf7-form-control-wrap select option:first-child {
  display: none;
}

/* ハンバーガーボタン */
.m-hamburger {
  display: none;
  position: fixed;
  top: 30px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: var(--z-index-menu);
  cursor: pointer;
  transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
  .m-hamburger {
    display: block;
  }
}

.m-hamburger__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.m-hamburger__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

.m-hamburger__line:nth-child(1) {
  top: 6px;
}

.m-hamburger__line:nth-child(2) {
  top: 14px;
}

.m-hamburger__line:nth-child(3) {
  top: 22px;
}

/* ハンバーガーボタンがアクティブな時のアニメーション */
.m-hamburger.is-active .m-hamburger__line:nth-child(1) {
  top: 14px;
  transform: rotate(45deg);
}

.m-hamburger.is-active .m-hamburger__line:nth-child(2) {
  opacity: 0;
}

.m-hamburger.is-active .m-hamburger__line:nth-child(3) {
  top: 14px;
  transform: rotate(-45deg);
}

/* ナビゲーションメニューのモバイル表示 */
@media screen and (max-width: 600px) {
  .nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: left 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav.is-open {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    gap: 30px;
    padding: 0;
    text-align: center;
  }

  .nav__item {
    margin: 0;
  }

  .m-nav__link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
  }
}


.page-privacy-policy {
  padding-top: 100px;
  padding-bottom: 80px;
}

@media screen and (max-width: 600px) {
  .page-privacy-policy {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.page-privacy-policy h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
  .page-privacy-policy h2 {
    font-size: 20px;
  }
}

.page-privacy-policy h3 {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .page-privacy-policy h3 {
    font-size: 16px;
  }
}

.page-privacy-policy p {
  margin-top: 1em;
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 1.5em;

}

@media screen and (max-width: 600px) {
  .page-privacy-policy p {
    font-size: 13px;
  }
}