@charset "UTF-8";
/* ===============================================
コンテナ―
=============================================== */
.l-container {
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .l-container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    max-width: 100%;
  }
}
.l-container__bg {
  background: #7EB9E3;
}
.l-container__bg--01 {
  background: #209F00;
}
.l-container__bg--02 {
  background: #083F8E;
}
.l-container__bg--03 {
  background: #B90000;
}
.l-container--bg {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  background: #fff;
  padding: 70px 0 190px;
}
@media screen and (max-width: 767px) {
  .l-container--bg {
    padding: 20px 0 140px;
    max-width: 90%;
  }
}

/* セクションレイアウト
----------------------- */
/* ===============================================
ディスプレイ
=============================================== */
/* 共通設定
----------------------- */
* {
  box-sizing: border-box;
}

body {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #231815;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

main {
  background: #fff;
  width: 100%;
}

/* リンク
----------------------- */
.f-link {
  width: 100%;
  height: 100%;
  display: block;
  transition: 0.3s;
}
.f-link:hover {
  transition: 0.3s;
  opacity: 0.7;
}

/* 画像
----------------------- */
.f-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* ボタン
----------------------- */
.c-btn {
  width: 370px;
  height: 60px;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 330px;
  }
}
.c-btn--big {
  height: 80px;
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-btn--big {
    width: 90%;
  }
}
.c-btn__link {
  border-radius: 7px;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center start;
  position: relative;
  padding-left: 20px;
  font-size: 22px;
  font-family: "M PLUS 1", sans-serif;
  transition: 0.4s;
  z-index: 1;
  overflow: hidden;
}
.c-btn__link:hover {
  transition: 0.4s;
}
@media screen and (max-width: 767px) {
  .c-btn__link {
    font-size: 18px;
  }
}
.c-btn__link .icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 1.2em;
}
.c-btn__link--blue {
  background: #083F8E;
  color: #fff;
}
.c-btn__link--red {
  background: #B90000;
  color: #fff;
}
.c-btn__link--white {
  background: #fff;
  color: #231815;
}
.c-btn__link--white .icon {
  color: #209F00;
}
.c-btn__link::after {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.c-btn__link:hover {
  color: #fff;
}
.c-btn__link:hover .icon {
  color: yellow;
}
.c-btn__link:hover::after {
  transform: scale(1, 1);
}

.c-btn-top {
  text-align: center;
  margin: 60px 0;
}
.c-btn-top--mrg {
  margin: 90x 0;
}
@media screen and (max-width: 767px) {
  .c-btn-top {
    margin: 40px 0;
  }
}
.c-btn-top__link {
  display: inline-block;
  transition: 0.3s;
}
.c-btn-top__link:hover {
  transition: 0.3s;
  opacity: 0.6;
}
.c-btn-top__link .inner {
  position: relative;
  font-size: 24px;
  font-family: "M PLUS 1", sans-serif;
  padding-left: 25px;
}
@media screen and (max-width: 767px) {
  .c-btn-top__link .inner {
    font-size: 16px;
    padding-left: 16px;
  }
}
.c-btn-top__link .inner::before {
  position: absolute;
  content: "\f0da";
  font-family: "fontawesome";
  font-weight: 900;
  top: -8px;
  left: 0px;
  font-size: 1.4em;
  color: #209F00;
}
@media screen and (max-width: 767px) {
  .c-btn-top__link .inner::before {
    top: -6px;
  }
}

/* タイトル
----------------------- */
.c-title__black {
  color: #fff;
  display: inline-block;
  font-size: 24px;
  font-family: "M PLUS 1", sans-serif;
  padding: 10px 0;
  border-radius: 5px;
  background: #231815;
  width: 70%;
  margin: 0 auto;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title__black {
    padding: 5px 20px;
    font-size: 18px;
  }
}
.c-title__marker-underline {
  border-bottom: 3px solid #F2F2F2;
}
.c-title__marker {
  font-size: 24px;
  font-weight: 700;
  padding: 10px 0 10px 40px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-title__marker {
    font-size: 18px;
    padding: 10px 0 12px 34px;
  }
}
.c-title__marker::before {
  position: absolute;
  content: "";
  background: #209F00;
  width: 8px;
  height: 50px;
  border-radius: 5px;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
}
@media screen and (max-width: 767px) {
  .c-title__marker::before {
    height: 30px;
    width: 6px;
  }
}
.c-title__marker--blue::before {
  background: #083F8E;
}
@media screen and (max-width: 767px) {
  .c-title__marker--short {
    font-size: 16px;
    line-height: 1.4;
    padding: 3px 0 3px 32px;
    height: 30px;
    margin-bottom: 5px;
  }
  .c-title__marker--short::before {
    width: 5px;
    height: 30px;
  }
}

/* ロゴ
----------------------- */
/* Inview
----------------------- */
.fadeIn {
  opacity: 0;
  transition: 3s;
}

.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_kv02 {
  opacity: 0;
  transition: opacity 1s, transform 0.5s;
  transform: translateY(0px);
}

.fadeIn_kv02.is-show {
  opacity: 1;
  transform: translateY(-10px);
}

.fadeIn_kv03 {
  opacity: 0;
  transition: opacity 1, transform 0.5s;
  transform: translateY(0px);
}

.fadeIn_kv03.is-show {
  opacity: 1;
  transform: translateY(-10px);
  transition-delay: 0.3s;
}

.fadeIn_kv04 {
  opacity: 0;
  transition: 2s;
}

.fadeIn_kv04.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2.5s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2.5s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* アニメーション
----------------------- */
@keyframes yurayuraKV {
  0% {
    transform: translateY(calc(-50% + 50px)) translateX(-50%);
  }
  50% {
    transform: translateY(calc(-50% + 45px)) translateX(-50%);
  }
  0%, 100% {
    transform: translateY(calc(-50% + 50px)) translateX(-50%);
  }
}
@keyframes yurayura {
  0%, 100% {
    transform: translatey(10px);
  }
  50% {
    transform: translatey(0px);
  }
}
@keyframes yurayura02 {
  0%, 100% {
    transform: translatey(5px);
  }
  50% {
    transform: translatey(0px);
  }
}
/* モーダル
----------------------- */
.c-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  overflow-y: auto;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
.c-modal__content {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 8px;
  max-width: 860px;
  width: 80%;
  border: 5px solid #F6E355;
  cursor: default;
  overflow-y: auto;
}
@media screen and (max-width: 767px) {
  .c-modal__content {
    width: 90%;
  }
}
.c-modal__close {
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
  background: #F6E355;
  width: 360px;
  margin: 20px auto;
  height: 60px;
  border-radius: 10px;
  position: relative;
  padding-left: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-modal__close {
    width: 90%;
    font-size: 16px;
  }
}
.c-modal__close::after {
  position: absolute;
  content: "\f057";
  font-family: "fontawesome";
  font-weight: 900;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.3em;
}
.c-modal__close:hover {
  background: #231815;
  transition: 0.3s;
  color: #fff;
}

/* テーブル
----------------------- */
@media screen and (max-width: 767px) {
  .c-table__scroll {
    overflow-x: auto;
    padding-bottom: 16px;
  }
}
.c-table__score {
  width: 100%;
  min-width: 600px;
}
@media screen and (max-width: 767px) {
  .c-table__score {
    font-size: 13px;
    min-width: 100%;
  }
}
.c-table__score tr:nth-child(odd) {
  background: #F2F2F2;
}
.c-table__score th,
.c-table__score td {
  border: 3px solid #fff;
  vertical-align: middle;
}
.c-table__score th {
  background: #F6E355;
  text-align: center;
  white-space: nowrap;
  padding: 0 10px;
  height: 40px;
}
@media screen and (max-width: 767px) {
  .c-table__score th {
    padding: 0 5px;
    white-space: normal;
  }
}
.c-table__score td {
  padding: 10px 10px;
  text-align: center;
}
.c-table__score td:nth-child(2) {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-table__score td {
    padding: 6px 6px;
  }
  .c-table__score td:nth-child(2) {
    width: 120px;
  }
  .c-table__score td:nth-child(3), .c-table__score td:nth-child(5) {
    width: 80px;
  }
  .c-table__score td:nth-child(1), .c-table__score td:nth-child(4) {
    width: 24px;
  }
}

/* お問い合わせフォーム
----------------------- */
.c-form {
  max-width: 800px;
  margin: 0 auto;
}
.c-form__title {
  font-size: 20px;
  margin: 10px 0;
}
@media screen and (max-width: 767px) {
  .c-form__title {
    font-size: 16px;
  }
}
.c-form__title .require {
  font-size: 0.7em;
  background: #B90000;
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-form__title .require {
    padding: 0px 10px;
    font-size: 0.8em;
    margin-left: 10px;
  }
}
.c-form__title .require--no {
  background: #209F00;
}
.c-form__double {
  display: flex;
  column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .c-form__double {
    column-gap: 10px;
  }
}
.c-form__item {
  margin-bottom: 24px;
}
.c-form input,
.c-form select,
.c-form textarea {
  background: #FEFFED;
  border: 1px solid #ccc;
  width: 100%;
  padding: 10px;
}
.c-form input,
.c-form select {
  height: 50px;
}
.c-form input.short,
.c-form select.short {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  .c-form input.short,
  .c-form select.short {
    width: 100%;
  }
}
.c-form select {
  cursor: pointer;
  font-weight: 900;
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;
  transition: 0.3s;
  font-size: 1.2em;
}
.c-form select:hover {
  background: rgb(250, 255, 164);
  transition: 0.3s;
}
.c-form select option {
  background: #fff;
  width: 100%;
}
.c-form textarea {
  height: 200px;
}
.c-form ::placeholder {
  color: rgb(167, 167, 167);
}
.c-form__btnarea {
  margin: 60px auto;
  text-align: center;
}

/* ===============================================
ヘッダー
=============================================== */
.p-header {
  position: relative;
  z-index: 999;
}
.p-header__top {
  position: relative;
  top: 0;
  left: 0;
  background: #fff;
  height: 140px;
  width: 100%;
  display: grid;
  place-content: center start;
  place-items: center start;
  border-bottom: 3px solid #F2F2F2;
}
@media screen and (max-width: 767px) {
  .p-header__top {
    height: 85px;
  }
}
.p-header__logo {
  height: 70%;
  padding-left: 40px;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    height: 70px;
    width: 280px;
    padding-left: 5%;
  }
}
.p-header__menu {
  position: fixed;
  top: 0px;
  right: 0px;
}
.p-header__hamburger {
  position: absolute;
  width: 96px;
  height: 96px;
  cursor: pointer;
  background: #209F00;
  color: #fff;
  border-radius: 10px;
  z-index: 999;
  top: 20px;
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.2));
  right: 30px;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    top: 10px;
    right: 10px;
  }
}
.p-header__hamburger span.hamburger-span {
  position: absolute;
  display: block;
  width: 60px;
  height: 6px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span.hamburger-span {
    width: 45px;
    height: 4px;
  }
}
.p-header__hamburger span.hamburger-span:nth-child(1) {
  top: 33px;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span.hamburger-span:nth-child(1) {
    top: 20px;
  }
}
.p-header__hamburger span.hamburger-span:nth-child(2) {
  top: 16px;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span.hamburger-span:nth-child(2) {
    top: 10px;
  }
}
.p-header__hamburger span.hamburger-span:nth-child(3) {
  bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span.hamburger-span:nth-child(3) {
    top: 30px;
  }
}
.p-header__hamburger span.menu {
  font-family: "M PLUS 1", sans-serif;
  font-weight: 600;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger span.menu {
    font-size: 14px;
  }
}
.p-header__hamburger.is-open {
  background: #fff;
  color: #209F00;
}
.p-header__hamburger.is-open span.hamburger-span {
  background: #209F00;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger.is-open span.hamburger-span {
    width: 35px;
    height: 4px;
  }
}
.p-header__hamburger.is-open span.hamburger-span:nth-child(1) {
  opacity: 0;
}
.p-header__hamburger.is-open span.hamburger-span:nth-child(2) {
  top: 30px;
  transform: rotate(-45deg);
  left: 20%;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger.is-open span.hamburger-span:nth-child(2) {
    top: 20px;
    left: 22%;
  }
}
.p-header__hamburger.is-open span.hamburger-span:nth-child(3) {
  bottom: 58px;
  transform: rotate(45deg);
  left: 20%;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger.is-open span.hamburger-span:nth-child(3) {
    top: 20px;
    left: 22%;
  }
}
.p-header__list {
  position: absolute;
  right: -630px;
  top: 0;
  transition: 0.4s;
  width: 630px;
  opacity: 0;
  z-index: 0;
  background: #209F00;
  color: #fff;
  height: 100dvh;
  filter: drop-shadow(-6px 6px 4px rgba(0, 0, 0, 0.2));
  padding: 100px 63px 0;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .p-header__list {
    width: 80vw;
    font-size: 16px;
    padding: 80px 30px 0;
  }
}
.p-header__list.is-open {
  right: 0;
  opacity: 1;
}
.p-header__item {
  margin-bottom: 20px;
}
.p-header__link {
  position: relative;
  width: 100%;
  display: block;
}
.p-header__link::after {
  background-color: #fff;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
  width: 100%;
}
.p-header__link:hover::after {
  transform: scale(1, 1);
}

