@charset "UTF-8";
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	reset

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-print-color-adjust: exact;
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

li {
  list-style: none;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

.clearfix::after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  -webkit-backface-visibility: hidden;
  vertical-align: bottom;
  user-select: none;
  pointer-events: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
a[href],
label[for],
button,
input[type=button],
input[type=submit],
input[type=reset],
input[type=image],
input[type=radio],
input[type=checkbox],
select {
  cursor: pointer;
}

a[href^="tel:"] {
  cursor: default;
}

@media print {
  * {
    -webkit-print-color-adjust: exact;
  }
}
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	PLUGIN

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::


/*== Splide.js ====================================================================================================*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/*== scroll-hint.js ====================================================================================================*/
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
/*
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
*/
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: 0.8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/*== scroll-hint.js ====================================================================================================*/
[data-aos][data-aos][data-aos-duration="50"],
body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"],
body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate,
body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"],
body[data-aos-duration="100"] [data-aos] {
  transition-duration: 0.1s;
}

[data-aos][data-aos][data-aos-delay="100"],
body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate,
body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: 0.1s;
}

[data-aos][data-aos][data-aos-duration="150"],
body[data-aos-duration="150"] [data-aos] {
  transition-duration: 0.15s;
}

[data-aos][data-aos][data-aos-delay="150"],
body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate,
body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: 0.15s;
}

[data-aos][data-aos][data-aos-duration="200"],
body[data-aos-duration="200"] [data-aos] {
  transition-duration: 0.2s;
}

[data-aos][data-aos][data-aos-delay="200"],
body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate,
body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: 0.2s;
}

[data-aos][data-aos][data-aos-duration="250"],
body[data-aos-duration="250"] [data-aos] {
  transition-duration: 0.25s;
}

[data-aos][data-aos][data-aos-delay="250"],
body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate,
body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: 0.25s;
}

[data-aos][data-aos][data-aos-duration="300"],
body[data-aos-duration="300"] [data-aos] {
  transition-duration: 0.3s;
}

[data-aos][data-aos][data-aos-delay="300"],
body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate,
body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: 0.3s;
}

[data-aos][data-aos][data-aos-duration="350"],
body[data-aos-duration="350"] [data-aos] {
  transition-duration: 0.35s;
}

[data-aos][data-aos][data-aos-delay="350"],
body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate,
body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: 0.35s;
}

[data-aos][data-aos][data-aos-duration="400"],
body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}

[data-aos][data-aos][data-aos-delay="400"],
body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate,
body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: 0.4s;
}

[data-aos][data-aos][data-aos-duration="450"],
body[data-aos-duration="450"] [data-aos] {
  transition-duration: 0.45s;
}

[data-aos][data-aos][data-aos-delay="450"],
body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate,
body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: 0.45s;
}

[data-aos][data-aos][data-aos-duration="500"],
body[data-aos-duration="500"] [data-aos] {
  transition-duration: 0.5s;
}

[data-aos][data-aos][data-aos-delay="500"],
body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate,
body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: 0.5s;
}

[data-aos][data-aos][data-aos-duration="550"],
body[data-aos-duration="550"] [data-aos] {
  transition-duration: 0.55s;
}

[data-aos][data-aos][data-aos-delay="550"],
body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate,
body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: 0.55s;
}

[data-aos][data-aos][data-aos-duration="600"],
body[data-aos-duration="600"] [data-aos] {
  transition-duration: 0.6s;
}

[data-aos][data-aos][data-aos-delay="600"],
body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate,
body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: 0.6s;
}

[data-aos][data-aos][data-aos-duration="650"],
body[data-aos-duration="650"] [data-aos] {
  transition-duration: 0.65s;
}

[data-aos][data-aos][data-aos-delay="650"],
body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate,
body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: 0.65s;
}

[data-aos][data-aos][data-aos-duration="700"],
body[data-aos-duration="700"] [data-aos] {
  transition-duration: 0.7s;
}

[data-aos][data-aos][data-aos-delay="700"],
body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate,
body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: 0.7s;
}

[data-aos][data-aos][data-aos-duration="750"],
body[data-aos-duration="750"] [data-aos] {
  transition-duration: 0.75s;
}

[data-aos][data-aos][data-aos-delay="750"],
body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate,
body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: 0.75s;
}

[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
  transition-duration: 0.8s;
}

[data-aos][data-aos][data-aos-delay="800"],
body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate,
body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: 0.8s;
}

[data-aos][data-aos][data-aos-duration="850"],
body[data-aos-duration="850"] [data-aos] {
  transition-duration: 0.85s;
}

[data-aos][data-aos][data-aos-delay="850"],
body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate,
body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: 0.85s;
}

[data-aos][data-aos][data-aos-duration="900"],
body[data-aos-duration="900"] [data-aos] {
  transition-duration: 0.9s;
}

[data-aos][data-aos][data-aos-delay="900"],
body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate,
body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: 0.9s;
}

[data-aos][data-aos][data-aos-duration="950"],
body[data-aos-duration="950"] [data-aos] {
  transition-duration: 0.95s;
}

[data-aos][data-aos][data-aos-delay="950"],
body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate,
body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: 0.95s;
}

[data-aos][data-aos][data-aos-duration="1000"],
body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"],
body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate,
body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"],
body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"],
body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate,
body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"],
body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"],
body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate,
body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"],
body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"],
body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate,
body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"],
body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1200"],
body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate,
body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1250"],
body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.055s;
}

[data-aos][data-aos][data-aos-delay="1250"],
body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate,
body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.055s;
}

[data-aos][data-aos][data-aos-duration="1300"],
body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"],
body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate,
body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"],
body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"],
body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate,
body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"],
body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"],
body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate,
body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"],
body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"],
body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate,
body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"],
body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"],
body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate,
body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"],
body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"],
body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate,
body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"],
body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"],
body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate,
body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"],
body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"],
body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate,
body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"],
body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"],
body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate,
body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"],
body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"],
body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate,
body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"],
body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"],
body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate,
body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"],
body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"],
body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate,
body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"],
body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"],
body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate,
body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"],
body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"],
body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate,
body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"],
body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"],
body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate,
body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"],
body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"],
body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate,
body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"],
body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"],
body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate,
body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"],
body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"],
body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate,
body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"],
body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"],
body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate,
body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"],
body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"],
body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate,
body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"],
body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"],
body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate,
body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"],
body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"],
body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate,
body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"],
body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"],
body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate,
body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"],
body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"],
body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate,
body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"],
body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"],
body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate,
body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"],
body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"],
body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate,
body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"],
body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"],
body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate,
body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"],
body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"],
body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate,
body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"],
body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"],
body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate,
body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"],
body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"],
body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate,
body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"],
body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"],
body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate,
body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"],
body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"],
body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate,
body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"],
body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"],
body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate,
body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"],
body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"],
body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate,
body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"],
body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"],
body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate,
body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear],
body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}

[data-aos][data-aos][data-aos-easing=ease],
body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in],
body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out],
body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out],
body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back],
body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back],
body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.0575);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back],
body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine],
body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine],
body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine],
body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad],
body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad],
body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad],
body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic],
body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic],
body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic],
body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart],
body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart],
body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart],
body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 20px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -20px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-20px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(20px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-20px, 20px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(20px, 20px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-20px, -20px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(20px, -20px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(0.95);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 20px, 0) scale(0.95);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -20px, 0) scale(0.95);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-20px, 0, 0) scale(0.95);
}

[data-aos=zoom-in-left] {
  transform: translate3d(20px, 0, 0) scale(0.95);
}

[data-aos=zoom-out] {
  transform: scale(1.05);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 20px, 0) scale(1.05);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -20px, 0) scale(1.05);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-20px, 0, 0) scale(1.05);
}

[data-aos=zoom-out-left] {
  transform: translate3d(20px, 0, 0) scale(1.05);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

/*== mailformpro ====================================================================================================*/
form#mailformpro,
form#mailformpro * {
  box-sizing: border-box;
}

div#mfp_hidden {
  overflow: hidden;
  width: 1px;
  height: 1px;
  padding: 0px;
  margin: 0px;
}

div#mfp_hidden input {
  margin: 10px;
}

div.mfp_thanks {
  padding: 30px;
}

div.mfp_thanks p {
  line-height: 1.7em;
}

div.mfp_thanks ul.mfp_caution {
  margin: 0px;
  padding: 0px;
}

div.mfp_thanks ul.mfp_caution li {
  display: block;
  color: #C00;
  margin: 0px;
  padding: 5px 0px;
}

div#mfp_thanks {
  text-align: center;
  font-size: 18px;
  padding: 20px 0px;
}

div#mfp_thanks strong {
  color: #C00;
  font-size: 24px;
}

/*
form#mailformpro {
	padding: 10px 0px;
}
form#mailformpro dl dt {
	float: left;
	width: 160px;
	clear: both;
	font-size: 12px;
	padding: 10px 0px;
	text-align: right;
	border-top: solid 1px #CCC;
	margin: 0px;
}
form#mailformpro dl dd {
	border-top: solid 1px #CCC;
	margin: 0px;
	padding: 10px 5px 20px 170px;
	font-size: 12px;
	line-height: 1.5em;
	text-align: left;
}
form#mailformpro dl dd ul,form#mailformpro dl dd ol {
	margin: 0px;
	padding: 0px;
}
form#mailformpro dl dd ul li,form#mailformpro dl dd ol li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}
*/
.must {
  display: block;
  background-color: #C00;
  border: solid 2px #C00;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #CCC;
}

.optionally {
  display: block;
  background-color: #06C;
  border: solid 2px #06C;
  text-shadow: 0px 1px 2px #933;
  padding: 2px 5px;
  font-size: 10px;
  color: #FFF;
  float: left;
  margin: 0px 5px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #CCC;
}

form#mailformpro label {
  /*
  border-radius: 3px;
  margin: 3px;
  display: inline-block;
  white-space: nowrap;
  */
}

form#mailformpro label.mfp_checked {
  /*
  padding: 3px;
  border: solid 1px #CCC;
  background-color: #E8EEF9;
  box-shadow: 0px 1px 3px #CCC inset;
  */
}

form#mailformpro label.mfp_not_checked {
  /*
  padding: 3px;
  border: solid 1px #EEE;
  */
}

/*
table#mfp_confirm_table {
	border-spacing: 0px;
	border-collapse: collapse;
	width: 100%;
}
table#mfp_confirm_table tr.mfp_colored {
	background-color: #F6F7F9;
}
table#mfp_confirm_table tr.mfp_achroma {
	background-color: #FFF;
}
table#mfp_confirm_table tr th,table#mfp_confirm_table tr td {
	text-align: left;
	font-size: 12px;
	border-top: solid 1px #CCC;
	padding: 5px 10px;
}
table#mfp_confirm_table tr th {
	white-space: nowrap;
	width: 200px;
}
table#mfp_confirm_table tr td {
	line-height: 1.5em;
	word-break: break-all;
}
*/
div#mfp_phase_confirm {
  clear: both;
}

/*
div#mfp_phase_confirm h4 {
	font-size: 36px;
	padding: 10px 0px 0px 0px;
	text-align: center;
}
*/
div#mfp_overlay {
  position: absolute;
  display: none;
  z-index: 10001;
}

div#mfp_overlay_inner {
  background-color: #FFF;
  padding: 15px;
  margin: 0px auto;
  border-radius: 5px;
  box-shadow: 0px 0px 10px #000;
  width: 640px;
  max-width: 90%;
}

div#mfp_overlay_background {
  background-color: #000;
  position: absolute;
  display: none;
  z-index: 10000;
}

div#mfp_loading_screen {
  z-index: 20000;
  opacity: 0.8;
  display: none;
  background-color: #000;
  position: absolute;
}

/*
div#mfp_loading {
	z-index: 20001;
	position: absolute;
	display: none;
	width: 40px;
	height: 40px;
	//background-image: url(_images/mfp_loading.gif);
}
*/
.mfp_colored {
  background-color: #F6F7F9;
}

.mfp_achroma {
  background-color: #FFF;
}

/*
div.mfp_err {
	clear: both;
	display: none;
	text-align: left;
	margin: 5px 0px 0px 0px;
	padding: 3px 0px 5px 17px;
	color: #F00;
	font-size: 12px;
	line-height: normal;
	background-position: 0px 1px;
}
	*/
/*
.mfp_parent_error {
	border: solid 2px #F00;
}
	*/
.problem {
  background-color: #FCC;
}

div#mfp_error {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

div#mfp_error p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_error p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_warning {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
  border-radius: 5px;
}

div#mfp_warning p {
  padding: 0px;
  margin: 0px;
  font-size: 14px;
  text-align: center;
}

div#mfp_warning p strong {
  font-size: 18px;
  color: #F00;
}

div#mfp_price {
  color: #C00;
  font-size: 36px;
  padding: 10px;
  font-weight: bolder;
}

div#mfp_price span {
  color: #666;
  font-size: 12px;
  font-weight: normal;
}

button.mfp_next, button.mfp_prev {
  font-size: 18px;
  margin: 10px;
  padding: 5px 10px;
}

button.mfp_next {
  float: right;
}

button.mfp_prev {
  float: left;
}

ul#mfp_phase_stat {
  padding: 10px;
  text-align: center;
}

ul#mfp_phase_stat li {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 5px;
  margin: 0px 5px;
  list-style: none;
  font-size: 14px;
}

ul#mfp_phase_stat li.mfp_phase_arrow {
  box-shadow: none;
  color: #999;
  padding: 8px 0px;
}

ul#mfp_phase_stat li.mfp_active_phase {
  box-shadow: 0px 1px 6px #000;
  background-size: 100% 100%;
  background-color: #0068B7;
  border: solid 2px #0068B7;
  font-weight: bolder;
  color: #FFF;
  text-shadow: 0px 1px 3px #000;
}

ul#mfp_phase_stat li.mfp_inactive_phase {
  background-size: 100% 100%;
  background-color: #EEE;
  border: solid 2px #EEE;
  color: #999;
  box-shadow: 0px 1px 6px #CCC;
}

div#mfp_shopping_cart {
  border: solid 1px #CCC;
  margin: 0px;
  padding: 0px;
}

div#mfp_shopping_cart p {
  margin: 0px;
  text-align: center;
  padding: 20px 10px;
  font-size: 12px;
  background-color: #FEE;
}

table.mfp_shoppingcart {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
}

table.mfp_shoppingcart thead tr td {
  background-color: #EEE;
  border-bottom: solid 1px #CCC;
  text-align: center;
  font-size: 12px;
  padding: 5px;
}

table.mfp_shoppingcart tbody tr th, table.mfp_shoppingcart tbody tr td {
  font-size: 12px;
  padding: 5px;
  border-bottom: solid 1px #CCC;
}

table.mfp_shoppingcart tbody tr td select {
  display: block;
  margin: 0px auto;
  text-align: center;
}

table.mfp_shoppingcart tbody tr td select option {
  text-align: center;
}

table.mfp_shoppingcart tbody tr th span {
  display: block;
  font-weight: normal;
  font-size: 10px;
  color: #666;
  padding: 3px 0px;
}

table.mfp_shoppingcart tfoot tr td {
  padding: 5px;
  font-size: 16px;
  font-weight: bolder;
  color: #900;
}

td.msc_price {
  font-size: 12px;
  text-align: right;
}

div.mfp_buttons {
  clear: both;
  padding: 10px 0px;
  text-align: center;
}

.imagebutton {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
  background: none;
}

.mfp_element_all {
  max-width: 100%;
}

.mfp_element_text,
.mfp_element_number,
.mfp_element_select-one,
.mfp_element_email,
.mfp_element_tel,
.mfp_element_textarea,
.mfp_element_date,
.mfp_element_password {
  /*
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  padding: 3px 8px;
  margin: 2px;
  vertical-align: middle;
  */
}

.mfp_element_checkbox,
.mfp_element_radio {
  /*
  vertical-align: middle;
  margin: 0px 2px;
  */
}

.mfp_element_file {
  /*
  font-size: 12px;
  display: inline-block;
  padding: 10px 10px;
  vertical-align: middle;
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  background: #EEE;
  */
}

.mfp_element_submit, .mfp_element_reset, .mfp_element_button, button.mfp_next, button.mfp_prev {
  /*
  border-radius: 5px;
  padding: 5px 10px;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  */
}

.mfp_element_reset {
  /*
  color: #333;
  */
}

.mfp_element_submit:hover, .mfp_element_reset:hover, .mfp_element_button:hover, button.mfp_next:hover, button.mfp_prev:hover {
  /*
  background: gradient(linear, center top, center bottom, from(#FFF), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#FFF), to(#CCC));
  background: -moz-linear-gradient(top, #FFF, #CCC);
  background: -ms-linear-gradient(top, #FFF 0%, #CCC 100%);
  box-shadow: 0px 2px 15px #CCC;
  */
}

button.mfp_next, button.mfp_prev {
  font-size: 14px;
}

input#mfp_reserve_item, input#mfp_reserve_date {
  display: none;
}

div#mfp_reserve_wrapper {
  position: relative;
  overflow: hidden;
  border: solid 1px #CCC;
}

div#mfp_reserve_inner {
  position: relative;
  padding: 0px 0px 0px 100px;
  overflow: auto;
}

div#mfp_reserve_wrapper table {
  border-spacing: 0px;
  border-collapse: collapse;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_label {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100px;
  background-color: #FEE;
  z-index: 100;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value {
  padding: 0px 0px 0px 0px;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning {
  cursor: pointer;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_active:hover,
div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_warning:hover {
  background-color: #E8EEF9;
}

div#mfp_reserve_wrapper table.mfp_reserve_table_value tr td.mfp_reserve_current {
  background-color: #0068B7;
  color: #FFF;
}

td.mfp_reserve_disabled {
  background-color: #CCC;
}

td.mfp_reserve_warning {
  background-color: #FFC;
}

div#mfp_reserve_wrapper table tr td, div#mfp_reserve_wrapper table tr th {
  border: solid 1px #CCC;
  padding: 0px 5px;
  font-size: 12px;
  text-align: center;
  font-family: Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
  font-weight: normal;
  height: 20px;
  text-align: left;
}

td.mfp_reserve_week_0 {
  color: #F00;
  background-color: #FEE;
}

td.mfp_reserve_week_6 {
  color: #00F;
  background-color: #EEF;
}

div.mfp_ok {
  border-radius: 5px;
  background-color: #090;
  border: solid 1px #090;
  display: inline-block;
  line-height: 1.5em;
  padding: 0px 5px;
  margin: 0px 2px;
  color: #FFF;
  font-size: 10px;
  background-size: 100% 100%;
  display: none;
}

div.prefcodeWrapper {
  position: relative;
}

div.prefcodeResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #CCC;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  display: none;
}

div.prefcodeResult div {
  cursor: pointer;
}

div.prefcodeResult div:hover {
  background-color: #C9EBFB;
}

div.prefcodeResult div.prefcodeNext {
  background-color: #EEE;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(_images/mfp_zip_loading.gif) no-repeat center center;
}

div.mfpSuggestWrapper {
  position: relative;
}

div.mfpSuggestResult {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 5px;
  border: solid 1px #CCC;
  background-color: #FFF;
  box-shadow: 0px 0px 5px #CCC;
  display: none;
}

div.mfpSuggestResult div {
  cursor: pointer;
}

div.mfpSuggestResult div:hover {
  background-color: #C9EBFB;
}

div.mfpSuggestResult div.mfpSuggestNext {
  background-color: #EEE;
  text-align: center;
}

div.prefLoading {
  padding: 60px 100px;
  background: url(_images/mfp_zip_loading.gif) no-repeat center center;
}

.hidefield {
  height: 0px;
  overflow: hidden;
}

.showfield {
  height: auto;
  overflow: visible;
}

div.mfp_attached_thumbnails {
  display: none;
  padding: 5px;
  margin: 5px auto;
  border: solid 1px #CCC;
  border-radius: 3px;
  box-shadow: 0px 0px 5px #CCC inset;
  background: #EEE;
}

div.mfp_attached_thumbnails ul {
  margin: 0px;
  padding: 0px;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li {
  display: inline-block;
  vertical-align: top;
  padding: 0px;
  border: solid 4px #FFF;
  margin: 5px;
  box-shadow: 0px 2px 5px #999;
}

form#mailformpro dl dd div.mfp_attached_thumbnails ul li a {
  display: block;
  max-height: 100px;
  overflow: hidden;
}

div.mfp_attached_thumbnails ul li a img {
  display: block;
  max-width: 80px;
}

button.mfp_attached_reset {
  font-size: 14px;
}

div.mfp_draganddrop {
  margin: 5px auto;
  width: 100%;
  height: 200px;
  border: solid 2px #CCC;
  border-radius: 3px;
  background: url(_images/draganddrop.png) no-repeat center center #EEE;
  background-size: auto 80%;
}

div.mfp_dragover {
  border: solid 2px #0068B7;
  background-color: #FFF;
}

div.mfp_attached_filelist {
  margin: 5px auto;
  padding: 5px;
  width: 100%;
  border: solid 1px #CCC;
  border-radius: 3px;
}

form#mailformpro dl dd div.mfp_attached_filelist ul,
div.mfp_attached_filelist ul {
  padding: 5px;
}

form#mailformpro dl dd div.mfp_attached_filelist ul li,
div.mfp_attached_filelist ul li {
  padding: 5px 5px 5px 2em;
  background: url(_images/file.png) no-repeat 5px center;
  background-size: 1.3em 1.3em;
  display: inline-block;
  margin-right: 1em;
}

form#mailformpro dl dd div.mfp_attached_filelist ul li:last-child,
div.mfp_attached_filelist ul li:last-child {
  border: none;
}

div.mfp_guide {
  position: relative;
  width: 1px;
  height: 1px;
}

div.mfp_guide div {
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin-top: -2em;
  white-space: nowrap;
  border-radius: 5px;
  padding: 5px 10px;
  line-height: 1em;
  font-size: 12px;
  color: #FFF;
  font-weight: bolder;
  background: #F00;
  display: none;
}

div#mfp_numticket_wrapper,
div#mfp_numticket_wrapper * {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

div#mfp_numticket_wrapper {
  clear: both;
  padding: 15px;
}

div#mfp_numticket_wrapper section#numticket_message_wrapper {
  border: solid 3px #F00;
  border-radius: 5px;
  background: #FEE;
  padding: 15px;
  font-size: 16px;
  line-height: 1.7em;
  margin: 5px auto;
}

div#mfp_numticket_wrapper section#numticket_waitTime {
  border: solid 3px #CCC;
  border-radius: 5px;
  background: #FFF;
  padding: 15px;
  font-size: 16px;
  margin: 10px auto;
}

div#mfp_numticket_wrapper section#numticket_waitTime strong {
  font-size: 32px;
  display: block;
  text-align: center;
}

div#mfp_numticket_wrapper section#numticket_waitTime p.numticket_center {
  text-align: center;
}

div.mfp_traffic_status {
  max-width: 460px;
  margin: 10px auto;
  border: solid 1px #CCC;
  border-radius: 3px;
  padding: 15px;
}

div.mfp_traffic_status h3 {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: normal;
  color: #999;
}

div.mfp_traffic_status table {
  text-align: center;
  width: 100%;
}

div#wrapper div.mfp_traffic_status table tr th,
div#wrapper div.mfp_traffic_status table tr td,
div.mfp_traffic_status table td,
div.mfp_traffic_status table th {
  border: none;
  padding: 0;
}

div#wrapper div.mfp_traffic_status table tr td,
div.mfp_traffic_status table td {
  padding: 0 2px;
}

div#wrapper div.mfp_traffic_status table tr th,
div.mfp_traffic_status table th {
  border-top: solid 1px #CCC;
  font-size: 10px;
  font-weight: normal;
  padding-top: 5px;
  color: #999;
}

div.mfp_traffic_status table td {
  height: 100px;
}

div.mfp_traffic_status table td span {
  display: block;
  background: #7BAAF7;
  border-radius: 3px 3px 0 0;
  border-top: solid 1px #66A1F7;
  border-right: solid 1px #66A1F7;
  border-left: solid 1px #66A1F7;
  min-width: 10px;
  max-width: 30px;
  margin: 0 auto;
  padding-bottom: 10px;
}

div.mfp_traffic_status table td span.mfp_traffic_status_current {
  background: #5D7AF2;
  border-top: solid 1px #546CD1;
  border-right: solid 1px #546CD1;
  border-left: solid 1px #546CD1;
}

.mfp_ok {
  background-color: rgba(0, 255, 0, 0.2);
}

.mfp_ng {
  background-color: rgba(255, 0, 0, 0.2);
}

div#mfp_OperationCheck div#mfp_OperationCheck_inner {
  display: none;
}

div#mfp_OperationCheck strong {
  background: #090;
  display: block;
  color: #222;
  text-align: center;
  border-radius: 3px;
}

div#mfp_OperationCheck * {
  padding: 0px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p {
  padding: 0px 5px;
  margin: 0px;
  font-size: 12px;
}

div#mfp_OperationCheck p a {
  color: #0C0;
  text-decoration: none;
}

