/* ==========================================================================
   福りんぴっく LP - Stylesheet
   ========================================================================== */

:root {
  --color-primary: #002460;
  --color-primary-light: #003580;
  --color-main-scarlet: #d60050;
  --color-accent: #ffc540;
  --color-accent-dark: #e6ad00;
  --color-pink: #e85d7a;
  --color-coral: #f07060;
  --color-bg: #ffffff;
  --color-bg-alt: #fff9f4;
  --color-bg-hero: #ffe4ee;
  --color-text: #333333;
  --color-text-light: #666666;
  --color-white: #ffffff;
  --font-base: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  --container-max: 1100px;
  --header-height: 72px;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0, 36, 96, 0.1);
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover {
  opacity: 0.75;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container-max));
  margin-inline: auto;
}

.section {
  padding: 4rem 0 2rem;
}

.section--alt {
  /*background: var(--color-bg-alt);*/
}

.section__title {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 0 0 40px;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.5;
}

.section__title-icon {
  width: 30px;
  height: auto;
  flex-shrink: 0;
}

.contents__icon-size__45px{
  width: 45px;
}

.section__lead {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 2;
}

/* Header
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /*height: var(--header-height);*/
  padding: 1rem 0;
  /*background: rgb(255 255 255 / 0%);*/
  background: rgb(255 5 132 / 30%);
  /*box-shadow: 0 2px 12px rgba(0, 36, 96, 0.08);*/
  backdrop-filter: blur(8px);
  /*border-top: 4px solid var(--color-pink);*/
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  gap: 16px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

.header__logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--color-accent);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
  color: var(--color-primary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header__menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-bg);
  white-space: nowrap;
  transition: .1s;
}

.header__menu a:hover {
  font-size: 1.2rem;
  opacity: 1;
}

.header__menu a::before {
  content: "";
  width: 25px;
  height: 25px;
  margin: 0 .5rem 0 auto;
  padding: 0 0 0.3rem;
  display: inline-flex;
  background-image: url(../img/icon/contents_line_icon_small_flower.svg);
  background-repeat: no-repeat;
  background-position: 4px 3px;
  transition: .4s;
}

.header__menu a:hover::before {
  transform: rotate(180deg);
}

.header__contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 15px 10px 16px;
  background: #ffc540;
  color: var(--color-white) !important;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  transition: .2s;
  opacity: 1;
  text-align: right;
  box-shadow: 2px 2px 4px #555;
}

.header__contact-btn:hover {
  background: var(--color-primary-light);
  box-shadow: 1px 1px 1px #555;
  opacity: 1;
}

a.header__contact-btn::before {
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../img/icon/header_mail_icon.svg);
  display: block;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 .5rem 0 auto;
}

.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  width: 45px;
  height: 45px;
  padding: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 5px;
  background: #fff;
  transition: var(--transition);
}

.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
}

/* Hero
   -------------------------------------------------------------------------- */
