@charset "UTF-8";
/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/* ---------------------------------------------------------
config
--------------------------------------------------------- */
@media screen and (max-width: 751px) {
  [data-sc-pc] {
    display: none !important;
  }
}

@media print, screen and (min-width: 750px) {
  [data-sc-sp] {
    display: none !important;
  }
}

html {
  font-size: clamp(6px, 0.78125vw, 10px);
}

@media (max-width: 750px) {
  html {
    font-size: 2.5vw;
  }
}
body {
  font-family: "Prompt", "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.8;
  color: #00AFE5;
  font-size: 2rem;
  letter-spacing: 0.3em;
  word-break: break-all;
  overflow-x: hidden;
}
@media (max-width: 750px) {
  body {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------------------

  --------------------------------------------------------- */
/* Minimal Reset with Modern Best Practices */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Remove list styles */
ul, ol {
  list-style: none;
}

/* Remove default button styles */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
}

/* Set cursor to pointer for buttons */
button {
  cursor: pointer;
}

/* Remove link underline and inherit color */
a {
  text-decoration: none;
  color: inherit;
}

/* Image responsive */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Ensure tables are readable */
table {
  width: 100%;
  border-collapse: collapse;
}

/* Prevent content overflow issues */
iframe, embed, object {
  max-width: 100%;
}

/* Prevent input zooming on iOS */
input, textarea {
  font-size: 1.6rem;
}

/* Hide scrollbars but keep scrolling possible */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/**
 * SCSS 共通スタイルファイル
 * ヘッダー、フッター、ナビゲーションなどの共通要素
 */
/* Material Icons スタイル */
/* Material Symbols スタイル */
/* ---------------------------------------------------------
ルビ関係
--------------------------------------------------------- */
rt {
  letter-spacing: -0.2em;
  margin-left: -0.4em;
}
@media screen and (max-width: 751px) {
  rt {
    margin-bottom: -0.7em;
    margin-left: -0.1em;
  }
}

.pop-title .ja rt {
  font-size: 0.3125em;
}
@media screen and (max-width: 751px) {
  .pop-title .ja rt {
    font-size: 0.35em;
  }
}

/* ---------------------------------------------------------

--------------------------------------------------------- */
header {
  position: fixed;
  text-align: center;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: 1000;
}
@media screen and (max-width: 1400px) {
  header {
    text-align: right;
  }
}
@media screen and (max-width: 751px) {
  header {
    position: absolute;
  }
}

.site-logo {
  width: 26rem;
  position: absolute;
  top: 2.7rem;
  left: 4rem;
  transition: width 0.4s cubic-bezier(0, 1.21, 0.94, 1.08), top 0.4s cubic-bezier(0, 1.21, 0.94, 1.08);
}
@media screen and (max-width: 751px) {
  .site-logo {
    width: 17rem;
    position: relative;
    top: 0;
    left: 0;
    margin: 1rem 2rem;
    z-index: 1001;
  }
}
@media print, screen and (min-width: 750px) {
  .site-logo.scrolled {
    width: 18rem;
    top: 0;
    left: 4rem;
  }
}

nav {
  padding: 2.2rem 0;
}
nav a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.16;
  margin: 0 1rem;
  transition: transform 0.3s ease;
}
nav a:hover {
  transform: scale(1.05);
  color: #ee528e;
}
nav a.triangle {
  position: relative;
}
nav a.triangle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  margin-top: -0.3rem;
  vertical-align: middle;
  border-left: 0.3em solid transparent;
  border-right: 0.3em solid transparent;
  border-top: 0.4em solid #00AFE5;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55), color 0.4s ease;
}
nav a:hover.triangle::after {
  border-top: 0.4em solid #ee528e;
}

/* ---------------------------------------------------------
ハンバーガーメニュー
--------------------------------------------------------- */
.hamburger {
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 751px) {
  .hamburger {
    display: flex;
  }
}
.hamburger:hover {
  transform: scale(1.1);
}
.hamburger__line {
  width: 2.2rem;
  height: 0.5rem;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
.hamburger__line--1 {
  background-color: #ee528e;
}
.hamburger__line--2 {
  background-color: #fccf00;
}
.hamburger__line--3 {
  background-color: #00afe5;
}
.hamburger.is-active .hamburger__line--1 {
  transform: translateY(0.9rem) rotate(45deg);
  width: 2.9rem;
}
.hamburger.is-active .hamburger__line--2 {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active .hamburger__line--3 {
  transform: translateY(-0.9rem) rotate(-45deg);
  width: 2.9rem;
}

.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-trigger {
  position: relative;
  cursor: pointer;
}
.dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  color: #fff;
  transform: translateX(-50%);
  background: #00AFE5;
  margin-top: 0.8rem;
  min-width: 20rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  padding: 3rem 0 0 0;
  border-radius: 3.6rem;
}
.dropdown .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #00AFE5;
}
.dropdown .dropdown-menu a {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 3rem;
  text-align: center;
}
.dropdown .dropdown-item {
  display: block;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.dropdown .dropdown-item:hover {
  color: #fff;
}
.dropdown .dropdown-item:first-child {
  border-radius: 8px 8px 0 0;
}
.dropdown .dropdown-item:last-child {
  border-radius: 0 0 8px 8px;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mobile-nav {
  position: fixed;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fffbc7;
  z-index: 1000;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 751px) {
  .mobile-nav {
    display: flex;
  }
}
.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-nav__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7.5rem;
}
.mobile-nav .nav01 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3.8rem 0;
}
.mobile-nav__link {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  color: #51656f;
  text-align: center;
  width: 40%;
  margin: 0;
}
.mobile-nav__link img {
  display: block;
  margin: 0 auto;
  width: 6rem;
  height: 5rem;
  margin-bottom: 1rem;
  object-fit: contain;
}
.mobile-nav .mobile-nav__link__100 {
  position: relative;
  width: 100%;
  text-align: center;
  background: #fff23f;
  font-size: 1.6rem;
  border-radius: 1rem;
  padding: 2.4rem;
  margin: 0;
  margin-bottom: 1rem;
  padding-left: 4.5em;
}
.mobile-nav .mobile-nav__link__100 img {
  position: absolute;
  width: 4rem;
  height: auto;
  left: 1.6rem;
  top: 50%;
  transform: translate(0, -50%);
}

@media screen and (max-width: 751px) {
  nav:not(.mobile-nav) {
    display: none;
  }
}
/* ---------------------------------------------------------
フッター
--------------------------------------------------------- */
footer {
  position: relative;
}

img.ft__logo {
  max-width: 11rem;
  margin-left: 6rem;
}
@media screen and (max-width: 751px) {
  img.ft__logo {
    max-width: 10rem;
    margin: 0 auto;
    display: block;
  }
}

footer a,
span#contact-email {
  transition: 0.3s;
}
footer a:hover,
span#contact-email:hover {
  transform: scale(1.05);
}

footer.site-footer {
  background: #fff23f;
  color: #51656f;
  padding-top: 5rem;
}

.ft__inner {
  max-width: 142rem;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 8rem;
}
@media screen and (max-width: 751px) {
  .ft__inner {
    padding-top: 4rem;
  }
}

.ft__txtWrap {
  display: flex;
  justify-content: space-between;
  padding: 0 5.4rem;
  margin-top: 2.8rem;
  align-items: center;
}
@media screen and (max-width: 751px) {
  .ft__txtWrap {
    flex-direction: column;
    padding: 0;
    text-align: center;
    margin-top: 4rem;
  }
}

.ft__txt1 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 751px) {
  .ft__txt1 {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    font-weight: 700;
  }
}
.ft__txt1 span {
  font-size: 1.6rem;
  letter-spacing: 0.045em;
  margin-left: 2em;
}
@media screen and (max-width: 751px) {
  .ft__txt1 span {
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}

.ft__txt3 {
  font-size: 2.4rem;
  letter-spacing: 0.055em;
  display: flex;
  flex-direction: column;
  align-items: end;
}
.ft__txt3 span#contact-email {
  font-size: 0.9em;
  letter-spacing: 0;
}
@media screen and (max-width: 751px) {
  .ft__txt3 {
    color: #00AFE5;
    font-weight: 600;
    align-items: center;
    margin-top: 2rem;
  }
}