div#mfp_OperationCheck p a:hover,
div#mfp_OperationCheck p button:hover {
  text-decoration: underline;
}

div#mfp_OperationCheck p button {
  border: none;
  background: none;
  color: #0C0;
  cursor: pointer;
}

div#mfp_OperationCheck ul li,
div#mfp_OperationCheck ul li label,
div#mfp_OperationCheck ul li label input {
  line-height: 12px;
  font-size: 12px;
  list-style: none;
  vertical-align: middle;
}

div#mfp_OperationCheck ul li {
  padding: 5px 10px;
}

div#mfp_OperationCheck ul li label {
  text-decoration: underline;
}

button#mfp_recorder_record,
button#mfp_recorder_clear,
button#mfp_recorder_restore {
  border-radius: 5px;
  padding: 5px 10px 5px 2em;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -webkit-gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
  font-size: 16px;
  cursor: pointer;
  outline: none;
  display: inline-block;
  margin: 5px auto;
}

button#mfp_recorder_record {
  background: url(_images/mfp_record_disabled.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button#mfp_recorder_clear {
  background: url(_images/mfp_record_remove.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button#mfp_recorder_restore {
  background: url(_images/mfp_record_restore.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

button.enabled#mfp_recorder_record,
button.enabled#mfp_recorder_clear,
button.enabled#mfp_recorder_restore {
  background: url(_images/mfp_record_enabled.png) no-repeat 5px center #EEE;
  background-size: 24px 24px;
}

div#mfp_recorder_wrap {
  border: solid 1px #CCC;
  padding: 10px;
  text-align: center;
  margin: 5px auto;
}

td.request_image {
  width: 100px;
}

td.request_image img {
  max-width: 100px;
}

button.mfp_submit_enable {
  background: none;
  background: #000090;
}

button.mfp_submit_disable {
  background: none;
  background: #FD8282;
}

span.mfp_tips {
  background-size: 100% 100%;
  background-color: #FCC;
  display: block;
  border-radius: 5px;
  padding: 10px;
  margin: 2px;
  box-shadow: 0px 2px 10px #999;
}

span.mfp_tips strong {
  color: #800040;
}

span.mfp_tips span {
  display: block;
  padding: 10px;
  color: #008080;
}

span.mfp_tips em {
  font-style: normal;
  color: #090;
  font-weight: bold;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner {
  background: #FFF;
  border-radius: 5px;
  padding: 5px;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%;
  background: #FFF;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table,
div#mfp_calendar_wrapper div#mfp_calendar_inner table * {
  border: none;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table th,
div#mfp_calendar_wrapper div#mfp_calendar_inner table td {
  width: 14.28%;
  text-align: center;
  padding: 5px;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table td div {
  border-radius: 5px;
  padding: 10px 0;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table thead tr th.mfp_calendar_ui_title {
  padding: 2em 0;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table thead tr th.mfp_calendar_ui_prev,
div#mfp_calendar_wrapper div#mfp_calendar_inner table thead tr th.mfp_calendar_ui_next {
  cursor: pointer;
  user-select: none;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table thead tr th.mfp_calendar_ui_prev div,
div#mfp_calendar_wrapper div#mfp_calendar_inner table thead tr th.mfp_calendar_ui_next div {
  padding: 10px 0;
  border-radius: 5px;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table thead tr th.mfp_calendar_ui_prev:hover div,
div#mfp_calendar_wrapper div#mfp_calendar_inner table thead tr th.mfp_calendar_ui_next:hover div {
  background: #EEE;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table th.sun,
div#mfp_calendar_wrapper div#mfp_calendar_inner table td.sun {
  color: #F00;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table th.sat,
div#mfp_calendar_wrapper div#mfp_calendar_inner table td.sat {
  color: #00F;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table td span.mfp_calendar_stat_0,
div#mfp_calendar_wrapper div#mfp_calendar_inner table td span.mfp_calendar_stat_1,
div#mfp_calendar_wrapper div#mfp_calendar_inner table td span.mfp_calendar_stat_2,
div#mfp_calendar_wrapper div#mfp_calendar_inner table td span.mfp_calendar_stat_3 {
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  margin: 0 auto;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table tbody tr td {
  border-top: solid 1px #CCC;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table tbody tr td span.mfp_calendar_price {
  color: #666;
  font-size: 10px;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table tbody tr td span.day {
  font-size: 12px;
  display: block;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table tbody tr td.mfp_calendar_event {
  cursor: pointer;
  user-select: none;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table tbody tr td.mfp_calendar_event:hover div {
  background: #FEE;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner table tbody tr td.mfp_calendar_current div,
div#mfp_calendar_wrapper div#mfp_calendar_inner table tbody tr td.mfp_calendar_current:hover div {
  background: #99d9f6;
}

div#mfp_calendar_wrapper div#mfp_calendar_inner p#mfp_calendar_faild {
  border: solid 2px #F00;
  border-radius: 5px;
  background: #FEE;
  text-align: center;
  padding: 1em;
}

div.mfp_estimate_wrapper {
  border: solid 1px #CCC;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap {
  position: relative;
  padding: 10px;
  border: solid 1px #CCC;
  border-radius: 5px;
  margin: 10px 0;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap div.mfp_estimate_label {
  position: absolute;
  top: -0.7em;
  left: 1em;
  display: inline-block;
  background: #FFF;
  font-size: 12px;
  padding: 0 0.5em;
  color: #666;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap select {
  font-size: 18px;
  margin: 5px 0;
  padding: 5px 10px;
  line-height: 1em;
  min-height: 2.5em;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap img {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap strong {
  display: block;
  text-align: right;
  color: #900;
  font-size: 24px;
}

div.mfp_estimate_wrapper div.mfp_estimate_wrap strong em {
  display: inline-block;
  font-size: 30px;
}

div.mfp_estimate_wrapper button.mfp_estimate_button {
  margin: 10px 0 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
}

div.mfp_estimate_list table.mfp_estimate_list_table {
  width: 100%;
  margin: 10px 0;
}

div.mfp_estimate_list table.mfp_estimate_list_table thead tr th {
  text-align: center;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tr th,
div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tr td,
div.mfp_estimate_list table.mfp_estimate_list_table tr th,
div.mfp_estimate_list table.mfp_estimate_list_table tr td {
  border: none;
  border-bottom: solid 1px #333;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tfoot tr th,
div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tfoot tr td,
div.mfp_estimate_list table.mfp_estimate_list_table tfoot tr th,
div.mfp_estimate_list table.mfp_estimate_list_table tfoot tr td {
  border: none;
  text-align: right;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th,
div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td,
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th,
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td {
  padding: 0;
  margin: 0;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th,
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th {
  padding: 0 10px;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th span,
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr th span {
  font-size: 10px;
  display: block;
  color: #666;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(1),
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(1) {
  width: 80px;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(2),
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(2) {
  text-align: right;
  padding: 0 10px;
  width: 120px;
}

div#wrapper div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(3),
div.mfp_estimate_list table.mfp_estimate_list_table tbody tr td:nth-of-type(3) {
  width: 60px;
}

div.mfp_estimate_list table.mfp_estimate_list_table tbody td img {
  max-width: 80px;
}

div.mfp_estimate_list table.mfp_estimate_list_table tbody td button {
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

div.mfp_stocks_wrapper {
  border: solid 1px #CCC;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
}

div.mfp_stocks_wrapper div.mfp_stocks_wrap {
  position: relative;
  padding: 10px;
  border: solid 1px #CCC;
  border-radius: 5px;
  margin: 10px 0;
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}

div.mfp_stocks_wrapper div.mfp_stocks_wrap div.mfp_stocks_label {
  position: absolute;
  top: -0.7em;
  left: 1em;
  display: inline-block;
  background: #FFF;
  font-size: 12px;
  padding: 0 0.5em;
  color: #666;
}

div.mfp_stocks_wrapper div.mfp_stocks_wrap select {
  font-size: 18px;
  margin: 5px 0;
  padding: 5px 10px;
  line-height: 1em;
  min-height: 2.5em;
}

div.mfp_stocks_wrapper div.mfp_stocks_wrap img {
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
}

div.mfp_stocks_wrapper div.mfp_stocks_wrap strong {
  display: block;
  text-align: right;
  color: #900;
  font-size: 24px;
}

div.mfp_stocks_wrapper div.mfp_stocks_wrap strong em {
  display: inline-block;
  font-size: 30px;
}

div.mfp_stocks_wrapper button.mfp_stocks_button {
  margin: 10px 0 0 0;
  padding: 5px 10px;
  border-radius: 5px;
  border: solid 1px #CCC;
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: gradient(linear, center top, center bottom, from(#EEE), to(#CCC));
  background: -moz-linear-gradient(top, #EEE, #CCC);
  background: -ms-linear-gradient(top, #EEE 0%, #CCC 100%);
  text-shadow: 0px 2px 0px #FFF;
}

div.mfp_stocks_list table.mfp_stocks_list_table {
  width: 100%;
  margin: 10px 0;
}

div.mfp_stocks_list table.mfp_stocks_list_table thead tr th {
  text-align: center;
}

div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tr th,
div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tr td,
div.mfp_stocks_list table.mfp_stocks_list_table tr th,
div.mfp_stocks_list table.mfp_stocks_list_table tr td {
  border: none;
  border-bottom: solid 1px #333;
}

div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tfoot tr th,
div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tfoot tr td,
div.mfp_stocks_list table.mfp_stocks_list_table tfoot tr th,
div.mfp_stocks_list table.mfp_stocks_list_table tfoot tr td {
  border: none;
  text-align: right;
}

div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tbody tr th,
div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tbody tr td,
div.mfp_stocks_list table.mfp_stocks_list_table tbody tr th,
div.mfp_stocks_list table.mfp_stocks_list_table tbody tr td {
  padding: 0;
  margin: 0;
}

div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tbody tr th,
div.mfp_stocks_list table.mfp_stocks_list_table tbody tr th {
  padding: 0 10px;
}

div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tbody tr th span,
div.mfp_stocks_list table.mfp_stocks_list_table tbody tr th span {
  font-size: 10px;
  display: block;
  color: #666;
}

div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tbody tr td:nth-of-type(1),
div.mfp_stocks_list table.mfp_stocks_list_table tbody tr td:nth-of-type(1) {
  width: 80px;
}

div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tbody tr td:nth-of-type(2),
div.mfp_stocks_list table.mfp_stocks_list_table tbody tr td:nth-of-type(2) {
  text-align: right;
  padding: 0 10px;
  width: 120px;
}

div#wrapper div.mfp_stocks_list table.mfp_stocks_list_table tbody tr td:nth-of-type(3),
div.mfp_stocks_list table.mfp_stocks_list_table tbody tr td:nth-of-type(3) {
  width: 60px;
}

div.mfp_stocks_list table.mfp_stocks_list_table tbody td img {
  max-width: 80px;
}

div.mfp_stocks_list table.mfp_stocks_list_table tbody td button {
  border: none;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

div.mfp_ticket_wrapper {
  border: solid 1px #CCC;
  margin: 5px;
  overflow: auto;
}

div.mfp_ticket_map {
  position: relative;
  background-position: left top;
  background-repeat: no-repeat;
}

div.mfp_ticket_map div {
  position: absolute;
  width: 20px;
  height: 20px;
  padding: 0;
  margin: 0;
}

div.mfp_ticket_map div label {
  position: relative;
}

div.mfp_ticket_map div label span {
  position: absolute;
  top: 0px;
  left: 20px;
  display: inline-block;
  font-size: 10px;
  white-space: nowrap;
  display: none;
  background-color: #FFF;
  border: solid 1px #CCC;
  padding: 3px 3px;
  line-height: 1em;
}

div.mfp_ticket_map div label:hover span {
  display: block;
  z-index: 10;
}

div.mfp_ticket_map div label input {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background-color: #CCC;
}

@media screen and (max-width: 800px) {
  /*
  form#mailformpro dl dt {
  	float: none;
  	width: auto;
  	font-size: 12px;
  	padding: 5px;
  	text-align: left;
  }
  form#mailformpro dl dd {
  	clear: both;
  	border-top: none;
  	padding: 5px 15px;
  	font-size: 12px;
  	line-height: 1.5em;
  }
  div.mfp_buttons button {
  	font-size: 14px;
  }
  div#mfp_phase_confirm h4 {
  	font-size: 18px;
  }
  */
  ul#mfp_phase_stat {
    padding: 0px;
    text-align: left;
  }
  ul#mfp_phase_stat li {
    text-align: center;
    padding: 5px 0px;
    border-radius: 3px;
    margin: 5px;
    list-style: none;
    font-size: 14px;
    width: 28%;
  }
  ul#mfp_phase_stat li.mfp_phase_arrow {
    bos-shadow: none;
    display: none;
  }
  /*
  table#mfp_confirm_table tr th {
  	white-space: nowrap;
  	width: 100px;
  }
  */
  div#mfp_thanks {
    text-align: center;
    font-size: 18px;
    padding: 20px 0px;
  }
  div#mfp_thanks strong {
    color: #C00;
    font-size: 24px;
    display: block;
  }
  table#mfp_confirm_table tr th, table#mfp_confirm_table tr td {
    display: block;
    width: 100%;
  }
}
/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	COMMON

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
/*== root ====================================================================================================*/
:root {
  --vw: 1vw;
  --vp: 19.20;
  --c_black: #333;
  --c_white: #fff;
  --c_gray1: #EEEEEE;
  --c_gray2: #BEBEBE;
  --c_gray3: #727272;
  --c_gray4: #888888;
  --c_gray5: #222222;
  --c_gray6: #8F8F8F;
  --c_gray7: #2E384D;
  --c_gray8: #707070;
  --c_blue1: #1E82D2;
  --c_blue3: #013968;
  --font_en: "Funnel Display";
  --color_white: #FFFFFF;
  --color_black: #000000;
  --color_gray1: #3C3838;
  --color_gray2: #838383;
  --color_gray3: #F5F5F5;
  --color_gray4: #888888;
  --color_gray5: #EEEEEF;
  --color_gray6: #4C4948;
  --color_blue1: #1E82D2;
  --color_blue2: #F1F5FB;
  --color_blue3: #013968;
  --color_blue4: #C4E4F8;
  --color_blue5: #65A9DC;
  --color_red1: #EF0A0A;
  --color_green1: #3BB382;
  --color_orange1: #F5AB18;
  --color_yellow1: #FCD00B;
  --pd: 40px;
  --sd: 0px 10px 40px rgba(26, 140, 210, 0.2) ;
}
@media screen and (max-width: 767px) {
  :root {
    --vp: 3.90;
    --vw: 1vw !important;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --pd: 25px;
  }
}

/*== common ====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■setting
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
html {
  font-family: "Funnel Display", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: calc(1em / 1000);
  font-size: 100%;
}

body {
  position: relative;
  background: var(--c_white);
  color: var(--c_black);
  font-size: 1rem;
  line-height: 2;
  margin: 0 auto;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
  word-break: normal;
  word-wrap: break-word;
  line-break: strict;
  overflow-wrap: break-word;
  -webkit-touch-callout: none;
}
@media screen and (max-width: 767px) {
  body {
    line-height: 1.875;
  }
}
body a[href=""],
body a.disabled {
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: none;
}
body *:not(.ac_box):not([data-aos]), body *:not(.ac_box)::before, body *:not(.ac_box)::after {
  transition: all 0.25s ease-out;
}
body *:not(.ac_box):not([data-aos]):hover, body *:not(.ac_box)::before:hover, body *:not(.ac_box)::after:hover {
  transition: all 0.25s ease-out;
}
body *[hidden] {
  display: none !important;
}
body.fixed {
  position: fixed;
  width: 100%;
}
@media only screen and (min-width: 1023px) {
  body.fixed {
    position: static;
  }
}

body:not(.view_sp) a[href^="tel:"] {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
}

#container {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
}

.outerWrap {
  position: relative;
  width: 100%;
  max-width: 1524px;
  margin: 0 auto;
  padding: 0;
  padding: 0 20px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .outerWrap {
    max-width: none;
  }
}
@media print, screen and (max-width: 1024px) {
  .outerWrap {
    padding: 0;
  }
}

.innerWrap {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  padding: 0 40px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .innerWrap {
    max-width: none;
  }
}
@media print, screen and (max-width: 768px) {
  .innerWrap {
    padding: 0 15px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ header
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#header {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: -50%;
  z-index: 10;
}
#header .logo {
  width: 87px;
}
#header .logo a {
  display: block;
  width: 100%;
}
@media print, screen and (max-width: 1150px) {
  #header .logo {
    width: 77px;
  }
}
@media print, screen and (max-width: 1023px) {
  #header .logo {
    width: 67px;
  }
}
#header .header_inner_wp {
  margin: auto;
  max-width: 1379px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header #header_nav {
  width: 942px;
  width: 1010px;
  height: 69px;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  padding: 0 32px 0 56px;
  position: fixed;
  top: 20px;
  right: 50%;
  margin-right: -680px;
  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ■ menu
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
@media print, screen and (max-width: 1399px) {
  #header #header_nav {
    right: 20px;
    margin-right: 0;
  }
}
@media print, screen and (max-width: 1150px) {
  #header #header_nav {
    width: 940px;
    padding: 0 18px 0 36px;
  }
}
@media print, screen and (max-width: 1080px) {
  #header #header_nav {
    width: 880px;
    padding: 0 15px 0 20px;
  }
}
@media print, screen and (max-width: 1023px) {
  #header #header_nav {
    display: none;
  }
}
#header #header_nav .list_menu {
  width: 100%;
  height: 100%;
}
@media print, screen and (max-width: 1023px) {
  #header #header_nav .list_menu {
    padding-top: 44px;
  }
}
#header #header_nav .list_menu .list_menu__inner {
  height: 100%;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap {
  display: flex;
  align-items: center;
  height: 100%;
}
@media print, screen and (max-width: 768px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap {
    flex-direction: column;
    padding: 0 20px 0 40px;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item {
  margin-left: 28px;
  height: 100%;
}
@media print, screen and (max-width: 1150px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item {
    margin-left: 20px;
  }
}
@media print, screen and (max-width: 1023px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item {
    margin-left: 0;
    height: auto;
    border-bottom: 1px solid #B4B4B5;
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item .parent {
  height: 100%;
}
@media print, screen and (max-width: 1023px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item .parent {
    height: auto;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item .parent a {
  font-size: 0.9375rem;
  font-weight: 600;
  height: 100%;
  display: flex;
  align-items: center;
  transition: all 0.25s ease-out;
}
@media print, screen and (max-width: 1023px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item .parent a {
    height: auto;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item .parent a:hover {
  color: var(--c_blue1);
  transition: all 0.25s ease-out;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item:nth-of-type(2) {
  margin-left: 0;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box {
  margin-left: 42px;
  width: 178px;
}
@media print, screen and (max-width: 1150px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box {
    margin-left: 30px;
  }
}
@media print, screen and (max-width: 1080px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box {
    margin-left: 20px;
  }
}
@media print, screen and (max-width: 1023px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box {
    display: none;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box .parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box .parent figure {
  width: 20px;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box .parent p {
  width: 148px;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box .parent p .txt {
  font-size: 0.8125rem;
  font-weight: 500;
  display: block;
  margin-bottom: -14px;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box .parent p .tel {
  font-size: 1.4375rem;
  font-weight: 800;
  display: block;
}
@media print, screen and (max-width: 1023px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.tel_box .parent p .tel {
    font-size: 1.375rem;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.contact_btn {
  margin-left: 22px;
  width: 175px;
  border-radius: 50px;
  height: auto;
  background: linear-gradient(79.48deg, #FF8801 0%, #FFBB08 50%, #FF8801 100%);
  background-position: 100% 100%;
  background-size: 200% 100%;
}
@media print, screen and (max-width: 1080px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.contact_btn {
    width: 145px;
    margin-left: 20px;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  padding: 5px 10px 5px 10px;
}
@media print, screen and (max-width: 1080px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a {
    padding: 5px 8px 5px 8px;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a figure {
  width: 25px;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a span {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
}
@media print, screen and (max-width: 1080px) {
  #header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a span {
    font-size: 1rem;
  }
}
#header #header_nav .list_menu .list_menu__inner .list_wrap .list_item.contact_btn:hover {
  background-position: 0% 100%;
}
#header #header_nav .list_menu .list_menu__inner .list_wrap [data-hide~=header] {
  display: none;
}
#header img {
  display: block;
  width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
■ ドロワーボタン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#menuBtn {
  display: none;
}
@media print, screen and (max-width: 1023px) {
  #menuBtn {
    display: block;
    cursor: pointer;
    position: fixed;
    top: 14px;
    right: 16px;
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    z-index: 500;
    box-shadow: 3px 4px 5px rgba(0, 0, 0, 0.2);
  }
}
#menuBtn button#spMenuBtn {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
}
#menuBtn button#spMenuBtn .spMenuBtn_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-top: 18px;
}
#menuBtn button#spMenuBtn .spMenuBtn_bar span {
  position: relative;
  width: 29px;
  height: 3px;
  background: #013968;
  display: block;
}
#menuBtn button#spMenuBtn .spMenuBtn_bar span::before, #menuBtn button#spMenuBtn .spMenuBtn_bar span::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #013968;
  position: absolute;
  left: 0;
}
#menuBtn button#spMenuBtn .spMenuBtn_bar span::before {
  top: -7px;
}
#menuBtn button#spMenuBtn .spMenuBtn_bar span::after {
  top: -14px;
}
#menuBtn button#spMenuBtn .spMenuBtn_bar p {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #013968;
}

.spMenu_open #menuBtn {
  background-color: #1E82D2;
}
.spMenu_open #menuBtn button#spMenuBtn .spMenuBtn_bar {
  padding-top: 0;
}
.spMenu_open #menuBtn button#spMenuBtn .spMenuBtn_bar span {
  position: relative;
  width: 29px;
  height: 3px;
  display: block;
  background: transparent;
}
.spMenu_open #menuBtn button#spMenuBtn .spMenuBtn_bar span::before, .spMenu_open #menuBtn button#spMenuBtn .spMenuBtn_bar span::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
}
.spMenu_open #menuBtn button#spMenuBtn .spMenuBtn_bar span::before {
  top: 0;
  transform: rotate(45deg);
}
.spMenu_open #menuBtn button#spMenuBtn .spMenuBtn_bar span::after {
  top: 0;
  transform: rotate(-45deg);
}
.spMenu_open #menuBtn button#spMenuBtn .spMenuBtn_bar p {
  display: none;
}

#spMenu {
  display: none;
}
@media print, screen and (max-width: 1023px) {
  #spMenu {
    width: 100%;
    height: 100dvh;
    position: fixed;
    overflow: scroll;
    top: 0;
    left: 0;
    padding: 0;
    border-radius: 0;
    z-index: 200;
    background-color: #fff;
  }
}
#spMenu .spMenu_innerWrap {
  padding: 44px 40px 0 40px;
}
#spMenu .spMenu_innerWrap .menu_title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E82D2;
}
#spMenu .spMenu_innerWrap .list_menu {
  margin-top: 45px;
}
#spMenu .spMenu_innerWrap .list_menu .menuBtn {
  display: block;
  cursor: pointer;
  position: fixed;
  top: 14px;
  right: 16px;
  width: 60px;
  height: 60px;
  background-color: #1E82D2;
  border-radius: 50%;
  z-index: 500;
}
#spMenu .spMenu_innerWrap .list_menu .menuBtn button#spMenuBtn {
  width: 100%;
  height: 100%;
  border: none;
  background-color: transparent;
}
#spMenu .spMenu_innerWrap .list_menu .menuBtn button#spMenuBtn .spMenuBtn_bar {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding-top: 18px;
}
#spMenu .spMenu_innerWrap .list_menu .menuBtn button#spMenuBtn .spMenuBtn_bar span {
  position: relative;
  width: 29px;
  height: 3px;
  background: transparent;
  display: block;
}
#spMenu .spMenu_innerWrap .list_menu .menuBtn button#spMenuBtn .spMenuBtn_bar span::before, #spMenu .spMenu_innerWrap .list_menu .menuBtn button#spMenuBtn .spMenuBtn_bar span::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
}
#spMenu .spMenu_innerWrap .list_menu .menuBtn button#spMenuBtn .spMenuBtn_bar span::before {
  top: -7px;
}
#spMenu .spMenu_innerWrap .list_menu .menuBtn button#spMenuBtn .spMenuBtn_bar span::after {
  top: -14px;
}
#spMenu .spMenu_innerWrap .list_menu .d_title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1E82D2;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item {
  border-bottom: 1px solid #838383;
  margin-bottom: 21px;
  padding-bottom: 24px;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item .parent a {
  font-size: 1.125rem;
  font-weight: 700;
  display: block;
  padding-right: 21px;
  position: relative;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item .parent a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_drawer_arrow.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item:last-child .parent a::after {
  display: none;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item .list_child {
  border-top: 1px solid #838383;
  padding: 21px 0 0 15px;
  margin-top: 21px;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item .list_child li a {
  padding-right: 21px;
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
  display: block;
  line-height: 1.5;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item .list_child li a::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_drawer_arrow.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 24%;
  right: 10px;
  transform: translateY(-50%);
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item.contact_btn {
  margin-top: 45px;
  border-bottom: none;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  padding: 10px;
  width: 220px;
  border-radius: 50px;
  height: auto;
  margin: auto;
  background: linear-gradient(89.77deg, #FFBB08 0%, #FF8801 100%);
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a figure {
  width: 25px;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a figure img {
  display: block;
  width: 100%;
}
#spMenu .spMenu_innerWrap .list_menu .list_menu__inner .list_wrap .list_item.contact_btn .parent a span {
  font-size: 1.125rem;
  color: #fff;
  font-weight: 600;
}
#spMenu .spMenu_innerWrap .list_menu [data-hide~=drawer] {
  display: none;
}

.spMenu_open #spMenu {
  display: block;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ footer
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#footer {
  padding: 50px 0 33px;
}
@media print, screen and (max-width: 1023px) {
  #footer {
    padding: 40px 0 65px;
  }
}
#footer .outerWrap .innerWrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  column-gap: 10px;
  margin-bottom: 30px;
  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ■ menu
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
}
@media print, screen and (max-width: 909px) {
  #footer .outerWrap .innerWrap {
    flex-direction: column-reverse;
    row-gap: 56px;
    padding: 0 30px;
  }
}
#footer .outerWrap .innerWrap .foot_box {
  width: 552px;
  display: flex;
}
@media print, screen and (max-width: 1023px) {
  #footer .outerWrap .innerWrap .foot_box {
    width: 100%;
  }
}
#footer .outerWrap .innerWrap .foot_box .foot_logo {
  width: 87px;
  margin-right: 54px;
  margin-right: min(2.5vw, 54px);
}
@media print, screen and (max-width: 1023px) {
  #footer .outerWrap .innerWrap .foot_box .foot_logo {
    margin-right: 20px;
  }
}
@media print, screen and (max-width: 830px) {
  #footer .outerWrap .innerWrap .foot_box .foot_logo {
    display: none;
  }
}
#footer .outerWrap .innerWrap .foot_box .foot_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
#footer .outerWrap .innerWrap .foot_box .foot_logo a img {
  display: block;
  width: 100%;
}
#footer .outerWrap .innerWrap .foot_box .foot_txt strong {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
#footer .outerWrap .innerWrap .foot_box .foot_txt .address {
  font-size: 1rem;
  line-height: 1.7;
}
@media print, screen and (max-width: 1023px) {
  #footer .outerWrap .innerWrap .foot_box .foot_txt .address {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}
#footer .outerWrap .innerWrap .foot_box .foot_txt .access {
  display: flex;
  position: relative;
  font-size: 1.125rem;
}
@media print, screen and (max-width: 1023px) {
  #footer .outerWrap .innerWrap .foot_box .foot_txt .access {
    flex-direction: column;
    font-size: 0.875rem;
    display: block;
    line-height: 1.7;
  }
}
#footer .outerWrap .innerWrap .foot_box .foot_txt .access span {
  margin: 0 12px;
  display: block;
}
@media print, screen and (max-width: 1023px) {
  #footer .outerWrap .innerWrap .foot_box .foot_txt .access span {
    display: none;
  }
}
#footer .outerWrap .innerWrap #footer_nav {
  width: 38.329%;
  min-width: 380px;
}
@media print, screen and (max-width: 830px) {
  #footer .outerWrap .innerWrap #footer_nav {
    width: 100%;
    min-width: auto;
  }
}
#footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap {
  column-count: 2;
}
@media print, screen and (max-width: 830px) {
  #footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap {
    column-count: 1;
  }
}
#footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap .list_item {
  min-width: 170px;
}
@media print, screen and (max-width: 830px) {
  #footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap .list_item {
    width: 100%;
    margin-bottom: 5px;
  }
}
#footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap .list_item:nth-of-type(7) {
  margin-bottom: 0;
}
#footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap .list_item .parent {
  width: 100%;
  height: 100%;
}
#footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap .list_item .parent a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  line-height: 2;
  transition: all 0.25s ease-out;
}
@media print, screen and (max-width: 1023px) {
  #footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap .list_item .parent a {
    width: auto;
    display: inline-block;
  }
}
#footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap .list_item .parent a:hover {
  color: var(--c_blue1);
  transition: all 0.25s ease-out;
}
#footer .outerWrap .innerWrap #footer_nav .list_menu .list_menu__inner .list_wrap [data-hide~=footer] {
  display: none;
}
#footer .outerWrap .copyright {
  text-align: center;
  font-size: 0.875rem;
}
@media print, screen and (max-width: 1024px) {
  #footer .outerWrap .copyright {
    font-size: 0.8125rem;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ floating_area
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.floating_area {
  display: none;
}
@media print, screen and (max-width: 1023px) {
  .floating_area {
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 23;
  }
}
.floating_area .inner_area {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 10px 9px 11px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 11px;
}
.floating_area .inner_area a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.floating_area .inner_area a span {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}
.floating_area .inner_area .floating_tel {
  width: 189px;
  padding: 6px 12px 6px 17px;
  border: 1px solid #333;
  background-color: #fff;
  column-gap: 4px;
}
.floating_area .inner_area .floating_tel img {
  width: 14px;
  display: block;
}
.floating_area .inner_area .floating_mail {
  width: 169px;
  padding: 7px 31px 7px 28px;
  column-gap: 6px;
  background: linear-gradient(89.77deg, #FFBB08 0%, #FF8801 100%);
}
.floating_area .inner_area .floating_mail img {
  width: 23px;
  display: block;
}
.floating_area .inner_area .floating_mail span {
  color: #fff;
  font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━下層共通━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
.contents {
  background-color: #F1F5FB;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 下層ページタイトル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.character {
  position: absolute;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ パンくず
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#breadcrumbs .innerWrap {
  padding: 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ ページャー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.pager_wrap {
  max-width: 302px;
  margin: 48px auto 0;
}
@media print, screen and (max-width: 767px) {
  .pager_wrap {
    margin: 40px auto 0;
    max-width: 262px;
  }
}
.pager_wrap .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  align-items: center;
}
@media print, screen and (max-width: 767px) {
  .pager_wrap .wp-pagenavi {
    gap: 8px;
  }
}
.pager_wrap .wp-pagenavi a, .pager_wrap .wp-pagenavi span {
  width: 53px;
  height: 53px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  border: 1px solid #888;
  box-sizing: border-box;
  text-decoration: none;
  color: #000;
  border-radius: 3px;
  background-color: var(--c_white);
}
@media print, screen and (max-width: 767px) {
  .pager_wrap .wp-pagenavi a, .pager_wrap .wp-pagenavi span {
    width: 46px;
    height: 46px;
  }
}
.pager_wrap .wp-pagenavi a:hover, .pager_wrap .wp-pagenavi span:hover {
  background-color: var(--c_blue1);
  border-color: var(--c_blue1);
  color: var(--c_white);
  transition: all 0.25s ease-out;
}
.pager_wrap .wp-pagenavi .current {
  background-color: #F1F5FB;
}
.pager_wrap .wp-pagenavi .previouspostslink, .pager_wrap .wp-pagenavi .nextpostslink {
  text-indent: -99999%;
}
.pager_wrap .wp-pagenavi .previouspostslink {
  background: url(../img/news/news_arrow_prev.svg) no-repeat center #fff;
  background-size: 19px 17px;
  transition: all 0.25s ease-out;
}
@media print, screen and (max-width: 767px) {
  .pager_wrap .wp-pagenavi .previouspostslink {
    background-size: 17px 15px;
  }
}
.pager_wrap .wp-pagenavi .previouspostslink:hover {
  background: url(../img/news/news_arrow_prev_active.svg) no-repeat center;
  background-color: var(--c_blue1);
  transition: all 0.25s ease-out;
  background-size: 19px 17px;
}
.pager_wrap .wp-pagenavi .nextpostslink {
  background: url(../img/news/news_arrow_next.svg) no-repeat center #fff;
  background-size: 19px 17px;
  transition: all 0.25s ease-out;
}
@media print, screen and (max-width: 767px) {
  .pager_wrap .wp-pagenavi .nextpostslink {
    background-size: 17px 15px;
  }
}
.pager_wrap .wp-pagenavi .nextpostslink:hover {
  background: url(../img/news/news_arrow_next_active.svg) no-repeat center;
  background-color: var(--c_blue1);
  background-size: 19px 17px;
  transition: all 0.25s ease-out;
}

/*== parts ====================================================================================================*/
/*-------------------------
  ROLL OVER
-------------------------*/
.ro {
  transition: all 0.25s ease-out;
}
body:not(.view_sp) .ro:hover {
  opacity: 0.6;
  transition: all 0.25s ease-out;
}
.ro:hover img {
  opacity: 1;
}
.ro a:hover, .ro a:hover img {
  transition: none;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .ro:hover, .ro a:hover, .ro a:hover img {
    opacity: 1;
  }
}

/*-------------------------
  pcCont/spCont
-------------------------*/
@media screen and (min-width: 768px) {
  .sp, .spCont {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc, .pcCont {
    display: none;
  }
}
/*-------------------------
  COMMONS
-------------------------*/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.clear {
  clear: both;
}

button {
  cursor: pointer;
  outline: none;
}

.fBox, .flex {
  display: flex;
}

svg {
  fill: currentColor;
}

.preload * {
  transition: none !important;
}

.ofi {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.ac_btn {
  cursor: pointer;
}

.ac_box {
  display: none;
}

.slider {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: inherit;
}

.bold, strong {
  /*font-weight: inherit;*/
}

@media screen and (min-width: 768px) {
  .ptac {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .pc_flex, .pflex {
    display: flex;
  }
}

code {
  display: inline-block;
  vertical-align: middle;
  padding: 0.25em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
  text-indent: 0;
  font-family: inherit;
  font-size: 80%;
  line-height: 1.2;
}
code.red {
  display: block;
  background-color: #f00;
  border: none;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  padding: 8px;
  text-align: center;
  font-size: 100%;
}

/*-------------------------
  Fonts
-------------------------*/
.en {
  font-family: "Funnel Display", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: calc(50em / 1000);
}

/*-------------------------
  Dummy
-------------------------*/
._dummy {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 150px 15px;
}
@media screen and (max-width: 767px) {
  ._dummy {
    padding: 80px 15px;
  }
}

.dummy_con {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 300px 15px;
  background: #ccc;
}

.dami {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
}
.dami img {
  width: 100%;
  height: auto;
}

/*-------------------------
  Swiper
-------------------------*/
.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  font-size: 10px;
  position: relative;
  z-index: -1;
  text-indent: -9999em;
  border-top: 5px solid #999999;
  border-right: 5px solid #999999;
  border-bottom: 5px solid #999999;
  border-left: 5px solid rgba(153, 153, 153, 0.5);
  transform: translateZ(0);
  animation: loader 1.1s infinite linear;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.slide_wrap {
  overflow: hidden;
  position: relative;
  z-index: 0;
  min-height: 427px;
}
@media screen and (max-width: 700px) {
  .slide_wrap {
    min-height: 234px;
  }
}
.slide_wrap .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -5em 0 0 -5em;
}
.slide_wrap .slide {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.slide_wrap .swiper-wrapper {
  transition-timing-function: linear;
}

.slide_wrap.visible {
  min-height: inherit;
}
.slide_wrap.visible .slide {
  visibility: visible;
  animation-duration: 0.35s;
  animation-name: slide-fade-in;
  animation-fill-mode: forwards;
}

@keyframes slide-fade-in {
  0% {
    visibility: hidden;
    opacity: 0;
  }
  50% {
    visibility: visible;
    opacity: 0.5;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
.slide {
  display: none;
}

.swiper_off .swiper-navigation {
  display: none !important;
}

@media screen and (min-width: 768px) {
  .pc_swiper_off .swiper-wrapper {
    transform: none !important;
  }
}
@media screen and (min-width: 768px) {
  .pc_swiper_off .swiper-slide-duplicate,
.pc_swiper_off .swiper-button-prev,
.pc_swiper_off .swiper-button-next,
.pc_swiper_off .swiper-pagination {
    display: none;
  }
}

/* 矢印 */
.swiper-button-prev, .swiper-button-next {
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: calc(66 / var(--vp) * var(--vw));
  width: 100%;
  height: auto;
  background: none;
  aspect-ratio: 1/1;
  border-radius: 100%;
  margin: 0;
}
.swiper-button-prev::before, .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/icon-arrow01.svg) no-repeat center center var(--c_black);
  background-size: calc(26 / var(--vp) * var(--vw)) auto;
}
.swiper-button-prev::after, .swiper-button-next::after {
  display: none;
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.swiper-button-prev {
  left: auto;
}
.swiper-button-prev::before {
  transform: rotate(180deg);
}
.swiper-button-next {
  right: auto;
}

/* ページャー */
.swiper-pagination {
  position: static;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: calc(4 / var(--vp) * var(--vw)) calc(8 / var(--vp) * var(--vw));
}

.swiper-pagination-bullet {
  opacity: 1;
  background: transparent;
  border: 1px solid var(--c_white);
  width: calc(16 / var(--vp) * var(--vw));
  height: calc(16 / var(--vp) * var(--vw));
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--c_white);
}

/*-------------------------
  pagetitle
-------------------------*/
.pagetitle {
  color: var(--c_white);
  font-size: calc(58 / var(--vp) * var(--vw));
  padding: calc(20 / var(--vp) * var(--vw)) calc(40 / var(--vp) * var(--vw)) calc(13 / var(--vp) * var(--vw));
}
.pagetitle small {
  display: inline-block;
  border: 1px solid var(--c_white);
  font-size: calc(22 / var(--vp) * var(--vw));
  letter-spacing: 0.04em;
  padding: calc(1 / var(--vp) * var(--vw)) calc(24 / var(--vp) * var(--vw));
  margin: calc(23 / var(--vp) * var(--vw)) 0 0 calc(28 / var(--vp) * var(--vw));
  vertical-align: top;
}

/*== Form ====================================================================================================*/
/*--------------------------------------------------
  form reset
--------------------------------------------------*/
.form input,
.form select,
.form textarea,
.form button {
  font-family: "Funnel Display", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: calc(1em / 1000);
}
.form input[type=text],
.form input[type=tel],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form input[type=url],
.form input[type=date] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline-color: var(--color_blue1);
  width: 100%;
  background: #fff;
  border: 1px solid var(--color_blue4);
  border-radius: 5px;
  height: 70px;
  color: #000;
  font-family: inherit !important;
  padding: 5px 25px;
}
@media screen and (max-width: 767px) {
  .form input[type=text],
.form input[type=tel],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form input[type=url],
.form input[type=date] {
    height: 49px;
  }
}
.form input[type=text]:not(.problem),
.form input[type=tel]:not(.problem),
.form input[type=email]:not(.problem),
.form input[type=password]:not(.problem),
.form input[type=number]:not(.problem),
.form input[type=url]:not(.problem),
.form input[type=date]:not(.problem) {
  background: #fff;
}
.form input[type=text].problem,
.form input[type=tel].problem,
.form input[type=email].problem,
.form input[type=password].problem,
.form input[type=number].problem,
.form input[type=url].problem,
.form input[type=date].problem {
  background-color: #f7ebeb !important;
  border-color: var(--color_red1) !important;
  border-width: 2px;
}
.form input[type=date]::-webkit-date-and-time-value,
.form input[type=month]::-webkit-date-and-time-value {
  text-align: left;
}
.form select {
  outline-color: var(--color_blue1);
  width: 100%;
  background: #fff;
  border: 1px solid var(--color_blue4);
  border-radius: 5px;
  height: 70px;
  color: #000;
  font-family: inherit !important;
  padding: 5px 25px;
  background: transparent;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .form select {
    height: 49px;
  }
}
.form select:not(.problem) {
  background: #fff;
}
.form select.problem {
  background-color: #f7ebeb !important;
  border-color: var(--color_red1) !important;
  border-width: 2px;
}
.form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline-color: var(--color_blue1);
  width: 100%;
  background: #fff;
  border: 1px solid var(--color_blue4);
  border-radius: 5px;
  height: 70px;
  color: #000;
  font-family: inherit !important;
  padding: 5px 25px;
  display: block;
  resize: none;
  resize: both;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .form textarea {
    height: 49px;
  }
}
.form textarea:not(.problem) {
  background: #fff;
}
.form textarea.problem {
  background-color: #f7ebeb !important;
  border-color: var(--color_red1) !important;
  border-width: 2px;
}
@media screen and (min-width: 768px) {
  .form textarea {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .form textarea {
    height: 150px;
  }
}
.form button,
.form input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.form button:not(.btn_inner):hover,
.form input[type=submit]:hover {
  background: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.form input[type=file] {
  cursor: pointer;
}
.form label {
  cursor: pointer;
}
.form label span {
  position: relative;
  display: inline-block;
  padding: 0 0 0 29px;
}
.form label span:before, .form label span:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}
.form label span:before {
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  border: 1px solid var(--color_blue4);
  background: #fff;
  -webkit-transition: all 0.25s linear;
  transition: all 0.25s linear;
  margin: 3px 0 0;
}
.form label span:after {
  opacity: 0;
  top: 0;
  bottom: 0;
  margin: 8px auto 0;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.form input[type=radio],
.form input[type=checkbox] {
  display: none;
}
.form input[type=radio]:checked ~ span:after,
.form input[type=radio]:checked ~ input + span:after,
.form input[type=checkbox]:checked ~ span:after,
.form input[type=checkbox]:checked ~ input + span:after {
  opacity: 1;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
.form label input[type=radio] ~ span:before,
.form label input[type=radio] ~ input + span:before,
.form label input[type=radio] ~ span:after,
.form label input[type=radio] ~ input + span:after {
  border-radius: 50%;
}
.form label input[type=radio] ~ span:after,
.form label input[type=radio] ~ input + span:after {
  left: 5px;
  width: 10px;
  height: 10px;
  background: var(--color_blue1);
}
.form label input[type=checkbox] ~ span:after,
.form label input[type=checkbox] ~ input + span:after {
  top: 0;
  bottom: 2px;
  left: 7px;
  width: 6px;
  height: 10px;
  background: none;
  border-bottom: 2px solid var(--color_blue1);
  border-right: 2px solid var(--color_blue1);
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg);
}

/*--------------------------------------------------
  プレースホルダー
--------------------------------------------------*/
:placeholder-shown {
  font-family: inherit;
  color: var(--color_gray2) !important;
}

::-webkit-input-placeholder {
  font-family: inherit;
  color: var(--color_gray2) !important;
}

:-moz-placeholder {
  opacity: 1;
  font-family: inherit;
  color: var(--color_gray2) !important;
}

::-moz-placeholder {
  opacity: 1;
  font-family: inherit;
  color: var(--color_gray2) !important;
}

:-ms-input-placeholder {
  font-family: inherit;
  color: var(--color_gray2) !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■↓↓↓お問い合わせフォーム　各サイトごとに自由編集↓↓↓
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*--------------------------------------------------
  メールフォームプロ
--------------------------------------------------*/
/* エラー */
div.mfp_err {
  clear: both;
  display: none;
  text-align: left;
  margin: 10px 0 0 0;
  color: var(--c_red1);
  font-weight: bold;
  line-height: normal;
  background-position: 0px 1px;
}
div.mfp_err:empty {
  display: none;
}

.mfp_parent_error {
  border: solid 2px #F00;
}

.problem {
  background-color: #FCC;
}

div#mfp_error {
  background-color: #FEE;
  border: solid 1px #F00;
  padding: 10px;
  display: none;
}

/* ボタン */
@media screen and (min-width: 768px) {
  div.mfp_buttons {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  div.mfp_buttons > *:not(:first-child) {
    margin-right: 60px;
  }
}
@media screen and (max-width: 767px) {
  div.mfp_buttons > *:not(:first-child) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  div.mfp_buttons #mfp_button_cancel {
    max-width: 250px;
  }
}
/* テーブル */
#mfp_confirm_table tr {
  background: none;
}
@media screen and (max-width: 767px) {
  #mfp_confirm_table tr:last-child td {
    padding-bottom: 0;
  }
}
#mfp_confirm_table th, #mfp_confirm_table td {
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  #mfp_confirm_table th, #mfp_confirm_table td {
    display: block;
    width: 100%;
  }
}

/*--------------------------------------------------
	入力画面
--------------------------------------------------*/
#sec_contact_form .list_input ul + ul {
  margin-top: 15px;
}
#sec_contact_form .list_input li {
  margin: 0 20px 10px 0;
}
#sec_contact_form #mfp_phase_confirm h4 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 30px;
}
@media screen and (max-width: 767px) {
  #sec_contact_form #mfp_phase_confirm h4 {
    margin: 0 0 50px;
  }
}

/*--------------------------------------------------
	確認画面
--------------------------------------------------*/
div#mfp_error {
  width: 100%;
}

div#mfp_warning {
  width: 100%;
  margin: 0 auto;
  background: #f7ebeb;
  border: 1px solid var(--red01) !important;
  border-radius: 0;
  padding: 20px 30px;
  margin-bottom: 40px;
}

#mfp_confirm_table {
  width: 100%;
}

/*== parts ====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 下層ページタイトル
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#pagetitle {
  display: flex;
  width: 100%;
  background: rgba(255, 204, 204, 0.2);
  background: linear-gradient(35deg, #A5DDFE 20.51%, #BBE2FA 48.04%, #D1E7F5 75.57%);
}
@media screen and (max-width: 767px) {
  #pagetitle {
    padding: 0 10px;
  }
}
#pagetitle .innerWrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  min-height: 343px;
  padding: 64px 0 0;
}
@media screen and (max-width: 767px) {
  #pagetitle .innerWrap {
    padding: 10px 0;
  }
}
#pagetitle .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
  text-align: center;
}
#pagetitle ._en {
  color: var(--color_blue1);
  font-family: var(--font_en);
  font-size: 4.375rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #pagetitle ._en {
    font-size: min(calc(45 / var(--vp) * var(--vw)), 45px);
    line-height: 1.2;
  }
}
#pagetitle ._en span {
  display: inline-block;
}
#pagetitle ._en span::first-letter {
  color: var(--color_blue3);
}
#pagetitle ._jp {
  color: var(--color_blue3);
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #pagetitle ._jp {
    font-size: min(calc(15 / var(--vp) * var(--vw)), 15px);
    margin-top: 5px;
  }
}
#pagetitle .illust01,
#pagetitle .illust02 {
  position: absolute;
}
#pagetitle .illust01 img,
#pagetitle .illust02 img {
  display: inline-block;
  width: inherit;
}
@media screen and (max-width: 767px) {
  #pagetitle .illust01 img,
#pagetitle .illust02 img {
    width: 100%;
    height: auto;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ パンくず
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#breadcrumbs {
  padding: 16px 20px;
}
@media screen and (max-width: 767px) {
  #breadcrumbs {
    display: none !important;
  }
}
#breadcrumbs .innerWrap {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
}
#breadcrumbs .breadcrumbs_list {
  display: flex;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
}
#breadcrumbs .breadcrumbs_list li:not(:first-child)::before {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23333333' d='M5.49562 4.13459C5.69677 4.33642 5.69677 4.66358 5.49562 4.86541L1.37486 9L0.646484 8.26918L4.40305 4.5L0.646484 0.730821L1.37486 0L5.49562 4.13459Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 8px auto;
  padding: 0 1em;
}
#breadcrumbs .breadcrumbs_list li:first-child {
  color: var(--color_gray4);
  font-weight: 500;
}
#breadcrumbs .breadcrumbs_list a {
  display: inline-block;
}
#breadcrumbs .breadcrumbs_list a:hover {
  color: var(--color_blue1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ パーツ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*-------------------------
  本文テキスト
-------------------------*/
.text01 {
  font-size: 1.125rem;
  line-height: 2;
}
.text01 em {
  font-style: italic;
}
.text01 strong, .text01 b {
  font-weight: 700;
}
.text01 a:not(.btn_inner) {
  transition: all 0.25s ease-out;
}
body:not(.view_sp) .text01 a:not(.btn_inner):hover {
  opacity: 0.6;
  transition: all 0.25s ease-out;
}
.text01 a:not([class]) {
  text-decoration: underline;
}
.text01 *:not(.has-text-color):not(.btn_inner) a:not(.wp-block-button__link):not(.btn_inner) {
  color: var(--c_link);
}
.text01 a:not([class]):not([href^="mailto:"])[target=_blank] {
  position: relative;
  margin-right: 5px;
  /*
  &:after {
  	content: '';
  	display: inline-block;
  	width: 12px;
  	height: 13px;
  	background: url(../img/ico_blank.svg) no-repeat left top;
  	background-size: 12px auto;
  	margin-left: 3px;
  }
  */
}
.text01 p {
  line-height: inherit;
}
@media screen and (min-width: 768px) {
  .text01.pc_center {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .text01.sp_center {
    text-align: center;
  }
}
.text01.center {
  text-align: center;
}
.text01:not(p) > *:first-child {
  margin-top: 0;
}
.text01 .marker {
  font-size: 160%;
  margin: 0 0.5em;
  background: linear-gradient(transparent 78%, #FFC6B5 78%);
}
@media screen and (max-width: 767px) {
  .text01 .marker {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .text01 {
    font-size: min(calc(16 / var(--vp) * var(--vw)), 16px);
  }
}
.text01 + * {
  margin-top: 2em;
}
*:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) + .text01 {
  margin-top: 2em;
}

/*-------------------------
  見出し
-------------------------*/
/* 青ボーダー */
.hd-line01 {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hd-line01 {
    align-items: flex-start;
    font-size: min(calc(27 / var(--vp) * var(--vw)), 27px);
  }
}
.hd-line01:empty {
  display: none;
}
.hd-line01::before, .hd-line01::after {
  content: "";
  display: block;
  min-width: 12px;
  height: 6px;
  background-color: var(--color_blue1);
}
@media screen and (max-width: 767px) {
  .hd-line01::before, .hd-line01::after {
    margin-top: calc(0.5em + 3px);
  }
}
.hd-line01::before {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .hd-line01::before {
    margin-right: 8px;
  }
}
.hd-line01::after {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .hd-line01::after {
    margin-left: 8px;
  }
}

/* グレーボーダー */
.hd-line02 {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hd-line02 {
    align-items: flex-start;
    font-size: min(calc(24 / var(--vp) * var(--vw)), 24px);
  }
}
.hd-line02:empty {
  display: none;
}
.hd-line02::before, .hd-line02::after {
  content: "";
  display: block;
  min-width: 12px;
  height: 5px;
  background-color: var(--color_gray4);
}
@media screen and (max-width: 767px) {
  .hd-line02::before, .hd-line02::after {
    margin-top: calc(0.5em + 2.5px);
  }
}
.hd-line02::before {
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .hd-line02::before {
    margin-right: 6px;
  }
}
.hd-line02::after {
  margin-left: 12px;
}
@media screen and (max-width: 767px) {
  .hd-line02::after {
    margin-left: 6px;
  }
}

/*-------------------------
  機能概要
-------------------------*/
/* (数字) 付リスト */
.list_dl {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2em;
  counter-reset: number 0;
}
.list_dl > div {
  position: relative;
  padding-left: 2.5em;
}
.list_dl > div::before {
  counter-increment: number 1;
  content: "（" counter(number) "）";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 100%;
  font-weight: 700;
  line-height: inherit;
}
.list_dl dt {
  font-weight: 700;
}
.list_dl tr > * {
  vertical-align: top;
}
.list_dl th {
  display: flex;
  justify-content: center;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .list_dl th {
    min-width: 5em;
  }
}
.list_dl th::after {
  content: "：";
  margin-left: auto;
}

/* ・をテキスト側に付けてインデント */
.list._dot li {
  text-indent: -1em;
  padding-left: 1em;
}

/* (数字) リスト */
.list._num {
  counter-reset: number 0;
}
.list._num li {
  position: relative;
  padding-left: 2.5em;
}
.list._num li::before {
  counter-increment: number 1;
  content: "（" counter(number) "）";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 100%;
  line-height: inherit;
}

/* ●青丸リスト*/
.list._dot02 {
  font-weight: 700;
  line-height: 1.7;
}
.list._dot02 li {
  position: relative;
  padding-left: 1.5em;
}
.list._dot02 li::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 1em;
  aspect-ratio: 1/1;
  background: var(--color_blue5);
  border-radius: 100%;
}

/*-------------------------
  表組み
-------------------------*/
.table01 {
  overflow: hidden;
  table-layout: fixed;
  width: 100%;
  background: var(--color_white);
  border-collapse: separate;
  border: 1px solid var(--color_gray2);
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .table01 {
    font-size: min(calc(14 / var(--vp) * var(--vw)), 14px);
  }
}
.table01 tr {
  border-collapse: separate;
  border-spacing: 0;
}
.table01 tr > * {
  height: 70px;
  text-align: left;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .table01 tr > * {
    padding: 15px;
  }
}
.table01 tr > *:first-child {
  max-width: 267px;
  width: 30.068%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .table01 tr > *:first-child {
    width: 130px;
  }
}
.table01 tr > *:not(:first-child) {
  border-left: 1px solid var(--color_gray2);
}
.table01 tr:not(:first-child) > * {
  border-top: 1px solid var(--color_gray2);
}
.table01 thead {
  background: var(--color_gray5);
}
@media screen and (max-width: 767px) {
  .table01 .table_data tbody {
    display: flex;
    flex-direction: column;
    row-gap: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .table01 .table_data tr {
    display: flex;
    flex-direction: column;
  }
}
.table01 .table_data tr > * {
  height: auto;
  padding: 0;
  border: none;
}
.table01 .table_data tr > th {
  max-width: inherit;
  width: auto;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table01 .table_data tr > th {
    display: inline-block;
  }
}

/* th2コ並び */
.table02 {
  overflow: hidden;
  width: 100%;
  background: var(--color_white);
  border-radius: 16px;
  border: 1px solid var(--color_gray4);
  border-collapse: separate;
  table-layout: fixed;
}
.table02 tr > * {
  height: 50px;
  padding: 10px 24px;
  border-collapse: inherit;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .table02 tr > * {
    font-size: 0.875rem;
    padding: 10px 15px;
  }
}
.table02 tr:not(:first-child) > * {
  border-top: 1px solid var(--color_gray4);
}
.table02 .th1 {
  width: 165px;
  background: rgba(196, 228, 248, 0.4);
  border-right: 1px solid var(--color_gray4);
  color: var(--color_blue1);
  font-size: 1.125rem;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .table02 .th1 {
    width: 100px;
    font-size: 1rem;
  }
}
.table02 .th2 {
  width: 279px;
  background: var(--color_gray5);
  font-weight: 700;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table02 .th2 {
    width: 205px;
  }
}
.table02 td {
  font-size: 0.9375rem;
}

/* 定義型リストのような形 */
.table_data {
  table-layout: fixed;
}
.table_data tr > * {
  vertical-align: top;
}
.table_data th {
  display: flex;
  justify-content: center;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .table_data th {
    min-width: 6.5em;
  }
}
.table_data th::after {
  content: "：";
  margin-left: auto;
}

/*-------------------------
  margin
-------------------------*/
._mt0 {
  margin-top: 0 !important;
}

._mb0 {
  margin-bottom: 0 !important;
}

/*-------------------------
  ボタン
-------------------------*/
/* 白にグレーボーダー:hover青 */
.btn01 {
  max-width: 300px;
}
.btn01 button {
  background: none;
  border: none;
  box-shadow: none;
  color: inherit;
  font-family: "Funnel Display", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: calc(1em / 1000);
  font-size: 100%;
}
.btn01 .btn_inner {
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 48px;
  border-radius: 100px;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.btn01 a, .btn01 button {
  position: relative;
  z-index: 0;
  text-decoration: none;
}
.btn01 a::before, .btn01 button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform ease 0.3s !important;
}
.btn01 a > span, .btn01 button > span {
  padding-right: 14px;
  transition: none !important;
}
.btn01 a > span::after, .btn01 button > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26.25px;
  width: 14.75px;
  aspect-ratio: 14.75/13.79;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%233C3838' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
  transform: translate(0, -50%);
  transform-origin: center center;
  transition: all 0.25s ease-out;
}
.btn01 a:hover::before, .btn01 button:hover::before {
  transform: scaleX(1);
}
.btn01 a[disabled], .btn01 button[disabled] {
  cursor: no-drop;
  border-color: var(--c_black) !important;
  background: #DBDCDC !important;
  color: #888888 !important;
}
.btn01 a[disabled] > span::after, .btn01 button[disabled] > span::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23888888' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.btn01._big .btn_inner {
  min-height: 73px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .btn01._big .btn_inner {
    font-size: 1.25rem;
  }
}
.btn01._big a > span, .btn01._big button > span {
  padding-right: 25px;
}
.btn01._big a > span::after, .btn01._big button > span::after {
  right: 25.75px;
  width: 20.26px;
}
@media screen and (max-width: 767px) {
  .btn01._big a > span::after, .btn01._big button > span::after {
    right: 23px;
    width: 18.26px;
  }
}
.btn01._back a > span, .btn01._back button > span {
  padding-right: 0;
  padding-left: 14px;
}
.btn01._back a > span::after, .btn01._back button > span::after {
  right: auto;
  left: 26.25px;
  transform: rotate(180deg) translate(0, 50%);
}
.btn01._back._big a > span, .btn01._back._big button > span {
  padding-left: 25px;
}
.btn01._back._big a > span::after, .btn01._back._big button > span::after {
  left: 25.75px;
}
@media screen and (max-width: 767px) {
  .btn01._back._big a > span::after, .btn01._back._big button > span::after {
    left: 23px;
  }
}
.btn01 .btn_inner {
  background-color: var(--color_white);
  border: 1px solid var(--color_gray1);
}
.btn01 a::before, .btn01 button::before {
  background-color: var(--color_blue1);
}
.btn01 a:hover, .btn01 button:hover {
  border-color: var(--color_blue1);
  color: var(--color_white);
}
.btn01 a:hover > span::after, .btn01 button:hover > span::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFFFFF' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/* オレンジ→黄色グラデ */
.btn02 {
  max-width: 300px;
}
.btn02 button {
  background: none;
  border: none;
  box-shadow: none;
  color: inherit;
  font-family: "Funnel Display", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: calc(1em / 1000);
  font-size: 100%;
}
.btn02 .btn_inner {
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 48px;
  border-radius: 100px;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.btn02 a, .btn02 button {
  position: relative;
  z-index: 0;
  text-decoration: none;
}
.btn02 a::before, .btn02 button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform ease 0.3s !important;
}
.btn02 a > span, .btn02 button > span {
  padding-right: 14px;
  transition: none !important;
}
.btn02 a > span::after, .btn02 button > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26.25px;
  width: 14.75px;
  aspect-ratio: 14.75/13.79;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%233C3838' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
  transform: translate(0, -50%);
  transform-origin: center center;
  transition: all 0.25s ease-out;
}
.btn02 a:hover::before, .btn02 button:hover::before {
  transform: scaleX(1);
}
.btn02 a[disabled], .btn02 button[disabled] {
  cursor: no-drop;
  border-color: var(--c_black) !important;
  background: #DBDCDC !important;
  color: #888888 !important;
}
.btn02 a[disabled] > span::after, .btn02 button[disabled] > span::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23888888' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.btn02._big .btn_inner {
  min-height: 73px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .btn02._big .btn_inner {
    font-size: 1.25rem;
  }
}
.btn02._big a > span, .btn02._big button > span {
  padding-right: 25px;
}
.btn02._big a > span::after, .btn02._big button > span::after {
  right: 25.75px;
  width: 20.26px;
}
@media screen and (max-width: 767px) {
  .btn02._big a > span::after, .btn02._big button > span::after {
    right: 23px;
    width: 18.26px;
  }
}
.btn02._back a > span, .btn02._back button > span {
  padding-right: 0;
  padding-left: 14px;
}
.btn02._back a > span::after, .btn02._back button > span::after {
  right: auto;
  left: 26.25px;
  transform: rotate(180deg) translate(0, 50%);
}
.btn02._back._big a > span, .btn02._back._big button > span {
  padding-left: 25px;
}
.btn02._back._big a > span::after, .btn02._back._big button > span::after {
  left: 25.75px;
}
@media screen and (max-width: 767px) {
  .btn02._back._big a > span::after, .btn02._back._big button > span::after {
    left: 23px;
  }
}
.btn02 .btn_inner {
  background: linear-gradient(79.48deg, #FF9F1A 0%, #FFDA68 50%, #FF9F1A 100%);
  background-position: 100% 100%;
  background-size: 200% 100%;
  border: 1px solid var(--color_gray6);
}
.btn02 .btn_inner::before {
  display: none;
}
.btn02 .btn_inner > span::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23333333' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.btn02 a:hover, .btn02 button:hover {
  background-position: 0% 100%;
}

/* 白にグレーボーダー */
.btn03 {
  max-width: 300px;
}
.btn03 button {
  background: none;
  border: none;
  box-shadow: none;
  color: inherit;
  font-family: "Funnel Display", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic Medium", "游ゴシック Medium", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Noto Sans Japanese", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: calc(1em / 1000);
  font-size: 100%;
}
.btn03 .btn_inner {
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 48px;
  border-radius: 100px;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.btn03 a, .btn03 button {
  position: relative;
  z-index: 0;
  text-decoration: none;
}
.btn03 a::before, .btn03 button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transform-origin: center left;
  transform: scaleX(0);
  transition: transform ease 0.3s !important;
}
.btn03 a > span, .btn03 button > span {
  padding-right: 14px;
  transition: none !important;
}
.btn03 a > span::after, .btn03 button > span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26.25px;
  width: 14.75px;
  aspect-ratio: 14.75/13.79;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%233C3838' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% auto;
  transform: translate(0, -50%);
  transform-origin: center center;
  transition: all 0.25s ease-out;
}
.btn03 a:hover::before, .btn03 button:hover::before {
  transform: scaleX(1);
}
.btn03 a[disabled], .btn03 button[disabled] {
  cursor: no-drop;
  border-color: var(--c_black) !important;
  background: #DBDCDC !important;
  color: #888888 !important;
}
.btn03 a[disabled] > span::after, .btn03 button[disabled] > span::after {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23888888' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.btn03._big .btn_inner {
  min-height: 73px;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .btn03._big .btn_inner {
    font-size: 1.25rem;
  }
}
.btn03._big a > span, .btn03._big button > span {
  padding-right: 25px;
}
.btn03._big a > span::after, .btn03._big button > span::after {
  right: 25.75px;
  width: 20.26px;
}
@media screen and (max-width: 767px) {
  .btn03._big a > span::after, .btn03._big button > span::after {
    right: 23px;
    width: 18.26px;
  }
}
.btn03._back a > span, .btn03._back button > span {
  padding-right: 0;
  padding-left: 14px;
}
.btn03._back a > span::after, .btn03._back button > span::after {
  right: auto;
  left: 26.25px;
  transform: rotate(180deg) translate(0, 50%);
}
.btn03._back._big a > span, .btn03._back._big button > span {
  padding-left: 25px;
}
.btn03._back._big a > span::after, .btn03._back._big button > span::after {
  left: 25.75px;
}
@media screen and (max-width: 767px) {
  .btn03._back._big a > span::after, .btn03._back._big button > span::after {
    left: 23px;
  }
}
.btn03 .btn_inner {
  background-color: var(--color_white);
  border: 1px solid var(--color_gray1);
}
.btn03 a::before, .btn03 button::before {
  background-color: #DBDCDC;
}
/*-------------------------
  カラー
-------------------------*/
._blue {
  color: var(--color_blue1);
}

._red {
  color: var(--color_red1);
}

._green {
  color: var(--color_green1);
}

._orange {
  color: var(--color_orange1);
}

._yellow {
  color: var(--color_yellow1);
}

/*-------------------------
  背景
-------------------------*/
.bg01 {
  background: linear-gradient(95.6deg, #A5DDFE 19.4%, #BBE2FA 59.56%, #D1E7F5 91.41%);
}
@media screen and (max-width: 767px) {
  .bg01 {
    background: linear-gradient(55.03deg, #A5DDFE 8.51%, #BBE2FA 46.95%, #D1E7F5 84.31%);
  }
}

/*-------------------------
  スクロールヒントのアイコン
-------------------------*/
@media screen and (max-width: 767px) {
  .scroll-hint-icon {
    top: 120px;
  }
}

/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	wp

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
/*== wp-block_editor ブロックエディタ ====================================================================================================*/
/*-------------------------
  共通
-------------------------*/
:root {
  --text_size: 16;
  --link_color: #008CD6;
  --quote-border_color: #BEBEBE;
  --pullquote-border_color: #BEBEBE;
}

article .entry, .wp_editor,
.block-editor-block-list__layout {
  overflow-wrap: anywhere;
  word-break: normal;
  font-size: 100%;
  line-height: 2;
}
article .entry small, .wp_editor small,
.block-editor-block-list__layout small {
  font-size: 87.5%;
  line-height: 1.8;
}
article .entry b, article .entry strong, .wp_editor b, .wp_editor strong,
.block-editor-block-list__layout b,
.block-editor-block-list__layout strong {
  font-weight: bold;
}
article .entry em, article .entry i, .wp_editor em, .wp_editor i,
.block-editor-block-list__layout em,
.block-editor-block-list__layout i {
  font-style: italic;
  font-weight: inherit;
}
article .entry sup, .wp_editor sup,
.block-editor-block-list__layout sup {
  vertical-align: super;
}
article .entry sub, .wp_editor sub,
.block-editor-block-list__layout sub {
  vertical-align: sub;
}
@media screen and (min-width: 768px) {
  article .entry .js-scrollable, .wp_editor .js-scrollable,
.block-editor-block-list__layout .js-scrollable {
    overflow: inherit !important;
  }
}
@media screen and (max-width: 767px) {
  article .entry .js-scrollable table, .wp_editor .js-scrollable table,
.block-editor-block-list__layout .js-scrollable table {
    min-width: 400px;
  }
}
@media screen and (max-width: 767px) {
  article .entry .sp_scroll:not(.wp-block-table), .wp_editor .sp_scroll:not(.wp-block-table),
.block-editor-block-list__layout .sp_scroll:not(.wp-block-table) {
    min-width: 860px;
  }
}
article .entry iframe, .wp_editor iframe,
.block-editor-block-list__layout iframe {
  max-width: 100%;
}
article .entry code, .wp_editor code,
.block-editor-block-list__layout code {
  display: inline-block;
  padding: 0.1em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
  text-indent: 0;
  font-size: 1rem;
  line-height: 1.2;
}
article .entry a:not([class]), .wp_editor a:not([class]),
.block-editor-block-list__layout a:not([class]) {
  color: #1E82D2;
  text-decoration: underline;
  transition: all 0.25s ease-out;
}
body:not(.view_sp) article .entry a:not([class]):hover, body:not(.view_sp) .wp_editor a:not([class]):hover,
body:not(.view_sp) .block-editor-block-list__layout a:not([class]):hover {
  opacity: 0.6;
  transition: all 0.25s ease-out;
}

/*-------------------------
  空き
-------------------------*/
article .entry *:not(:last-child), .wp_editor *:not(:last-child),
.block-editor-block-list__layout *:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  article .entry *:not(:last-child), .wp_editor *:not(:last-child),
.block-editor-block-list__layout *:not(:last-child) {
    margin-bottom: 1em;
  }
}
article .entry > .wp-block-heading:not(:first-child), .wp_editor > .wp-block-heading:not(:first-child),
.block-editor-block-list__layout > .wp-block-heading:not(:first-child) {
  margin-top: 20px;
}
article .entry > .wp-block-image:not(:last-child), .wp_editor > .wp-block-image:not(:last-child),
.block-editor-block-list__layout > .wp-block-image:not(:last-child) {
  margin-bottom: 4em;
}
@media screen and (max-width: 767px) {
  article .entry > .wp-block-image:not(:last-child), .wp_editor > .wp-block-image:not(:last-child),
.block-editor-block-list__layout > .wp-block-image:not(:last-child) {
    margin-bottom: 2.666694em;
  }
}
article .entry > .wp-block-columns:not(:last-child), .wp_editor > .wp-block-columns:not(:last-child),
.block-editor-block-list__layout > .wp-block-columns:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  article .entry > .wp-block-columns:not(:last-child), .wp_editor > .wp-block-columns:not(:last-child),
.block-editor-block-list__layout > .wp-block-columns:not(:last-child) {
    margin-bottom: 40px;
  }
}
article .entry .wp-block-image .wp-element-caption, .wp_editor .wp-block-image .wp-element-caption,
.block-editor-block-list__layout .wp-block-image .wp-element-caption {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  article .entry .wp-block-image .wp-element-caption, .wp_editor .wp-block-image .wp-element-caption,
.block-editor-block-list__layout .wp-block-image .wp-element-caption {
    margin-top: 12px;
  }
}
article .entry .wp-block-columns > *, .wp_editor .wp-block-columns > *,
.block-editor-block-list__layout .wp-block-columns > * {
  margin-bottom: 0;
}

/*-------------------------
  カラーパレット
-------------------------*/
/* グラデーション */
.has-vivid-cyan-blue-to-vivid-purple-gradient-background {
  background: linear-gradient(135deg, #0693e3, #9b51e0);
}

.has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background {
  background: linear-gradient(135deg, #00d084, #0693e3);
}

.has-light-green-cyan-to-vivid-green-cyan-gradient-background {
  background: linear-gradient(135deg, #7adcb4, #00d082);
}

.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background {
  background: linear-gradient(135deg, #fcb900, #ff6900);
}

.has-luminous-vivid-orange-to-vivid-red-gradient-background {
  background: linear-gradient(135deg, #ff6900, #cf2e2e);
}

.has-very-light-gray-to-cyan-bluish-gray-gradient-background {
  background: linear-gradient(135deg, #eee, #a9b8c3);
}

.has-cool-to-warm-spectrum-gradient-background {
  background: linear-gradient(135deg, #4aeadc, #9778d1 20%, #cf2aba 40%, #ee2c82 60%, #fb6962 80%, #fef84c);
}

.has-blush-light-purple-gradient-background {
  background: linear-gradient(135deg, #ffceec, #9896f0);
}

.has-blush-bordeaux-gradient-background {
  background: linear-gradient(135deg, #fecda5, #fe2d2d 50%, #6b003e);
}

.has-purple-crush-gradient-background {
  background: linear-gradient(135deg, #34e2e4, #4721fb 50%, #ab1dfe);
}

.has-luminous-dusk-gradient-background {
  background: linear-gradient(135deg, #ffcb70, #c751c0 50%, #4158d0);
}

.has-hazy-dawn-gradient-background {
  background: linear-gradient(135deg, #faaca8, #dad0ec);
}

.has-pale-ocean-gradient-background {
  background: linear-gradient(135deg, #fff5cb, #b6e3d4 50%, #33a7b5);
}

.has-electric-grass-gradient-background {
  background: linear-gradient(135deg, #caf880, #71ce7e);
}

.has-subdued-olive-gradient-background {
  background: linear-gradient(135deg, #fafae1, #67a671);
}

.has-atomic-cream-gradient-background {
  background: linear-gradient(135deg, #fdd79a, #004a59);
}

.has-nightshade-gradient-background {
  background: linear-gradient(135deg, #330968, #31cdcf);
}

.has-midnight-gradient-background {
  background: linear-gradient(135deg, #020381, #2874fc);
}

/*-------------------------
  テキスト - 段落
-------------------------*/
article .entry .has-small-font-size, .wp_editor .has-small-font-size,
.block-editor-block-list__layout .has-small-font-size {
  font-size: 88.89% !important;
}
article .entry .has-medium-font-size, .wp_editor .has-medium-font-size,
.block-editor-block-list__layout .has-medium-font-size {
  font-size: 100% !important;
}
article .entry .has-large-font-size, .wp_editor .has-large-font-size,
.block-editor-block-list__layout .has-large-font-size {
  font-size: 111.11% !important;
}
article .entry .has-x-large-font-size, .wp_editor .has-x-large-font-size,
.block-editor-block-list__layout .has-x-large-font-size {
  font-size: 133.33% !important;
}
article .entry .wp-element-caption, .wp_editor .wp-element-caption,
.block-editor-block-list__layout .wp-element-caption {
  font-size: calc(13 / var(--text_size) * 100%) !important;
  line-height: 1.75;
  margin-top: 10px;
}

/*-------------------------
  テキスト - 見出し
-------------------------*/
.wp-block-heading {
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0 !important;
  color: #1E82D2;
}
h1.wp-block-heading {
  text-decoration: line-through;
}
h1.wp-block-heading::after {
  content: "※使わない";
  display: inline-block;
  text-decoration: none;
  margin-left: 1em;
}

h2.wp-block-heading {
  font-size: 2rem;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  h2.wp-block-heading {
    font-size: 1.625rem;
    margin-bottom: 14px !important;
  }
}

h3.wp-block-heading {
  font-size: 1.75rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  h3.wp-block-heading {
    font-size: 1.5rem;
    margin-bottom: 12px !important;
  }
}

h4.wp-block-heading {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  h4.wp-block-heading {
    font-size: 1.375rem;
    margin-bottom: 10px !important;
  }
}

h5.wp-block-heading {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  h5.wp-block-heading {
    font-size: 1.25rem;
    margin-bottom: 8px !important;
  }
}

h6.wp-block-heading {
  font-size: 1rem;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  h6.wp-block-heading {
    font-size: 1.125rem;
    margin-bottom: 6px !important;
  }
}

.wp-block-heading.has-background {
  padding: 10px;
}

/*-------------------------
  テキスト - リスト（ul , ol）
-------------------------*/
.wp-block-list {
  list-style-position: inside;
}
.wp-block-list > li {
  list-style: inherit;
}
.wp-block-list .wp-block-list {
  margin-left: 1.5em;
}
.wp-block-list.has-background {
  padding: 20px;
}

.wp-block-list.indent {
  list-style: none;
}
.wp-block-list.indent > li {
  padding-left: 1em;
  text-indent: -1em;
}

/*-------------------------
  テキスト - 引用
-------------------------*/
.wp-block-quote {
  box-sizing: border-box;
  overflow-wrap: break-word;
  border-left: 4px solid var(--quote-border_color);
  padding: 0.5em 1em;
}
.wp-block-quote.is-large:not(.is-style-plain), .wp-block-quote.is-style-large:not(.is-style-plain) {
  margin-bottom: 1em;
  padding: 0 1em;
}
.wp-block-quote.is-large:not(.is-style-plain) p, .wp-block-quote.is-style-large:not(.is-style-plain) p {
  font-style: italic;
}
.wp-block-quote.is-large:not(.is-style-plain) cite, .wp-block-quote.is-large:not(.is-style-plain) footer, .wp-block-quote.is-style-large:not(.is-style-plain) cite, .wp-block-quote.is-style-large:not(.is-style-plain) footer {
  text-align: right;
}

/*-------------------------
  テキスト - プルクオート
-------------------------*/
.wp-block-pullquote {
  font-size: 100%;
  border-top: 4px solid var(--pullquote-border_color);
  border-bottom: 4px solid var(--pullquote-border_color);
  line-height: inherit;
  padding: 2em 0;
  /*
  &::after {
  	content: '”';
  	margin-top: .5em;
  	text-align: right;
  }
  */
}
.wp-block-pullquote::before, .wp-block-pullquote::after {
  display: block;
  font-size: 200%;
  font-weight: bold;
  line-height: 1;
}
.wp-block-pullquote::before {
  content: "“";
  margin-bottom: 0.5em;
}

/*-------------------------
  テキスト - テーブル
-------------------------*/
article .entry table, .wp_editor table,
.block-editor-block-list__layout table {
  width: 100%;
  border-top: 1px solid #c5c5c5;
  border-left: 1px solid #c5c5c5;
  border-bottom: none;
  border-right: none;
}
article .entry table th, article .entry table td, .wp_editor table th, .wp_editor table td,
.block-editor-block-list__layout table th,
.block-editor-block-list__layout table td {
  border-top: none;
  border-left: none;
  border-bottom: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
  line-height: 1.5;
  padding: 0.5em;
  vertical-align: top;
}
article .entry table thead th, .wp_editor table thead th,
.block-editor-block-list__layout table thead th {
  background-color: #1E82D2;
  text-align: left;
  color: #fff;
}
article .entry table thead th, article .entry table thead td, .wp_editor table thead th, .wp_editor table thead td,
.block-editor-block-list__layout table thead th,
.block-editor-block-list__layout table thead td {
  font-weight: inherit;
}
article .entry table tfoot, .wp_editor table tfoot,
.block-editor-block-list__layout table tfoot {
  border-top-width: 1px;
}
article .entry table tfoot th, article .entry table tfoot td, .wp_editor table tfoot th, .wp_editor table tfoot td,
.block-editor-block-list__layout table tfoot th,
.block-editor-block-list__layout table tfoot td {
  font-weight: inherit;
}

.wp-block-table {
  overflow: inherit;
  margin: 30px 0;
}
.wp-block-table thead {
  border-bottom-width: inherit !important;
}
.wp-block-table.is-style-regular {
  border-top: 1px solid #c5c5c5;
  border-left: 1px solid #c5c5c5;
}
.wp-block-table.is-style-regular th, .wp-block-table.is-style-regular td {
  border-bottom: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
}
.wp-block-table.is-style-regular th {
  background: #F3F3F3;
}
.wp-block-table.is-style-stripes table {
  border: none;
}

@media screen and (max-width: 767px) {
  .wp-block-table.sp_scroll table {
    min-width: 860px;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-table.sp_scroll .scroll-hint-icon {
    top: 80px;
  }
}

/*-------------------------
  メディア - 画像
-------------------------*/
.wp-block-image {
  overflow: hidden;
}
.wp-block-image a {
  transition: all 0.25s ease-out;
}
body:not(.view_sp) .wp-block-image a:hover {
  opacity: 0.6;
  transition: all 0.25s ease-out;
}
.wp-block-image img {
  margin-bottom: 0 !important;
}
.wp-block-image img.ofi {
  height: 100%;
  max-width: inherit;
}
.wp-block-image .wp-element-caption {
  margin-top: 20px;
  margin-bottom: 0;
}

/*-------------------------
  メディア - ギャラリー
-------------------------*/
.wp-block-gallery.has-nested-images {
  gap: 0;
}
.wp-block-gallery.has-nested-images figure.wp-block-image img {
  aspect-ratio: 1/1;
}
.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption)::before {
  background: none;
  backdrop-filter: none;
}
.wp-block-gallery.has-nested-images figure.wp-block-image:has(figcaption) .wp-element-caption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 70%, transparent);
  text-shadow: none;
  padding: 5px 10px;
}

.wp-block-gallery {
  /*
  display: flex;
  flex-wrap: wrap;
  gap:0 !important;
  @include mq(sp) {
  	justify-content: space-between;
  }
  > *:not(.blocks-gallery-caption) {
  	position: relative;
  	z-index: 0;
  	width: calc((100% / 3) - 15px);
  	@include mq(sp) {
  		width: calc((100% / 2) - 5px);
  	}
  	&::before {
  		content: '';
  		display: block;
  		padding-bottom: 100%;
  	}
  	img {
  		@include absolute;
  		width: 100% !important;
  		height: 100% !important;
  		max-height: inherit;
  		object-fit: cover;
  		z-index: -1;
  	}
  	figcaption {
  		position: absolute;
  		bottom: 0;
  		left: 0;
  		right: 0;
  		background: linear-gradient(0deg, rgba(0, 0, 0, .7), rgba(0, 0, 0, .3) 70%, transparent);
  		color: #fff;
  		padding: 5px 10px;
  	}
  }
  .blocks-gallery-caption {
  	display: block;
  	width: 100%;
  	align-self: flex-start;
  }
  */
}

/*-------------------------
  メディア - メディアとテキスト
-------------------------*/
.wp-block-media-text {
  column-gap: 50px;
}
.wp-block-media-text .wp-block-media-text__content,
.wp-block-media-text .wp-block-media-text__media {
  width: auto;
  margin: 0 0 auto !important;
  padding: 0;
}
.wp-block-media-text .wp-block-media-text__media img {
  max-width: 100%;
}

.wp-block-media-text .wp-block-media-text__content,
.wp-block-media-text .wp-block-media-text__media,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__content,
.wp-block-media-text.is-vertically-aligned-center .wp-block-media-text__media {
  align-self: flex-start;
}

@media screen and (max-width: 767px) {
  .wp-block-media-text.is-stacked-on-mobile {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .wp-block-media-text.is-stacked-on-mobile > *:not(:first-child) {
    margin-top: 20px;
  }
}
.wp-block-media-text.is-stacked-on-mobile .wp-block-media-text__content {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .wp-block-media-text.is-stacked-on-mobile:not(.has-media-on-the-right) .wp-block-media-text__media {
    margin-right: 40px;
  }
}
@media screen and (min-width: 768px) {
  .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right .wp-block-media-text__media {
    margin-left: 40px;
  }
}

.wp-block-media-text.is-image-fill > .wp-block-media-text__media img {
  position: static;
  height: auto;
  width: auto;
  margin: 0;
}

/*-------------------------
  デザイン - ボタン
-------------------------*/
.wp-block-buttons {
  position: relative;
  justify-content: center;
}
.wp-block-buttons.is-content-justification-center {
  margin-left: auto;
  margin-right: auto;
}
.wp-block-buttons.is-content-justification-center > *:only-child {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .wp-block-buttons.is-layout-flex .wp-block-button {
    margin-bottom: 0 !important;
    justify-content: center;
  }
}

.wp-block-button {
  display: inline-flex;
  vertical-align: top;
}
.wp-block-button:only-child {
  width: 100%;
  margin-bottom: 0 !important;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .wp-block-button.wp-block-button__width-75 {
    width: 100%;
  }
}

:root {
  --button-background-color: #002F7B;
  --button-border-color: #f00;
  --button-text-color: #FFFFFF;
}

.wp-block-button {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wp-block-button {
    margin-bottom: 0 !important;
    width: 100%;
  }
}
.wp-block-button > .wp-block-button__link {
  overflow: hidden;
  position: relative;
  z-index: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 386px;
  min-width: 386px;
  min-height: 54px;
  height: 100%;
  background-color: var(--c_white);
  border-radius: 50px;
  color: #333;
  font-size: 1rem;
  font-weight: 700;
  line-height: var(--lh_hd);
  text-align: center;
  padding: 5px 60px;
}
@media screen and (max-width: 767px) {
  .wp-block-button > .wp-block-button__link {
    min-width: inherit;
    min-height: 48px;
  }
}
.wp-block-button a:not([href]),
.wp-block-button a[href=""],
.wp-block-button a[href="#"],
.wp-block-button a[href=""],
.wp-block-button a[href="#"] {
  pointer-events: none;
}
.wp-block-button a[href] {
  position: relative;
  z-index: 0;
  text-decoration: none;
}
.wp-block-button a[href]::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease-out;
  z-index: -1;
}
.wp-block-button a[href]:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
  transition: all 0.3s ease-out;
}
.wp-block-button a[href]::after {
  transition: transform ease 0.2s;
}
.wp-block-button a[href]:not(.has-text-color):not(.has-background)::before {
  opacity: 1;
  background: var(--c_blue1);
}
.wp-block-button a[href].has-background::before {
  opacity: 0.2;
  background: var(--c_white);
}
.wp-block-button a[href]:not(.has-background)::before {
  opacity: 0.2;
  background-color: currentColor;
}
.wp-block-button a[href].has-white-background-color::before {
  opacity: 1;
  background-color: #CCCCFF;
}
.wp-block-button a[href].has-white-color {
  color: #00FF00 !important;
}
.wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color):not(.has-background) {
  background-color: var(--c_blue1);
  border: 1px solid var(--c_blue1) !important;
  color: #fff !important;
}
.wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color):not(.has-background)::before {
  background-color: var(--c_white);
  transition: all 0.3s ease-out;
}
.wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color):not(.has-background)::after {
  content: "";
  position: absolute;
  right: 23px;
  width: 14px;
  height: 13px;
  display: block;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon-arrow01.svg);
  mask-image: url(../img/icon-arrow01.svg);
  background-color: currentColor;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color):not(.has-background)::after {
    right: 20px;
  }
}
.wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-text-color):not(.has-background):hover {
  color: #333 !important;
  border: 1px solid #333 !important;
  z-index: 2;
}
.wp-block-button:not(.is-style-outline) > .wp-block-button__link:not(.has-background) {
  border: 2px solid currentColor;
}
.wp-block-button:not(.is-style-outline) > .wp-block-button__link.has-black-background-color {
  color: var(--c_white);
}
.wp-block-button:not(.is-style-outline) > .wp-block-button__link.has-black-color.has-background {
  color: var(--c_white) !important;
}
.wp-block-button:not(.is-style-outline) > .wp-block-button__link::before {
  background: var(--c_blue1);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease-out;
  z-index: -1;
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):not(.has-background) {
  border: 1px solid #000000 !important;
  border: 1px solid #333 !important;
  color: var(--c_blue2) !important;
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):not(.has-background)::after {
  content: "";
  position: absolute;
  right: 23px;
  width: 14px;
  height: 13px;
  display: block;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  -webkit-mask-image: url(../img/icon-arrow01.svg);
  mask-image: url(../img/icon-arrow01.svg);
  background-color: currentColor;
  background-size: cover;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):not(.has-background)::after {
    right: 20px;
  }
}
.wp-block-button.is-style-outline > .wp-block-button__link:not(.has-text-color):not(.has-background):hover {
  color: #fff !important;
  border: 1px solid var(--c_blue1) !important;
  z-index: 2;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-black-background-color {
  background-color: var(--c_white) !important;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-black-background-color::before {
  opacity: 1;
  background-color: #CCCCFF;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-white-background-color {
  border-color: #CCCCCC;
}
.wp-block-button.is-style-outline > .wp-block-button__link.has-white-color {
  border-color: #CCCCCC;
}

/*-------------------------
  デザイン - 区切り
-------------------------*/
.wp-block-separator {
  border: none;
  border-bottom: 2px solid currentColor;
  margin-left: auto;
  margin-right: auto;
}

.wp-block-separator.is-style-dots {
  background: none !important;
  border: none;
  text-align: center;
  line-height: 1;
  height: auto;
}
.wp-block-separator.is-style-dots:before {
  content: "···";
  color: currentColor;
  font-size: 1.5em;
  letter-spacing: 2em;
  padding-left: 2em;
  font-family: serif;
}

.wp-block-separator.has-css-opacity {
  opacity: 0.4;
}

.wp-block-separator.has-alpha-channel-opacity {
  opacity: 1;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  width: 100px;
}

.wp-block-separator.has-background:not(.is-style-dots) {
  border-bottom: none;
  height: 1px;
}

.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
  height: 2px;
}

/*-------------------------
  デザイン - スペーサー
-------------------------*/
[style*="var(--wp--preset--spacing--20)"].wp-block-spacer {
  height: 10px !important;
}

[style*="var(--wp--preset--spacing--30)"].wp-block-spacer {
  height: 32px !important;
}

[style*="var(--wp--preset--spacing--40)"].wp-block-spacer {
  height: 60px !important;
}
@media screen and (max-width: 767px) {
  [style*="var(--wp--preset--spacing--40)"].wp-block-spacer {
    height: 40px !important;
  }
}

[style*="var(--wp--preset--spacing--50)"].wp-block-spacer {
  height: 80px !important;
}

[style*="var(--wp--preset--spacing--60)"].wp-block-spacer {
  height: 100px !important;
}
@media screen and (max-width: 767px) {
  [style*="var(--wp--preset--spacing--60)"].wp-block-spacer {
    height: 60px !important;
  }
}

[style*="var(--wp--preset--spacing--70)"].wp-block-spacer {
  height: 120px !important;
}
@media screen and (max-width: 767px) {
  [style*="var(--wp--preset--spacing--70)"].wp-block-spacer {
    height: 80px !important;
  }
}

[style*="var(--wp--preset--spacing--80);"].wp-block-spacer {
  height: 200px !important;
}
@media screen and (max-width: 767px) {
  [style*="var(--wp--preset--spacing--80);"].wp-block-spacer {
    height: 120px !important;
  }
}

.wp-block-spacer {
  position: relative;
  margin: 0 !important;
}
.wp-block-spacer::before {
  content: "～余白～右のプリセットからサイズを選んでください";
  white-space: pre;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none !important;
}

[style*="var(--wp--preset--spacing--20)"].wp-block-spacer::before {
  content: "～余白～ 10px";
}

[style*="var(--wp--preset--spacing--30)"].wp-block-spacer::before {
  content: "～余白～ 32px";
}

[style*="var(--wp--preset--spacing--40)"].wp-block-spacer::before {
  content: "～余白～ pc:60px／sp:40px";
}

[style*="var(--wp--preset--spacing--50)"].wp-block-spacer::before {
  content: "～余白～ 80px";
}

[style*="var(--wp--preset--spacing--60)"].wp-block-spacer::before {
  content: "～余白～ pc:100px／sp:60px";
}

[style*="var(--wp--preset--spacing--70)"].wp-block-spacer::before {
  content: "～余白～ pc:120px／sp:80px";
}

[style*="var(--wp--preset--spacing--80)"].wp-block-spacer::before {
  content: "～余白～ pc:200px／sp:100px";
}

/*-------------------------
  その他
-------------------------*/
#end-resizable-editor-section {
  display: none;
}

.aligncenter {
  clear: both;
}

.items-justified-left {
  justify-content: flex-start;
}

.items-justified-center {
  justify-content: center;
}

.items-justified-right {
  justify-content: flex-end;
}

.items-justified-space-between {
  justify-content: space-between;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #ddd;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 100%;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/*
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

	PAGE

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
*/
/*-------------------------
  ROLL OVER
-------------------------*/
.ro {
  transition: all 0.25s ease-out;
}
body:not(.view_sp) .ro:hover {
  opacity: 0.6;
  transition: all 0.25s ease-out;
}
.ro:hover img {
  opacity: 1;
}
.ro a:hover, .ro a:hover img {
  transition: none;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .ro:hover, .ro a:hover, .ro a:hover img {
    opacity: 1;
  }
}

/*-------------------------
  pcCont/spCont
-------------------------*/
@media screen and (min-width: 768px) {
  .sp, .spCont {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc, .pcCont {
    display: none;
  }
}
/*-------------------------
  COMMONS
-------------------------*/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.f_left {
  float: left;
}

.f_right {
  float: right;
}

.clear {
  clear: both;
}

button {
  cursor: pointer;
  outline: none;
}

.fBox, .flex {
  display: flex;
}

svg {
  fill: currentColor;
}

.preload * {
  transition: none !important;
}

.ofi {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.ac_btn {
  cursor: pointer;
}

.ac_box {
  display: none;
}

.slider {
  opacity: 0;
  transition: opacity 0.3s linear;
}

.slider.slick-initialized {
  opacity: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: inherit;
}

.bold, strong {
  /*font-weight: inherit;*/
}

@media screen and (min-width: 768px) {
  .ptac {
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  .pc_flex, .pflex {
    display: flex;
  }
}

code {
  display: inline-block;
  vertical-align: middle;
  padding: 0.25em 0.25em;
  color: #444;
  background-color: #e7edf3;
  border-radius: 3px;
  border: solid 1px #d6dde4;
  text-indent: 0;
  font-family: inherit;
  font-size: 80%;
  line-height: 1.2;
}
code.red {
  display: block;
  background-color: #f00;
  border: none;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
  padding: 8px;
  text-align: center;
  font-size: 100%;
}

/*== 250625追加！ ====================================================================================================*/
@media screen and (max-width: 767px) {
  body.admin-bar {
    margin-top: -46px !important;
    padding-top: 46px;
  }
}
body.admin-bar #header #header_nav {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  body.admin-bar #header {
    margin-top: 46px;
  }
}
@media screen and (max-width: 767px) {
  body.admin-bar #menuBtn {
    margin-top: 46px;
  }
}

/*== index TOP ====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ トップページ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.home .dami {
  display: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ title / txt
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hd01 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: 700;
  position: relative;
}
.hd01 .small {
  display: block;
}
.hd01 .big {
  position: relative;
}
.hd01 .big .in_color {
  color: #EF0A0A;
}
.hd01 .big::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: #0071BC;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}
@media print, screen and (max-width: 1024px) {
  .hd01 .big::after {
    width: 15px;
  }
}

.hd01.sec_title {
  color: #1E82D2;
  font-weight: 900;
}

.hd02 {
  color: #1E82D2;
  font-weight: 900;
  line-height: 1.5;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ txt
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.txt {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
}
@media print, screen and (max-width: 1024px) {
  .txt {
    line-height: 1.8;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 画像TOPページのみ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_toppagep img {
  display: block;
  height: auto;
  width: 100%;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ ボタン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.btn_area {
  cursor: pointer;
}
.btn_area .base_btn {
  border: 1px solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 50px;
  box-sizing: border-box;
  min-height: 48px;
  transition: all 0.25s ease-out;
  color: #333333;
}
@media print, screen and (max-width: 1024px) {
  .btn_area .base_btn {
    min-height: 40px;
  }
}
.btn_area .base_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  background: url(../img/arrow01.svg) no-repeat center;
  background-size: cover;
  transition: all 0.25s ease-out;
}
.btn_area .base_btn span {
  font-size: 1rem;
  font-weight: 700;
}
.btn_area .base_btn.small_btn {
  width: 210px;
  padding: 7px 15px;
  transition: all 0.3s ease-out;
  color: #333;
  overflow: hidden;
  background-color: #fff;
}
.btn_area .base_btn.small_btn::after {
  width: 15px;
  height: 14px;
  right: 26px;
}
.btn_area .base_btn.small_btn span {
  font-weight: 600;
  padding-right: 10px;
  color: inherit;
  transition: all 0.15s ease-out;
}
.btn_area .base_btn.small_btn::before {
  background: var(--c_blue1);
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease-out;
  z-index: -1;
}
.btn_area .base_btn.small_btn:hover {
  color: var(--c_white);
  transition: all 0.3s ease-out;
  border-color: var(--c_blue1);
  border: none;
}
.btn_area .base_btn.small_btn:hover::after {
  transition: all 0.7s ease-out;
  filter: brightness(1000%) saturate(0%) contrast(100%);
  z-index: 2;
}
.btn_area .base_btn.small_btn:hover span {
  color: var(--c_white);
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 3;
}
.btn_area .base_btn.small_btn:hover::before {
  transform: scale(1, 1);
  z-index: 1;
}
.btn_area .base_btn .small_btn:hover::before {
  transform: scale(1, 1);
  z-index: 1;
  border-radius: 48px;
}
.btn_area .base_btn.medium_btn {
  width: 386px;
  padding: 10px 15px;
  transition: all 0.3s ease-out;
  color: #333;
  overflow: hidden;
  background-color: #fff;
}
@media print, screen and (max-width: 1024px) {
  .btn_area .base_btn.medium_btn {
    width: 43.71%;
  }
}
@media print, screen and (max-width: 830px) {
  .btn_area .base_btn.medium_btn {
    width: 94.445%;
    padding: 8px 15px;
  }
}
.btn_area .base_btn.medium_btn::after {
  width: 14px;
  height: 13px;
  right: 23px;
}
@media print, screen and (max-width: 830px) {
  .btn_area .base_btn.medium_btn::after {
    right: 16px;
  }
}
.btn_area .base_btn.medium_btn::before {
  background: var(--c_blue1);
  position: absolute;
  top: 0%;
  left: 0px;
  content: "";
  width: 110%;
  height: 150%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.3s ease-out;
  z-index: -1;
}
.btn_area .base_btn.medium_btn span {
  padding-right: 10px;
  color: inherit;
  transition: all 0.3s ease-out;
}
@media print, screen and (max-width: 1024px) {
  .btn_area .base_btn.medium_btn span {
    font-size: 0.9375rem;
  }
}
.btn_area .base_btn.medium_btn:hover {
  transition: all 0.25s ease-out;
  border-color: var(--c_blue1);
}
.btn_area .base_btn.medium_btn:hover::after {
  transition: all 0.7s ease-out;
  filter: brightness(1000%) saturate(0%) contrast(100%);
  z-index: 2;
}
.btn_area .base_btn.medium_btn:hover span {
  color: var(--c_white);
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 3;
}
.btn_area .base_btn.medium_btn:hover::before {
  transform: scale(1, 1);
  z-index: 1;
}
.btn_area .base_btn .medium_btn:hover::before {
  transform: scale(1, 1);
  z-index: 1;
}
.btn_area .base_btn.big_btn {
  width: 473px;
  min-height: 91px;
  padding: 10.5px 15px;
  background: linear-gradient(79.48deg, #FF9F1A 0%, #FFDA68 50%, #FF9F1A 100%);
  background-position: 100% 100%;
  background-size: 200% 100%;
  flex-direction: column;
}
@media print, screen and (max-width: 1024px) {
  .btn_area .base_btn.big_btn {
    width: 53.55%;
  }
}
@media print, screen and (max-width: 830px) {
  .btn_area .base_btn.big_btn {
    width: 94.445%;
    min-height: 60px;
    padding: 8px 15px;
  }
}
.btn_area .base_btn.big_btn::after {
  background: url(../img/arrow02.svg) no-repeat center;
  background-size: cover;
  width: 25px;
  height: 24px;
  right: 32px;
}
@media print, screen and (max-width: 830px) {
  .btn_area .base_btn.big_btn::after {
    width: 20px;
    height: 18px;
    right: 20px;
  }
}
.btn_area .base_btn.big_btn span {
  font-weight: 700;
}
.btn_area .base_btn.big_btn .small {
  font-size: 0.9375rem;
  margin-bottom: -10px;
}
@media print, screen and (max-width: 1024px) {
  .btn_area .base_btn.big_btn .small {
    font-size: 0.875rem;
    margin-bottom: -6px;
  }
}
.btn_area .base_btn.big_btn .big {
  font-size: 1.5rem;
}
@media print, screen and (max-width: 1024px) {
  .btn_area .base_btn.big_btn .big {
    font-size: 1.375rem;
  }
}
.btn_area .base_btn.big_btn:hover {
  background-position: 0% 100%;
}
.btn_area .base_btn.big_btn:hover::after {
  filter: none;
}

.btn_area_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 40px auto 0;
  max-width: 883px;
}
@media print, screen and (max-width: 830px) {
  .btn_area_row {
    flex-direction: column;
    row-gap: 16px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ キャラクターアイコン
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 流通BMS対応EDIシステムSuperVとは
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#about-super-v {
  width: 100%;
  background-color: #F1F5FB;
  padding: 72px 0 80px;
  position: relative;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v {
    padding: 59px 0 37px;
  }
}
#about-super-v .char-icon.char_left {
  width: 119px;
  position: absolute;
  top: -40px;
  left: 20px;
  z-index: 1;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .char-icon.char_left {
    width: 48px;
    top: -164px;
    left: 13px;
  }
}
#about-super-v .char-icon.char_left img:first-child {
  width: 69px;
  height: auto;
  margin: 0 0 0 auto;
  height: auto;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .char-icon.char_left img:first-child {
    width: 100%;
    margin: 0;
  }
}
#about-super-v .char-icon.char_left img:last-child {
  width: 59px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .char-icon.char_left img:last-child {
    display: none;
  }
}
#about-super-v .char-icon.char_right {
  position: absolute;
  bottom: 28%;
  right: 20px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .char-icon.char_right {
    display: none;
  }
}
#about-super-v .char-icon.char_right img {
  width: 91px;
  height: auto;
}
#about-super-v .innerWrap .hd01 .small {
  font-size: 1.5625rem;
  font-weight: 600;
  margin-bottom: -40px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .hd01 .small {
    font-size: 1.25rem;
    margin-bottom: -24px;
  }
}
#about-super-v .innerWrap .hd01 .big {
  font-size: 2.9375rem;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .hd01 .big {
    font-size: 1.875rem;
    padding-bottom: 8px;
  }
}
#about-super-v .innerWrap .hd01 .big .big_txt {
  font-size: 4.4375rem;
  font-weight: 600;
  line-height: 1.5;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .hd01 .big .big_txt {
    font-size: 3.375rem;
  }
}
#about-super-v .innerWrap .hd01 .big .in_color {
  color: #EF0A0A;
  font-size: 4.4375rem;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .hd01 .big .in_color {
    font-size: 3.375rem;
  }
}
#about-super-v .innerWrap .hd01 .big::after {
  bottom: 6px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .hd01 .big::after {
    bottom: 0;
  }
}
#about-super-v .innerWrap .top_content {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .top_content {
    flex-direction: column;
    margin-top: 31px;
  }
}
#about-super-v .innerWrap .top_content .img_area {
  margin-left: -10px;
  width: 37.5%;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .top_content .img_area {
    width: 100%;
    order: 2;
  }
}
@media print, screen and (max-width: 768px) {
  #about-super-v .innerWrap .top_content .img_area {
    width: 102.223%;
    order: 2;
    margin-left: auto;
    margin-left: -2px;
  }
}
#about-super-v .innerWrap .top_content .txt_area {
  width: 58.33%;
  margin-top: 28px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .top_content .txt_area {
    width: 100%;
    margin-top: 0;
    order: 1;
    padding: 0 23.5px;
    margin-bottom: 31px;
  }
}
#about-super-v .innerWrap .top_content .txt_area .inner_row {
  margin-top: 20px;
  display: flex;
  column-gap: 30px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .top_content .txt_area .inner_row {
    margin-top: 30px;
    flex-direction: column;
    column-gap: 0;
    row-gap: min(6.1vw, 30px);
  }
}
#about-super-v .innerWrap .top_content .txt_area .inner_row figure {
  width: 19.716%;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .top_content .txt_area .inner_row figure {
    width: 44.09%;
    margin: auto;
    max-width: 173px;
  }
}
#about-super-v .innerWrap .top_content .txt_area .inner_row .txt {
  width: 76%;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .top_content .txt_area .inner_row .txt {
    width: 100%;
  }
}
#about-super-v .innerWrap .top_content .txt_area .btn_area a {
  margin: 30px 0 0 auto;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .top_content .txt_area .btn_area a {
    margin: 23px auto 0;
  }
}
#about-super-v .innerWrap .bottom_content {
  margin-top: 56px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content {
    margin-top: 41px;
  }
}
#about-super-v .innerWrap .bottom_content .hd02 {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 16px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .hd02 {
    font-size: 1.6875rem;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}
#about-super-v .innerWrap .bottom_content .txt {
  margin-bottom: 30px;
  text-align: center;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .txt {
    position: relative;
    overflow: hidden;
    text-align: left;
    padding: 0 19px;
    height: 140px;
    margin-bottom: 0;
  }
}
#about-super-v .innerWrap .bottom_content .more_btm {
  display: none;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .more_btm {
    display: block;
    text-align: right;
    margin-top: 10px;
  }
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .more_btm span {
    font-size: 0.75rem;
    position: relative;
    padding-right: 36px;
  }
  #about-super-v .innerWrap .bottom_content .more_btm span::after {
    content: "";
    display: block;
    width: 11px;
    height: 7px;
    background: url(../img/arrow04.svg) no-repeat center;
    background-size: cover;
    position: absolute;
    top: 52%;
    right: 20px;
    transform: translateY(-50%);
  }
}
#about-super-v .innerWrap .bottom_content .inner_box {
  display: flex;
  justify-content: space-between;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box {
    margin-top: 30px;
    flex-direction: column;
  }
}
#about-super-v .innerWrap .bottom_content .inner_box .group {
  background-color: #fff;
  border-radius: 13px;
  padding: 16px 0 32px;
  width: 47.667%;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .group {
    width: 100%;
    padding: 20px 0 19px;
  }
}
#about-super-v .innerWrap .bottom_content .inner_box .group p {
  font-size: 1.0625rem;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
  display: block;
  margin-left: 20px;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .group p {
    font-size: 1rem;
    margin-left: 20px;
    min-height: auto;
    line-height: 1.5;
    padding-right: 20px;
  }
}
#about-super-v .innerWrap .bottom_content .inner_box .group p::after {
  content: "";
  display: block;
  width: 3px;
  height: 20px;
  background: #0071BC;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .group p::after {
    top: 12px;
  }
}
#about-super-v .innerWrap .bottom_content .inner_box .group picture {
  width: 100%;
  display: block;
  padding: 0 0 0 12px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .group picture {
    padding: 0 7px;
  }
}
#about-super-v .innerWrap .bottom_content .inner_box .group span {
  font-size: 1.125rem;
  display: block;
  text-align: center;
  margin-top: 37px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .group span {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 27px;
    margin-top: 6px;
  }
}
#about-super-v .innerWrap .bottom_content .inner_box .group span span {
  color: #ED1C24;
  display: inline;
  font-weight: 700;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .group span span {
    font-size: 1.3125rem;
    display: block;
    margin-top: -6px;
    font-weight: 900;
  }
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .group:last-child > span {
    font-size: 1.125rem;
    line-height: 1.7;
    padding: 0 24px;
    font-weight: 600;
    margin-top: -4px;
  }
}
#about-super-v .innerWrap .bottom_content .inner_box .group:last-child picture {
  padding: 0 10px 0 2px;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .group:last-child picture {
    padding: 0 7px;
  }
}
#about-super-v .innerWrap .bottom_content .inner_box .about_arrow_area {
  display: none;
}
@media print, screen and (max-width: 1024px) {
  #about-super-v .innerWrap .bottom_content .inner_box .about_arrow_area {
    display: block;
    width: 59px;
    margin: -10px auto -16px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 流通システムのこんなお悩みもSuperVでまとめて解決！
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#super-v-solution {
  width: 100%;
  background: linear-gradient(84.35deg, #A5DDFE 25.24%, #BBE2FA 52.77%, #D1E7F5 80.3%);
  padding: 94px 0 80px;
  position: relative;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution {
    padding: 43px 0 40px;
  }
}
#super-v-solution .char-icon.char_left {
  position: absolute;
  top: -160px;
  left: 60px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .char-icon.char_left {
    top: -115px;
    left: 26px;
  }
}
#super-v-solution .char-icon.char_left img {
  width: 148px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .char-icon.char_left img {
    width: 74px;
  }
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01 {
    width: 81.67%;
    margin: 0 auto;
  }
}
#super-v-solution .hd01::before, #super-v-solution .hd01::after {
  width: 1px;
  height: 74px;
  background-color: #333;
  bottom: 24px;
  position: absolute;
  display: block;
  content: "";
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01::before, #super-v-solution .hd01::after {
    height: 70px;
  }
}
#super-v-solution .hd01::before {
  right: 50%;
  transform: rotate(20deg);
  margin-right: -274px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01::before {
    right: 50%;
    transform: rotate(28deg);
    margin-right: -156px;
    bottom: 4px;
  }
}
#super-v-solution .hd01::after {
  left: 50%;
  transform: rotate(-20deg);
  margin-left: -274px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01::after {
    left: 50%;
    transform: rotate(-28deg);
    margin-left: -156px;
    bottom: 4px;
  }
}
#super-v-solution .hd01 .small {
  font-size: 1.625rem;
  font-weight: 900;
  margin-bottom: -32px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01 .small {
    font-size: 1.0625rem;
    margin-bottom: -14px;
  }
}
#super-v-solution .hd01 .big {
  font-size: 2.25rem;
  font-weight: 900;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01 .big {
    font-size: 1.125rem;
  }
  #super-v-solution .hd01 .big::after {
    bottom: -12px;
  }
}
#super-v-solution .hd01 .big .big_txt {
  font-size: 2.875rem;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01 .big .big_txt {
    font-size: 1.6875rem;
  }
}
#super-v-solution .hd01 .big .in_color {
  font-size: 2.875rem;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01 .big .in_color {
    font-size: 1.6875rem;
  }
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .hd01 .big .sp_big_txt {
    font-size: 1.375rem;
  }
}
#super-v-solution .txt {
  margin-top: 30px;
  text-align: center;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .txt {
    padding: 0 20px;
    text-align: left;
  }
}
#super-v-solution .card {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card {
    margin-top: 24px;
    flex-direction: column;
    row-gap: 21px;
  }
}
#super-v-solution .card li {
  width: 31%;
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 0 37px;
  padding: 2% 0 3.0833333333%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li {
    width: 100%;
    padding: 22px 0 20px;
  }
}
#super-v-solution .card li .text_icon_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 76px;
  padding: 0 10.16% 0 7.97%;
  margin-bottom: 21px;
  position: relative;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li .text_icon_row {
    min-height: 61px;
    align-items: flex-start;
    padding: 0 26px;
    justify-content: flex-start;
    column-gap: 21px;
    margin-bottom: 22px;
  }
}
#super-v-solution .card li .text_icon_row::after {
  content: "";
  display: block;
  width: 47px;
  height: 20px;
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: url(../img/solution_arrow.svg) no-repeat center;
  background-size: cover;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li .text_icon_row::after {
    width: 50px;
    height: 20px;
  }
}
#super-v-solution .card li .text_icon_row figure {
  width: 26.18%;
  display: block;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li .text_icon_row figure {
    width: 62px;
  }
}
#super-v-solution .card li .text_icon_row span {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.6;
  width: 68.8%;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li .text_icon_row span {
    font-size: 1rem;
    line-height: 1.7;
    width: 74.5%;
    margin-top: 4px;
  }
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li:first-child .text_icon_row {
    margin-bottom: 36px;
  }
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li:first-child .text_icon_row::after {
    bottom: -28px;
  }
}
#super-v-solution .card li .hd02 {
  text-align: center;
  margin-bottom: 5px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 900;
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li .hd02 {
    justify-content: flex-start;
    text-align: left;
    min-height: auto;
    padding: 0 30px 0 0px;
    width: 83.9%;
    margin: 0 auto 11px;
  }
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li:last-child .hd02 {
    padding: 0;
  }
}
#super-v-solution .card li p {
  font-size: 0.9375rem;
  line-height: 1.7;
  padding: 0 8.8%;
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .card li p {
    font-size: 1rem;
    padding: 0 7.778%;
  }
}
@media print, screen and (max-width: 1024px) {
  #super-v-solution .medium_btn span {
    text-align: center;
    line-height: 1.7;
    padding-right: 0;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 8つの特長
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#super-v-features {
  padding: 64px 0 80px;
  background-color: var(--c_white);
}
@media print, screen and (max-width: 1024px) {
  #super-v-features {
    padding: 44px 0;
  }
}
#super-v-features .outerWrap {
  position: relative;
}
#super-v-features .outerWrap .char-icon.char_right {
  position: absolute;
  top: -152px;
  right: 70px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .char-icon.char_right {
    top: -76px;
    right: 15px;
  }
}
#super-v-features .outerWrap .char-icon.char_right img {
  width: 199px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .char-icon.char_right img {
    width: 86px;
  }
}
#super-v-features .outerWrap .sec_title {
  font-size: 2.625rem;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .sec_title {
    font-size: 1.6875rem;
    line-height: 1.5;
  }
}
#super-v-features .outerWrap .txt {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 30px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .txt {
    text-align: left;
    padding: 0 20px;
    margin-top: 12px;
    margin-bottom: 20px;
  }
}
#super-v-features .outerWrap .hd02 {
  position: relative;
  text-align: center;
  font-size: 1.5625rem;
  padding-top: 30px;
  margin-bottom: 24px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .hd02 {
    font-size: 1.25rem;
    padding-top: 16px;
    margin-bottom: 18px;
  }
}
#super-v-features .outerWrap .hd02::after {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #1E82D2;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
#super-v-features .outerWrap .list {
  column-gap: 36px;
  row-gap: 27px;
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
  grid-template-columns: calc((100% - 36px) / 2) calc((100% - 36px) / 2);
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    column-gap: 0;
    padding: 0 10px;
    row-gap: 16px;
  }
}
#super-v-features .outerWrap .list li {
  display: flex;
  align-items: center;
  border: 1px solid #838383;
  border-radius: 6px;
  column-gap: 18px;
  padding: 3.264604811% 3.7800687285% 2.9209621993% 5%;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .list li {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "icon title" "desc desc";
    column-gap: 17px;
    row-gap: 11px;
    align-items: center;
    padding: 19px 0 18px;
  }
}
#super-v-features .outerWrap .list li:nth-child(n+4) {
  column-gap: 27px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .list li:nth-child(n+4) {
    column-gap: 17px;
  }
}
#super-v-features .outerWrap .list li figure {
  min-width: 73px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .list li figure {
    min-width: auto;
    width: 57px;
    margin-left: 28px;
  }
}
#super-v-features .outerWrap .list li .txt_area {
  max-width: 430px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .list li .txt_area {
    width: 100%;
    display: contents;
  }
}
#super-v-features .outerWrap .list li .txt_area h4 {
  font-size: 1.3125rem;
  font-weight: 700;
  color: #1E82D2;
  line-height: 1.5;
  margin-bottom: 4px;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .list li .txt_area h4 {
    font-size: 1.25rem;
    line-height: 1.5;
    grid-area: title;
    min-height: 56px;
    width: 220px;
    display: flex;
    padding-top: 6px;
  }
}
#super-v-features .outerWrap .list li .txt_area p {
  font-size: 0.875rem;
  line-height: 1.7;
  width: 100%;
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .list li .txt_area p {
    padding: 0 21px;
    grid-area: desc;
  }
}
@media print, screen and (max-width: 1024px) {
  #super-v-features .outerWrap .btn_area_row {
    margin: 41px auto 0;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ Q&A
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━*/
#faq {
  background-color: #F1F5FB;
  padding: 60px 0 80px;
}
@media print, screen and (max-width: 1024px) {
  #faq {
    padding: 40px 0 58px;
  }
}
#faq .sec_title {
  font-size: 1.875rem;
  margin-bottom: 31px;
}
@media print, screen and (max-width: 1024px) {
  #faq .sec_title {
    font-size: 1.6875rem;
    margin-bottom: 24px;
  }
}
#faq .btn_area_row {
  margin: 39px auto 0;
}
@media print, screen and (max-width: 1024px) {
  #faq .accordion_area {
    margin: 0 20px;
  }
}
@media print, screen and (max-width: 1024px) {
  #faq .medium_btn span {
    text-align: center;
    line-height: 1.7;
    padding-right: 0;
  }
}

details {
  border-top: 1px solid #333;
  padding: 30px 0 5px;
  /* --------アコーディオンの中身のスタイル（開いている時）-------- */
  /* アコーディオンが開いた時のスタイル */
}
@media print, screen and (max-width: 1024px) {
  details {
    padding: 24px 0 16px;
  }
}
details:last-child {
  border-bottom: 1px solid #333;
}
details::details-content {
  transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
  height: 0;
  opacity: 0;
  overflow: clip;
}
details[open]::details-content {
  opacity: 1;
}
details[open] .icon {
  transform: rotate(180deg);
}
details summary {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
}
details summary::-webkit-details-marker {
  display: none;
}
details summary::marker {
  display: none;
}
details .q {
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 33px;
  position: relative;
  list-style: none;
  margin-bottom: 20px;
  line-height: 1.5;
  cursor: pointer;
}
@media print, screen and (max-width: 1024px) {
  details .q {
    padding-left: 34px;
    padding-right: 36px;
    margin-bottom: 10px;
  }
}
details .q::after {
  content: "";
  display: block;
  width: 13px;
  height: 7px;
  background: url(../img/arrow03.svg) no-repeat center;
  background-size: cover;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.5s;
}
@media print, screen and (max-width: 1024px) {
  details .q::after {
    top: 20%;
    right: 6px;
  }
}
details[open] .q::after {
  transform: translateY(-50%) rotate(0deg);
  transition: all 0.5s;
}
details .a {
  font-size: 1rem;
  padding-left: 33px;
  padding-right: 115px;
  padding-bottom: 20px;
  position: relative;
  line-height: 1.8;
}
@media print, screen and (max-width: 1024px) {
  details .a {
    padding-left: 34px;
    padding-right: 0;
  }
}
details .a a {
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: all 0.25s ease-out;
}
details .a a:hover {
  opacity: 0.65;
  transition: all 0.25s ease-out;
}
details .q::before, details .a::before {
  font-size: 1.375rem;
  font-weight: 800;
  width: 17px;
  height: 32px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (max-width: 1024px) {
  details .q::before, details .a::before {
    left: 6px;
  }
}
details .q::before {
  content: "Q";
  color: #1E82D2;
  top: -4px;
}
details .a::before {
  content: "A";
  color: #FF8C1A;
}

@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords; /* height:0（数値型） → auto（文字型） のアニメーションを可能にするための指定 */
  }
  details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    height: 150px;
    overflow-y: scroll; /* 溢れる場合はスクロール可能にする */
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ トップページ - MV
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#top-mainvisual {
  overflow: hidden;
  position: relative;
  z-index: 0;
  background: linear-gradient(#a5ddfe 1.44%, #bbe2f9 50.72%, #d1e7f5 100%);
  padding: 89px 40px 5.99%;
}
@media screen and (max-width: 767px) {
  #top-mainvisual {
    min-height: 734px;
    padding: 11.795% 0 0;
  }
}
#top-mainvisual .top_anime {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  max-width: 1920px;
  width: 140%;
  transform: translateX(-39%);
}
@media screen and (max-width: 767px) {
  #top-mainvisual .top_anime {
    position: relative;
    width: auto;
    width: 870px;
    transform: translateX(-49%);
    margin-top: -130px;
  }
}
@media screen and (max-width: 767px) {
  #top-mainvisual .top_anime > * {
    transform: translate(-10px, 20px);
  }
}
#top-mainvisual .innerWrap {
  max-width: 1466px;
  padding: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #top-mainvisual .textWrap {
    max-width: 554px;
    width: 37.79%;
  }
}
@media screen and (max-width: 767px) {
  #top-mainvisual .textWrap {
    max-width: 358px;
    margin: 0 auto;
  }
}
#top-mainvisual .title {
  position: relative;
  z-index: 0;
}
#top-mainvisual .title .text img {
  width: 100%;
  height: auto;
}
#top-mainvisual .title .illust {
  position: absolute;
  z-index: -1;
  top: 1.15%;
  right: 3.25%;
  width: 24.998%;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .title .illust {
    top: 8.045%;
    right: 10.336%;
    width: 25.42%;
  }
}
#top-mainvisual .title .illust img {
  height: auto;
}
#top-mainvisual .title .illust .parts1 {
  position: relative;
  transform: translateY(20.085%);
  width: 55.64%;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .title .illust .parts1 {
    width: 60.45%;
    transform: translateY(15.4%);
    clip-path: inset(0 0 30% 0);
  }
}
#top-mainvisual .title .illust .parts2_1 {
  position: absolute;
  top: 9.033%;
  right: 11%;
  width: 31.87%;
}
#top-mainvisual .title .illust .parts2_2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 38.47%;
}
#top-mainvisual .point {
  display: flex;
  gap: 3.612%;
  margin: 3.612% 0 0;
}
@media screen and (max-width: 767px) {
  #top-mainvisual .point {
    justify-content: center;
    gap: 3.635%;
  }
}
#top-mainvisual .point li {
  width: 29.244%;
  border-radius: 100%;
  box-shadow: 6px 6px 12px rgba(72, 123, 164, 0.5);
}
@media screen and (max-width: 767px) {
  #top-mainvisual .point li {
    width: 26.82%;
    box-shadow: 3px 3px 6px rgba(72, 123, 164, 0.5);
  }
}
#top-mainvisual .point img {
  max-width: 100%;
  height: auto;
}