.hero__visual__background {
  background-image: url(../img/hero_visual_img_repeat-top.webp);
  background-size: contain;
}

  .hero {
  margin-top: 0;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 1058px;
  margin: 0 auto;
  min-height: clamp(380px, 55vw, 600px);
  background-image: url(../img/hero_visual_img_rere-top.webp);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__visual__bottom__giza {
  background-image: url(../img/hero_visual_img_repeat_giza.webp);
  background-size: contain;
  background-repeat: repeat-x;
  padding: 1rem 0;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__placeholder {
  text-align: center;
  padding: 48px 20px;
  color: var(--color-primary);
}

.hero__placeholder-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 24px;
  background: var(--color-pink);
  color: var(--color-white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero__placeholder-title {
  margin: 0 0 16px;
  font-size: clamp(2.75rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-shadow: 2px 2px 0 rgba(255,255,255,0.6);
}

.hero__placeholder-catch {
  margin: 0 0 6px;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-primary);
}

.hero__placeholder-sub {
  margin: 0 0 28px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-style: italic;
  opacity: 0.8;
}

.hero__date {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero__date-year {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--color-primary);
}

.hero__date-day {
  font-size: clamp(3rem, 10vw, 5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-primary);
}

.hero__date-meta {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--color-primary);
}

.hero__recruit-banner {
  background: var(--color-pink);
  color: var(--color-white);
  text-align: center;
  padding: 14px 20px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Purpose
   -------------------------------------------------------------------------- */
.purpose__text {
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 2.2;
}

/* Overview box */
.overview-box {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  /*border: 2px solid var(--color-accent);*/
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.overview-box__title {
  margin: 0;
  padding: 14px 24px;
  /*background: var(--color-accent);*/
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  display: flex;
}

.overview-box__title::before {
  content: "";
  width: 25px;
  height: 25px;
  display: inline-block;
  background-image: url(../img/icon/contents_line_icon_information.svg);
  background-size: cover;
  margin-right: .5rem;
}

.overview-box__lead {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
  padding: .5rem .5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  border-bottom: 1px solid #f0e8d8;
  background: var(--color-white);
}

.overview-box__lead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  background: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}

.overview-box__text {
  font-size: 0.85rem;
  margin: 0 auto;
  padding: .5rem 1rem;
  width: 100%;
  max-width: 770px;
  line-height: 1.5;
}

.overview-box__dl {
  margin: 0;
  padding: 0 1rem;
}

.overview-box__row {
  display: flex;
  border-bottom: 1px solid #f0e8d8;
}

.overview-box__row:last-child {
  border-bottom: none;
}

.overview-box__row dt {
  flex: 0 0 140px;
  padding: 12px 19px;
  background: var(--color-bg-alt);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  text-align: center;
}

.index__title__background {
  display: block;
  padding: 0 8px;
  background: linear-gradient(90deg, rgb(254, 218, 66) 0%, rgb(251, 105, 98) 57%, rgb(238, 44, 130) 100%);
  width: 100%;
  color: #fff;
}

.overview-box__row dd {
  flex: 1;
  margin: 0;
  padding: 12px 16px;
  font-size: 0.875rem;
  line-height: 1.5;
}

/*背景に繰り返しの透過した画像配置*/
main#main {
  background-image: url(../img/contents_background_repeat.webp);
  background-size: 28%;
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
}

.tournament_concept__job__images{
  width: 100%;
  max-width: 960px;
  margin: 2rem auto 2rem;
}

.consept__message__box {
  position:relative;
  padding: .5rem .5rem;
  width: 100%;
  max-width: 800px;
  margin: 1rem auto 3rem;
  background: var(--color-white);
}

.consept__message__box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 23px;
  border: 3px solid transparent;
  background: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}

.purpose__text {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.6;
  padding: 1rem;
}

.purpose__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 23px;
  border: 3px solid transparent;
  background: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask-composite: exclude;
}

/* Cards (merits)
   -------------------------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}

.card__number {
  width: 48px;
  height: auto;
  margin: 0 auto 16px;
}

.card__title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
}

.card__text {
  margin: 0;
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--color-text-light);
  text-align: left;
}

  .job__images__pc {
    display: block;
  }

  .job__images__sp {
    display: none;
  }


.highlight-box {
  max-width: 800px;
  margin: 48px auto 0;
  padding: 32px;
  background: var(--color-white);
  border-left: 4px solid var(--color-pink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight-box__title {
  margin: 0 0 12px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.highlight-box__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.9;
}

/* 出場事業所参加者募集 */
.join__box__cover__flex {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow);
  background: var(--color-white);
  padding: 1rem 2rem;
  display: flex;
  gap: 40px;
  border-radius: var(--radius);
}

.join__box__left {
  width: 50%;
  align-items: center;
  justify-content: center;
}

.join__box__right {
  width: 50%;
  align-items: center;
  justify-content: center;
}

.box__y-position__grid{
  display: grid;
}

.join__information__box ul li {
  margin: 0 auto 2rem 0;
}

