@charset "UTF-8";

:root {
  --anchor-padding: 0.3rem;
  --anchor-padding-lg: 0.6rem;
}

:root {
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

:root {
  --ease-level1: ease;
  --ease-level2: var(--easeOutQuart);
  --ease-heavy1: var(--easeInOutQuart);
  --ease-heavy2: var(--easeInOutQuint);
  --ease-heavy3: var(--easeInOutExpo);
  --ease-bound: var(--easeInOutBack);
  --transition-hover: 300ms var(--ease-level1);
  --transition-hover-slow: 800ms var(--ease-level2);
  --transition-hover-loop: 1800ms linear;
  --transition-sitemap: 660ms var(--ease-heavy2);
  --transition-sitemap-inner: 600ms var(--ease-level1);
  --transition-overlay: 600ms var(--ease-level1);
  --transition-slider: 1200ms var(--ease-level2);
  --transition-carousel: 800ms var(--ease-level2);
  --transition-dots: 300ms var(--ease-level1);
  --transition-accordion: 350ms var(--ease-heavy2);
  --transition-question: 400ms var(--ease-heavy2);
  --transition-caruta: 800ms var(--ease-heavy2);
  --transition-caruta-out: 400ms var(--ease-level2);
  --transition-input: 150ms var(--ease-level1);
  --transition-modal: 300ms var(--ease-level1);
  --transition-delay: 200ms;
  --transition-trapeze: 2800ms var(--ease-bound);
  --transition-scale: 600ms var(--ease-bound);
  --transition-slideup: 1100ms var(--ease-heavy2);
  --transition-fadeoblique: 1100ms var(--ease-heavy2);
  --transition-fade: 1200ms var(--ease-level1);
  --transition-fadeup: 800ms var(--ease-level2);
  --transition-fadedown: 800ms var(--ease-level2);
  --transition-mask: 1500ms var(--ease-heavy1);
  --transition-curtain: 1050ms var(--ease-heavy1);
  --animation-overlay: 20000ms linear;
  --animation-floating: 3600ms var(--ease-heavy1);
}

.carousel.-center .card {
  width: 74.4%;
  margin: 0;
}

.card a {
  display: block;
  text-align: center;
}

.carousel.-center .swiper-wrapper {
  justify-content: center;
}

.carousel.-center .card+.card {
  margin-left: 8%;
}

.carousel .card {
  width: 74.4%;
  margin: 0 2%;
  position: relative;
  z-index: 1;
  transition: -webkit-transform var(--transition-carousel);
  transition: transform var(--transition-carousel);
  transition: transform var(--transition-carousel), -webkit-transform var(--transition-carousel);
}

.carousel .card.is-step1 {
  -webkit-transform: translateY(calc(var(--step) * 1));
  transform: translateY(calc(var(--step) * 1));
}

.carousel .card.is-step2 {
  -webkit-transform: translateY(calc(var(--step) * 2));
  transform: translateY(calc(var(--step) * 2));
}

.carousel__dots {
  margin-top: calc(var(--margin-top) + var(--step) * 2);
}

.carousel__dots {
  --margin-top: 2.4rem;
}

@media screen and (min-width: 768px) {
  .carousel {
    --step: 2.5em;
    -webkit-transform: translateY(calc(var(--step) * -.75));
    transform: translateY(calc(var(--step) * -.75));
  }

  .carousel .card {
    width: 25.2%;
    /*max-width: 340px;*/
    margin: 0 1.5%;
  }

  .carousel__dots {
    --margin-top: 5.6rem;
  }
}

@media screen and (min-width: 1201px) {
  .carousel {
    --step: 4.2em;
  }
}

.swiper-vertical>.swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
  z-index: 0;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, .15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
}

.swiper-css-mode>.swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode>.swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-centered>.swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
  margin-inline-start: 20px;
}

.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
  width: 40px;
  height: 100%;
  min-height: 1px;
}

.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
  margin-block-start: 20px;
}

.swiper-centered.swiper-vertical>.swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: 40px;
}

.swiper-centered>.swiper-wrapper>.swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  width: 500px;
  height: 1px;
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: 500px;
}