.ft__btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #fff;
  border-top: 3px solid #fff;
  padding: 4.6rem 6rem;
  padding-right: 4rem;
  margin-top: 3rem;
}
@media screen and (max-width: 751px) {
  .ft__btm {
    display: block;
    border: none;
    padding: 0;
  }
}
.ft__btm .l {
  display: flex;
}
@media screen and (max-width: 751px) {
  .ft__btm .l {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 4rem;
  }
}
.ft__btm .l a {
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-right: 2.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
}
@media screen and (max-width: 751px) {
  .ft__btm .l a {
    flex-direction: row;
    margin: 0;
    width: 15em;
    justify-content: flex-start;
    font-size: 1.8rem;
    font-weight: 700;
  }
}
.ft__btm .l a img {
  display: block;
  width: 6rem;
  object-fit: contain;
  height: 5rem;
}
@media screen and (max-width: 751px) {
  .ft__btm .l a img {
    display: block;
    width: 6rem;
    margin-right: 1rem;
  }
}
.ft__btm .r {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 751px) {
  .ft__btm .r {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }
}
.ft__btm .r a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
  height: 7rem;
  width: auto;
  border-radius: 1.8rem;
  padding: 0 1em;
  padding-top: 0.2rem;
}
@media screen and (max-width: 751px) {
  .ft__btm .r a {
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    font-weight: 700;
    height: 6.2rem;
    width: auto;
    border-radius: 1rem;
    justify-content: space-between;
    width: 16em;
    margin: 0 auto;
    margin-top: 5rem;
  }
}
.ft__btm .r a img {
  width: 3.5rem;
  margin-right: 1.5rem;
}
@media screen and (max-width: 751px) {
  .ft__btm .r a img {
    width: 4rem;
    margin-right: 0;
    left: 2rem;
  }
}
footer small {
  font-size: 1.2rem;
  font-weight: 100;
  letter-spacing: 0;
  text-align: center;
  display: block;
  margin-top: 10rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 751px) {
  footer small {
    font-size: 1rem;
    margin-top: 7.5rem;
  }
}

/**
 * リンク機能を無効化するクラス
 * aタグに適用するとクリックイベントとリンク機能を無効化
 */
