@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/
/*!
 * ress.css • v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */
:root {
  --swiper-theme-color:#007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

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

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

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

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

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

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

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

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

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

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-cube-shadow, .swiper-slide {
    transform-style: preserve-3d;
  }
}

.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper:before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper:before {
      height: var(--swiper-centered-offset-after);
      min-width: 1px;
      width: 100%;
    }
  }
}

.swiper-3d {
  .swiper-slide-shadow, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left, .swiper-slide-shadow-right, .swiper-slide-shadow-top {
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.1490196078);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible, .swiper:not(.swiper-watch-progress) {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

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

.swiper-virtual.swiper-css-mode.swiper-horizontal {
  .swiper-wrapper:after {
    height: 1px;
    width: var(--swiper-virtual-size);
  }
}

.swiper-virtual.swiper-css-mode.swiper-vertical {
  .swiper-wrapper:after {
    height: var(--swiper-virtual-size);
    width: 1px;
  }
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
  &.swiper-button-disabled {
    cursor: auto;
    opacity: 0.35;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    cursor: auto;
    opacity: 0;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 100%;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next, .swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    margin-left: 0;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    top: var(--swiper-navigation-top-offset, 50%);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev, & ~ .swiper-button-next, .swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
  }
  &.swiper-rtl .swiper-button-next, &.swiper-rtl ~ .swiper-button-next, & ~ .swiper-button-prev, .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev, &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}

.swiper-vertical {
  .swiper-button-next, .swiper-button-prev, ~ .swiper-button-next, ~ .swiper-button-prev {
    left: var(--swiper-navigation-top-offset, 50%);
    margin-left: calc(0px - var(--swiper-navigation-size) / 2);
    margin-top: 0;
    right: auto;
  }
  .swiper-button-prev, ~ .swiper-button-prev {
    bottom: auto;
    top: var(--swiper-navigation-sides-offset, 4px);
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next, ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  &.swiper-pagination-disabled, .swiper-pagination-disabled > & {
    display: none !important;
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
  .swiper-pagination-bullet {
    position: relative;
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active, .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  button& {
    appearance: none;
    border: none;
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }
  &:only-child {
    display: none !important;
  }
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
  .swiper-pagination-bullet {
    display: block;
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition: transform 0.2s, top 0.2s;
    }
  }
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition: transform 0.2s, left 0.2s;
    }
  }
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: scale(0);
    transform-origin: left top;
    width: 100%;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  &.swiper-pagination-horizontal, &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > &, .swiper-vertical > &.swiper-pagination-progressbar-opposite {
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
    width: 100%;
  }
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, &.swiper-pagination-vertical, .swiper-horizontal > &.swiper-pagination-progressbar-opposite, .swiper-vertical > & {
    height: 100%;
    left: 0;
    top: 0;
    width: var(--swiper-pagination-progressbar-size, 4px);
  }
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  &.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > & {
    display: none !important;
  }
  &.swiper-scrollbar-horizontal, .swiper-horizontal > & {
    bottom: var(--swiper-scrollbar-bottom, 4px);
    height: var(--swiper-scrollbar-size, 4px);
    left: var(--swiper-scrollbar-sides-offset, 1%);
    position: absolute;
    top: var(--swiper-scrollbar-top, auto);
    width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    z-index: 50;
  }
  &.swiper-scrollbar-vertical, .swiper-vertical > & {
    height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
    left: var(--swiper-scrollbar-left, auto);
    position: absolute;
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    width: var(--swiper-scrollbar-size, 4px);
    z-index: 50;
  }
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
  > canvas, > img, > svg {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
  }
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

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

.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube {
  .swiper-slide {
    backface-visibility: hidden;
    height: 100%;
    pointer-events: none;
    transform-origin: 0 0;
    visibility: hidden;
    width: 100%;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active, .swiper-slide-next, .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }
  .swiper-cube-shadow {
    bottom: 0;
    height: 100%;
    left: 0;
    opacity: 0.6;
    position: absolute;
    width: 100%;
    z-index: 0;
    &:before {
      background: #000;
      bottom: 0;
      content: "";
      filter: blur(50px);
      left: 0;
      position: absolute;
      right: 0;
      top: 0;
    }
  }
}

.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}

.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom, .swiper-slide-shadow-cube.swiper-slide-shadow-left, .swiper-slide-shadow-cube.swiper-slide-shadow-right, .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip {
  .swiper-slide {
    backface-visibility: hidden;
    pointer-events: none;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &, & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom, .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    backface-visibility: hidden;
    z-index: 0;
  }
}

.swiper-creative {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height;
  }
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards {
  .swiper-slide {
    backface-visibility: hidden;
    overflow: hidden;
    transform-origin: center bottom;
  }
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

*, :after, :before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after, :before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  padding: 0;
  margin: 0;
}

hr {
  overflow: visible;
  height: 0;
  color: inherit;
}

details, main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline-width: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b, strong {
  font-weight: bolder;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

input {
  border-radius: 0;
}

[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button, input, optgroup, select, textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[role=button], [type=button], [type=reset], [type=submit], button {
  cursor: pointer;
  color: inherit;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset], [type=submit], button, html [type=button] {
  -webkit-appearance: button;
}

button, input, select, textarea {
  background-color: transparent;
  border-style: none;
}

a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  white-space: normal;
  max-width: 100%;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

li {
  list-style: none;
}

/* ==========================================================================
   base
   ========================================================================== */
@font-face {
  font-family: "YuGothic M";
  src: local("Yu Gothic Medium");
  font-weight: 600;
}
body {
  color: #000;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.2em;
  letter-spacing: 0.075;
}

a {
  color: #000;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
}

#content,
.confirm {
  padding: 0;
}
#content.l-content,
.confirm.l-content {
  margin: 0 auto;
  max-width: unset;
}
#content .contact,
.confirm .contact {
  background: #fff9dd;
  padding: clamp(38.5714285714px, 6.4285714286vw, 123.4285714286px) 0 clamp(42.8571428571px, 7.1428571429vw, 137.1428571429px);
}
@media screen and (max-width: 600px) {
  #content .contact,
  .confirm .contact {
    padding: clamp(32px, 9.5238095238vw, 57.1428571429px) clamp(16px, 5.7142857143vw, 34.2857142857px) clamp(60px, 19.0476190476vw, 114.2857142857px);
  }
}
#content .contact_ttl,
.confirm .contact_ttl {
  width: clamp(178.2857142857px, 29.7142857143vw, 570.5142857143px);
  margin: 0 auto clamp(29.1428571429px, 4.8571428571vw, 93.2571428571px);
  padding: 0;
}
@media screen and (max-width: 600px) {
  #content .contact_ttl,
  .confirm .contact_ttl {
    width: clamp(140px, 36.1904761905vw, 176px);
  }
}
#content .w-frontTop,
.confirm .w-frontTop {
  margin-bottom: auto;
}
#content .l-article,
.confirm .l-article {
  max-width: unset;
}
#content .c-widget .textwidget > :not(:last-child),
.confirm .c-widget .textwidget > :not(:last-child) {
  margin-bottom: auto;
}
#content .post_content,
.confirm .post_content {
  margin: 0;
  padding: 0;
}
#content #custom_html-4,
#content #main_content,
.confirm #custom_html-4,
.confirm #main_content {
  margin-top: 0;
}
#content #custom_html-4 .contact_ttl,
#content #main_content .contact_ttl,
.confirm #custom_html-4 .contact_ttl,
.confirm #main_content .contact_ttl {
  background: transparent;
}
#content #custom_html-4 .contact_ttl::before,
#content #main_content .contact_ttl::before,
.confirm #custom_html-4 .contact_ttl::before,
.confirm #main_content .contact_ttl::before {
  content: none;
}
#content #custom_html-4 .contact .wpcf7,
#content #main_content .contact .wpcf7,
.confirm #custom_html-4 .contact .wpcf7,
.confirm #main_content .contact .wpcf7 {
  margin-bottom: 0;
}
#content #custom_html-4 .contact .wpcf7-form,
#content #custom_html-4 .contact .contact_box,
#content #main_content .contact .wpcf7-form,
#content #main_content .contact .contact_box,
.confirm #custom_html-4 .contact .wpcf7-form,
.confirm #custom_html-4 .contact .contact_box,
.confirm #main_content .contact .wpcf7-form,
.confirm #main_content .contact .contact_box {
  background: #fff;
  width: clamp(462.8571428571px, 77.1428571429vw, 1481.1428571429px);
  margin: clamp(26.5714285714px, 4.4285714286vw, 85.0285714286px) auto 0;
  border-radius: clamp(17.1428571429px, 2.8571428571vw, 54.8571428571px);
  padding: clamp(34.2857142857px, 5.7142857143vw, 109.7142857143px) clamp(27.4285714286px, 4.5714285714vw, 87.7714285714px);
  font-size: clamp(6.8571428571px, 1.1428571429vw, 21.9428571429px);
}
@media screen and (max-width: 600px) {
  #content #custom_html-4 .contact .wpcf7-form,
  #content #custom_html-4 .contact .contact_box,
  #content #main_content .contact .wpcf7-form,
  #content #main_content .contact .contact_box,
  .confirm #custom_html-4 .contact .wpcf7-form,
  .confirm #custom_html-4 .contact .contact_box,
  .confirm #main_content .contact .wpcf7-form,
  .confirm #main_content .contact .contact_box {
    width: auto;
    font-size: clamp(10px, 3.3333333333vw, 16px);
  }
}
#content #custom_html-4 .contact .wpcf7-form .selectbox,
#content #custom_html-4 .contact .wpcf7-form label,
#content #custom_html-4 .contact .contact_box .selectbox,
#content #custom_html-4 .contact .contact_box label,
#content #main_content .contact .wpcf7-form .selectbox,
#content #main_content .contact .wpcf7-form label,
#content #main_content .contact .contact_box .selectbox,
#content #main_content .contact .contact_box label,
.confirm #custom_html-4 .contact .wpcf7-form .selectbox,
.confirm #custom_html-4 .contact .wpcf7-form label,
.confirm #custom_html-4 .contact .contact_box .selectbox,
.confirm #custom_html-4 .contact .contact_box label,
.confirm #main_content .contact .wpcf7-form .selectbox,
.confirm #main_content .contact .wpcf7-form label,
.confirm #main_content .contact .contact_box .selectbox,
.confirm #main_content .contact .contact_box label {
  display: flex;
  column-gap: clamp(6.8571428571px, 1.1428571429vw, 21.9428571429px);
  margin-bottom: clamp(13.7142857143px, 2.2857142857vw, 43.8857142857px);
}
@media screen and (max-width: 980px) {
  #content #custom_html-4 .contact .wpcf7-form .selectbox,
  #content #custom_html-4 .contact .wpcf7-form label,
  #content #custom_html-4 .contact .contact_box .selectbox,
  #content #custom_html-4 .contact .contact_box label,
  #content #main_content .contact .wpcf7-form .selectbox,
  #content #main_content .contact .wpcf7-form label,
  #content #main_content .contact .contact_box .selectbox,
  #content #main_content .contact .contact_box label,
  .confirm #custom_html-4 .contact .wpcf7-form .selectbox,
  .confirm #custom_html-4 .contact .wpcf7-form label,
  .confirm #custom_html-4 .contact .contact_box .selectbox,
  .confirm #custom_html-4 .contact .contact_box label,
  .confirm #main_content .contact .wpcf7-form .selectbox,
  .confirm #main_content .contact .wpcf7-form label,
  .confirm #main_content .contact .contact_box .selectbox,
  .confirm #main_content .contact .contact_box label {
    flex-direction: column;
  }
}
#content #custom_html-4 .contact .wpcf7-form .selectbox .box,
#content #custom_html-4 .contact .wpcf7-form label .box,
#content #custom_html-4 .contact .contact_box .selectbox .box,
#content #custom_html-4 .contact .contact_box label .box,
#content #main_content .contact .wpcf7-form .selectbox .box,
#content #main_content .contact .wpcf7-form label .box,
#content #main_content .contact .contact_box .selectbox .box,
#content #main_content .contact .contact_box label .box,
.confirm #custom_html-4 .contact .wpcf7-form .selectbox .box,
.confirm #custom_html-4 .contact .wpcf7-form label .box,
.confirm #custom_html-4 .contact .contact_box .selectbox .box,
.confirm #custom_html-4 .contact .contact_box label .box,
.confirm #main_content .contact .wpcf7-form .selectbox .box,
.confirm #main_content .contact .wpcf7-form label .box,
.confirm #main_content .contact .contact_box .selectbox .box,
.confirm #main_content .contact .contact_box label .box {
  width: 35%;
}
@media screen and (max-width: 980px) {
  #content #custom_html-4 .contact .wpcf7-form .selectbox .box,
  #content #custom_html-4 .contact .wpcf7-form label .box,
  #content #custom_html-4 .contact .contact_box .selectbox .box,
  #content #custom_html-4 .contact .contact_box label .box,
  #content #main_content .contact .wpcf7-form .selectbox .box,
  #content #main_content .contact .wpcf7-form label .box,
  #content #main_content .contact .contact_box .selectbox .box,
  #content #main_content .contact .contact_box label .box,
  .confirm #custom_html-4 .contact .wpcf7-form .selectbox .box,
  .confirm #custom_html-4 .contact .wpcf7-form label .box,
  .confirm #custom_html-4 .contact .contact_box .selectbox .box,
  .confirm #custom_html-4 .contact .contact_box label .box,
  .confirm #main_content .contact .wpcf7-form .selectbox .box,
  .confirm #main_content .contact .wpcf7-form label .box,
  .confirm #main_content .contact .contact_box .selectbox .box,
  .confirm #main_content .contact .contact_box label .box {
    width: auto;
  }
}
#content #custom_html-4 .contact .wpcf7-form .selectbox .wpcf7-form-control-wrap,
#content #custom_html-4 .contact .wpcf7-form label .wpcf7-form-control-wrap,
#content #custom_html-4 .contact .contact_box .selectbox .wpcf7-form-control-wrap,
#content #custom_html-4 .contact .contact_box label .wpcf7-form-control-wrap,
#content #main_content .contact .wpcf7-form .selectbox .wpcf7-form-control-wrap,
#content #main_content .contact .wpcf7-form label .wpcf7-form-control-wrap,
#content #main_content .contact .contact_box .selectbox .wpcf7-form-control-wrap,
#content #main_content .contact .contact_box label .wpcf7-form-control-wrap,
.confirm #custom_html-4 .contact .wpcf7-form .selectbox .wpcf7-form-control-wrap,
.confirm #custom_html-4 .contact .wpcf7-form label .wpcf7-form-control-wrap,
.confirm #custom_html-4 .contact .contact_box .selectbox .wpcf7-form-control-wrap,
.confirm #custom_html-4 .contact .contact_box label .wpcf7-form-control-wrap,
.confirm #main_content .contact .wpcf7-form .selectbox .wpcf7-form-control-wrap,
.confirm #main_content .contact .wpcf7-form label .wpcf7-form-control-wrap,
.confirm #main_content .contact .contact_box .selectbox .wpcf7-form-control-wrap,
.confirm #main_content .contact .contact_box label .wpcf7-form-control-wrap {
  width: 65%;
}
@media screen and (max-width: 980px) {
  #content #custom_html-4 .contact .wpcf7-form .selectbox .wpcf7-form-control-wrap,
  #content #custom_html-4 .contact .wpcf7-form label .wpcf7-form-control-wrap,
  #content #custom_html-4 .contact .contact_box .selectbox .wpcf7-form-control-wrap,
  #content #custom_html-4 .contact .contact_box label .wpcf7-form-control-wrap,
  #content #main_content .contact .wpcf7-form .selectbox .wpcf7-form-control-wrap,
  #content #main_content .contact .wpcf7-form label .wpcf7-form-control-wrap,
  #content #main_content .contact .contact_box .selectbox .wpcf7-form-control-wrap,
  #content #main_content .contact .contact_box label .wpcf7-form-control-wrap,
  .confirm #custom_html-4 .contact .wpcf7-form .selectbox .wpcf7-form-control-wrap,
  .confirm #custom_html-4 .contact .wpcf7-form label .wpcf7-form-control-wrap,
  .confirm #custom_html-4 .contact .contact_box .selectbox .wpcf7-form-control-wrap,
  .confirm #custom_html-4 .contact .contact_box label .wpcf7-form-control-wrap,
  .confirm #main_content .contact .wpcf7-form .selectbox .wpcf7-form-control-wrap,
  .confirm #main_content .contact .wpcf7-form label .wpcf7-form-control-wrap,
  .confirm #main_content .contact .contact_box .selectbox .wpcf7-form-control-wrap,
  .confirm #main_content .contact .contact_box label .wpcf7-form-control-wrap {
    width: auto;
  }
}
@media screen and (max-width: 980px) {
  #content #custom_html-4 .contact .wpcf7-form .wpcf7-list-item label,
  #content #custom_html-4 .contact .contact_box .wpcf7-list-item label,
  #content #main_content .contact .wpcf7-form .wpcf7-list-item label,
  #content #main_content .contact .contact_box .wpcf7-list-item label,
  .confirm #custom_html-4 .contact .wpcf7-form .wpcf7-list-item label,
  .confirm #custom_html-4 .contact .contact_box .wpcf7-list-item label,
  .confirm #main_content .contact .wpcf7-form .wpcf7-list-item label,
  .confirm #main_content .contact .contact_box .wpcf7-list-item label {
    flex-direction: row;
  }
}
#content #custom_html-4 .contact .wpcf7-form .box,
#content #custom_html-4 .contact .contact_box .box,
#content #main_content .contact .wpcf7-form .box,
#content #main_content .contact .contact_box .box,
.confirm #custom_html-4 .contact .wpcf7-form .box,
.confirm #custom_html-4 .contact .contact_box .box,
.confirm #main_content .contact .wpcf7-form .box,
.confirm #main_content .contact .contact_box .box {
  display: flex;
  flex-direction: row-reverse;
  column-gap: clamp(3.4285714286px, 0.5714285714vw, 10.9714285714px);
  align-items: flex-start;
  padding-top: 0.8em;
}
@media screen and (max-width: 980px) {
  #content #custom_html-4 .contact .wpcf7-form .box,
  #content #custom_html-4 .contact .contact_box .box,
  #content #main_content .contact .wpcf7-form .box,
  #content #main_content .contact .contact_box .box,
  .confirm #custom_html-4 .contact .wpcf7-form .box,
  .confirm #custom_html-4 .contact .contact_box .box,
  .confirm #main_content .contact .wpcf7-form .box,
  .confirm #main_content .contact .contact_box .box {
    padding-top: 0;
    align-self: flex-start;
    margin-bottom: clamp(4px, 1.9047619048vw, 11.4285714286px);
  }
}
#content #custom_html-4 .contact .wpcf7-form .box .req,
#content #custom_html-4 .contact .wpcf7-form .box .any,
#content #custom_html-4 .contact .contact_box .box .req,
#content #custom_html-4 .contact .contact_box .box .any,
#content #main_content .contact .wpcf7-form .box .req,
#content #main_content .contact .wpcf7-form .box .any,
#content #main_content .contact .contact_box .box .req,
#content #main_content .contact .contact_box .box .any,
.confirm #custom_html-4 .contact .wpcf7-form .box .req,
.confirm #custom_html-4 .contact .wpcf7-form .box .any,
.confirm #custom_html-4 .contact .contact_box .box .req,
.confirm #custom_html-4 .contact .contact_box .box .any,
.confirm #main_content .contact .wpcf7-form .box .req,
.confirm #main_content .contact .wpcf7-form .box .any,
.confirm #main_content .contact .contact_box .box .req,
.confirm #main_content .contact .contact_box .box .any {
  color: #fff;
  letter-spacing: 0.5em;
  padding: 2px 4px 2px 10px;
  font-size: clamp(6px, 1vw, 19.2px);
}
@media screen and (max-width: 600px) {
  #content #custom_html-4 .contact .wpcf7-form .box .req,
  #content #custom_html-4 .contact .wpcf7-form .box .any,
  #content #custom_html-4 .contact .contact_box .box .req,
  #content #custom_html-4 .contact .contact_box .box .any,
  #content #main_content .contact .wpcf7-form .box .req,
  #content #main_content .contact .wpcf7-form .box .any,
  #content #main_content .contact .contact_box .box .req,
  #content #main_content .contact .contact_box .box .any,
  .confirm #custom_html-4 .contact .wpcf7-form .box .req,
  .confirm #custom_html-4 .contact .wpcf7-form .box .any,
  .confirm #custom_html-4 .contact .contact_box .box .req,
  .confirm #custom_html-4 .contact .contact_box .box .any,
  .confirm #main_content .contact .wpcf7-form .box .req,
  .confirm #main_content .contact .wpcf7-form .box .any,
  .confirm #main_content .contact .contact_box .box .req,
  .confirm #main_content .contact .contact_box .box .any {
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
#content #custom_html-4 .contact .wpcf7-form .box .req,
#content #custom_html-4 .contact .contact_box .box .req,
#content #main_content .contact .wpcf7-form .box .req,
#content #main_content .contact .contact_box .box .req,
.confirm #custom_html-4 .contact .wpcf7-form .box .req,
.confirm #custom_html-4 .contact .contact_box .box .req,
.confirm #main_content .contact .wpcf7-form .box .req,
.confirm #main_content .contact .contact_box .box .req {
  background: #ffaa4b;
}
#content #custom_html-4 .contact .wpcf7-form .box .any,
#content #custom_html-4 .contact .contact_box .box .any,
#content #main_content .contact .wpcf7-form .box .any,
#content #main_content .contact .contact_box .box .any,
.confirm #custom_html-4 .contact .wpcf7-form .box .any,
.confirm #custom_html-4 .contact .contact_box .box .any,
.confirm #main_content .contact .wpcf7-form .box .any,
.confirm #main_content .contact .contact_box .box .any {
  background: #c3c3c3;
}
#content #custom_html-4 .contact .wpcf7-form .wpcf7-form-control-wrap,
#content #custom_html-4 .contact .contact_box .wpcf7-form-control-wrap,
#content #main_content .contact .wpcf7-form .wpcf7-form-control-wrap,
#content #main_content .contact .contact_box .wpcf7-form-control-wrap,
.confirm #custom_html-4 .contact .wpcf7-form .wpcf7-form-control-wrap,
.confirm #custom_html-4 .contact .contact_box .wpcf7-form-control-wrap,
.confirm #main_content .contact .wpcf7-form .wpcf7-form-control-wrap,
.confirm #main_content .contact .contact_box .wpcf7-form-control-wrap {
  display: block;
}
#content #custom_html-4 .contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control,
#content #custom_html-4 .contact .contact_box .wpcf7-form-control-wrap .wpcf7-form-control,
#content #main_content .contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control,
#content #main_content .contact .contact_box .wpcf7-form-control-wrap .wpcf7-form-control,
.confirm #custom_html-4 .contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control,
.confirm #custom_html-4 .contact .contact_box .wpcf7-form-control-wrap .wpcf7-form-control,
.confirm #main_content .contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control,
.confirm #main_content .contact .contact_box .wpcf7-form-control-wrap .wpcf7-form-control {
  border: 1px solid #c3c3c3;
  width: 100%;
  padding: clamp(6px, 1vw, 19.2px) clamp(12px, 2vw, 38.4px);
}
#content #custom_html-4 .contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance,
#content #custom_html-4 .contact .contact_box .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance,
#content #main_content .contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance,
#content #main_content .contact .contact_box .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance,
.confirm #custom_html-4 .contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance,
.confirm #custom_html-4 .contact .contact_box .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance,
.confirm #main_content .contact .wpcf7-form .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance,
.confirm #main_content .contact .contact_box .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-acceptance {
  border: none;
  display: inline-block;
  text-align: center;
}
#content #custom_html-4 .contact .wpcf7-form .button,
#content #custom_html-4 .contact .contact_box .button,
#content #main_content .contact .wpcf7-form .button,
#content #main_content .contact .contact_box .button,
.confirm #custom_html-4 .contact .wpcf7-form .button,
.confirm #custom_html-4 .contact .contact_box .button,
.confirm #main_content .contact .wpcf7-form .button,
.confirm #main_content .contact .contact_box .button {
  margin: 0 auto;
}
#content #custom_html-4 .contact .wpcf7-form .wpcf7-spinner,
#content #custom_html-4 .contact .contact_box .wpcf7-spinner,
#content #main_content .contact .wpcf7-form .wpcf7-spinner,
#content #main_content .contact .contact_box .wpcf7-spinner,
.confirm #custom_html-4 .contact .wpcf7-form .wpcf7-spinner,
.confirm #custom_html-4 .contact .contact_box .wpcf7-spinner,
.confirm #main_content .contact .wpcf7-form .wpcf7-spinner,
.confirm #main_content .contact .contact_box .wpcf7-spinner {
  display: block;
  background-color: #f25e00;
  position: absolute;
}
#content #custom_html-4 .contact .wpcf7-form .wpcf7 form .wpcf7-response-output,
#content #custom_html-4 .contact .contact_box .wpcf7 form .wpcf7-response-output,
#content #main_content .contact .wpcf7-form .wpcf7 form .wpcf7-response-output,
#content #main_content .contact .contact_box .wpcf7 form .wpcf7-response-output,
.confirm #custom_html-4 .contact .wpcf7-form .wpcf7 form .wpcf7-response-output,
.confirm #custom_html-4 .contact .contact_box .wpcf7 form .wpcf7-response-output,
.confirm #main_content .contact .wpcf7-form .wpcf7 form .wpcf7-response-output,
.confirm #main_content .contact .contact_box .wpcf7 form .wpcf7-response-output {
  border-color: #f25e00;
}
#content #custom_html-4 .contact .wpcf7-form .poricy_box,
#content #custom_html-4 .contact .contact_box .poricy_box,
#content #main_content .contact .wpcf7-form .poricy_box,
#content #main_content .contact .contact_box .poricy_box,
.confirm #custom_html-4 .contact .wpcf7-form .poricy_box,
.confirm #custom_html-4 .contact .contact_box .poricy_box,
.confirm #main_content .contact .wpcf7-form .poricy_box,
.confirm #main_content .contact .contact_box .poricy_box {
  border: 1px solid #efefef;
  padding: 8px 16px;
  height: 280px;
  overflow-y: scroll;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  #content #custom_html-4 .contact .wpcf7-form .poricy_box,
  #content #custom_html-4 .contact .contact_box .poricy_box,
  #content #main_content .contact .wpcf7-form .poricy_box,
  #content #main_content .contact .contact_box .poricy_box,
  .confirm #custom_html-4 .contact .wpcf7-form .poricy_box,
  .confirm #custom_html-4 .contact .contact_box .poricy_box,
  .confirm #main_content .contact .wpcf7-form .poricy_box,
  .confirm #main_content .contact .contact_box .poricy_box {
    margin-bottom: 8%;
    height: 50vw;
  }
}
#content #custom_html-4 .contact .wpcf7-form .poricy_box h3,
#content #custom_html-4 .contact .contact_box .poricy_box h3,
#content #main_content .contact .wpcf7-form .poricy_box h3,
#content #main_content .contact .contact_box .poricy_box h3,
.confirm #custom_html-4 .contact .wpcf7-form .poricy_box h3,
.confirm #custom_html-4 .contact .contact_box .poricy_box h3,
.confirm #main_content .contact .wpcf7-form .poricy_box h3,
.confirm #main_content .contact .contact_box .poricy_box h3 {
  margin: 0 0 8px;
  padding: 0;
  font-size: clamp(6px, 1vw, 19.2px);
}
#content #custom_html-4 .contact .wpcf7-form .poricy_box h3:before,
#content #custom_html-4 .contact .contact_box .poricy_box h3:before,
#content #main_content .contact .wpcf7-form .poricy_box h3:before,
#content #main_content .contact .contact_box .poricy_box h3:before,
.confirm #custom_html-4 .contact .wpcf7-form .poricy_box h3:before,
.confirm #custom_html-4 .contact .contact_box .poricy_box h3:before,
.confirm #main_content .contact .wpcf7-form .poricy_box h3:before,
.confirm #main_content .contact .contact_box .poricy_box h3:before {
  content: none;
}
@media screen and (max-width: 600px) {
  #content #custom_html-4 .contact .wpcf7-form .poricy_box h3,
  #content #custom_html-4 .contact .contact_box .poricy_box h3,
  #content #main_content .contact .wpcf7-form .poricy_box h3,
  #content #main_content .contact .contact_box .poricy_box h3,
  .confirm #custom_html-4 .contact .wpcf7-form .poricy_box h3,
  .confirm #custom_html-4 .contact .contact_box .poricy_box h3,
  .confirm #main_content .contact .wpcf7-form .poricy_box h3,
  .confirm #main_content .contact .contact_box .poricy_box h3 {
    margin-bottom: 1%;
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
#content #custom_html-4 .contact .wpcf7-form .poricy_box p,
#content #custom_html-4 .contact .contact_box .poricy_box p,
#content #main_content .contact .wpcf7-form .poricy_box p,
#content #main_content .contact .contact_box .poricy_box p,
.confirm #custom_html-4 .contact .wpcf7-form .poricy_box p,
.confirm #custom_html-4 .contact .contact_box .poricy_box p,
.confirm #main_content .contact .wpcf7-form .poricy_box p,
.confirm #main_content .contact .contact_box .poricy_box p {
  margin-bottom: 20px;
  font-size: clamp(6px, 1vw, 19.2px);
}
@media screen and (max-width: 600px) {
  #content #custom_html-4 .contact .wpcf7-form .poricy_box p,
  #content #custom_html-4 .contact .contact_box .poricy_box p,
  #content #main_content .contact .wpcf7-form .poricy_box p,
  #content #main_content .contact .contact_box .poricy_box p,
  .confirm #custom_html-4 .contact .wpcf7-form .poricy_box p,
  .confirm #custom_html-4 .contact .contact_box .poricy_box p,
  .confirm #main_content .contact .wpcf7-form .poricy_box p,
  .confirm #main_content .contact .contact_box .poricy_box p {
    margin-bottom: 8%;
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
@media screen and (max-width: 980px) {
  #content #custom_html-4 .contact.contact_confirm .wpcf7-form label,
  #content #custom_html-4 .contact.contact_confirm .wpcf7-form .selectbox,
  #content #main_content .contact.contact_confirm .wpcf7-form label,
  #content #main_content .contact.contact_confirm .wpcf7-form .selectbox,
  .confirm #custom_html-4 .contact.contact_confirm .wpcf7-form label,
  .confirm #custom_html-4 .contact.contact_confirm .wpcf7-form .selectbox,
  .confirm #main_content .contact.contact_confirm .wpcf7-form label,
  .confirm #main_content .contact.contact_confirm .wpcf7-form .selectbox {
    border-bottom: 1px solid #c3c3c3;
  }
}
#content #custom_html-4 .contact.contact_confirm .wpcf7-form .box,
#content #main_content .contact.contact_confirm .wpcf7-form .box,
.confirm #custom_html-4 .contact.contact_confirm .wpcf7-form .box,
.confirm #main_content .contact.contact_confirm .wpcf7-form .box {
  padding-top: 0;
}
@media screen and (max-width: 980px) {
  #content #custom_html-4 .contact.contact_confirm .wpcf7-form .box,
  #content #main_content .contact.contact_confirm .wpcf7-form .box,
  .confirm #custom_html-4 .contact.contact_confirm .wpcf7-form .box,
  .confirm #main_content .contact.contact_confirm .wpcf7-form .box {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 980px) {
  #content #custom_html-4 .contact.contact_thanks .contact_box,
  #content #main_content .contact.contact_thanks .contact_box,
  .confirm #custom_html-4 .contact.contact_thanks .contact_box,
  .confirm #main_content .contact.contact_thanks .contact_box {
    font-size: clamp(12px, 3.0952380952vw, 15px);
    padding: clamp(32px, 9.5238095238vw, 57.1428571429px) clamp(12px, 4.7619047619vw, 28.5714285714px) clamp(60px, 19.0476190476vw, 114.2857142857px);
  }
}