.swiper-pagination {
  width: 100%;
  display: flex;
  position: absolute;
  justify-content: center;
  text-align: center;
  transition: .3s opacity;
  -webkit-transform: translate3d(0, 1.2em, 0);
  transform: translate3d(0, 1.2em, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: 100%;
  /*left: 0; bottom: 0;*/
}

.swiper-pagination .-bullets-dynamic {
  overflow: hidden;
}

.swiper-pagination .-bullets {
  width: .6em;
  aspect-ratio: 1/1;
  margin: 0 .4em;
  display: inline-block;
  background: #FFDA7B;
  transition: background-color .3s;
  border-radius: 50%;
}

.swiper-pagination .-bullets.is-active {
  background: #71AAFF;
}

@media screen and (min-width: 768px) {
  .swiper-pagination {
    -webkit-transform: translateY(calc(var(--step) * 2.75));
    transform: translateY(calc(var(--step) * 2.75));
  }

  .swiper-pagination .-bullets {
    width: .8em;
    background: #FFF4D8;
  }
}


html {
  font-size: 62.5%;
}

html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

body {
  width: 100%;
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  text-rendering: geometricPrecision;
  text-decoration-thickness: 1px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.2);
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: scroll;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

.cLanding * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.cLanding {
  width: 100%;
  margin: 0 auto;
  font-size: 4.2vw;
  line-height: 1.6;
  font-weight: bold;
  color: #D72426;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  background-color: #FFF4D8;
}

.cLanding img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: auto;
  padding: 0;
  display: block;
  border: none;
}

.cLanding a img {
  border: none;
}

.cLanding a {
  display: block;
}

.cLanding a,
.cLanding a:hover {
  font-size: 100%;
  text-decoration: none;
}

.cLanding a:hover,
a:hover img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cLanding a,
.cLanding button,
.cLanding small,
.cLanding span,
.cLanding time {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.cLanding ul,
.cLanding ol {
  list-style: none;
}

.cLanding em,
.cLanding i {
  font-style: normal;
}

.cLanding span {
  display: block;
}

.cLanding small {
  font-size: 1em;
}

.cLanding button {
  border: none;
  text-decoration: none;
  background: none;
}

.cLanding .sp {
  display: block;
}

.cLanding .pc {
  display: none;
}

@media screen and (min-width: 768px) {
  .cLanding .sp {
    display: none;
  }

  .cLanding .pc {
    display: block;
  }

  .cLanding {
    font-size: max(10px, 1.1vw);
  }
}

/* Loading */
:root {
  --real-vh: 100vh;
}

.loading {
  width: 100%;
  height: calc(var(--real-vh, 1vh) * 100);
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D72426;
  z-index: 10;
  -webkit-animation: scaleOut 1s 3.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  animation: scaleOut 1s 3.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  z-index: 999;
}

@media screen and (min-width: 768px) {
  .loading span {
    width: 67%;
  }
}

/* Arrow */
.arrow {
  display: none;
}

@media screen and (min-width: 768px) {
  .arrow {
    width: 100%;
    height: 100vh;
    padding: 0 0 3%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 5;
    transition: opacity .3s ease-in-out;
    pointer-events: none;
  }

  .arrow span {
    width: 6.11%;
    aspect-ratio: 88/35;
    background: url("../img/mv_arr.svg") no-repeat 50% 50%/ 100% auto;
    -webkit-animation: downing infinite 2s;
    animation: downing infinite 2s;
  }
}

/* Contact button */
.contactBtn a {
  width: 12.5%;
  aspect-ratio: 180/112;
  background: #71AAFF;
  display: none;
  position: fixed;
  bottom: 2%;
  right: 1%;
  border: 1px solid #000000;
  box-shadow: 4px 4px 0 #000000;
  cursor: pointer;
  z-index: 6;
  transition: all .3s ease-in-out;
}

.contactBtn a::before {
  content: '';
  width: 18.9%;
  height: 100%;
  display: block;
  background: url("../img/ico_mail02.svg") no-repeat 50% / 100% auto;
}

.contactBtn span {
  margin: .4em 0 0;
  font-size: 0.9vw;
  color: #FFF4D8;
  font-weight: 900;
  text-align: left;
}

.contactBtn span em {
  margin: -.1em 0 0;
  font-size: 2.4em;
  display: block;
}

@media screen and (min-width: 768px) {
  .contactBtn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
  }

  .contactBtn a:hover {
    transform: translate(4px, 4px);
    box-shadow: none;
  }
}