.no-link {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
.no-link:hover {
  text-decoration: none;
}
.no-link:visited {
  color: inherit;
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/* ---------------------------------------------------------
メインビジュアル
--------------------------------------------------------- */
.mv {
  position: relative;
  background-color: #fff23f;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mv:before {
  position: absolute;
  content: "";
  bottom: -5rem;
  left: 0;
  width: 100%;
  height: 5rem;
  background: url(../../images/mv__nami.png) no-repeat center/contain;
  background-repeat: repeat-x;
}

.maincopy {
  position: relative;
  max-width: 87.8rem;
  margin: 0 auto;
}
@media screen and (max-height: 1080px) and (min-width: 750px) {
  .maincopy {
    margin-top: 6rem;
    height: 80%;
    max-height: 60vw;
    max-width: 60vw;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 751px) {
  .maincopy {
    width: 35.5rem;
    max-width: 100%;
    margin-top: -7rem;
  }
}

.maincopy__txtWrap {
  position: absolute;
  width: 55%;
  aspect-ratio: 480/590;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mv__linkWrap {
  position: absolute;
  bottom: 3.4rem;
  left: 7.2rem;
  z-index: 1;
}
@media screen and (max-width: 751px) {
  .mv__linkWrap {
    display: flex;
    width: 100%;
    left: 0;
    justify-content: center;
    gap: 1.3rem;
  }
}
.mv__linkWrap a {
  display: block;
  position: relative;
  height: 20vh;
  width: 20vh;
  max-height: 21rem;
  max-width: 21rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
}
@media screen and (max-width: 751px) {
  .mv__linkWrap a {
    width: 27%;
  }
}
.mv__linkWrap a img {
  height: 35%;
  width: auto;
  margin-top: 2.3rem;
  margin-right: -1.6rem;
}
@media screen and (max-width: 751px) {
  .mv__linkWrap a img {
    height: 24%;
    margin-top: 2rem;
    margin-right: -1rem;
  }
}
.mv__linkWrap a img.last {
  margin-top: 1.3rem;
}
.mv__linkWrap a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/mv_btn01__bg.png) no-repeat center/contain;
  z-index: -1;
}
.mv__linkWrap a:nth-of-type(2)::after {
  background: url(../../images/mv_btn02__bg.png) no-repeat center/contain;
}
.mv__linkWrap a:nth-of-type(3)::after {
  background: url(../../images/mv_btn03__bg.png) no-repeat center/contain;
}

.mv__kodomoWrap {
  position: absolute;
  top: 52%;
  left: 52.5%;
  transform: translate(-50%, -50%);
  width: 140rem;
  height: 84rem;
  max-width: 100%;
}
@media screen and (max-height: 1080px) and (min-width: 750px) {
  .mv__kodomoWrap {
    width: 135vh;
    height: auto;
    top: 16vh;
  }
}
@media screen and (max-width: 751px) {
  .mv__kodomoWrap {
    position: absolute;
    top: calc(50% - 27rem);
    left: 50%;
    transform: translate(-50%, -47%);
    width: 92%;
    height: auto;
    max-width: 100%;
  }
}
.mv__kodomoWrap img {
  position: absolute;
  width: 100%;
}

.mvbtm {
  background-color: #fff23f;
  height: 20rem;
}
@media screen and (max-width: 751px) {
  .mvbtm {
    height: 10rem;
  }
}

/* ---------------------------------------------------------
セクション 波
--------------------------------------------------------- */
footer.nami,
section.nami {
  mask: url(../../images/nami.svg) center 0 repeat-x;
  mask-size: 65rem auto;
  margin-top: -4.5rem;
}
@media screen and (max-width: 751px) {
  footer.nami,
  section.nami {
    mask: url(../../images/nami_sp.svg) center 0 repeat-x;
    mask-size: 39rem auto;
  }
}

/* ---------------------------------------------------------
セクション１
--------------------------------------------------------- */
.sec01 {
  position: relative;
  background: repeating-linear-gradient(130deg, #fffabc, #fffabc 10px, #fff 10px, #fff 20px);
}
@media screen and (max-width: 751px) {
  .sec01 {
    background: repeating-linear-gradient(130deg, #fffabc, #fffabc 5px, #fff 5px, #fff 10px);
  }
}

.sec01__inner {
  position: relative;
  max-width: 116rem;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 14rem;
  padding-bottom: 21rem;
}
@media screen and (max-width: 751px) {
  .sec01__inner {
    padding-top: 10rem;
    padding-bottom: 16rem;
  }
}

@media screen and (max-width: 751px) {
  .sec01__illustWrap {
    position: relative;
    height: 33rem;
    margin-top: 1rem;
  }
}

.sec01__illust {
  position: absolute;
  right: -5rem;
  top: 12rem;
  z-index: 1;
  width: 60rem;
}
@media screen and (max-width: 751px) {
  .sec01__illust {
    right: 0.7rem;
    top: 0;
    width: 32rem;
  }
}

.sec01__illustbg {
  position: absolute;
  right: 0;
  top: 25rem;
  z-index: 0;
  width: 58.8rem;
}
@media screen and (max-width: 751px) {
  .sec01__illustbg {
    right: 2.5rem;
    top: 6.3rem;
    width: 32rem;
  }
}

p.sec01__lead {
  font-size: 2.2rem;
  line-height: 2.4;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-top: 4.3rem;
}
@media screen and (max-width: 751px) {
  p.sec01__lead {
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
    margin-top: 9rem;
  }
}

/* ---------------------------------------------------------
セクション2
--------------------------------------------------------- */
.sec02 {
  background-color: #fff;
  background-image: url(../../images/dot_blue.png);
  background-size: 2rem 2rem;
  background-position: bottom center;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 751px) {
  .sec02 {
    background-size: 0.8rem 0.8rem;
  }
}
.sec02 .pop-title {
  align-items: center;
}
.sec02 .pop-title:before {
  left: 50%;
  width: 21rem;
  transform: translateX(-50%);
  background: url(../../images/ttl_line.png) no-repeat center/contain;
  background-size: cover;
}
.sec02 .news-list {
  margin-top: 6.6rem;
}
@media screen and (max-width: 751px) {
  .sec02 .news-list {
    margin-top: 4rem;
  }
}

.sec02__inner {
  max-width: 97rem;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 17.5rem;
  padding-bottom: 27.5rem;
}
@media screen and (max-width: 751px) {
  .sec02__inner {
    padding: 0 3rem;
    padding-bottom: 29rem;
    padding-top: 9rem;
  }
}

.sec02__more {
  position: relative;
}
.sec02__more .miru {
  position: absolute;
  bottom: -10rem;
  right: 0;
  height: 15rem;
  width: 15rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.55;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 751px) {
  .sec02__more .miru {
    bottom: -15rem;
    right: calc(50% - 6.5rem);
    /* transform: translate(-50%, 0); */
    height: 13rem;
    width: 13rem;
  }
}
.sec02__more .miru::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../../images/sec2__btn.png) no-repeat center/contain;
  z-index: -1;
}

/* ---------------------------------------------------------
セクション3
--------------------------------------------------------- */
section.sec03.nami {
  margin-top: -6rem;
}
@media screen and (max-width: 751px) {
  section.sec03.nami {
    margin-top: -1.6rem;
  }
}

.sec03 {
  position: relative;
  background-color: #FEFCC3;
  background-image: url(../../images/dot_yellow.png);
  background-size: 2rem 2rem;
  background-position: top center;
}
@media screen and (max-width: 751px) {
  .sec03 {
    background-size: 0.8rem 0.8rem;
  }
}
.sec03 .pop-title {
  align-items: center;
}
.sec03 .pop-title:before {
  left: 50%;
  transform: translateX(-50%);
  background: url(../../images/ttl_line.png) no-repeat center/contain;
  background-size: cover;
}

.sec03__inner {
  padding-top: 24.5rem;
  padding-bottom: 22rem;
}
@media screen and (max-width: 751px) {
  .sec03__inner {
    padding-top: 9rem;
    padding-bottom: 17rem;
  }
}

.sec03__lead {
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 500;
  text-align: center;
  margin-top: 4rem;
  margin-bottom: 8.5rem;
}
@media screen and (max-width: 751px) {
  .sec03__lead {
    letter-spacing: 0.01em;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 3rem;
  }
}

.sec03__balloon-Wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20rem 4rem;
  align-items: end;
}
@media screen and (max-width: 751px) {
  .sec03__balloon-Wrap {
    gap: 5.5rem 4rem;
  }
}

.sec03__balloon {
  display: block;
  position: relative;
  background: #f58200;
  border-radius: 5rem;
  width: 46vw;
  width: 41vw;
  max-width: 82rem;
  padding: 8rem 6rem 4rem;
  transition-duration: 600ms;
}
@media screen and (max-width: 751px) {
  .sec03__balloon {
    width: 90%;
    padding: 8.4rem 2rem 5rem;
    border-radius: 2rem;
  }
}
.sec03__balloon:hover {
  transform: translate(0px, -10px) rotate(-3deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  --gap-h-1b1b619c-d3c4-4469-8a20-d5c7b3f3b5fe: 0px;
  --gap-v-1b1b619c-d3c4-4469-8a20-d5c7b3f3b5fe: 0px;
}
.sec03__balloon::after {
  position: absolute;
  content: "";
  bottom: -5.2rem;
  left: 50%;
  width: 7rem;
  height: 5.4rem;
  transform: translateX(-50%);
  background: url(../../images/sec03_sippo_01.png) no-repeat center/contain;
}
@media screen and (max-width: 751px) {
  .sec03__balloon::after {
    bottom: -3.2rem;
    width: 6rem;
    height: 4.8rem;
  }
}
.sec03__balloon img.nam {
  position: absolute;
  top: 4rem;
  left: 3.7rem;
  height: 5.8rem;
  width: auto;
}
@media screen and (max-width: 1400px) {
  .sec03__balloon img.nam {
    height: 4rem;
  }
}
@media screen and (max-width: 751px) {
  .sec03__balloon img.nam {
    top: 2.5rem;
    left: 2.3rem;
    height: 3.6rem;
  }
}
.sec03__balloon img.ttl {
  display: block;
  text-align: center;
  height: 10rem;
  width: auto;
  margin: 0 auto;
  margin-bottom: 4.4rem;
}
@media screen and (max-width: 751px) {
  .sec03__balloon img.ttl {
    height: auto;
    width: 90%;
    margin-bottom: 3rem;
  }
}
.sec03__balloon p.txt {
  color: #fff;
  line-height: 2;
  font-size: 1.9rem;
  margin-top: 3rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 751px) {
  .sec03__balloon p.txt {
    font-size: 1.6rem;
    font-weight: 600;
  }
}
.sec03__balloon p.btn {
  display: block;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.07em;
  font-weight: 700;
  color: #f58200;
  border-radius: 3em;
  width: 17rem;
  padding: 0.6rem 0;
  padding-top: 1.5rem;
  margin: auto -2rem auto auto;
  margin-top: 3rem;
  background: #fff23f;
}
@media screen and (max-width: 751px) {
  .sec03__balloon p.btn {
    font-size: 2.2rem;
    border-radius: 3em;
    width: 20rem;
    padding: 0.6rem 0;
    margin: 0 auto;
    margin-top: 1.4rem;
  }
}

.sec03__balloon:nth-of-type(2) {
  margin-bottom: -7.8rem;
  background: #ee528e;
}
@media screen and (max-width: 751px) {
  .sec03__balloon:nth-of-type(2) {
    margin-bottom: 0;
  }
}
.sec03__balloon:nth-of-type(2):hover {
  transform: translate(0px, -20px) rotate(3deg);
  transition-duration: 600ms;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  --gap-h-c72a5615-c9ef-457a-ba5f-4bcaba1f3682: 0px;
  --gap-v-c72a5615-c9ef-457a-ba5f-4bcaba1f3682: 0px;
}
.sec03__balloon:nth-of-type(2)::after {
  background: url(../../images/sec03_sippo_02.png) no-repeat center/contain;
}
@media screen and (max-width: 751px) {
  .sec03__balloon:nth-of-type(2)::after {
    transform: scaleX(-1);
    left: 40%;
  }
}
.sec03__balloon:nth-of-type(2) .btn {
  color: #ee528e;
  width: 11.5em;
}
@media print, screen and (min-width: 750px) {
  .sec03__balloon:nth-of-type(2) img.nam {
    right: 3.7rem;
    left: auto;
  }
}

.sec03__balloon:nth-of-type(3) {
  background: #6fc02c;
}
.sec03__balloon:nth-of-type(3)::after {
  background: url(../../images/sec03_sippo_03.png) no-repeat center/contain;
}
.sec03__balloon:nth-of-type(3) .btn {
  color: #6fc02c;
}

/* ---------------------------------------------------------
セクション4
--------------------------------------------------------- */
.sec04 {
  padding: 30rem 0;
  position: relative;
  background: repeating-linear-gradient(130deg, #d2ecfa, #d2ecfa 10px, #fff 10px, #fff 20px);
}
@media screen and (max-width: 751px) {
  .sec04 {
    padding: 9rem 0 13rem;
    background: repeating-linear-gradient(130deg, #d2ecfa, #d2ecfa 5px, #fff 5px, #fff 10px);
  }
}
.sec04 a {
  display: block;
  max-width: 120rem;
  width: calc(100% - 4rem);
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.7);
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 2);
}
.sec04 a.visible {
  opacity: 1;
  transform: scale(1);
}
.sec04 a:hover {
  transform: scale(1.05);
}
.sec04 a.sec04__a {
  position: relative;
  background: #fff;
  border-radius: 6rem;
  padding: 10rem 8rem;
  font-weight: bold;
}
@media screen and (max-width: 751px) {
  .sec04 a.sec04__a {
    border-radius: 3rem;
    padding: 3.4rem 0 4.3rem;
  }
}
.sec04 .sec04_illust {
  width: 42rem;
  position: absolute;
  right: 7rem;
  top: 9rem;
}
@media screen and (max-width: 751px) {
  .sec04 .sec04_illust {
    width: 85%;
    margin: 1rem auto;
    position: static;
    display: block;
    top: 9rem;
  }
}
.sec04 p.sec04__p-top {
  font-size: 3.2rem;
  letter-spacing: 0.13em;
  /* -13/1000 */
  /* 1/1000 */
  /* 6/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
  /* -3/1000 */
}
@media screen and (max-width: 751px) {
  .sec04 p.sec04__p-top {
    font-size: 2rem;
    text-align: center;
  }
}
.sec04 p.sec04__p-top span:nth-child(2) {
  margin-left: -0.185;
}
.sec04 p.sec04__p-top span:nth-child(3) {
  margin-left: -0.081em;
}
.sec04 p.sec04__p-top span:nth-child(4) {
  margin-left: -0.142em;
}
.sec04 p.sec04__p-top span:nth-child(5) {
  margin-left: -0.156em;
}
.sec04 p.sec04__p-top span:nth-child(6) {
  margin-left: -0.101em;
}
.sec04 p.sec04__p-top span:nth-child(7) {
  margin-left: 0;
}
.sec04 p.sec04__p-top span:nth-child(8) {
  margin-left: -0.8em;
}
.sec04 p.sec04__p-top span:nth-child(9) {
  margin-left: -0.5em;
}
.sec04 p.sec04__p-top span:nth-child(10) {
  margin-left: -0.5em;
}
.sec04 p.sec04__p-top span:nth-child(11) {
  margin-left: -0.8em;
}
.sec04 p.sec04__p-top span:nth-child(12) {
  margin-left: -0.8em;
}
.sec04 p.sec04__p-top span:nth-child(13) {
  margin-left: -0.4em;
}
.sec04 p.sec04__p-top span:nth-child(14) {
  margin-left: -0.4em;
}
.sec04 p.sec04__p-top span:nth-child(15) {
  margin-left: -0.8em;
}
.sec04 p.sec04__p-top span:nth-child(16) {
  margin-left: -0.5em;
}
.sec04 p.sec04__p-top span:nth-child(17) {
  margin-left: -0.5em;
}
.sec04 p.sec04__p-top span:nth-child(18) {
  margin-left: -0.5em;
}
.sec04 p.sec04__p-top span:nth-child(19) {
  margin-left: -0.7em;
}
.sec04 p.sec04__p-md {
  font-size: 4.4rem;
  line-height: 1.8;
  letter-spacing: 0.13em;
}
@media screen and (max-width: 751px) {
  .sec04 p.sec04__p-md {
    font-size: 2.6rem;
    text-align: center;
    letter-spacing: 0.05em;
    line-height: 1.6;
    margin-top: 0.8rem;
  }
}
.sec04 p.sec04__p-btm {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.07em;
  width: 32em;
  border-top: 2px solid;
  margin-top: 2rem;
  padding-top: 3rem;
}
@media screen and (max-width: 751px) {
  .sec04 p.sec04__p-btm {
    width: 19em;
    border: none;
    margin: 0 auto;
    line-height: 1.9;
  }
}
.sec04 p.sec04__p-miru {
  background: #fff23f;
  width: 18rem;
  display: block;
  text-align: center;
  padding: 1.3em 0 1em;
  line-height: 1;
  justify-content: center;
  border-radius: 3em;
  margin: 0 auto;
  margin-top: 2rem;
}

/* ---------------------------------------------------------
セクション5　お楽しみコンテンツ
--------------------------------------------------------- */
@media screen and (max-width: 751px) {
  section.sec05.nami {
    margin-top: -5.7rem;
  }
}

.sec05 {
  position: relative;
  padding-top: 21.5rem;
  padding-bottom: 27rem;
  background: repeating-linear-gradient(130deg, #fffabc, #fffabc 10px, #fff 10px, #fff 20px);
  background-position-x: -0.4rem;
}
@media screen and (max-width: 751px) {
  .sec05 {
    background: repeating-linear-gradient(130deg, #fffabc, #fffabc 5px, #fff 5px, #fff 10px);
    padding-top: 9.5rem;
    padding-bottom: 20rem;
  }
}
.sec05 .pop-title {
  text-align: center;
  align-items: center;
  margin-bottom: 15.5rem;
}
@media screen and (max-width: 751px) {
  .sec05 .pop-title {
    margin-bottom: 8rem;
  }
}
.sec05 .pop-title:before {
  left: 49.5%;
  max-width: 54rem;
  transform: translateX(-50%);
  background: url(../../images/ttl_line.png) no-repeat center/contain;
  background-size: cover;
}
.sec05 h3 {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-weight: 900;
  font-size: 3.2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 751px) {
  .sec05 h3 {
    letter-spacing: 0.05em;
    font-size: 2.6rem;
    margin-bottom: 0.6rem;
    margin-top: 2rem;
  }
}
.sec05 p {
  font-size: 1.8rem;
  font-size: 1.75rem;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 500;
  width: calc(100% - 7rem);
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 751px) {
  .sec05 p {
    width: calc(100% - 6rem);
  }
}

.sec05__f-cont-Wrap {
  display: flex;
  justify-content: space-between;
  max-width: 134rem;
  padding: 0 4.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 751px) {
  .sec05__f-cont-Wrap {
    flex-direction: column;
    gap: 7.2rem;
    padding: 0 1.6rem;
  }
}

.sec05__f-cont {
  position: relative;
  background: #fff;
  display: block;
  width: 35rem;
  padding: 8.5rem 0 8rem;
  border-radius: 3rem;
}
@media screen and (max-width: 751px) {
  .sec05__f-cont {
    width: 95%;
    margin: 0 auto;
  }
}
.sec05__f-cont:hover .sec05__illust {
  transform: scale(1.05);
}

.sec05__pa-top {
  position: absolute;
  width: 30rem;
  left: 50%;
  top: -4rem;
  transform: translate(-50%, 0);
}

.sec05__pa-left {
  position: absolute;
  left: -3rem;
  top: 3rem;
  width: 1.5rem;
}
@media screen and (max-width: 751px) {
  .sec05__pa-left {
    display: none;
  }
}

.sec05__illust {
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 2);
  width: auto;
  margin: 0 auto;
  display: block;
  margin-top: 4rem;
  margin-bottom: 3rem;
  height: 19rem;
  object-fit: contain;
  object-position: bottom;
}
@media screen and (max-width: 751px) {
  .sec05__illust {
    width: 90%;
    height: auto;
  }
}

.totop {
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 2);
  display: block;
  width: 38rem;
  margin: 0 auto;
  margin-top: 14.5rem;
}
.totop:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 751px) {
  .totop {
    width: 30rem;
    margin-top: 8rem;
  }
}

@media screen and (max-width: 751px) {
  .home .totop {
    margin-top: 25rem;
  }
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
body.wp-singular.page-template-default.page div#page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.wp-singular.page-template-default.page div#page div#content {
  flex: 1;
}

.inner {
  padding-top: 11.5rem;
  padding-bottom: 21rem;
}
@media screen and (max-width: 751px) {
  .inner {
    padding-top: 9.5rem;
    padding-bottom: 9rem;
  }
}

.stripe-blue {
  background: repeating-linear-gradient(130deg, #d2ecfa, #d2ecfa 10px, #fff 10px, #fff 20px);
}
@media screen and (max-width: 751px) {
  .stripe-blue {
    background: repeating-linear-gradient(130deg, #d2ecfa, #d2ecfa 5px, #fff 5px, #fff 10px);
  }
}

.dot-blue {
  background-color: #fff;
  background-image: radial-gradient(#d2ecfa 4px, transparent 4px), radial-gradient(#d2ecfa 4px, transparent 4px);
  background-image: url(../../images/dot_blue.png);
  background-size: 2rem 2rem;
  background-position: bottom;
}
@media screen and (max-width: 751px) {
  .dot-blue {
    background-size: 0.8rem 0.8rem;
  }
}

.hougan-blue {
  background-color: #fff;
  background-image: linear-gradient(to right, #befefa 1px, transparent 1px), linear-gradient(to bottom, #befefa 1px, transparent 1px);
  background-size: 2rem 2rem;
}

.hougan-yellow {
  background-color: #fff;
  background-image: linear-gradient(to right, #fff8aa 1px, transparent 1px), linear-gradient(to bottom, #fff8aa 1px, transparent 1px);
  background-size: 2rem 2rem;
}

.hougan-pink {
  background-color: #fff;
  background-image: linear-gradient(to right, #ffdcfa 1px, transparent 1px), linear-gradient(to bottom, #ffdcfa 1px, transparent 1px);
  background-size: 2rem 2rem;
}

.w1000 {
  width: calc(100% - 4rem);
  max-width: 100rem;
  margin: 0 auto;
}

/* ---------------------------------------------------------
  モニター募集　　プライバシーポリシー
--------------------------------------------------------- */
.ttl__balloon {
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
  margin-bottom: 5rem;
}

.ttl__balloon__ttl {
  position: relative;
  text-align: center;
  background: #ef8200;
  color: #ffee46;
  padding: 1em 0 1em;
  border-radius: 2em;
}
.ttl__balloon__ttl:before {
  position: absolute;
  content: "";
  bottom: -2rem;
  left: 50%;
  transform: translate(-50%, 0);
  width: 4.4rem;
  height: 3.7rem;
  background: url(../../images/ttl__balloon__ttl.png) no-repeat center/contain;
}
@media screen and (max-width: 751px) {
  .ttl__balloon__ttl {
    font-size: 2rem;
  }
}

.monitor.inner {
  padding-top: 16rem;
  padding-bottom: 19rem;
}
.monitor.inner p.kome {
  font-size: 1.8rem;
}
.monitor.inner a.oubo-btn {
  width: 100%;
  max-width: 63rem;
  display: block;
  margin: 0 auto;
  margin-top: 10rem;
}
.monitor.inner .lead-center {
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 2.63;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 751px) {
  .monitor.inner .lead-center {
    font-size: 1.6rem;
  }
}
.monitor.inner .ttl___yBg-rTxt {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #ef8200;
  background: #ffee46;
  border-radius: 1.6rem;
  padding: 0.5em 0 0.2em;
  margin-top: 9rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 751px) {
  .monitor.inner .ttl___yBg-rTxt {
    font-size: 2rem;
    margin-top: 5rem;
  }
}
.monitor.inner p.inner-p {
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 2.88;
  padding: 0 10rem;
  margin-bottom: 2em;
  font-weight: 700;
}
@media screen and (max-width: 751px) {
  .monitor.inner p.inner-p {
    font-size: 1.6rem;
    padding: 0;
  }
}
.monitor.inner p.inner-p a {
  text-decoration: underline;
}

ul.innerlist {
  padding-right: 10rem;
  padding-left: 13rem;
  line-height: 1.6;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 751px) {
  ul.innerlist {
    font-size: 1.6rem;
    padding-right: 2rem;
    padding-left: 4rem;
  }
}
ul.innerlist li {
  margin-bottom: 1em;
  position: relative;
}
ul.innerlist li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #00afe5;
  display: inline-block;
  position: absolute;
  left: -1.2em;
  top: 1.4rem;
}
@media screen and (max-width: 751px) {
  ul.innerlist li::before {
    top: calc(50% - 0.35rem);
  }
}

ul.innerlist a {
  text-decoration: underline;
  display: inline-block;
}

/* ---------------------------------------------------------
  取り組み
--------------------------------------------------------- */
.initiatives__ttl {
  width: 100%;
  max-width: 66rem;
  margin: 0 auto;
  margin-bottom: 8rem;
  margin-top: 4rem;
}
@media screen and (max-width: 751px) {
  .initiatives__ttl {
    margin-bottom: 4rem;
  }
}

.initiatives__lead {
  text-align: center;
  margin-bottom: 3em;
}

.initiatives__box {
  display: flex;
  background: #fff;
  padding: 5rem;
  margin-bottom: 5rem;
  border-radius: 3rem;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 751px) {
  .initiatives__box {
    padding: 3rem 2rem;
  }
}
.initiatives__box:hover {
  transform: scale(1.05);
}

@media screen and (max-width: 751px) {
  .wp-block-group.initiatives__box.is-nowrap {
    display: block;
  }
}

.initiatives__box img {
  width: 40rem;
  margin-right: 4rem;
  display: block;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 751px) {
  .initiatives__box img {
    width: 94%;
    margin: 0 auto;
  }
}

.initiatives__box .txtBox {
  flex: 1;
}

.initiatives__box .ttl {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  display: flex;
  justify-content: center;
}
.initiatives__box .ttl {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 751px) {
  .initiatives__box .ttl {
    font-size: 2.4rem;
    margin-top: 1em;
  }
}
.initiatives__box .ttl::after {
  content: "";
  position: absolute;
  bottom: 0.3em;
  left: 0;
  width: 100%;
  height: 0.5em;
  background-color: #fff23f;
  z-index: -1;
}

.initiatives__box .ttl.tume {
  letter-spacing: -0.3rem;
}

.initiatives__box .txt {
  font-size: 1.8rem;
  line-height: 2.4;
  letter-spacing: 0.03em;
  margin-top: 1em;
}
@media screen and (max-width: 751px) {
  .initiatives__box .txt {
    font-size: 1.5rem;
  }
}

.initiatives__box .wp-block-image img {
  margin-bottom: 0;
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/**
 * お知らせ（news）関連のスタイル
 */
.post-type-archive-news .pop-title .ja {
  letter-spacing: 0;
}

.news-item__meta {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 751px) {
  .news-item__meta {
    display: flex;
    align-items: center;
  }
}
.news-item__date {
  font-size: 1.6rem;
  /* color: #666; */
  font-weight: 700;
  font-family: "Prompt";
  letter-spacing: 0.09em;
}
@media screen and (max-width: 751px) {
  .news-item__date {
    margin-top: 0.3rem;
  }
}
.news-item span.cate {
  border-radius: 2em;
  font-size: 1.4rem;
  font-weight: 700;
  background: #fff23f;
  padding: 0.8rem 1.6rem;
  letter-spacing: 0.1em;
  margin-left: 3rem;
  margin-right: 4.3rem;
}
@media screen and (max-width: 751px) {
  .news-item span.cate {
    font-size: 1.2rem;
    padding: 0.3rem 1.1rem 0.2rem;
    letter-spacing: 0.09em;
    margin-left: 1rem;
    margin-right: 0;
  }
}
.news-item__title {
  line-height: 1.5;
  width: 50rem;
  font-size: 2rem;
  letter-spacing: 0.03em;
  font-weight: 500;
}
@media screen and (max-width: 751px) {
  .news-item__title {
    width: auto;
    font-size: 1.6rem;
  }
}
.news-item__excerpt {
  font-size: 1.4rem;
  color: #666;
  line-height: 1.6;
}

.news-list .news-item {
  position: relative;
  border-radius: 999px;
  padding: 3.3rem 7.6rem;
  margin-bottom: 2rem;
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  z-index: 0;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 2);
}
.news-list .news-item:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 751px) {
  .news-list .news-item {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 99em;
    padding: 2rem 5rem;
  }
}
.news-list .news-item::before {
  position: absolute;
  content: "";
  bottom: 0;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  z-index: -1;
  transform: scale(1);
  z-index: -1;
}

/* ---------------------------------------------------------
記事ページ
--------------------------------------------------------- */
@media screen and (max-width: 751px) {
  .archive .sec02__inner {
    padding-top: 13rem;
    padding-bottom: 13rem;
  }
}

.wp-block-image img {
  margin-bottom: 4rem;
}

@media screen and (max-width: 751px) {
  .single .inner {
    padding-top: 13.5rem;
    padding-bottom: 20rem;
  }
}
.single .w1000 {
  background: #fff;
  padding: 10rem;
  margin-top: 9rem;
  border-radius: 5rem;
}
@media screen and (max-width: 751px) {
  .single .w1000 {
    background: #fff;
    padding: 5rem 2rem;
    margin-top: 5rem;
    border-radius: 2rem;
    margin-bottom: 12rem;
  }
}
.single h2.pop-title {
  margin-top: 6.5rem;
}
@media screen and (max-width: 751px) {
  .single h2.pop-title {
    margin-top: 0;
  }
}
.single .news-item__title {
  width: 100%;
  font-size: 4rem;
  margin-top: 3.7rem;
  font-weight: 700;
  position: relative;
  line-height: 1.75;
}
@media screen and (max-width: 751px) {
  .single .news-item__title {
    font-size: 2.4rem;
    line-height: 1.29;
  }
}
.single .news-item__title::after {
  content: "";
  position: absolute;
  bottom: -3.5rem;
  left: 0;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(circle at 4px 2px, #00bcd4 2px, transparent 2px);
  background-size: 15px 4px;
}
.single .txt {
  margin-top: 8rem;
  color: #333;
  font-size: 1.8rem;
  line-height: 2.3;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 751px) {
  .single .txt {
    font-size: 1.5rem;
  }
}
.single .sec02__more .miru {
  bottom: -18rem;
  right: -6rem;
}
@media screen and (max-width: 751px) {
  .single .sec02__more .miru {
    bottom: -14rem;
    right: 0rem;
  }
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
/* ---------------------------------------------------------
ローディングアニメーション
--------------------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff23f;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}
.loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.loading__text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #51656f;
  letter-spacing: 0.1em;
  animation: loading-pulse 1.5s ease-in-out infinite;
}

@keyframes loading-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
/* ---------------------------------------------------------
ファーストビュー演出
--------------------------------------------------------- */
.poyon-hidden {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

.poyon-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.fuwa-hidden {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.fuwa-visible {
  opacity: 1;
}

/* ---------------------------------------------------------
背景画像をぽよよん
--------------------------------------------------------- */
.bg-zoom:hover {
  opacity: 1;
}
.bg-zoom::after {
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 2);
  will-change: transform;
}
.bg-zoom:hover::after, .bg-zoom:focus-visible::after {
  transform: scale(1.05);
}

/* ---------------------------------------------------------
見出しポップアップ
--------------------------------------------------------- */
.pop-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 751px) {
  .pop-title {
    align-items: center;
  }
}
.pop-title:before {
  position: absolute;
  content: "";
  bottom: -0.8rem;
  left: 0;
  width: 100%;
  /* width: 43rem; */
  height: 1.9rem;
  background: url(../../images/ttl_line.png) no-repeat center/contain;
}
@media screen and (max-width: 751px) {
  .pop-title:before {
    height: 1rem;
    bottom: -0.3rem;
  }
}

.pop-title .en {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: opacity 0.5s cubic-bezier(0.4, 2, 0.6, 1), transform 0.5s cubic-bezier(0.4, 2, 0.6, 1);
}
@media screen and (max-width: 751px) {
  .pop-title .en {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}

.pop-title .en.visible {
  opacity: 1;
  transform: translateY(0) scale(1.04);
  transition: opacity 0.5s cubic-bezier(0.4, 2, 0.6, 1), transform 0.5s cubic-bezier(0.4, 2, 0.6, 1);
}

.pop-title .ja {
  font-size: 5rem;
  font-weight: 700;
  letter-spacing: -0.1em;
}
@media screen and (max-width: 751px) {
  .pop-title .ja {
    font-size: 2.6rem;
  }
}

.pop-title .ja span {
  opacity: 0;
  transform: translateY(20px);
  display: inline-block;
  transition: opacity 0.3s, transform 0.3s;
}

.pop-title .ja.visible span {
  animation: popIn 0.4s forwards;
}

.pop-title .ja.visible span {
  animation-delay: calc(var(--i) * 0.07s);
  /* 遅延は1文字ずつのみ */
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ---------------------------------------------------------
見出し個別調整
--------------------------------------------------------- */
.sec01 .pop-title:before {
  background: url(../../images/ttl_line.png) no-repeat center/contain;
  background-position-x: left;
}
@media screen and (max-width: 751px) {
  .sec01 .pop-title:before {
    background-position-x: center;
  }
}
.sec01 .pop-title .en {
  letter-spacing: 0.165em;
  margin-left: 0.7rem;
  /* -13/1000 */
  /* 1/1000 */
  /* 6/1000 */
  /* -3/1000 */
  /* 0/1000 */
}
.sec01 .pop-title .en span:nth-child(2) {
  margin-left: -0.013em;
}
.sec01 .pop-title .en span:nth-child(3) {
  margin-left: 0.001em;
}
.sec01 .pop-title .en span:nth-child(4) {
  margin-left: 0.006em;
}
.sec01 .pop-title .en span:nth-child(5) {
  margin-left: -0.003em;
}
.sec01 .pop-title .en span:nth-child(6) {
  margin-left: 0em;
}
.sec01 .pop-title .ja { /* -74/1000 em */
  /* -61/1000 em */
  /* -92/1000 em */
  /* -199/1000 em */
  /* -165/1000 em */
  /* -151/1000 em */
  /* -307/1000 em */
  /* -297/1000 em */
  /* 0 */
}
.sec01 .pop-title .ja span:nth-child(2) {
  margin-left: -0.074em;
}
.sec01 .pop-title .ja span:nth-child(3) {
  margin-left: -0.061em;
}
.sec01 .pop-title .ja span:nth-child(4) {
  margin-left: -0.092em;
}
.sec01 .pop-title .ja span:nth-child(5) {
  margin-left: -0.199em;
}
.sec01 .pop-title .ja span:nth-child(6) {
  margin-left: -0.165em;
}
.sec01 .pop-title .ja span:nth-child(7) {
  margin-left: -0.151em;
}
.sec01 .pop-title .ja span:nth-child(8) {
  margin-left: -0.307em;
}
.sec01 .pop-title .ja span:nth-child(9) {
  margin-left: -0.297em;
}
.sec01 .pop-title .ja span:nth-child(10) {
  margin-left: 0em;
}

.sec02 .pop-title:before {
  background: url(../../images/ttl_line__sec02.png) no-repeat center/contain;
}
@media screen and (max-width: 751px) {
  .sec02 .pop-title:before {
    height: 1rem;
  }
}
.sec02 .pop-title .en {
  letter-spacing: 0.165em;
  margin-bottom: 1.6rem;
  margin-bottom: 1.5rem;
  /* -13/1000 */
  /* 1/1000 */
  /* 6/1000 */
}
.sec02 .pop-title .en span:nth-child(2) {
  margin-left: 0.02em;
}
.sec02 .pop-title .en span:nth-child(3) {
  margin-left: -0.003em;
}
.sec02 .pop-title .en span:nth-child(4) {
  margin-left: -0.018em;
}
.sec02 .pop-title .ja { /* -74/1000 em */
  /* -61/1000 em */
  /* -92/1000 em */
}
.sec02 .pop-title .ja span:nth-child(2) {
  margin-left: -0.032em;
}
.sec02 .pop-title .ja span:nth-child(3) {
  margin-left: -0.09em;
}
.sec02 .pop-title .ja span:nth-child(4) {
  margin-left: -0.124em;
}

.sec03 .pop-title:before {
  background: url(../../images/ttl_line__sec03.png) no-repeat center/contain;
}
.sec03 .pop-title .en {
  letter-spacing: 0.165em;
  margin-bottom: 1.6rem;
  /* -13/1000 */
  /* 1/1000 */
  /* 6/1000 */
  /* -3/1000 */
  /* 0/1000 */
}
.sec03 .pop-title .en span:nth-child(2) {
  margin-left: -0.013em;
}
.sec03 .pop-title .en span:nth-child(3) {
  margin-left: 0.001em;
}
.sec03 .pop-title .en span:nth-child(4) {
  margin-left: 0.006em;
}
.sec03 .pop-title .en span:nth-child(5) {
  margin-left: -0.003em;
}
.sec03 .pop-title .en span:nth-child(6) {
  margin-left: 0em;
}
.sec03 .pop-title .ja {
  letter-spacing: -0.12em;
  /* -74/1000 em */
  /* -61/1000 em */
  /* -92/1000 em */
  /* -199/1000 em */
  /* -165/1000 em */
  /* -151/1000 em */
  /* -307/1000 em */
  /* -307/1000 em */
  /* -297/1000 em */
  /* 0 */
}
.sec03 .pop-title .ja span:nth-child(2) {
  margin-left: -0.104em;
}
.sec03 .pop-title .ja span:nth-child(3) {
  margin-left: -0.177em;
}
.sec03 .pop-title .ja span:nth-child(4) {
  margin-left: -0.163em;
}
.sec03 .pop-title .ja span:nth-child(5) {
  margin-left: 0;
  font-size: 0.76em;
}
.sec03 .pop-title .ja span:nth-child(6) {
  margin-left: 0;
}
.sec03 .pop-title .ja span:nth-child(7) {
  margin-left: -0.113em;
}
.sec03 .pop-title .ja span:nth-child(8) {
  margin-left: -0.13em;
}
.sec03 .pop-title .ja span:nth-child(9) {
  margin-left: -0.143em;
}
.sec03 .pop-title .ja span:nth-child(10) {
  margin-left: -0.231em;
}
.sec03 .pop-title .ja span:nth-child(11) {
  margin-left: 0em;
}

.sec05 .pop-title:before {
  background: url(../../images/ttl_line__sec05.png) no-repeat center/contain;
}
.sec05 .pop-title .en {
  letter-spacing: 0.165em;
  margin-bottom: 1.2rem;
  /* -13/1000 */
  /* 1/1000 */
  /* 6/1000 */
  /* -3/1000 */
  /* 0/1000 */
  /* 0/1000 */
  /* 0/1000 */
  /* 0/1000 */
}
.sec05 .pop-title .en span:nth-child(2) {
  margin-left: 0;
}
.sec05 .pop-title .en span:nth-child(3) {
  margin-left: 0.02em;
}
.sec05 .pop-title .en span:nth-child(4) {
  margin-left: 0;
}
.sec05 .pop-title .en span:nth-child(5) {
  margin-left: 0;
}
.sec05 .pop-title .en span:nth-child(6) {
  margin-left: 0.01em;
}
.sec05 .pop-title .en span:nth-child(7) {
  margin-left: -0.005em;
}
.sec05 .pop-title .en span:nth-child(8) {
  margin-left: 0.02em;
}
.sec05 .pop-title .en span:nth-child(9) {
  margin-left: 0em;
}
.sec05 .pop-title .ja { /* -74/1000 em */
  /* -61/1000 em */
  /* -92/1000 em */
  /* -199/1000 em */
  /* -165/1000 em */
  /* -151/1000 em */
  /* -307/1000 em */
  /* -297/1000 em */
  /* 0 */
}
.sec05 .pop-title .ja span:nth-child(2) {
  margin-left: -0.062em;
}
.sec05 .pop-title .ja span:nth-child(3) {
  margin-left: -0.144em;
}
.sec05 .pop-title .ja span:nth-child(4) {
  margin-left: -0.093em;
}
.sec05 .pop-title .ja span:nth-child(5) {
  margin-left: -0.105em;
}
.sec05 .pop-title .ja span:nth-child(6) {
  margin-left: -0.164em;
}
.sec05 .pop-title .ja span:nth-child(7) {
  margin-left: -0.094em;
}
.sec05 .pop-title .ja span:nth-child(8) {
  margin-left: -0.148em;
}
.sec05 .pop-title .ja span:nth-child(9) {
  margin-left: -0.129em;
}
.sec05 .pop-title .ja span:nth-child(10) {
  margin-left: 0em;
}

/* ---------------------------------------------------------
動く矢印
--------------------------------------------------------- */
.icon-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}

.icon-bg {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #fff23f;
  z-index: -1;
  transition: transform 0.4s cubic-bezier(0.68, -0.6, 0.32, 2);
}

.icon-arrow {
  position: relative;
  left: 0;
  opacity: 1;
  transition: none;
  width: 49%;
  padding-left: 0.5rem;
}

.btn-arrow-loop .icon-arrow {
  transition: none;
}

@media print, screen and (min-width: 750px) {
  .btn-arrow-loop:hover .icon-arrow {
    animation: arrow-loop 0.6s cubic-bezier(0.22, 1, 0.36, 1) 1;
  }
}

.btn-arrow-loop:hover .icon-bg {
  transform: scale(1.15);
}

@keyframes arrow-loop {
  0% {
    left: 0;
    opacity: 1;
  }
  40% {
    left: 18px;
    opacity: 0;
  }
  41% {
    left: -18px;
    opacity: 0;
  }
  80% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
/* ---------------------------------------------------------
  sec05 ポップアップアニメーション
    --------------------------------------------------------- */
.sec05__f-cont {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
  transition: opacity 0.6s cubic-bezier(0.4, 2, 0.6, 1), transform 0.6s cubic-bezier(0.4, 2, 0.6, 1);
}

.sec05__f-cont.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------------------------------------------------------
  illust ぽよんアニメーション
--------------------------------------------------------- */
.sec01__illust {
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

.sec01__illustbg {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.sec01__illust.visible,
.sec01__illustbg.visible {
  opacity: 1;
}

/* ---------------------------------------------------------
  ふわふわ
--------------------------------------------------------- */
.fuwafuwa {
  animation: floating 1.5s ease-in-out infinite alternate;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-15px);
  }
}
.fuwabase {
  position: relative;
  z-index: 1;
}

.fuwafuwa.sec02_1 {
  width: 22rem;
  position: absolute;
  top: 14rem;
  left: calc(50% - 67rem);
  animation-delay: 0s;
}
@media screen and (max-width: 751px) {
  .fuwafuwa.sec02_1 {
    width: 10rem;
    top: -8rem;
    left: 0;
  }
}

.fuwafuwa.sec02_2 {
  width: 20rem;
  position: absolute;
  top: 61rem;
  left: calc(50% + 56rem);
  animation-delay: 1.2s;
}
@media screen and (max-width: 1555px) {
  .fuwafuwa.sec02_2 {
    width: 13rem;
    top: -2rem;
    left: auto;
    right: 0;
  }
}

.fuwafuwa.sec03_1 {
  width: 28rem;
  position: absolute;
  top: 25rem;
  left: calc(50% + 44.5rem);
  animation-delay: 0.8s;
  z-index: 1;
}
@media screen and (max-width: 1350px) {
  .fuwafuwa.sec03_1 {
    left: auto;
    right: 0;
    width: 23rem;
  }
}
@media screen and (max-width: 751px) {
  .fuwafuwa.sec03_1 {
    width: 11rem;
    right: 4rem;
    z-index: 1;
    top: -8rem;
  }
}

.fuwafuwa.sec03_2 {
  width: 20rem;
  position: absolute;
  top: 164rem;
  left: calc(50% - 76rem);
  animation-delay: 0.3s;
}

.fuwafuwa.sec03_3 {
  width: 13rem;
  position: absolute;
  top: 201rem;
  left: calc(50% + 51rem);
  animation-delay: 1.8s;
}
@media screen and (max-width: 1320px) {
  .fuwafuwa.sec03_3 {
    width: 6rem;
    top: 225rem;
    left: auto;
    right: 7rem;
  }
}

.fuwafuwa.sec04_1 {
  width: 24rem;
  position: absolute;
  top: -7rem;
  left: calc(50% - 40rem);
  animation-delay: 0.8s;
  z-index: 1;
}
@media screen and (max-width: 751px) {
  .fuwafuwa.sec04_1 {
    width: 15rem;
    top: 80rem;
    left: auto;
    right: 3rem;
  }
}

.fuwafuwa.sec04_2 {
  width: 17rem;
  position: absolute;
  top: 73rem;
  left: calc(50% + 32rem);
  animation-delay: 1.8s;
}
@media screen and (max-width: 751px) {
  .fuwafuwa.sec04_2 {
    left: 3rem;
    width: 11rem;
    top: -9rem;
  }
}

.fuwafuwa.sec05_1 {
  width: 20rem;
  position: absolute;
  top: 14rem;
  left: calc(50% - 64rem);
  animation-delay: 0.3s;
}
@media screen and (max-width: 751px) {
  .fuwafuwa.sec05_1 {
    top: 242rem;
    /* top: auto; */
    left: -4rem;
    animation-delay: 0.3s;
  }
}

.fuwafuwa.sec05_2 {
  width: 13rem;
  position: absolute;
  top: 83rem;
  left: calc(50% + 71rem);
  animation-delay: 1.8s;
}
@media screen and (max-width: 1700px) {
  .fuwafuwa.sec05_2 {
    left: auto;
    right: 0;
    top: 120rem;
  }
}
@media screen and (max-width: 751px) {
  .fuwafuwa.sec05_2 {
    left: auto;
    right: 10rem;
    top: 234rem;
    width: 8rem;
  }
}

/**
 * SCSS メインスタイルファイル
 * ページ固有のスタイルとレイアウト
 */
.page-quiz .w1000 {
  width: calc(100% - 2rem);
}

.page-quiz__pageTTL {
  position: relative;
  display: block;
  max-width: 46.5rem;
  width: 70%;
  height: 20.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 751px) {
  .page-quiz__pageTTL {
    height: 16.4rem;
  }
}
.page-quiz__pageTTL img {
  position: absolute;
  top: 0;
  left: 0.7rem;
  width: auto;
  height: 24rem;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 751px) {
  .page-quiz__pageTTL img {
    top: 3.2rem;
    height: 16rem;
    max-width: unset;
  }
}

.quiz-box {
  font-family: "Zen Maru Gothic", sans-serif;
  border: 4px solid #00afe5;
  border-radius: 5rem;
  margin: 2rem 0;
  text-align: center;
  background: #fff;
  box-shadow: 12px 12px 0 #00afe5;
}
.quiz-box .nam {
  font-size: 3rem;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
  background: #fff23f;
  border-radius: 4.6rem 4.6rem 0 0;
  padding: 1.7rem 0 1rem;
  font-weight: 700;
}
@media screen and (max-width: 751px) {
  .quiz-box .nam {
    font-size: 2rem;
    padding: 2rem 0 1rem;
  }
}

.quiz-question {
  font-size: 3rem;
  letter-spacing: 0.13em;
  line-height: 2.14;
  margin-bottom: 4rem;
  margin-top: 4.5rem;
}
@media screen and (max-width: 751px) {
  .quiz-question {
    font-size: 1.6rem;
    margin-bottom: 4rem;
    margin-top: 4.5rem;
  }
}
.quiz-question h3 {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.quiz-question h3 span {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.quiz-question h3 span::after {
  content: "";
  position: absolute;
  bottom: 0.4em;
  left: 0;
  width: 100%;
  height: 0.5em;
  background-color: #fff23f;
  z-index: -1;
}

.quiz-choices {
  margin-bottom: 2rem;
}

.choice-item {
  position: relative;
  font-size: 2.2rem;
  color: #fff;
  background-color: #00afe5;
  border-radius: 11rem;
  padding: 1.2rem 2rem 1rem 8rem;
  letter-spacing: 0.07em;
  margin: 0 auto;
  margin-bottom: 2rem;
  display: block;
  width: 75%;
  max-width: 46rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 751px) {
  .choice-item {
    font-size: 1.8rem;
    padding: 1rem 1rem 0.9rem 5.5rem;
    margin-bottom: 2rem;
    width: 80%;
  }
}
.choice-item.clicked {
  color: #00afe5;
  background-color: #fff23f;
}
.choice-item.clicked span {
  background-color: #00afe5;
  color: #fff;
}
.choice-item span {
  position: absolute;
  top: 49%;
  left: 1.4rem;
  transform: translate(0, -48%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #00afe5;
  font-weight: bold;
  width: 4rem;
  height: 4rem;
  padding-bottom: 0.4rem;
  border-radius: 3.5rem;
  background-color: #ffff00;
}
@media screen and (max-width: 751px) {
  .choice-item span {
    width: 3rem;
    height: 3rem;
    top: 49%;
    left: 1.2rem;
  }
}

.quiz-answer {
  display: none;
}
.quiz-answer.show {
  display: block;
}
.quiz-answer button {
  background: transparent;
  border: 3px solid #00afe5;
  box-shadow: 0 5px 0 #00afe5;
  padding: 0.7rem 2rem;
  font-size: 2rem;
  cursor: pointer;
  color: #00afe5;
  border-radius: 2em;
  width: 12.5em;
  margin-top: 33px;
}
@media screen and (max-width: 751px) {
  .quiz-answer button {
    font-size: 1.4rem;
  }
}
.quiz-answer button:hover {
  background-color: #fff23f;
  color: #00afe5;
}

.answer-box {
  width: 80%;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 7rem;
  background-color: #fffab4;
  border-radius: 2rem;
  color: #00afe5;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (max-width: 751px) {
  .answer-box {
    width: 90%;
    margin-top: 0;
  }
}
.answer-box__ttl {
  position: relative;
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  font-weight: bold;
  margin: 0 auto;
  background: #fff;
  width: 86%;
  border-radius: 3em;
  padding: 1.5rem 0 1.3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 751px) {
  .answer-box__ttl {
    font-size: 1.8rem;
    padding: 1.4rem 0;
  }
}
.answer-box__ttl span:first-child {
  color: #00afe5;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  top: -1.7rem;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 751px) {
  .answer-box__ttl span:first-child {
    font-size: 1.2rem;
    top: -1.3rem;
  }
}
.answer-box__ttl .en {
  background: #fff23f;
  font-size: 2rem;
  padding: 0.2rem 0.9rem 0.5rem 1.1rem;
  border-radius: 3em;
  line-height: 1;
  margin-right: 0.8rem;
}
@media screen and (max-width: 751px) {
  .answer-box__ttl .en {
    font-size: 1.4rem;
    padding: 0 0.6rem 0.3rem 0.8rem;
  }
}
.answer-box__txt {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2;
  text-align: left;
}
@media screen and (max-width: 751px) {
  .answer-box__txt {
    font-size: 1.5rem;
  }
}
.answer-box.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  max-height: 1000px;
  padding: 4rem 5rem;
}
@media screen and (max-width: 751px) {
  .answer-box.show {
    margin-bottom: 4rem;
    padding: 3rem 2rem;
    margin-top: 5rem;
  }
}

@media print, screen and (min-width: 750px) {
  .pc-1-3rem {
    line-height: 1.3;
  }
  .pc-l2f3 {
    line-height: 2.4;
    text-align: left;
    padding: 4rem 0;
    padding-left: 3.5rem;
    /* font-size: 3rem; */
  }
  .pc-long {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 751px) {
  .sp-f-s {
    font-size: 1.58rem;
  }
  .sp-seikaiBOx {
    font-size: 1.5rem;
    width: 100%;
    text-align-last: left;
    padding-left: 1.3em;
    line-height: 2.5;
  }
  .sp-seikaiBOx2 {
    font-size: 1.1rem;
  }
}
.quiz-swiper {
  width: 100%;
  height: auto;
  padding: 20px 0 60px;
}
.quiz-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0 20px;
}
@media screen and (max-width: 751px) {
  .quiz-swiper .swiper-slide {
    padding: 0 1.8rem;
  }
}
.quiz-swiper .swiper-slide .quiz-box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media print, screen and (min-width: 750px) {
  .quiz-swiper .swiper-slide .quiz-box {
    width: 65%;
  }
}
.quiz-swiper .swiper-button-next,
.quiz-swiper .swiper-button-prev {
  color: #007bff;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  margin-top: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  top: 33rem;
}
@media screen and (max-width: 751px) {
  .quiz-swiper .swiper-button-next,
  .quiz-swiper .swiper-button-prev {
    width: 4rem;
    height: 4rem;
    top: 27rem;
  }
}
.quiz-swiper .swiper-button-next:hover,
.quiz-swiper .swiper-button-prev:hover {
  background: rgb(255, 255, 255);
}
.quiz-swiper .swiper-button-next:after,
.quiz-swiper .swiper-button-prev:after {
  font-size: 0;
}
.quiz-swiper .swiper-button-next {
  right: 10rem;
}
@media screen and (max-width: 751px) {
  .quiz-swiper .swiper-button-next {
    right: 0;
  }
}
.quiz-swiper .swiper-button-next img {
  transform: rotate(180deg);
}
.quiz-swiper .swiper-button-prev {
  left: 10rem;
}
@media screen and (max-width: 751px) {
  .quiz-swiper .swiper-button-prev {
    left: 0;
  }
}

:root {
  --ok: #2fb75e;
  --ng: #e84a5f;
}

.page-matigaisagashi .game-lead__wrap {
  margin: 3em 0 3rem;
}
.page-matigaisagashi p.game-lead {
  text-align: center;
  font-size: 2rem;
  letter-spacing: 0.02em;
  color: #ee528e;
  line-height: 2.5;
  font-weight: 700;
}
@media screen and (max-width: 751px) {
  .page-matigaisagashi p.game-lead {
    font-size: 1.6rem;
  }
}
.page-matigaisagashi .game-answer {
  display: none;
  text-align: center;
  font-size: 1.8rem;
  color: #ee528e;
}
.page-matigaisagashi .game-answer h4 {
  margin: 1.5em 0 0.5em;
}
.page-matigaisagashi .game-answer p {
  margin-bottom: 1em;
}
.page-matigaisagashi .page-quiz__pageTTL {
  height: 22.5rem;
}
@media screen and (max-width: 751px) {
  .page-matigaisagashi .page-quiz__pageTTL {
    height: 18rem;
  }
}

.game-image-area {
  position: relative;
  width: 100%;
  max-width: 60rem;
  margin: 0 auto;
}

.game-image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* マーカー（正解） */
.marker {
  position: absolute;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.marker--ok {
  width: 10rem;
  height: 10rem;
  border-radius: 999px;
  border: 6px solid var(--ok);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
  background: rgba(47, 183, 94, 0.08);
  animation: pop 0.18s ease-out;
}

/* マーカー（不正解） */
.marker--ng {
  width: 6rem;
  height: 6rem;
  animation: fadeOut 0.6s ease-out forwards;
}

.marker--ng::before, .marker--ng::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.6rem;
  height: 6rem;
  background: var(--ng);
  border-radius: 0.3rem;
  transform-origin: center;
}

.marker--ng::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.marker--ng::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@keyframes pop {
  from {
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.2;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.85);
  }
}/*# sourceMappingURL=style.css.map */