/*-------------------------
  アニメーション
-------------------------*/
#top-mainvisual .title {
  animation: MaskBottomLeft 0.35s 0.5s ease-out 1 forwards;
  clip-path: circle(0% at 0 0);
}
#top-mainvisual .title .parts2_2 {
  transform: rotate(0deg);
  animation: PikaPika 1.25s 0s linear infinite;
}
#top-mainvisual .point li {
  opacity: 0;
  transform: scale(0);
  animation: PopInScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
#top-mainvisual .point li:nth-child(1) {
  animation-delay: 0.8s;
}
#top-mainvisual .point li:nth-child(2) {
  animation-delay: 0.85s;
}
#top-mainvisual .point li:nth-child(3) {
  animation-delay: 0.9s;
}

@keyframes MaskBottomLeft {
  0% {
    clip-path: circle(0% at 0 100%);
  }
  100% {
    clip-path: circle(150% at 0 100%);
  }
}
@keyframes PopInScale {
  0% {
    opacity: 0;
    transform: translateY(3em) scale(0.5);
  }
  80% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  90% {
    transform: translateY(0) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes PikaPika {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ トップページ - News
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#top-news {
  position: relative;
  z-index: 1;
  padding: 0 25px;
  margin: -2.6045% 0 0;
}
@media screen and (max-width: 767px) {
  #top-news {
    margin-top: -15.9%;
  }
}
#top-news .innerWrap {
  position: relative;
  max-width: 1200px;
  background: var(--color_white);
  box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.15);
  border-radius: 30px;
  padding: 32px 60px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #top-news .innerWrap {
    padding: 21px 0 21px 25px;
    padding: 21px 0;
  }
}
#top-news .title {
  font-family: var(--font_en);
  color: var(--color_gray1);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 20px;
}
@media screen and (max-width: 767px) {
  #top-news .title {
    text-align: center;
  }
}
#top-news .title span {
  display: inline-block;
}
#top-news .title span::first-letter {
  color: var(--color_blue1);
}
#top-news .slide {
  display: block;
}
@media screen and (max-width: 767px) {
  #top-news .slide {
    padding-left: 25px;
  }
}
@media screen and (max-width: 767px) {
  #top-news .splide {
    position: static;
  }
}
@media screen and (max-width: 767px) {
  #top-news .splide__track {
    padding-right: 25px !important;
  }
}
#top-news .splide__pagination {
  position: static;
}
#top-news .splide__pagination__page.is-active {
  background: #f00;
}
@media screen and (min-width: 768px) {
  #top-news .splide__arrows {
    display: none !important;
  }
}
#top-news .splide__arrow {
  opacity: 1;
  width: 34px;
  height: 34px;
  background-color: var(--color_white);
  border: 1px solid var(--color_gray1);
  margin-top: -8px;
}
#top-news .splide__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  aspect-ratio: 9/16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23666666' d='M5.49562 4.13459C5.69677 4.33642 5.69677 4.66358 5.49562 4.86541L1.37486 9L0.646484 8.26918L4.40305 4.5L0.646484 0.730821L1.37486 0L5.49562 4.13459Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px auto;
}
#top-news .splide__arrow.splide__arrow--prev {
  left: 0;
  margin-left: -8px;
}
#top-news .splide__arrow.splide__arrow--prev::before {
  transform: rotateZ(180deg) translate(50%, 50%);
}
#top-news .splide__arrow.splide__arrow--next {
  right: 0;
  margin-right: -8px;
}
#top-news .splide__arrow.splide__arrow--next::before {
  transform: translate(-50%, -50%);
}
#top-news .splide__arrow[disabled] {
  display: none;
}
@media screen and (min-width: 768px) {
  #top-news .splide__slide--clone {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  #top-news .splide__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px !important;
    transform: none !important;
    margin: 0 !important;
  }
}
@media screen and (max-width: 767px) {
  #top-news .splide__list {
    gap: 17px;
  }
}
@media screen and (min-width: 768px) {
  #top-news .splide__slide {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  #top-news .splide__slide {
    width: 210px !important;
  }
}
@media screen and (min-width: 768px) {
  #top-news .splide__slide:not(#splide01-slide01):not(#splide01-slide02):not(#splide01-slide03) {
    display: none !important;
  }
}
#top-news a {
  display: flex;
  height: 100%;
}
#top-news a .arrow {
  transition: all 0.25s ease-out;
}
#top-news a:hover .arrow {
  background-color: var(--color_blue1);
  border-color: var(--color_blue1);
}
#top-news a:hover .arrow::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFFFFF' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
#top-news .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 150px;
  background: var(--color_gray3);
  border-radius: 8px;
  padding: 20px 15px 18px 20px;
}
@media screen and (max-width: 767px) {
  #top-news .inner {
    min-height: 155px;
    padding: 12px 16px 10px;
  }
}
#top-news .post_tag {
  order: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font_en);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  margin: 20px 0 0;
}
#top-news .post_tag li {
  min-width: 60px;
  border: 1px solid var(--color_gray2);
  background: var(--color_white);
  border-radius: 100px;
  color: var(--color_gray2);
  text-align: center;
  padding: 3px 6px;
}
#top-news .post_date {
  font-family: var(--font_en);
  font-size: 0.875rem;
  line-height: 1;
  margin: 0 0 8px;
}
#top-news .post_title {
  font-size: 0.9375rem;
  line-height: 1.66;
  margin: 0 0 auto;
}
@media screen and (max-width: 767px) {
  #top-news .post_title {
    font-size: 0.875rem;
  }
}
#top-news .arrow {
  overflow: hidden;
  position: absolute;
  bottom: 16px;
  right: 15px;
  width: 27px;
  aspect-ratio: 1/1;
  border: 1px solid var(--color_gray2);
  border-radius: 100%;
}
@media screen and (max-width: 767px) {
  #top-news .arrow {
    bottom: 10px;
    right: 12px;
    background-color: var(--color_blue2);
  }
}
#top-news .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23333333' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 12px auto;
  background-color: transparent;
  transform: translate(-50%, -50%);
}
#top-news .link {
  line-height: 1;
}
@media screen and (min-width: 768px) {
  #top-news .link {
    position: absolute;
    top: 36px;
    right: 64px;
  }
}
@media screen and (max-width: 767px) {
  #top-news .link {
    text-align: center;
    margin-top: 20px;
  }
}
#top-news .link a {
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23333333' d='M5.49562 4.13459C5.69677 4.33642 5.69677 4.66358 5.49562 4.86541L1.37486 9L0.646484 8.26918L4.40305 4.5L0.646484 0.730821L1.37486 0L5.49562 4.13459Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 5px auto;
  font-size: 0.8125rem;
  font-weight: 400;
  padding-right: 15px;
  transition: all 0.25s ease-out;
}
#top-news .link a:hover {
  color: var(--color_blue1);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 6 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%231E82D2' d='M5.49562 4.13459C5.69677 4.33642 5.69677 4.66358 5.49562 4.86541L1.37486 9L0.646484 8.26918L4.40305 4.5L0.646484 0.730821L1.37486 0L5.49562 4.13459Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}

