@charset "UTF-8";

/* ##############################################################################

    KEYFRAMES

############################################################################## */
@keyframes rotate {
  0% {
    rotate: 0;
  }

  100% {
    rotate: 360deg;
  }
}

@keyframes rotate_reverse {
  0% {
    rotate: 0;
  }

  100% {
    rotate: -360deg;
  }
}

/* アニメーション用キーフレーム */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }

  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInScale {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.8);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes characterEntrance {
  0% {
    opacity: 0;
    transform: translateX(-50%) rotate(-360deg) scale(0) translateY(100px);
  }

  40% {
    opacity: 1;
    transform: translateX(-50%) rotate(-180deg) scale(1.3) translateY(-20px);
  }

  60% {
    transform: translateX(-50%) rotate(0deg) scale(0.9) translateY(10px);
  }

  80% {
    transform: translateX(-50%) rotate(10deg) scale(1.05) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) rotate(0deg) scale(1) translateY(0);
  }
}

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

/* ##############################################################################

    COMMON

############################################################################## */
* {
  letter-spacing: .1em;
  letter-spacing: var(--ltr-space-default);
}

html {
  font-size: max(13.3333333333px, min(0.8333333333vw, 1rem));
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

@media screen and (min-width: 48em) and (max-width: 67.5em) {
  html {
    overflow-y: auto;
    overflow-x: auto;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: min(3.3816425121vw, 0.875rem);
  }
}

.hero-page {
  font-family: "Hiragino UD Sans W5 JIS2004", "こぶりなゴシック W6 JIS2004", "Koburina Gothic W6 JIS2004";
  font-family: var(--font-primary);
  line-height: 1.8;
  line-height: var(--line-height-default);
  font-weight: 500;
  font-feature-settings: "palt";
  font-size: 1rem;
  *font-size: small;
  *font: x-small;
  color: #333;
  color: var(--clr-body);
  -webkit-font-smoothing: antialiased;
  height: 100%;
  word-break: break-word;
  margin: 0;
  padding-top: 1vh;
  background: #f2f7fa;
  position: relative;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
  height: 50px;
  width: auto;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .hero-logo {
    top: 10px;
    left: 10px;
    height: 20px;
  }
}


@media screen and (min-width: 48em) and (max-width: 67.5em) {
  .hero-page:not(.mce-content-body) {
    min-width: 1080px;
  }
}

@media screen and (max-width: 768px) {
  .hero-page {
    padding-top: 3vh;
    -webkit-text-size-adjust: none;
  }
}

/* ##############################################################################
    RESET & BASE (クラスベース)
############################################################################## */
.hero-page *,
.hero-page *:after,
.hero-page *::before {
  box-sizing: border-box;
}

.hero-page * {
  letter-spacing: .1em;
  color: #ff2722;
}

.hero-img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* ##############################################################################
    UTILITY CLASSES
############################################################################## */
.txt-ctr {
  text-align: center;
}

.pos_rel {
  position: relative;
}

.pos_ab {
  position: absolute;
}

.inner {
  width: 90%;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .inner {
    width: 80%;
  }
}

.flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.flex-a-ctr {
  align-items: center;
}

.flex-j-ctr {
  justify-content: center;
}

.pc-none {
  display: none;
}

@media screen and (min-width: 48em) {
  .pc-none {
    display: inline;
  }
}

/* ##############################################################################
    HERO SECTION
############################################################################## */
.hero {
  position: relative;
  overflow: hidden;
}


.hero .deco-img {
  top: 10vh;
  width: 25vw;
  opacity: 0;
}

.hero .deco-img.deco-img01.loaded {
  animation: fadeInLeft 1s ease-out 0.2s forwards;
}

.hero .deco-img.deco-img02.loaded {
  animation: fadeInRight 1s ease-out 0.2s forwards;
}

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

.hero .deco-img.deco-img01 {
  left: 0;
}

.hero .deco-img.deco-img02 {
  right: 0;
}

.hero--content {
  position: relative;
  max-width: 67.5rem;
  aspect-ratio: 1/1;
  margin-top: -15rem;
  opacity: 0;
}

.hero--content.loaded {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
}

@media screen and (max-width: 768px) {
  .hero--content {
    width: 28rem;
    max-width: inherit;
    margin-top: -2rem;
    margin-bottom: 2rem;
  }
}

.hero--ttl {
  position: relative;
  opacity: 0;
}

.hero--ttl.loaded {
  animation: fadeInDown 0.8s ease-out forwards;
}

@media screen and (max-width: 768px) {
  .hero--ttl {
    width: 99%;
    margin: 0 auto;
  }
}

.hero--ttl .hero-img {
  width: 60.75rem;
}

@media screen and (max-width: 768px) {
  .hero--ttl .hero-img {
    width: 100%;
  }
}

.hero--list {
  z-index: 1;
  position: absolute;
  top: 10%;
  left: 10%;
  transform-origin: center;
  width: 80%;
  height: 80%;
  border: 5rem solid #6be4ff40;
  border-radius: 50%;
  animation: rotate 30s linear infinite;
}

@media screen and (max-width: 768px) {
  .hero--list {
    border: 1rem solid #6be4ff40;
  }
}

.hero--item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11rem;
  aspect-ratio: 1 / 1;
  --angle: calc((360deg / 9 * var(--index)) - 90deg);
  --width: calc((62 / 2 * 1rem) - (12.375 / 2 * 1rem));
  --x: calc(cos(var(--angle)) * var(--width));
  --y: calc(sin(var(--angle)) * var(--width));
  translate: calc(var(--x) - 50%) calc(var(--y) - 50%);
  background: linear-gradient(180deg, #ffb4b2 0%, #f58280 50%, #ff2722 50%, #fe2722 100%);
  border-radius: 50%;
  animation: rotate_reverse 30s linear infinite;
  opacity: 0;
}

/* 各アイテムに異なるアニメーションを適用 */
.hero--item01.loaded {
  animation: rotate_reverse 30s linear infinite, zoomIn 0.6s ease-out 0.5s forwards;
}

.hero--item02.loaded {
  animation: rotate_reverse 30s linear infinite, bounceIn 0.8s ease-out 0.6s forwards;
}

.hero--item03.loaded {
  animation: rotate_reverse 30s linear infinite, fadeInLeft 0.7s ease-out 0.7s forwards;
}

.hero--item04.loaded {
  animation: rotate_reverse 30s linear infinite, fadeInRight 0.7s ease-out 0.8s forwards;
}

.hero--item05.loaded {
  animation: rotate_reverse 30s linear infinite, rotateIn 0.8s ease-out 0.9s forwards;
}

.hero--item06.loaded {
  animation: rotate_reverse 30s linear infinite, slideInScale 0.7s ease-out 1s forwards;
}

.hero--item07.loaded {
  animation: rotate_reverse 30s linear infinite, fadeInUp 0.7s ease-out 1.1s forwards;
}

.hero--item08.loaded {
  animation: rotate_reverse 30s linear infinite, fadeInDown 0.7s ease-out 1.2s forwards;
}

.hero--item09.loaded {
  animation: rotate_reverse 30s linear infinite, zoomIn 0.6s ease-out 1.3s forwards;
}

@media screen and (max-width: 768px) {
  .hero--item {
    width: 6.5rem;
    --width: calc((30 / 2 * 1rem) - (5.143 / 2 * 1rem));
  }
}

.hero--item01 {
  --index: 0;
}

.hero--item02 {
  --index: 1;
}

.hero--item03 {
  --index: 2;
}

.hero--item04 {
  --index: 3;
}

.hero--item05 {
  --index: 4;
}

.hero--item06 {
  --index: 5;
}

.hero--item07 {
  --index: 6;
}

.hero--item08 {
  --index: 7;
}

.hero--item09 {
  --index: 8;
}

.hero--item .hero-img {
  width: auto;
  height: 6.5rem;
  margin-bottom: 1rem;
}

@media screen and (max-width: 768px) {
  .hero--item .hero-img {
    height: 2.2857142857rem;
    margin-bottom: 0.4285714286rem;
  }
}

.hero--item .ttl {
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: white;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .hero--item .ttl {
    font-size: 0.7142857143rem;
    text-align: center;
  }
}

.hero--txtarea {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 55px;
  opacity: 0;
}

.hero--txtarea.loaded {
  animation: fadeInUp 0.8s ease-out 1.4s forwards;
}

@media screen and (max-width: 768px) {
  .hero--txtarea {
    row-gap: 1rem;
    padding-bottom: 2.8571428571rem;
  }
}

.hero--pc-container {
  position: relative;
  display: inline-block;
}

.hero--txtarea .hero-img {
  width: 40rem;
  margin-left: 75px;
}

.hero--pc-img {
  display: block;
}

.hero--character {
  position: absolute;
  top: 4vh;
  left: 50%;
  transform: translateX(-50%);
  max-width: 100px;
  opacity: 0;
  z-index: 10;
}

.hero--character.loaded {
  animation: characterEntrance 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) 2s forwards;
}

