<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";

/* *****************************************
 * foundation
 * ***************************************** */
:root {
  --primary-color: #F7F6E8;
  --secondary-color: #E9E7D5;
  --orange-color: #eb5500;
  --yellow-color: #FFF033;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--primary-color);
  font-family: "Inter", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", 游ゴシック体, YuGothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", Meiryo, sans-serif;
  font-feature-settings: "palt";
  line-height: 1.5;
  padding-left: 1rem;
  padding-right: 1rem;
  line-break: strict;
}

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

/* *****************************************
 * layout
 * ***************************************** */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 15px 0px 0px 0px;
}

.l-container {
  margin-left: auto;
  margin-right: auto;
  max-width: 928px;
  position: relative;
  z-index: 10;
}

.l-container.-rounded {
  border-radius: .625rem;
}

@media screen and (min-width: 768px) {
  .l-container {
    padding: 2rem 2rem 3rem;
  }
}

@media screen and (max-width: 767px) {
  .l-container {
    padding: 2rem 1rem 3rem;
  }
}

/* *****************************************
 * component
 * ***************************************** */
.c-button.-primary {
  align-items: center;
  border-radius: .625rem;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, .25);
  display: inline-flex;
  font-size: 1.25rem;
  gap: .5rem;
  justify-content: center;
  max-width: 200px;
  padding: .5rem;
  width: 100%;
}

.c-button.-primary.-large {
  padding: 1rem;
  max-width: 311px;
}

.c-button.-primary.-small {
  font-size: .875rem;
  padding: .5rem 1rem;
}

@media (hover:hover) {
  .c-button.-primary {
    transition: opacity .3s;
  }

  .c-button.-primary:hover {
    opacity: .6;
  }
}

.c-button.-orange {
  background-color: var(--orange-color);
}

.c-button.-yellow {
  background-color: var(--yellow-color);
}

/* circle
-------------------------------------------- */
.c-circle {
  align-items: center;
  border-radius: 50%;
  color: white;
  display: flex;
  font-family: "Zen Kaku Gothic New";
  font-size: 2rem;
  font-weight: bold;
  font-weight: 900;
  height: 160px;
  justify-content: center;
  line-height: 1.45;
  text-align: center;
  width: 160px;
}

.c-circle.-blue {
  background-color: #00469b;
}

.c-circle.-green {
  background-color: #00a57d;
}

.c-circle.-orange {
  background-color: #eb5500;
}

.c-circle.-red {
  background-color: #e60064;
}


/* link
-------------------------------------------- */
.c-link.-underline {
  text-decoration: underline;
}

.c-link.-text[target="_blank"]::after {
  content: "\ecf3";
  font-family: 'MingCute' !important;
  margin-left: .5em;
}

@media (hover:hover) {
  .c-link.-text:hover {
    text-decoration: underline;
  }

  .c-link.-underline:hover {
    text-decoration: none;
  }

  .c-link.-opacity {
    transition: opacity .3s;
  }

  .c-link.-opacity:hover {
    opacity: .6;
  }
}

/* list
-------------------------------------------- */
.c-list[class*="-bullet-"]&gt;li {
  padding-left: 1em;
  position: relative;
}

.c-list[class*="-bullet-"]&gt;li::before {
  left: 0;
  position: absolute;
  top: 0;
}

.c-list.-bullet-asterisk&gt;li {
  padding-left: 1.3em;
}

.c-list.-bullet-asterisk&gt;li::before {
  content: "\203B";
  font-size: 133%;
  line-height: 1;
}

/* text
-------------------------------------------- */
.c-text+.c-text {
  margin-top: 1rem;
}

/* title
-------------------------------------------- */
.c-title.-primary {
  font-family: "Zen Kaku Gothic New";
  font-size: 1.5rem;
  text-align: center;
}

.c-title.-primary&gt;span {
  font-size: 200%;
  font-weight: bold;
  font-weight: 900;
}

.c-title.-primary.-small&gt;span {
  font-size: 150%;
}

@media screen and (max-width: 767px) {
  .c-title.-primary {
    line-height: 1.25;
    text-align: center;
  }

  .c-title.-primary&gt;span {
    display: block;
  }
}

/* *****************************************
 * project
 * ***************************************** */
/* menu
-------------------------------------------- */
.p-menu {
  position: absolute;
  right: 10px;
}

.p-menu .c-button {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
.p-menu {
  right: -5px;
  top:5px;
}
}