/*== news ====================================================================================================*/
#page_news #pagetitle .character_left {
  bottom: 130px;
  left: 280px;
  z-index: -1;
}
@media print, screen and (max-width: 767px) {
  #page_news #pagetitle .character_left {
    bottom: -3px;
    left: 80px;
  }
}
#page_news #pagetitle .character_left img {
  width: 78px;
  height: auto;
}
#page_news #pagetitle .character_right {
  bottom: 38px;
  right: 280px;
  z-index: -1;
}
@media print, screen and (max-width: 767px) {
  #page_news #pagetitle .character_right {
    bottom: -25px;
    right: 80px;
  }
}
#page_news #pagetitle .character_right img {
  width: 87px;
  height: auto;
}

#sec_news {
  padding: 46px 0 72px;
}
@media print, screen and (max-width: 767px) {
  #sec_news {
    padding: 40px 0 51px;
  }
}
#sec_news .post_tag {
  display: flex;
}
#sec_news .post_tag li {
  border: 1px solid #333;
  border-radius: 30px;
  font-weight: 600;
  color: #888;
  line-height: 1.5;
  padding: 0px 26px 2px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media print, screen and (max-width: 767px) {
  #sec_news .post_tag li {
    border: 0.5px solid #333;
  }
}
#sec_news .innerWrap .list_post {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    row-gap: 20px;
  }
}
#sec_news .innerWrap .list_post .post_item {
  position: relative;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item {
    display: flex;
    width: 100%;
  }
}
#sec_news .innerWrap .list_post .post_item a {
  display: block;
  background-color: var(--c_white);
  border-radius: 20px;
  padding: 44px 179px 45px 64px;
  padding: 3.667% 14.92% 3.75% 5.333%;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a {
    padding: 17px 24px 28px;
    width: 100%;
  }
}
#sec_news .innerWrap .list_post .post_item a .inner {
  display: flex;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a .inner {
    flex-direction: column;
  }
}
#sec_news .innerWrap .list_post .post_item a .inner .post_box01 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 16px;
  margin-right: 48px;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a .inner .post_box01 {
    margin-left: 0;
    flex-direction: row;
    align-items: center;
    column-gap: 16px;
  }
}
#sec_news .innerWrap .list_post .post_item a .inner .post_box01 .post_date {
  order: 1;
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a .inner .post_box01 .post_date {
    order: 2;
  }
}
#sec_news .innerWrap .list_post .post_item a .inner .post_box01 .post_tag {
  flex-direction: column;
  row-gap: 6px;
  order: 2;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a .inner .post_box01 .post_tag {
    order: 1;
  }
}
#sec_news .innerWrap .list_post .post_item a .inner .post_box02 {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a .inner .post_box02 {
    row-gap: 10px;
  }
}
#sec_news .innerWrap .list_post .post_item a .inner .post_box02 .post_title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
  color: #333;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a .inner .post_box02 .post_title {
    margin-top: 10px;
    width: 100%;
    line-height: 1.6;
  }
}
#sec_news .innerWrap .list_post .post_item a .inner .post_box02 .post_main p {
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a .inner .post_box02 .post_main p {
    font-size: 0.875rem;
    line-height: 1.7;
    width: 100%;
    padding: 0 4px;
  }
}
#sec_news .innerWrap .list_post .post_item a .inner .arrow {
  position: absolute;
  bottom: 16px;
  right: 20px;
  width: 27px;
  aspect-ratio: 1/1;
  background: #ccf;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23333333' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 12px auto;
  background-color: transparent;
  border: 1px solid var(--c_gray2);
  border-radius: 100%;
}
@media print, screen and (max-width: 767px) {
  #sec_news .innerWrap .list_post .post_item a .inner .arrow {
    width: 28px;
    bottom: 19px;
  }
}
#sec_news .innerWrap .list_post .post_item a:hover .arrow {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FFFFFF' d='M13.7744 5.95996C14.0749 6.25775 14.0749 6.74127 13.7744 7.03906L7.76074 13L6.67285 11.9209L11.3721 7.2627H0V5.7373H11.374L6.67285 1.07812L7.76074 0L13.7744 5.95996Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-color: var(--c_blue1);
  border-color: var(--c_blue1);
}
#sec_news .post_article {
  max-width: 1280px;
  padding: 0 40px;
}
@media print, screen and (max-width: 767px) {
  #sec_news .post_article {
    padding: 0 15px;
  }
}
#sec_news .post_article .innerWrap {
  background-color: var(--c_white);
  border-radius: 20px;
  padding: 72px 156px 120px 164px;
  padding: 6% 13% 10% 13.67%;
  max-width: 1200px;
  border-radius: 20px;
}
@media print, screen and (max-width: 767px) {
  #sec_news .post_article .innerWrap {
    padding: 16px 25px 30px;
  }
}
#sec_news .post_article .innerWrap .post_head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
#sec_news .post_article .innerWrap .post_head .post_title {
  order: 3;
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  margin-top: 16px;
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  #sec_news .post_article .innerWrap .post_head .post_title {
    font-size: 1.25rem;
    margin-top: 8px;
    line-height: 1.6;
  }
}
#sec_news .post_article .innerWrap .post_head .post_date {
  order: 2;
}
#sec_news .post_article .innerWrap .post_head .post_tag {
  order: 1;
  margin-right: 19px;
  flex-direction: row;
  column-gap: 6px;
}
@media print, screen and (max-width: 767px) {
  #sec_news .post_article .innerWrap .post_head .post_tag {
    border-width: 0.5px;
  }
}
#sec_news .post_article .innerWrap .post_main {
  margin-top: 32px;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  #sec_news .post_article .innerWrap .post_main {
    font-size: 1rem;
    margin-top: 10px;
    line-height: 1.8;
  }
}
#sec_news .post_article .innerWrap .post_main p + p {
  margin-top: 40px;
}
@media print, screen and (max-width: 767px) {
  #sec_news .post_article .innerWrap .post_main p + p {
    margin-top: 20px;
  }
}
#sec_news .post_article .btn_area {
  margin-top: 46px;
}
@media print, screen and (max-width: 767px) {
  #sec_news .post_article .btn_area {
    margin-top: 27px;
  }
}
#sec_news .post_article .btn_area .small_btn {
  width: 210px;
  margin: auto;
  color: #333333;
  transition: all 0.25s ease-out;
}
#sec_news .post_article .btn_area .small_btn::after {
  width: 15px;
  height: 14px;
  right: 26px;
}
#sec_news .post_article .btn_area .small_btn span {
  font-weight: 600;
  color: #333;
}
#sec_news .post_article .btn_area .small_btn:hover {
  background-color: var(--c_blue1);
  border-color: var(--c_blue1);
  transition: all 0.25s ease-out;
}
#sec_news .post_article .btn_area .small_btn:hover span {
  color: var(--c_white);
}

