/* var */ :root {
  --black: #333333;
  --red: #ff0000;
  --main: #e76600;
  --base: #fffaa6;
  --accent01: #006766;
  --accent02: #01669c;
  --sub01: #ffcd00;
  --sub02: #ffe701;
}
/* ----------------- 共通 ----------------- */
* {
  box-sizing: border-box;
  position: relative;
  font-feature-settings: "palt";
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
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 h2 {
  text-align: center;
  font-size: 4.0rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 0 #000;
}
@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;
  }
}
.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-red {
  color: var(--red);
}
.font-small {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  .font-small {
    font-size: 1.4rem;
  }
}
.mb10{
	margin-bottom: 10px;
}
.mb20{
	margin-bottom: 20px;
}
.btn1 {
  width: 240px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: var(--accent02);
  border: 2px solid var(--accent02);
  border-radius: 10px;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.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 {
  position: fixed;
  top: 0;
  right: 0;
  background: var(--main);
  color: #fff;
  width: 100%;
  height: 80px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  z-index: 500;
}
@media (max-width: 768px) {
  .header {
    height: 60px;
    display: flex;
	align-items: center;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 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;
  margin-right: 20px;
}
.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(--sub01);
  color: var(--black);
  border: 2px solid var(--sub01);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.header-nav__item--btn1:hover a{
	background: #fff;
}
@media (max-width: 768px){
	.header-nav__item--btn1 a{
		display: none;
	}
}
.header-nav__item--btn2 a {
  background: #F9AE00;
  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: #ffe701;
  margin-top: 80px;
}
@media (max-width: 768px) {
	.main .hero{
		margin-top: 60px;
	}
}
.main .hero img {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
/* ----------------- リード文 ----------------- */
.main .lead {
  padding: 120px 0 80px;
  text-align: center;
  background: var(--base);
}
@media (max-width: 768px) {
  .main .lead {
    padding: 80px 0;
  }
}
@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;
}
.main .lead__list {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .main .lead__list {
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .main .lead__list {
    flex-direction: column;
  }
}
.main .lead__list li {
  width: calc(100% / 3);
  border: 2px solid var(--black);
  border-radius: 10px;
  padding: 10px;
  background: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .main .lead__list li {
    padding: 10px 8px;
  }
}
@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 var(--main);
  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 var(--main);
  }
}
.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;
  }
}
.main .info h2 {
  color: #fff;
}
.main .info ul {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 768px) {
  .main .info ul {
    padding: 40px 20px;
  }
}
.main .info ul.info-date__list {
  justify-content: 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: 2.4rem;
  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__date2 {
  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: 480px) {
  .main .info__date2 {
    font-size: 1.6rem;
  }
}
.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;
  }
}
.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 ul {
  padding: 0;
  margin-top: 20px;
  display: block;
  font-size: 1.6rem;
  line-height: 2;
  text-indent: -0.6em;
  margin-left: 1em;
}
.main .info__place ul li i {
  color: var(--accent02);
  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 {
  background: var(--accent02);
}
/* ----------------- お知らせ ----------------- */
.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;
}
.main .info ul.info-news__list {
  gap: 0;
}
/* ----------------- 注目のコンテンツ ----------------- */
.pickup {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .pickup {
    padding: 80px 0;
  }
}
.pickup h2 {
  color: var(--main);
  text-shadow: 2px 2px 0 #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__text {
  width: 60%;
  text-align: justify;
}
@media (max-width: 768px) {
  .pickup-content__text {
    width: 100%;
  }
}
.pickup-content__text span{
	font-weight: bold;
	font-size: 2.0rem;
	color: var(--accent02);
	display: block;
	border-bottom: 1px solid var(--accent02);
	padding-bottom: 10px;
}
@media (max-width: 768px){
	.pickup-content__text span{
		font-size: 1.8rem;
	}
}
.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: 320px;
  }
}
/* ----------------- 企業向け・参加者向け ----------------- */
.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(--accent02);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 40px 40px;
}
@media (max-width: 768px) {
  .tab-contents #company {
    background-size: 24px 24px;
  }
}
.tab-contents #recruit {
  background: var(--accent01);
}
.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(--black);
}
@media (max-width: 1240px) {
  .main .detail {
    padding: 80px 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 {
    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(--main);
  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 {
    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-text .font-small li {
  text-indent: -1em;
  margin-left: 1em;
}
.detail__hw{
	border: 1px solid var(--main);
	padding: 10px;
	margin-top: 20px;
}
.detail__hw dl dt{
	color: var(--main);
	margin-bottom: 5px;
}
.detail__hw dl dt,.detail__hw dl dd{
	font-size: 1.6rem;
}
@media (max-width: 768px) {
	.detail__hw dl dt,.detail__hw dl dd{
	font-size: 1.4rem;
	}
}
.detail__hw dl dd a{
	text-decoration: underline;
	font-weight: bold;
	color: var(--accent02);
}
.detail__hw dl dd a i{
	margin-left: 5px;
}
.entry-btn {
  width: 240px;
  height: 60px;
  margin: 20px 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--sub01);
  color: var(--black);
  border-radius: 10px;
  border: 2px solid var(--sub01);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}
.entry-btn i {
  margin-left: 10px;
}
.entry-btn:hover {
  background: #fff;
}
/* ----------------- 参加企業 ----------------- */
.companys {
/*  padding: 120px 0 80px;*/
  padding: 120px 0;
  background: var(--bace);
}
@media (max-width: 768px) {
  .companys {
    padding: 80px 0;
  }
}
.companys h2 {
  color: var(--main);
  text-shadow: 2px 2px 0 #fff;
}
.companys-lead{
	text-align: center;
	margin-bottom: 40px;
}
.companys-content#day1 {
  margin-bottom: 80px;
}
.companys-content__title1, .companys-content__title2 {
  padding: 10px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  margin: 40px 0 20px;
}
@media (max-width: 480px) {
  .companys-content__title1, .companys-content__title2 {
    font-size: 2.0rem;
  }
}
.companys-content__title1 {
  background: var(--accent02);
}
.companys-content__title2 {
  background: var(--accent01);
}
.companys-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 768px) {
  .companys-list {
    flex-direction: column;
  }
}
.companys-list li {
  width: calc(50% - 10px);
}
@media (max-width: 768px) {
  .companys-list li {
    width: 100%;
  }
}
.companys-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 2px solid var(--main);
  border-radius: 8px;
  padding: 10px;
  cursor: pointer;
}
.companys-list__name {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.companys-list__category {
  display: inline-block;
  height: 24px;
  padding: 0 10px;
  margin: 5px 10px 5px 0;
  border-radius: 12px;
  background: var(--accent02);
  color: #fff;
  font-size: 1.4rem;
  line-height: 24px;
}
.companys-list__mark {
  display: flex;
  gap: 10px;
}
.companys-list__mark img {
  width: 40px;
  object-fit: cover;
}
.companys-list__title {
  width: 100%;
}
.companys-trigger .companys-list__title {
  color: #333;
}
.companys-trigger.visited .companys-list__title {
  color: #870087;
}
.companys-list__btn {
  width: 120px;
  border: 2px solid #333;
  padding: 8px;
  border-radius: 8px;
  font-size: 1.6rem;
  color: #333;
  text-align: center;
}
@media (max-width: 768px) {
  .companys-list__btn {
    width: 100px;
    font-size: 1.4rem;
  }
}
@media (max-width: 480px) {
  .companys-list__btn {
    width: 110px;
    padding: 5px;
    white-space: normal;
  }
}
.companys-list__btn i {
  color: #333;
  margin-left: 5px;
}
.commingSoon{
	background: #fff;
	border-radius: 20px;
	border: 2px solid var(--main);
	padding: 40px;
	font-size: 2.0rem;
	font-weight: bold;
	text-align: center;
}
/* ----------------- モーダル ----------------- */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  padding: 16px;
  height: 100vh;
}
.modal.is-open {
  display: block;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
}
.modal__panel {
  position: relative;
  box-sizing: border-box;
  width: calc(100% - 80px);
  max-width: 800px;
  margin: 120px auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 80px);
}
@media (max-width: 768px) {
  .modal__panel {
    width: calc(100% - 40px);
	padding: 20px;
	margin: 80px auto;
  }
}
@media (max-width: 480px) {
  .modal__panel {
    width: 100%;
	padding: 60px 20px;
  }
}
.modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 10px;
  z-index: 999;
}
.modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.modal__actions {
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: #fff;
  box-shadow: 0 -6px 12px rgba(0, 0, 0, .04);
}
body.modal-lock {
  overflow: hidden;
}
.site-link-text {
  font-weight: normal;
  font-size: 0.8em;
}
@media (max-width: 768px) {
	.site-link-text{
		display: block;
		width: 100%;
	}
}