/* ---------
 header
 --------- */
header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: clamp(4.2857142857px, 0.7142857143vw, 13.7142857143px) clamp(18.8571428571px, 3.1428571429vw, 60.3428571429px);
}
@media screen and (max-width: 600px) {
  header {
    position: relative;
  }
}
header nav {
  padding-top: clamp(12.8571428571px, 2.1428571429vw, 41.1428571429px);
}
header nav .toggle {
  border-radius: 50%;
  background: #f25e00;
  width: clamp(40.2857142857px, 6.7142857143vw, 128.9142857143px);
  height: clamp(40.2857142857px, 6.7142857143vw, 128.9142857143px);
  position: relative;
  cursor: pointer;
  z-index: 20;
}
header nav .toggle span {
  background: #fff;
  height: clamp(1.7142857143px, 0.2857142857vw, 5.4857142857px);
  width: clamp(16.2857142857px, 2.7142857143vw, 52.1142857143px);
  display: block;
  position: absolute;
  left: calc(50% - clamp(8.1428571429px, 1.3571428571vw, 26.0571428571px));
  transition: linear 0.3s;
}
header nav .toggle span:nth-of-type(1) {
  top: clamp(14.5714285714px, 2.4285714286vw, 46.6285714286px);
}
header nav .toggle span:nth-of-type(2) {
  top: calc(clamp(14.5714285714px, 2.4285714286vw, 46.6285714286px) + clamp(1.7142857143px, 0.2857142857vw, 5.4857142857px) + clamp(3.4285714286px, 0.5714285714vw, 10.9714285714px));
}
header nav .toggle span:nth-of-type(3) {
  top: clamp(24.8571428571px, 4.1428571429vw, 79.5428571429px);
}
header nav .toggle.open {
  background: #fff;
}
header nav .toggle.open span {
  background: #f25e00;
  transition: linear 0.3s;
}
header nav .toggle.open span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
header nav .toggle.open span:nth-of-type(2) {
  opacity: 0;
}
header nav .toggle.open span:nth-of-type(3) {
  top: 50%;
  transform: rotate(-45deg);
}
header nav .gnav {
  display: none;
  width: 100vw;
  height: 100vh;
  background: #f25e00;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
}
header nav .gnav ul {
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: clamp(12.8571428571px, 2.1428571429vw, 41.1428571429px);
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  header nav .gnav ul {
    justify-content: flex-start;
    margin-top: 20%;
    font-size: clamp(18px, 5.7142857143vw, 34.2857142857px);
  }
}
header nav .gnav ul li {
  width: 100%;
}
header nav .gnav ul a {
  color: #fff;
  padding: 0.5vw;
  display: block;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  header nav .gnav ul a {
    padding: 1vw;
  }
}
header .logo {
  width: clamp(171.4285714286px, 28.5714285714vw, 548.5714285714px);
}
header .logo img {
  width: 100%;
}
header .link {
  width: clamp(116.5714285714px, 19.4285714286vw, 373.0285714286px);
  padding-top: clamp(12.8571428571px, 2.1428571429vw, 41.1428571429px);
  display: flex;
  flex-direction: column;
  row-gap: clamp(5.1428571429px, 0.8571428571vw, 16.4571428571px);
  margin-left: auto;
}
@media screen and (max-width: 600px) {
  header .link {
    position: fixed;
    bottom: 1%;
    left: 1%;
    flex-direction: row;
    column-gap: 2%;
    width: 100%;
    z-index: 10;
    padding-top: 0;
  }
  header .link li {
    width: 48%;
  }
  header .link li a {
    background: #fff;
  }
}

/* ---------
 main
 --------- */
.home.top main#main_content {
  display: block;
  overflow: hidden;
}
.home.top main#main_content .textwidget.custom-html-widget .main {
  position: relative;
  margin: 0 auto clamp(34.2857142857px, 5.7142857143vw, 109.7142857143px);
}
.home.top main#main_content .textwidget.custom-html-widget .main_ttl {
  width: clamp(439.7142857143px, 73.2857142857vw, 1407.0857142857px);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .main_ttl {
    width: 76%;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .main_ttl svg {
  width: 100%;
}
.home.top main#main_content .textwidget.custom-html-widget .main_slide {
  width: clamp(561.4285714286px, 93.5714285714vw, 1796.5714285714px);
  position: relative;
  margin: 0 auto;
  padding-top: clamp(27.4285714286px, 4.5714285714vw, 87.7714285714px);
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .main_slide {
    width: 96%;
    padding-top: clamp(8px, 4.2857142857vw, 25.7142857143px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .main_slide img {
  width: 100%;
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic {
  padding-bottom: clamp(35.1428571429px, 5.8571428571vw, 112.4571428571px);
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_ttl {
  width: clamp(262.2857142857px, 43.7142857143vw, 839.3142857143px);
  margin: 0 auto clamp(26.5714285714px, 4.4285714286vw, 85.0285714286px);
  position: relative;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_ttl {
    width: clamp(180px, 57.1428571429vw, 260px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_ttl:after {
  content: "";
  background: #f7e565;
  width: clamp(279.4285714286px, 46.5714285714vw, 894.1714285714px);
  height: clamp(15.8571428571px, 2.6428571429vw, 50.7428571429px);
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
  bottom: clamp(-6.8571428571px, -1.1428571429vw, -21.9428571429px);
  clip-path: inset(0 var(--underline-clip, 0%) 0 0);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_ttl:after {
    width: clamp(200px, 61.9047619048vw, 280px);
    height: clamp(8px, 2.8571428571vw, 16px);
    bottom: clamp(0px, -0.9523809524vw, -6px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 0 clamp(35.1428571429px, 5.8571428571vw, 112.4571428571px);
  background: url(./img/rhythmics_bgttl.svg) no-repeat center center/102%;
  margin-bottom: clamp(24px, 4vw, 76.8px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box {
    padding: 0 2%;
    margin-bottom: clamp(8px, 3.8095238095vw, 24px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet {
  position: relative;
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet span {
  position: absolute;
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_01 {
  width: clamp(13.2857142857px, 2.2142857143vw, 42.5142857143px);
  top: clamp(-26.5714285714px, -4.4285714286vw, -85.0285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_01 {
    top: -2vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_02 {
  width: clamp(15.8571428571px, 2.6428571429vw, 50.7428571429px);
  left: clamp(40.2857142857px, 6.7142857143vw, 128.9142857143px);
  top: clamp(-17.1428571429px, -2.8571428571vw, -54.8571428571px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_02 {
    top: 0vw;
    left: 9vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_03 {
  width: clamp(12px, 2vw, 38.4px);
  top: clamp(22.2857142857px, 3.7142857143vw, 71.3142857143px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_03 {
    top: 8vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_04 {
  width: clamp(8.5714285714px, 1.4285714286vw, 27.4285714286px);
  bottom: clamp(0px, 0vw, 0px);
  left: clamp(15.4285714286px, 2.5714285714vw, 49.3714285714px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_04 {
    left: 3.5vw;
    bottom: 4vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_05 {
  width: clamp(12.8571428571px, 2.1428571429vw, 41.1428571429px);
  bottom: clamp(-2.1428571429px, -0.3571428571vw, -6.8571428571px);
  left: clamp(68.5714285714px, 11.4285714286vw, 219.4285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_05 {
    left: 16vw;
    bottom: 4.5vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_inst {
  width: clamp(108.4285714286px, 18.0714285714vw, 346.9714285714px);
  left: clamp(-0.4285714286px, -0.0714285714vw, -1.3714285714px);
  top: clamp(17.1428571429px, 2.8571428571vw, 54.8571428571px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .trumpet .icon_inst {
    left: -1vw;
    top: 30%;
    width: clamp(60px, 19.0476190476vw, 106px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard {
  position: relative;
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard span {
  position: absolute;
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_01 {
  width: clamp(14.1428571429px, 2.3571428571vw, 45.2571428571px);
  right: clamp(70.2857142857px, 11.7142857143vw, 224.9142857143px);
  top: clamp(-6.4285714286px, -1.0714285714vw, -20.5714285714px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_01 {
    right: 16vw;
    top: 3.5vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_02 {
  width: clamp(18.4285714286px, 3.0714285714vw, 58.9714285714px);
  right: clamp(7.7142857143px, 1.2857142857vw, 24.6857142857px);
  top: clamp(-10.2857142857px, -1.7142857143vw, -32.9142857143px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_02 {
    right: 1.8vw;
    top: 2.4vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_03 {
  width: clamp(7.7142857143px, 1.2857142857vw, 24.6857142857px);
  right: clamp(0.8571428571px, 0.1428571429vw, 2.7428571429px);
  top: clamp(29.1428571429px, 4.8571428571vw, 93.2571428571px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_03 {
    right: 0.2vw;
    top: 10.6vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_04 {
  width: clamp(14.5714285714px, 2.4285714286vw, 46.6285714286px);
  right: clamp(72.8571428571px, 12.1428571429vw, 233.1428571429px);
  bottom: clamp(12px, 2vw, 38.4px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_04 {
    right: 17vw;
    bottom: 6.8vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_05 {
  width: clamp(6px, 1vw, 19.2px);
  right: clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
  bottom: clamp(6.8571428571px, 1.1428571429vw, 21.9428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_05 {
    right: 2.4vw;
    bottom: 5.6vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_inst {
  width: clamp(106.2857142857px, 17.7142857143vw, 340.1142857143px);
  right: clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
  top: clamp(18.8571428571px, 3.1428571429vw, 60.3428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_box .keyboard .icon_inst {
    right: 1vw;
    top: 33%;
    width: clamp(60px, 19.0476190476vw, 108px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic_lead {
  width: clamp(171.4285714286px, 28.5714285714vw, 548.5714285714px);
  text-align: center;
  font-size: clamp(9px, 1.5vw, 28.8px);
  font-weight: 600;
  line-height: 2.2;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic_lead {
    width: clamp(200px, 57.1428571429vw, 280px);
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .rhythmic .link {
  display: flex;
  justify-content: center;
  column-gap: clamp(11.1428571429px, 1.8571428571vw, 35.6571428571px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .rhythmic .link li {
    width: 46%;
    column-gap: 2%;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu {
  padding: clamp(37.7142857143px, 6.2857142857vw, 120.6857142857px) 0 clamp(26.5714285714px, 4.4285714286vw, 85.0285714286px);
  background: #fff9dd;
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail {
  display: grid;
  grid-column-gap: clamp(18.8571428571px, 3.1428571429vw, 60.3428571429px);
  grid-row-gap: clamp(12px, 2vw, 38.4px);
  position: relative;
  padding: 0 clamp(42px, 7vw, 134.4px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail {
    display: block;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail:after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: 0;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail .ttl {
    margin: 0 auto 2%;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail .img {
  position: relative;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail .img {
    margin: 0 auto 3%;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail .img img {
  position: relative;
  z-index: 2;
  clip-path: inset(0 var(--img-clip, 0%) 0 0);
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail .img:after {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(4.2857142857px, 0.7142857143vw, 13.7142857143px);
  left: clamp(4.2857142857px, 0.7142857143vw, 13.7142857143px);
  width: clamp(288px, 48vw, 921.6px);
  height: clamp(199.7142857143px, 33.2857142857vw, 639.0857142857px);
  clip-path: inset(0 var(--bg-clip, 0%) 0 0);
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt {
  position: relative;
  z-index: 2;
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt > p {
  font-size: clamp(6.4285714286px, 1.0714285714vw, 20.5714285714px);
  line-height: 1.86;
  margin-bottom: clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt > p {
    font-size: clamp(10px, 2.8571428571vw, 15px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt .aim h3 {
  font-size: clamp(6.8571428571px, 1.1428571429vw, 21.9428571429px);
  font-weight: 700;
  margin-bottom: clamp(4.2857142857px, 0.7142857143vw, 13.7142857143px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt .aim h3 {
    font-size: clamp(12px, 3.3333333333vw, 16px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt .aim li {
  font-size: clamp(6px, 1vw, 19.2px);
  margin-bottom: clamp(1.7142857143px, 0.2857142857vw, 5.4857142857px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt .aim li {
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt .aim li:before {
  content: "";
  width: clamp(6px, 1vw, 19.2px);
  height: clamp(6px, 1vw, 19.2px);
  display: inline-block;
  border-radius: 50%;
  margin-right: clamp(3.4285714286px, 0.5714285714vw, 10.9714285714px);
  transform: translateY(clamp(1.2857142857px, 0.2142857143vw, 4.1142857143px));
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail .txt .aim li:before {
    width: clamp(10px, 2.8571428571vw, 14px);
    height: clamp(10px, 2.8571428571vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids {
  grid-template-columns: auto 1fr;
  margin-bottom: clamp(30px, 5vw, 96px);
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids:after {
  background: url(./img/kids_rhythmics_bgttl.svg) no-repeat center center/contain;
  width: clamp(147.4285714286px, 24.5714285714vw, 471.7714285714px);
  height: clamp(51.4285714286px, 8.5714285714vw, 164.5714285714px);
  right: clamp(-1.2857142857px, -0.2142857143vw, -4.1142857143px);
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids .ttl {
  grid-area: 1/2/2/3;
  width: clamp(200.5714285714px, 33.4285714286vw, 641.8285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids .ttl {
    width: clamp(160px, 42.8571428571vw, 200px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids .img {
  grid-area: 1/1/3/2;
  width: clamp(288px, 48vw, 921.6px);
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids .img:after {
  background: url(./img/kids_rhythmics_bgimg.png) no-repeat center bottom/cover;
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids .img img {
  width: 100%;
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids .txt {
  grid-area: 2/2/3/3;
  width: clamp(200.5714285714px, 33.4285714286vw, 641.8285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids .txt {
    width: auto;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.kids .txt .aim li:before {
  background-color: #b6e1ae;
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior {
  grid-template-columns: 1fr auto;
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior:after {
  background: url(./img/senior_rhythmics_bgttl.svg) no-repeat center center/contain;
  width: clamp(233.5714285714px, 38.9285714286vw, 747.4285714286px);
  height: clamp(50.5714285714px, 8.4285714286vw, 161.8285714286px);
  left: clamp(-1.2857142857px, -0.2142857143vw, -4.1142857143px);
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior .ttl {
  grid-area: 1/1/2/2;
  width: clamp(200.5714285714px, 33.4285714286vw, 641.8285714286px);
  align-self: flex-end;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior .ttl {
    width: clamp(160px, 42.8571428571vw, 200px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior .img {
  grid-area: 1/2/3/3;
  width: clamp(288px, 48vw, 921.6px);
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior .img:after {
  background: url(./img/senior_rhythmics_bgimg.png) no-repeat center bottom/cover;
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior .img img {
  width: 100%;
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior .txt {
  grid-area: 2/1/3/2;
  width: clamp(200.5714285714px, 33.4285714286vw, 641.8285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior .txt {
    width: auto;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .menu_detail.senior .txt .aim li:before {
  background-color: #99ddf6;
}
.home.top main#main_content .textwidget.custom-html-widget .state {
  padding: clamp(34.2857142857px, 5.7142857143vw, 109.7142857143px) clamp(47.1428571429px, 7.8571428571vw, 150.8571428571px) clamp(15.4285714286px, 2.5714285714vw, 49.3714285714px);
}
.home.top main#main_content .textwidget.custom-html-widget .state_ttl {
  width: clamp(152.5714285714px, 25.4285714286vw, 488.2285714286px);
  margin: 0 auto clamp(18px, 3vw, 57.6px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .state_ttl {
    width: clamp(100px, 33.3333333333vw, 152px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .state_list {
  display: flex;
  column-gap: clamp(18.8571428571px, 3.1428571429vw, 60.3428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .state_list {
    flex-direction: column;
    row-gap: clamp(8px, 5.7142857143vw, 34.2857142857px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .state_list > li {
  width: calc((100% - clamp(18.8571428571px, 3.1428571429vw, 60.3428571429px)) / 2);
  height: clamp(138.4285714286px, 23.0714285714vw, 442.9714285714px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .state_list > li {
    width: auto;
    height: clamp(140px, 42.8571428571vw, 257.1428571429px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .state_list > li iframe {
  width: 100%;
  height: 100%;
}
.home.top main#main_content .textwidget.custom-html-widget .instructor {
  padding: clamp(15.4285714286px, 2.5714285714vw, 49.3714285714px) clamp(81.4285714286px, 13.5714285714vw, 260.5714285714px) clamp(30.8571428571px, 5.1428571429vw, 98.7428571429px);
  position: relative;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor {
    padding: clamp(10px, 3.5714285714vw, 21.4285714286px) clamp(20px, 9.5238095238vw, 57.1428571429px) clamp(30px, 9.5238095238vw, 57.1428571429px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor:after {
  content: "";
  background: url(./img/instructor_bgttl.svg) no-repeat bottom center/102%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: -8%;
  width: 102%;
  height: clamp(117px, 19.5vw, 374.4px);
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor:after {
    bottom: -2%;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_ttl {
  width: clamp(167.1428571429px, 27.8571428571vw, 534.8571428571px);
  margin: 0 auto clamp(12.8571428571px, 2.1428571429vw, 41.1428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_ttl {
    width: clamp(140px, 35.7142857143vw, 168px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_lead {
  font-size: clamp(8.5714285714px, 1.4285714286vw, 27.4285714286px);
  text-align: center;
  margin-bottom: clamp(17.1428571429px, 2.8571428571vw, 54.8571428571px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_lead {
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
  .home.top main#main_content .textwidget.custom-html-widget .instructor_lead br {
    display: none;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list {
  display: flex;
  column-gap: clamp(30.8571428571px, 5.1428571429vw, 98.7428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list {
    flex-direction: column;
    row-gap: clamp(24px, 7.619047619vw, 40px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li {
  width: calc((100% - clamp(30.8571428571px, 5.1428571429vw, 98.7428571429px) * 2) / 3);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list > li {
    width: auto;
    display: grid;
    grid-template-rows: auto auto 1fr;
    grid-column-gap: clamp(8px, 3.8095238095vw, 24px);
    grid-row-gap: 0;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .photo {
  margin-bottom: clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
  clip-path: inset(0 var(--photo-clip, 0%) 0 0);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .photo {
    grid-area: 1/1/2/2;
    margin-bottom: 0;
    width: clamp(80px, 23.8095238095vw, 126px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .photo img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .box {
    grid-area: 2/1/3/2;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .box span {
  display: block;
  text-align: center;
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .box .field {
  font-size: clamp(8.5714285714px, 1.4285714286vw, 27.4285714286px);
  margin-bottom: clamp(3.4285714286px, 0.5714285714vw, 10.9714285714px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .box .field {
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .box .name {
  font-size: clamp(14.1428571429px, 2.3571428571vw, 45.2571428571px);
  margin-bottom: clamp(6.8571428571px, 1.1428571429vw, 21.9428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .box .name {
    font-size: clamp(12px, 3.8095238095vw, 18px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .role {
  display: flex;
  column-gap: clamp(4.2857142857px, 0.7142857143vw, 13.7142857143px);
  justify-content: center;
  margin-bottom: clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .role {
    grid-area: 3/1/4/2;
    align-self: start;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .role li {
  border-radius: clamp(7.7142857143px, 1.2857142857vw, 24.6857142857px);
  min-width: clamp(51.8571428571px, 8.6428571429vw, 165.9428571429px);
  font-size: clamp(7.2857142857px, 1.2142857143vw, 23.3142857143px);
  text-align: center;
  padding: clamp(1.7142857143px, 0.2857142857vw, 5.4857142857px) clamp(6.8571428571px, 1.1428571429vw, 21.9428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .role li {
    font-size: clamp(10px, 2.8571428571vw, 13px);
    border-radius: clamp(12px, 3.3333333333vw, 16px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .role li.kids {
  border: 1px solid #47b331;
  color: #47b331;
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .role li.senior {
  border: 1px solid #00aae9;
  color: #00aae9;
}
.home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .introduction {
  font-size: clamp(6px, 1vw, 19.2px);
  font-weight: 400;
  padding: 0 clamp(6.8571428571px, 1.1428571429vw, 21.9428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .instructor_list > li .introduction {
    grid-area: 1/2/4/3;
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements {
  background: #efefef;
  padding: clamp(40.2857142857px, 6.7142857143vw, 128.9142857143px) clamp(119.1428571429px, 19.8571428571vw, 381.2571428571px) clamp(24.8571428571px, 4.1428571429vw, 79.5428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements {
    padding: clamp(32px, 9.5238095238vw, 57.1428571429px) clamp(32px, 14.2857142857vw, 85.7142857143px) clamp(16px, 5.7142857143vw, 34.2857142857px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_ttl {
  width: clamp(195.4285714286px, 32.5714285714vw, 625.3714285714px);
  margin: 0 auto clamp(19.7142857143px, 3.2857142857vw, 63.0857142857px);
  position: relative;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_ttl {
    width: clamp(140px, 40vw, 196px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_ttl:before {
  content: "";
  background: url(./img/achievements_icon-left.svg) no-repeat center center/contain;
  width: clamp(17.1428571429px, 2.8571428571vw, 54.8571428571px);
  height: clamp(48px, 8vw, 153.6px);
  display: block;
  position: absolute;
  left: clamp(-62.5714285714px, -10.4285714286vw, -200.2285714286px);
  top: clamp(-9.4285714286px, -1.5714285714vw, -30.1714285714px);
  transform-origin: center bottom;
  transform: rotate(var(--rotate, 0deg));
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_ttl:before {
    left: clamp(-32px, -9.5238095238vw, -72px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_ttl:after {
  content: "";
  background: url(./img/achievements_icon-right.svg) no-repeat center center/contain;
  width: clamp(17.1428571429px, 2.8571428571vw, 54.8571428571px);
  height: clamp(48px, 8vw, 153.6px);
  display: block;
  position: absolute;
  right: clamp(-62.5714285714px, -10.4285714286vw, -200.2285714286px);
  top: clamp(-9.4285714286px, -1.5714285714vw, -30.1714285714px);
  transform-origin: center bottom;
  transform: rotate(calc(var(--rotate, 0deg) * -1));
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_ttl:after {
    right: clamp(-32px, -9.5238095238vw, -72px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_lead {
  text-align: center;
  margin-bottom: clamp(18.8571428571px, 3.1428571429vw, 60.3428571429px);
  font-size: clamp(8.5714285714px, 1.4285714286vw, 27.4285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_lead {
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_list {
  background: #fff;
  display: flex;
  column-gap: clamp(6.8571428571px, 1.1428571429vw, 21.9428571429px);
  align-items: center;
  padding: clamp(18px, 3vw, 57.6px) clamp(23.1428571429px, 3.8571428571vw, 74.0571428571px) clamp(13.7142857143px, 2.2857142857vw, 43.8857142857px) clamp(20.5714285714px, 3.4285714286vw, 65.8285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_list li {
  clip-path: inset(0 var(--achieve-clip, 0%) 0 0);
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_list li:nth-of-type(1) {
  width: clamp(101.1428571429px, 16.8571428571vw, 323.6571428571px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_list li:nth-of-type(1) {
    order: 1;
    width: clamp(100px, 33.3333333333vw, 160px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_list li:nth-of-type(2) {
  width: clamp(102px, 17vw, 326.4px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_list li:nth-of-type(2) {
    order: 4;
    width: clamp(100px, 33.3333333333vw, 180px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_list li:nth-of-type(3) {
  width: clamp(50.5714285714px, 8.4285714286vw, 161.8285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_list li:nth-of-type(3) {
    order: 2;
    width: clamp(60px, 19.0476190476vw, 118px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_list li:nth-of-type(4) {
  width: clamp(46.7142857143px, 7.7857142857vw, 149.4857142857px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .achievements_list li:nth-of-type(4) {
    order: 3;
    width: clamp(60px, 16.6666666667vw, 80px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .achievements_list li img {
  display: block;
  width: 100%;
}
.home.top main#main_content .textwidget.custom-html-widget .voice {
  background: #efefef;
  padding: clamp(34.2857142857px, 5.7142857143vw, 109.7142857143px) clamp(119.1428571429px, 19.8571428571vw, 381.2571428571px) clamp(21.4285714286px, 3.5714285714vw, 68.5714285714px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .voice {
    padding: clamp(24px, 8.0952380952vw, 48.5714285714px) clamp(40px, 14.2857142857vw, 85.7142857143px) clamp(10px, 5.2380952381vw, 31.4285714286px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(12.8571428571px, 2.1428571429vw, 41.1428571429px);
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .video_ttl {
  width: clamp(116.1428571429px, 19.3571428571vw, 371.6571428571px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .voice_box .video_ttl {
    width: clamp(100px, 30.9523809524vw, 160px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-left {
  position: relative;
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-left span {
  position: absolute;
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-left span.icon_01 {
  width: clamp(7.7142857143px, 1.2857142857vw, 24.6857142857px);
  left: clamp(-54.8571428571px, -9.1428571429vw, -175.5428571429px);
  top: clamp(3.4285714286px, 0.5714285714vw, 10.9714285714px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-left span.icon_01 {
    left: -12.8vw;
    top: 0.8vw;
    width: clamp(10px, 2.8571428571vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-left span.icon_02 {
  width: clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
  left: clamp(-44.5714285714px, -7.4285714286vw, -142.6285714286px);
  top: clamp(21.4285714286px, 3.5714285714vw, 68.5714285714px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-left span.icon_02 {
    left: -10vw;
    top: 5vw;
    width: clamp(16px, 4.2857142857vw, 20px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-right {
  position: relative;
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-right span {
  position: absolute;
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-right span.icon_03 {
  width: clamp(6px, 1vw, 19.2px);
  right: clamp(-69.4285714286px, -11.5714285714vw, -222.1714285714px);
  top: clamp(2.5714285714px, 0.4285714286vw, 8.2285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-right span.icon_03 {
    width: clamp(8px, 2.380952381vw, 12px);
    right: -14.2vw;
    top: 0.6vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-right span.icon_04 {
  width: clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
  right: clamp(-49.7142857143px, -8.2857142857vw, -159.0857142857px);
  top: clamp(18.8571428571px, 3.1428571429vw, 60.3428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .voice_box .box_icon-right span.icon_04 {
    width: clamp(14px, 3.8095238095vw, 18px);
    right: -8.6vw;
    top: 5.4vw;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .voice_list {
  margin: 0 auto;
  width: clamp(368.5714285714px, 61.4285714286vw, 1179.4285714286px);
  height: clamp(203.5714285714px, 33.9285714286vw, 651.4285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .voice_list {
    width: auto;
    height: clamp(140px, 42.8571428571vw, 257.1428571429px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .voice_list iframe {
  width: 100%;
  height: 100%;
}
.home.top main#main_content .textwidget.custom-html-widget .price {
  padding: clamp(37.7142857143px, 6.2857142857vw, 120.6857142857px) clamp(42px, 7vw, 134.4px) clamp(42.8571428571px, 7.1428571429vw, 137.1428571429px);
}
.home.top main#main_content .textwidget.custom-html-widget .price_ttl {
  width: clamp(176.5714285714px, 29.4285714286vw, 565.0285714286px);
  margin: 0 auto clamp(12.8571428571px, 2.1428571429vw, 41.1428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_ttl {
    width: clamp(140px, 37.619047619vw, 176px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_lead {
  text-align: center;
  font-size: clamp(8.5714285714px, 1.4285714286vw, 27.4285714286px);
  margin-bottom: clamp(24px, 4vw, 76.8px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_lead {
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list {
  display: flex;
  justify-content: center;
  column-gap: clamp(20.5714285714px, 3.4285714286vw, 65.8285714286px);
  margin-bottom: clamp(24px, 4vw, 76.8px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list {
    flex-direction: column;
    row-gap: clamp(16px, 5.7142857143vw, 32px);
    width: 80%;
    margin: 0 auto clamp(16px, 5.7142857143vw, 34.2857142857px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li {
  border: 2px solid #f25e00;
  border-radius: 40px;
  padding: clamp(22.2857142857px, 3.7142857143vw, 71.3142857143px) clamp(42px, 7vw, 134.4px);
  width: calc((100% - clamp(20.5714285714px, 3.4285714286vw, 65.8285714286px)) / 2);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list li {
    width: auto;
    padding: clamp(14px, 5.2380952381vw, 31.4285714286px) clamp(24px, 7.619047619vw, 45.7142857143px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li .ttl {
  margin: 0 auto clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li .lead {
  text-align: center;
  font-size: clamp(7.7142857143px, 1.2857142857vw, 24.6857142857px);
  margin-bottom: clamp(12.8571428571px, 2.1428571429vw, 41.1428571429px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list li .lead {
    font-size: clamp(12px, 3.0952380952vw, 14px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li .box_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li .box_inner .label {
  border-radius: 50%;
  width: clamp(24px, 4vw, 76.8px);
  height: clamp(24px, 4vw, 76.8px);
  background: #f25e00;
  color: #fff;
  font-size: clamp(6px, 1vw, 19.2px);
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list li .box_inner .label {
    font-size: clamp(10px, 2.619047619vw, 12px);
    width: clamp(32px, 9.5238095238vw, 52px);
    height: clamp(32px, 9.5238095238vw, 52px);
    line-height: 1.3;
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li .box_inner .price {
  padding: 0;
  font-size: clamp(27px, 4.5vw, 86.4px);
  margin: 0 clamp(2.5714285714px, 0.4285714286vw, 8.2285714286px) 0 clamp(5.1428571429px, 0.8571428571vw, 16.4571428571px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list li .box_inner .price {
    font-size: clamp(28px, 7.619047619vw, 40px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li .box_inner .unit {
  font-size: clamp(14.5714285714px, 2.4285714286vw, 46.6285714286px);
  align-self: flex-end;
  padding-bottom: clamp(4.2857142857px, 0.7142857143vw, 13.7142857143px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list li .box_inner .unit {
    font-size: clamp(14px, 3.8095238095vw, 20px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li .box .add {
  display: block;
  text-align: center;
  font-size: clamp(14.5714285714px, 2.4285714286vw, 46.6285714286px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list li .box .add {
    font-size: clamp(14px, 3.8095238095vw, 20px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list li .box .fare {
  display: block;
  text-align: center;
  font-size: clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list li .box .fare {
    font-size: clamp(12px, 3.8095238095vw, 18px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list .rhythmic .ttl {
  width: clamp(149.1428571429px, 24.8571428571vw, 477.2571428571px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list .rhythmic .ttl {
    width: clamp(132px, 35.2380952381vw, 150px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price_list .concert .ttl {
  width: clamp(162px, 27vw, 518.4px);
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price_list .concert .ttl {
    width: clamp(136px, 35.7142857143vw, 162px);
  }
}
.home.top main#main_content .textwidget.custom-html-widget .price .notice {
  font-size: clamp(6px, 1vw, 19.2px);
  text-align: center;
}
@media screen and (max-width: 600px) {
  .home.top main#main_content .textwidget.custom-html-widget .price .notice {
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}

/* ---------
 footer
 --------- */
footer.l-footer {
  background: #f25e00;
  padding: clamp(35.1428571429px, 5.8571428571vw, 112.4571428571px) clamp(42.8571428571px, 7.1428571429vw, 137.1428571429px) clamp(35.1428571429px, 5.8571428571vw, 112.4571428571px) clamp(34.2857142857px, 5.7142857143vw, 109.7142857143px);
  margin: 0 auto;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea {
  padding: 0;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container {
  padding: 0;
  max-width: unset;
  display: block;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box {
  padding: 0;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget {
  display: flex;
  column-gap: clamp(44.5714285714px, 7.4285714286vw, 142.6285714286px);
}
@media screen and (max-width: 600px) {
  footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget {
    flex-direction: column;
    row-gap: clamp(24px, 7.619047619vw, 45.7142857143px);
  }
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info {
  margin-bottom: 0;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .logo {
  width: clamp(171.4285714286px, 28.5714285714vw, 548.5714285714px);
}
@media screen and (max-width: 600px) {
  footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .logo {
    width: clamp(148px, 39.0476190476vw, 172px);
    margin: 0 auto;
  }
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .logo img {
  width: 100%;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add {
  padding: clamp(8.5714285714px, 1.4285714286vw, 27.4285714286px) clamp(10.2857142857px, 1.7142857143vw, 32.9142857143px) clamp(4.2857142857px, 0.7142857143vw, 13.7142857143px);
  color: #fff;
}
@media screen and (max-width: 600px) {
  footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add {
    font-size: clamp(10px, 2.8571428571vw, 14px);
  }
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add .map {
  position: relative;
  padding-left: clamp(7.7142857143px, 1.2857142857vw, 24.6857142857px);
  display: block;
}
@media screen and (max-width: 600px) {
  footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add .map {
    padding-left: clamp(10px, 2.380952381vw, 14.2857142857px);
  }
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add .map a {
  text-decoration: underline;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add .map a:hover {
  text-decoration: none;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add .map:before {
  content: "";
  background: url(./img/icon_map.svg) no-repeat center center/contain;
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: clamp(6px, 1vw, 19.2px);
  height: clamp(9.4285714286px, 1.5714285714vw, 30.1714285714px);
}
@media screen and (max-width: 600px) {
  footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add .map:before {
    width: clamp(7px, 1.6666666667vw, 10px);
    height: clamp(11px, 2.619047619vw, 15.7142857143px);
  }
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .info .add a {
  color: #fff;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box .group {
  display: flex;
  column-gap: clamp(7.7142857143px, 1.2857142857vw, 24.6857142857px);
  margin-bottom: clamp(17.1428571429px, 2.8571428571vw, 54.8571428571px);
}
@media screen and (max-width: 600px) {
  footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box .group {
    column-gap: 2%;
    justify-content: center;
  }
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box .group li {
  width: clamp(149.1428571429px, 24.8571428571vw, 477.2571428571px);
}
@media screen and (max-width: 600px) {
  footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box .group li {
    width: 45%;
  }
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box .group li a {
  display: block;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box .group li a:hover {
  opacity: 0.7;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: linear 0.5s;
  transition: linear 0.5s;
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box .group li img {
  display: block;
  width: 100%;
  clip-path: inset(0 var(--achieve-clip, 0%) 0 0);
}
footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box small {
  text-align: right;
  display: block;
  color: #fff;
}
@media screen and (max-width: 600px) {
  footer.l-footer .l-footer__inner .l-footer__widgetArea .l-container .w-footer__box .textwidget.custom-html-widget .box small {
    font-size: clamp(10px, 2.8571428571vw, 14px);
    margin-bottom: 10%;
    text-align: center;
  }
}
footer.l-footer .l-footer__foot {
  display: none;
}

.button a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: clamp(131.1428571429px, 21.8571428571vw, 419.6571428571px);
  padding: clamp(2.5714285714px, 0.4285714286vw, 8.2285714286px);
  box-sizing: border-box;
  border-radius: clamp(13.7142857143px, 2.2857142857vw, 43.8857142857px);
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #f25e00;
  background: #fff;
}
@media screen and (max-width: 600px) {
  .button a {
    width: auto;
    padding: clamp(2px, 0.9523809524vw, 6px);
    border-radius: clamp(24px, 5.7142857143vw, 34.2857142857px);
  }
}
.button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f25e00;
  z-index: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.button a .txt {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  text-align: center;
  font-weight: bold;
  font-size: clamp(8.5714285714px, 1.4285714286vw, 27.4285714286px);
  color: #f25e00;
  transition: color 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (max-width: 600px) {
  .button a .txt {
    font-size: clamp(10px, 2.619047619vw, 13px);
  }
}
.button a .icon {
  position: relative;
  z-index: 1;
  width: clamp(23.1428571429px, 3.8571428571vw, 74.0571428571px);
  height: clamp(23.1428571429px, 3.8571428571vw, 74.0571428571px);
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 600px) {
  .button a .icon {
    width: clamp(20px, 6.1904761905vw, 30px);
    height: clamp(20px, 6.1904761905vw, 30px);
  }
}
.button a .icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.button a .icon svg .icon_bg {
  fill: #f25e00;
  transition: fill 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.button a .icon svg .icon_arrow {
  stroke: #fff;
  transition: stroke 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (hover: hover) {
  .button a:hover::before {
    clip-path: inset(0 0 0 0);
  }
  .button a:hover .txt {
    color: #fff;
  }
  .button a:hover .icon svg .icon_bg {
    fill: #fff;
  }
  .button a:hover .icon svg .icon_arrow {
    stroke: #f25e00;
  }
}
.button.input {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: clamp(131.1428571429px, 21.8571428571vw, 419.6571428571px);
  padding: clamp(2.5714285714px, 0.4285714286vw, 8.2285714286px);
  box-sizing: border-box;
  border-radius: clamp(13.7142857143px, 2.2857142857vw, 43.8857142857px);
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  border: 1px solid #f25e00;
  background: #fff;
}
@media screen and (max-width: 600px) {
  .button.input {
    width: 80%;
    padding: clamp(2px, 0.9523809524vw, 6px);
    border-radius: clamp(24px, 5.7142857143vw, 34.2857142857px);
  }
}
.button.input:has(input:disabled) {
  border-color: #c3c3c3;
  cursor: not-allowed;
  pointer-events: none;
}
.button.input:has(input:disabled)::before {
  display: none;
}
.button.input:has(input:disabled) .wpcf7-submit {
  color: #c3c3c3;
}
.button.input:has(input:disabled) .icon svg .icon_bg {
  fill: #c3c3c3;
}
.button.input::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f25e00;
  z-index: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.button.input .wpcf7-submit {
  position: relative;
  z-index: 1;
  flex-grow: 1;
  text-align: center;
  font-weight: bold;
  font-size: clamp(8.5714285714px, 1.4285714286vw, 27.4285714286px);
  padding: 0;
  color: #f25e00;
  transition: color 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media screen and (max-width: 600px) {
  .button.input .wpcf7-submit {
    font-size: clamp(10px, 2.619047619vw, 13px);
  }
}
.button.input .icon {
  position: relative;
  z-index: 1;
  width: clamp(23.1428571429px, 3.8571428571vw, 74.0571428571px);
  height: clamp(23.1428571429px, 3.8571428571vw, 74.0571428571px);
  flex-shrink: 0;
  display: block;
}
@media screen and (max-width: 600px) {
  .button.input .icon {
    width: clamp(20px, 6.1904761905vw, 30px);
    height: clamp(20px, 6.1904761905vw, 30px);
  }
}
.button.input .icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.button.input .icon svg .icon_bg {
  fill: #f25e00;
  transition: fill 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.button.input .icon svg .icon_arrow {
  stroke: #fff;
  transition: stroke 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
@media (hover: hover) {
  .button.input:hover::before {
    clip-path: inset(0 0 0 0);
  }
  .button.input:hover input {
    color: #fff;
  }
  .button.input:hover .icon svg .icon_bg {
    fill: #fff;
  }
  .button.input:hover .icon svg .icon_arrow {
    stroke: #f25e00;
  }
}

/***************************************************
 * Generated by SVG Artista on 12/14/2025, 2:49:22 PM
 * MIT license (https://opensource.org/licenses/MIT)
 * W. https://svgartista.net
 **************************************************/
@-webkit-keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-1 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-1 {
  -webkit-animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
  animation: animate-svg-fill-1 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.8s both;
}
@-webkit-keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-2 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-2 {
  -webkit-animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
  animation: animate-svg-fill-2 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 0.9s both;
}
@-webkit-keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-3 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-3 {
  -webkit-animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
  animation: animate-svg-fill-3 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1s both;
}
@-webkit-keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(40, 140, 0);
  }
}
@keyframes animate-svg-fill-4 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(40, 140, 0);
  }
}
.main_ttl .svg-elem-4 {
  -webkit-animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
  animation: animate-svg-fill-4 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.1s both;
}
@-webkit-keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
@keyframes animate-svg-fill-5 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
.main_ttl .svg-elem-5 {
  -webkit-animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
  animation: animate-svg-fill-5 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.2s both;
}
@-webkit-keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
@keyframes animate-svg-fill-6 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
.main_ttl .svg-elem-6 {
  -webkit-animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
  animation: animate-svg-fill-6 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.3s both;
}
@-webkit-keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
@keyframes animate-svg-fill-7 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
.main_ttl .svg-elem-7 {
  -webkit-animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
  animation: animate-svg-fill-7 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.4s both;
}
@-webkit-keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-8 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-8 {
  -webkit-animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
  animation: animate-svg-fill-8 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.5s both;
}
@-webkit-keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
@keyframes animate-svg-fill-9 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
.main_ttl .svg-elem-9 {
  -webkit-animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
  animation: animate-svg-fill-9 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.6s both;
}
@-webkit-keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
@keyframes animate-svg-fill-10 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
.main_ttl .svg-elem-10 {
  -webkit-animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
  animation: animate-svg-fill-10 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.7s both;
}
@-webkit-keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-11 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-11 {
  -webkit-animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
  animation: animate-svg-fill-11 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.8s both;
}
@-webkit-keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-12 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-12 {
  -webkit-animation: animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
  animation: animate-svg-fill-12 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 1.9s both;
}
@-webkit-keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-13 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-13 {
  -webkit-animation: animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
  animation: animate-svg-fill-13 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2s both;
}
@-webkit-keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-14 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-14 {
  -webkit-animation: animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
  animation: animate-svg-fill-14 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.1s both;
}
@-webkit-keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
@keyframes animate-svg-fill-15 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
.main_ttl .svg-elem-15 {
  -webkit-animation: animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
  animation: animate-svg-fill-15 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.2s both;
}
@-webkit-keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-16 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-16 {
  -webkit-animation: animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
  animation: animate-svg-fill-16 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.3s both;
}
@-webkit-keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-17 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-17 {
  -webkit-animation: animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
  animation: animate-svg-fill-17 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.4s both;
}
@-webkit-keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-18 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-18 {
  -webkit-animation: animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
  animation: animate-svg-fill-18 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.5s both;
}
@-webkit-keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
@keyframes animate-svg-fill-19 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
.main_ttl .svg-elem-19 {
  -webkit-animation: animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
  animation: animate-svg-fill-19 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.6s both;
}
@-webkit-keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-20 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-20 {
  -webkit-animation: animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
  animation: animate-svg-fill-20 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.7s both;
}
@-webkit-keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-21 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-21 {
  -webkit-animation: animate-svg-fill-21 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
  animation: animate-svg-fill-21 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.8s both;
}
@-webkit-keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-22 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-22 {
  -webkit-animation: animate-svg-fill-22 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both;
  animation: animate-svg-fill-22 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 2.9s both;
}
@-webkit-keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-23 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-23 {
  -webkit-animation: animate-svg-fill-23 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
  animation: animate-svg-fill-23 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3s both;
}
@-webkit-keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-24 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-24 {
  -webkit-animation: animate-svg-fill-24 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both;
  animation: animate-svg-fill-24 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.1s both;
}
@-webkit-keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-25 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-25 {
  -webkit-animation: animate-svg-fill-25 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both;
  animation: animate-svg-fill-25 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.2s both;
}
@-webkit-keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-26 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-26 {
  -webkit-animation: animate-svg-fill-26 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both;
  animation: animate-svg-fill-26 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.3s both;
}
@-webkit-keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-27 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-27 {
  -webkit-animation: animate-svg-fill-27 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both;
  animation: animate-svg-fill-27 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.4s both;
}
@-webkit-keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-28 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-28 {
  -webkit-animation: animate-svg-fill-28 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s both;
  animation: animate-svg-fill-28 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.5s both;
}
@-webkit-keyframes animate-svg-fill-29 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-29 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-29 {
  -webkit-animation: animate-svg-fill-29 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s both;
  animation: animate-svg-fill-29 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.6s both;
}
@-webkit-keyframes animate-svg-fill-30 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
@keyframes animate-svg-fill-30 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
.main_ttl .svg-elem-30 {
  -webkit-animation: animate-svg-fill-30 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s both;
  animation: animate-svg-fill-30 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.7s both;
}
@-webkit-keyframes animate-svg-fill-31 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-31 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-31 {
  -webkit-animation: animate-svg-fill-31 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both;
  animation: animate-svg-fill-31 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.8s both;
}
@-webkit-keyframes animate-svg-fill-32 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
@keyframes animate-svg-fill-32 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
.main_ttl .svg-elem-32 {
  -webkit-animation: animate-svg-fill-32 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both;
  animation: animate-svg-fill-32 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 3.9s both;
}
@-webkit-keyframes animate-svg-fill-33 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-33 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-33 {
  -webkit-animation: animate-svg-fill-33 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
  animation: animate-svg-fill-33 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4s both;
}
@-webkit-keyframes animate-svg-fill-34 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-34 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-34 {
  -webkit-animation: animate-svg-fill-34 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
  animation: animate-svg-fill-34 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.1s both;
}
@-webkit-keyframes animate-svg-fill-35 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
@keyframes animate-svg-fill-35 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
.main_ttl .svg-elem-35 {
  -webkit-animation: animate-svg-fill-35 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both;
  animation: animate-svg-fill-35 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.2s both;
}
@-webkit-keyframes animate-svg-fill-36 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-36 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-36 {
  -webkit-animation: animate-svg-fill-36 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both;
  animation: animate-svg-fill-36 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.3s both;
}
@-webkit-keyframes animate-svg-fill-37 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-37 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-37 {
  -webkit-animation: animate-svg-fill-37 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both;
  animation: animate-svg-fill-37 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.4s both;
}
@-webkit-keyframes animate-svg-fill-38 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-38 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-38 {
  -webkit-animation: animate-svg-fill-38 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both;
  animation: animate-svg-fill-38 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.5s both;
}
@-webkit-keyframes animate-svg-fill-39 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-39 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-39 {
  -webkit-animation: animate-svg-fill-39 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both;
  animation: animate-svg-fill-39 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.6s both;
}
@-webkit-keyframes animate-svg-fill-40 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-40 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-40 {
  -webkit-animation: animate-svg-fill-40 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s both;
  animation: animate-svg-fill-40 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.7s both;
}
@-webkit-keyframes animate-svg-fill-41 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-41 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-41 {
  -webkit-animation: animate-svg-fill-41 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s both;
  animation: animate-svg-fill-41 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.8s both;
}
@-webkit-keyframes animate-svg-fill-42 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-42 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-42 {
  -webkit-animation: animate-svg-fill-42 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s both;
  animation: animate-svg-fill-42 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 4.9s both;
}
@-webkit-keyframes animate-svg-fill-43 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
@keyframes animate-svg-fill-43 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
.main_ttl .svg-elem-43 {
  -webkit-animation: animate-svg-fill-43 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5s both;
  animation: animate-svg-fill-43 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5s both;
}
@-webkit-keyframes animate-svg-fill-44 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-44 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-44 {
  -webkit-animation: animate-svg-fill-44 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s both;
  animation: animate-svg-fill-44 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.1s both;
}
@-webkit-keyframes animate-svg-fill-45 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-45 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-45 {
  -webkit-animation: animate-svg-fill-45 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s both;
  animation: animate-svg-fill-45 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.2s both;
}
@-webkit-keyframes animate-svg-fill-46 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
@keyframes animate-svg-fill-46 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
.main_ttl .svg-elem-46 {
  -webkit-animation: animate-svg-fill-46 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s both;
  animation: animate-svg-fill-46 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.3s both;
}
@-webkit-keyframes animate-svg-fill-47 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
@keyframes animate-svg-fill-47 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
.main_ttl .svg-elem-47 {
  -webkit-animation: animate-svg-fill-47 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s both;
  animation: animate-svg-fill-47 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.4s both;
}
@-webkit-keyframes animate-svg-fill-48 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-48 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-48 {
  -webkit-animation: animate-svg-fill-48 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s both;
  animation: animate-svg-fill-48 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.5s both;
}
@-webkit-keyframes animate-svg-fill-49 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-49 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-49 {
  -webkit-animation: animate-svg-fill-49 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s both;
  animation: animate-svg-fill-49 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.6s both;
}
@-webkit-keyframes animate-svg-fill-50 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
@keyframes animate-svg-fill-50 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
.main_ttl .svg-elem-50 {
  -webkit-animation: animate-svg-fill-50 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s both;
  animation: animate-svg-fill-50 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.7s both;
}
@-webkit-keyframes animate-svg-fill-51 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-51 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-51 {
  -webkit-animation: animate-svg-fill-51 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s both;
  animation: animate-svg-fill-51 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.8s both;
}
@-webkit-keyframes animate-svg-fill-52 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-52 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-52 {
  -webkit-animation: animate-svg-fill-52 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s both;
  animation: animate-svg-fill-52 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 5.9s both;
}
@-webkit-keyframes animate-svg-fill-53 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-53 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-53 {
  -webkit-animation: animate-svg-fill-53 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6s both;
  animation: animate-svg-fill-53 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6s both;
}
@-webkit-keyframes animate-svg-fill-54 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-54 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-54 {
  -webkit-animation: animate-svg-fill-54 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1s both;
  animation: animate-svg-fill-54 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.1s both;
}
@-webkit-keyframes animate-svg-fill-55 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-55 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-55 {
  -webkit-animation: animate-svg-fill-55 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s both;
  animation: animate-svg-fill-55 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.2s both;
}
@-webkit-keyframes animate-svg-fill-56 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
@keyframes animate-svg-fill-56 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
.main_ttl .svg-elem-56 {
  -webkit-animation: animate-svg-fill-56 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s both;
  animation: animate-svg-fill-56 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.3s both;
}
@-webkit-keyframes animate-svg-fill-57 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-57 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-57 {
  -webkit-animation: animate-svg-fill-57 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s both;
  animation: animate-svg-fill-57 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.4s both;
}
@-webkit-keyframes animate-svg-fill-58 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
@keyframes animate-svg-fill-58 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
.main_ttl .svg-elem-58 {
  -webkit-animation: animate-svg-fill-58 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.5s both;
  animation: animate-svg-fill-58 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.5s both;
}
@-webkit-keyframes animate-svg-fill-59 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-59 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-59 {
  -webkit-animation: animate-svg-fill-59 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.6s both;
  animation: animate-svg-fill-59 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.6s both;
}
@-webkit-keyframes animate-svg-fill-60 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-60 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-60 {
  -webkit-animation: animate-svg-fill-60 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.7s both;
  animation: animate-svg-fill-60 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.7s both;
}
@-webkit-keyframes animate-svg-fill-61 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-61 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-61 {
  -webkit-animation: animate-svg-fill-61 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s both;
  animation: animate-svg-fill-61 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.8s both;
}
@-webkit-keyframes animate-svg-fill-62 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-62 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-62 {
  -webkit-animation: animate-svg-fill-62 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.9s both;
  animation: animate-svg-fill-62 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 6.9s both;
}
@-webkit-keyframes animate-svg-fill-63 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
@keyframes animate-svg-fill-63 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(154, 39, 35);
  }
}
.main_ttl .svg-elem-63 {
  -webkit-animation: animate-svg-fill-63 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7s both;
  animation: animate-svg-fill-63 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7s both;
}
@-webkit-keyframes animate-svg-fill-64 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-64 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-64 {
  -webkit-animation: animate-svg-fill-64 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.1s both;
  animation: animate-svg-fill-64 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.1s both;
}
@-webkit-keyframes animate-svg-fill-65 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
@keyframes animate-svg-fill-65 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
.main_ttl .svg-elem-65 {
  -webkit-animation: animate-svg-fill-65 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s both;
  animation: animate-svg-fill-65 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.2s both;
}
@-webkit-keyframes animate-svg-fill-66 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
@keyframes animate-svg-fill-66 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(243, 146, 0);
  }
}
.main_ttl .svg-elem-66 {
  -webkit-animation: animate-svg-fill-66 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.3s both;
  animation: animate-svg-fill-66 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.3s both;
}
@-webkit-keyframes animate-svg-fill-67 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-67 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-67 {
  -webkit-animation: animate-svg-fill-67 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s both;
  animation: animate-svg-fill-67 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.4s both;
}
@-webkit-keyframes animate-svg-fill-68 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-68 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-68 {
  -webkit-animation: animate-svg-fill-68 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.5s both;
  animation: animate-svg-fill-68 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.5s both;
}
@-webkit-keyframes animate-svg-fill-69 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-69 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-69 {
  -webkit-animation: animate-svg-fill-69 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.6s both;
  animation: animate-svg-fill-69 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.6s both;
}
@-webkit-keyframes animate-svg-fill-70 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-70 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-70 {
  -webkit-animation: animate-svg-fill-70 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.7s both;
  animation: animate-svg-fill-70 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.7s both;
}
@-webkit-keyframes animate-svg-fill-71 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
@keyframes animate-svg-fill-71 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
.main_ttl .svg-elem-71 {
  -webkit-animation: animate-svg-fill-71 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s both;
  animation: animate-svg-fill-71 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.8s both;
}
@-webkit-keyframes animate-svg-fill-72 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
@keyframes animate-svg-fill-72 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 190, 240);
  }
}
.main_ttl .svg-elem-72 {
  -webkit-animation: animate-svg-fill-72 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.9s both;
  animation: animate-svg-fill-72 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 7.9s both;
}
@-webkit-keyframes animate-svg-fill-73 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
@keyframes animate-svg-fill-73 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(69, 113, 240);
  }
}
.main_ttl .svg-elem-73 {
  -webkit-animation: animate-svg-fill-73 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8s both;
  animation: animate-svg-fill-73 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8s both;
}
@-webkit-keyframes animate-svg-fill-74 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(40, 140, 0);
  }
}
@keyframes animate-svg-fill-74 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(40, 140, 0);
  }
}
.main_ttl .svg-elem-74 {
  -webkit-animation: animate-svg-fill-74 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.1s both;
  animation: animate-svg-fill-74 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.1s both;
}
@-webkit-keyframes animate-svg-fill-75 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
@keyframes animate-svg-fill-75 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(79, 181, 46);
  }
}
.main_ttl .svg-elem-75 {
  -webkit-animation: animate-svg-fill-75 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s both;
  animation: animate-svg-fill-75 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.2s both;
}
@-webkit-keyframes animate-svg-fill-76 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
@keyframes animate-svg-fill-76 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(242, 94, 0);
  }
}
.main_ttl .svg-elem-76 {
  -webkit-animation: animate-svg-fill-76 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.3s both;
  animation: animate-svg-fill-76 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.3s both;
}
@-webkit-keyframes animate-svg-fill-77 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
@keyframes animate-svg-fill-77 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(230, 39, 35);
  }
}
.main_ttl .svg-elem-77 {
  -webkit-animation: animate-svg-fill-77 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s both;
  animation: animate-svg-fill-77 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.4s both;
}
@-webkit-keyframes animate-svg-fill-78 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
@keyframes animate-svg-fill-78 {
  0% {
    fill: transparent;
  }
  100% {
    fill: rgb(255, 255, 255);
  }
}
.main_ttl .svg-elem-78 {
  -webkit-animation: animate-svg-fill-78 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.5s both;
  animation: animate-svg-fill-78 0.7s cubic-bezier(0.47, 0, 0.745, 0.715) 8.5s both;
}

/*# sourceMappingURL=style.css.map */