/*== recruit ====================================================================================================*/
#page_recruit #pagetitle .character_left {
  bottom: 19px;
  left: 140px;
  z-index: -1;
}
@media print, screen and (max-width: 767px) {
  #page_recruit #pagetitle .character_left {
    bottom: 10px;
    left: 50px;
  }
}
#page_recruit #pagetitle .character_left img {
  width: 137px;
  height: auto;
}
@media print, screen and (max-width: 767px) {
  #page_recruit #pagetitle .character_left img {
    width: 67px;
  }
}
#page_recruit #pagetitle .character_right {
  bottom: -44px;
  right: 90px;
  z-index: -1;
}
@media print, screen and (max-width: 767px) {
  #page_recruit #pagetitle .character_right {
    bottom: -7px;
    right: 36px;
  }
}
#page_recruit #pagetitle .character_right img {
  width: 159px;
  height: auto;
}
@media print, screen and (max-width: 767px) {
  #page_recruit #pagetitle .character_right img {
    width: 82px;
  }
}
#page_recruit #breadcrumbs {
  margin-bottom: 56px;
}
#page_recruit #sec_recruit {
  margin-bottom: 146px;
}
@media print, screen and (max-width: 767px) {
  #page_recruit #sec_recruit {
    margin-bottom: 56px;
  }
}
#page_recruit #sec_recruit .top_txt {
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  line-height: 2.4;
  color: var(--c_blue1);
}
@media print, screen and (max-width: 767px) {
  #page_recruit #sec_recruit .top_txt {
    font-size: 1rem;
    line-height: 2;
    margin-top: 36px;
    text-align: left;
    padding: 0 20px;
  }
}
#page_recruit #sec_recruit .outer_content {
  margin-top: 56px;
}
@media print, screen and (max-width: 767px) {
  #page_recruit #sec_recruit .outer_content {
    margin-top: 46px;
  }
}