/* ===============================================
キ－ビジュアル
=============================================== */
.p-kv {
  position: relative;
  width: 100%;
  height: 800px;
  z-index: 10;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0, #fff 98%, #209F00 98%, #209F00 100%);
}
@media screen and (max-width: 1280px) {
  .p-kv {
    height: 960px;
    background: linear-gradient(180deg, #fff 0, #fff 90%, #209F00 90%, #209F00 100%);
  }
}
@media screen and (max-width: 767px) {
  .p-kv {
    height: 780px;
  }
}
.p-kv__banner {
  position: absolute;
  width: 288px;
  height: 81px;
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 767px) {
  .p-kv__banner {
    top: 10px;
    left: 10px;
  }
}
.p-kv__btn {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%) translateX(580px);
  width: 188px;
  height: 188px;
  z-index: 90;
}
@media screen and (max-width: 1600px) {
  .p-kv__btn {
    top: 190px;
    right: 80px;
    left: auto;
    transform: translateX(0);
  }
}
@media screen and (max-width: 1280px) {
  .p-kv__btn {
    top: 300px;
    right: 30px;
    width: 160px;
    height: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__btn {
    width: 110px;
    height: 110px;
    top: 215px;
    right: 3%;
  }
}
.p-kv__btn-link {
  background: #EA6188;
  border-radius: 50%;
  display: grid;
  place-content: center;
  place-items: center;
  filter: drop-shadow(4px 4px 2px rgba(0, 0, 0, 0.3));
  border: 4px solid #fff;
}
.p-kv__btn-link:hover {
  background: #FF8AB1;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-kv__btn-link {
    padding: 6%;
    border: 2px solid #fff;
  }
}
@media screen and (max-width: 1280px) {
  .p-kv__btn-img {
    width: 95%;
  }
}
.p-kv__subcopy {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 27px;
  font-family: "M PLUS 1", sans-serif;
  top: 40px;
}
@media screen and (max-width: 1280px) {
  .p-kv__subcopy {
    top: 120px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__subcopy {
    top: 100px;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
  }
}
.p-kv__subcopy .big {
  font-size: 1.5em;
  color: #083F8E;
}
.p-kv__title {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 910px;
  height: 81px;
  z-index: 90;
}
@media screen and (max-width: 1280px) {
  .p-kv__title {
    top: 200px;
  }
}
@media screen and (max-width: 860px) {
  .p-kv__title {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__title {
    top: 145px;
  }
}
.p-kv__bg01 {
  position: absolute;
  top: 230px;
  left: 50%;
  transform: translateX(calc(-50% + 5px));
  width: 280px;
  height: 330px;
}
@media screen and (max-width: 1280px) {
  .p-kv__bg01 {
    top: 300px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__bg01 {
    top: 200px;
    width: 200px;
    height: 235px;
  }
}
.p-kv__bg01 img.animate__poyonZoomIn {
  --poyon-duration: 0.8s;
  --poyon-scale: 1.18;
  --poyon-ease: cubic-bezier(.2, .8, .2, 1);
  animation-name: poyonZoomIn;
  animation-duration: var(--poyon-duration);
  animation-timing-function: var(--poyon-ease);
}
.p-kv__bg02 {
  position: absolute;
  width: 100%;
  height: 420px;
  top: 240px;
  display: grid;
  place-content: center;
  place-items: center;
  z-index: 20;
  opacity: 0;
}
.p-kv__bg02 img {
  width: 1244px;
  height: 397px;
  object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .p-kv__bg02 {
    top: 340px;
  }
  .p-kv__bg02 img {
    width: 980px;
    height: 313px;
    object-fit: contain;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__bg02 {
    top: 190px;
  }
  .p-kv__bg02 img {
    width: 500px;
    height: 160px;
  }
}
.p-kv__bg02 img.animate__poyonZoomIn {
  --poyon-duration: 0.8s;
  --poyon-scale: 1.18;
  --poyon-ease: cubic-bezier(.2, .8, .2, 1);
  animation-name: poyonZoomIn02;
  animation-duration: var(--poyon-duration);
  animation-timing-function: var(--poyon-ease);
  transition-delay: 1s;
}
.p-kv__img03 {
  position: absolute;
  width: 100%;
  height: 411px;
  top: 370px;
  display: grid;
  place-content: center;
  place-items: center;
  z-index: 20;
  opacity: 0;
}
.p-kv__img03 img {
  width: 830px;
  height: 420px;
  object-fit: contain;
}
@media screen and (max-width: 1280px) {
  .p-kv__img03 {
    top: 500px;
  }
  .p-kv__img03 img {
    width: 720px;
    height: 364px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__img03 {
    top: 320px;
  }
  .p-kv__img03 img {
    max-width: 390px;
  }
}
.p-kv__img04 {
  position: absolute;
  width: 100%;
  top: 570px;
  display: grid;
  place-content: center;
  place-items: center;
  z-index: 30;
}
.p-kv__img04 img {
  object-fit: contain;
  width: 165px;
  height: 191px;
}
@media screen and (max-width: 1280px) {
  .p-kv__img04 {
    top: 650px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv__img04 {
    top: 520px;
  }
  .p-kv__img04 img {
    object-fit: contain;
    width: 110px;
    height: 127px;
  }
}
.p-kv__img04 p.tora {
  text-align: center;
  color: #fff;
  line-height: 1.2;
  font-size: 14px;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-kv__img04 p.tora {
    font-size: 12px;
  }
}
.p-kv::after {
  position: absolute;
  content: "";
  background: #209F00;
  width: 120%;
  height: 200px;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -100px;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .p-kv::after {
    bottom: 0px;
  }
}
@media screen and (max-width: 767px) {
  .p-kv::after {
    width: 140%;
    height: 200px;
    bottom: 0px;
  }
}

/* キーフレーム：ぽよん＋ズームイン */
@keyframes poyonZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(0);
  }
  40% {
    opacity: 0.4;
    transform: scale(var(--poyon-scale)) translateY(-22px);
    /* 上に跳ねる */
  }
  55% {
    opacity: 0.5;
    transform: scale(calc(var(--poyon-scale) - 0.03)) translateY(8px);
    /* 落ちて反動 */
  }
  70% {
    opacity: 0.7;
    transform: scale(calc(var(--poyon-scale) - 0.005)) translateY(-6px);
    /* 小さく跳ねる */
  }
  100% {
    transform: scale(1) translateY(0);
    /* 落ち着く */
    opacity: 1;
  }
}
@keyframes poyonZoomIn02 {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(0);
    transition-delay: 1s;
  }
  40% {
    opacity: 0.4;
    transform: scale(var(--poyon-scale)) translateY(-22px);
    /* 上に跳ねる */
    transition-delay: 1s;
  }
  55% {
    opacity: 0.5;
    transform: scale(calc(var(--poyon-scale) - 0.03)) translateY(8px);
    /* 落ちて反動 */
    transition-delay: 1s;
  }
  70% {
    opacity: 0.7;
    transform: scale(calc(var(--poyon-scale) - 0.005)) translateY(-6px);
    /* 小さく跳ねる */
    transition-delay: 1s;
  }
  100% {
    transform: scale(1) translateY(0);
    /* 落ち着く */
    opacity: 1;
    transition-delay: 1s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .poyon-zoom-in,
  .poyon-zoom-in--onhover:hover {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
/* ===============================================
TOPページ：とちぎ未来ファンタジーとは
=============================================== */
.p-top-about {
  background: #209F00;
  color: #fff;
  border-top: 5px solid #209F00;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  padding-top: 50px;
}
@media screen and (max-width: 1280px) {
  .p-top-about {
    margin-top: -90px;
  }
}
@media screen and (max-width: 860px) {
  .p-top-about {
    padding-bottom: 90px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about {
    margin-top: -70px;
    padding-bottom: 60px;
    padding-top: 0px;
  }
}
.p-top-about__bg {
  position: absolute;
  content: "";
  background: url(../img/about_top-bg.png) no-repeat center center/contain;
  width: 910px;
  height: 663px;
  right: calc(50% - 830px);
  bottom: -120px;
  z-index: 50;
}
@media screen and (max-width: 860px) {
  .p-top-about__bg {
    right: calc(50% - 800px);
    bottom: -220px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__bg {
    right: calc(50% - 410px);
    bottom: -90px;
    width: 500px;
    height: 364px;
  }
}
.p-top-about__bg::before {
  position: absolute;
  background: url(../img/about_clouds01.png) no-repeat center center/contain;
  content: "";
  width: 164px;
  height: 99px;
  right: calc(50% - 220px);
  bottom: 670px;
  animation: yurayura 3s ease-in-out infinite;
}
@media screen and (max-width: 1280px) {
  .p-top-about__bg::before {
    bottom: 800px;
    right: calc(50% - 100px);
    bottom: 720px;
  }
}
.p-top-about__bg::after {
  position: absolute;
  background: url(../img/about_clouds02.png) no-repeat center center/contain;
  content: "";
  width: 111px;
  height: 67px;
  right: calc(50% + 250px);
  bottom: 520px;
  animation: yurayura02 2s ease-in-out infinite;
}
@media screen and (max-width: 1280px) {
  .p-top-about__bg::after {
    right: calc(50% + 260px);
  }
}
@media screen and (max-width: 860px) {
  .p-top-about__bg::after {
    right: calc(50% + 160px);
    bottom: 600px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__bg::after {
    right: calc(50% - 80px);
    bottom: 500px;
  }
}
.p-top-about__bg .bg-tora {
  position: absolute;
  width: 170px;
  height: 165px;
  top: -120px;
  left: 140px;
  z-index: 999;
  animation: yurayura 2s ease-in-out infinite;
  animation-delay: 0.5s;
}
@media screen and (max-width: 860px) {
  .p-top-about__bg .bg-tora {
    left: 180px;
    top: -180px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about__bg .bg-tora {
    width: 100px;
    height: 97px;
    left: 160px;
    top: -100px;
  }
}
.p-top-about__txtarea {
  position: relative;
  padding-left: 30px;
  z-index: 90;
}
@media screen and (max-width: 767px) {
  .p-top-about__txtarea {
    padding-left: 10px;
  }
}
.p-top-about__txt {
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-about__txt {
    font-size: 16px;
    letter-spacing: 1px;
  }
}
.p-top-about__txt .tight-line {
  line-height: 0.1;
  display: inline-block;
}
.p-top-about__txt .yellow {
  color: yellow;
  line-height: 0.1;
  display: inline-block;
}
.p-top-about__txt .big {
  font-size: 1.2em;
}
.p-top-about__btnarea {
  margin: 50px 0;
}

/* ===============================================
TOPページ：ミッション
=============================================== */
.p-top-mission {
  padding: 120px 0 240px;
  overflow: hidden;
}
@media screen and (max-width: 860px) {
  .p-top-mission {
    padding: 120px 0 180px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission {
    padding: 40px 0 90px;
  }
}
@media screen and (max-width: 1280px) {
  .p-top-mission__container {
    max-width: 800px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__container {
    max-width: 75vw;
    margin: 0 auto;
  }
}
.p-top-mission__titlearea {
  text-align: center;
  font-family: "M PLUS 1", sans-serif;
  position: relative;
  z-index: 10;
}
.p-top-mission__titlearea::before {
  position: absolute;
  content: "";
  background: url(../img/tora_03.png) no-repeat center center/contain;
  width: 160px;
  height: 204px;
  top: 0px;
  left: 50%;
  transform: translateX(-50%) translateX(-410px);
}
@media screen and (max-width: 860px) {
  .p-top-mission__titlearea::before {
    width: 130px;
    height: 165px;
    top: -60px;
    transform: translateX(-50%) translateX(-280px);
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__titlearea::before {
    width: 80px;
    height: 101px;
    top: 120px;
    transform: translateX(-50%) translateX(130px);
  }
}
.p-top-mission__titlearea::after {
  position: absolute;
  content: "Mission";
  font-size: 25vw;
  color: #F2F2F2;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: -1;
  font-family: "Exo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-top-mission__titlearea::after {
    font-size: 27vw;
  }
}
.p-top-mission__subtitle {
  background: #231815;
  color: #fff;
  border-radius: 7px;
  display: inline-block;
  font-size: 24px;
  padding: 0 40px;
  height: 42px;
  line-height: 1.15;
}
@media screen and (max-width: 767px) {
  .p-top-mission__subtitle {
    font-size: 16px;
    height: 30px;
    padding: 0 25px;
  }
}
.p-top-mission__subtitle .big {
  font-size: 1.4em;
}
.p-top-mission__title {
  font-size: 38px;
  margin-top: 30px;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .p-top-mission__title {
    font-size: 18px;
    margin-top: 20px;
  }
}
.p-top-mission__title .red {
  color: #B90000;
}
.p-top-mission__list {
  margin: 150px 0;
}
@media screen and (max-width: 767px) {
  .p-top-mission__list {
    margin: 0px 0px 90px;
  }
}
.p-top-mission__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-top-mission__item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    row-gap: 15px;
    margin-bottom: 0px;
  }
}
.p-top-mission__item--01 {
  margin-bottom: 0px;
}
.p-top-mission__item--02 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--03 {
    row-gap: 0px;
  }
}
.p-top-mission__item .m-desc {
  display: flex;
  align-items: center;
  column-gap: 30px;
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item .m-desc {
    column-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-desc {
    flex-direction: column;
    margin-top: 40px;
  }
}
.p-top-mission__item .m-desc--03 {
  column-gap: 10px;
}
.p-top-mission__item .m-number {
  display: flex;
  font-family: "Exo", sans-serif;
  align-items: first baseline;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-number {
    margin-left: 0;
    margin-right: auto;
    line-height: 0;
  }
}
.p-top-mission__item .m-number::after {
  position: absolute;
  content: "";
  width: 270px;
  height: 270px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-number::after {
    width: 180px;
    height: 180px;
  }
}
.p-top-mission__item .m-en {
  writing-mode: vertical-rl;
  background: #209F00;
  color: #fff;
  border-radius: 5px;
  font-size: 28px;
  width: 35px;
  height: 135px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 860px) {
  .p-top-mission__item .m-en {
    font-size: 20px;
    width: 30px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-en {
    font-size: 16px;
    width: 20px;
    height: 80px;
    border-radius: 2px;
  }
}
.p-top-mission__item .m-num {
  font-size: 175px;
  color: #209F00;
  padding-left: 20px;
}
@media screen and (max-width: 860px) {
  .p-top-mission__item .m-num {
    font-size: 120px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-num {
    font-size: 100px;
    padding-left: 10px;
  }
}
.p-top-mission__item .m-txt {
  font-size: 24px;
  font-family: "M PLUS 1", sans-serif;
  letter-spacing: 2px;
  z-index: 10;
  white-space: nowrap;
}
@media screen and (max-width: 860px) {
  .p-top-mission__item .m-txt {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-txt {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item .m-txt .m03-small {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 860px) {
  .p-top-mission__item .m-txt .m03-small {
    font-size: 18px;
  }
}
.p-top-mission__item .m-button {
  transition: 0.3s;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-button {
    margin: 0 auto;
  }
}
.p-top-mission__item a.m-link {
  transition: 0.2s !important;
  position: relative;
  display: inline-block;
}
.p-top-mission__item a.m-link:hover {
  transition: 0.2s;
}
.p-top-mission__item a.m-link:hover img {
  opacity: 0.6;
  transition: 0.2s;
}
.p-top-mission__item a.m-link:hover .m-mask {
  background-color: #000;
  transition: 0.3s;
}
.p-top-mission__item a.m-link:hover .m-mask i {
  color: yellow;
  transition: 0.3s;
}
.p-top-mission__item .m-mask {
  position: absolute;
  width: 153px;
  height: 153px;
  background-color: #fff;
  mask-image: url("../img/mission_mask.png");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("../img/mission_mask.png");
  /* PNGをマスクに指定 */
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item .m-mask {
    width: 120px;
    height: 120px;
  }
}
.p-top-mission__item .m-mask i {
  font-size: 50px;
  position: absolute;
  right: 10px;
  bottom: 20px;
  transition: 0.3s;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item .m-mask i {
    font-size: 36px;
    bottom: 15px;
  }
}
.p-top-mission__item .m-mask--01 {
  color: #209F00;
  right: 10px;
  bottom: 37px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item .m-mask--01 {
    right: 7px;
    bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-mask--01 {
    right: 1.8vw;
    bottom: 6.15vw;
  }
}
.p-top-mission__item .m-mask--02 {
  color: #083F8E;
  right: 10px;
  bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item .m-mask--02 {
    right: 7px;
    bottom: 7px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-mask--02 {
    right: 1.8vw;
    bottom: 1.8vw;
  }
}
.p-top-mission__item .m-mask--03 {
  color: #B90000;
  right: 55px;
  bottom: 19px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item .m-mask--03 {
    right: 38px;
    bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item .m-mask--03 {
    right: 8.35vw;
    bottom: 1.6vw;
  }
}
.p-top-mission__item--01 .m-desc {
  margin-top: 50px !important;
}
.p-top-mission__item--01 .m-number::after {
  background: url(../img/mission-icon_01.png) no-repeat center center/contain;
  right: -170px;
  top: 60px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item--01 .m-number::after {
    width: 200px;
    height: 200px;
    right: -120px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--01 .m-number::after {
    width: 25vw;
    height: 25vw;
    right: 5vw;
    top: -5vw;
  }
}
.p-top-mission__item--01 .m-en {
  background: #209F00;
}
.p-top-mission__item--01 .m-num {
  color: #209F00;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--01 .m-num {
    padding-left: 15px;
  }
}
.p-top-mission__item--01 .m-button img {
  width: 476px;
  height: 408px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item--01 .m-button img {
    width: 333px;
    height: 285px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--01 .m-button img {
    width: 75vw;
    height: auto;
  }
}
.p-top-mission__item--02 {
  flex-direction: row-reverse;
  justify-content: flex-end;
  column-gap: 70px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item--02 {
    column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--02 {
    flex-direction: column;
  }
}
.p-top-mission__item--02 .m-number::after {
  background: url(../img/mission-icon_02.png) no-repeat center center/contain;
  right: -50px;
  top: 90px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item--02 .m-number::after {
    width: 200px;
    height: 200px;
    right: -60px;
    top: 0px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--02 .m-number::after {
    width: 25vw;
    height: 25vw;
    right: -3vw;
    top: -6vw;
  }
}
.p-top-mission__item--02 .m-en {
  background: #083F8E;
}
.p-top-mission__item--02 .m-num {
  color: #083F8E;
}
.p-top-mission__item--02 .m-button img {
  width: 476px;
  height: 412px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item--02 .m-button img {
    width: 333px;
    height: 288px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--02 .m-button img {
    width: 75vw;
    height: auto;
  }
}
.p-top-mission__item--03 .m-number::after {
  width: 550px;
  height: 284px;
  background: url(../img/mission-icon_03.png) no-repeat center center/contain;
  left: -20px;
  top: 170px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item--03 .m-number::after {
    width: 450px;
    height: 232px;
    left: 0px;
    top: 160px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--03 .m-number::after {
    width: 60vw;
    height: 31vw;
    right: -22vw;
    left: auto;
    top: -10vw;
  }
}
.p-top-mission__item--03 .m-en {
  background: #B90000;
}
.p-top-mission__item--03 .m-num {
  color: #B90000;
}
.p-top-mission__item--03 .m-button {
  margin-right: -40px;
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--03 .m-button {
    margin: 0 auto;
    transform: translateX(10px);
  }
  .p-top-mission__item--03 .m-button:hover {
    transform: translateY(-3px) translateX(10px);
  }
}
.p-top-mission__item--03 .m-button img {
  width: 521px;
  height: 435px;
}
@media screen and (max-width: 1280px) {
  .p-top-mission__item--03 .m-button img {
    width: 364px;
    height: 304px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mission__item--03 .m-button img {
    width: 80.5vw;
    height: auto;
  }
}

/* ===============================================
とちぎ未来ファンタジーとは
=============================================== */
.p-about__box {
  border-radius: 20px;
  position: relative;
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .p-about__box {
    border-radius: 10px;
  }
}
.p-about__box--01 {
  border: 5px solid #209F00;
  padding: 80px 40px 160px;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 860px) {
  .p-about__box--01 {
    padding: 80px 40px 220px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__box--01 {
    border: 3px solid #209F00;
    padding: 40px 20px 140px;
    margin-bottom: 60px;
  }
}
.p-about__box--01::after {
  position: absolute;
  content: "";
  background: url(../img/about_bg.png) no-repeat center center/contain;
  width: 616px;
  height: 312px;
  bottom: 0;
  right: 0;
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 1280px) {
  .p-about__box--01::after {
    width: 450px;
    height: 228px;
  }
}
@media screen and (max-width: 767px) {
  .p-about__box--01::after {
    width: 280px;
    height: 142px;
    border-radius: 0 0 10px 0;
  }
}
.p-about__box--02 {
  border: 5px solid #231815;
  padding: 6.5vw 4.4vw 0;
}
@media screen and (max-width: 767px) {
  .p-about__box--02 {
    border: 3px solid #231815;
    padding: 60px 5% 10px;
  }
}
.p-about__title {
  color: #fff;
  display: inline-block;
  font-size: 24px;
  font-family: "M PLUS 1", sans-serif;
  padding: 10px 80px;
  border-radius: 5px;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-about__title {
    padding: 5px 20px;
    font-size: 18px;
    top: -20px;
  }
}
.p-about__title--01 {
  background: #209F00;
}
.p-about__title--02 {
  background: #231815;
}
.p-about__top-txt {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-about__top-txt {
    font-size: 16px;
  }
}
.p-about__list {
  margin: 0 auto 60px;
}
.p-about__item {
  display: flex;
  margin-bottom: 2cqw;
}
@media screen and (max-width: 767px) {
  .p-about__item {
    display: block;
    position: relative;
    margin-bottom: 8cqw;
    margin-top: 5cqw;
  }
}
.p-about__item--arrow {
  align-items: center;
}
.p-about__item--arrow .p-about__pic {
  display: grid;
  place-content: center;
  width: 43cqw;
}
.p-about__item--arrow img {
  width: 20cqw;
  height: 12cqw;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-about__item--arrow .p-about__pic {
    width: 100cqw;
    margin-bottom: 10cqw;
  }
  .p-about__item--arrow img {
    width: 35cqw;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-about__item--03 {
    margin-top: 15cqw;
  }
}
.p-about__pic {
  width: 60cqw;
}
@media screen and (max-width: 767px) {
  .p-about__pic {
    width: 80cqw;
  }
}
.p-about__desc {
  width: 50cqw;
  position: relative;
  padding-left: 0cqw;
  margin-left: -5cqw;
}
.p-about__desc--arrow {
  margin-left: 11.2cqw;
}
@media screen and (max-width: 767px) {
  .p-about__desc {
    width: 100%;
    margin-left: 0;
    display: grid;
    place-content: center;
    place-items: center;
  }
}
.p-about__label {
  display: inline-block;
  color: #fff;
  padding: 0.5cqw 3cqw;
  border-radius: 5px;
  font-size: 2.5cqw;
  font-family: "M PLUS 1", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-about__label {
    z-index: 90;
    position: absolute;
    font-size: 4.7cqw;
  }
}
.p-about__label--red {
  background: #B90000;
  position: absolute;
  left: 0cqw;
}
@media screen and (max-width: 767px) {
  .p-about__label--red {
    left: auto;
  }
}
.p-about__label--green {
  background: #209F00;
}
.p-about__label--01 {
  top: 3.7cqw;
}
.p-about__label--02 {
  top: 8cqw;
}
.p-about__label--03 {
  top: 31cqw;
}
.p-about__label--04 {
  top: 54cqw;
}
.p-about__label--05 {
  top: 4.5cqw;
}
@media screen and (max-width: 767px) {
  .p-about__label--01 {
    top: -62cqw;
    right: 1cqw;
  }
  .p-about__label--02 {
    top: -87cqw;
    right: 1cqw;
  }
  .p-about__label--03 {
    top: -55cqw;
    right: 1cqw;
  }
  .p-about__label--04 {
    top: -27cqw;
    right: 1cqw;
  }
  .p-about__label--05 {
    top: -51cqw;
    right: 1cqw;
  }
}
.p-about__txt {
  padding-top: 16cqw;
  font-size: 2cqw;
}
@media screen and (max-width: 767px) {
  .p-about__txt {
    padding-top: 7cqw;
    font-size: 5.2cqw;
    text-align: center;
  }
}

/* ===============================================
用語集
=============================================== */
.p-words__top-list {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
  margin: 40px 0;
}
@media screen and (max-width: 1280px) {
  .p-words__top-list {
    column-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-words__top-list {
    margin: 30px 0;
  }
}
.p-words__top-item {
  width: 100%;
  height: 100%;
}
.p-words__top-item a {
  text-align: center;
  display: block;
  width: 100%;
  height: 100%;
  font-size: 24px;
  background: #F6E355;
  border-radius: 10px;
  padding: 6px 0;
}
@media screen and (max-width: 767px) {
  .p-words__top-item a {
    font-size: 18px;
  }
}
.p-words__glossary-area {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-words__glossary-area {
    padding-bottom: 30px;
  }
}
.p-words__list {
  margin: 90px 0;
}
@media screen and (max-width: 767px) {
  .p-words__list {
    margin: 30px 0;
  }
}
.p-words__sublist {
  display: flex;
  column-gap: 30px;
  row-gap: 10px;
  font-size: 18px;
  margin: 16px 0;
  padding: 0 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-words__sublist {
    padding: 0 20px;
    font-size: 16px;
  }
}
.p-words__sublink {
  position: relative;
  padding-left: 30px;
}
.p-words__sublink::before {
  position: absolute;
  content: "\f0a9";
  font-family: "fontawesome";
  font-weight: 900;
  color: #083F8E;
  font-size: 1.2em;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-words__txt {
  padding: 10px 30px 30px;
}
@media screen and (max-width: 767px) {
  .p-words__txt {
    padding: 10px 20px 20px;
    font-size: 14px;
  }
}
.p-words__ex-link {
  transition: 0.3s;
  display: block;
  margin-top: 1em;
  line-height: 1.2;
  color: #083F8E;
}
.p-words__ex-link:hover {
  opacity: 0.6;
  transition: 0.3s;
}
.p-words__ex-link .black {
  color: #231815;
}
.p-words__ex-link .url {
  text-decoration: underline;
  font-weight: 400;
  display: inline-block;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 767px) {
  .p-words__ex-link .url {
    line-height: 1.4;
  }
}

/* ===============================================
お問い合わせ
=============================================== */
.p-faq__faq-area {
  margin: 40px 0 90px;
}
@media screen and (max-width: 767px) {
  .p-faq__faq-area {
    margin: 30px 0 60px;
  }
}
.p-faq__faq-box {
  background: #FFFCE3;
  padding: 20px 60px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-faq__faq-box {
    width: 90%;
    margin: 0 auto 20px;
    padding: 10px;
  }
}
.p-faq__q {
  font-size: 20px;
  padding: 10px 10px 10px 55px;
  position: relative;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-faq__q {
    font-size: 16px;
    line-height: 1.4;
    padding: 10px 10px 0px 45px;
  }
}
.p-faq__q::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  background: #209F00;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  padding-bottom: 7px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-faq__q::before {
    width: 35px;
    height: 35px;
    font-size: 20px;
    padding-bottom: 5px;
  }
}
.p-faq__a {
  padding: 10px 10px 10px 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-faq__a {
    padding: 10px 10px 10px 45px;
    font-size: 14px;
  }
}
.p-faq__a::before {
  content: "A";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: #fff;
  background: #B90000;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  padding-bottom: 4px;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-faq__a::before {
    width: 35px;
    height: 35px;
    font-size: 20px;
    padding-bottom: 3px;
  }
}
.p-faq__banner {
  display: flex;
  column-gap: 30px;
  margin: 10px 0;
  flex-wrap: wrap;
  row-gap: 10px;
}
.p-faq__contact {
  background: #E6F5FF;
  margin: 40px 0 90px;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .p-faq__contact {
    margin: 30px auto 40px;
    width: 90%;
    padding: 30px 0;
  }
}
.p-faq__address {
  margin: 10px 0 30px;
  padding: 0 30px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 767px) {
  .p-faq__address {
    padding: 0 20px;
    font-size: 14px;
  }
}
.p-faq__address--nomg {
  margin: 10px 0 0;
}

/* ===============================================
お問い合わせ
=============================================== */
.p-contact__top-txt {
  text-align: center;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-contact__top-txt {
    font-size: 14px;
    margin: 20px 0;
  }
}
.p-contact__privacy-txt {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-contact__privacy-txt {
    font-size: 14px;
    margin: 20px 0;
  }
}
.p-contact__list {
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .p-contact__list {
    padding-left: 0px;
  }
}
.p-contact__title {
  font-size: 20px;
  padding-left: 24px;
  position: relative;
}
.p-contact__title::before {
  position: absolute;
  content: "●";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.8em;
  color: #209F00;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 16px;
    padding-left: 20px;
  }
}
.p-contact__desc {
  margin: 5px 0 20px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .p-contact__desc {
    margin: 5px 0 10px;
    font-size: 14px;
  }
}
.p-contact__form-area {
  margin: 80px 0 30px;
}
@media screen and (max-width: 767px) {
  .p-contact__form-area {
    margin: 60px 0 30px;
  }
}

/* ===============================================
利用規約・プライバシーポリシー
=============================================== */
.p-privacy__area {
  margin: 60px 0 120px;
}
@media screen and (max-width: 767px) {
  .p-privacy__area {
    margin: 30px 0 90px;
  }
}
.p-privacy__block {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-privacy__block {
    margin: 20px 0;
  }
}
.p-privacy__txt {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-privacy__txt {
    font-size: 14px;
    margin: 20px 10px;
  }
}
.p-privacy__list {
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .p-privacy__list {
    font-size: 14px;
    padding: 0 20px;
  }
}
.p-privacy__item {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
}
.p-privacy__item:last-child {
  margin-bottom: 0;
}
.p-privacy__item::before {
  position: absolute;
  content: "●";
  left: 0;
  font-size: 0.6em;
  top: 6px;
}
@media screen and (max-width: 767px) {
  .p-privacy__item::before {
    top: 5px;
  }
}
@media screen and (max-width: 767px) {
  .p-privacy__item {
    padding-left: 14px;
  }
}
.p-privacy__link {
  color: #209F00;
  text-decoration: underline;
  transition: 0.3s;
  word-break: break-all;
}
.p-privacy__link:hover {
  transition: 0.3s;
  opacity: 0.6;
}

/* ===============================================
ミッション
=============================================== */
.p-mission__head {
  border-radius: 20px;
  height: 200px;
  color: #fff;
  align-items: center;
  position: relative;
  display: flex;
  column-gap: 30px;
  padding: 0 40px;
}
@media screen and (max-width: 1280px) {
  .p-mission__head {
    column-gap: 20px;
  }
}
@media screen and (max-width: 860px) {
  .p-mission__head {
    column-gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__head {
    height: 70px;
    border-radius: 10px;
    padding: 0 5%;
    column-gap: 10px;
    margin-top: 60px;
  }
}
.p-mission__head::after {
  position: absolute;
  content: "";
}
.p-mission__head--01 {
  background: #209F00;
}
.p-mission__head--01::after {
  background: url(../img/mission_head_01.png) no-repeat center center/contain;
  width: 404px;
  height: 313px;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 1280px) {
  .p-mission__head--01::after {
    width: 300px;
    height: 232px;
  }
}
@media screen and (max-width: 860px) {
  .p-mission__head--01::after {
    width: 240px;
    height: 186px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__head--01::after {
    width: 119px;
    height: 93px;
    bottom: 68px;
    right: 5%;
  }
}
.p-mission__head--02 {
  background: #083F8E;
}
.p-mission__head--02::after {
  background: url(../img/mission_head_02.png) no-repeat center center/contain;
  width: 200px;
  height: 240px;
  bottom: 10px;
  right: 20px;
}
@media screen and (max-width: 1280px) {
  .p-mission__head--02::after {
    width: 120px;
    height: 144px;
    right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__head--02::after {
    width: 70px;
    height: 84px;
    bottom: 60px;
    right: 5%;
  }
}
.p-mission__head--03 {
  background: #B90000;
}
@media screen and (max-width: 1280px) {
  .p-mission__head--03 {
    padding: 0 20px;
    column-gap: 10px;
  }
}
.p-mission__head--03::after {
  background: url(../img/mission_head_03.png) no-repeat center center/contain;
  width: 292px;
  height: 315px;
  bottom: 0px;
  right: -40px;
}
@media screen and (max-width: 1280px) {
  .p-mission__head--03::after {
    width: 180px;
    height: 194px;
    right: -25px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__head--03::after {
    background: url(../img/mission_head_03_sp.png) no-repeat center center/contain;
    width: 100px;
    height: 108px;
    bottom: 50px;
    right: -10px;
  }
}
.p-mission__head .head-number {
  display: flex;
  font-family: "Exo", sans-serif;
  align-items: first baseline;
  line-height: 1;
  align-items: center;
}
.p-mission__head .head-en {
  writing-mode: vertical-rl;
  background: #fff;
  border-radius: 5px;
  font-size: 28px;
  width: 35px;
  height: 135px;
  display: grid;
  place-content: center;
}
.p-mission__head .head-en--01 {
  color: #209F00;
}
.p-mission__head .head-en--02 {
  color: #083F8E;
}
.p-mission__head .head-en--03 {
  color: #B90000;
}
@media screen and (max-width: 1280px) {
  .p-mission__head .head-en--03 {
    width: 30px;
    height: 105px;
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__head .head-en {
    font-size: 12px;
    width: 14px;
    height: 52px;
    border-radius: 0px;
  }
}
.p-mission__head .head-num {
  font-size: 175px;
  padding: 10px 0 0 20px;
}
.p-mission__head .head-num--03 {
  font-size: 130px;
  padding: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .p-mission__head .head-num {
    font-size: 60px;
    padding: 7px 0 0 7px;
  }
}
.p-mission__head .head-main {
  font-size: 40px;
  font-family: "M PLUS 1", sans-serif;
  letter-spacing: 2px;
  z-index: 10;
  white-space: nowrap;
  letter-spacing: 4px;
}
@media screen and (max-width: 1280px) {
  .p-mission__head .head-main {
    font-size: 30px;
  }
}
@media screen and (max-width: 860px) {
  .p-mission__head .head-main {
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__head .head-main {
    font-size: 18px;
    line-height: 1.2;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 860px) {
  .p-mission__head .head-main--03 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__head .head-main--03 {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 370px) {
  .p-mission__head .head-main--03 {
    font-size: 14px;
  }
}
.p-mission__head .head-main .small {
  font-size: 0.9em;
}
.p-mission__title {
  display: flex;
  align-items: center;
  margin: 60px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-mission__title {
    margin: 50px 0 0 0;
  }
}
.p-mission__title .title-en {
  writing-mode: vertical-rl;
  background: #231815;
  color: #fff;
  border-radius: 5px;
  font-size: 20px;
  width: 30px;
  height: 120px;
  display: grid;
  place-content: center;
  font-family: "Exo", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-mission__title .title-en {
    font-size: 12px;
    width: 16px;
    height: 52px;
    border-radius: 0px;
  }
}
.p-mission__title .title-main {
  font-size: 36px;
  padding-left: 40px;
  font-family: "M PLUS 1", sans-serif;
}
@media screen and (max-width: 860px) {
  .p-mission__title .title-main {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-mission__title .title-main {
    font-size: 18px;
    padding-left: 10px;
  }
}
.p-mission__title .title-main .big {
  font-size: 1.5em;
  font-weight: 700;
}
.p-mission__title .title-main .big--01 {
  color: #209F00;
}
.p-mission__title .title-main .big--02 {
  color: #083F8E;
}
.p-mission__title .title-main .big--03 {
  color: #B90000;
}
.p-mission__movie {
  border: 5px solid #231815;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-mission__movie {
    margin: 20px 0;
  }
}
.p-mission__movie video {
  width: 100%;
  height: 100%;
  display: block;
}
.p-mission__list {
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .p-mission__list {
    margin: 20px 0 10px;
  }
}
.p-mission__item {
  font-size: 19px;
  padding: 14px 0 14px 55px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-mission__item {
    font-size: 16px;
    padding: 14px 0 14px 30px;
    letter-spacing: 0.8px;
    line-height: 1.5;
  }
}
.p-mission__item::before {
  content: "●";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-mission__item::before {
    left: 5px;
    font-size: 14px;
  }
}
.p-mission__item--01 {
  border-bottom: 2px dashed #209F00;
}
.p-mission__item--01::before {
  color: #209F00;
}
.p-mission__item--02 {
  border-bottom: 2px dashed #083F8E;
}
.p-mission__item--02::before {
  color: #083F8E;
}
.p-mission__item--03 {
  border-bottom: 2px dashed #B90000;
}
.p-mission__item--03::before {
  color: #B90000;
}
.p-mission__words {
  color: #B90000;
  transition: 0.3s;
  text-decoration: underline;
}
.p-mission__words:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.p-mission__btn {
  margin: 40px auto;
  max-width: 760px;
  height: 120px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .p-mission__btn {
    margin: 20px auto;
    height: 90px;
  }
}
.p-mission__link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: grid;
  place-content: center start;
  padding: 0 0 0 30px;
  position: relative;
  color: #fff;
  font-size: 30px;
  letter-spacing: 2px;
  transition: 0.3s;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-mission__link {
    border-radius: 10px;
    font-size: 20px;
    line-height: 1.2;
  }
}
.p-mission__link--01 {
  background: #209F00;
}
.p-mission__link--02 {
  background: #083F8E;
}
.p-mission__link--03 {
  background: #B90000;
}
.p-mission__link::after {
  background: #000;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.p-mission__link:hover {
  transition: 0.3s;
  filter: drop-shadow(4px 6px 1px rgba(0, 0, 0, 0.5));
  opacity: 0.8;
  transform: translateY(-3px);
}
.p-mission__link:hover::after {
  transform: scale(1, 1);
}
.p-mission__link i {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  .p-mission__link i {
    font-size: 24px;
    right: 5%;
  }
}

/* ===============================================
クイズ
=============================================== */
.p-quiz__question {
  border-radius: 10px;
  height: 140px;
  position: relative;
  display: grid;
  place-content: center;
  border-width: 5px;
  border-style: solid;
}
@media screen and (max-width: 767px) {
  .p-quiz__question {
    height: auto;
    padding: 40px 0 30px;
    border-width: 3px;
  }
}
.p-quiz__question--01 {
  border-color: #209F00;
}
.p-quiz__question--02 {
  border-color: #083F8E;
}
.p-quiz__question--03 {
  border-color: #B90000;
}
.p-quiz__question .q-label {
  border-radius: 0px 0 10px 0;
  width: 130px;
  height: 50px;
  position: absolute;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .p-quiz__question .q-label {
    width: 80px;
    height: 28px;
  }
}
.p-quiz__question .q-label--01 {
  background: #209F00;
}
.p-quiz__question .q-label--02 {
  background: #083F8E;
}
.p-quiz__question .q-label--03 {
  background: #B90000;
}
.p-quiz__question .q-label .inner {
  color: #fff;
  font-size: 30px;
}
@media screen and (max-width: 767px) {
  .p-quiz__question .q-label .inner {
    font-size: 16px;
  }
}
.p-quiz__question .q-label .inner .num {
  font-size: 1.2em;
  padding-left: 3px;
  font-family: "Exo", sans-serif;
}
.p-quiz__question .q-txt {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-quiz__question .q-txt {
    font-size: 16px;
  }
}
.p-quiz__pic {
  max-width: 400px;
  margin: 40px auto;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
}
@media screen and (max-width: 767px) {
  .p-quiz__pic {
    width: 70%;
  }
}
.p-quiz__list {
  margin: 40px auto;
  max-width: 700px;
}
.p-quiz__item {
  height: 55px;
  margin-bottom: 20px;
}
.p-quiz__link {
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  color: #fff;
  font-size: 20px;
}
.p-quiz__link--01 {
  background: #209F00;
}
.p-quiz__link--02 {
  background: #083F8E;
}
.p-quiz__link--03 {
  background: #B90000;
}
.p-quiz__link .choice {
  font-family: "Exo", sans-serif;
  font-size: 1.6em;
}
.p-quiz__link .answer {
  padding-left: 20px;
}
.p-quiz__hint {
  margin: 40px auto;
  width: 400px;
  height: 60px;
  background: #F6E355;
  border-radius: 10px;
  display: grid;
  place-content: center start;
  font-size: 20px;
  padding-left: 20px;
  position: relative;
}
.p-quiz__hint::after {
  position: absolute;
  content: "\f0a9";
  font-family: "fontawesome";
  font-weight: 900;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-quiz__hint {
    max-width: 330px;
    width: 85%;
  }
}
.p-quiz__hint-box {
  position: relative;
  width: 100%;
  padding: 40px;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .p-quiz__hint-box {
    padding: 60px 20px 20px;
  }
}
.p-quiz__hint-box .label {
  background: #F6E355;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 24px;
  width: 120px;
  height: 50px;
  display: grid;
  place-content: center;
  border-radius: 0 0 10px 0;
}
@media screen and (max-width: 767px) {
  .p-quiz__hint-box .label {
    font-size: 16px;
    width: 80px;
    height: 30px;
  }
}
.p-quiz__hint-box .txt {
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-quiz__hint-box .txt {
    font-size: 16px;
    text-align: left;
  }
}
.p-quiz__hint-box .pic {
  max-width: 300px;
  margin: 20px auto;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
}

/* ===============================================
クイズ結果
=============================================== */
.p-result {
  padding: 50px 0 260px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-result {
    padding: 16px 0 160px;
  }
}
.p-result::before {
  content: "";
  position: absolute;
  background: url(../img/quiz/result_bg.jpg) no-repeat center center/contain;
  width: 1263px;
  height: 1043px;
  right: -200px;
  bottom: -240px;
  z-index: 0;
}
@media screen and (max-width: 1280px) {
  .p-result::before {
    width: 960px;
    height: 793px;
    bottom: -140px;
    right: -200px;
  }
}
@media screen and (max-width: 767px) {
  .p-result::before {
    width: 460px;
    height: 379px;
    bottom: -70px;
    right: -60px;
  }
}
.p-result::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.p-result--ok::after {
  background: rgba(255, 255, 255, 0.4);
}
.p-result--ng::after {
  background: rgba(33, 32, 37, 0.4);
}
.p-result__container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 100;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .p-result__container {
    width: 90%;
  }
}
.p-result__main {
  text-align: center;
  font-size: 52px;
}
@media screen and (max-width: 767px) {
  .p-result__main {
    font-size: 36px;
  }
}
.p-result__main--ng {
  color: #fff;
}
.p-result__correct {
  width: 130px;
  height: 155px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-result__correct {
    width: 80px;
    height: 95px;
  }
}
.p-result__box {
  margin-top: 20px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .p-result__box {
    margin-top: 10px;
  }
}
.p-result__box::before {
  z-index: 0;
  position: absolute;
  content: "";
}
.p-result__box::after {
  z-index: 0;
  position: absolute;
  content: "";
}
.p-result__box--ok::before {
  background: url(../img/quiz/result_ok_01.png) no-repeat center center/contain;
  width: 174px;
  height: 224px;
  top: -200px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-result__box--ok::before {
    width: 87px;
    height: 112px;
    top: -100px;
    left: 5px;
  }
}
.p-result__box--ok::after {
  background: url(../img/quiz/result_ok_02.png) no-repeat center center/contain;
  width: 139px;
  height: 233px;
  top: -210px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  .p-result__box--ok::after {
    width: 70px;
    height: 116px;
    top: -105px;
  }
}
.p-result__box--ng::before {
  background: url(../img/quiz/result_ng_01.png) no-repeat center center/contain;
  width: 166px;
  height: 224px;
  top: -200px;
  left: 30px;
}
@media screen and (max-width: 767px) {
  .p-result__box--ng::before {
    width: 83px;
    height: 112px;
    top: -100px;
    left: 20px;
  }
}
.p-result__box--ng::after {
  background: url(../img/quiz/result_ng_02.png) no-repeat center center/contain;
  width: 152px;
  height: 217px;
  top: -205px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .p-result__box--ng::after {
    width: 76px;
    height: 109px;
    top: -105px;
    right: 20px;
  }
}
.p-result__inner {
  border-radius: 20px;
  border-width: 5px;
  border-style: solid;
  background: #fff;
  position: relative;
  z-index: 100;
  padding: 40px 60px;
}
@media screen and (max-width: 767px) {
  .p-result__inner {
    border-radius: 10px;
    border-width: 3px;
    padding: 5%;
  }
}
.p-result__inner--ok {
  border-color: #B90000;
}
.p-result__inner--ng {
  border-color: #083F8E;
}
.p-result__txt {
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-result__txt {
    font-size: 16px;
  }
}
.p-result__next {
  max-width: 345px;
  height: 60px;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .p-result__next {
    margin: 40px auto 0;
    width: 80%;
  }
}
.p-result__link {
  font-size: 22px;
  color: #fff;
  display: grid;
  place-content: center start;
  padding-left: 20px;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-result__link {
    font-size: 18px;
  }
}
.p-result__link::after {
  position: absolute;
  content: "\f0a9";
  font-family: "fontawesome";
  font-weight: 900;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.3em;
}
.p-result__link--ok {
  background: #B90000;
}
.p-result__link--ng {
  background: #083F8E;
}

/* ===============================================
クイズ総合結果
=============================================== */
.p-status {
  padding: 60px 0 240px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-status {
    padding: 7vw 0 120px;
  }
}
.p-status__bg {
  position: absolute;
  height: 400px;
  width: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-status__bg {
    height: 52vw;
  }
}
.p-status__bg--ok {
  background: url(../img/quiz/status_complete_bg.jpg) no-repeat center bottom/cover;
}
.p-status__bg--ng {
  background-image: repeating-linear-gradient(0deg, #4376bf, #4376bf 20px, #3b6cb4 20px, #3b6cb4 40px);
}
.p-status__top {
  position: relative;
  z-index: 10;
  width: 270px;
  height: 273px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-status__top {
    width: 38vw;
    height: 39vw;
  }
}
.p-status__top::before {
  position: absolute;
  content: "";
  width: 252px;
  height: 335px;
  top: 40px;
  left: -310px;
}
@media screen and (max-width: 1280px) {
  .p-status__top::before {
    width: 18.4vw;
    height: 24.5vw;
    left: -22.6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-status__top::before {
    width: 21vw;
    height: 27.9vw;
    left: -24vw;
    top: 20vw;
  }
}
.p-status__top::after {
  position: absolute;
  content: "";
  width: 311px;
  height: 320px;
  top: 60px;
  right: -350px;
}
@media screen and (max-width: 1280px) {
  .p-status__top::after {
    width: 22.7vw;
    height: 23.4vw;
    right: -25.6vw;
  }
}
@media screen and (max-width: 767px) {
  .p-status__top::after {
    width: 30.2vw;
    height: 31.1vw;
    right: -28vw;
    top: 19vw;
  }
}
.p-status__top--ok::before {
  background: url(../img/quiz/status-complete_01.png) no-repeat center center/contain;
}
.p-status__top--ok::after {
  background: url(../img/quiz/status-complete_02.png) no-repeat center center/contain;
}
.p-status__top--ng::before {
  background: url(../img/quiz/status-incomplete_01.png) no-repeat center center/contain;
}
.p-status__top--ng::after {
  background: url(../img/quiz/status-incomplete_02.png) no-repeat center center/contain;
}
.p-status__txt {
  position: relative;
  z-index: 10;
  margin: 90px auto 0;
  text-align: center;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-status__txt {
    font-size: 16px;
    margin: 60px auto 0;
  }
}
.p-status__wrapper {
  display: flex;
  justify-content: center;
  column-gap: 60px;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .p-status__wrapper {
    flex-direction: column;
    align-items: center;
    row-gap: 20px;
    margin: 36px auto;
  }
}
.p-status__btn {
  height: 60px;
  width: 330px;
}
.p-status__link {
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  font-size: 22px;
}
@media screen and (max-width: 767px) {
  .p-status__link {
    font-size: 16px;
  }
}
.p-status__link i {
  font-size: 30px;
}
.p-status__link--score {
  border: 3px solid #B90000;
  color: #B90000;
  transition: 0.3s;
}
.p-status__link--score:hover {
  background: #F6E355;
  color: #B90000;
  transition: 0.3s;
}
.p-status__link--next {
  border: 0px solid #B90000;
  background: #B90000;
  color: #fff;
  transition: 0.3s;
}
.p-status__link--next:hover {
  background: #209F00;
  color: #fff;
  transition: 0.3s;
}
.p-status__score {
  display: grid;
  place-content: center;
  padding: 40px 20px 20px;
}
@media screen and (max-width: 767px) {
  .p-status__score {
    padding: 40px 0px 20px;
  }
}

/* ===============================================
フッター
=============================================== */
.p-footer {
  background: #209F00;
  position: relative;
  padding: 60px 0 0;
}
.p-footer::before {
  position: absolute;
  content: "";
  background: url(../img/footer_bg.png) no-repeat right bottom/contain;
  width: 100%;
  height: 200px;
  top: -198px;
}
@media screen and (max-width: 1280px) {
  .p-footer::before {
    height: 160px;
    top: -155px;
  }
}
.p-footer::after {
  position: absolute;
  background: url(../img/tora_04.png) no-repeat center center/contain;
  content: "";
  width: 204px;
  height: 238px;
  z-index: 90;
  right: 15vw;
  bottom: 40px;
}
@media screen and (max-width: 1280px) {
  .p-footer::after {
    width: 150px;
    height: 175px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer::after {
    width: 90px;
    height: 105px;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-footer__list {
  max-width: 860px;
  margin: 0 auto 60px;
  color: #fff;
  font-size: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 300px;
  column-gap: 100px;
}
@media screen and (max-width: 860px) {
  .p-footer__list {
    padding: 0 60px;
    column-gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__list {
    padding: 0 20px 35px;
    max-height: 100%;
    font-size: 16px;
  }
}
.p-footer__item {
  margin-bottom: 20px;
}
.p-footer__last {
  font-size: 14px;
  background: #231815;
  color: #fff;
  text-align: center;
  padding: 14px 0;
  letter-spacing: 1px;
}

/* ===============================================
ページトップに戻る
=============================================== */
.p-pagetop {
  position: fixed;
  right: 40px;
  bottom: 60px;
  width: 60px;
  height: 60px;
  background: #F2F2F2;
  border-radius: 7px;
  filter: drop-shadow(4px 4px 0px #209F00);
  cursor: pointer;
  display: grid;
  place-content: center;
  color: #209F00;
  font-size: 36px;
  transition: 0.3s;
  z-index: 800;
}
@media screen and (max-width: 767px) {
  .p-pagetop {
    width: 50px;
    height: 50px;
    font-size: 30px;
    right: 10px;
    filter: drop-shadow(4px 4px 0px #209F00);
  }
}
.p-pagetop:hover {
  opacity: 0.8;
  transition: 0.3s;
}

/* レスポンシブ設定
----------------------- */
.u-sp-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp-only {
    display: block;
  }
}

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

.u-tab02-none {
  display: block;
}
@media screen and (max-width: 860px) {
  .u-tab02-none {
    display: none;
  }
}

.u-tab02-only {
  display: none;
}
@media screen and (max-width: 860px) {
  .u-tab02-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-tab02-only {
    display: none;
  }
}

.u-pc-only02 {
  display: block;
}
@media screen and (max-width: 860px) {
  .u-pc-only02 {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .u-pc-only02 {
    display: block;
  }
}

.u-tab-only02 {
  display: none;
}
@media screen and (max-width: 860px) {
  .u-tab-only02 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .u-tab-only02 {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */