@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  -webkit-font-feature-settings: "palt" 1;
  color: #000;
}
@media screen and (max-width: 1280px) {
  body {
    font-size: 14px;
  }
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}
a.no-active {
  pointer-events: none;
  opacity: 0.6;
}

@media screen and (max-width: 1280px) {
  .pc-none {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (max-width: 1280px) {
  .pc-block {
    display: block;
  }
}

@media screen and (max-width: 1000px) {
  .tab-none {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (max-width: 1000px) {
  .tab-block {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .sp-none {
    display: none;
  }
}

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

.elm {
  opacity: 0;
  -webkit-transform: translateY(1.875em);
  transform: translateY(1.875em);
  -webkit-transition: 0.5s ease-in-out, -webkit-transform 0.5s ease-out;
  transition: 0.5s ease-in-out, transform 0.5s ease-out;
  filter: blur(20px);
}
@media screen and (max-width: 768px) {
  .elm {
    -webkit-transform: translateY(2em);
    transform: translateY(2em);
  }
}
.elm.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  filter: blur(0px);
}

.elm.elm2 {
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .elm.elm2 {
    transition-delay: unset;
  }
}

.elm.elm3 {
  transition-delay: 0.6s;
}
@media screen and (max-width: 768px) {
  .elm.elm3 {
    transition-delay: unset;
  }
}

.elm.elm4 {
  transition-delay: 0.8s;
}
@media screen and (max-width: 768px) {
  .elm.elm4 {
    transition-delay: unset;
  }
}

.elm.elmMV {
  filter: blur(0px);
}

.elm.elmMVtitle {
  transform: translateY(0em);
  transition: 1s ease, transform 1s ease;
  filter: blur(30px);
  transition-delay: 0.1s;
}
.elm.elmMVtitle.fade-in {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  filter: blur(0px);
}

.elm_r {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(300px);
}
@media screen and (max-width: 768px) {
  .elm_r {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(200px);
  }
}

.elm_l {
  opacity: 0;
  transition-delay: 0.3s;
  transition: opacity 1s ease-in-out, transform 1s ease-out;
  transform: translateX(-300px);
}
@media screen and (max-width: 768px) {
  .elm_l {
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
    transition-delay: 0.5s;
    transform: translateX(-200px);
  }
}

.elm_o {
  opacity: 0;
  -webkit-transition-duration: 1.8s;
  transition-duration: 1.8s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-filter: blur(6px);
  filter: blur(6px);
}
.elm_o.fade-in {
  opacity: 1;
  -webkit-filter: blur(0px);
  filter: blur(0px);
}

.elm_title.fade-in {
  opacity: 1;
  transform: translateY(0px);
}

.elm_title_en.fade-in {
  opacity: 1;
}

.elm_r.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.elm_l.fade-in {
  opacity: 1;
  transform: translateX(0px);
}

.animate-on-appear {
  animation: fadeAndTranslate 1s ease forwards;
}

@-webkit-keyframes fadeAndTranslate {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeAndTranslate {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.animate-on-appear-l {
  animation: fadeAndTranslateL 1s ease forwards;
}

@keyframes fadeAndTranslateL {
  from {
    opacity: 0;
    transform: translateX(-3.125em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-on-appear-o {
  animation: fadeAndTranslateO 1s ease forwards;
}

@-webkit-keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes fadeAndTranslateO {
  from {
    opacity: 0;
    -webkit-filter: blur(6px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }
}
.inner840 {
  max-width: 52.5em;
  width: 90%;
  margin: 0 auto;
}

.inner950 {
  max-width: 59.375em;
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  main {
    padding: 0;
  }
}

.outfit {
  font-family: "Outfit", sans-serif;
}

.secBlock {
  margin-top: 9.375em;
}
@media screen and (max-width: 768px) {
  .secBlock {
    margin-top: 5.375em;
  }
}
.secBlock h2 {
  font-size: 2.6875em;
  font-weight: 900;
  color: #2243a6;
  margin: 0;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .secBlock h2 {
    font-size: 2.2em;
  }
}
.secBlock h2::after {
  content: "";
  display: block;
  background-image: url("../../img/ttl_line.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  max-width: 11.9534883721em;
  width: 100%;
  height: 0.488372093em;
  margin: 0.25em auto 0;
}
.secBlock_leadArea {
  width: 100%;
}
.secBlock_leadArea p {
  margin-top: 2em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.8;
  text-align: justify;
}

.contentsBtn {
  text-align: center;
  margin-top: 4em;
}
@media screen and (max-width: 768px) {
  .contentsBtn {
    margin-top: 3em;
  }
}
.contentsBtn a {
  display: inline-block;
  cursor: pointer;
  font-size: 1.5625em;
  font-weight: 900;
  color: #fff;
  background-color: #85bf23;
  border-radius: 0.5em;
  padding: 1em 4em 1em 3.5em;
  border: 0.1304347826em solid #2243a6;
  position: relative;
  box-shadow: 0.39em 0.35em 0px 0px #2243a6;
  transition-duration: 0.3s;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .contentsBtn a {
    font-size: 1.4625em;
  }
}
.contentsBtn a:hover {
  box-shadow: none;
  transform: translate(0.39em, 0.35em);
}
.contentsBtn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background-color: #fff;
  border: 0.1304347826em solid #fff;
  z-index: 1;
}
.contentsBtn a::before {
  content: "▶";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%) scale(0.55);
  -webkit-transform: translateY(-50%) scale(0.55);
  -ms-transform: translateY(-50%) scale(0.55);
  width: 1.6em;
  height: 1.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.15em;
  color: #2243a6;
  z-index: 2;
  font-weight: bold;
}
.contentsBtn.btn2 a {
  background-color: #2243a6;
  border-color: #222f8e;
  box-shadow: 0.39em 0.35em 0px 0px #222f8e;
}
@media screen and (max-width: 768px) {
  .contentsBtn.btn2 a {
    width: 84%;
    margin-inline: auto;
  }
}
.contentsBtn.btn2 a:hover {
  box-shadow: none;
  transform: translate(0.39em, 0.35em);
}
@media screen and (max-width: 768px) {
  .contentsBtn.btn2 a::before {
    top: 50%;
  }
}

.noteArea {
  margin-top: 8em;
  padding-bottom: 3.6em;
}
.noteArea p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.625em;
  color: #231815;
  letter-spacing: 0;
  text-align: justify;
}

/* ふわふわするアニメーション */
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.3em);
  }
}
@keyframes fuwafuwa2 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0.6em);
  }
}
.anime-fuwafuwa {
  animation: 1s fuwafuwa infinite;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

.health_promotion {
  position: relative;
  padding-bottom: 12.5em;
}
.health_promotion .mv {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv {
    padding-bottom: 14vw;
  }
}
.health_promotion .mv_wrap {
  position: relative;
  z-index: 1;
  padding-block: 2.5em 6.25em;
  background-color: #ffffff;
  background-image: radial-gradient(circle, rgba(199, 232, 250, 0.5) 4px, transparent 4px), radial-gradient(circle, rgba(199, 232, 250, 0.5) 4px, transparent 4px);
  background-position: 0 7px, 13px 19px;
  background-size: 26px 24px;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_wrap {
    padding-block: 2.5em 11.25em;
  }
}
.health_promotion .mv_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 67.8125em;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_inner {
    flex-direction: column;
    width: 100%;
  }
}
.health_promotion .mv_inner .mv_title {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_inner .mv_title {
    width: 70%;
    margin-top: 1em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_inner .mv_title h1 {
    transform: translateY(0);
  }
}
.health_promotion .mv_inner .mv_icon {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_inner .mv_icon {
    width: 70%;
    margin-top: 2em;
  }
}
.health_promotion .mv_headline {
  position: relative;
  z-index: 2;
  margin-top: -3em;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_headline {
    margin-top: -1em;
  }
}
.health_promotion .mv_headline_iconWrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  max-width: 67.8125em;
  width: 90%;
  margin: 0 auto;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_headline_iconWrap {
    justify-content: center;
    bottom: -36vw;
    top: auto;
  }
}
.health_promotion .mv_headline_icon {
  width: 30.2%;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_headline_icon {
    width: 80%;
  }
  .health_promotion .mv_headline_icon img.elm {
    opacity: 1;
    transform: translateY(0px);
    filter: blur(0px);
  }
}
.health_promotion .mv_headline_inner {
  width: 100%;
  background-color: #2243a6;
  padding-block: 1.875em;
  position: relative;
  z-index: 1;
  margin-top: -1px;
}
.health_promotion .mv_headline_inner_tie {
  max-width: 69.875em;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_headline_inner_tie {
    width: 100%;
    justify-content: center;
  }
}
.health_promotion .mv_headline_wave svg {
  display: block;
  width: 100%;
}
.health_promotion .mv_headline_kodo {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .health_promotion .mv_headline_kodo {
    width: 80%;
  }
}
.health_promotion .eventMap {
  margin-top: 8em;
  padding-block: 4em;
}
.health_promotion .eventMap h2 {
  max-width: 62.5em;
  width: 90%;
  margin: 0 auto;
}
.health_promotion .eventMap_lead {
  margin-top: 2.5em;
  text-align: center;
  font-size: 1.0625em;
  font-weight: 900;
  line-height: 1.76;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventMap_lead {
    width: 90%;
    margin: 2em auto 0;
    text-align: left;
  }
}
.health_promotion .eventMap_contents {
  background-color: #3fa9d8;
  padding-block: 0em;
  margin-top: 4em;
  border-bottom: 3.4375em solid #00acde;
}
.health_promotion .eventMap_iframeBlock {
  max-width: 50em;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
}
.health_promotion .eventMap_iframeBlock_inner {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}
.health_promotion .eventMap_iframeBlock iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.health_promotion .eventSearch {
  max-width: 75em;
  width: 90%;
  margin: 6em auto 0;
  box-shadow: 0.8em 0.8em 0.8em rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 1280px) {
  .health_promotion .eventSearch {
    margin-top: 4em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch {
    margin-top: 2em;
  }
}
.health_promotion .eventSearch_inner {
  padding-block: 4.25em 5.625em;
  background-color: #bae6f8;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.6) 2px, transparent 2px), radial-gradient(circle, rgba(255, 255, 255, 0.6) 2px, transparent 2px);
  background-position: 0 4px, 6px 14px;
  background-size: 12px 20px;
}
@media screen and (max-width: 1280px) {
  .health_promotion .eventSearch_inner {
    padding-block: 4.25em 5.625em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_inner {
    padding-block: 3.25em 4.625em;
  }
}
.health_promotion .eventSearch_title {
  text-align: center;
}
.health_promotion .eventSearch_title h2 .speechBubble {
  letter-spacing: 0.1em;
  position: relative;
  display: inline-block;
  margin-bottom: 1.0909090909em;
  padding: 0.6em 1.06em;
  border: 0.16em solid #2243a6;
  border-radius: 0.5em;
  background-color: #ffffff;
  text-align: center;
  font-size: 2.0625em;
  font-weight: 900;
  line-height: 1.5;
  color: #2243a6;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_title h2 .speechBubble {
    font-size: 1.6em;
  }
}
.health_promotion .eventSearch_title h2 .speechBubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 1.09em 1.09em 0 0;
  border-color: #2243a6 transparent transparent;
  translate: -50% 100%;
  transform: skew(10deg);
  transform-origin: top;
}
.health_promotion .eventSearch_title h2 .speechBubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 0.724em 0.724em 0 0;
  border-color: #ffffff transparent transparent;
  translate: calc(-50% - 0.03em) 100%;
  transform: skew(10deg);
  transform-origin: top;
}
.health_promotion .eventSearch_form {
  max-width: 60.625em;
  width: 90%;
  margin: 3.625em auto 0;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form {
    margin: 2.625em auto 0;
  }
}
.health_promotion .eventSearch_form_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_area {
    flex-direction: column;
    align-items: stretch;
    width: 90%;
    margin: 0 auto;
    row-gap: 1em;
  }
}
.health_promotion .eventSearch_form_area_block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_area_block .eventSearch_form_area_title {
    width: 30%;
  }
}
.health_promotion .eventSearch_form_area_block .eventSearch_form_area_title h3 {
  font-size: 1.0625em;
  font-weight: 700;
  margin-right: 1.2em;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_area_block .eventSearch_form_area_title h3 {
    margin-right: 0;
    font-size: 1.2em;
  }
}
.health_promotion .eventSearch_form_area_block .eventSearch_form_area_select {
  background-color: #fff;
  border-radius: 1em;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_area_block .eventSearch_form_area_select {
    width: 70%;
  }
}
.health_promotion .eventSearch_form_area_block .eventSearch_form_area_select select {
  width: 13.1875em;
  border-radius: 0.5em;
  border: 0.125em solid #cbcbcb;
  padding: 0.8em 1em;
  background-color: #fff;
  color: #000;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_area_block .eventSearch_form_area_select select {
    width: 100%;
  }
}
.health_promotion .eventSearch_form_area_block .eventSearch_form_area_select select:disabled {
  cursor: not-allowed;
  background-color: #7e7e7e;
}
.health_promotion .eventSearch_form_area_block .eventSearch_form_area_select select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%232243a6'/%3E%3Cpath d='M4 6 L8 10 L12 6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5em center;
  background-size: 1.5em;
}
.health_promotion .eventSearch_form_matter {
  margin-top: 1.875em;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_matter {
    margin-top: 2.5em;
    width: 90%;
    margin-inline: auto;
  }
}
.health_promotion .eventSearch_form_matter h3 {
  font-size: 1.0625em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_matter h3 {
    font-size: 1.2em;
  }
}
.health_promotion .eventSearch_form_matter .matter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 1em;
}
@media screen and (max-width: 1280px) {
  .health_promotion .eventSearch_form_matter .matter {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 1em;
    row-gap: 1em;
  }
}
@media screen and (max-width: 1000px) {
  .health_promotion .eventSearch_form_matter .matter {
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: 1em;
    row-gap: 1em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_matter .matter {
    column-gap: 0;
    row-gap: 0;
  }
}
.health_promotion .eventSearch_form_matter .matter li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 13.4020618557%;
  height: 3.5833333333em;
  font-size: 0.75em;
  background-color: #fff;
  color: #cbcbcb;
  border-radius: 0.5em;
  padding: 0 0.8em;
  font-weight: bold;
  cursor: pointer;
  transition-duration: 0.3s;
  position: relative;
}
@media screen and (max-width: 1280px) {
  .health_promotion .eventSearch_form_matter .matter li {
    width: 18.402062%;
  }
}
@media screen and (max-width: 1000px) {
  .health_promotion .eventSearch_form_matter .matter li {
    width: 22.402062%;
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_matter .matter li {
    width: 48%;
    font-size: 1.1em;
    margin-right: 4%;
  }
  .health_promotion .eventSearch_form_matter .matter li:nth-of-type(2n) {
    margin-right: 0;
  }
  .health_promotion .eventSearch_form_matter .matter li:nth-of-type(n + 3) {
    margin-top: 1em;
  }
}
.health_promotion .eventSearch_form_matter .matter li#sport::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("../../img/search/icon01_off.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.25em;
  height: 2.4166666667em;
  z-index: 1;
  transition-duration: 0.3s;
}
.health_promotion .eventSearch_form_matter .matter li#eat::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("../../img/search/icon02_off.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.25em;
  height: 1.9083333333em;
  z-index: 1;
  transition-duration: 0.3s;
}
.health_promotion .eventSearch_form_matter .matter li#nosmoking::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("../../img/search/icon03_off.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.5833333333em;
  height: 2.2083333333em;
  z-index: 1;
  transition-duration: 0.3s;
}
.health_promotion .eventSearch_form_matter .matter li#sleeping::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("../../img/search/icon04_off.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.4833333333em;
  height: 2.2083333333em;
  z-index: 1;
  transition-duration: 0.3s;
}
.health_promotion .eventSearch_form_matter .matter li#check::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("../../img/search/icon05_off.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.3083333333em;
  height: 2.5666666667em;
  z-index: 1;
  transition-duration: 0.3s;
}
.health_promotion .eventSearch_form_matter .matter li#womanHealth::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("../../img/search/icon06_off.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.3333333333em;
  height: 2.3333333333em;
  z-index: 1;
  transition-duration: 0.3s;
}
.health_promotion .eventSearch_form_matter .matter li#other::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("../../img/search/icon07_off.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.5833333333em;
  height: 2.3em;
  z-index: 1;
  transition-duration: 0.3s;
}
.health_promotion .eventSearch_form_matter .matter li.active {
  color: #fff;
}
.health_promotion .eventSearch_form_matter .matter li.active#sport {
  background-color: #f6aa00;
}
.health_promotion .eventSearch_form_matter .matter li.active#sport::after {
  background-image: url("../../img/search/icon01_on.svg");
}
.health_promotion .eventSearch_form_matter .matter li.active#eat {
  background-color: #ff8082;
}
.health_promotion .eventSearch_form_matter .matter li.active#eat::after {
  background-image: url("../../img/search/icon02_on.svg");
}
.health_promotion .eventSearch_form_matter .matter li.active#nosmoking {
  background-color: #03af7a;
}
.health_promotion .eventSearch_form_matter .matter li.active#nosmoking::after {
  background-image: url("../../img/search/icon03_on.svg");
}
.health_promotion .eventSearch_form_matter .matter li.active#sleeping {
  background-color: #990099;
}
.health_promotion .eventSearch_form_matter .matter li.active#sleeping::after {
  background-image: url("../../img/search/icon04_on.svg");
}
.health_promotion .eventSearch_form_matter .matter li.active#check {
  background-color: #005aff;
}
.health_promotion .eventSearch_form_matter .matter li.active#check::after {
  background-image: url("../../img/search/icon05_on.svg");
}
.health_promotion .eventSearch_form_matter .matter li.active#womanHealth {
  background-color: #4dc4ff;
}
.health_promotion .eventSearch_form_matter .matter li.active#womanHealth::after {
  background-image: url("../../img/search/icon06_on.svg");
}
.health_promotion .eventSearch_form_matter .matter li.active#other {
  background-color: #989898;
}
.health_promotion .eventSearch_form_matter .matter li.active#other::after {
  background-image: url("../../img/search/icon07_on.svg");
}
.health_promotion .eventSearch_form_sub {
  display: flex;
  align-items: flex-start;
  column-gap: 3em;
  margin-top: 1.875em;
}
@media screen and (max-width: 1000px) {
  .health_promotion .eventSearch_form_sub {
    flex-direction: column;
    align-items: stretch;
    row-gap: 2em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_sub {
    width: 90%;
    margin-inline: auto;
    margin-top: 2.5em;
  }
}
.health_promotion .eventSearch_form_sub h3 {
  font-size: 1.0625em;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_sub h3 {
    font-size: 1.2em;
  }
}
.health_promotion .eventSearch_form_sub .eventSearch_form_age {
  flex: 1 1 auto;
  min-width: 0;
}
.health_promotion .eventSearch_form_sub .ageFilter,
.health_promotion .eventSearch_form_sub .feeFilter {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.6em;
  row-gap: 0.6em;
  margin-top: 1em;
}
.health_promotion .eventSearch_form_sub .ageFilter li,
.health_promotion .eventSearch_form_sub .feeFilter li {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75em;
  font-weight: bold;
  background-color: #fff;
  color: #cbcbcb;
  border-radius: 0.5em;
  padding: 1.1em 1.3em;
  cursor: pointer;
  transition-duration: 0.3s;
  flex: 1 1 auto;
  white-space: nowrap;
}
@media screen and (max-width: 1000px) {
  .health_promotion .eventSearch_form_sub .ageFilter li,
  .health_promotion .eventSearch_form_sub .feeFilter li {
    font-size: 1em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_sub .ageFilter li,
  .health_promotion .eventSearch_form_sub .feeFilter li {
    font-size: 1.1em;
    padding: 1.1em 0.75em;
  }
}
.health_promotion .eventSearch_form_sub .ageFilter li.active,
.health_promotion .eventSearch_form_sub .feeFilter li.active {
  background-color: #2243a6;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .health_promotion .eventSearch_form_sub .feeFilter li {
    flex-grow: 0;
    padding-inline: 2.2em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form_sub .feeFilter li {
    flex-grow: 1;
    padding-inline: 0.75em;
  }
}
.health_promotion .eventSearch_form .searchBtn {
  text-align: center;
  margin-top: 4em;
}
.health_promotion .eventSearch_form .searchBtn button {
  cursor: pointer;
}
.health_promotion .eventSearch_form .searchBtn button.search {
  font-size: 1.4375em;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  background-color: #2243a6;
  border-radius: 0.5em;
  padding: 1em 5em;
  border: 0.1304347826em solid #222f8e;
  position: relative;
  box-shadow: 0.39em 0.35em 0px 0px #222f8e;
  transition-duration: 0.3s;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_form .searchBtn button.search {
    padding: 1em 3.5em;
  }
}
.health_promotion .eventSearch_form .searchBtn button.search:hover {
  box-shadow: none;
  transform: translate(0.39em, 0.35em);
}
.health_promotion .eventSearch_form .searchBtn button.search::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url("../../img/search/search_icon.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 1.2043478261em;
  height: 1.2043478261em;
  z-index: 1;
}
.health_promotion .about .about_ttl {
  font-size: 3.125em;
  margin-bottom: 0.6em;
}
.health_promotion .about .about_ttl::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .health_promotion .about .about_ttl {
    font-size: 2.2em;
  }
}
.health_promotion .about_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 68.75em;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .health_promotion .about_inner {
    flex-direction: column;
  }
}
.health_promotion .about_txtArea {
  width: 50%;
}
@media screen and (max-width: 1280px) {
  .health_promotion .about_txtArea {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .about_txtArea {
    width: 100%;
    margin-top: 2em;
  }
}
.health_promotion .about_txtArea h3 {
  text-align: center;
  font-size: 1.375em;
  font-weight: 900;
  color: #2243a6;
  margin: 0;
  margin-top: 0.8em;
}
.health_promotion .about_imgArea {
  width: 45%;
}
@media screen and (max-width: 1280px) {
  .health_promotion .about_imgArea {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .about_imgArea {
    width: 70%;
    margin-top: 2.5em;
    margin-inline: auto;
  }
}
.health_promotion .aboutHealthSpan_imgArea {
  margin-top: 2em;
}
.health_promotion .aboutHealthSpan_imgArea img {
  width: 100%;
}
.health_promotion .aboutHealthSpan .noteArea.noteArea01 {
  width: 40%;
  margin: 1.5em 0 0 auto;
}
@media screen and (max-width: 768px) {
  .health_promotion .aboutHealthSpan .noteArea.noteArea01 {
    width: 100%;
  }
}
.health_promotion .aboutHealthSpan .noteArea.noteArea01 p {
  font-size: 0.7em;
}
.health_promotion .aboutHealthSpan .noteArea.noteArea01 .indi {
  text-indent: -5.5em;
  padding-left: 5.5em;
}
.health_promotion .specialCP {
  max-width: 78.375em;
  width: 100%;
  margin-inline: auto;
  padding-block: 8em;
  background-image: url("../../img/cp_bg.png");
  background-size: contain;
  background-repeat: repeat-x;
  background-position: center center;
  margin-top: 1em;
}
@media screen and (max-width: 1400px) {
  .health_promotion .specialCP {
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP {
    padding-top: 9em;
    padding-bottom: 5em;
    margin-top: 0;
  }
}
.health_promotion .specialCP_inner {
  text-align: center;
}
.health_promotion .specialCP_inner h2 {
  font-size: 4.125em;
  font-weight: 900;
  color: #2243a6;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_inner h2 {
    line-height: 1.2;
    font-size: 3.4em;
  }
}
.health_promotion .specialCP_inner h2::after {
  content: none;
}
.health_promotion .specialCP_span {
  position: relative;
  font-size: 3.0625em;
  margin-top: 0.5em;
  display: inline-block;
}
@media screen and (max-width: 1280px) {
  .health_promotion .specialCP_span {
    font-size: 2.4em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_span {
    font-size: 2.2em;
  }
}
.health_promotion .specialCP_span h3 {
  display: inline-block;
  font-size: 1em;
  font-weight: 900;
  color: #2243a6;
  padding: 0.4em 1em;
  position: relative;
  background-color: #fff;
  border: 0.2em solid #f7b400;
  border-radius: 0.4em;
  z-index: 2;
}
.health_promotion .specialCP_span h3 .pi {
  color: #e66d80;
}
.health_promotion .specialCP_span h3 .bl {
  color: #2243a1;
}
.health_promotion .specialCP_span h3 .gr {
  color: #80ba23;
}
.health_promotion .specialCP_span h3 .ye {
  color: #f2af00;
}
.health_promotion .specialCP_span:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: -1.3em;
  bottom: -0.5em;
  background-image: url("../../img/cp_ribon.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.4848484848em;
  height: 2.4242424242em;
}
.health_promotion .specialCP_span:after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -1.3em;
  bottom: -0.5em;
  background-image: url("../../img/cp_ribon.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: rotate(180deg);
  width: 2.4848484848em;
  height: 2.4242424242em;
}
.health_promotion .specialCP .date_span {
  text-align: center;
  font-size: 1.875em;
  font-weight: 900;
  color: #2243a6;
  margin-top: 1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP .date_span {
    font-size: 1.4em;
  }
}
.health_promotion .specialCP_contents {
  margin-top: 4em;
}
.health_promotion .specialCP_contents_inner {
  max-width: 63.75em;
  width: 90%;
  margin-inline: auto;
}
.health_promotion .specialCP_contents_inner_block {
  width: 100%;
  background-color: #fff;
  padding-block: 3em;
  border-radius: 2em;
}
.health_promotion .specialCP_contents_inner_block:nth-of-type(n + 2) {
  margin-top: 2.5em;
}
.health_promotion .specialCP_contents_inner_block_lead {
  text-align: center;
}
.health_promotion .specialCP_contents_inner_block_lead p {
  font-size: 1.25em;
  letter-spacing: 0.03em;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_lead p {
    font-size: 1em;
  }
}
.health_promotion .specialCP_contents_inner_block_lead p.bigLead {
  font-size: 2.6875em;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.4;
  color: #2243a6;
  margin-top: 0.2em;
  display: inline-block;
  padding: 0 0.3em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_lead p.bigLead {
    font-size: 1.7em;
  }
}
.health_promotion .specialCP_contents_inner_block_lead p.bigLead .ye_tie {
  position: relative;
}
.health_promotion .specialCP_contents_inner_block_lead p.bigLead .ye_tie::before {
  content: "";
  position: absolute;
  bottom: -0.3em;
  left: 0;
  width: 100%;
  height: 0.5em;
  background-color: #ffce33;
  z-index: -1;
  transform: translateY(-50%);
}
.health_promotion .specialCP_contents_inner_block_lead p.mt {
  margin-top: 0.5em;
}
.health_promotion .specialCP_contents_inner_block_lead.register p {
  font-size: 1em;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.health_promotion .specialCP_contents_inner_block_lead.register p.bigLead {
  font-size: 1.75em;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_lead.register p.bigLead {
    font-size: 1.4em;
  }
}
.health_promotion .specialCP_contents_inner_block_lead.register p.mt {
  margin-top: 1em;
}
.health_promotion .specialCP_contents_inner_block_step {
  display: flex;
  width: 90%;
  margin-inline: auto;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow {
  text-align: center;
  margin-top: 5.375em;
  width: 31.4%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step .stepFlow {
    width: 90%;
    margin-top: 2em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step .stepFlow:nth-of-type(n + 2) {
    margin-top: 6em;
  }
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow::after {
  content: "";
  position: absolute;
  top: 2em;
  right: -7%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.9375em 0 0.9375em 1.40625em;
  border-color: transparent transparent transparent #2243a6;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step .stepFlow::after {
    position: absolute;
    top: auto;
    bottom: -4.3em;
    left: 50%;
    border-width: 1.40625em 0 1.40625em 2.109375em;
    transform: translateX(-50%) rotate(90deg);
    -webkit-transform: translateX(-50%) rotate(90deg);
    -ms-transform: translateX(-50%) rotate(90deg);
    z-index: 2;
  }
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow.last::after {
  display: none;
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow.step4 {
  position: relative;
  z-index: 2;
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow.step4::after {
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  -webkit-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step .stepFlow.step4::after {
    top: -1em;
  }
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow.step4::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.21875em 0 1.21875em 1.828125em;
  border-color: transparent transparent transparent #fff;
  position: absolute;
  top: -0.8em;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  -webkit-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step .stepFlow.step4::before {
    top: -1em;
    border-width: 1.828125em 0 1.828125em 2.7421875em;
  }
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow .outfit {
  font-size: 2.75em;
  font-weight: 900;
  color: #2243a6;
  line-height: 1;
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow .outfit span {
  font-size: 1.2954545455em;
  color: #f2af00;
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow_lead {
  font-size: 1.4375em;
  font-weight: bold;
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow_img {
  margin-top: 1em;
}
.health_promotion .specialCP_contents_inner_block_step .stepFlow_comment {
  width: 9.875em;
  position: absolute;
  top: 63%;
  right: -13%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.health_promotion .specialCP_contents_inner_block_step.step4 {
  width: 90%;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
}
.health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow {
  border-top: 0.125em solid #2243a6;
  width: 100%;
  margin-top: 2em;
  padding-top: 3em;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow {
    margin-top: 3em;
  }
}
.health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow_lead02 {
  max-width: 40.625em;
  width: 100%;
  margin-inline: auto;
  margin-top: 0.7em;
}
.health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow_lead03 {
  text-align: center;
  margin-top: 2em;
}
.health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow_lead03 p {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow_lead03 p {
    font-size: 1em;
  }
}
.health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow_lead03 p .ye_bg {
  font-size: 1.5em;
  display: inline-block;
  background-color: #ffce33;
  padding: 0.2em 0.3em;
  line-height: 1.2;
  margin-right: 0.2em;
}
.health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow_lead04 {
  text-align: center;
  margin-top: 1em;
}
.health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow_lead04 p {
  font-size: 1.25em;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_step.step4 .stepFlow_lead04 p {
    font-size: 1.1em;
  }
}
.health_promotion .specialCP_contents_inner_block_present {
  width: 80%;
  margin-inline: auto;
  margin-top: 5em;
  position: relative;
}
.health_promotion .specialCP_contents_inner_block_present h4 {
  text-align: center;
  width: 100%;
}
.health_promotion .specialCP_contents_inner_block_present .present {
  position: relative;
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper {
  display: flex;
  flex-wrap: wrap;
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block {
  width: 100%;
  border-bottom: 0.25em dotted #2243a6;
}
@media screen and (max-width: 1280px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block {
    padding-bottom: 1em;
  }
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block:nth-of-type(n + 2) {
  width: 50%;
  border-bottom: none;
  border-right: 0.25em dotted #2243a6;
  padding-left: 1em;
}
@media screen and (max-width: 1280px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block:nth-of-type(n + 2) {
    width: 100%;
    padding-left: 0;
    border-right: none;
    border-bottom: 0.25em dotted #2243a6;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block:nth-of-type(n + 2) {
    flex-direction: column;
    justify-content: center;
  }
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block:nth-of-type(n + 2) .present_block_ttlBlock_icon {
  width: 7.4375em;
}
@media screen and (max-width: 1280px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block:nth-of-type(n + 2) .present_block_ttlBlock_icon {
    width: 6.4em;
  }
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block:nth-of-type(n + 2) h5 {
  font-size: 1.6em;
  line-height: 1.2;
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block:nth-of-type(2) {
  padding-left: 0;
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block:last-of-type {
  border-right: none;
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_ttlBlock {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 1em;
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_ttlBlock_icon {
  width: 9.4375em;
  margin-right: 1em;
  transform: translateY(0.8em);
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_ttlBlock_icon {
    width: 6.4em;
  }
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_ttlBlock h5 {
  font-size: 1.875em;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: #2243a6;
  text-align: left;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_ttlBlock h5 {
    font-size: 1.4em;
  }
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_ttlBlock h5 span {
  font-size: 0.65em;
  letter-spacing: 0.05em;
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_ttlBlock h5 span.ls {
  font-size: 1em;
  letter-spacing: -0.02em;
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_img.img01 {
  max-width: 45em;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_img.img01 {
    margin-bottom: 0;
    margin-top: 1em;
  }
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_img.img02 {
  max-width: 17.1875em;
  width: 100%;
  margin-inline: auto;
  margin-top: 2em;
}
@media screen and (max-width: 1280px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_img.img02 {
    max-width: 16em;
    margin-top: 1em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_img.img02 {
    margin-top: 0;
  }
}
.health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_img.img03 {
  max-width: 24em;
  width: 100%;
  margin-inline: auto;
  margin-top: 2em;
  transform: translateX(1em);
}
@media screen and (max-width: 1280px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_img.img03 {
    max-width: 19em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .specialCP_contents_inner_block_present .present_wrapper .present_block_img.img03 {
    max-width: 16em;
    transform: translateX(0em);
    margin-top: 0;
  }
}
.health_promotion .specialCP_contents_inner_block_present .note {
  text-align: right;
  font-size: 0.75em;
  margin-top: 1em;
  color: #000;
}
.health_promotion .specialCP_contents_inner_block_present .note.noteA {
  text-align: left;
  margin-bottom: 1em;
}
.health_promotion .specialCP_contents_inner_block.comment {
  position: relative;
}
.health_promotion .specialCP_contents_inner_block.comment::after {
  content: "";
  position: absolute;
  bottom: -2em;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3em 3em 0 3em;
  border-color: #fff transparent transparent transparent;
}
.health_promotion .lifeSpanLong .secBlock_leadArea p {
  text-align: center;
}
.health_promotion .lifeSpanLong_contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 63.25em;
  width: 90%;
  margin-inline: auto;
  margin-top: 3em;
}
@media screen and (max-width: 768px) {
  .health_promotion .lifeSpanLong_contents {
    justify-content: flex-start;
  }
}
.health_promotion .lifeSpanLong_contents_block {
  width: 30%;
}
.health_promotion .lifeSpanLong_contents_block:nth-of-type(n + 4) {
  margin-top: 2.5em;
}
@media screen and (max-width: 768px) {
  .health_promotion .lifeSpanLong_contents_block {
    width: 46%;
    margin-right: 8%;
  }
  .health_promotion .lifeSpanLong_contents_block:nth-of-type(2n) {
    margin-right: 0%;
  }
  .health_promotion .lifeSpanLong_contents_block:nth-of-type(n + 3) {
    margin-top: 2em;
  }
}
.health_promotion .lifeSpanLong_contents_block img {
  width: 100%;
}
.health_promotion .lifeSpanLong .contentsBtn {
  margin-top: 5em;
}
.health_promotion .pagination {
  margin-top: 2em;
  text-align: center;
}
.health_promotion .pagination-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}
.health_promotion .pagination-btn {
  padding: 0.5em 1em;
  border: 1px solid #2243a6;
  background: #fff;
  color: #2243a6;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9em;
  min-width: 2.5em;
  text-decoration: none;
  display: inline-block;
}
.health_promotion .pagination-btn:hover {
  background: #2243a6;
  color: #fff;
}
.health_promotion .pagination-btn.prev, .health_promotion .pagination-btn.next {
  min-width: auto;
  padding: 0.5em 1.5em;
}
.health_promotion .pagination-current {
  padding: 0.5em 1em;
  background: #2243a6;
  color: #fff;
  border-radius: 4px;
  font-size: 0.9em;
  min-width: 2.5em;
  display: inline-block;
  text-align: center;
}
.health_promotion .pagination-ellipsis {
  padding: 0.5em 0.5em;
  color: #2243a6;
  font-size: 0.9em;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .health_promotion .pagination {
    margin-top: 1.5em;
  }
  .health_promotion .pagination-inner {
    gap: 0.3em;
  }
  .health_promotion .pagination-btn, .health_promotion .pagination-current {
    padding: 0.4em 0.8em;
    font-size: 1em;
    min-width: 2em;
  }
  .health_promotion .pagination-btn.prev, .health_promotion .pagination-btn.next {
    padding: 0.5em;
    font-size: 0.9em;
  }
}
.health_promotion .japan21 {
  padding-block: 3.5em 5.625em;
  background-color: #def776;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.5) 2px, transparent 2px), radial-gradient(circle, rgba(255, 255, 255, 0.5) 2px, transparent 2px);
  background-position: 0 4px, 6px 14px;
  background-size: 12px 20px;
}
.health_promotion .japan21 .secBlock_leadArea h2 {
  line-height: 1.3;
}
.health_promotion .japan21 .secBlock_leadArea h2 span {
  font-size: 0.7em;
}
.health_promotion .japan21 .secBlock_leadArea p {
  text-align: center;
}
.health_promotion .japan21_movie {
  width: 100%;
  margin-top: 3em;
}
.health_promotion .japan21_movie_iframeBlock {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.health_promotion .japan21_movie_iframeBlock iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.health_promotion .japan21_movie p {
  text-align: justify;
  font-size: 1.0625em;
  line-height: 1.8;
  margin-top: 3em;
}
.health_promotion .contentsAll_wrapper {
  margin-top: 5em;
}
.health_promotion .contentsAll_block:nth-of-type(n + 2) {
  margin-top: 9em;
}
.health_promotion .contentsAll_block_ttlArea {
  max-width: 75.9375em;
  width: 90%;
  margin: 0 auto;
}
.health_promotion .contentsAll_block_ttlArea .en {
  font-size: 3.75em;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .health_promotion .contentsAll_block_ttlArea .en {
    font-size: 2.75em;
  }
}
.health_promotion .contentsAll_block_ttlArea h3 {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2;
}
.health_promotion .contentsAll_block.events .contentsAll_block_ttlArea .en {
  color: #fa7337;
}
.health_promotion .contentsAll_block.events .contentsAll_block_ttlArea h3 {
  color: #fa7337;
}
.health_promotion .contentsAll_block.tool .contentsAll_block_ttlArea .en {
  color: #0b793d;
}
.health_promotion .contentsAll_block.tool .contentsAll_block_ttlArea h3 {
  color: #0b793d;
}
.health_promotion .contentsAll_block.tool .contentsAll_block_slideArea::before {
  background-color: #0b793d;
}
.health_promotion .contentsAll_block.tool .contentsAll_block_slideArea .slideItem {
  border-color: #0b793d;
}
.health_promotion .contentsAll_block.tool .contentsAll_block_slideArea .paginationWrap .swiper-button-prev:after,
.health_promotion .contentsAll_block.tool .contentsAll_block_slideArea .paginationWrap .swiper-button-next:after {
  color: #0b793d;
}
.health_promotion .contentsAll_block.tool .contentsAll_block_slideArea .contentsAll_block_btnArea a {
  background-color: #0b793d;
}
.health_promotion .contentsAll_block_slideArea {
  margin-top: 4em;
  position: relative;
}
.health_promotion .contentsAll_block_slideArea::after {
  content: "";
  background-image: url("../../img/content_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  z-index: 2;
  width: 100%;
  height: calc(100% + 3em);
  bottom: -3em;
  left: 0;
}
.health_promotion .contentsAll_block_slideArea::before {
  content: "";
  position: absolute;
  bottom: -3em;
  left: 0;
  width: 100%;
  height: 24.125em;
  background-color: #fa7337;
}
.health_promotion .contentsAll_block_slideArea .side-scroll-list-wrapper {
  position: relative;
  z-index: 3;
}
.health_promotion .contentsAll_block_slideArea .swiper-wrapper {
  align-items: stretch;
}
.health_promotion .contentsAll_block_slideArea .swiper-slide {
  width: 31.875em;
}
@media screen and (max-width: 768px) {
  .health_promotion .contentsAll_block_slideArea .swiper-slide {
    width: 21.875em;
  }
}
.health_promotion .contentsAll_block_slideArea a {
  display: block;
}
.health_promotion .contentsAll_block_slideArea .slideItem {
  border: 0.1875em solid #fa7337;
  border-radius: 1.25em;
  padding: 1em 1.5em 1.5em;
  background-color: #fff;
  transition-duration: 0.3s;
}
.health_promotion .contentsAll_block_slideArea .slideItem_thumbnail {
  width: 100%;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter {
  margin-top: 0.5em;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li {
  display: inline-block;
  font-size: 0.875em;
  position: relative;
  padding: 1em 3.5em 1em 0.8em;
  line-height: 1;
  font-size: 0.875em;
  font-weight: 900;
  color: #fff;
  border-radius: 0.4285714286em;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 1.5em;
  height: 1.5em;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.sport {
  background-color: #f6aa00;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.sport::after {
  width: 2em;
  height: 2.2em;
  background-image: url("../../img/search/icon01_on.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.eat {
  background-color: #ff8082;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.eat::after {
  width: 2em;
  height: 1.8em;
  background-image: url("../../img/search/icon02_on.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.noSmoking {
  background-color: #03af7a;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.noSmoking::after {
  width: 2em;
  height: 1.8em;
  background-image: url("../../img/search/icon03_on.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.sleepQuality {
  background-color: #990099;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.sleepQuality::after {
  width: 2em;
  height: 2em;
  background-image: url("../../img/search/icon04_on.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.healthCheck {
  background-color: #005aff;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.healthCheck::after {
  width: 2em;
  height: 2.1em;
  background-image: url("../../img/search/icon05_on.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.womansHealth {
  background-color: #4dc4ff;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.womansHealth::after {
  width: 2em;
  height: 2em;
  background-image: url("../../img/search/icon06_on.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.other {
  background-color: #989898;
}
.health_promotion .contentsAll_block_slideArea .slideItem_category .matter li.other::after {
  width: 2em;
  height: 1.8em;
  background-image: url("../../img/search/icon07_on.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.health_promotion .contentsAll_block_slideArea .slideItem_ttlArea {
  margin-top: 1em;
}
.health_promotion .contentsAll_block_slideArea .slideItem_ttlArea h4 {
  font-size: 1.375em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .health_promotion .contentsAll_block_slideArea .slideItem_ttlArea h4 {
    font-size: 1em;
  }
}
.health_promotion .contentsAll_block_slideArea .paginationWrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3em;
  margin-top: 2em;
  padding-bottom: 2em;
}
.health_promotion .contentsAll_block_slideArea .paginationWrap .swiper-pagination {
  position: relative;
  display: inline-block;
  width: auto;
}
.health_promotion .contentsAll_block_slideArea .paginationWrap .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  opacity: 1;
  border: 0.0625em solid #fff;
}
.health_promotion .contentsAll_block_slideArea .paginationWrap .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.health_promotion .contentsAll_block_slideArea .paginationWrap .swiper-button-next,
.health_promotion .contentsAll_block_slideArea .paginationWrap .swiper-button-prev {
  position: relative;
  width: 2.625em;
  height: 2.625em;
  border-radius: 50%;
  background-color: #fff;
  color: #fa7337;
  text-align: center;
  margin-top: -0.6em;
}
.health_promotion .contentsAll_block_slideArea .paginationWrap .swiper-button-prev {
  transform: rotate(180deg);
}
.health_promotion .contentsAll_block_slideArea .paginationWrap .swiper-button-next:after,
.health_promotion .contentsAll_block_slideArea .paginationWrap .swiper-button-prev:after {
  content: "→";
  font-size: 1.25em;
  font-weight: 900;
  line-height: 2.625em;
}
.health_promotion .contentsAll_block_btnArea {
  text-align: center;
  position: relative;
  z-index: 3;
  margin-top: 1em;
}
.health_promotion .contentsAll_block_btnArea a {
  display: inline-block;
  font-size: 1.125em;
  font-weight: 900;
  color: #fff;
  border: 0.125em solid #fff;
  border-radius: 3em;
  padding: 0.8em 1em;
  letter-spacing: 0.2em;
  background-color: #fa7337;
}
@media screen and (max-width: 768px) {
  .health_promotion .contentsAll_block_btnArea a {
    padding: 0.8em 4em;
  }
}
.health_promotion .eventSearch_result {
  padding-block: 2.75em 0;
  margin-top: 1em;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.health_promotion .eventSearch_result.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.health_promotion .eventSearch_result_inner {
  max-width: 62.5em;
  width: 90%;
  margin: 0 auto;
}
.health_promotion .eventSearch_result_title {
  text-align: center;
  margin-bottom: 2.5em;
}
.health_promotion .eventSearch_result_title h2 {
  font-size: 2.25em;
  font-weight: 900;
  color: #2243a6;
  margin: 0;
  letter-spacing: 0.1em;
}
.health_promotion .eventSearch_result_title h2 #search_result_count {
  font-family: "Oswald", sans-serif;
  font-size: 1.8em;
  line-height: 1;
  margin-right: 0.05em;
  letter-spacing: 0.05em;
  color: #fac419;
  text-shadow: 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6, 0 0 3px #2243a6;
}
.health_promotion .eventSearch_result_note {
  margin-top: 1em;
  font-size: 0.75em;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventSearch_result_note {
    margin-top: 2em;
  }
}
.health_promotion .search_result_item {
  position: relative;
  margin-top: 4em;
  margin-bottom: 1.5em;
  opacity: 0;
  transform: translateY(2em);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.health_promotion .search_result_item.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.health_promotion .search_result_item .search_result_legion {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-30%, -30%);
  -webkit-transform: translate(-30%, -30%);
  -ms-transform: translate(-30%, -30%);
  z-index: 2;
}
.health_promotion .search_result_item .search_result_legion p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.6em;
  height: 4.6em;
  border-radius: 50%;
  background-color: #222f8e;
  color: #fff;
  font-size: 0.95em;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_legion {
    top: -2%;
    transform: translate(-12%, -40%);
    -webkit-transform: translate(-12%, -40%);
    -ms-transform: translate(-12%, -40%);
  }
}
.health_promotion .search_result_item .search_result_fee {
  position: absolute;
  top: -2.25em;
  right: 0;
  z-index: -1;
}
.health_promotion .search_result_item .search_result_fee p {
  background-color: #222f8e;
  color: #fff;
  font-size: 0.9em;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.5em 1.4em 3.5em;
  border-radius: 0.6em 0.6em 0 0;
}
.health_promotion .search_result_item .search_result_fee.fee_paid p {
  background-color: #e8383d;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_fee {
    top: -2em;
  }
  .health_promotion .search_result_item .search_result_fee p {
    font-size: 0.8em;
  }
}
.health_promotion .search_result_item .search_result_content {
  background-color: #fff;
  border: 0.25em solid #222f8e;
  border-radius: 1.5em;
  padding: 2.2em 2.4em 2em;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_content {
    padding: 2em 1.2em 1.6em;
  }
}
.health_promotion .search_result_item .search_result_content .search_result_matters {
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  font-weight: bold;
  color: #fff;
  padding: 0.6em 3em 0.6em 0.6em;
  border-radius: 0.4em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon {
    font-size: 0.8em;
  }
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.sport {
  background-color: #f6aa00;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.sport::after {
  content: "";
  position: absolute;
  font-size: 0.8em;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../../img/search/icon01_on.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.25em;
  height: 2.4166666667em;
  z-index: 1;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.eat {
  background-color: #ff8082;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.eat::after {
  content: "";
  position: absolute;
  font-size: 0.8em;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../../img/search/icon02_on.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.25em;
  height: 1.9083333333em;
  z-index: 1;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.nosmoking {
  background-color: #03af7a;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.nosmoking::after {
  content: "";
  position: absolute;
  font-size: 0.7em;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../../img/search/icon03_on.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.5833333333em;
  height: 2.2083333333em;
  z-index: 1;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.sleeping {
  background-color: #990099;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.sleeping::after {
  content: "";
  position: absolute;
  font-size: 0.7em;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../../img/search/icon04_on.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.4833333333em;
  height: 2.2083333333em;
  z-index: 1;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.check {
  background-color: #005aff;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.check::after {
  content: "";
  position: absolute;
  font-size: 0.7em;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../../img/search/icon05_on.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.3083333333em;
  height: 2.5666666667em;
  z-index: 1;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.womanHealth {
  background-color: #4dc4ff;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.womanHealth::after {
  content: "";
  position: absolute;
  font-size: 0.7em;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../../img/search/icon06_on.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 2.3333333333em;
  height: 2.3333333333em;
  z-index: 1;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.other {
  background-color: #989898;
}
.health_promotion .search_result_item .search_result_content .search_result_matters .matter_icon.other::after {
  content: "";
  position: absolute;
  font-size: 0.7em;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background-image: url(../../img/search/icon07_on.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
  width: 2.5833333333em;
  height: 2.3em;
}
.health_promotion .search_result_item .search_result_content .search_result_title {
  font-size: 1.6em;
  font-weight: 900;
  color: #2243a6;
  margin: 0.55em 0 0;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_content .search_result_title {
    font-size: 1.35em;
  }
}
.health_promotion .search_result_item .search_result_content .search_result_details {
  margin-top: 0.8em;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_main_item {
  display: flex;
  align-items: flex-start;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_main_item:nth-of-type(n + 2) {
  margin-top: 0.6em;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_main_item_title {
  font-size: 1em;
  color: #2243a6;
  font-weight: bold;
  flex-shrink: 0;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_main_item_content {
  font-weight: bold;
  overflow-wrap: anywhere;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_info {
  margin-top: 1.2em;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_content .search_result_details .search_result_info {
    margin-top: 1.5em;
  }
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_info_item {
  display: flex;
  align-items: stretch;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_info_item:nth-of-type(n + 2) {
  margin-top: 0.6em;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_info_item_title {
  font-size: 1em;
  width: 14%;
  color: #2243a6;
  font-weight: bold;
  border: 0.1em solid #2243a6;
  text-align: center;
  padding-block: 0.2em;
  border-radius: 0.4em;
  margin-right: 2%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 1280px) {
  .health_promotion .search_result_item .search_result_content .search_result_details .search_result_info_item_title {
    width: 17%;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_content .search_result_details .search_result_info_item_title {
    width: 29%;
    letter-spacing: 0;
  }
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_info_item_content {
  font-size: 1em;
  font-weight: bold;
  overflow-wrap: anywhere;
  align-self: center;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_info_item.item_link {
  align-items: stretch;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_info .search_result_ages {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
  align-items: center;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_info .search_result_ages li {
  background-color: #222f8e;
  color: #fff;
  font-size: 0.9em;
  font-weight: bold;
  letter-spacing: 0.02em;
  padding: 0.4em 0.8em;
  border-radius: 0.3em;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_link {
  margin-top: 0.2em;
  font-weight: bold;
  overflow-wrap: anywhere;
  align-self: center;
}
.health_promotion .search_result_item .search_result_content .search_result_details .search_result_link a {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  color: #2243a6;
}
.health_promotion .search_result_item .search_result_content .search_result_cptool {
  display: flex;
  justify-content: flex-end;
  margin-top: -2em;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_content .search_result_cptool {
    margin-top: 2em;
    justify-content: center;
  }
}
.health_promotion .search_result_item .search_result_content .search_result_cptool img {
  width: 11.625em;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_item .search_result_content .search_result_cptool img {
    width: 60%;
  }
}
.health_promotion .search_result_no {
  text-align: center;
  padding: 3em;
  background-color: #f8f9fa;
  border-radius: 1em;
  border: 0.125em solid #e9ecef;
  opacity: 0;
  transform: translateY(2em);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.health_promotion .search_result_no.fade-in {
  opacity: 1;
  transform: translateY(0);
}
.health_promotion .search_result_no p {
  font-size: 1.25em;
  color: #6c757d;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .health_promotion .search_result_no p {
    font-size: 1em;
  }
}
.health_promotion .womanHealthWeekForm {
  margin-top: 0;
  background-color: #f5f5f5;
}
.health_promotion .womanHealthWeekForm .secTitle h3 {
  font-size: 1.75em;
}
.health_promotion .contactArea {
  box-shadow: 0.3em 0.3em 1em rgba(0, 0, 0, 0.3);
  margin-top: 2.5em;
}
.health_promotion .contactArea .contact {
  padding-block: 4.375em 3.75em;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.health_promotion .contactArea .contact .section_inner {
  max-width: 46.875em;
  width: 90%;
  margin: 0 auto;
}
.health_promotion .contactArea .contact .form .form_area {
  display: block;
  border: none;
}
.health_promotion .contactArea .contact .form label {
  justify-content: flex-start;
  width: 100%;
  color: #4d4d4d;
  font-weight: 400;
}
.health_promotion .contactArea .contact .form label span {
  margin-left: 1em;
}
.health_promotion .contactArea .contact .form label.form_acceptance_area {
  justify-content: center;
}
.health_promotion .contactArea .contact .form .form_input_area {
  width: 100%;
  margin-top: 0.6em;
}
.health_promotion .contactArea .contact .form .form_input_area textarea {
  height: 7em;
  width: 100%;
  background: #f2f2f2;
  padding: 1.25em 0.938em;
  color: #4d4d4d;
  font-size: 1em;
  letter-spacing: 0.06em;
  border-radius: 0.5em;
}
.health_promotion .contactArea .contact .form .form_input_area textarea::placeholder {
  color: #999;
  font-size: 0.8em;
}
.health_promotion .contactArea .contact .form .form_input_area.form_confirm_area {
  padding: 1em;
  background-color: #f2f2f2;
  border-radius: 1em;
}
.health_promotion .contactArea .contact .form input[type=text] {
  border-radius: 0.5em;
}
.health_promotion .contactArea .contact .form .form_privacy {
  padding-top: 2em;
  margin-top: 2em;
}
.health_promotion .contactArea .contact .form .form_privacy .form_privacy_title {
  margin-top: 0;
}
.health_promotion .contactArea .contact .contact_paragraph {
  text-align: center;
  margin-top: 2em;
  line-height: 1.8;
}
.health_promotion .contactArea .contact .form_button {
  cursor: pointer;
}
.health_promotion .contactArea .contact .form_privacy_note {
  font-size: 0.75em;
  margin-top: 3em;
}
.health_promotion .floating_campaign {
  position: fixed;
  right: 1.5em;
  bottom: 13em;
  width: 17em;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .health_promotion .floating_campaign {
    width: 40vw;
    right: 2vw;
    bottom: 32vw;
  }
}
.health_promotion .floating_campaign a {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border: 0.24em solid #2243a1;
  border-radius: 0.8em;
  box-shadow: 0 0.16em 0 0 #2243a1;
  overflow: hidden;
}
.health_promotion .floating_campaign_thumb {
  display: block;
}
.health_promotion .floating_campaign_thumb img {
  width: 100%;
  display: block;
}
.health_promotion .floating_campaign_txt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  text-align: center;
  font-size: 1em;
  font-weight: 900;
  line-height: 1.1;
  color: #2243a1;
  padding: 0.6em 0.4em 0.7em;
}
.health_promotion .floating_campaign_txt::after {
  content: "▶";
  flex-shrink: 0;
  font-size: 0.6em;
  width: 2.1em;
  height: 2.1em;
  border-radius: 50%;
  background-color: #2243a1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.15em;
}
.health_promotion .floating_form {
  position: fixed;
  right: 1.5em;
  bottom: 4.5em;
  width: 17em;
  z-index: 101;
}
@media screen and (max-width: 768px) {
  .health_promotion .floating_form {
    width: 40vw;
    right: 2vw;
    bottom: 8vw;
  }
}
.health_promotion .floating_form a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 6.5em;
  position: relative;
  z-index: 1;
  background-color: #fff;
  border: 0.24em solid #2243a1;
  border-radius: 0.8em;
  box-shadow: 0 0.32em 0 0 #2243a1;
  overflow: hidden;
  padding: 0.8em 1em;
}
@media screen and (max-width: 768px) {
  .health_promotion .floating_form a {
    min-height: 5em;
  }
}
.health_promotion .floating_form_icon {
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 5.5em;
}
.health_promotion .floating_form_icon img {
  width: 100%;
  display: block;
}
.health_promotion .floating_form_txt {
  position: relative;
  text-align: center;
  font-size: 1.5926em;
  font-weight: 900;
  line-height: 1.15;
  color: #2243a1;
}
.health_promotion .floating_campaign .deleteBtn,
.health_promotion .floating_form .deleteBtn {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.75em;
  z-index: 2;
  cursor: pointer;
  transition-duration: 0.3s;
  background: none;
  border: none;
  padding: 0;
}
.health_promotion .floating_campaign .deleteBtn img,
.health_promotion .floating_form .deleteBtn img {
  width: 100%;
  display: block;
}
.health_promotion .floating_campaign .deleteBtn:hover,
.health_promotion .floating_form .deleteBtn:hover {
  opacity: 0.6;
}

.movie_note {
  font-size: 0.75em;
  margin-top: 2em;
}

.cpArea .cpArea_inner {
  max-width: 46.9375em;
  width: 90%;
  margin: 0 auto;
}
.cpArea .cpArea_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  text-align: center;
  font-size: 2.8125em;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #2243a1;
}
@media screen and (max-width: 768px) {
  .cpArea .cpArea_ttl {
    font-size: 2.2em;
  }
}
.cpArea .cpArea_ttl::before, .cpArea .cpArea_ttl::after {
  content: "";
  flex-shrink: 0;
  width: 1.1778em;
  height: 1.2889em;
  margin: 0;
  background-image: url("../../img/cp_ttl_slash.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.cpArea .cpArea_ttl::after {
  transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
}
.cpArea .cpArea_card {
  margin-top: 1.5em;
}
.cpArea .cpArea_card a {
  display: block;
  background-color: #fff;
  border: 4px solid #2243a1;
  border-radius: 0.9375em;
  box-shadow: 0 4px 0 0 #2243a1;
  overflow: hidden;
}
.cpArea .cpArea_card_img img {
  width: 100%;
  display: block;
}
.cpArea .cpArea_card_txt {
  padding: 0.5em 0.5em 0.6em;
  text-align: center;
}
.cpArea .cpArea_card_txt span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-size: 1.5625em;
  font-weight: 900;
  color: #2243a1;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .cpArea .cpArea_card_txt span {
    font-size: 1.25em;
  }
}
.cpArea .cpArea_card_txt span::after {
  content: "▶";
  flex-shrink: 0;
  font-size: 0.44em;
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background-color: #2243a1;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.15em;
}

.pokemonBnr {
  margin-top: 3em;
}
.pokemonBnr .pokemonBnr_inner {
  max-width: 50.25em;
  width: 90%;
  margin: 0 auto;
  background-color: #d9d9d9;
  aspect-ratio: 804/496;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pokemonBnr .pokemonBnr_placeholder {
  font-size: 2.8125em;
  font-weight: 900;
  text-align: center;
  color: #2243a1;
}
@media screen and (max-width: 768px) {
  .pokemonBnr .pokemonBnr_placeholder {
    font-size: 2em;
  }
}

.japan21Card {
  margin-top: 4em;
}
.japan21Card .japan21Card_inner {
  max-width: 46.9375em;
  width: 90%;
  margin: 0 auto;
}
.japan21Card .japan21Card_link {
  display: block;
  background-color: #fff;
  border: 4px solid #2243a1;
  border-radius: 0.9375em;
  box-shadow: 0 4px 0 0 #2243a1;
  overflow: hidden;
}
.japan21Card .japan21Card_ttl {
  display: flex;
  justify-content: center;
  padding: 2.125em 1em;
}
.japan21Card .japan21Card_ttl img {
  width: 73.2%;
  max-width: 34.375em;
}
.japan21Card .japan21Card_btm {
  background-color: #2243a1;
  padding-block: 0.5em;
  text-align: center;
}
.japan21Card .japan21Card_btm span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  font-size: 1.5625em;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .japan21Card .japan21Card_btm span {
    font-size: 1.25em;
  }
}
.japan21Card .japan21Card_btm span::after {
  content: "▶";
  flex-shrink: 0;
  font-size: 0.44em;
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background-color: #fff;
  color: #2243a1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0.15em;
}

.shokuseikatsu .shokuseikatsu_bnrArea {
  margin-top: 3em;
}
.shokuseikatsu .shokuseikatsu_bnrArea a {
  display: block;
}
.shokuseikatsu .shokuseikatsu_bnrArea img {
  width: 100%;
  display: block;
  border: 1px solid #9c9c9c;
}

.event2026 {
  max-width: 60em;
  width: 90%;
  margin: 5em auto 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .event2026 {
    width: 88%;
    margin-top: 3em;
  }
}
.event2026 .event2026_head {
  text-align: center;
  margin-bottom: 1.8em;
}
.event2026 .event2026_head_en {
  font-family: "Outfit", sans-serif;
  font-size: 3.5em;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #2243a6;
}
@media screen and (max-width: 768px) {
  .event2026 .event2026_head_en {
    font-size: 2.6em;
  }
}
.event2026 .event2026_head_ja {
  font-size: 1.25em;
  font-weight: 700;
  color: #333;
  margin-top: 0.4em;
}
@media screen and (max-width: 768px) {
  .event2026 .event2026_head_ja {
    font-size: 1.0625em;
  }
}

.eventInfo.event2026 .eventInfo_card {
  background-color: #fff;
  border: 1px solid #d6deea;
  border-radius: 0.75em;
  padding: 2.5em;
}
@media screen and (max-width: 768px) {
  .eventInfo.event2026 .eventInfo_card {
    padding: 1.5em 1.2em;
  }
}
.eventInfo.event2026 .eventInfo_dateVenue {
  display: flex;
  gap: 1.5em;
  margin-bottom: 2em;
}
@media screen and (max-width: 768px) {
  .eventInfo.event2026 .eventInfo_dateVenue {
    flex-direction: column;
    gap: 1.2em;
  }
}
.eventInfo.event2026 .eventInfo_dateVenue_block {
  flex: 1;
  text-align: center;
}
.eventInfo.event2026 .eventInfo_dateVenue_label {
  background-color: #2243a6;
  color: #fff;
  font-size: 1.0625em;
  font-weight: 700;
  border-radius: 2em;
  padding: 0.4em 1em;
}
.eventInfo.event2026 .eventInfo_dateVenue_text {
  font-size: 1.25em;
  font-weight: 700;
  color: #222;
  margin-top: 0.7em;
}
@media screen and (max-width: 768px) {
  .eventInfo.event2026 .eventInfo_dateVenue_text {
    font-size: 1.125em;
  }
}
.eventInfo.event2026 .eventInfo_list {
  display: grid;
  grid-template-columns: 8em 1fr;
}
@media screen and (max-width: 768px) {
  .eventInfo.event2026 .eventInfo_list {
    display: block;
  }
}
.eventInfo.event2026 .eventInfo_list_label {
  font-weight: 700;
  color: #2243a6;
  font-size: 0.9375em;
  padding: 1.5em 1em 1.5em 0;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .eventInfo.event2026 .eventInfo_list_label {
    padding: 1em 0 0.3em;
  }
}
.eventInfo.event2026 .eventInfo_list_body {
  font-size: 0.9375em;
  line-height: 1.8;
  color: #333;
  padding: 1.5em 0;
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 768px) {
  .eventInfo.event2026 .eventInfo_list_body {
    border-top: none;
    padding: 0 0 1.2em;
  }
}
.eventInfo.event2026 .eventInfo_program:nth-of-type(n + 2) {
  margin-top: 1.5em;
}
.eventInfo.event2026 .eventInfo_program_ttl {
  font-size: 1.0625em;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
}
.eventInfo.event2026 .eventInfo_program_badge {
  display: inline-block;
  background-color: #2243a6;
  color: #fff;
  font-size: 0.6875em;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0.3em;
  padding: 0.3em 0.8em;
  margin-right: 0.6em;
  vertical-align: 0.12em;
  white-space: nowrap;
}
.eventInfo.event2026 .eventInfo_program_desc {
  margin-top: 0.5em;
}
.eventInfo.event2026 .eventInfo_program_list {
  margin-top: 0.5em;
}
.eventInfo.event2026 .eventInfo_program_list li {
  position: relative;
  padding-left: 1.4em;
}
.eventInfo.event2026 .eventInfo_program_list li:nth-of-type(n + 2) {
  margin-top: 0.2em;
}
.eventInfo.event2026 .eventInfo_program_list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0.25em;
  color: #2243a6;
  font-size: 0.8em;
}
.eventInfo.event2026 .eventInfo_cast {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6em;
}
.eventInfo.event2026 .eventInfo_cast_tag {
  color: #fff;
  font-weight: 700;
  font-size: 0.875em;
  border-radius: 2em;
  padding: 0.4em 1.2em;
}
.eventInfo.event2026 .eventInfo_cast_tag.is-ambassador {
  background-color: #f7b400;
}
.eventInfo.event2026 .eventInfo_cast_tag.is-guest {
  background-color: #e66d80;
}
.eventInfo.event2026 .eventInfo_cast_tag.is-mc {
  background-color: #2243a6;
}

.eventEntry.event2026 {
  margin-top: 4em;
}
.eventEntry.event2026 .eventEntry_form {
  background-color: #fff;
  border: 1px solid #d6deea;
  border-radius: 0.75em;
  padding: 0.5em 2.5em 2.5em;
}
@media screen and (max-width: 768px) {
  .eventEntry.event2026 .eventEntry_form {
    padding: 0.5em 1.2em 1.5em;
  }
}
.eventEntry.event2026 .contact_note {
  margin: 1.2em 0 0.5em;
}
.eventEntry.event2026 .contact_note p {
  font-size: 0.8125em;
  color: #4d4d4d;
}
.eventEntry.event2026 .required {
  display: inline-block;
  font-size: 0.6875em;
  color: #fff;
  background-color: #e66d80;
  border-radius: 1.2em;
  padding: 0.25em 0.7em;
  white-space: nowrap;
  margin-left: 0.5em;
}
.eventEntry.event2026 .form_area {
  display: flex;
  align-items: flex-start;
  border-top: 1px solid #e0e0e0;
  padding-block: 1.5em;
  column-gap: 1em;
}
@media screen and (max-width: 768px) {
  .eventEntry.event2026 .form_area {
    flex-direction: column;
    align-items: stretch;
  }
}
.eventEntry.event2026 .form_area > label {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 12em;
  padding-top: 0.4em;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .eventEntry.event2026 .form_area > label {
    width: 100%;
    padding-top: 0;
    margin-bottom: 0.7em;
  }
}
.eventEntry.event2026 .form_label_note {
  width: 100%;
  margin-top: 0.3em;
  font-size: 0.75em;
  font-weight: 400;
  color: #4d4d4d;
}
.eventEntry.event2026 .form_input_area {
  flex: 1;
  min-width: 0;
}
@media screen and (max-width: 768px) {
  .eventEntry.event2026 .form_input_area {
    width: 100%;
  }
}
.eventEntry.event2026 input[type=text],
.eventEntry.event2026 select {
  background-color: #f2f2f2;
  border-radius: 0.4em;
  padding: 0.9em 0.8em;
  color: #4d4d4d;
  font-size: 1em;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
.eventEntry.event2026 input[type=text].error,
.eventEntry.event2026 select.error {
  border: 1px solid red;
}
.eventEntry.event2026 .form_area_name {
  display: flex;
  gap: 1.2em;
}
@media screen and (max-width: 768px) {
  .eventEntry.event2026 .form_area_name {
    gap: 0.8em;
  }
}
.eventEntry.event2026 .form_area_name .form_name {
  flex: 1;
  min-width: 0;
}
.eventEntry.event2026 .form_area_name .form_name_area {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.eventEntry.event2026 .form_area_name .form_name_area_label {
  flex-shrink: 0;
}
.eventEntry.event2026 .form_address_row {
  display: flex;
  align-items: flex-start;
  gap: 0.8em;
}
.eventEntry.event2026 .form_address_row:nth-of-type(n + 2) {
  margin-top: 0.8em;
}
@media screen and (max-width: 768px) {
  .eventEntry.event2026 .form_address_row {
    flex-direction: column;
    gap: 0.3em;
  }
}
.eventEntry.event2026 .form_address_label {
  flex-shrink: 0;
  width: 6em;
  padding-top: 0.9em;
  font-size: 0.875em;
  color: #333;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .eventEntry.event2026 .form_address_label {
    padding-top: 0;
  }
}
.eventEntry.event2026 .form_address_field {
  flex: 1;
  min-width: 0;
}
.eventEntry.event2026 .form_address_field input.secondary {
  width: 16em;
}
@media screen and (max-width: 768px) {
  .eventEntry.event2026 .form_address_field input.secondary {
    width: 100%;
  }
}
.eventEntry.event2026 .form_birth {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}
.eventEntry.event2026 .form_birth_unit {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.eventEntry.event2026 .form_birth_unit input {
  width: 5em;
}
.eventEntry.event2026 .form_privacy {
  border-top: 1px solid #e0e0e0;
  padding-top: 1.5em;
  margin-top: 0.5em;
  text-align: center;
}
.eventEntry.event2026 .form_privacy_paragraph {
  font-size: 0.875em;
  color: #4d4d4d;
}
.eventEntry.event2026 .form_privacy_paragraph a {
  color: #2243a6;
  text-decoration: underline;
}
.eventEntry.event2026 .form_acceptance_area {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-top: 1em;
  cursor: pointer;
}
.eventEntry.event2026 .form_acceptance_area input {
  width: auto;
}
.eventEntry.event2026 .error {
  color: red;
  font-size: 0.8125em;
  margin-top: 0.3em;
}
.eventEntry.event2026 .form_acceptance_error {
  text-align: center;
}
.eventEntry.event2026 .form_button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15em;
  height: 3.4em;
  margin: 2.2em auto 0;
  background-color: #2243a6;
  color: #fff;
  font-size: 1.125em;
  font-weight: 700;
  border-radius: 2em;
  cursor: pointer;
  transition: opacity 0.3s;
}
.eventEntry.event2026 .form_button::after {
  content: "→";
  margin-left: 0.5em;
}
.eventEntry.event2026 .form_button:hover {
  opacity: 0.85;
}