.outer_content {
  background-color: #C4E4F8;
  border-radius: 33px;
  padding: 40px 9.16667% 76px;
}
@media print, screen and (max-width: 767px) {
  .outer_content {
    border-radius: 24px;
    padding: 33px 11px 45px;
  }
}
.outer_content .inner_content {
  margin-top: 32px;
  background-color: var(--c_white);
  border-radius: 40px;
  padding: 69px 11.22%;
  box-shadow: 0px 10px 40px rgba(26, 140, 210, 0.2);
}
@media print, screen and (max-width: 767px) {
  .outer_content .inner_content {
    margin-top: 21px;
    border-radius: 24px;
    padding: 28px 20px 22px;
  }
}
.outer_content dl div {
  border-bottom: 1px solid #999;
  padding: 0 10px 30px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  column-gap: min(4.583vw, 88px);
  font-weight: 600;
}
@media print, screen and (max-width: 767px) {
  .outer_content dl div {
    align-items: flex-start;
    padding: 0 2px 22px;
    margin-bottom: 22px;
    column-gap: 10px;
  }
}
.outer_content dl div:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.outer_content dl dt {
  font-size: 1rem;
  min-width: 91px;
  font-weight: 500;
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  .outer_content dl dt {
    min-width: 72px;
    font-size: 0.875rem;
    line-height: 1.5;
    min-width: 100px;
  }
}
.outer_content dl dd {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media print, screen and (max-width: 767px) {
  .outer_content dl dd {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.outer_content dl dd .connection {
  display: inline-block;
  margin: 0 6px;
}
@media print, screen and (max-width: 767px) {
  .outer_content dl dd .connection {
    display: none;
  }
}
.outer_content dl dd svg {
  vertical-align: middle;
}

/*== overview ====================================================================================================*/
#page_overview .character_left {
  left: 140px;
  bottom: 19px;
  z-index: -1;
}
@media print, screen and (max-width: 767px) {
  #page_overview .character_left {
    top: auto;
    bottom: 8px;
    left: 46px;
  }
}
#page_overview .character_left img {
  width: 137px;
  height: auto;
}
@media print, screen and (max-width: 767px) {
  #page_overview .character_left img {
    width: 67px;
  }
}
#page_overview .character_right {
  bottom: -60px;
  right: 100px;
  z-index: -1;
}
@media print, screen and (max-width: 767px) {
  #page_overview .character_right {
    top: auto;
    bottom: -4px;
    right: 42px;
  }
}
#page_overview .character_right img {
  width: 136px;
  height: auto;
}
@media print, screen and (max-width: 767px) {
  #page_overview .character_right img {
    width: 84px;
  }
}
#page_overview #sec_overview {
  padding: 56px 0 108px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview {
    padding: 36px 0 56px;
  }
}
#page_overview #sec_overview .overview_wp {
  padding: 0 40px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp {
    padding: 0 15px;
  }
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content {
  margin-bottom: 71px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .overview_container .overview_content {
    margin-bottom: 40px;
  }
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content .hd-line02 {
  margin-bottom: 27px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .overview_container .overview_content .hd-line02 {
    margin-bottom: 16px;
  }
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content .txt {
  font-size: 1.125rem;
  line-height: 2.2;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .overview_container .overview_content .txt {
    font-size: 1rem;
    line-height: 2;
    padding: 0 20px;
  }
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content01 .hd-line02 {
  margin-top: 20px;
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content02 {
  margin-top: 71px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .overview_container .overview_content02 {
    margin-top: 41px;
  }
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content02 .overview_inner_content {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .overview_container .overview_content02 .overview_inner_content {
    flex-direction: column;
    column-gap: 0;
  }
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content02 .overview_inner_content .txt_box {
  width: 100%;
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content02 .overview_inner_content .txt_box .txt:nth-child(n+2) {
  margin-top: 20px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .overview_container .overview_content02 .overview_inner_content .txt_box .txt:nth-child(n+2) {
    margin-top: 10px;
  }
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content02 .overview_inner_content .txt_box .name {
  text-align: right;
  font-size: 1rem;
  margin-top: 26px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .overview_container .overview_content02 .overview_inner_content .txt_box .name {
    padding: 0 20px;
    margin-top: 16px;
  }
}
#page_overview #sec_overview .overview_wp .overview_container .overview_content02 .overview_inner_content .txt_box .name span {
  font-size: 1.125rem;
  display: inline-block;
  margin-left: 6px;
}
#page_overview #sec_overview .overview_wp .overview_container .overview_img_content {
  max-width: 720px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page_overview #sec_overview .overview_wp .overview_container .overview_img_content figure {
  display: inline-block;
}
#page_overview #sec_overview .overview_wp .overview_container .overview_img_content figure img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .overview_container .overview_img_content {
    width: 100%;
  }
}
#page_overview #sec_overview .overview_wp .outer_content {
  padding: 62px 9.16667% 89px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .outer_content {
    padding: 33px 11px 45px;
  }
}
#page_overview #sec_overview .overview_wp .outer_content .inner_content {
  padding: 64px 0 74px;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .outer_content .inner_content {
    padding: 28px 0 22px;
  }
}
#page_overview #sec_overview .overview_wp .outer_content .list_area {
  padding: 0 11.22%;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .outer_content .list_area {
    padding: 0 18px;
  }
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .outer_content .list_area dl {
    column-gap: 0;
  }
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .outer_content .list_area dl div {
    padding-right: 30px;
  }
}
#page_overview #sec_overview .overview_wp .outer_content .list_area dl div.map_area {
  border-bottom: none;
  margin: 0;
  padding-bottom: 0;
}
#page_overview #sec_overview .overview_wp .outer_content .list_area dl div.map_area .map_link {
  color: #1E82D2;
  text-decoration: underline;
  cursor: pointer;
  transition: all 0.25s ease-out;
}
#page_overview #sec_overview .overview_wp .outer_content .list_area dl div.map_area .map_link:hover {
  opacity: 0.65;
  transition: all 0.25s ease-out;
}
#page_overview #sec_overview .overview_wp .outer_content .list_area dl .connection {
  margin: 0 10px;
}
#page_overview #sec_overview .overview_wp .outer_content .map {
  margin-top: 33px;
  width: 78.1633%;
  margin: 33px auto 0;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .outer_content .map {
    width: 88.76%;
    min-width: 261px;
  }
}
#page_overview #sec_overview .overview_wp .outer_content .map picture img {
  display: block;
  width: 100%;
  height: auto;
}
@media print, screen and (max-width: 767px) {
  #page_overview #sec_overview .overview_wp .outer_content .map {
    margin-top: 23px;
  }
}