/* globalnav
-------------------------------------------- */
.p-globalnav {
  height: 100svh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.p-globalnav.is-open {
  display: block;
}

.p-globalnav:not(.is-open) {
  display: none;
}

.p-globalnav__inner {
  background-color: #fff;
  height: 100%;
  overflow: auto;
  padding-bottom: 2.5rem;
  width: 100%;
}

.p-globalnav[aria-hidden="false"] .p-globalnav__inner {
  animation: menuOpen .3s ease forwards;
  opacity: 1;
}

.p-globalnav[aria-hidden="true"] .p-globalnav__inner {
  animation: menuClose .3s ease forwards;
  opacity: 0;
}

.p-globalnav__head {
  position: absolute;
  right: 0;
  margin: 45px 27px 0px 0px;
}

.p-globalnav__head .c-button {
  font-size: 2rem;
}

.p-globalnav__body {
  text-align: center;
  margin: -30px 0 0 0;
}

.p-globalnav__body .c-list&gt;li:not(:first-child) {
  margin-top: 0.5rem;
}

.p-globalnav__body .c-def&gt;div {
  margin-top: 1.5rem;
}

.p-globalnav__body .c-def dd {
  margin-top: 0.5rem;
}

.p-globalnav__body i {
  font-size: 1.25rem;
  margin-right: .5rem;
  vertical-align: middle;
}

.p-globalnav__body i+.c-link {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
.p-globalnav__head {
  margin: 35px 12px 0px 0px;
}
}



@keyframes menuOpen {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}


@keyframes menuClose {
  0% {
    opacity: 1
  }

  100% {
    opacity: 0
  }
}

/* mv
-------------------------------------------- */
.p-mv .c-title {
  text-align: center;
}

.p-mv .c-title img {
  max-width: 556px;
  width: 100%;
}

.-pad {
  padding: 1.5rem;
}


/* section
-------------------------------------------- */
.p-section {
  position: relative;
}

.p-section:nth-of-type(1) {
  margin-top: 10.5rem;
}

.p-section+.p-section {
  margin-top: 6rem;
}

.p-section__deco {
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 5;
}

.p-section__deco:not(.-bear) {
  top: -5rem;
}

.p-section__deco.-bear {
  top: -9.5rem;
  width: 279px;
}

.p-section__deco.-orca {
  width: 263px;
}

.p-section__deco.-penguin {
  width: 161.5px;
}

.p-section__deco.-whale {
  max-width: 329px;
  width: 100%;
}

/* overview
-------------------------------------------- */
.p-overview {
  margin-top: 2rem;
}

.p-overview .c-title {
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.25;
  text-align: center;
}

.p-overview .c-title&gt;span {
  background-color: var(--secondary-color);
  border-radius: 1.25rem;
  display: inline-block;
  padding: .5rem;
}

.p-overview__content {
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .p-overview .c-title&gt;span {
    width: 400px;
  }

  .p-overview__content.-qual {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .p-overview__content.-qual .c-circle {
    flex-shrink: 0;
    margin-right: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .p-overview__item.-term {
    margin-top: 7rem;
  }

  .p-overview .c-title&gt;span {
    max-width: 311px;
    width: 100%;
  }

  .p-overview__content.-qual .c-circle {
    margin-left: auto;
    margin-right: auto;
  }

  .p-overview__content.-qual .c-text {
    display: inline-block;
    text-align: justify;
  }

}

/* category
-------------------------------------------- */
.p-category__item {
  margin-top: 2rem;
}

.p-category__item.-research&gt;dt .c-image img {
  transform: scale(1.2);
}

.p-category__item.-self&gt;dt .c-image img {
  transform: scale(1.2);
}

@media screen and (min-width: 768px) {
  .p-category__item {
    display: flex;
    gap: 1rem;
    width: 100%;
  }

  .p-category__item.-reverse {
    flex-direction: row-reverse;
  }

  .p-category__item&gt;dt {
    align-items: center;
    display: flex;
    flex-shrink: 0;
  }

  .p-category__item&gt;dt .c-image {
    margin-left: 1rem;
  }

  .p-category__item&gt;dd {
    overflow: hidden;
    flex: 1;
  }

  .p-category__item&gt;dd .c-space,
  .p-category__item&gt;dd .c-image {
    float: right;
    clear: both;
  }


}

@media screen and (max-width: 767px) {
  .p-category__item&gt;dt {
    position: relative;
  }

  .p-category__item&gt;dt .c-image {
    left: 50%;
    position: absolute;
    top: 50%;
  }

  .p-category__item.-dictionary&gt;dt .c-image {
    transform: translate(-138.5px, -50%);
  }

  .p-category__item.-research&gt;dt .c-image {
    transform: translate(-155px, -50%);
  }

  .p-category__item.-self&gt;dt .c-image {
    transform: translate(-157px, -50%);
  }

  .p-category__item&gt;dt .c-circle {
    margin-left: auto;
    margin-right: auto;
  }

  .p-category__item&gt;dd {
    margin-top: 1rem;
    position: relative;
  }

  .p-category__item&gt;dd .c-image {
    position: absolute;
    right: 0;
    top: 100%;
  }
}

/* award
-------------------------------------------- */
.p-award:nth-of-type(1) {
  margin-top: 2rem;
}

.p-award:not(:nth-of-type(1)) {
  margin-top: 2.5rem;
}

.p-award__title {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.p-award__title&gt;span {
  display: block;
}

.p-award__titleNum {
  font-size: 2.5rem;
}

.p-award__body .c-image img {
  max-width: 200px;
}

@media screen and (min-width: 768px) {
  .p-award {
    display: grid;
    grid-template-columns: 20em 1fr;
    gap: 2.5rem;
  }

  .p-award .c-title .fa-crown {
    margin-right: 1rem;
  }

  .p-award__title&gt;span {
    text-align: right;
  }

  .p-award__title&gt;span:first-child {
    font-size: 1.75rem;
  }

  .p-award__body:has(.c-image) {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr 200px;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .p-award .c-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .p-award .c-title .fa-crown {
    display: block;
    font-size: 92px;
    margin-bottom: 1rem;
  }

  .p-award__body {
    margin-top: 1rem;
  }

  .p-award__body .c-image {
    text-align: center;
  }
}

/* judge
-------------------------------------------- */
.p-judge&gt;li {
  padding-left: 32px;
  position: relative;
}

.p-judge&gt;li+li {
  margin-top: 1rem;
}

.p-judge&gt;li::before {
  background: url("../images/icon-sprout.webp") no-repeat center center;
  background-size: contain;
  content: "";
  display: block;
  height: 21px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 24px;
}

/* work
-------------------------------------------- */
.p-work__item {
  background-color: var(--secondary-color);
  border-radius: 1.25rem;
  container-type: inline-size;
  margin-top: 2rem;
  padding: 2rem 1rem;
}

.p-work__item&gt;dt {
  display: flex;
  flex-direction: column;
  font-weight: normal;
}

.p-work__item&gt;dt&gt;span:first-child {
  font-size: 1.5rem;
}

.p-work__item&gt;dt&gt;span:last-child {
  font-size: 1.25rem;
}

.p-work__item dd img{
  max-height: 270px;
}


@container (min-width: 768px) {
  .p-work__name&gt;span:first-child i {
    margin-right: .5em;
  }

  .p-work__name&gt;span:last-child {
    margin-left: .5em;
  }
}

@container (max-width: 767px) {
  .p-work__name {
    text-align: center;
  }

  .p-work__name&gt;span {
    display: block;
  }

  .p-work__name .fa-crown {
    display: block;
    margin-bottom: .5rem;
  }

  .p-work__name+span {
    margin-top: .5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-work__item {
    align-items: center;
    display: flex;
    margin-left: -1rem;
    margin-right: -1rem;
    text-align: center;
  }

  .p-work__item&gt;dt {
    order: 1;
    width: calc(340/864*100%);
  }

  .p-work__item&gt;dt+dd {
    order: 3;
    width: calc(280/864*100%);
  }

  .p-work__item&gt;dd+dd {
    flex-grow: 1;
    order: 3;
    padding-left: 1rem;
    padding-right: 1rem;
    text-align: right;
  }
}

@media screen and (max-width: 767px) {
  .p-work__item {
    text-align: center;
  }

  .p-work__item&gt;dt&gt;span+span {
    margin-top: 1rem;
  }

  .p-work__item&gt;dt+dd img {
    max-width: 279px;
  }

  .p-work__item&gt;dd {
    margin-top: 1rem;
  }
}

/* footer
-------------------------------------------- */
.p-footer__title {
  text-align: center;
}

.p-footer__map {
  font-size: .75rem;
  text-align: center;
}

.p-footer__map&gt;li:not(:first-child) {
  margin-top: .5rem;
}

/* sas
-------------------------------------------- */
.p-sas__item {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1rem;
  justify-content: center;
}

.p-sas__item&gt;dt {
  text-align: center;
  width: 100%;
}

.p-sas__item .c-link img {
  width: 100%;
}

.p-sas__item .c-link.-neo img,
.p-sas__item .c-link.-hugkum img {
  max-width: 120px;
}

.p-sas__item .c-link.-sho1 img,
.p-sas__item .c-link.-sho8 img {
  max-width: 80px;
}

.p-sas__item .c-link.-kyoiku img {
  max-width: 100px;
}

.p-sas__item .c-link.-takaratomy img {
  max-width: 91px;
}

.p-sas__item .c-link.-smbc img {
  max-width: 101px;
}

@media screen and (min-width: 768px) {
  .p-sas {
    display: flex;
    justify-content: center;
    gap: 0 min(calc(24/864*100%), 24px);
  }
}

@media screen and (max-width: 767px) {
  .p-sas__item:not(:first-child) {
    margin-top: 2rem;
  }
}

/* banner
-------------------------------------------- */
.p-banner {
  text-align: center;
}

/* *****************************************
 * utility
 * ***************************************** */

/* background-color
-------------------------------------------- */
.u-bg-secondary {
  background-color: var(--secondary-color);
}

.u-bg-yellow {
  background-color: #f5f5f5;
}

.u-bg-white-80 {
  background-color: rgb(255, 255, 255, 0.8);
}

/* color
-------------------------------------------- */
.u-text-white {
  color: #ffffff;
}

.u-text-deep-green {
  color: #00a57d;
}

.u-text-jade {
  color: #0082cd;
}

.u-text-navy {
  color: #00469b;
}

.u-text-orange {
  color: #eb5500;
}

.u-text-pink {
  color: #960582;
}

.u-text-purple {
  color: #551e87;
}

.u-text-yellow-green {
  color: #7dbe32;
}

.u-text-red {
  color: #e60064;
}

/* display
-------------------------------------------- */
.u-d-inline-block {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .u-d-md-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-d-sm-none {
    display: none;
  }
}

/* font-family {
-------------------------------------------- */
.u-ff-primary {
  font-family: "Zen Kaku Gothic New";
}

/* font-size
-------------------------------------------- */
.u-fs-14 {
  font-size: .875rem;
}

.u-fs-12 {
  font-size: .75rem;
}

/* font-weight
-------------------------------------------- */
.u-fw-900 {
  font-weight: 900;
}

/* line-height
-------------------------------------------- */
.u-lh-base {
  line-height: 1.5;
}

/* margin
-------------------------------------------- */
.u-mt-8 {
  margin-top: .5rem;
}

.u-mt-16 {
  margin-top: 1rem;
}

.u-mt-32 {
  margin-top: 2rem;
}

.u-mx-n16 {
  margin-left: -1rem;
  margin-right: -1rem;
}

.justify {
  text-align: justify;
}

.center {
  text-align: center;
}



@media screen and (max-width: 767px) {
  .u-mt-sm-16 {
    margin-top: 1rem;
  }

  .u-mt-sm-64 {
    margin-top: 4rem;
  }

  .u-mt-sm-112 {
    margin-top: 7rem;
  }
}

/* padding
-------------------------------------------- */
.u-pb-32,
.u-py-32 {
  padding-bottom: 2rem;
}

.u-pt-16,
.u-py-16 {
  padding-top: 1rem;
}

.u-px-16 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.u-py-16 {
  padding-bottom: 1rem;
}

.u-py-32 {
  padding-top: 2rem;
}

@media screen and (min-width: 768px) {
  .u-px-md-0 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .u-px-sm-0 {
    padding-left: 0;
    padding-right: 0;
  }

  .u-px-sm-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* position
-------------------------------------------- */
.u-sticky-bottom {
  bottom: 0;
  position: sticky;
}

/* text-align
-------------------------------------------- */
.u-text-center {
  text-align: center;
}

.u-text-left {
  text-align: justify;
}

@media screen and (max-width: 767px) {
  .u-text-md-center {
    text-align: center;
  }
}

/* z-index
-------------------------------------------- */
.u-z-100 {
  z-index: 100;
}

/* *****************************************
 * animation
 * ***************************************** */
.a-expansion {
  transform: scale(0);
}

.a-expansion.is-animated {
  animation: expansion 1s ease-out forwards;
}

@keyframes expansion {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(0.8);
  }

  90% {
    transform: scale(0.95);
  }

  60%,
  80%,
  100% {
    transform: scale(1);
  }
}

.a-slide-up {
  opacity: 0;
  transform: translateY(40px);
}

.a-slide-up.is-animated {
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
  }

  80%,
  100% {
    opacity: 1;
  }
}</pre></body></html>