@charset "UTF-8";
:root {
  /*===================== Color =====================*/
  --color-toyopet: #005952;
  --color-hac-base: #005952;
  --color-chubase-red: #F40013;
  --color-hac-base: #0F5E75;
  --color-kinto: #20A5C0;
  --color-main: #1F1F1F;
  --color-light-blue: #44A0BE;
  --color-blue: #178BD2;
  --color-red: #DB0011;
  --color-red02: #E54956;
  --color-pink: #EB6B76;
  --color-orange: #F28212;
  --color-gold: #B18B31;
  --color-light-gray: #C8C8C8;
  --color-white-blue: #E1ECEF;
  --color-gray: #DEE4E8;
  --color-blue-gray-light: rgba(235, 241, 245, 0.9);
  --color-blue-gray: #8E9FA4;
  --color-used: #EC1223;
  --color-light-green: #46B41E;
  --color-dark-green: #3A4246;
  --color-green: #00A941;
  --color-green02: #46B196;
  --color-green03: #00CDA4;
  --color-02: #556168;
  --color-03: #2970C0;
  --color-navy: #38405C;
  --color-sub-txt: #818181;
  --color-sub-txt-v02: #6F6F6F;
  --color-sub: #9D9D9D;
  --color-sub-line05: #d6d6d6;
  /*表*/
  --color-table: #494949;
  /*Table*/
  --color-table-bg: #F2F2F2;
  --color-table-menu: #79888D;
  /*===================== Gradient =====================*/
  --gradient-green-blue: linear-gradient(90deg,#78B50F 1%,#69D04D 35%,#38B5CE 72%,#3C64A1 100%);
  --gradient-red-yellow: linear-gradient(90deg,#F05353,#E7B500);
  /*===================== Font =====================*/
  --font-montserrat: "Montserrat", sans-serif;
  --font-manrope: "Manrope", sans-serif;
  --font-bungee: "Bungee", sans-serif;
  /*===================== CONT radius =====================*/
  --ease-bounce-s:linear(0, 0.271 8.8%, 0.542 19.9%, 0.837 34.2%, 1 44.7%, 0.943 51.1%, 0.925 57.5%, 0.937 63.1%, 1 77.4%, 0.991 84.2%, 1);
  --ease-bounce:linear(0, 0.247 13.2%, 0.415 20.5%, 0.624 27.4%, 1 37.8%, 0.794 44.9%, 0.747 47.9%, 0.731 50.8%, 0.744 53.5%, 0.785 56.4%, 0.999 65.5%, 0.927 69.6%, 0.904 73.4%, 0.921 77%, 1 84.5%, 0.981 89.4%, 1);
}

/*================================= 見出し =================================*/
/*======================= SP-VW =======================*/
/*======================= PC-VW =======================*/
/*------ 使用例 ------
.text {
	font-size: spvw(16);
}
*/
/*======================= PCLG-VW =======================*/
/*================================= マウスオーバー =================================*/
/*================================= コンテンツ 角丸 =================================*/
/*================================= アニメーション =================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes big {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes flipcard01 {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(180deg);
  }
}
@keyframes flipcard02 {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
/*================================= メニュー左寄せ =================================*/
/*===================== ▼▼▼▼▼ 共通 ▼▼▼▼▼ =====================*/
.kumaru-title {
  line-height: 1.2em;
  font-weight: bold;
  font-size: calc(55 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  .kumaru-title {
    font-size: calc(43 / 1366 * 100vw);
  }
}
.kumaru-title.animation .ani-span {
  display: inline-block;
  animation-name: kumaru-title-s;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.kumaru-title.animation .ani-span:nth-of-type(1) {
  animation-delay: 0s;
}
.kumaru-title.animation .ani-span:nth-of-type(2) {
  animation-delay: 0.1s;
}
.kumaru-title.animation .ani-span:nth-of-type(3) {
  animation-delay: 0.2s;
}
.kumaru-title.animation .ani-span:nth-of-type(4) {
  animation-delay: 0.3s;
}
.kumaru-title.animation .ani-span:nth-of-type(5) {
  animation-delay: 0.4s;
}
.kumaru-title.animation .ani-span:nth-of-type(6) {
  animation-delay: 0.5s;
}
.kumaru-title.animation .ani-span:nth-of-type(7) {
  animation-delay: 0.6s;
}
.kumaru-title.animation .ani-span:nth-of-type(8) {
  animation-delay: 0.7s;
}
.kumaru-title.animation .ani-span:nth-of-type(9) {
  animation-delay: 0.8s;
}
.kumaru-title.animation .ani-span:nth-of-type(10) {
  animation-delay: 0.9s;
}
.kumaru-title.animation .ani-span:nth-of-type(11) {
  animation-delay: 1s;
}
.kumaru-title.animation .ani-span:nth-of-type(12) {
  animation-delay: 1.1s;
}
@keyframes kumaru-title-s {
  0% {
    transform: translate(0, 0);
  }
  15% {
    transform: translate(0, -0.5em);
  }
  30% {
    transform: translate(0, 0);
  }
}
.kumaru-title .green {
  color: #2EC088;
}
.kumaru-title .small {
  font-size: 0.65em;
}

/*===================== ▲▲▲▲▲ 共通 ▲▲▲▲▲ =====================*/
main {
  background-color: #FFF1CC;
  position: relative;
}
main .correct-box {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3960784314);
  z-index: 10000000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
main .correct-box.is-active {
  opacity: 1;
  pointer-events: fill;
}
main .correct-box.is-active div.correct-box-inner div.kumaru-img {
  transform: scale(1);
}
main .correct-box.is-active div.correct-box-inner div.kami-img.kami-img01 {
  transform: scale(1);
}
main .correct-box.is-active div.correct-box-inner div.kami-img.kami-img02 {
  transform: scale(1);
}
main .correct-box div.correct-box-inner {
  position: relative;
}
@media screen and (min-width: 1000px) {
  main .correct-box div.correct-box-inner {
    margin: 0 0 0 auto;
    width: calc(100% - 180px);
  }
}
@media screen and (min-width: 1280px) {
  main .correct-box div.correct-box-inner {
    width: calc(100% - 225px);
  }
}
main .correct-box div.correct-box-inner div.kumaru-img {
  width: calc(515 / 750 * 100vw);
  margin: auto;
  transform: scale(0);
  transition: all 0.3s 0.2s ease;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  main .correct-box div.correct-box-inner div.kumaru-img {
    width: 29.6%;
  }
}
main .correct-box div.correct-box-inner div.kami-img {
  position: absolute;
  transition: all 0.5s 0.4s cubic-bezier(0, 0.68, 0.23, 0.99);
  transform: scale(0);
}
main .correct-box div.correct-box-inner div.kami-img.kami-img01 {
  top: -50%;
  left: 0%;
  width: 100%;
  transform-origin: bottom;
}
@media screen and (min-width: 768px) {
  main .correct-box div.correct-box-inner div.kami-img.kami-img01 {
    transform-origin: center right;
    width: 30%;
    top: 0;
    left: 5%;
  }
}
main .correct-box div.correct-box-inner div.kami-img.kami-img02 {
  top: 50%;
  right: 3%;
  width: 100%;
  transform-origin: top;
}
@media screen and (min-width: 768px) {
  main .correct-box div.correct-box-inner div.kami-img.kami-img02 {
    transform-origin: center left;
    width: 30%;
    top: 0;
    right: 3%;
  }
}

div.hero-area {
  position: relative;
  overflow: hidden;
  padding: 35vw 0;
}
@media screen and (min-width: 768px) {
  div.hero-area {
    padding: 0;
  }
}
div.hero-area div.video-mask {
  position: relative;
  line-height: 0;
  -webkit-mask-image: url(../../myimg/kumaru/video-mask.png);
          mask-image: url(../../myimg/kumaru/video-mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
  transform: rotate(47deg) translate(-15%, 0);
  width: calc(900 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.hero-area div.video-mask {
    width: 100%;
    transform: rotate(0);
  }
}
div.hero-area div.video-wrap {
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  animation: hero-video 1s 0.5s var(--ease-bounce) forwards;
}
div.hero-area div.video-wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #2EC088;
  opacity: 0.8;
}
div.hero-area div.video-wrap video {
  width: 100%;
  position: relative;
}
@keyframes hero-video {
  0% {
    border-radius: 50em;
    transform: scale(0.7);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    border-radius: 0;
    opacity: 1;
  }
}
@keyframes hero-kumaru-big {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes hero-kumaru02 {
  0% {
    transform: translate(50%, 70%);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes poyoyon1 {
  0% {
    transform: scale(0.7, 1) translate(0, -15%);
    transform-origin: bottom;
    opacity: 0;
  }
  25% {
    transform: scale(1.1, 0.7) translate(0, 0);
    transform-origin: bottom;
    opacity: 1;
  }
  50% {
    transform: scale(0.9, 1.1) translate(0, -5%);
    transform-origin: bottom;
    opacity: 1;
  }
  70% {
    transform: scale(1, 0.9) translate(0, 0%);
    transform-origin: bottom;
    opacity: 1;
  }
  100% {
    transform: scale(1, 1) translate(0, 0);
    transform-origin: bottom;
    opacity: 1;
  }
}
@keyframes fuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 20%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fuwa02 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -20%);
  }
  100% {
    transform: translate(0, 0);
  }
}
div.hero-area div.hero-kumaru {
  position: absolute;
  transform: scale(0);
}
div.hero-area div.hero-kumaru.hero-kumaru01 {
  animation: poyoyon1 1s 0.4s ease forwards;
  transform-origin: bottom;
  width: calc(572 / 750 * 100vw);
  right: -17%;
  top: calc(172 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  div.hero-area div.hero-kumaru.hero-kumaru01 {
    width: 44.6%;
    right: 0;
    top: 10%;
  }
}
div.hero-area div.hero-kumaru.hero-kumaru02 {
  animation: hero-kumaru02 0.6s 0.45s var(--ease-bounce-s) forwards, fuwa 5s 1.8s ease infinite;
  width: calc(131 / 750 * 100vw);
  right: 50%;
  top: 60%;
}
@media screen and (min-width: 768px) {
  div.hero-area div.hero-kumaru.hero-kumaru02 {
    width: 9.6%;
    right: 50%;
    top: 48%;
  }
}
div.hero-area div.hero-kumaru.hero-kumaru03 {
  animation: hero-kumaru02 0.6s 0.45s var(--ease-bounce-s) forwards, fuwa02 5s 1.8s ease infinite;
  width: calc(90 / 750 * 100vw);
  right: 66%;
  top: 37%;
}
@media screen and (min-width: 768px) {
  div.hero-area div.hero-kumaru.hero-kumaru03 {
    width: 4.6%;
    right: 64%;
    top: 78%;
  }
}
div.hero-area div.hero-kumaru.hero-kumaru04 {
  animation: hero-kumaru02 0.6s 0.45s var(--ease-bounce-s) forwards, fuwa02 5s 1.8s ease infinite;
  width: calc(117 / 750 * 100vw);
  right: 35%;
  top: 1%;
}
@media screen and (min-width: 768px) {
  div.hero-area div.hero-kumaru.hero-kumaru04 {
    width: 10%;
    right: 65%;
    top: 25%;
  }
}
div.hero-area div.hero-kumaru.hero-kumaru05 {
  animation: hero-kumaru02 0.6s 0.45s var(--ease-bounce-s) forwards, fuwa02 5s 1.8s ease infinite;
  width: calc(91 / 750 * 100vw);
  right: 84%;
  top: 53%;
}
@media screen and (min-width: 768px) {
  div.hero-area div.hero-kumaru.hero-kumaru05 {
    width: 6.4%;
    right: 87%;
    top: 52%;
  }
}
div.hero-area div.hero-kumaru.hero-kumaru06 {
  animation: hero-kumaru02 0.8s 0.5s var(--ease-bounce-s) forwards, fuwa 5s 2s ease infinite;
  width: calc(131 / 750 * 100vw);
  right: 10%;
  top: 3%;
}
@media screen and (min-width: 768px) {
  div.hero-area div.hero-kumaru.hero-kumaru06 {
    width: 13.2%;
    right: 85%;
    top: 13%;
  }
}

section.sec-kumaru div.sec-kumaru-inner {
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  section.sec-kumaru div.sec-kumaru-inner {
    padding: 8% 0 0;
  }
}
section.sec-kumaru div.sec-kumaru-inner div.kumaru-txt-bg {
  position: absolute;
  top: -10%;
  left: 0;
  z-index: -1;
}
section.sec-kumaru div.kumaru-txt-wrap {
  opacity: 0;
  width: 86.6%;
  margin: calc(90 / 750 * 100vw) auto 0;
}
@media screen and (min-width: 768px) {
  section.sec-kumaru div.kumaru-txt-wrap {
    width: 100%;
    margin: 0;
    position: absolute;
    top: 40%;
    left: 45%;
    padding: 0;
  }
}
section.sec-kumaru div.kumaru-txt-wrap.animation {
  animation: fade 0.8s 0.2s forwards;
}
section.sec-kumaru div.kumaru-txt-wrap p {
  line-height: 2.5em;
  font-weight: 600;
  margin-top: 1em;
  font-size: calc(28 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-kumaru div.kumaru-txt-wrap p {
    font-size: max(10px, 18 / 1366 * 100vw);
  }
}
section.sec-kumaru div.kumaru-road-img {
  position: relative;
}
section.sec-kumaru div.kumaru-road-img.animation div.ani-img img {
  animation: kumaru-road-img 3s 0s ease forwards;
  transform-origin: bottom;
}
@keyframes kumaru-road-img {
  0% {
    transform: translate(0) rotate(0);
  }
  100% {
    transform: translate(100%, 100%) rotate(180deg);
  }
}
section.sec-kumaru div.kumaru-road-img div.ani-img {
  position: absolute;
  overflow: hidden;
  border-radius: 100vw;
  width: 51.2%;
  top: 8%;
  left: 26.7%;
}
@media screen and (min-width: 768px) {
  section.sec-kumaru div.kumaru-road-img div.ani-img {
    width: 29.2%;
    top: 8%;
    left: 6.7%;
  }
}

section.sec-know {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  padding: calc(96 / 750 * 100vw) calc(53 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-know {
    padding: 8% 26px 0;
  }
}
section.sec-know div.sec-know-inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec-know div.sec-know-inner {
    height: 900vh;
  }
}
@keyframes kumaru-title {
  0% {
    transform: translate(0, 0);
  }
  15% {
    transform: translate(0, -1em);
  }
  30% {
    transform: translate(0, 0);
  }
}
section.sec-know .kumaru-title {
  position: relative;
  z-index: 1;
}
section.sec-know .kumaru-title .ani-span {
  display: inline-block;
  animation-name: kumaru-title;
  animation-duration: 3s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(1) {
  animation-delay: 0s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(2) {
  animation-delay: 0.1s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(3) {
  animation-delay: 0.2s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(4) {
  animation-delay: 0.3s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(5) {
  animation-delay: 0.4s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(6) {
  animation-delay: 0.5s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(7) {
  animation-delay: 0.6s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(8) {
  animation-delay: 0.7s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(9) {
  animation-delay: 0.8s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(10) {
  animation-delay: 0.9s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(11) {
  animation-delay: 1s;
}
section.sec-know .kumaru-title .ani-span:nth-of-type(12) {
  animation-delay: 1.1s;
}
section.sec-know .kumaru-title .inner {
  display: inline-block;
  position: relative;
}
section.sec-know .kumaru-title .inner::after, section.sec-know .kumaru-title .inner::before {
  content: "";
  display: block;
  position: absolute;
  width: max(2px, 5 / 1366 * 100vw);
  height: 1.2em;
  border-radius: 50em;
  background-color: #BFBFBF;
  bottom: 0;
}
section.sec-know .kumaru-title .inner::after {
  left: -0.8em;
  transform: rotate(-30deg);
}
section.sec-know .kumaru-title .inner::before {
  right: -0.8em;
  transform: rotate(30deg);
}
section.sec-know div.know-kumaru-img {
  margin: 60vw auto 0;
  opacity: 0;
  width: calc(295 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-know div.know-kumaru-img {
    width: 24%;
    margin: 3% auto 0;
  }
}
section.sec-know div.know-kumaru-img.animation {
  animation: know-kumaru-img 1s 0.8s var(--ease-bounce) forwards;
}
@keyframes know-kumaru-img {
  0% {
    transform: translate(0, -30%);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
section.sec-know div.sticky-area {
  position: sticky;
  top: 5vh;
  left: 0;
  background-color: #fff;
  background-image: url(../../myimg/kumaru/know-bg.png);
  box-sizing: border-box;
  height: 90vh;
  padding: calc(59 / 750 * 100vw) 0 0;
  border-radius: calc(26 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-size: 40%;
    border-radius: 26px;
    padding: 5% 0;
    top: 26px;
    height: calc(100vh - 52px);
  }
}
section.sec-know div.sticky-area .kumaru-title {
  text-align: center;
}
section.sec-know div.sticky-item {
  position: sticky;
  top: 40vw;
  height: 70vh;
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 26px);
    top: 0;
  }
}
section.sec-know div.sticky-item div.sticky-item-inner {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item div.sticky-item-inner {
    width: 23%;
    margin: 0 0 0 10%;
  }
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item div.sticky-item-inner.right {
    margin: 0 10% 0 auto;
  }
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item div.sticky-item-inner.sticky-item-inner03 {
    margin-top: 7%;
    margin-left: 14%;
  }
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item div.sticky-item-inner.sticky-item-inner04 {
    margin-top: 10%;
    margin-right: 13%;
  }
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item div.sticky-item-inner.sticky-item-inner05 {
    margin-top: 15%;
    margin-left: 10%;
  }
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item div.sticky-item-inner.sticky-item-inner06 {
    margin-top: 18%;
    margin-right: 8%;
  }
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item div.sticky-item-inner.sticky-item-inner07 {
    margin-top: 25%;
    margin-left: 14%;
  }
}
@media screen and (min-width: 768px) {
  section.sec-know div.sticky-item div.sticky-item-inner.sticky-item-inner08 {
    margin-top: 27%;
    margin-right: 10%;
  }
}

section.sec-work {
  overflow: hidden;
  padding: calc(118 / 750 * 100vw) 0;
}
@media screen and (min-width: 768px) {
  section.sec-work {
    padding: calc(236 / 1366 * 100vw) 0 calc(195 / 1366 * 100vw);
  }
}
section.sec-work div.work-lead-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 86.6%;
  margin: 0 auto calc(88 / 750 * 100vw);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-work div.work-lead-box {
    width: 89%;
    margin-bottom: calc(52 / 1366 * 100vw);
  }
}
section.sec-work div.work-lead-box.animation {
  animation: fade 0.8s 0.2s forwards;
}
section.sec-work div.work-lead-box p {
  letter-spacing: -0.03em;
  line-height: 2.18em;
  font-weight: 500;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  section.sec-work div.work-lead-box p {
    width: 53%;
    margin-top: 0;
    font-size: max(10px, 16 / 1366 * 100vw);
  }
}
section.sec-work div.sec-work-inner {
  position: relative;
  margin-bottom: calc(450 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work div.sec-work-inner {
    margin-bottom: calc(204 / 1366 * 100vw);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-work div.sec-work-inner {
    margin-bottom: calc(114 / 1366 * 100vw);
  }
}
section.sec-work div.sec-work-inner {
  opacity: 0;
}
section.sec-work div.sec-work-inner.animation {
  animation: fade 0.8s 0.2s forwards;
}
section.sec-work div.sec-work-inner div.work-road-img {
  position: absolute;
  top: -2%;
  left: 0;
}
@media screen and (min-width: 768px) {
  section.sec-work div.sec-work-inner div.work-road-img {
    top: -12%;
  }
}
section.sec-work div.work-slide-wrap {
  width: 85%;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec-work div.work-slide-wrap {
    /*width: 89%;
    margin: auto;*/
    width: 94%;
    margin: 0 0 0 auto;
  }
}
section.sec-work .splide__arrows {
  width: calc(179 / 750 * 100vw);
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  top: 119vw;
  right: 2vw;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__arrows {
    width: calc(90 / 1366 * 100vw);
    top: calc(8 / 1366 * 100vw);
    right: auto;
    left: -25%;
  }
}
section.sec-work .splide__arrows .splide__arrow {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__arrows .splide__arrow:hover {
    background-color: var(--color-light-green);
  }
  section.sec-work .splide__arrows .splide__arrow:hover .arrow svg:nth-of-type(1) {
    transform: translate(120%, 0);
  }
  section.sec-work .splide__arrows .splide__arrow:hover .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__arrows .splide__arrow.prev:hover {
    background-color: var(--color-light-green);
  }
  section.sec-work .splide__arrows .splide__arrow.prev:hover .arrow svg:nth-of-type(1) {
    transform: translate(-120%, 0);
  }
  section.sec-work .splide__arrows .splide__arrow.prev:hover .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
}
section.sec-work .splide__arrow {
  border: solid #000 1px;
  background-color: #494949;
  width: calc(80 / 750 * 100vw);
  height: calc(80 / 750 * 100vw);
  border-radius: calc(5 / 750 * 100vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  position: relative;
  transform: translate(0);
  left: 0;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__arrow {
    border-radius: 5px;
    width: clamp(0px, 40 / 1366 * 100vw, 1000px);
    height: clamp(0px, 40 / 1366 * 100vw, 1000px);
    opacity: 1;
  }
}
section.sec-work .splide__arrow .arrow {
  display: block;
  width: 30%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__arrow .arrow {
    width: 27%;
  }
}
section.sec-work .splide__arrow .arrow svg {
  transition: all 0.3s;
}
section.sec-work .splide__arrow .arrow svg:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-120%, 0);
}
section.sec-work .splide__arrow .arrow svg path {
  transition: all 0.3s;
}
section.sec-work .splide__arrow svg {
  display: block;
  width: auto;
  height: auto;
  transform: scaleX(1);
}
@media screen and (min-width: 768px) {
  section.sec-work #work-slide {
    width: 80%;
    margin: 0 0 0 auto;
  }
}
section.sec-work .splide__track {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__track {
    overflow: hidden;
    padding: calc(8 / 1366 * 100vw) 0;
  }
}
section.sec-work .splide__slide {
  background: #2EC088;
  box-sizing: border-box;
  padding: calc(37 / 750 * 100vw);
  border-radius: calc(11 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide {
    padding: calc(20 / 1366 * 100vw);
    border-radius: 6px;
  }
}
section.sec-work .splide__slide.left {
  transform: rotate(-3deg);
}
section.sec-work .splide__slide.right {
  transform: rotate(3deg);
}
section.sec-work .splide__slide div.work-img {
  overflow: hidden;
  isolation: isolate;
  margin-bottom: calc(40 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide div.work-img {
    border-radius: 6px;
    margin-bottom: calc(22 / 1366 * 100vw);
  }
}
section.sec-work .splide__slide h3 {
  text-align: center;
  color: #fff;
  line-height: 1.2em;
  margin-bottom: 0.4em;
  font-weight: 600;
  font-size: calc(36 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide h3 {
    font-size: max(12px, 18 / 1366 * 100vw);
  }
}
section.sec-work .splide__slide h3 .small {
  display: block;
  font-size: 0.6em;
}
section.sec-work .splide__slide p {
  line-height: 1.85em;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: justify;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  section.sec-work .splide__slide p {
    font-size: max(10px, 14 / 1366 * 100vw);
  }
}
section.sec-work a.moriage-link {
  display: block;
  background-image: url(../../myimg/kumaru/moriage-link-bg_sp.webp);
  background-size: cover;
  border: solid 3px #fff;
  position: relative;
  transition: all 0.3s;
  border-radius: calc(34 / 750 * 100vw);
  opacity: 0;
  width: 85.6%;
  padding: calc(78 / 750 * 100vw) calc(50 / 750 * 100vw);
  box-sizing: border-box;
  margin: auto;
}
section.sec-work a.moriage-link.animation {
  animation: fade 0.8s 0.2s forwards;
}
@media screen and (min-width: 768px) {
  section.sec-work a.moriage-link {
    background-image: url(../../myimg/kumaru/moriage-link-bg_pc.webp);
    width: 80%;
    padding: 1% 0;
    border-radius: 34px;
  }
  section.sec-work a.moriage-link:hover .btn {
    background: #fff;
    color: #FF6582;
  }
  section.sec-work a.moriage-link:hover .btn .icon path {
    stroke: #FF6582;
  }
  section.sec-work a.moriage-link:hover .btn .arrow {
    background: #FF6582;
  }
  section.sec-work a.moriage-link:hover .btn .arrow svg:nth-of-type(1) {
    transform: translate(100%, 0);
  }
  section.sec-work a.moriage-link:hover .btn .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
  section.sec-work a.moriage-link:hover .btn .arrow path {
    stroke: #fff;
  }
  section.sec-work a.moriage-link:hover div.moriage-link-img {
    transform: scale(0.97);
  }
}
section.sec-work a.moriage-link div.moriage-link-img {
  margin: auto;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  section.sec-work a.moriage-link div.moriage-link-img {
    width: 87%;
  }
}
section.sec-work a.moriage-link .btn {
  transition: all 0.3s;
  display: block;
  background: #FF6582;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: bold;
  line-height: 1em;
  box-sizing: border-box;
  border-radius: 1.4em;
  border: solid 1px #FF6582;
  font-size: calc(28 / 750 * 100vw);
  padding: 1em 1.4em;
  margin-top: 5%;
}
@media screen and (min-width: 768px) {
  section.sec-work a.moriage-link .btn {
    margin: 0;
    position: absolute;
    bottom: 17%;
    left: 7%;
    width: 26%;
    font-size: calc(14 / 1366 * 100vw);
    padding: 0.6em 0.8em;
    border-radius: 50em;
  }
}
section.sec-work a.moriage-link .btn .arrow {
  display: block;
  overflow: hidden;
  position: relative;
  width: 2.4em;
  background: #fff;
  border-radius: 50em;
  transition: all 0.3s;
}
section.sec-work a.moriage-link .btn .arrow svg {
  transition: all 0.3s;
}
section.sec-work a.moriage-link .btn .arrow svg:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-120%, 0);
}
section.sec-work a.moriage-link .btn .arrow path {
  transition: all 0.3s;
}

section.sec-movie {
  background: #FFE49A;
  border-radius: calc(110 / 750 * 100vw) calc(110 / 750 * 100vw) 0 0;
  padding: calc(100 / 750 * 100vw) 0 calc(200 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-movie {
    border-radius: 110px 110px 0 0;
    padding: calc(64 / 1366 * 100vw) 0 calc(300 / 1366 * 100vw);
  }
}
section.sec-movie div.sec-movie-inner {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 84%;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-movie div.sec-movie-inner {
    width: 75%;
  }
}
section.sec-movie div.sec-movie-inner.animation {
  animation: fade 0.8s 0.2s forwards;
}
section.sec-movie div.sec-movie-inner.animation .movie-img .img01 {
  animation: fade-card 0.8s 0.2s forwards;
}
section.sec-movie div.sec-movie-inner.animation .movie-img .img02 {
  animation: fade-card 0.8s 0.4s forwards;
}
section.sec-movie div.sec-movie-inner.animation .movie-img .img03 {
  animation: fade-card 0.8s 0.6s forwards;
}
@keyframes fade-card {
  0% {
    opacity: 0;
    transform: translate(0, 30%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media screen and (min-width: 768px) {
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap {
    width: 44.6%;
  }
}
section.sec-movie div.sec-movie-inner div.movie-txt-wrap p {
  line-height: 2.18em;
  font-weight: 600;
  margin: 1em 0 2em;
  font-size: calc(28 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap p {
    margin: 3em 0 2em;
    font-size: max(10px, 16 / 1366 * 100vw);
  }
}
section.sec-movie div.sec-movie-inner div.movie-txt-wrap a {
  display: block;
  color: #fff;
  background-color: #FF103D;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border: solid 2px #FF103D;
  box-sizing: border-box;
  font-size: calc(28 / 750 * 100vw);
  padding: 1em 1.4em;
  border-radius: calc(40 / 750 * 100vw);
  margin-top: calc(45 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap a {
    border-radius: calc(20 / 1366 * 100vw);
    padding: 1em 1.4em;
    width: 78.4%;
    font-size: max(10px, 14 / 1366 * 100vw);
    transition: all 0.3s;
    margin-top: 0;
  }
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap a:hover {
    background: #fff;
    color: #FF103D;
  }
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap a:hover .icon path {
    stroke: #FF103D;
  }
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap a:hover .arrow {
    background: #FF103D;
  }
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap a:hover .arrow svg:nth-of-type(1) {
    transform: translate(100%, 0);
  }
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap a:hover .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
  section.sec-movie div.sec-movie-inner div.movie-txt-wrap a:hover .arrow path {
    stroke: #fff;
  }
}
section.sec-movie div.sec-movie-inner div.movie-txt-wrap a .icon {
  display: inline-block;
  width: 1em;
  transform: translate(0.4em, 0.15em);
}
section.sec-movie div.sec-movie-inner div.movie-txt-wrap a .arrow {
  display: block;
  overflow: hidden;
  position: relative;
  width: 2em;
  background: #fff;
  border-radius: 50em;
}
section.sec-movie div.sec-movie-inner div.movie-txt-wrap a .arrow svg {
  transition: all 0.3s;
}
section.sec-movie div.sec-movie-inner div.movie-txt-wrap a .arrow svg:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-120%, 0);
}
section.sec-movie div.sec-movie-inner div.movie-txt-wrap a path {
  transition: all 0.3s;
}
section.sec-movie div.sec-movie-inner div.movie-img {
  position: relative;
}
@media screen and (min-width: 768px) {
  section.sec-movie div.sec-movie-inner div.movie-img {
    width: 50%;
  }
}
section.sec-movie div.sec-movie-inner div.movie-img div.movie-img-inner {
  opacity: 0;
}
section.sec-movie div.sec-movie-inner div.movie-img .img01, section.sec-movie div.sec-movie-inner div.movie-img .img02, section.sec-movie div.sec-movie-inner div.movie-img .img03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 58%;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-movie div.sec-movie-inner div.movie-img .img01, section.sec-movie div.sec-movie-inner div.movie-img .img02, section.sec-movie div.sec-movie-inner div.movie-img .img03 {
    width: 75%;
  }
}
section.sec-movie div.sec-movie-inner div.movie-img .img02 {
  top: 15%;
  left: 43%;
}
@media screen and (min-width: 768px) {
  section.sec-movie div.sec-movie-inner div.movie-img .img02 {
    top: 15%;
    left: 25%;
  }
}
section.sec-movie div.sec-movie-inner div.movie-img .img03 {
  top: 45%;
  left: 19%;
}
@media screen and (min-width: 768px) {
  section.sec-movie div.sec-movie-inner div.movie-img .img03 {
    top: 45%;
    left: 4%;
  }
}

section.sec-game {
  background-image: url(../../myimg/kumaru/game-bg_sp.webp);
  background-size: 100% 100%;
  padding: calc(143 / 750 * 100vw) 0;
  margin: calc(-50 / 750 * 100vw) 0 calc(124 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-game {
    background-image: url(../../myimg/kumaru/game-bg_pc.webp);
    padding: calc(170 / 1366 * 100vw) 0;
    margin: calc(-170 / 1366 * 100vw) 0 calc(96 / 1366 * 100vw);
  }
}
section.sec-game div.sec-game-inner {
  opacity: 0;
}
section.sec-game div.sec-game-inner.animation {
  animation: fade 0.8s 0.2s forwards;
}
section.sec-game h2 {
  text-align: center;
  color: #fff;
}
section.sec-game p {
  text-align: center;
  color: #fff;
  line-height: 2.1em;
  margin-top: 1em;
  font-weight: bold;
  font-size: calc(28 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-game p {
    font-size: max(10px, 18 / 1366 * 100vw);
  }
}
section.sec-game div.game-img-wrap {
  width: 89.2%;
  margin: calc(49 / 750 * 100vw) auto 0;
}
@media screen and (min-width: 768px) {
  section.sec-game div.game-img-wrap {
    width: 75%;
    margin: 3% auto 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-game div.game-img-wrap div.game-img {
  position: relative;
  z-index: 1;
  margin-bottom: calc(29 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-game div.game-img-wrap div.game-img {
    width: 48.2%;
    margin-bottom: 0;
    cursor: pointer;
  }
}
section.sec-game div.game-img-wrap div.game-img div.game-img-inner {
  position: relative;
  z-index: 1;
}
section.sec-game div.game-img-wrap div.game-img .circle {
  display: block;
  position: absolute;
  width: 13vw;
  z-index: 1;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  section.sec-game div.game-img-wrap div.game-img .circle {
    width: 15%;
  }
}
section.sec-game div.game-img-wrap div.game-img .circle::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50vw;
  border: solid calc(5 / 750 * 100vw) #f00;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  section.sec-game div.game-img-wrap div.game-img .circle::after {
    border: solid calc(5 / 1366 * 100vw) #f00;
  }
}
section.sec-game div.game-img-wrap div.game-img .circle img {
  opacity: 0;
}
section.sec-game div.game-img-wrap div.game-img .circle.is-active {
  opacity: 1;
}
section.sec-game div.game-img-wrap div.game-img .circle.circle01 {
  right: 61%;
  top: 39%;
}
section.sec-game div.game-img-wrap div.game-img .circle.circle02 {
  right: 23%;
  top: 1%;
}
section.sec-game div.game-img-wrap div.game-img .circle.circle03 {
  right: 11%;
  top: 37%;
}
section.sec-game div.game-img-wrap div.game-img .circle.circle04 {
  right: -3%;
  top: 67%;
}
section.sec-game div.game-img-wrap div.game-img .circle.circle05 {
  right: 90%;
  top: 54%;
}
section.sec-game div.game-img-wrap div.game-kumaru-img {
  position: absolute;
  width: calc(130 / 750 * 100vw);
  top: -34%;
  left: -1%;
  transform: translate(0, -100%);
}
@media screen and (min-width: 768px) {
  section.sec-game div.game-img-wrap div.game-kumaru-img {
    width: 23%;
    top: 0;
    left: 5%;
    transform: translate(0, -100%);
  }
}
section.sec-game div.game-img-wrap div.game-kumaru-img.animation {
  animation: game-kumaru-img 0.4s 0.2s forwards;
}
@keyframes game-kumaru-img {
  0% {
    transform: translate(0, 0%);
  }
  100% {
    transform: translate(0, -100%);
  }
}
section.sec-game .answer-btn {
  display: block;
  background-color: #fff;
  border: solid 1px;
  margin: auto;
  font-weight: bold;
  color: #F40013;
  padding: 0.8em 0;
  font-size: calc(36 / 750 * 100vw);
  line-height: 1.2em;
  width: calc(488 / 750 * 100vw);
  border-radius: calc(40 / 750 * 100vw);
  margin-top: calc(48 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  section.sec-game .answer-btn {
    width: calc(244 / 1366 * 100vw);
    font-size: calc(18 / 1366 * 100vw);
    border-radius: calc(20 / 1366 * 100vw);
    margin-top: calc(49 / 1366 * 100vw);
    transition: all 0.3s;
  }
  section.sec-game .answer-btn:hover {
    background-color: #FF103D;
    color: #fff;
  }
}
section.sec-game .answer-btn.is-clear {
  pointer-events: none;
  cursor: default;
}

a.chumaru-link {
  display: block;
  margin: auto;
  background-color: var(--color-chubase-red);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 86%;
  position: relative;
}
@media screen and (min-width: 768px) {
  a.chumaru-link {
    width: 56.5%;
    transition: all 0.3s;
    box-sizing: border-box;
    overflow: hidden;
  }
  a.chumaru-link::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: solid 3px var(--color-chubase-red);
    box-sizing: border-box;
  }
  a.chumaru-link:hover {
    background-color: #ffffff;
  }
  a.chumaru-link:hover .arrow svg:nth-of-type(1) {
    transform: translate(120%, 0);
  }
  a.chumaru-link:hover .arrow svg:nth-of-type(2) {
    transform: translate(0, 0);
  }
  a.chumaru-link:hover {
    color: var(--color-chubase-red);
  }
  a.chumaru-link:hover .m-btm-square {
    background: var(--color-chubase-red);
  }
  a.chumaru-link:hover .m-btm-square path {
    stroke: #fff;
  }
  a.chumaru-link:hover .chumaru-link-img img {
    transform: scale(1.2);
  }
}
a.chumaru-link div.chumaru-link-img {
  width: 34%;
  margin-left: 2%;
}
@media screen and (min-width: 768px) {
  a.chumaru-link div.chumaru-link-img {
    width: 31%;
    margin-left: 1.6%;
    position: relative;
    z-index: 1;
  }
}
a.chumaru-link div.chumaru-link-img img {
  transition: all 0.5s var(--ease-bounce);
}
a.chumaru-link div.txt-wrap {
  padding-left: 3%;
}
@media screen and (min-width: 768px) {
  a.chumaru-link div.txt-wrap {
    padding-left: 0;
    margin-right: 5%;
  }
}
a.chumaru-link p.en {
  font-family: var(--font-bungee);
  line-height: 1em;
  font-size: calc(70 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  a.chumaru-link p.en {
    font-size: calc(64 / 1366 * 100vw);
  }
}
a.chumaru-link p.ja {
  line-height: 1.68em;
  margin-top: 0.4em;
  font-size: calc(24 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  a.chumaru-link p.ja {
    font-size: max(10px, 16 / 1366 * 100vw);
  }
}
a.chumaru-link .m-btm-square {
  width: calc(49 / 750 * 100vw);
  height: calc(49 / 750 * 100vw);
  margin-top: auto;
  position: absolute;
  bottom: calc(20 / 750 * 100vw);
  right: calc(20 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  a.chumaru-link .m-btm-square {
    position: relative;
    margin: 0;
    bottom: 0;
    right: 0;
    width: clamp(0px, 40 / 1366 * 100vw, 1000px);
    height: clamp(0px, 40 / 1366 * 100vw, 1000px);
  }
}

p.maru-c-txt {
  text-align: center;
  font-size: calc(20 / 750 * 100vw);
  padding: calc(50 / 750 * 100vw) 0 calc(200 / 750 * 100vw);
}
@media screen and (min-width: 768px) {
  p.maru-c-txt {
    font-size: 11px;
    padding: calc(64 / 1366 * 100vw) 0 calc(116 / 1366 * 100vw);
  }
}/*# sourceMappingURL=kumaru.css.map */