/*== プライバシーポリシー ====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ プライバシーポリシー
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_privacy {
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  #page_privacy {
    padding-bottom: 64px;
  }
}
#page_privacy section .innerWrap {
  padding: 0;
}
#page_privacy img {
  display: inline-block;
  width: inherit;
}

#sec_privacy {
  margin-top: 42px;
}

#sec_security figure.tac {
  margin-top: 2em;
}

#page_privacy .post_main {
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  #page_privacy .post_main {
    padding: 0 35px;
  }
}
#page_privacy .post_main .innerWrap > *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) + *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
  margin-top: 2em;
}
#page_privacy .post_main + .post_main {
  margin-top: 120px;
}
#page_privacy .post_main .innerWrap {
  max-width: 920px;
}
#page_privacy .post_main .hd-line01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #page_privacy .post_main .hd-line01 {
    margin-bottom: 20px;
  }
}
#page_privacy .post_main .hd-line02 {
  margin-top: 92px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #page_privacy .post_main .hd-line02 {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
#page_privacy .post_main h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 2em;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #page_privacy .post_main h4 {
    margin-bottom: 20px;
  }
}
#page_privacy .post_main .table {
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #page_privacy .post_main .column2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 890px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  #page_privacy .post_main .column2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
#page_privacy .post_main .column2 h4 {
  margin-bottom: 0;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  #page_privacy .post_main .column2 h4 {
    margin-bottom: 20px;
  }
}
#page_privacy .post_main .column2 h4 + p {
  margin-top: 0;
}
#page_privacy .post_main .column2 figure {
  text-align: center;
}
#page_privacy .post_main .column2 figure figcaption {
  display: block;
  margin-top: 8px;
}
#page_privacy .post_main .mail {
  display: inline-block;
  vertical-align: middle;
}

/*== 404 ====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 404
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.sec_404 {
  padding: 40px var(--pd) 100px;
}
@media screen and (max-width: 767px) {
  .sec_404 {
    padding-top: 30px;
    padding-bottom: 60px;
  }
}
.sec_404 .btn01 {
  margin: 60px auto 0;
}

/*== お問合せ ====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ お問合せ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*-------------------------
  共通
-------------------------*/
#page_contact section > .innerWrap {
  padding: 0;
}
#page_contact #pagetitle .innerWrap {
  max-width: 840px;
}
#page_contact #pagetitle .illust01 {
  bottom: -16px;
  left: -42px;
}
@media screen and (max-width: 767px) {
  #page_contact #pagetitle .illust01 {
    bottom: -7px;
    left: 16px;
  }
}
#page_contact #pagetitle .illust01 > * {
  height: 290px !important;
}
@media screen and (max-width: 767px) {
  #page_contact #pagetitle .illust01 > * {
    height: 169px !important;
  }
}
#page_contact #pagetitle .illust02 {
  bottom: -86px;
  right: 12px;
}
@media screen and (max-width: 767px) {
  #page_contact #pagetitle .illust02 {
    bottom: -11px;
    right: 61px;
    width: auto;
  }
}
#page_contact #pagetitle .illust02 > * {
  height: 190px !important;
  transform-origin: bottom center !important;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  #page_contact #pagetitle .illust02 > * {
    height: 125px !important;
  }
}
#page_contact #sec_contact_form,
#page_contact #sec_contact_thanks {
  padding: 50px var(--pd) 96px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form,
#page_contact #sec_contact_thanks {
    padding: 46px 35px 64px;
  }
}
#page_contact #sec_contact_form .innerWrap,
#page_contact #sec_contact_thanks .innerWrap {
  padding: 0;
}
#page_contact .hd-line01 {
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #page_contact .hd-line01 {
    margin-bottom: 35px;
  }
}

/*-------------------------
  入力画面
-------------------------*/
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#page_contact #sec_contact_form .innerWrap {
  max-width: 1200px;
}
#page_contact #sec_contact_form #mailformpro {
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form #mailformpro {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#page_contact #sec_contact_form .dec-line_top {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .dec-line_top {
    margin-top: 84px;
  }
}
#page_contact #sec_contact_form .dec-line_top::before {
  width: 24px;
}
#page_contact #sec_contact_form .form {
  margin-top: 30px;
}
#page_contact #sec_contact_form .form textarea {
  padding-top: 20px;
  padding-bottom: 20px;
}
#page_contact #sec_contact_form .mfp_err {
  color: #E73820;
  margin-top: 6px;
}
#page_contact #sec_contact_form .form_wrap {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 35px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_wrap {
    row-gap: 20px;
  }
}
#page_contact #sec_contact_form .item_title {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
  margin-bottom: 8px;
}
#page_contact #sec_contact_form .required {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  min-width: 60px;
  min-height: 23px;
  background: linear-gradient(79.48deg, #0071BC 5.21%, #4B9BDB 94.79%);
  border-radius: 100px;
  color: var(--color_white);
  font-size: 0.875rem;
  line-height: 1;
}
#page_contact #sec_contact_form .form_privacy {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy {
    margin-top: 45px;
  }
}
#page_contact #sec_contact_form .form_privacy .check {
  text-align: center;
}
#page_contact #sec_contact_form .form_privacy .check label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check label {
    font-size: 0.875rem;
    gap: 10px;
  }
}
#page_contact #sec_contact_form .form_privacy .check label > span:first-of-type {
  padding-left: 46px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check label > span:first-of-type {
    padding-left: 26px;
  }
}
#page_contact #sec_contact_form .form_privacy .check label > span:first-of-type::before {
  width: 32px;
  height: 32px;
  border-color: var(--color_blue1);
  border-radius: 4px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check label > span:first-of-type::before {
    top: 4px;
    width: 22px;
    height: 22px;
  }
}
#page_contact #sec_contact_form .form_privacy .check label > span:first-of-type::after {
  bottom: auto;
  top: 9px;
  left: 6px;
  width: 20px;
  height: 9px;
  border-bottom: 4px solid var(--color_white);
  border-right: none;
  border-left: 4px solid var(--color_white);
  transform: rotate(-45deg);
  margin: 0;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .form_privacy .check label > span:first-of-type::after {
    top: 9px;
    left: 4px;
    width: 15px;
    height: 8px;
    border-bottom-width: 3px;
    border-left-width: 3px;
  }
}
#page_contact #sec_contact_form .form_privacy .check label input[type=checkbox]:checked ~ span::before {
  background-color: var(--color_blue1);
}
#page_contact #sec_contact_form .form_privacy .check label span.required {
  padding: 0;
}
#page_contact #sec_contact_form .form_privacy .check label span.required::before, #page_contact #sec_contact_form .form_privacy .check label span.required::after {
  display: none;
}
#page_contact #sec_contact_form .form_privacy .check a {
  display: inline-block;
  color: var(--color_blue1);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.25s ease-out;
}
body:not(.view_sp) #page_contact #sec_contact_form .form_privacy .check a:hover {
  opacity: 0.6;
  transition: all 0.25s ease-out;
}
#page_contact #sec_contact_form .form_privacy .mfp_err {
  text-align: center;
}
#page_contact #sec_contact_form .btn02 {
  max-width: 379px;
  width: 100%;
  margin: 62px auto 0;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn02 {
    max-width: 340px;
    margin-top: 69px;
  }
}
#page_contact #sec_contact_form .btn02 .btn_inner {
  width: 100%;
}
#page_contact #sec_contact_form .dec-line_top {
  position: relative;
}
#page_contact #sec_contact_form .dec-line_top::before {
  content: "";
  display: block;
  width: 24px;
  height: 6px;
  background: linear-gradient(86.42deg, #0071BC 0%, #4B9BDB 100%);
  margin: 0 auto 47px;
}
#page_contact #sec_contact_form .btn_wrap {
  display: flex;
  justify-content: center;
  gap: 29px;
  margin: 40px auto;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap + p {
    max-width: 241px;
    width: 100%;
    font-size: 0.875rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  #page_contact #sec_contact_form .btn_wrap li {
    min-width: 241px;
  }
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap li {
    max-width: 241px;
    width: 100%;
    margin: 0 auto;
  }
}
#page_contact #sec_contact_form .btn_wrap a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 100%;
  background: var(--color_white);
  border: 1px solid var(--c_black);
  border-radius: 100px;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 6px 10px;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap a {
    padding: 7px 10px;
  }
}
#page_contact #sec_contact_form .btn_wrap .tel .num {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_form .btn_wrap p.sp.ptac {
    margin-top: 15px;
  }
}

