@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;
}

.oogiri_cp {
  font-family: "M PLUS 1p", sans-serif;
  letter-spacing: 0;
  padding-bottom: 6em;
  overflow-x: clip;
  margin: 0;
}
.oogiri_cp .ogMv img {
  width: 100%;
}
.oogiri_cp .ogIntro {
  position: relative;
  padding: 5.875em 5% 5.8125em;
  text-align: center;
}
.oogiri_cp .ogIntro_txt {
  position: relative;
  z-index: 1;
  font-size: 1.125em;
  font-weight: 800;
  line-height: 2.2223;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogIntro_txt {
    font-size: 1.05em;
    text-align: justify;
  }
}
.oogiri_cp .ogIntro_txt strong {
  font-size: 1.3889em;
  font-weight: 800;
  line-height: 1.6;
  color: #00479d;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogIntro_txt strong {
    font-size: 1.2em;
  }
}
.oogiri_cp .ogIntro_txt + .ogIntro_txt {
  margin-top: 2em;
}
.oogiri_cp .ogIntro_deco {
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogIntro_deco {
    opacity: 0.5;
  }
}
.oogiri_cp .ogIntro_deco--1 {
  left: 0;
  top: 2.75em;
  width: 14.375em;
}
.oogiri_cp .ogIntro_deco--2 {
  right: 0;
  top: 13.625em;
  width: 13.6875em;
}
.oogiri_cp .ogIntro_deco--3 {
  left: -0.875em;
  top: 24.75em;
  width: 5.8125em;
}
.oogiri_cp .ogHow {
  background-color: #fffddb;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 208, 80, 0.1) 0 0.884em, transparent 0.884em 3.3594em);
  padding: 5.9375em 5% 7.4375em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogHow {
    padding: 3.9375em 5% 4.4375em;
  }
}
.oogiri_cp .ogHow_ttl {
  display: flex;
  justify-content: center;
}
.oogiri_cp .ogHow_ttl span {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.2084em;
  padding: 0.3em 1.5em;
  background: #00479d;
  border-radius: 0.8334em;
  font-size: 1.5em;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
}
.oogiri_cp .ogHow_ttl span::after {
  content: "";
  position: absolute;
  bottom: -0.6875em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  border-left: 0.5834em solid transparent;
  border-right: 0.5834em solid transparent;
  border-top: 0.7084em solid #00479d;
}
.oogiri_cp .ogHow_ttl span em {
  font-style: normal;
  font-size: 1.9532em;
  line-height: 1;
  color: #ffed4e;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogHow_ttl span {
    display: block;
    min-height: auto;
    padding: 0.6em 1em 0.7em;
    text-align: center;
    font-size: 1.25em;
  }
  .oogiri_cp .ogHow_ttl span em {
    vertical-align: -0.1em;
  }
}
.oogiri_cp .ogHow_lead {
  margin-top: 2em;
  font-size: 1.125em;
  font-weight: 800;
  line-height: 2.2223;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogHow_lead {
    font-size: 1em;
    text-align: justify;
    line-height: 2;
  }
}
.oogiri_cp .ogHow_lead_odai {
  color: #60be25;
}
.oogiri_cp .ogHow_lead_photo {
  color: #2243a1;
}
.oogiri_cp .ogHow_lead_note {
  max-width: 56em;
  width: 90%;
  margin: 1em auto 0;
  font-size: 0.875em;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogHow_lead_note {
    width: 100%;
  }
}
.oogiri_cp .ogHow_btns {
  display: flex;
  justify-content: center;
  gap: 2.0625em;
  margin-top: 1.625em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogHow_btns {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
}
.oogiri_cp .ogHow_btn {
  position: relative;
  display: flex;
  justify-content: center;
  width: 21.7764em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogHow_btn {
    font-size: 1.15em;
    max-width: 100%;
  }
}
.oogiri_cp .ogHow_btn {
  height: 7.9269em;
  background: #fff;
  border: 6px solid #60be25;
  border-radius: 1.3063em;
  box-shadow: 0 3px 0 #60be25;
}
.oogiri_cp .ogHow_btn_label {
  width: 20.7336em;
  max-width: 92%;
  margin-top: 1em;
  align-self: flex-start;
}
.oogiri_cp .ogHow_btn_arrow {
  position: absolute;
  bottom: 0.35em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  border-left: 0.9375em solid transparent;
  border-right: 0.9375em solid transparent;
  border-top: 1.3579em solid #60be25;
}
.oogiri_cp .ogHow_btn--photo {
  border-color: #2243a1;
  box-shadow: 0 3px 0 #2243a1;
}
.oogiri_cp .ogHow_btn--photo .ogHow_btn_arrow {
  border-top-color: #2243a1;
}
.oogiri_cp .ogOdai {
  position: relative;
  background: #c3f3a5;
  padding: 4.25em 5% 0;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogOdai {
    padding-inline: 3.5%;
  }
}
.oogiri_cp .ogOdai_deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.oogiri_cp .ogOdai_deco_item {
  position: absolute;
}
.oogiri_cp .ogOdai_deco_item--01 {
  left: 2.4375em;
  top: 1.8125em;
  width: 8.9375em;
}
.oogiri_cp .ogOdai_deco_item--02 {
  left: 1.375em;
  top: 15.125em;
  width: 8.9375em;
}
.oogiri_cp .ogOdai_deco_item--03 {
  right: 0;
  top: 21.375em;
  width: 9.375em;
}
.oogiri_cp .ogOdai_deco_item--04 {
  right: 0;
  top: 46.25em;
  width: 13.1875em;
}
.oogiri_cp .ogOdai_deco_item--05 {
  left: 0;
  top: 58.5em;
  width: 8.6875em;
}
.oogiri_cp .ogOdai_deco_item--06 {
  left: 0;
  top: 104.8125em;
  width: 16.125em;
}
.oogiri_cp .ogOdai_deco_item--07 {
  left: 0;
  top: 146.9375em;
  width: 11.4375em;
}
.oogiri_cp .ogOdai_deco_item--08 {
  left: 2.25em;
  top: 215.125em;
  width: 19.5625em;
}
.oogiri_cp .ogOdai_deco_item--09 {
  right: 0;
  top: 175.4375em;
  width: 36.9375em;
}
.oogiri_cp .ogOdai_card {
  position: relative;
  z-index: 1;
  max-width: 64.375em;
  margin: 0 auto;
  background: #60be25;
  border-radius: 5.625em 5.625em 0 0;
  padding: 2.3125em 2.6875em 0;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogOdai_card {
    border-radius: 2.5em 2.5em 0 0;
    padding: 1em 1em 0;
  }
}
.oogiri_cp .ogOdai_card_inner {
  position: relative;
  background-color: #fffddb;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 208, 80, 0.1) 0 0.884em, transparent 0.884em 3.3594em);
  border-radius: 3.75em 3.75em 0 0;
  padding: 6.0625em 4.375em 6.6875em;
}
.oogiri_cp .ogOdai_card_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 33.75em;
  height: 3.5625em;
  background: #60be25;
  border-radius: 0 0 0.9375em 0.9375em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogOdai_card_inner {
    border-radius: 1.8em 1.8em 0 0;
    padding: 5em 4% 4em;
  }
  .oogiri_cp .ogOdai_card_inner::before {
    width: 60%;
    height: 2.5em;
  }
}
.oogiri_cp .ogOdai_head {
  text-align: center;
}
.oogiri_cp .ogOdai_ttl {
  position: relative;
  margin-top: -0.1875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogOdai_ttl {
    margin-top: 0.8em;
  }
}
.oogiri_cp .ogOdai_ttl img {
  position: relative;
  z-index: 1;
  width: 54.4375em;
  max-width: 100%;
}
.oogiri_cp .ogOdai_subcopy {
  margin-top: 0.5715em;
  font-size: 2.1875em;
  font-weight: 900;
  line-height: 1.15;
  color: #60be25;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogOdai_subcopy {
    font-size: 1.1em;
    margin-top: 1.2em;
  }
}
.oogiri_cp .ogRibbon {
  display: flex;
  justify-content: center;
  width: 29.3125em;
  max-width: 100%;
  margin: 0 auto;
}
.oogiri_cp .ogRibbon img {
  width: 100%;
}
.oogiri_cp .ogAbout {
  position: relative;
  width: 50.25em;
  max-width: 100%;
  margin: 2.9375em auto 0;
  background: #fff;
  border-radius: 1.875em;
  padding: 1.8125em 0 2.25em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogAbout {
    margin-top: 1.5em;
    padding-bottom: 0;
  }
}
.oogiri_cp .ogAbout_txtArea {
  position: relative;
  z-index: 1;
  width: 28.125em;
  margin-left: 2.9375em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogAbout_txtArea {
    width: auto;
    margin: 0 4%;
  }
}
.oogiri_cp .ogAbout_txt {
  font-size: 1.05em;
  font-weight: 700;
  line-height: 2.2223;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogAbout_txt {
    font-size: 0.9em;
    line-height: 1.8;
  }
}
.oogiri_cp .ogAbout_txt + .ogAbout_txt {
  margin-top: 0.2em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogAbout_txt + .ogAbout_txt {
    margin-top: 0.6em;
  }
}
.oogiri_cp .ogAbout_txt--green {
  color: #60be25;
}
.oogiri_cp .ogAbout_em {
  font-size: 1.3889em;
  font-weight: 700;
  line-height: 1.6;
  color: #60be25;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogAbout_em {
    font-size: 1.2em;
  }
}
.oogiri_cp .ogAbout_kirari {
  width: 4.3125em;
  vertical-align: -0.35em;
}
.oogiri_cp .ogAbout_imgArea {
  position: absolute;
  right: -1.5625em;
  bottom: 0;
  z-index: 0;
  width: 21.0625em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogAbout_imgArea {
    right: 0;
  }
}
.oogiri_cp .ogAbout_imgArea .ogAbout_bubble {
  position: absolute;
  top: -0.1875em;
  right: -0.8125em;
  width: 6.9375em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogAbout_imgArea {
    position: relative;
    width: 60%;
    margin: 1em auto 0;
  }
  .oogiri_cp .ogAbout_imgArea .ogAbout_bubble {
    top: 0.5em;
    right: -4%;
    bottom: auto;
    width: 34%;
  }
}
.oogiri_cp .u-marker {
  background-image: linear-gradient(transparent 58%, #ffed4e 58%);
}
.oogiri_cp .ogCloudTtl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25.125em;
  height: 5.5625em;
  margin: 0 auto;
  background: url("../../oogiri-cp/img/midashi_cloud_green.png") center/100% 100% no-repeat;
}
.oogiri_cp .ogCloudTtl span {
  font-size: 1.875em;
  font-weight: 700;
  color: #60be25;
}
.oogiri_cp .ogCloudTtl--photo {
  background-image: url("../../oogiri-cp/img/midashi_cloud.png");
}
.oogiri_cp .ogCloudTtl--photo span {
  color: #2243a1;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogCloudTtl {
    width: 100%;
  }
  .oogiri_cp .ogCloudTtl span {
    font-size: 1.4em;
  }
}
.oogiri_cp .ogSchedule .ogCloudTtl {
  margin-top: 4.125em;
  width: 28.4375em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSchedule .ogCloudTtl {
    width: 90%;
  }
}
.oogiri_cp .ogSchedule_list {
  display: flex;
  justify-content: center;
  gap: 3.125em;
  margin-top: 2.625em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSchedule_list {
    flex-direction: column;
    align-items: center;
    gap: 3em;
  }
}
.oogiri_cp .ogSchedule_item {
  position: relative;
  width: 11.625em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSchedule_item {
    font-size: 1.4em;
  }
}
.oogiri_cp .ogSchedule_item + .ogSchedule_item::before {
  content: "";
  position: absolute;
  left: -2.1563em;
  top: 4.6875em;
  border-top: 0.875em solid transparent;
  border-bottom: 0.875em solid transparent;
  border-left: 1.1875em solid #60be25;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSchedule_item + .ogSchedule_item::before {
    left: 50%;
    top: -2.2em;
    transform: translateX(-50%) rotate(90deg);
    -webkit-transform: translateX(-50%) rotate(90deg);
  }
}
.oogiri_cp .ogSchedule_card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 11.625em;
  background: #fff;
  border: 5px solid #60be25;
  border-radius: 0.9375em;
  box-shadow: 0 4px 0 #60be25;
  padding-top: 2.3125em;
}
.oogiri_cp .ogSchedule_card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2.3125em;
  background: #ffed4e;
  border-radius: 0.625em 0.625em 0 0;
}
.oogiri_cp .ogSchedule_ring {
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 7.8125em;
}
.oogiri_cp .ogSchedule_date {
  position: relative;
  font-size: 2.5em;
  font-weight: 900;
  line-height: 0.6;
  color: #60be25;
  text-align: center;
}
.oogiri_cp .ogSchedule_date .num {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 1.9em;
  line-height: 1;
}
.oogiri_cp .ogSchedule_date .unit {
  font-size: 1em;
}
.oogiri_cp .ogSchedule_date .unit--small {
  font-size: 0.75em;
}
.oogiri_cp .ogSchedule_date--period {
  font-size: 1.9375em;
  line-height: 1.3;
}
.oogiri_cp .ogSchedule_date--period .num {
  font-size: 1.5581em;
}
.oogiri_cp .ogSchedule_label {
  margin: 1.45em -0.6em 0;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
.oogiri_cp .ogSchedule_note {
  margin-top: 2.5em;
  font-size: 0.75em;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSchedule_note {
    font-size: 0.7em;
  }
}
.oogiri_cp .ogSchedule--photo .ogSchedule_item + .ogSchedule_item::before {
  border-left-color: #2243a1;
}
.oogiri_cp .ogSchedule--photo .ogSchedule_card {
  border-color: #2243a1;
  box-shadow: 0 4px 0 #2243a1;
}
.oogiri_cp .ogSchedule--photo .ogSchedule_date {
  color: #2243a1;
}
.oogiri_cp .ogSteps .ogCloudTtl {
  margin-top: 2.9375em;
}
.oogiri_cp .ogSteps_list {
  display: flex;
  justify-content: center;
  gap: 2.5em;
  margin-top: 3.875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_list {
    flex-direction: column;
    align-items: center;
    gap: 3.25em;
  }
}
.oogiri_cp .ogSteps_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 14.4375em;
  min-height: 18.9375em;
  background: #ffed4e;
  border-radius: 1.875em;
  padding: 4.2em 0.5em 0.8em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75em;
    width: 100%;
    height: auto;
    min-height: 11em;
    padding: 4.25em 1.25em 1.25em;
  }
}
.oogiri_cp .ogSteps_item + .ogSteps_item::before {
  content: "";
  position: absolute;
  left: -2.0938em;
  top: 8em;
  border-top: 1.1563em solid transparent;
  border-bottom: 1.1563em solid transparent;
  border-left: 1.6875em solid #60be25;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_item + .ogSteps_item::before {
    left: 50%;
    top: -2.45em;
    transform: translateX(-50%) rotate(90deg);
    -webkit-transform: translateX(-50%) rotate(90deg);
  }
}
.oogiri_cp .ogSteps_badge {
  position: absolute;
  top: 0.875em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_badge {
    left: 1.25em;
    transform: none;
    -webkit-transform: none;
  }
}
.oogiri_cp .ogSteps_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.25em;
  height: 2.5625em;
  background: #60be25;
  border-radius: 999px;
  color: #ffed4e;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.07em;
}
.oogiri_cp .ogSteps_badge .en {
  font-size: 1.75em;
  line-height: 1;
}
.oogiri_cp .ogSteps_badge .num {
  font-size: 2.1563em;
  line-height: 1;
}
.oogiri_cp .ogSteps_txt {
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_txt {
    text-align: left;
    flex: 1;
  }
}
.oogiri_cp .ogSteps_txt strong {
  font-size: 1.2em;
  font-weight: 800;
  color: #60be25;
}
.oogiri_cp .ogSteps_note {
  display: block;
  margin-block: 1em;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1.4;
  text-align: justify;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_note {
    margin-left: 0;
  }
}
.oogiri_cp .ogSteps_img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_img {
    align-items: center;
    margin-top: 0;
    padding-bottom: 0;
    flex-shrink: 0;
  }
}
.oogiri_cp .ogSteps_img img {
  width: 8.125em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_img img {
    width: 8.5em;
  }
}
.oogiri_cp .ogSteps_img--sns img {
  width: 9.5313em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_img--sns img {
    width: 8em;
  }
}
.oogiri_cp .ogSteps_img--sp img {
  width: 10.5313em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_img--sp img {
    width: 9em;
  }
}
.oogiri_cp .ogSteps_caution {
  width: 100%;
  max-width: 64.25em;
  margin: 2em auto 0;
  text-align: center;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1.6667;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogSteps_caution {
    font-size: 0.8em;
  }
}
.oogiri_cp .ogTerms {
  width: 100%;
  max-width: 64.25em;
  margin: 1.375em auto 0;
  text-align: left;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1.6667;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogTerms {
    font-size: 0.9em;
  }
}
.oogiri_cp .ogTerms a {
  color: inherit;
  text-decoration: underline;
}
.oogiri_cp .ogTerms_link {
  display: inline;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  color: #60be25;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  transition-duration: 0.3s;
}
.oogiri_cp .ogTerms_link:hover {
  opacity: 0.6;
}
.oogiri_cp .ogNoteBox--photo .ogTerms_link {
  color: #2243a1;
}
.oogiri_cp .ogPrize .ogCloudTtl {
  margin-top: 5.0625em;
}
.oogiri_cp .ogPrize_judge {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  margin-top: 2.375em;
  background-image: url("../../oogiri-cp/img/judge_laurel.svg");
  background-size: 40.5625em 5em;
  background-repeat: no-repeat;
  background-position: center;
  padding-block: 0.5em;
}
.oogiri_cp .ogPrize_judge_stamp {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.468em;
  font-weight: 700;
  color: #ffed4e;
  width: 3.1135em;
  height: 1.8853em;
}
.oogiri_cp .ogPrize_judge_stamp::before, .oogiri_cp .ogPrize_judge_stamp::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: -1;
  width: 1.8853em;
  height: 1.8853em;
  background: #60be25;
  border-radius: 50%;
}
.oogiri_cp .ogPrize_judge_stamp::before {
  left: 0;
}
.oogiri_cp .ogPrize_judge_stamp::after {
  right: 0;
}
.oogiri_cp .ogPrize_judge_txt {
  font-size: 2.5em;
  font-weight: 700;
  color: #60be25;
  margin-left: 0.2em;
}
.oogiri_cp .ogPrize_judge_txt--rest {
  margin-left: 0;
}
.oogiri_cp .ogPrize_judge--photo {
  background-image: url("../../oogiri-cp/img/chusen_lines.svg");
  background-size: 46.125em 4.9375em;
}
.oogiri_cp .ogPrize_judge--photo .ogPrize_judge_stamp::before,
.oogiri_cp .ogPrize_judge--photo .ogPrize_judge_stamp::after {
  background: #2243a1;
}
.oogiri_cp .ogPrize_judge--photo .ogPrize_judge_txt {
  color: #2243a1;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_judge {
    flex-wrap: wrap;
    row-gap: 0.25em;
    background-size: 100% 55%;
    background-position: center bottom;
    margin-top: 1.3em;
  }
  .oogiri_cp .ogPrize_judge_txt {
    font-size: 1.8em;
    white-space: nowrap;
    margin-bottom: -1em;
  }
  .oogiri_cp .ogPrize_judge_txt--rest {
    flex-basis: 100%;
    text-align: center;
  }
  .oogiri_cp .ogPrize_judge_stamp {
    font-size: 2.6em;
    flex-shrink: 0;
  }
}
.oogiri_cp .ogPrize_lead {
  margin-top: 1.5em;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_lead {
    margin-top: 3em;
    margin-inline: auto;
    font-size: 0.95em;
  }
}
.oogiri_cp .ogBadge {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 10.8375em;
  height: 11.1438em;
  padding-bottom: 1.4em;
  color: #60be25;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  text-align: center;
}
.oogiri_cp .ogBadge::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 100%;
  height: 5.375em;
  background: url("../../oogiri-cp/img/badge_ribbon_green.svg") center bottom/100% auto no-repeat;
}
.oogiri_cp .ogBadge::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 10em;
  height: 10em;
  background: url("../../oogiri-cp/img/badge_circle.svg") center/contain no-repeat;
}
.oogiri_cp .ogBadge_name {
  font-size: 1.6795em;
  letter-spacing: -0.08em;
  line-height: 1.2;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.1em;
  margin-bottom: 0.1em;
}
.oogiri_cp .ogBadge_count {
  font-size: 1.3875em;
  line-height: 1.2;
}
.oogiri_cp .ogBadge_count .num {
  font-size: 1.5264em;
}
.oogiri_cp .ogBadge--photo {
  color: #2243a1;
}
.oogiri_cp .ogBadge--photo::before {
  background-image: url("../../oogiri-cp/img/badge_ribbon.svg");
}
.oogiri_cp .ogBadge--photo .ogBadge_count {
  font-size: 1.575em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 0.1em;
}
.oogiri_cp .ogBadge--photo .ogBadge_count .num {
  font-size: 1.4636em;
}
.oogiri_cp .ogRibbonBand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0.6em auto 0;
  font-size: 1.2322em;
  font-weight: 700;
  color: #ffed4e;
  background: #60be25;
  min-width: 9.4924em;
  height: 1.6751em;
  padding-inline: 1em;
  clip-path: polygon(0 0, 100% 0, calc(100% - 0.45em) 50%, 100% 100%, 0 100%, 0.45em 50%);
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 0.45em) 50%, 100% 100%, 0 100%, 0.45em 50%);
}
.oogiri_cp .ogPrize_gp {
  position: relative;
  width: 48.9375em;
  max-width: 100%;
  height: 18.25em;
  margin: 4.3125em auto 0;
  background: #fff06c;
  border-radius: 2.5em;
}
.oogiri_cp .ogPrize_gp .ogBadge {
  position: absolute;
  left: -1.125em;
  top: -4.1875em;
}
.oogiri_cp .ogPrize_gp_body {
  margin-left: 8.4375em;
  width: 17.6875em;
  padding-top: 2.625em;
  text-align: center;
}
.oogiri_cp .ogPrize_gp_body strong {
  font-weight: 700;
}
.oogiri_cp .ogPrize_gp_lead {
  font-size: 1.3649em;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_gp_lead {
    margin-top: 0.5em;
  }
}
.oogiri_cp .ogPrize_gp_lead strong {
  font-size: 1.6em;
  line-height: 1.2;
}
.oogiri_cp .ogPrize_gp_item {
  margin-top: 0.3em;
  font-size: 2.5222em;
  font-weight: 700;
  line-height: 1.2;
  color: #60be25;
}
.oogiri_cp .ogPrize_gp_sub {
  font-size: 1.758em;
  font-weight: 700;
  line-height: 1.2;
}
.oogiri_cp .ogPrize_gp_trophy {
  position: absolute;
  left: 27.8125em;
  top: 2.25em;
  width: 9.5em;
}
.oogiri_cp .ogPrize_gp_cert {
  position: absolute;
  right: -0.3125em;
  top: 2.6875em;
  width: 11.8273em;
  transform: rotate(4deg);
  -webkit-transform: rotate(4deg);
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_gp {
    height: auto;
    padding: 7em 4% 2em;
    margin-top: 7em;
  }
  .oogiri_cp .ogPrize_gp .ogBadge {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    top: -4.5em;
  }
  .oogiri_cp .ogPrize_gp_body {
    margin: 0 auto;
    padding-top: 0;
    width: auto;
  }
  .oogiri_cp .ogPrize_gp_trophy, .oogiri_cp .ogPrize_gp_cert {
    position: static;
    transform: none;
    -webkit-transform: none;
  }
  .oogiri_cp .ogPrize_gp_imgs {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 1em;
    margin-top: 1.5em;
  }
  .oogiri_cp .ogPrize_gp_imgs .ogPrize_gp_cert {
    transform: rotate(4deg);
    -webkit-transform: rotate(4deg);
  }
}
.oogiri_cp .ogPrize_cards {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin-top: 6.6875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_cards {
    flex-direction: column;
    align-items: center;
    gap: 7em;
  }
}
.oogiri_cp .ogPrize_cardItem {
  position: relative;
  width: 24.0625em;
  min-height: 35.625em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_cardItem {
    font-size: 1em;
    max-width: 100%;
    min-height: auto;
    padding-bottom: 2em;
  }
}
.oogiri_cp .ogPrize_cardItem {
  background: #fff06c;
  border-radius: 2.5em;
  padding-top: 6em;
}
.oogiri_cp .ogPrize_cardItem .ogBadge {
  position: absolute;
  top: -5.125em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.oogiri_cp .ogPrize_cardItem_lead {
  font-size: 1.4375em;
  font-weight: 700;
  line-height: 1.87;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_cardItem_lead {
    margin-top: 0.5em;
  }
}
.oogiri_cp .ogPrize_cardItem_lead strong {
  font-size: 1.6522em;
  line-height: 1.2;
  font-weight: 700;
}
.oogiri_cp .ogPrize_cardItem_imgs {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.25em;
  margin-top: 2.5em;
  padding-inline: 0.75em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_cardItem_imgs {
    margin-top: 0.5em;
  }
}
.oogiri_cp .ogPrize_cardItem_col {
  position: relative;
  width: 44%;
  text-align: center;
}
.oogiri_cp .ogPrize_cardItem_imgWrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 11em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_cardItem_imgWrap {
    justify-content: flex-end;
  }
  .oogiri_cp .ogPrize_cardItem_imgWrap.wrap02 {
    justify-content: flex-start;
  }
  .oogiri_cp .ogPrize_cardItem_imgWrap.wrap02 .ogPrize_cardItem_key {
    margin-bottom: -1.5em;
  }
}
.oogiri_cp .ogPrize_cardItem_cert {
  width: 6.25em;
  margin-bottom: 3.25em;
  transform: rotate(-4deg);
  -webkit-transform: rotate(-4deg);
}
.oogiri_cp .ogPrize_cardItem_cert--nominate {
  width: 9.8474em;
  margin-bottom: 0;
}
.oogiri_cp .ogPrize_cardItem_trophy {
  position: absolute;
  left: -0.5em;
  bottom: 2.25em;
  width: 4.5em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_cardItem_trophy {
    left: 0;
  }
}
.oogiri_cp .ogPrize_cardItem_board {
  position: absolute;
  left: 50%;
  bottom: -0.5em;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 7.5em;
}
.oogiri_cp .ogPrize_cardItem_pa {
  width: 7em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_cardItem_pa {
    width: 6em;
    margin-right: 2em;
  }
}
.oogiri_cp .ogPrize_cardItem_key {
  position: absolute;
  right: -0.6875em;
  top: -2.7em;
  width: 11.8125em;
  max-width: none;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_cardItem_key {
    position: static;
    width: 9em;
    margin-bottom: -1em;
  }
}
.oogiri_cp .ogPrize_cardItem_label {
  margin-top: 0.8em;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
}
.oogiri_cp .ogPrize_cardItem--nominate .oogiri_cp .ogPrize_cardItem_imgWrap--key {
  min-height: 11em;
}
.oogiri_cp .ogPrize_note {
  position: absolute;
  right: 1em;
  bottom: -3.4em;
  font-size: 0.75em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPrize_note {
    position: static;
    text-align: right;
    margin-top: 1em;
    padding-right: 1em;
  }
}
.oogiri_cp .ogPlus {
  position: relative;
  align-self: center;
  flex-shrink: 0;
  width: 2.125em;
  height: 2.125em;
  margin-bottom: 4.5em;
  background: #60be25;
  border-radius: 50%;
}
.oogiri_cp .ogPlus::before, .oogiri_cp .ogPlus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  background: #fff;
}
.oogiri_cp .ogPlus::before {
  width: 1.1em;
  height: 0.25em;
}
.oogiri_cp .ogPlus::after {
  width: 0.25em;
  height: 1.1em;
}
.oogiri_cp .ogDummy {
  position: absolute;
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5em;
  height: 1.4298em;
  font-size: 1.6528em;
  font-weight: 700;
  color: #fff;
  background: #ff0000;
  border-radius: 0.1603em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogDummy {
    top: 60%;
  }
}
.oogiri_cp .ogTheme .ogCloudTtl {
  margin-top: 5.4375em;
}
.oogiri_cp .ogTheme_subcopy {
  margin-top: 1.3667em;
  font-size: 1.875em;
  font-weight: 800;
  color: #60be25;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogTheme_subcopy {
    font-size: 1.1em;
  }
}
.oogiri_cp .ogTheme_list {
  display: grid;
  grid-template-columns: repeat(2, 22.375em);
  justify-content: center;
  column-gap: 1.9375em;
  row-gap: 3.4375em;
  margin-top: 2.5625em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogTheme_list {
    grid-template-columns: min(26em, 100%);
    width: 90%;
    margin-inline: auto;
    row-gap: 5.4em;
  }
}
.oogiri_cp .ogTheme_card {
  position: relative;
}
.oogiri_cp .ogTheme_card img.ogTheme_card_img {
  width: 100%;
}
.oogiri_cp .ogTheme_card .ogTheme_badge {
  position: absolute;
  top: -0.5em;
  left: -0.5625em;
  width: 6.25em;
}
.oogiri_cp .ogTheme_btns {
  display: flex;
  justify-content: center;
  gap: 0.3438em;
  margin-top: 1.125em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogTheme_btns {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6em;
    margin-top: 1.5em;
  }
}
.oogiri_cp .ogTheme_btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.7em 0 0.5em;
  font-size: 0.875em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  width: 12.588em;
  height: 3.4837em;
  border-radius: 0.6334em;
  box-shadow: 0 4px 0 #60be25;
  border: none;
  font-family: inherit;
  cursor: pointer;
}
.oogiri_cp .ogTheme_btn_arrow {
  position: absolute;
  right: 0.6em;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 1em;
}
.oogiri_cp .ogTheme_btn--x {
  background: #000;
  border: 1px solid #000;
}
.oogiri_cp .ogTheme_btn--ig {
  background: linear-gradient(90deg, #c300b3 0%, #ff4a75 57.2%, #ff9500 100%);
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogTheme_btn {
    width: auto;
    font-size: 1.2em;
    height: 3.6em;
  }
}
.oogiri_cp .ogNoteBox {
  width: 46.875em;
  max-width: 100%;
  margin: 3.1875em auto 0;
  text-align: left;
}
.oogiri_cp .ogNoteBox_ttl, .oogiri_cp .ogNoteBox_txt {
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogNoteBox_ttl, .oogiri_cp .ogNoteBox_txt {
    font-size: 0.7em;
  }
}
.oogiri_cp .ogNoteBox--photo {
  margin-top: 2.5em;
}
.oogiri_cp .ogNoteBox--mail {
  position: relative;
  z-index: 1;
  margin-top: 3.6875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogNoteBox--mail {
    width: 90%;
    margin-inline: auto;
    text-align: justify;
  }
}
.oogiri_cp .ogMarquee {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 8.5em;
  overflow: hidden;
}
.oogiri_cp .ogMarquee--green {
  background: #60be25;
  margin-top: -1.625em;
}
.oogiri_cp .ogMarquee--blue {
  background: #2243a1;
}
.oogiri_cp .ogMarquee_track {
  display: flex;
  width: max-content;
  animation: ogMarquee 40s linear infinite;
}
.oogiri_cp .ogMarquee_txt {
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 4.1383em;
  letter-spacing: 0.0695em;
  line-height: 1;
  color: #ffed4e;
  white-space: nowrap;
}
.oogiri_cp .ogPhoto {
  position: relative;
  background: #dbf3ff;
  padding: 6.3125em 0% 6.375em;
}
.oogiri_cp .ogPhoto_deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.oogiri_cp .ogPhoto_deco_item {
  position: absolute;
}
.oogiri_cp .ogPhoto_deco_item--01 {
  left: 1.8125em;
  top: -5.75em;
  width: 30.9375em;
}
.oogiri_cp .ogPhoto_deco_item--02 {
  left: 0;
  top: 35.1875em;
  width: 8em;
}
.oogiri_cp .ogPhoto_deco_item--03 {
  right: 0;
  top: 27.0625em;
  width: 9.375em;
}
.oogiri_cp .ogPhoto_deco_item--04 {
  right: 0;
  top: 67.9375em;
  width: 13.1875em;
}
.oogiri_cp .ogPhoto_deco_item--05 {
  left: 0;
  top: 80.1875em;
  width: 8.6875em;
}
.oogiri_cp .ogPhoto_deco_item--06 {
  right: 0;
  top: 104.8125em;
  width: 28.5625em;
}
.oogiri_cp .ogPhoto_deco_item--07 {
  left: 0;
  top: 171em;
  width: 16.125em;
}
.oogiri_cp .ogPhoto_deco_item--08 {
  right: 0;
  top: 192.3125em;
  width: 19.125em;
}
.oogiri_cp .ogPhoto_deco_item--09 {
  left: 0;
  top: 202.9375em;
  width: 8.6875em;
}
.oogiri_cp .ogPhoto_deco_item--10 {
  left: 3.875em;
  top: 236.1875em;
  width: 12.4375em;
}
.oogiri_cp .ogPhoto_deco_item--11 {
  right: 0;
  top: 270.375em;
  width: 19.125em;
}
.oogiri_cp .ogPhoto_card {
  position: relative;
  z-index: 1;
  max-width: 64.375em;
  width: 93%;
  margin: 0 auto;
  background: #2243a1;
  border-radius: 5.625em;
  padding: 2.6875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhoto_card {
    border-radius: 2.5em;
    padding: 1em;
  }
}
.oogiri_cp .ogPhoto_card_inner {
  position: relative;
  background-color: #fffddb;
  background-image: radial-gradient(circle, rgba(255, 208, 80, 0.22) 0.28em, transparent 0.28em), radial-gradient(circle, rgba(255, 208, 80, 0.22) 0.28em, transparent 0.28em);
  background-position: 0 0, 1.03em 1.03em;
  background-size: 2.06em 2.06em;
  border-radius: 3.75em;
  padding: 6.75em 3.375em 5em;
}
.oogiri_cp .ogPhoto_card_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 33.75em;
  height: 3.5625em;
  background: #2243a1;
  border-radius: 0 0 0.9375em 0.9375em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhoto_card_inner {
    border-radius: 1.8em;
    padding: 5em 4% 3em;
  }
  .oogiri_cp .ogPhoto_card_inner::before {
    width: 60%;
    height: 2.5em;
  }
}
.oogiri_cp .ogPhoto_head {
  text-align: center;
}
.oogiri_cp .ogPhoto_ttl {
  position: relative;
  z-index: 1;
  margin-top: 1.4375em;
}
.oogiri_cp .ogPhoto_ttl img {
  width: 53.125em;
  max-width: 100%;
}
.oogiri_cp .ogPhoto_ttl_underline {
  position: relative;
  z-index: 0;
  display: block;
  width: 48.4375em;
  max-width: 92%;
  margin: -2.6em auto 0;
}
.oogiri_cp .ogPhoto_lead {
  margin-top: 0.743em;
  font-size: 2.1875em;
  font-weight: 900;
  line-height: 1.1486;
  color: #2243a1;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhoto_lead {
    font-size: 1.1em;
    margin-top: 2.4em;
    line-height: 1.5;
  }
}
.oogiri_cp .ogPlate {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPlate {
    font-size: 0.75em;
  }
}
.oogiri_cp .ogPlate::before, .oogiri_cp .ogPlate::after {
  content: "";
  flex-shrink: 0;
  width: 2.4763em;
  height: 4.0313em;
  background: url("../../oogiri-cp/img/badge_laurel.svg") center/contain no-repeat;
}
.oogiri_cp .ogPlate::before {
  margin-right: -0.6em;
  transform: translateY(0.55em);
  -webkit-transform: translateY(0.55em);
}
.oogiri_cp .ogPlate::after {
  margin-left: -0.6em;
  transform: scaleX(-1) translateY(0.55em);
  -webkit-transform: scaleX(-1) translateY(0.55em);
}
.oogiri_cp .ogPlate_inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13.3929em;
  height: 2.3679em;
  font-size: 1.75em;
  font-weight: 700;
  color: #fff;
  background: #2243a1;
  border-radius: 0.1643em;
}
.oogiri_cp .ogPhotoAbout {
  position: relative;
  width: 50.25em;
  max-width: 100%;
  min-height: 19.875em;
  margin: 2.125em auto 0;
  background: #fff;
  border-radius: 1.875em;
  padding: 1.6em 0;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoAbout {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 0em;
    padding-top: 1em;
    padding-bottom: 0;
  }
}
.oogiri_cp .ogPhotoAbout_imgArea {
  position: absolute;
  left: -3.5625em;
  top: -1.9375em;
  width: 23.125em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoAbout_imgArea {
    position: static;
    width: 70%;
    margin: 0 auto;
  }
}
.oogiri_cp .ogPhotoAbout_txtArea {
  margin-left: 19.25em;
  width: 29.25em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoAbout_txtArea {
    width: auto;
    margin: 1em 4% 0;
  }
}
.oogiri_cp .ogPhotoAbout_txt {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.389;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoAbout_txt {
    font-size: 0.9em;
    line-height: 1.6;
  }
}
.oogiri_cp .ogPhotoAbout_txt + .ogPhotoAbout_txt {
  margin-top: 0.55em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoAbout_txt + .ogPhotoAbout_txt {
    margin-top: 0.6em;
  }
}
.oogiri_cp .ogPhotoAbout_txt--blue {
  font-size: 1.5625em;
  line-height: 1.25;
  color: #2243a1;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoAbout_txt--blue {
    font-size: 1.15em;
    line-height: 1.4;
  }
}
.oogiri_cp .ogPhotoSteps .ogCloudTtl {
  margin-top: 4.9375em;
}
.oogiri_cp .ogPhotoSteps_list {
  display: flex;
  justify-content: center;
  gap: 2.1875em;
  margin-top: 2.8125em;
  margin-inline: -0.75em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_list {
    flex-direction: column;
    align-items: center;
    gap: 3.25em;
    margin-inline: 0;
  }
}
.oogiri_cp .ogPhotoSteps_item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 11.6875em;
  height: 20em;
  background: #ffed4e;
  border-radius: 1.25em;
  padding: 4.375em 0.4em 0;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75em;
    width: 100%;
    height: auto;
    min-height: 11em;
    padding: 4.25em 1.25em 1.5em;
  }
}
.oogiri_cp .ogPhotoSteps_item + .ogPhotoSteps_item::before {
  content: "";
  position: absolute;
  left: -2.0938em;
  top: 8.5em;
  border-top: 1.1563em solid transparent;
  border-bottom: 1.1563em solid transparent;
  border-left: 1.6875em solid #2243a1;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_item + .ogPhotoSteps_item::before {
    left: 50%;
    top: -2.45em;
    transform: translateX(-50%) rotate(90deg);
    -webkit-transform: translateX(-50%) rotate(90deg);
  }
}
.oogiri_cp .ogPhotoSteps_badge {
  position: absolute;
  top: 0.875em;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.oogiri_cp .ogPhotoSteps_badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.875em;
  height: 2.5625em;
  background: #2243a1;
  border-radius: 999px;
  color: #ffed4e;
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  letter-spacing: 0.07em;
}
.oogiri_cp .ogPhotoSteps_badge .en {
  font-size: 1.75em;
  line-height: 1;
}
.oogiri_cp .ogPhotoSteps_badge .num {
  font-size: 2.1563em;
  line-height: 1;
}
.oogiri_cp .ogPhotoSteps_txt {
  font-size: 1em;
  font-weight: 700;
  line-height: 1.5625;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_txt {
    text-align: left;
    flex: 1;
    font-size: 1.2em;
    width: 80%;
    margin-inline: auto;
  }
}
.oogiri_cp .ogPhotoSteps_img {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_img {
    align-items: center;
    margin-top: 0;
    flex-shrink: 0;
  }
}
.oogiri_cp .ogPhotoSteps_img--01 img {
  width: 10.75em;
  max-width: none;
  margin-bottom: 0.4375em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_img--01 img {
    width: 7.5em;
    margin-bottom: 0;
    margin-right: 1em;
  }
}
.oogiri_cp .ogPhotoSteps_img--02 img {
  width: 13.25em;
  max-width: none;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_img--02 img {
    width: 9.5em;
    margin-bottom: 0;
  }
}
.oogiri_cp .ogPhotoSteps_img--03 img {
  width: 8.5625em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_img--03 img {
    width: 7em;
    margin-bottom: 0;
    margin-right: 1em;
  }
}
.oogiri_cp .ogPhotoSteps_img--04 img {
  width: 3.9688em;
  margin-bottom: 0.9em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoSteps_img--04 img {
    width: 3.25em;
    margin-bottom: 0;
    margin-right: 3em;
  }
}
.oogiri_cp .ogPop {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2.6875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPop {
    flex-direction: column;
    align-items: center;
    gap: 0em;
    font-size: 1.3em;
    margin-top: 1.5em;
  }
}
.oogiri_cp .ogPop_balloon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12.1875em;
  height: 10.4375em;
  margin-top: 2.2em;
  margin-right: 0.5em;
  background: #2243a1;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPop_balloon {
    margin: 0;
    width: 9.1875em;
    height: 6.4375em;
    margin: 0 auto 0 0;
    z-index: 2;
  }
}
.oogiri_cp .ogPop_balloon_txt {
  font-size: 1.485em;
  font-weight: 700;
  line-height: 1.389;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPop_balloon_txt {
    font-size: 1.15em;
    position: relative;
    z-index: 2;
  }
}
.oogiri_cp .ogPop_balloon_tail {
  position: absolute;
  right: 0.875em;
  bottom: 0.125em;
  width: 3.875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPop_balloon_tail {
    right: auto;
    left: 33%;
    bottom: -0.7em;
    width: 4em;
    z-index: 1;
  }
}
.oogiri_cp .ogPop_img {
  padding: 1em 1.5em 1em 0;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPop_img {
    padding: 0 1em;
    position: relative;
    z-index: 1;
  }
}
.oogiri_cp .ogPop_img img {
  width: 17.1875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPop_img img {
    width: 12.1875em;
    margin-top: -2em;
  }
}
.oogiri_cp .ogPhotoPrize .ogPrize_judge {
  margin-top: 6em;
}
.oogiri_cp .ogPhotoPrize .ogCloudTtl {
  margin-top: 1.5em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoPrize .ogCloudTtl {
    margin-top: 2.5em;
  }
}
.oogiri_cp .ogPhotoPrize_cards {
  display: flex;
  justify-content: center;
  gap: 3.875em;
  margin-top: 7.875em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoPrize_cards {
    flex-direction: column;
    align-items: center;
    gap: 6em;
    margin-top: 5.5em;
  }
}
.oogiri_cp .ogPhotoPrize_item {
  position: relative;
  width: 21.6875em;
  min-height: 24.8125em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogPhotoPrize_item {
    font-size: 1em;
    padding-bottom: 1.5em;
  }
}
.oogiri_cp .ogPhotoPrize_item {
  background: #ffed4e;
  border-radius: 1.875em;
  box-shadow: 0 4px 0 #2243a1;
  padding-top: 6.5em;
}
.oogiri_cp .ogPhotoPrize_item .ogBadge {
  position: absolute;
  top: -4.6em;
  left: -0.5em;
}
.oogiri_cp .ogPhotoPrize_imgWrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 13.5em;
}
.oogiri_cp .ogPhotoPrize_pa {
  position: absolute;
  bottom: -1em;
  left: 52%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  width: 10.25em;
}
.oogiri_cp .ogPhotoPrize_key {
  position: absolute;
  bottom: -3em;
  left: 48%;
  transform: translateX(-44%);
  -webkit-transform: translateX(-44%);
  width: 16.125em;
}
.oogiri_cp .ogPhotoPrize_label {
  margin-top: 1em;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}