.join__information__box h4{
  margin: 0 0 .5rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(90deg, #e61673 33%, #fdd000 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

.join__information__box p {
  font-size: 0.95rem;
  margin: .5rem auto 1rem;
  line-height: 1.4;
}

span.join__contents__line {
  width: 100%;
  display: inline-block;
  border-top: dotted 2px #888;
  margin: 0 auto;
  height: 1rem;
}

.join__line__display-none__sp {
  display: none!important;
}

h5.join__list__title__first {
  display: flex;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, #e61673 20%, #fdd000 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

h5.join__list__title__first::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: .5rem;
  background-image: url(../img/icon/contents_word_icon_number_1.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

h5.join__list__title__second {
  display: flex;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, #e61673 20%, #fdd000 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

h5.join__list__title__second::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: .5rem;
  background-image: url(../img/icon/contents_word_icon_number_2.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

h5.join__list__title__third {
  display: flex;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, #e61673 20%, #fdd000 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
}

h5.join__list__title__third::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: .5rem;
  background-image: url(../img/icon/contents_word_icon_number_3.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* 職種別開催競技
   -------------------------------------------------------------------------- */
h2#jobs-heading {
  color: #c8114d !important;
  letter-spacing: .3em;
  position: relative;
}

h2#jobs-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 35%;
  height: 2px;
  border-top: 2px dotted #c8114d;
}

h2#jobs-heading::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: block;
  width: 35%;
  height: 2px;
  border-top: 2px dotted #c8114d;
}

.jobs__category {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 1rem auto;
  padding: 16rem 0 2cqh;
  background-image: url(../img/contents_job_background_all_text-in.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.jobs__items__user {
  width: 70%;
  max-width: min(100% - 30px, var(--container-max));
  margin-inline: auto;
  background-color: #fff;
  padding: 1rem 1.5rem;
  border: solid 3px #d60050;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.jobs__items__user p {
  margin: 0 auto;
}

/* 開催場所・日程・対象者
  -------------------------------------------------------------------------- */
h2#event-info-heading {
color: #c8114d !important;
letter-spacing: .3em;
position: relative;
}

h2#event-info-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  border-top: 2px dotted #c8114d;
}

h2#event-info-heading::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  border-top: 2px dotted #c8114d;
}

/* 協賛企業一覧 */
.sponsor__area__box {
  width: 100%;
  max-width: min(100% - 30px, var(--container-max));
  margin-inline: auto;
  margin: 5rem auto 1rem;
}

.sponsor__area__box h4 {
  display: block;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  margin: 0 auto 1rem;
  color: #d60050;
  letter-spacing: .3em;
  position: relative;
}

.sponsor__area__box h4::before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  border-top: 2px dotted #c8114d;
}

.sponsor__area__box h4::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: block;
  width: 25%;
  height: 2px;
  border-top: 2px dotted #c8114d;
}

.sponsor__box__list {
  width: 100%;
  margin: 0 auto;
  border: solid 5px #ffc540;
  padding: 3rem;
  border-radius: 15px;
  background-color: #fff;
  box-shadow: var(--shadow);
}

.grid__layout__box {
  text-align: center;
  font-size: 1.5rem;
}

/* Sponsorship value cards
   -------------------------------------------------------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}

.value-card__number {
  width: 48px;
  height: auto;
  margin: 0 auto 12px;
}

.value-card__title {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.value-card__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--color-text-light);
  text-align: left;
}

.sponsorship__desc {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 1rem;
  line-height: 2;
}

/* Jobs
   -------------------------------------------------------------------------- */
.jobs {
  position: relative;
}

.jobs__flash {
  position: absolute;
  width: clamp(60px, 8vw, 100px);
  opacity: 0.7;
  pointer-events: none;
}

.jobs__flash--left {
  top: 20px;
  left: 0;
}

.jobs__flash--right {
  bottom: 20px;
  right: 0;
}

.jobs__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.job-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.job-card:hover {
  transform: translateY(-4px);
}

.job-card__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(145deg, #ffd6e7, #f7c5a8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 500;
}

.job-card__body {
  padding: 20px;
  text-align: center;
}

.job-card__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.job-card__desc {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Event Info
   -------------------------------------------------------------------------- */
.event-info__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.event-info__block {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.event-info__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0 .5rem;
  line-height: 2.5;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 5px;
  color: var(--color-white);
  background-color: #d60050;
}

.event-info__label img {
  width: 32px;
  height: auto;
}

.location__point__box {
  padding: 0 1rem 0;
}

.event-info__venue-name {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.event-info__address {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.event-info__schedule {
  margin: 0;
  padding: 0 1rem 0;
}

.event-info__schedule dt {
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 12px;
}

.event-info__schedule dt:first-child {
  margin-top: 0;
}

.event-info__schedule dd {
  margin: 4px 0 0;
  padding-left: 0;
}

.event-info__targets {
  margin: 0;
  padding-left: 1.2em;
}

.event-info__targets li {
  margin-bottom: 8px;
  line-height: 2.5;
  list-style: none;
}

ul.event-info__targets li::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 16px;
  line-height: 1;
  background-image: url(../img/icon/check-solid-full.svg);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: .5rem;
}

.event-info__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 10;
}

.event-info__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.pointer__scarett {
  padding: 100px 0 0;
  background-image: url(../img/footer_background_splash_repeat.webp);
  background-size: 58%;
  margin: 1rem auto 0;
}

/* Bus and Train Information Flyer */

.bus__train__information__block {
  width: 100%;
  margin: 3rem auto 0;
}

.bus__train__information__flex {
  display: flex;
  background-color: #fff;
  padding: 1rem 1rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  gap: 25px;
  width: 100%;
  max-width: 1100px;
}

.bus__train__information__contents__block {
  width: 100%;
  margin: 0 auto;
}

.information__flyer__link__box {
  width: 100%;
  margin: 0 auto;
}

h4.bus__train__information__sub-title {
  margin: 0 auto .5rem;
  font-size: 1.3rem;
  border-bottom: solid 4px #d60050;
}

.bus__train__information__flex p {
  width: 100%;
}

.information__flyer__link__box {
  width: 100%;
  margin: 0 auto;
}

.information__flyer__link__box a {
  display: block;
}

p.flyer__link {
  text-align: center;
  width: 100%;
  max-width: 20rem;
  margin: 1rem auto 0;
  border: solid 2px #d71035;
  padding: 1rem;
  border-radius: 5px;
  background-color: #ff4769;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 3px 3px 2px #888;
  transition: 0.2s;
  transform: translateY(0);
}

p.flyer__link:hover {
  background-color: #16b638;
  border-color: #218021;
  box-shadow: 1px 1px 1px #333;
  transform: translateY(4px);

}

/* Contact (Application)
   -------------------------------------------------------------------------- */
.contact {
  background: var(--color-main-scarlet);
  color: var(--color-white);
  padding: 1rem 0;
}

.contact__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.contact__title__left {
  border: solid 2px #fff;
  padding: 1rem;
}

.contact__title__left p {
  margin: 0;
}

.contact__info {
  flex: 1;
  min-width: 280px;
  border-left: solid 9px #fff;
  padding: 0 0 0 1rem;
  letter-spacing: 0.1rem;
}

.contact__org {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact__data__flex{
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__details {
  font-weight: bold;
}

.contact__details {
  margin: 0;
  font-size: 0.95rem;
  line-height: 2;
}

.contact__details a {
  color: var(--color-white);
  text-decoration: underline;
}

.contact__box__flex{
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact__actions p {
  line-height: 1;
  margin: 0 auto;
}

.map__qr {
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.75rem;
  text-align: center;
  background-image: url(../img/fukurin_map_qr.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact__qr {
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.75rem;
  text-align: center;
  background-image: url(../img/fukurin_inquiry_qr.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.mail__qr {
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 0.75rem;
  text-align: center;
  background-image: url(../img/fukurin_mail_qr.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/*.contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: .5rem 1rem;
  background: var(--color-accent);
  color: var(--color-primary) !important;
  border-radius: 15px;
  border: solid 3px #fff;
  font-size: 1rem;
  font-weight: 700;
  opacity: 1;
  transition: background var(--transition);
  box-shadow: 2px 2px 5px #3a0016c7;
}

.contact__btn:hover {
  box-shadow: 1px 1px 2px #3a0016c7;
  background: var(--color-accent-dark);
  opacity: 1;
}*/

.contact_btn__flex img {
  width: 100%;
  max-width: 43px;
  margin: .5rem auto .3rem;
  display: block;
}

/* Footer
   -------------------------------------------------------------------------- */
.footer {
  color: #fff;
  font-size: 0.875rem;
}

.footer__inner {
  background-color: var(--color-main-scarlet);
  padding: 1rem;
}

.footer__organizer {
  margin: 0;
  font-weight: 700;
  line-height: 1;
}

.footer__support {
  margin: 0;
  font-weight: 700;
  line-height: 1;
}

img.fukurin__mail__svg {
  width: 100%;
  max-width: 200px;
}

.footer__organizer span {
  background-color: #fff;
  color: var(--color-main-scarlet);
  padding: .1rem .5rem;
  margin-right: .5rem;
  line-height: 1;
  border-radius: 3px;
}

.footer__support span {
  background-color: #fff;
  color: var(--color-main-scarlet);
  padding: .1rem .5rem;
  line-height: 1;
  margin-right: .5rem;
  border-radius: 3px;
}

.sponser__list__flex{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 0;
  gap: 16px;
}

.footer__copy {
  margin: 0;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
}

/* Scroll to top
   -------------------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--color-pink);
  color: var(--color-white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

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

.scroll-top:hover {
  background: var(--color-coral);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
  .card-grid,
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .event-info__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .header {
    padding: .5rem 0;
  }

  a.header__logo img {
    width: 50%;
  }

  .header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #e7216a;
    box-shadow: 0 8px 24px rgba(0, 36, 96, 0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
  }

  .header__nav.is-open {
    max-height: 400px;
    top: 61px;
  }

  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px;
  }

  .header__menu a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
  }

  .header__menu a:last-child {
    border-bottom: none;
  }

  .header__contact-btn {
    margin: 0 20px 20px;
    text-align: center;
  }

  .header__hamburger {
    display: flex;
  }

  a.header__contact-btn {
    width: 100%;
    max-width: 160px;
    padding: 10px 15px 10px 5px;
  }

  a.header__contact-btn::before {
    margin: 0 .5rem 0;
  }

  .hero__visual__background {
    background-image: none;
    background-position: top;
  }

  /*.hero__visual {
    min-height: clamp(320px, 55vw, 600px);
    background-image: url(../img/hero_visual_img_sp_768.webp);
    background-size: 100%;
    background-repeat: no-repeat;
  }*/


  .card-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .jobs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact__inner {
    flex-direction: column;
    text-align: center;
  }

  .contact__info {
    text-align: center;
  }

  /* 出場事業所参加者募集 */
  .join__box__cover__flex {
    display: block;
  }

  .join__box__left {
    width: 100%;
  }

  .join__box__right {
    width: 100%;
  }

  .join__line__display-none__sp{
    display: block!important;
  }

  .jobs__flash {
    display: none;
  }

  /* 職種別開催競技
     -------------------------------------------------------------------------- */
  h2#jobs-heading::before {
    width: 30%;
  }

  h2#jobs-heading::after {
    width: 30%;
  }

  .jobs__category {
    height: auto;
    padding: 16rem 0;
    background-image: url(../img/contents_job_background_all_text-in_sp.webp);
  }


    /* 開催場所・日程・対象者
     -------------------------------------------------------------------------- */
  h2#event-info-heading::before {
    width: 15%;
  }

  h2#event-info-heading::after {
    width: 15%;
  }

  .contact__info {
    border-left: none;
  }

  .bus__train__information__flex {
    display: block;
    max-width: fit-content;
  }



}

@media (max-width: 480px) {
  .hero__visual {
    min-height: clamp(330px, 55vw, 600px);
    background-image: url(../img/hero_visual_img_in-giza_sp_768.webp);
    background-repeat: no-repeat;
  }

  .hero__visual__bottom__giza {
    background-image: url(../img/hero_visual_img_repeat_giza_sp.webp);
    background-size: contain;
    background-repeat: repeat-x;
  }

  .section {
    padding: 2rem 0 1rem;
  }

  .container {
    width: min(100% - 32px, var(--container-max));
  }

  .section__title {
    font-size: clamp(1.15rem, 3vw, 1.75rem);
    letter-spacing: 0 !important;
  }

  .purpose__text {
    font-size: .95rem;
    line-height: 1.5;
    padding: .7rem;
  }

  h3.overview-box__title {
    text-align: center;
    display: block;
  }

  p.overview-box__text {
    padding: .5rem 2rem;
  }

  .overview-box__lead {
    text-align: center;
    font-size: medium;
  }

  .section__title-icon {
    width: 35px;
  }

  .join__box__cover__flex {
    padding: 1rem 1.5rem;
  }

  .join__information__box {
    margin-bottom: 1rem;
  }

  .job__images__pc {
    display: none;
  }

  .job__images__sp {
    display: block;
  }

  .jobs__category {
    padding: 13rem 0 8rem;
    margin: 0 auto;
  }

  .highlight-box {
    padding: 24px 20px;
  }

  .event-info__block {
    padding: 24px 20px;
  }

  .join__information__box h4{
    font-size: 1.1rem;
  }

  h5.join__list__title__first{
    font-size: 1rem;
  }

  .jobs__grid {
    grid-template-columns: 1fr;
  }

  .jobs__items__user {
    width: 100%;
    max-width: 390px;
  }


  .overview-box__row {
    flex-direction: column;
  }

  .overview-box__row dt {
    flex: none;
    border-bottom: 1px solid #f0e8d8;
  }

  .pointer__scarett {
    background-size: 100%;
  }

  .contact__info {
    border: none;
    margin: 0;
  }

  .contact__box__flex{
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .contact__data__flex{
    display: block;
  }

  .contact__details {
    font-size: 1.2rem;
  }

  h2#event-info-heading::before {
    width: 6%;
  }

  h2#event-info-heading::after {
    width: 6%;
  }

}