/* MV */
.cKanban {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.cKanban .logo {
  width: 24.8%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FFF4D8;
  border: 1px solid #000000;
  z-index: 5;
}

.cKanban .txt {
  height: max-content;
  padding: 0 0 0 1em;
  position: absolute;
  bottom: 4%;
  left: 0;
  z-index: 4;
}

.cKanban .line span {
  width: max-content;
  font-size: 3.46vw;
  color: #FFDA7B;
  background: linear-gradient(180deg, rgba(215, 36, 39, 0) 10%, #D72426 10% 95%, rgba(215, 36, 39, 0) 95%);
}

.deco span {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  z-index: 0;
}

.deco [class^="cloud"] {
  transition: opacity .3s ease-in-out, transform .3s ease-in-out;
}

.cKanban .deco span {
  z-index: 3;
}

.cKanban .deco .yatai01 {
  width: 13.86%;
  aspect-ratio: 232/385;
  top: 1%;
  right: 30%;
  background-image: url("../img/mv_yatai01.png");
  -webkit-animation: tilt01 infinite 2.5s;
  animation: tilt01 infinite 2.5s;
}

.cKanban .deco .yatai02 {
  width: 19.73%;
  aspect-ratio: 308/410;
  top: 27%;
  right: 22%;
  background-image: url("../img/mv_yatai02.png");
  -webkit-animation: tilt02 infinite 2s;
  animation: tilt02 infinite 2s;
}

.cKanban .deco .yatai03 {
  width: 23.2%;
  aspect-ratio: 241/361;
  top: 60%;
  left: 0;
  background-image: url("../img/mv_yatai03.png");
  -webkit-animation: tilt03 infinite 3s;
  animation: tilt03 infinite 3s;
}

.cKanban .deco .takoyaki {
  width: 52.53%;
  aspect-ratio: 341/324;
  top: 17.5%;
  left: 0;
  background-image: url("../img/mv_takoyaki.png");
  -webkit-animation: tilt03 infinite 3.5s;
  animation: tilt03 infinite 3.5s;
}

.cKanban .deco .kingyo {
  width: 36.2%;
  aspect-ratio: 264/205;
  top: 54%;
  left: 26%;
  background-image: url("../img/mv_kingyo.png");
  -webkit-animation: tilt04 infinite 2.5s;
  animation: tilt04 infinite 2.5s;
}

@media screen and (min-width: 768px) {
  .cKanban {
    padding: 0;
  }

  .cKanban .logo {
    width: 10.2%;
  }

  .cKanban .txt {
    padding: 0;
    top: 68%;
    left: 14%;
    bottom: 0;
  }

  .cKanban .txt .line {
    width: max-content;
    display: flex;
    justify-content: flex-start;
  }

  .cKanban .txt span {
    font-size: 1.38vw;
    background: none;
  }

  .cKanban .deco .yatai01 {
    width: 8.12%;
    top: 2%;
    right: 36%;
    -webkit-animation: tilt02 infinite 2.5s;
    animation: tilt02 infinite 2.5s;
  }

  .cKanban .deco .yatai02 {
    width: 10.69%;
    top: 28%;
    right: 61%;
  }

  .cKanban .deco .yatai03 {
    width: 8.4%;
    top: 44%;
    left: auto;
    right: 1%;
  }

  .cKanban .deco .takoyaki {
    width: 23.75%;
    top: 21%;
    -webkit-animation: tilt05 infinite 3.5s;
    animation: tilt05 infinite 3.5s;
  }

  .cKanban .deco .kingyo {
    width: 18.33%;
    top: 0;
    left: 34%;
    -webkit-animation: tilt03 infinite 2s;
    animation: tilt03 infinite 2s;
  }

  .cKanban .deco .ramune {
    width: 24.37%;
    aspect-ratio: 351/396;
    top: 58%;
    left: 0;
    background-image: url("../img/mv_ramune.png");
    -webkit-animation: tilt06 infinite 3s;
    animation: tilt06 infinite 3s;
  }

  .cKanban .deco .castella {
    width: 9%;
    aspect-ratio: 197/156;
    top: 56%;
    left: 50%;
    background-image: url("../img/mv_castella.png");
    -webkit-animation: tilt04 infinite 2s;
    animation: tilt04 infinite 2s;
  }

  .cKanban .deco .castella02 {
    width: 13.6%;
    top: 69%;
    left: 60%;
    -webkit-animation: tilt02 infinite 2.5s;
    animation: tilt02 infinite 2.5s;
  }
}

.cBlock {
  position: relative;
  overflow: hidden;
}

.cBlock:not(.cAbout) h2 {
  margin: auto;
}

/* とは？ */
.cAbout {
  padding: 10em 0 4em;
}

.content .content-text {
  /* height: 180px; */
}

.content .li {
  display: flex;
  flex-direction: column;
}

.content .li div {
  margin-top: auto;
}

.cAbout .content span {
  width: max-content;
  padding: .3em 1.5em;
  background: #71AAFF;
  color: #FFF4D8;
  transform: rotate(-2deg);
}

.cAbout .content h2 {
  padding: 1em 6.4%;
}

.cAbout .content p {
  padding: 0 6.4%;
}

.cAbout .deco .girl {
  width: 53.3%;
  aspect-ratio: 396/453;
  top: -1.5%;
  right: 0;
  background-image: url("../img/about_sp.png");
}

@media screen and (min-width: 768px) {
  .cAbout {
    aspect-ratio: 1400/720;
    margin: 0 0 6em;
  }

  .cAbout .content {
    width: 100%;
    padding: 0;
    position: absolute;
    top: 45%;
    left: 16.5%;
    transform: translateY(-50%);
  }

  .cAbout .content span {
    padding: .3em 1em;
    font-size: 1.6vw;
    transform: rotate(-4deg);
  }

  .cAbout .content h2 {
    width: 45.2%;
    padding: 2em 0 1em;
  }

  .cAbout .content p {
    padding: 0;
    font-size: 1.38vw;
    line-height: 2;
  }

  .cAbout .deco .girl {
    width: 36.3%;
    aspect-ratio: 524/602;
    top: 7%;
    right: 3%;
    background-image: url("../img/about_pc.jpg");
  }

  .cAbout .deco .cloud01 {
    width: 33.5%;
    aspect-ratio: 483/298;
    top: 5%;
    left: 0;
    background-image: url("../img/cloud01.png");
  }

  .cAbout .deco .cloud02 {
    width: 40%;
    aspect-ratio: 577/90;
    bottom: 0;
    left: 0;
    background-image: url("../img/cloud02.png");
  }

  .cAbout .deco .cloud01.animated {
    -webkit-animation: fromLeft 2s;
    animation: fromLeft 2s;
  }

  .cAbout .deco .cloud02.animated {
    -webkit-animation: fromLeft 3s;
    animation: fromLeft 3s;
  }
}

/* Contact */
.cContact {
  padding: 2em 6.4% 2.5em;
  font-size: 5.3vw;
  text-align: center;
  background: #71AAFF;
}

.cContact.ct01 p {
  margin: 0 0 -.2em;
  color: #FFF4D8;
}

.cContact a {
  margin: 1.2em 0 0;
  padding: .7em 0;
  display: flex;
  justify-content: center;
  gap: .5em;
  background-color: #FFF4D8;
  color: #71AAFF;
  border-radius: 50vh;
}

.cContact a::before {
  content: "";
  width: 1em;
  background-image: url("../img/ico_phone01.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto .8em;
}

.cContact a.mail::before {
  background-image: url("../img/ico_mail01.svg");
}

.cContact.ct02 {
  padding: 2em 6.4% 3.5em;
  background: #FFF4D8;
}

.cContact.ct02 h3 {
  font-weight: 900;
  color: #71AAFF;
  font-size: 1.2em;
}

.cContact.ct02 p {
  padding: 1.5em 0 1em;
  font-size: .8em;
}

.cContact.ct02 a {
  background-color: #D72426;
  color: #FFF4D8;
}

.cContact.ct02 a::before {
  background-image: url("../img/freecall icon.svg");

}

.cContact.ct02 a.mail::before {
  background-image: url("../img/ico_mail02.svg");
}

@media screen and (min-width: 768px) {
  .cContact.ct02 {
    padding: 3.5em 0 6em;
    font-size: 2.22vw;
    background: #ffffff;
  }

  .cContact.ct02 .links {
    display: flex;
    justify-content: center;
    gap: 1.5%;
  }

  .cContact.ct02 a {
    width: 30%;
    padding: .7em 1em .7em 1.3em;
    font-size: .67em;
    display: flex;
    justify-content: center;
    gap: .5em;
    border: 1px solid #000;
    border-radius: 0;
    word-break: keep-all;
    align-items: center;
    transition: all .3s ease-in-out;
  }

  .cContact.ct02 a::before {
    width: 2em;
    height: 2em;
    background-size: 100% auto;
  }

  .cContact.ct02 a::after {
    content: "";
    width: 2em;
    height: 2em;
    background: url("../img/ico_arr.svg") no-repeat 50% 50% / auto 1.3em;
    transition: transform .3s ease-in-out;
  }

  .cContact.ct02 a:hover {
    background-color: #71AAFF;
  }

  .cContact.ct02 a:hover::after {
    -webkit-animation: bounceRight 0.8s both;
    animation: bounceRight 0.8s both;
  }
}

/* 紹介 */
.cIntro {
  padding: 5em 0;
}

.cIntro h2 {
  width: 64.8%;
}

.cIntro .decoRel {
  margin: 1.5em 0 0;
  padding: 0 0 9em;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.cIntro .deco .lantern {
  width: 49%;
  aspect-ratio: 582/335;
  position: unset;
  background-image: url("../img/intro_lantern.svg");
}

.cIntro .deco .lantern.right {
  right: 0;
  transform: scaleX(-1);
}

.cIntro .deco .boy {
  width: 51.2%;
  aspect-ratio: 325/343;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-image: url("../img/intro.png");
}

.cIntro .deco .boy.animated {
  -webkit-animation: fromBottom .8s both;
  animation: fromBottom .8s both;
}

.cIntro li {
  width: 87.2%;
  margin: 0 auto 1em;
  padding: 3em 0;
  background-color: #ffffff;
  border: 1px solid #71AAFF;
  position: relative;
}

.cIntro li::before,
.cIntro li::after {
  content: "";
  width: 100%;
  height: 95%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #71AAFF;
  pointer-events: none;
}

.cIntro li::after {
  width: 90%;
  height: 100%;
}

.cIntro li p {
  width: 70%;
  margin: auto;
  line-height: 1.25;
}

.cIntro li p span {
  margin: 0 0 .7em;
  font-size: 1.5em;
  font-weight: 900;
  text-align: center;
}

.cIntro li .gazo {
  width: 64%;
  margin: 1em auto 2em;
}

.cIntro li a {
  width: 66%;
  margin: auto;
  background: #D72426;
  border: 1px solid #000000;
}

.cIntro li a span {
  width: 100%;
  padding: .6em 0 .6em .6em;
  display: flex;
  justify-content: center;
  color: #FFF4D8;
}

.cIntro li a span::after {
  content: "";
  width: 2em;
  background: url("../img/ico_arr.svg") no-repeat 50% 50% / auto 1.3em;
  transition: transform .3s ease-in-out;
}

@media screen and (min-width: 768px) {
  .cIntro {
    margin: 0 0 6em;
  }

  .cIntro h2 {
    width: 9.3%;
  }

  .cIntro .decoRel {
    margin: -10% 0 0;
    padding: 0;
  }

  .cIntro .deco .lantern {
    width: 40.4%;
  }

  .cIntro .deco .boy {
    width: 22.5%;
    left: 70%;
    bottom: 8%;
  }

  .cIntro .deco [class^="cloud"] {
    width: 26.5%;
    aspect-ratio: 382/182;
    top: 0;
    right: 0;
    background-image: url("../img/cloud03.png");
  }

  .cIntro .deco .cloud02 {
    top: auto;
    right: -2.5%;
    bottom: -2%;
  }

  .cIntro .deco .cloud01.animated,
  .cIntro .deco .cloud02.animated {
    -webkit-animation: fromRight 2s;
    animation: fromRight 2s;
  }

  .cIntro ul {
    margin: -2% 0 0;
    display: flex;
    justify-content: center;
    gap: 3%;
  }

  .cIntro li {
    width: 22%;
    margin: 0;
  }

  .cIntro li p {
    min-height: 12em;
  }

  .cIntro li a:hover {
    background: rgba(215, 36, 39, 0.38);
  }

  .cIntro li a:hover em {
    -webkit-animation: bounceLeft 0.8s both;
    animation: bounceLeft 0.8s both;
  }

  .cIntro li a:hover span::after {
    -webkit-animation: bounceRight 0.8s both;
    animation: bounceRight 0.8s both;
  }
}

@media screen and (min-width: 1201px) {
  .cIntro li p {
    min-height: unset;
  }

  .cIntro li {
    width: 22.6%;
  }
}

/* 流れ */
.cNagare {
  padding: 5em 0;
}

.cNagare h2 {
  width: 50.13%;
}

.cNagare .deco .girl {
  width: 50.13%;
  aspect-ratio: 483/983;
  top: 4%;
  left: -18%;
  transform: rotate(40deg);
  background-image: url("../img/nagare01.png");
}

.cNagare .deco .taiko {
  width: 22.4%;
  aspect-ratio: 331/368;
  top: 8%;
  right: 8%;
  background-image: url("../img/nagare02_sp.jpg");
}

.cNagare ul {
  margin: 10em 0 0;
}

.cNagare li {
  width: 39.46%;
  margin: 0 auto 5em;
  text-align: center;
  position: relative;
}

.cNagare li:last-child {
  margin: 0 auto;
}

.cNagare li:not(:last-child)::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4vw solid transparent;
  border-right: 4vw solid transparent;
  border-top: 4.8vw solid #71AAFF;
}

.cNagare li p {
  margin: .8em 0 0;
}

@media screen and (min-width: 768px) {
  .cNagare {
    padding: 10em 0;
  }

  .cNagare h2 {
    width: 4.3%;
  }

  .cNagare .deco .girl {
    width: 14.7%;
    top: 0;
    left: 30%;
    transform: rotate(-3deg);
  }

  .cNagare .deco .taiko {
    width: 19%;
    aspect-ratio: 276/360;
    top: 14%;
    right: 24%;
    background-image: url("../img/nagare02_pc.jpg");
  }

  .cNagare .deco .cloud01 {
    width: 35.13%;
    aspect-ratio: 506/152;
    top: 21%;
    left: 0;
    background-image: url("../img/cloud04.png");
  }

  .cNagare .deco .cloud02 {
    width: 26.5%;
    aspect-ratio: 382/182;
    top: 24%;
    right: -5%;
    background-image: url("../img/cloud03.png");
  }

  .cNagare .deco .cloud03 {
    width: 25.7%;
    aspect-ratio: 742/107;
    bottom: 0;
    right: 0;
    background-image: url("../img/cloud05.png");
  }

  .cNagare .deco .cloud01.animated {
    -webkit-animation: fromLeft 2.5s;
    animation: fromLeft 2.5s;
  }

  .cNagare .deco .cloud02.animated {
    -webkit-animation: fromRight 2s;
    animation: fromRight 2s;
  }

  .cNagare .deco .cloud03.animated {
    -webkit-animation: fromRight 2s;
    animation: fromRight 2s;
  }

  .cNagare ul {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 6%;
  }

  .cNagare li {
    width: 10.13%;
    margin: 0 !important;
  }

  .cNagare li:not(:last-child)::after {
    bottom: 40%;
    left: auto;
    right: -79%;
    transform: translate(0, -50%);
    border-top: 1em solid transparent;
    border-bottom: 1em solid transparent;
    border-left: 1.2em solid #71AAFF;
  }

  .cNagare li p {
    margin: 1em 0 0;
  }
}

/* 予定 */
.cYotei {
  padding: 5em 0;
}

.cYotei h2 {
  width: 28.2%;
}

.cYotei .deco .boy {
  width: 38.4%;
  aspect-ratio: 360/548;
  margin: 1em auto 0;
  position: relative;
  background-image: url("../img/yotei01.png");
}

.cYotei .galleryCtn.hide {
  display: none;
}

.cYotei .galleryCtn span {
  width: 87.2%;
  margin: 0 auto 1em;
  padding: 2.5vw;
  background: #ffffff;
  border: 1px solid #71AAFF;
  position: relative;
}

.cYotei .galleryCtn span::before,
.cYotei .galleryCtn span::after {
  content: "";
  width: calc(100% - 5vw);
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #71AAFF;
  pointer-events: none;
}

.cYotei .galleryCtn span::after {
  width: 100%;
  height: calc(100% - 5vw);
}

.cYotei .accBtn {
  width: max-content;
  margin: 2em auto 0;
  display: flex;
  justify-content: center;
  gap: 1em;
  cursor: pointer;
}

.cYotei .accBtn::before {
  content: "";
  width: 9.3vw;
  aspect-ratio: 35/21;
  display: block;
  background-image: url("../img/ico_eye.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  transition: background .3s ease-in-out;
}

.cYotei .accBtn.open::before {
  background-image: url("../img/ico_eye_bl.svg");
  transform: scaleX(-1);
}

.cYotei .accBtn::after {
  content: "もっと表示する";
  font-size: 1em;
  color: #D72426;
  font-weight: bold;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  transition: .3s ease-in-out;
}

.cYotei .accBtn.open::after {
  content: "隠す";
  color: #71AAFF;
}

.marquee {
  display: none;
}

@media screen and (min-width: 768px) {
  .cYotei {
    padding: 4em 0 8em;
  }

  .cYotei h2 {
    width: 1.875%;
  }

  .cYotei .deco .boy {
    width: 12.5%;
    margin: -6% 32% auto auto;
    z-index: 1;
  }

  .cYotei .deco .haori {
    width: 12.22%;
    aspect-ratio: 429/395;
    top: 6%;
    left: 34%;
    background-image: url("../img/yotei02.jpg");
  }

  .cYotei .deco .cloud01 {
    width: 35.13%;
    aspect-ratio: 506/152;
    top: 12%;
    left: -6%;
    background-image: url("../img/cloud04.png");
  }

  .cYotei .deco .cloud02 {
    width: 15.97%;
    aspect-ratio: 230/102;
    top: 36%;
    right: 0;
    background-image: url("../img/cloud06.png");
  }

  .cYotei .deco .cloud01.animated {
    -webkit-animation: fromLeft 2s;
    animation: fromLeft 2s;
  }

  .cYotei .deco .cloud02.animated {
    -webkit-animation: fromRight 1.5s;
    animation: fromRight 1.5s;
  }

  .cYotei .content {
    position: relative;
  }

  .cYotei .gallery {
    width: 68.88%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .cYotei .galleryCtn span {
    width: 48.3%;
    margin: 0 0 2em;
    padding: 1vw;
  }

  .cYotei .galleryCtn span::before {
    width: calc(100% - 2vw);
  }

  .cYotei .galleryCtn span::after {
    height: calc(100% - 2vw);
  }

  .cYotei .accBtn::before {
    width: 2.4vw;
    max-width: 35px;
  }

  .cYotei .accBtn:hover::after {
    color: #71AAFF;
  }

  .cYotei .accBtn:hover::before {
    transform: scaleX(-1);
    background-image: url("../img/ico_eye_bl.svg");
  }

  .cYotei .accBtn.open:hover::before {
    transform: scaleX(1);
  }

  .marquee {
    width: 100%;
    position: absolute;
    top: -4em;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
    white-space: nowrap;
    z-index: 0;
  }

  .marquee02 {
    top: auto;
    bottom: 3em;
  }

  .marquee .inner {
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-animation: marquee 40s linear infinite;
    animation: marquee 40s linear infinite;
  }

  .marquee02 .inner {
    -webkit-animation: marquee02 40s linear infinite;
    animation: marquee02 40s linear infinite;
  }

  .marquee span {
    width: 50%;
    font-size: 7.2vw;
    line-height: 1;
    font-weight: 900;
    color: rgba(255, 218, 123, 0.5);
    user-select: none;
  }
}

/* 実施例 */
.cRei {
  padding: 2em 0 5em;
}

.cRei h2 {
  width: 36.26%;
  position: relative;
  z-index: 4;
}

.cRei .decoRel {
  position: relative;
}

.cRei .deco .boy {
  width: 53.8%;
  aspect-ratio: 736/982;
  margin: 3.5em auto 0;
  background-image: url("../img/rei.png");
  position: relative;
}

.cRei .deco .mask01 {
  width: 18.13%;
  aspect-ratio: 126/173;
  top: -16%;
  left: 49%;
  transform: rotate(-22deg);
  background-image: url("../img/rei_mask01.png");
}

.cRei .moreBtn {
  width: max-content;
  margin: 4em auto 0;
  position: relative;
  display: flex;
  justify-content: center;
  gap: 1em;
  cursor: pointer;
}

.cRei .moreBtn::before {
  content: "";
  width: 9.3vw;
  aspect-ratio: 35/21;
  display: block;
  background-image: url("../img/ico_eye.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  transition: background .3s ease-in-out;
}

.cRei .moreBtn::after {
  content: "もっと表示する";
  font-size: 1em;
  color: #D72426;
  font-weight: bold;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media screen and (min-width:768px) {
  .cRei {
    padding: 4em 0 15%;
    background: linear-gradient(transparent 0, transparent 70%, #ffffff 70%, #ffffff 100%);
  }

  .cRei h2 {
    width: 4.3%;
  }

  .cRei .deco .bg {
    width: 100%;
    aspect-ratio: 1080/830;
    bottom: 0;
    left: 0;
    background: url("../img/rei_bg.jpg") no-repeat 100% 50%/ 100% 100%;
    z-index: 0;
    pointer-events: none;
  }

  .cRei .deco .boy {
    width: 25.5%;
    margin: 0 auto -5% 14%;
  }

  .cRei .deco .mask01 {
    width: 8.6%;
    left: 26%;
  }

  .cRei .deco .mask02 {
    width: 10.4%;
    aspect-ratio: 371/377;
    top: 8%;
    right: 22%;
    transform: rotate(11deg);
    background-image: url("../img/rei_mask02.png");
  }

  .cRei .deco .cloud01 {
    width: 35.69%;
    aspect-ratio: 514/152;
    top: 12%;
    right: 0%;
    background-image: url("../img/cloud07.png");
  }

  .cRei .deco .cloud01.animated {
    -webkit-animation: fromRight 2s;
    animation: fromRight 2s;
  }

  .cRei .moreBtn {
    margin: 8em auto 0;
  }

  .cRei .moreBtn:hover {
    display: flex;
  }

  .cRei .moreBtn::before {
    width: 2.4vw;
    max-width: 35px;
    background-image: url("../img/ico_eye_be.svg");
  }

  .cRei .moreBtn::after {
    color: #FFF4D8;
  }

  .cRei .moreBtn:hover::before {
    transform: scaleX(-1);
    background-image: url("../img/ico_eye_bl.svg");
  }

  .cRei .moreBtn:hover::after {
    color: #71AAFF;
  }
}

@media screen and (min-width:1201px) {
  .cRei {
    padding: 4em 0 16em;
  }

  .cRei .moreBtn {
    margin: 12em auto 0;
  }
}

/* Footer */
.footer {
  padding: 3em 0;
  font-size: 3.2vw;
  font-weight: 500;
  color: #333333;
  text-align: center;
  background: #C2DAFF;
}

.footer .ttl {
  font-size: 1.33em;
}

.footer .info {
  margin: 1em 0;
}

.footer .links {
  display: flex;
  justify-content: center;
}

.footer .links a {
  font-size: 1em;
  transition: .3s ease-in-out;
}

.footer small {
  font-weight: 400;
}

@media screen and (min-width:768px) {
  .footer {
    padding: 5em 0;
    font-size: max(10px, 1.1vw);
  }

  .footer .ttl {
    width: 68.95%;
    margin: 0 auto 1.2em;
    padding: 0 0 1em;
    border-bottom: 1px solid #333333;
  }

  .footer .links {
    margin: 0 0 1em;
    gap: .5em;
  }

  .footer .links a:hover {
    color: #8b8b8b;
  }
}

@keyframes tilt01 {
  0% {
    transform: rotate(-31deg);
    -webkit-transform: rotate(-31deg);
  }

  50% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
  }

  100% {
    transform: rotate(-31deg);
    -webkit-transform: rotate(-31deg);
  }
}

@keyframes tilt02 {
  0% {
    transform: rotate(-24deg);
    -webkit-transform: rotate(-24deg);
  }

  50% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  100% {
    transform: rotate(-24deg);
    -webkit-transform: rotate(-24deg);
  }
}

@keyframes tilt03 {
  0% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
  }

  50% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
  }

  100% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
  }
}

@keyframes tilt04 {
  0% {
    transform: rotate(-12deg) scaleX(-1);
  }

  50% {
    transform: rotate(12deg) scaleX(-1);
  }

  100% {
    transform: rotate(-12deg) scaleX(-1);
  }
}

@keyframes tilt05 {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  50% {
    transform: rotate(40deg);
    -webkit-transform: rotate(40deg);
  }

  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}

@keyframes tilt06 {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }

  50% {
    transform: rotate(20deg);
    -webkit-transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
  }
}

@keyframes downing {
  0% {
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
  }

  50% {
    transform: translateY(0px);
    -webkit-transform: translateY(0);
  }

  100% {
    transform: translateY(15px);
    -webkit-transform: translateY(15);
  }
}

@keyframes fromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}

@keyframes fromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}

@keyframes fromBottom {
  0% {
    opacity: 0;
    transform: translate(-50%, 100%);
    -webkit-transform: translate(-50%, 100%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  100% {
    transform: translateX(-40%);
    -webkit-transform: translateX(-40%);
  }
}

@keyframes marquee02 {
  0% {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  100% {
    transform: translateX(40%);
    -webkit-transform: translateX(40%);
  }
}

@keyframes bounceRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(.8em);
    transform: translateX(.8em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  10% {
    -webkit-transform: translateX(.6em);
    transform: translateX(.6em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  20% {
    -webkit-transform: translateX(.8em);
    transform: translateX(.8em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  30% {
    -webkit-transform: translateX(.6em);
    transform: translateX(.6em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  35% {
    -webkit-transform: translateX(.8em);
    transform: translateX(.8em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(.8em);
    transform: translateX(.8em);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes bounceLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-.8em);
    transform: translateX(-.8em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  10% {
    -webkit-transform: translateX(-.6em);
    transform: translateX(-.6em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  20% {
    -webkit-transform: translateX(-.8em);
    transform: translateX(-.8em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  30% {
    -webkit-transform: translateX(-.6em);
    transform: translateX(-.6em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  35% {
    -webkit-transform: translateX(-.8em);
    transform: translateX(-.8em);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(-.8em);
    transform: translateX(-.8em);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes scaleOut {
  0% {
    display: flex;
    opacity: 1;
  }

  80% {
    display: flex;
    opacity: 1;
  }

  100% {
    display: none;
    opacity: 0;
  }
}