.oogiri_cp .ogFind_box {
  position: relative;
  width: 54.5em;
  max-width: 100%;
  min-height: 16.875em;
  margin: 10.625em auto 0;
  background: #fff;
  border-radius: 2.5em;
  text-align: center;
  padding: 0.875em 1em 3em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogFind_box {
    width: 90%;
    min-height: 10.875em;
    padding-bottom: 1.5em;
  }
}
.oogiri_cp .ogFind_box::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.625em;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  border-left: 1.6875em solid transparent;
  border-right: 1.6875em solid transparent;
  border-top: 1.6875em solid #fff;
}
.oogiri_cp .ogFind_ttl {
  position: relative;
  z-index: 1;
}
.oogiri_cp .ogFind_ttl img {
  width: 47.125em;
  max-width: 100%;
}
.oogiri_cp .ogFind_underline {
  position: relative;
  z-index: 0;
  display: block;
  width: 41.875em;
  max-width: 90%;
  margin: -2.3em auto 0;
}
.oogiri_cp .ogFind_txt {
  margin-top: 0.2em;
  font-size: 2.2169em;
  font-weight: 800;
  line-height: 1.39;
  color: #2243a1;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogFind_txt {
    font-size: 1.3em;
    margin-top: 1.3em;
  }
}
.oogiri_cp .ogModal {
  width: min(92%, 50em);
  padding: 0;
  border: none;
  border-radius: 1.25em;
}
.oogiri_cp .ogModal::backdrop {
  background: rgba(0, 0, 0, 0.6);
}
.oogiri_cp .ogModal_inner {
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}
.oogiri_cp .ogModal_head {
  position: relative;
  flex-shrink: 0;
  padding: 1.25em 3.5em 1.1em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.oogiri_cp .ogModal_ttl {
  font-size: 1.125em;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.oogiri_cp .ogModal_close {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 2.25em;
  height: 2.25em;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
  transition-duration: 0.3s;
}
.oogiri_cp .ogModal_close:hover {
  opacity: 0.6;
}
.oogiri_cp .ogModal_close::before, .oogiri_cp .ogModal_close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.1em;
  height: 2px;
  background: #fff;
}
.oogiri_cp .ogModal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
}
.oogiri_cp .ogModal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}
.oogiri_cp .ogModal_body {
  overflow-y: auto;
  padding: 1.5em 1.75em 2em;
  -webkit-overflow-scrolling: touch;
}
.oogiri_cp .ogModal_body h3 {
  font-size: 0.9375em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.oogiri_cp .ogModal_body p,
.oogiri_cp .ogModal_body ol {
  font-size: 0.8125em;
  font-weight: 500;
  line-height: 1.75;
  text-align: left;
}
.oogiri_cp .ogModal_body p + p {
  margin-top: 0.35em;
}
.oogiri_cp .ogModal_body ol {
  list-style: none;
  counter-reset: og-modal-item;
  padding-left: 0;
  margin-block: 0.35em;
}
.oogiri_cp .ogModal_body ol li {
  list-style: none;
  counter-increment: og-modal-item;
  position: relative;
  padding-left: 1.9em;
}
.oogiri_cp .ogModal_body ol li::before {
  content: counter(og-modal-item) ".";
  position: absolute;
  left: 0;
}
.oogiri_cp .ogModal_body ol li + li {
  margin-top: 0.2em;
}
.oogiri_cp .ogModal_sec + .ogModal_sec {
  margin-top: 1.75em;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogModal {
    width: 94%;
  }
  .oogiri_cp .ogModal_ttl {
    font-size: 1em;
  }
  .oogiri_cp .ogModal_body {
    padding: 1.2em 1em 1.6em;
  }
  .oogiri_cp .ogModal_body h3 {
    font-size: 1em;
  }
  .oogiri_cp .ogModal_body p,
  .oogiri_cp .ogModal_body ol {
    font-size: 0.9em;
  }
}
.oogiri_cp .ogBottom {
  position: relative;
  max-width: 75em;
  margin: 0 auto;
  padding: 3.75em 5% 0;
}
.oogiri_cp .ogBottom_txt {
  max-width: 62.5em;
  margin: 0 auto;
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogBottom_txt {
    font-size: 0.9em;
    line-height: 1.6;
  }
}
.oogiri_cp .ogBottom_txt strong {
  font-weight: 700;
}
.oogiri_cp .ogBottom .ogBack {
  margin-top: 2.5em;
  text-align: center;
}
.oogiri_cp .ogBottom .ogBack_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 21.25em;
  min-height: 3.75em;
  padding: 0.5em 2.75em;
  font-weight: 700;
  color: #2243a1;
  background: #fff;
  border: 3px solid #2243a1;
  border-radius: 999px;
  box-shadow: 0 3px 0 #2243a1;
  transition-duration: 0.3s;
}
.oogiri_cp .ogBottom .ogBack_btn:hover {
  opacity: 0.6;
}
.oogiri_cp .ogBottom .ogBack_btn::before {
  content: "";
  position: absolute;
  left: 1.25em;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  border-top: 0.375em solid transparent;
  border-bottom: 0.375em solid transparent;
  border-right: 0.5em solid #2243a1;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogBottom .ogBack_btn {
    min-width: 0;
    width: 100%;
    font-size: 1.2em;
  }
}
.oogiri_cp .ogBottom .ogTotop {
  position: absolute;
  right: 1.375em;
  top: 3.75em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4.625em;
  height: 4.625em;
  background: #2243a1;
  border-radius: 50%;
}
.oogiri_cp .ogBottom .ogTotop_arrow {
  width: 1.4813em;
}
.oogiri_cp .ogBottom .ogTotop_txt {
  margin-top: 0.2em;
  font-family: "Outfit", sans-serif;
  font-weight: 900;
  font-size: 0.8125em;
  line-height: 1.077;
  letter-spacing: 0.07em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .oogiri_cp .ogBottom .ogTotop {
    position: static;
    margin: 1.5em auto 0;
  }
}

.health_promotion .eventMap {
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventMap {
    padding-top: 2em;
  }
}
.health_promotion .eventMap_lead {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventMap_lead {
    text-align: justify;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventMap_contents {
    margin-top: 2em;
  }
}
@media screen and (max-width: 768px) {
  .health_promotion .eventMap h2 {
    font-size: 3vw;
  }
}
.health_promotion .eventMap .eventSearch_result_title h2 {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .health_promotion .eventMap .eventSearch_result_title h2 {
    font-size: 6vw;
  }
}
.health_promotion .eventSearch {
  font-family: "Noto Sans JP", sans-serif;
}

body.is-modalOpen {
  overflow: hidden;
}

.ogShareToast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 1000;
  width: max-content;
  max-width: min(28em, 88vw);
  padding: 1.5em 1.75em;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 1.3em;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  border-radius: 0.75em;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.ogShareToast.is-visible {
  opacity: 1;
  visibility: visible;
}

@keyframes ogMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .oogiri_cp .ogMarquee_track {
    animation: none;
  }
}