/*-------------------------
  確認画面
-------------------------*/
#page_contact #mfp_phase_confirm {
  display: none;
  background: var(--color_blue4);
  border-radius: 33px;
  padding: 40px 40px 76px;
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm {
    border-radius: 24px;
    padding: 33px 11px 45px;
  }
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm .hd-line01 {
    margin-bottom: 28px;
  }
}
#page_contact #mfp_phase_confirm #mfp_confirm_table {
  max-width: 980px;
  width: 100%;
  background: var(--color_white);
  border-collapse: separate;
  table-layout: fixed;
  box-shadow: var(--sd);
  border-radius: 40px;
  padding: 69px 11.22%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm #mfp_confirm_table {
    border-radius: 24px;
    padding: 28px 20px 22px;
  }
}
#page_contact #mfp_phase_confirm #mfp_confirm_table tr {
  display: table;
  width: 100%;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm #mfp_confirm_table tr {
    display: flex;
    column-gap: 10px;
    padding: 0 2px;
  }
}
#page_contact #mfp_phase_confirm #mfp_confirm_table tr:not(:last-child) {
  border-bottom: 1px solid #999;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm #mfp_confirm_table tr:not(:last-child) {
    padding-bottom: 22px;
  }
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm #mfp_confirm_table tr > * {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}
#page_contact #mfp_phase_confirm #mfp_confirm_table th {
  width: 193px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm #mfp_confirm_table th {
    flex: 1 0 auto;
    width: 100px;
  }
}
#page_contact #mfp_phase_confirm #mfp_confirm_table td {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm #mfp_confirm_table td {
    font-weight: 400;
  }
}
#page_contact #mfp_phase_confirm .mfp_buttons {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #page_contact #mfp_phase_confirm .mfp_buttons {
    flex-direction: column;
    margin-top: 35px;
    gap: 16px;
  }
}
#page_contact #mfp_phase_confirm .mfp_buttons > * {
  width: 100%;
  margin: 0;
}

/*-------------------------
  完了画面
-------------------------*/
#page_contact #sec_contact_thanks .innerWrap {
  max-width: 920px;
}
#page_contact #sec_contact_thanks .btn01 {
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_thanks .btn01 {
    max-width: 241px;
    margin-top: 40px;
  }
}
#page_contact #sec_contact_thanks div#mfp_thanks {
  font-size: 1.125rem;
  padding: 0;
  margin-bottom: 2em;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_thanks div#mfp_thanks {
    font-size: 1rem;
  }
}
#page_contact #sec_contact_thanks div#mfp_thanks + div#mfp_thanks {
  display: none;
}
#page_contact #sec_contact_thanks div#mfp_thanks strong {
  color: var(--color_red1);
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #page_contact #sec_contact_thanks div#mfp_thanks strong {
    font-size: 1.25rem;
  }
}

/*== パッケージ・サービス ====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ パッケージ・サービス
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*-------------------------
  共通
-------------------------*/
#page_package section > .innerWrap,
#page_super-v section > .innerWrap {
  padding: 0;
}
@media screen and (min-width: 768px) {
  #page_package .hd-line02,
#page_super-v .hd-line02 {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  #page_package .hd-line02,
#page_super-v .hd-line02 {
    margin-bottom: 24px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ パッケージ・サービス - トップ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_package #pagetitle .innerWrap {
  max-width: 1132px;
}
#page_package #pagetitle .text span.pc {
  display: inline;
}
#page_package #pagetitle .illust01 {
  bottom: -25px;
  left: -48px;
}
@media screen and (max-width: 767px) {
  #page_package #pagetitle .illust01 {
    width: auto;
    bottom: -53px;
    left: -15px;
  }
}
#page_package #pagetitle .illust01 > * {
  height: 360px !important;
}
@media screen and (max-width: 767px) {
  #page_package #pagetitle .illust01 > * {
    height: 193px !important;
  }
}
#page_package #pagetitle .illust02 {
  bottom: -40px;
  right: 5px;
}
@media screen and (max-width: 767px) {
  #page_package #pagetitle .illust02 {
    width: auto;
    bottom: -10px;
    right: -25px;
  }
}
#page_package #pagetitle .illust02 > * {
  height: 221px !important;
  transform: scale(-1, 1);
  transform-origin: bottom center !important;
}
@media screen and (max-width: 767px) {
  #page_package #pagetitle .illust02 > * {
    height: 165px !important;
  }
}

/*-------------------------
  一覧
-------------------------*/
#page_package #sec_service {
  padding: 46px var(--pd) 0;
}
@media screen and (max-width: 767px) {
  #page_package #sec_service {
    padding: 40px 15px 0;
  }
}
#page_package #sec_service .innerWrap {
  max-width: 1200px;
}
#page_package #sec_service .hd-line01 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  #page_package #sec_service .hd-line01 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #page_package #sec_service .text01 {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #page_package #sec_service .sp_scroll_wrap {
    margin: 0 -15px;
  }
}
@media screen and (min-width: 768px) {
  #page_package #sec_service .js-scrollable {
    overflow: inherit !important;
  }
}
#page_package #sec_service .sp_scroll {
  position: relative;
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  #page_package #sec_service .sp_scroll {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#page_package #sec_service .sp_scroll .img {
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--sd);
  text-align: center;
  padding: 26px;
}
@media screen and (max-width: 767px) {
  #page_package #sec_service .sp_scroll .img {
    padding: 10px;
    margin-right: 15px;
  }
}
#page_package #sec_service .innerWrap > .btn_area {
  justify-content: center;
  margin-top: 64px;
  margin-bottom: 77px;
}
@media screen and (max-width: 767px) {
  #page_package #sec_service .innerWrap > .btn_area {
    margin-top: 40px;
    margin-bottom: 54px;
  }
}

#page_package #operation_image {
  margin-top: 55px;
}
@media screen and (max-width: 767px) {
  #page_package #operation_image {
    margin-top: 40px;
  }
}
#page_package #operation_image .hd-line02 {
  margin-bottom: -10px;
}
@media screen and (max-width: 767px) {
  #page_package #operation_image .hd-line02 {
    margin-bottom: -16px;
  }
}
@media screen and (max-width: 767px) {
  #page_package #operation_image .sp_scroll {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  #page_package #operation_image .sp_scroll::after {
    content: "";
    padding-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  #page_package #operation_image .sp_scroll .img {
    display: block;
    min-width: 899px;
    margin-right: 0;
  }
}
#page_package #operation_image .sp_scroll .img img {
  max-width: 100%;
  height: auto;
}

#page_package #service_list {
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  #page_package #service_list {
    margin-top: 64px;
  }
}
#page_package #service_list dl {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl {
    gap: 26px;
  }
}
#page_package #service_list dl > div {
  background: var(--color_white);
  border-radius: 32px;
  box-shadow: var(--sd);
  padding: 30px 50px 43px;
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl > div {
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl > div {
    padding: 20px 8px 32px;
  }
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl > div:first-child {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl > div:first-child dt {
    max-width: 536px;
  }
}
#page_package #service_list dl dt {
  display: block;
  border: 1px solid var(--color_gray4);
  border-radius: 100px;
  font-size: 1.375rem;
  font-weight: 900;
  text-align: center;
  padding: 5px 10px;
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl dt {
    max-width: 418px;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl dt {
    font-size: 1.25rem;
    line-height: 1.5;
    padding: 12px 10px;
    margin: 0 15px 25px;
  }
}
#page_package #service_list dl dt strong {
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl .pcflex {
    display: flex;
    justify-content: center;
    gap: 38px;
  }
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl .pcflex .text_wrap {
    max-width: 624px;
  }
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl .pcflex .text_wrap {
    overflow: hidden;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl .pcflex .img {
    flex: 1 0 auto;
    align-self: center;
    max-width: 400px;
    width: 40%;
  }
}
#page_package #service_list dl .pcflex .img img {
  width: 100%;
}
#page_package #service_list dl .copy {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl .copy {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl .copy {
    font-size: 1.25rem;
    padding: 0 20px;
  }
}
#page_package #service_list dl .copy strong {
  color: var(--color_blue1);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl .text_wrap {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl .text {
    overflow: hidden;
    height: 9em;
    line-height: 1.8;
  }
}
#page_package #service_list dl .text > *:not(:first-child) {
  margin-top: 2em;
}
#page_package #service_list dl .img img {
  height: auto;
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl .img img {
    max-width: 100%;
    width: auto;
  }
}
#page_package #service_list dl .more_btn {
  float: right;
  display: inline-block;
  line-height: 1.25;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  #page_package #service_list dl .more_btn {
    display: none !important;
  }
}
#page_package #service_list dl .more_btn button {
  background: none;
  border: none;
  box-shadow: none;
  color: inherit;
  font-size: 0.75rem;
  line-height: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%2338393C' d='M11 1L6 7L1 1' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 10px auto;
  background-position: right center;
  padding-right: 17px;
}
@media screen and (max-width: 767px) {
  #page_package #service_list dl .btn_area_row {
    margin-top: 24px;
  }
}

/*-------------------------
  ご利用開始までの流れ
-------------------------*/
#page_package #sec_flow {
  padding: 80px var(--pd) 96px;
}
@media screen and (max-width: 767px) {
  #page_package #sec_flow {
    padding-top: 48px;
    padding-bottom: 64px;
  }
}
#page_package #sec_flow .innerWrap {
  max-width: 1200px;
}
#page_package #sec_flow .hd-line01 {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #page_package #sec_flow .hd-line01 + p {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#page_package .list_step {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
  margin-top: 72px;
}
#page_package .list_step > li:last-child .inner::after {
  display: none;
}
#page_package .list_step .inner {
  position: relative;
  display: flex;
  background: var(--color_white);
  border: 2px solid var(--color_white);
  background: var(--color_white);
  border-radius: 24px;
}
@media screen and (max-width: 767px) {
  #page_package .list_step .inner {
    flex-direction: column;
  }
}
#page_package .list_step .inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 118px;
  height: 42px;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: linear-gradient(45deg, #FA6900, #C02942);
  background: var(--color_white);
  transform: translate(-50%, 100%);
}
#page_package .list_step .num {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  aspect-ratio: 1/1;
  background: var(--color_blue1);
  border-radius: 100%;
  color: var(--color_white);
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1;
  transform: translate(-8px, -20px);
}
#page_package .list_step .num::before {
  content: "STEP";
  font-size: 1rem;
}
#page_package .list_step .head, #page_package .list_step .detail {
  padding-top: 24px;
  padding-bottom: 38px;
}
#page_package .list_step .hd {
  border-bottom: 2px solid var(--color_blue1);
  color: var(--color_blue1);
  font-size: 1.3125rem;
  font-weight: 900;
  line-height: 1.7;
  padding-right: 36px;
  padding-bottom: 18px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #page_package .list_step .hd {
    padding-right: 20px;
  }
}
#page_package .list_step .text {
  line-height: 1.8;
  padding-right: 36px;
}
@media screen and (max-width: 767px) {
  #page_package .list_step .text {
    font-size: 0.875rem;
  }
}
#page_package .list_step .head {
  flex: 1 0 auto;
  max-width: 390px;
  width: 45%;
  border-radius: 22px 0 0 22px;
  padding-left: 43px;
}
@media screen and (max-width: 767px) {
  #page_package .list_step .head {
    max-width: inherit;
    width: 100%;
    padding: 20px 10px 25px;
    border-radius: 22px 22px 0 0;
  }
}
#page_package .list_step .head .hd {
  padding-left: 72px;
}
@media screen and (max-width: 767px) {
  #page_package .list_step .head .hd {
    padding-bottom: 19px;
    padding-left: 70px;
    margin-left: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #page_package .list_step .head .text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#page_package .list_step .detail {
  width: 100%;
  background: var(--color_blue2);
  border-radius: 0 22px 22px 0;
}
@media screen and (max-width: 767px) {
  #page_package .list_step .detail {
    border-radius: 0 0 22px 22px;
    padding: 20px 0 30px;
  }
}
#page_package .list_step .detail .hd {
  border-bottom-color: var(--color_white);
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  #page_package .list_step .detail .hd {
    border-bottom: none;
    font-size: 1.25rem;
    padding: 0 30px;
    margin-bottom: 13px;
  }
}
#page_package .list_step .detail .text {
  font-weight: 500;
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  #page_package .list_step .detail .text {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#page_package .list_step .step3_4 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 60px;
}
@media screen and (min-width: 768px) {
  #page_package .list_step .step3, #page_package .list_step .step4 {
    max-width: 972px;
    max-width: 1020px;
    width: 81%;
    width: calc(100% - (92px + 7.334%));
  }
}
@media screen and (min-width: 768px) {
  #page_package .list_step .step3 .inner::after, #page_package .list_step .step4 .inner::after {
    left: 55.89%;
    left: 53.04%;
    transform: translate(0, 100%);
  }
}
#page_package .list_step .kikan {
  background: var(--color_blue1);
  color: var(--color_white);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #page_package .list_step .kikan {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 4.334%;
    right: 3.667%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 92px;
    clip-path: polygon(0 37px, 50% 0, 100% 37px, 100% calc(100% - 37px), 50% 100%, 0 calc(100% - 37px));
  }
}
@media screen and (max-width: 767px) {
  #page_package .list_step .kikan {
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    padding: 10px;
    clip-path: polygon(6% 0%, 94% 0%, 100% 50%, 94% 100%, 6% 100%, 0% 50%);
  }
}
@media screen and (min-width: 768px) {
  #page_package .list_step .kikan p {
    display: inline-block;
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.02em;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ パッケージ・サービス - 下層(Super-V)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_super-v #pagetitle .innerWrap {
  max-width: 1092px;
}
#page_super-v #pagetitle ._jp {
  color: var(--color_blue1);
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  #page_super-v #pagetitle ._jp {
    font-size: 1.5625rem;
  }
}
#page_super-v #pagetitle .text > img {
  display: block;
}
@media screen and (min-width: 768px) {
  #page_super-v #pagetitle .text > img {
    margin-top: 7px;
  }
}
#page_super-v #pagetitle ._en {
  color: #1A1A1A;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
}
#page_super-v #pagetitle ._en ._red:first-letter {
  color: var(--color_red1) !important;
}
#page_super-v #pagetitle .illust01 {
  bottom: -28px;
  left: -53px;
}
@media screen and (max-width: 767px) {
  #page_super-v #pagetitle .illust01 {
    width: auto;
    bottom: -53px;
    left: -15px;
  }
}
#page_super-v #pagetitle .illust01 > * {
  height: 408px !important;
}
@media screen and (max-width: 767px) {
  #page_super-v #pagetitle .illust01 > * {
    height: 193px !important;
  }
}
#page_super-v #pagetitle .illust02 {
  bottom: -26px;
  right: 20px;
}
@media screen and (max-width: 767px) {
  #page_super-v #pagetitle .illust02 {
    bottom: -9.5px;
    right: 15px;
    width: 112.22px;
  }
}
#page_super-v section > .innerWrap {
  max-width: 1200px;
}
#page_super-v #sec_intro {
  padding: 46px var(--pd) 0;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_intro {
    padding-top: 40px;
  }
}
#page_super-v #sec_intro .hd-line01 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_intro .hd-line01 {
    margin-bottom: 20px;
  }
}

/*-------------------------
  機能概要
-------------------------*/
#page_super-v #sec_outline {
  padding: 46px var(--pd) 72px;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_outline {
    padding-top: 40px;
    padding-bottom: 54px;
  }
}
#page_super-v #sec_outline .hd-line01 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_outline .hd-line01 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_outline .text01 {
    padding: 0 10px;
  }
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_outline .sp_scroll_wrap {
    margin: 0 -25px;
  }
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_outline .js-scrollable {
    overflow: inherit !important;
  }
}
#page_super-v #sec_outline .sp_scroll {
  position: relative;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_outline .sp_scroll {
    min-width: 772px;
    min-width: 802px;
    padding: 0 15px;
  }
}
#page_super-v #sec_outline .innerWrap > .btn_area {
  justify-content: center;
  margin-top: 64px;
  margin-bottom: 77px;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_outline .innerWrap > .btn_area {
    margin-top: 40px;
    margin-bottom: 54px;
  }
}

/*-------------------------
  一部の操作画面・機能のご紹介
-------------------------*/
#page_super-v #sec_appeal {
  padding: 80px var(--pd) 110px;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_appeal {
    padding: 48px 15px 40px;
  }
}
#page_super-v #sec_appeal .hd-line02 {
  margin-bottom: 24px;
}
#page_super-v #sec_appeal .list_box {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
}
#page_super-v #sec_appeal .list_box > div {
  display: flex;
  flex-direction: column;
  background: var(--color_white);
  box-shadow: var(--sd);
  border-radius: 32px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_appeal .list_box > div {
    width: 100%;
    padding-top: 26px;
    padding-bottom: 36px;
  }
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box > div:not(.full) {
    width: calc(50% - 20px);
    padding-top: 25px;
    padding-bottom: 42px;
  }
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box > div:not(.full) > * {
    max-width: 480px;
  }
}
#page_super-v #sec_appeal .list_box > div:not(.full) .copy {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box > div.full {
    width: 100%;
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box > div.full > * {
    max-width: 1000px;
  }
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box > div.full dd {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
}
#page_super-v #sec_appeal .list_box > div.full .copy {
  text-align: left;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box > div.full .img {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box > div > * {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
#page_super-v #sec_appeal .list_box dt {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.5658;
  text-align: center;
  margin-bottom: 21px;
}
#page_super-v #sec_appeal .list_box dt span {
  display: inline-block;
  min-width: 250px;
  background: var(--color_blue1);
  color: var(--color_white);
  border-radius: 100px;
  text-align: center;
  padding: 8px 20px;
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box dd {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}
#page_super-v #sec_appeal .list_box .copy {
  color: var(--color_blue1);
  font-size: 1.3125rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #page_super-v #sec_appeal .list_box .copy {
    text-align: center;
  }
}
#page_super-v #sec_appeal .list_box .text {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  line-height: 1.7;
  margin-bottom: auto;
}
#page_super-v #sec_appeal .list_box .text > *:not(:last-child) {
  margin-bottom: 1.7em;
}
#page_super-v #sec_appeal .list_box .img {
  margin: 25px 0 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #page_super-v #sec_appeal .list_box .img img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 182px;
    object-fit: contain;
  }
}

/*-------------------------
  動作環境
-------------------------*/
#sec_system {
  padding: 80px var(--pd) 96px;
}
@media screen and (max-width: 767px) {
  #sec_system {
    padding: 48px 15px 64px;
  }
}
#sec_system .btn_area {
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  #sec_system .btn_area {
    margin-top: 35px;
  }
}

/*== イラストアニメーション用に調整したもの OK====================================================================================================*/
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ トップページ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#container {
  overflow: hidden;
}

/*-------------------------
  lottie共通
-------------------------*/
.set_lottie > * {
  display: block;
  width: auto !important;
}

/*-------------------------
  本文テキスト
-------------------------*/
#anime-01_mushimegane > * {
  aspect-ratio: 200/270;
}

#anime-02_dansei > * {
  aspect-ratio: 70/162;
}

#anime-03_josei_hakusyu > * {
  aspect-ratio: 63/170;
}

#anime-04_dansei_mushimegane > * {
  aspect-ratio: 161/191;
}

#anime-04_dansei_chat > * {
  aspect-ratio: 223/310;
}

#anime-05_dansei_kenpin > * {
  aspect-ratio: 112/151;
}

#anime-05_dansei_kenpin_danboru > * {
  aspect-ratio: 149/211;
}

#anime-06_robot > * {
  aspect-ratio: 125/141;
}

#anime-07_robot > * {
  aspect-ratio: 92/114;
}

#anime-08_pc > * {
  aspect-ratio: 813/799;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ トップページ
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/*-------------------------
  02.腕を上げる男性と06.ロボット（前）
-------------------------*/
#about-super-v #anime {
  mix-blend-mode: multiply;
  top: -47px;
  width: auto;
}
@media screen and (max-width: 767px) {
  #about-super-v #anime {
    top: -168px;
    left: 6px;
  }
}

#about-super-v #anime-02_dansei {
  position: relative;
  left: 40px;
}
@media screen and (max-width: 767px) {
  #about-super-v #anime-02_dansei {
    left: 0;
  }
}
#about-super-v #anime-02_dansei > * {
  height: 210px !important;
}
@media screen and (max-width: 767px) {
  #about-super-v #anime-02_dansei > * {
    height: 145px !important;
  }
}

#about-super-v #anime-06_robot {
  margin: -36px 0 0 -23px;
}
@media screen and (max-width: 1024px) {
  #about-super-v #anime-06_robot {
    display: none;
  }
}
#about-super-v #anime-06_robot > * {
  height: 132px !important;
}

/*-------------------------
  01.虫メガネお姉さん
-------------------------*/
#about-super-v #anime-01_mushimegane {
  bottom: 27.6%;
  right: -75px;
}
#about-super-v #anime-01_mushimegane > * {
  height: 281px !important;
}

/*-------------------------
  05.検品おじさん（段ボール）
-------------------------*/
#super-v-solution #anime-05_dansei_kenpin_danboru {
  top: -193px;
  left: 18px;
}
@media screen and (max-width: 767px) {
  #super-v-solution #anime-05_dansei_kenpin_danboru {
    top: -131px;
    left: 4px;
  }
}
#super-v-solution #anime-05_dansei_kenpin_danboru > * {
  height: 290px !important;
}
@media screen and (max-width: 767px) {
  #super-v-solution #anime-05_dansei_kenpin_danboru > * {
    height: 147px !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ News＆Topics
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_news #pagetitle .innerWrap {
  max-width: 740px;
}
#page_news #pagetitle .character_left {
  bottom: 130px;
  left: 10px;
}
@media screen and (max-width: 767px) {
  #page_news #pagetitle .character_left {
    bottom: -3px;
    left: 80px;
  }
}
#page_news #pagetitle .character_right {
  right: 10px;
}
@media screen and (max-width: 767px) {
  #page_news #pagetitle .character_right {
    bottom: -25px;
    right: 80px;
  }
}
#page_news #pagetitle #anime-06_robot {
  bottom: 94px;
  left: -20px;
}
@media screen and (max-width: 767px) {
  #page_news #pagetitle #anime-06_robot {
    bottom: -41px;
    left: 50px;
  }
}
#page_news #pagetitle #anime-06_robot > * {
  height: 172px !important;
  transform-origin: top left !important;
}
#page_news #pagetitle #anime-07_robot {
  bottom: 18px;
  right: -18px;
}
@media screen and (max-width: 767px) {
  #page_news #pagetitle #anime-07_robot {
    bottom: -45px;
    right: 53px;
  }
}
#page_news #pagetitle #anime-07_robot > * {
  height: 157px !important;
  transform-origin: bottom right !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 会社概要
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_overview #pagetitle .innerWrap {
  max-width: 1100px;
}
@media screen and (min-width: 768px) {
  #page_overview #pagetitle .character_left {
    left: 50px;
  }
}
@media screen and (min-width: 768px) {
  #page_overview #pagetitle .character_right {
    right: 10px;
  }
}
#page_overview #pagetitle #anime-02_dansei > *,
#page_overview #pagetitle #anime-03_josei_hakusyu > * {
  transform-origin: bottom center !important;
  transform: scale(-1, 1);
}
#page_overview #pagetitle #anime-02_dansei {
  bottom: -74px;
  right: 90px;
}
@media screen and (max-width: 767px) {
  #page_overview #pagetitle #anime-02_dansei {
    bottom: -13px;
    right: 36px;
  }
}
#page_overview #pagetitle #anime-02_dansei > * {
  height: 210px !important;
}
@media screen and (max-width: 767px) {
  #page_overview #pagetitle #anime-02_dansei > * {
    height: 130px !important;
  }
}
#page_overview #pagetitle #anime-03_josei_hakusyu {
  bottom: -40px;
  right: 172px;
}
@media screen and (max-width: 767px) {
  #page_overview #pagetitle #anime-03_josei_hakusyu {
    bottom: 8px;
    right: 87px;
  }
}
#page_overview #pagetitle #anime-03_josei_hakusyu > * {
  height: 220px !important;
}
@media screen and (max-width: 767px) {
  #page_overview #pagetitle #anime-03_josei_hakusyu > * {
    height: 135px !important;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
 ■ 採用情報
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
#page_recruit #pagetitle .innerWrap {
  max-width: 1114px;
}
@media screen and (min-width: 768px) {
  #page_recruit #pagetitle .character_left {
    bottom: 20px;
    left: 56px;
  }
}
@media screen and (min-width: 768px) {
  #page_recruit #pagetitle .character_right {
    right: 7px;
  }
}
#page_recruit #pagetitle #anime-01_mushimegane {
  bottom: -50px;
  right: -15px;
}
@media screen and (max-width: 767px) {
  #page_recruit #pagetitle #anime-01_mushimegane {
    bottom: -11px;
    right: 25px;
  }
}
#page_recruit #pagetitle #anime-01_mushimegane > * {
  height: 273px !important;
}
@media screen and (max-width: 767px) {
  #page_recruit #pagetitle #anime-01_mushimegane > * {
    height: 140px !important;
  }
}