.modal__table {
  width: 100%;
  border-collapse: collapse;
}
@media (max-width: 480px) {
  .modal__table tr {
    display: flex;
    flex-direction: column;
  }
}
.modal__table th, .modal__table td {
  border-top: 1px solid #ccc;
  padding: 10px;
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .modal__table th, .modal__table td {
    font-size: 1.6rem;
  }
}
.modal__table th:last-child, .modal__table td:last-child {
  border-bottom: 1px solid #ccc;
}
.modal__table th {
  width: 120px;
  background: var(--main);
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-weight: normal;
  border-left: 1px solid #ccc;
}
@media (max-width: 768px) {
  .modal__table th {
    width: 100px;
  }
}
@media (max-width: 480px) {
  .modal__table th {
    width: 100%;
    border: 1px solid #ccc;
  }
}
.modal__table td {
  border-right: 1px solid #ccc;
}
@media (max-width: 480px) {
  .modal__table td {
    border: 1px solid #ccc;
    border-top: none;
    border-bottom: none;
  }
}
.modal__jobs-list a, .jobs a {
  text-decoration: underline;
  color: #333;
}
.modal__jobs-list a:visited, .jobs a:visited {
  color: #870087;
}
.modal__title a {
  font-size: 2.4rem;
  text-decoration: none;
  margin-bottom: 10px;
}
#companyModalCats {
  margin-bottom: 10px;
  color: var(--main);
}
.modal__navs {
  display:flex;
  justify-content:space-between;
  gap:8px;
  margin:40px 0 0;
}
.modal__nav {
  padding:.5em .9em;
  border:2px solid var(--black);
  background:var(--black);
  color: #fff;
  border-radius:6px;
  font-size:1.6rem;
  cursor:pointer;
}
.modal__nav:disabled {
  opacity:.5;
  cursor:not-allowed;
}
@media (hover:hover) {
  .modal__nav:hover
	{ opacity: 0.6; }
}
/* ----------------- フロートボタン ----------------- */
.float {
  display: none;
}
@media (max-width: 768px) {
  .float {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: var(--sub01);
    color: var(--black);
    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;
  }
}
/* ----------------- フッター ----------------- */
.footer {
  padding: 80px 0 0;
  background: var(--main);
}
.footer__title {
  color: #fff;
  font-size: 4.0rem;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 0 #000;
}
@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 100px;
	}
}
.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;
  }
} 