/* var */ :root {
  --black: #424242;
  --red: #E53935;
  --main: #f39800;
  --base: #e6f9ff;
  --accent01: #27bce7;
  --accent02: #005aad;
  --sub01: #EF6C00;
  --sub02: #FFE0B2;
}
/* ----------------- 共通 ----------------- */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 1px;
  color: var(--black);
  background: var(--base);
}
@media (max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
figure {
  margin: 0;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  transition: all 0.3s 0s ease;
  color: var(--black);
}
@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}
a.noref {
  pointer-events: none;
}
.main {
  position: relative;
  z-index: 0;
}

.main::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/bg.jpg") no-repeat center bottom;
  background-size: cover;
  z-index: -1;
}
.main h2 {
  text-align: center;
  font-size: 4.0rem;
  margin-bottom: 40px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .main h2 {
    font-size: 3.2rem;
  }
}
.main h2 i {
  margin-right: 10px;
}
.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}
.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}
.min480-only {
  display: block;
}
@media (max-width: 480px) {
  .min480-only {
    display: none;
  }
}
.max480-only{
	display: none;
}
@media (max-width: 480px) {
	.max480-only{
		display: block;
	}
}
.inner {
  width: 100%;
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 750px;
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .inner {
    max-width: 100%;
    padding: 0 10px;
  }
}
.font-small {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .font-small {
    font-size: 1.4rem;
  }
}
.en{
	font-family: "Itim", cursive;
}
.btn1 {
  width: 240px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--accent01);
  border: 2px solid var(--accent01);
  border-radius: 10px;
}
.btn1 i {
  margin-left: 10px;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------- ヘッダー ----------------- */
.header {
  background: var(--main);
  color: #fff;
  height: 80px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  z-index: 500;
}
@media (max-width: 768px) {
  .header {
    height: auto;
    padding: 10px 0;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
@media (max-width: 768px) {
	.header__inner {
		padding: 0 10px;
	}
}
.header-nav {
  height: 80px;
}
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}
.header-nav__list {
  display: flex;
  height: 100%;
  gap: 20px;
  align-items: center;
}
.header-nav__item--link a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 8px;
  width: 140px;
  height: 60px;
  text-align: center;
  line-height: 1.2;
}
.header-nav__item--btn1 a, .header-nav__item--btn2 a {
  width: 120px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.header-nav__item--btn1 a {
  background: var(--accent02);
  color: #fff;
}
.header-nav__item--btn2 a {
  background: var(--main);
  color: #fff;
}
.header-toggle {
  display: none;
}
@media (max-width: 768px) {
  .header-toggle {
    display: block;
    right: 10px;
    ;
  }
}
.header-toggle div {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 768px) {
  .header-toggle div {
    display: flex;
  }
}
.header-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  display: block;
  transition: 0.3s all;
}
.header-toggle.is-active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 8px;
}
.header-toggle.is-active span:nth-child(2) {
  opacity: 0;
}
.header-toggle.is-active span:nth-child(3) {
  transform: rotate(45deg);
  top: -8px;
}
.header-nav-sp {
  display: none;
}
@media (max-width: 768px) {
  .header-nav-sp.is-active {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background: rgba(55, 81, 90, 0.6);
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 90;
    padding: 150px 0 0;
    display: flex;
    gap: 30px;
    flex-direction: column;
    text-align: center;
  }
  .header-nav-sp.is-active a {
    color: #fff;
  }
  .header-nav-sp__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
/* ----------------- ファーストビュー ----------------- */
.main .hero {
  background: var(--accent01);
}
.main .hero img{
	margin: 0 auto;
}
/* ----------------- リード文 ----------------- */
.main .lead {
  padding: 80px 0;
  text-align: center;
  background: var(--base);
}
@media (max-width: 480px) {
  .main .lead {
    text-align: justify;
  }
}
.main .lead__top {
  margin-bottom: 20px;
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--main);
}
@media (max-width: 768px) {
  .main .lead__top {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px){
  .main .lead__top {
    font-size: 2.4rem;
  }
}
.main .lead__text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
	.main .lead__text{
		text-align: justify;
	}
}
.main .lead__list {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .main .lead__list {
	flex-wrap: wrap;
	justify-content: center;
	max-width: 640px;
	margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .main .lead__list {
    flex-direction: column;
  }
}
.main .lead__list li {
  width: calc(100% / 5);
  border: 3px solid var(--accent01);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .main .lead__list li {
    padding: 10px 8px;
	min-width: 160px;
  }
}
@media (max-width: 480px) {
  .main .lead__list li {
    width: 100%;
  }
}
.main .lead__list-point {
  color: var(--main);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
}
.main .lead__list-num {
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 4px solid #FFA726;
  color: var(--main);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: bold;
}
@media (max-width: 480px) {
	.main .lead__list-num {
		font-size: 2.4rem;
		padding-bottom: 5px;
		margin-bottom: 5px;
		border-bottom: 2px solid #FFA726;
	}
}
.main .lead__list li dd {
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .main .lead__list li dd {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .main .lead__list li dd {
    font-size: 2.0rem;
  }
}
.main .lead::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-right: 50vw solid transparent;
  border-top: 80px solid var(--base);
  z-index: 1;
}
@media (max-width: 768px) {
  .main .lead::after {
    bottom: -40px;
    border-top: 40px solid var(--base);
  }
}
/* ----------------- イベント概要 ----------------- */
.main .info {
  padding: 160px 0 120px;
  background: var(--main);
}
@media (max-width: 768px){
	.main .info {
  padding: 120px 0 80px;
  background: var(--main);
}
}
.main .info h2 {
  color: #fff;
}
.main .info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 768px) {
  .main .info ul {
    padding: 40px 20px;
  }
}
.main .info ul.info-date__list {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}
.main .info__date {
  display: flex;
  align-items: baseline;
  font-size: 4.8rem;
  font-weight: bold;
}
@media (max-width: 768px) {
  .main .info__date {
    font-size: 4.0rem;
  }
}
@media (max-width: 480px) {
  .main .info__date {
    font-size: 3.2rem;
  }
}
.main .info__date span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 4px;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 18px;
  color: #fff;
  font-size: 1.8rem;
  background: var(--main);
}
@media (max-width: 768px) {
  .main .info__date span {
    font-size: 2.2rem;
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  .main .info__date span {
    margin: 0 2px;
    font-size: 1.4rem;
    width: 22px;
    height: 22px;
  }
}
.main .info__date-time{
	font-size: 2.2rem;
	font-weight: bold;
}
@media (max-width: 768px){
	.main .info__date-time{
		font-size: 1.8rem;
	}
}
.main .info__date-time span{
	font-weight: normal;
}
.main .info__date-add {
  display: inline-block;
  border: 2px solid var(--accent01);
  color: var(--accent01);
  font-size: 2.0rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
}
@media (max-width: 768px){
	.main .info__date-add{
		padding: 10px;
	}
}
@media (max-width: 480px) {
  .main .info__date-add {
    font-size: 1.6rem;
  }
}
.main .info ul.info-date__list li:last-child{
	width: 100%;
	text-align: center;
	margin-top: 20px;
}
@media (max-width: 768px) {
	.main .info ul.info-date__list li:last-child{
		text-align: justify;
	}
}
.main .info ul.info-place__list {
  width: 100%;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .main .info ul.info-place__list {
    flex-direction: column;
  }
}
@media (max-width: 480px){
	.main .info ul.info-place__list{
		gap:20px;
	}
}
.main .info__place {
  width: 50%;
  max-width: 480px;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .main .info__place {
    width: 100%;
	font-size: 2.0rem;
  }
}
.main .info__place p{
	font-size: 2.0rem;
}
@media (max-width: 768px){
	.main .info__place p{
		font-size: 1.8rem;
	}
}
.main .info__place ul {
  padding: 0;
  margin-top: 20px;
  display: block;
  font-size: 1.6rem;
  line-height: 2;
  text-indent: -0.6em;
  margin-left: 1em;
}
@media (max-width: 768px){
	.main .info__place ul li{
		line-height: 1.4;
		margin-bottom: 10px;
	}
}
.main .info__place ul li i {
  color: var(--accent01);
  margin-right: 5px;
}
.main .info__place-map {
  width: calc(50% - 40px);
  max-width: 480px;
  height: 280px;
}
@media (max-width: 768px) {
  .main .info__place-map {
    width: 100%;
    max-width: 100%;
  }
}
.main .info__place-map iframe {
  width: 100%;
  height: 100%;
}
.main .info.info2 {
  padding: 120px 0;
  background: var(--accent02);
}
@media (max-width: 768px){
	.main .info.info2{
		padding: 80px 0;
	}
}
.main .info.info2 h2 {
  color: #fff;
}
.main .info-news__list li a{
	scroll-behavior: smooth;
}
/* ----------------- お知らせ ----------------- */
.main .info-news__list li {
  width: 100%;
  padding: 20px 0;
  border-bottom: 2px dashed #ccc;
}
.main .info-news__list li:first-child {
  border-top: 2px dashed #ccc;
}
.main .info-news__list li span {
  display: inline-block;
  width: 80px;
}
@media (max-width: 768px) {
  .main .info-news__list li span {
    width: 100%;
  }
}
.main .info-news__list li a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--accent02);
}
.main .info ul.info-news__list {
  gap: 0;
}
/* ----------------- 注目のコンテンツ ----------------- */
.pickup {
  padding: 120px 0;
}
@media (max-width: 768px) {
	.pickup {
	  padding: 80px 0;
	}
}
.pickup h2 {
  color: #fff;
}
.pickup-content {
  background: #fff;
  border-radius: 20px;
  border: 2px solid var(--main);
  margin-bottom: 40px;
}
.pickup-content:last-of-type {
  margin-bottom: 0;
}
.pickup-content h3 {
  background: var(--main);
  display: block;
  border-radius: 16px 16px 0 0;
  padding: 10px 10px 20px;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
}
.pickup-content h3 span {
  display: inline-block;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 2px solid #fff;
  font-size: 1.4rem;
}
.pickup-content__flex {
  display: flex;
  align-items: center;
  padding: 40px;
  width: 100%;
  gap: 40px;
}
@media (max-width: 768px) {
  .pickup-content__flex {
    flex-direction: column;
    padding: 20px;
  }
}
.pickup-content:nth-child(odd) .pickup-content__flex{
	flex-direction: row-reverse;
}
@media (max-width: 768px){
	.pickup-content:nth-child(odd) .pickup-content__flex{
		flex-direction: column;
	}
}
.pickup-content__text {
  width: 60%;
}
@media (max-width: 768px) {
  .pickup-content__text {
    width: 100%;
  }
}
.pickup-content__text .btn1 {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .pickup-content__text .btn1 {
    margin: 20px auto 0;
  }
}
.pickup-content__img {
  width: 30%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .pickup-content__img {
    width: 100%;
    max-width: 280px;
  }
}
/* ----------------- 企業向け・参加者向け ----------------- */
.tab-buttons {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 1em;
}
@media (max-width: 768px) {
  .tab-buttons {
    flex-direction: column;
    gap: 20px;
  }
}
.tab-button {
  width: 50%;
  max-width: 480px;
  height: 80px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 2.4rem;
}
@media (max-width: 768px) {
  .tab-button {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}
.tab-button i {
  margin: 0 5px;
}
.tab-button1 {
  border: 2px solid #4FC3F7;
  background: #fff;
}
.tab-button2 {
  border: 2px solid #AED581;
  background: #fff;
}
.tab-button1.active {
  background: var(--accent01);
  color: #fff;
}
.tab-button2.active {
  background: var(--accent02);
  color: #fff;
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.tab-contents #company {
  background: var(--accent01);
}
.tab-contents #recruit {
  background: var(--base);
}
.tab-content {
  padding: 120px 0;
}
@media (max-width: 768px){
	.tab-content {
  padding: 80px 0;
}
}
.tab-content h2 {
  color: #fff;
}
.main .detail {
  padding: 80px 40px;
  border-radius: 20px;
  background: #fff;
  border: 2px solid var(--main);
}
@media (max-width: 768px) {
  .main .detail {
    padding: 40px 20px;
  }
}
@media (max-width: 480px){
  .main .detail {
    padding: 40px 10px;
  }
}
.main .detail__head {
  text-align: center;
}
.main .detail__head h3 {
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--main);
}
@media (max-width: 768px) {
	.main .detail__head h3 {
		margin-bottom: 20px;
		font-size: 2.8rem;
	}
}
@media (max-width: 480px) {
	.main .detail__head h3 {
		font-size: 2.4rem;
	}
}
.main .detail__head p {
  margin-bottom: 40px;
}
.detail__main h3 {
  padding-left: 10px;
  margin: 80px 0 40px;
  border-left: 8px solid var(--main);
  font-size: 3.2rem;
  line-height: 1;
  color: var(--black);
}
@media (max-width: 768px) {
	.detail__main h3{
		margin: 40px 0 20px;
		font-size: 2.8rem;
	}
}
@media (max-width: 480px) {
	.detail__main h3{
		font-size: 2.4rem;
	}
}
.detail__table-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.detail__table-list > li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-bottom: 2px dashed #ccc;
}
@media (max-width: 1240px) {
  .detail__table-list > li {
    padding: 20px 0;
  }
}
@media (max-width: 768px) {
  .detail__table-list > li {
    flex-direction: column;
    align-items: flex-start;
  }
}
.detail__table-list > li:first-child {
  border-top: 2px dashed #ccc;
}
.detail__table-list li .detail__table-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 48px;
  background: var(--accent02);
  border-radius: 30px;
  color: #fff;
}
@media (max-width: 768px) {
  .detail__table-list li .detail__table-label {
    width: 140px;
    height: 40px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
	.detail__table-list li .detail__table-label{
		width: 120px;
		height: 32px;
	}
}
.detail__table-list li .detail__table-text {
  width: calc(100% - 200px);
}
@media (max-width: 768px) {
  .detail__table-list li .detail__table-text {
    width: 100%;
  }
}
.detail__table-text li {
  text-indent: -1rem;
  margin-left: 1rem;
}
.detail__table-schedule span{
	display: inline-block;
	padding: 4px 8px;
	margin: 20px 0 0;
	border: 1px solid var(--black);
}
.detail__table-schedule span:first-of-type{
	margin-top: 0;
}
.detail__table-schedule dl{
	display: flex;
	line-height: 2;
}
.detail__table-schedule dl dt{
	width: 100px;
}
.detail__table-schedule dl dt i{
	margin-right: 5px;
	color: var(--accent01)
}
.detail__table-schedule p{
	margin-top: 20px;
}
/* ----------------- 参加企業 ----------------- */
.companys {
  padding: 120px 0;
  background: var(--bace);
}
@media (max-width: 768px){
	.companys {
  padding: 80px 0;
}
}
.companys h2 {
  color: #fff;
}
.companys-list{
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.companys-list li{
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	border-radius: 8px;
}
@media (max-width: 768px){
	.companys-list li{
		padding: 10px;
	}
}
@media (max-width: 480px){
	.companys-list li{
		flex-direction: column;
		gap: 10px;
	}
}
.companys-list li:nth-child(odd){
	border: 2px solid var(--accent01);
}
.companys-list li:nth-child(even){
	border: 2px solid var(--accent02);
}
.companys-list li p{
	font-size: 2.4rem;
	font-weight: bold;
}
@media (max-width: 768px) {
	.companys-list li p{
		font-size: 2.0rem;
	}
}
.companys-list li a{
	color: #fff;
}
.companys-list li a i{
	margin-left: 5px;
	color: #fff;
}
.companys-list li:nth-child(odd) a{
	background: var(--accent01);
	padding: 10px;
	border-radius: 8px;
}
.companys-list li:nth-child(even) a{
	background: var(--accent02);
	padding: 10px;
	border-radius: 8px;
}
/* ----------------- フロートボタン ----------------- */
.float {
  display: none;
}
@media (max-width: 768px) {
  .float {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: var(--accent02);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.0rem;
    text-decoration: none;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.2);
	border-radius: 20px 20px 0 0;
    transition: 0.3s;
    z-index: 999;
  }
}
.float a{
	color: #fff;
}
/* ----------------- フッター ----------------- */
.footer {
  padding: 80px 0 0;
  background: var(--main);
}
.footer__title {
  color: #fff;
  font-size: 4.0rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
  .footer__title {
    font-size: 3.2rem;
  }
}
.footer__content {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  margin-bottom: 80px;
  text-align: center;
}
.footer__text--name {
  font-size: 2.4rem;
}
.footer__tel-num {
  font-size: 3.2rem;
  color: var(--main);
}
@media (max-width: 768px) {
  .footer__tel-num {
    font-size: 2.8rem;
  }
}
@media (max-width: 480px) {
  .footer__tel-num {
    font-size: 2.4rem;
  }
}
.footer__tel-num i {
  font-size: 2.8rem;
  margin-right: 8px;
}
@media (max-width: 768px) {
  .footer__tel-num i {
    font-size: 2.4rem;
  }
}
@media (max-width: 480px) {
  .footer__tel-num i {
    font-size: 2.0rem;
  }
}
.footer__content2 {
  background: var(--black);
  color: #fff;
  padding: 40px 0;
}
@media (max-width: 768px) {
	.footer__content2{
		padding: 40px 0;
	}
}
.footer__content2-title {
  font-size: 2.0rem;
  margin-bottom: 20px;
}
@media (max-width: 768px){
  .footer__content2-title {
    font-size: 1.6rem;
  }
} 
.footer__content2-title span {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 768px){
  .footer__content2-title span  {
    font-size: 2.0rem;
  }
} 