@media screen and (max-width: 768px) {
  .hero--txtarea .hero-img {
    width: 15rem;
    margin-left: 15px;
  }

  .hero--character {
    max-width: 35px;
    top: 2vh;
  }
}

.hero--txtarea .ttl .ttl-sm {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1em;
  font-size: 1.125rem;
  line-height: 1;
  border: 2px solid #ff2722;
}

@media screen and (max-width: 768px) {
  .hero--txtarea .ttl .ttl-sm {
    padding: 0.2857142857rem 0.4285714286rem;
    margin-bottom: 0.5714285714rem;
    font-size: 0.9285714286rem;
  }
}

.hero--txtarea .ttl .ttl-lg {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: #ff2722;
}

@media screen and (max-width: 768px) {
  .hero--txtarea .ttl .ttl-lg {
    font-size: 1.2857142857rem;
  }
}

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


/* home_first
********************************************** */
.home_first {
  padding: 0;
  background: aliceblue;
}

.home_first--ttlarea {
  height: 10vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-scroll-container {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.logo-scroll-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: fit-content;
  gap: 3rem;
  padding: 0 2rem;
  animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

.logo-scroll-item {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-scroll-item img {
  height: 60%;
  width: auto;
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

.logo-scroll-item--text {
  white-space: nowrap;
}

.logo-scroll-text {
  font-size: 2rem;
  font-weight: bold;
  color: #3d414d;
  display: flex;
  align-items: center;
  height: 60%;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
  .logo-scroll-text {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  .logo-scroll-item img {
    height: 50%;
    max-width: 80px;
    max-height: 40px;
  }

  .logo-scroll-track {
    gap: 1rem;
    padding: 0 1rem;
  }
}

.home_first--list {
  padding-bottom: 3vh;
  gap: 1rem;
  margin-top: -3vh;
  width: 80%;
  max-width: 1200px;
  min-width: 600px;
  margin: auto;
  flex-wrap: nowrap;
}

@media screen and (min-width: 48em) {
  .home_first--list {
    justify-content: space-between;
    gap: 2rem;
  }
}

@media screen and (max-width: 768px) {
  .home_first--list {
    width: 95%;
    min-width: auto;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 0;

  }
}

.home_first--item {
  position: relative;
  width: 20%;
  flex-shrink: 0;
}

.home_first--item {
  transform: translateY(1.25rem);
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}

.home_first--item.active,
.home_first--item.loaded {
  transform: translateY(0);
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .home_first--list {
    justify-content: center;
    flex-wrap: wrap;
  }

  .home_first--item {
    row-gap: 0.8571428571rem;
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
  }

  /* 上段：1-3番目を3つ並べる */
  .home_first--item:nth-of-type(1),
  .home_first--item:nth-of-type(2),
  .home_first--item:nth-of-type(3) {
    width: 30%;
    margin: 0;
    flex: 0 0 30%;
  }

  /* 改行用の要素 */
  .home_first--break {
    flex-basis: 100%;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
  }

  /* 下段：4-5番目を2つ並べる */
  .home_first--break~.home_first--item {
    width: 30%;
    margin-left: 0;
    margin-right: 0;
    flex: 0 0 30%;
  }
}

.home_first--item:nth-of-type(1) {
  z-index: 5;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(1) {
    transition-delay: 0.2s;
  }
}

.home_first--item:nth-of-type(2) {
  z-index: 4;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(2) {
    transition-delay: 0.4s;
  }
}

.home_first--item:nth-of-type(3) {
  z-index: 3;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(3) {
    transition-delay: 0.6s;
  }
}

.home_first--item:nth-of-type(4) {
  z-index: 2;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(4) {
    transition-delay: 0.8s;
  }
}

.home_first--item:nth-of-type(5) {
  z-index: 1;
}

@media print,
screen and (min-width: 48em) {
  .home_first--item:nth-of-type(5) {
    transition-delay: 1s;
  }
}

.home_first--item .num {
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-shadow: 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1, 0 0 2px #1e55b1;
}

.home_first--item .img {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home_first--item .img img {
  width: 100%;
  height: auto;
  max-width: 200px;
  object-fit: contain;
}

.home_first--item .award-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  z-index: 1;
}

.home_first--item .award-label {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #333;
  margin: 0 0 0.5rem 0;
  font-weight: bold;
}

.home_first--item .award-number {
  font-size: 2rem;
  line-height: 1.2;
  color: #ff2722;
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.home_first--item .award-num {
  font-size: 1.5em;
  display: inline-block;
}

.home_first--item .award-unit {
  font-size: 1.3rem;
  line-height: 1.4;
  color: #333;
  font-weight: bold;
  display: block;
  margin-top: 0.3rem;
}

@media screen and (max-width: 768px) {
  .home_first--item .img img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
  }

  .home_first--item .award-label {
    font-size: 0.7142857143rem;
    margin-bottom: 0.2857142857rem;
  }

  .home_first--item .award-number {
    font-size: 1.4285714286rem;
  }

  .home_first--item .award-num {
    font-size: 1.5em;
  }

  .home_first--item .award-unit {
    font-size: 0.7142857143rem;
    line-height: 1.4;
    margin-top: 0.2rem;
  }
}

.home_first--item .ttl {
  min-height: 3.25rem;
  line-height: 1.625;
}