@charset "UTF-8";
:root {
  /* 1. ポップ：モーダルが弾んで出てくる（一番おすすめ） */
  --animation-pop: cubic-bezier(0.17, 0.88, 0.30, 1.28);
  /* 2. スムース：上品にふわっと動く（フェードなどに） */
  --animation-smooth: cubic-bezier(0.45, 0, 0.55, 1);
  /* 3. シャープ：シュッと素早く動く（閉じる時やボタンに） */
  --animation-sharp: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* 4. ヘビー：どっしりと落ち着いた動き（背景の暗転などに） */
  --animation-heavy: cubic-bezier(0.65, 0, 0.35, 1);
  /* animate.style風のバウンスイージング */
  /* ぼよよん用（弾む） */
  --animation-bounce: cubic-bezier(0.17, 0.88, 0.3, 1.28);
  /* ぴぴっと用（鋭く刺さる） */
  --animation-pin: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  /* シュッと出てくる */
  --animation-fadeInUp: fadeInUp 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
            transform: translate3d(0, 20px, 0); /* 距離を40pxにするとシュッと上品になります */
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.p-discoveryshiraishi :not(.is-exclude) {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0s ease-out;
  transition: all 0s ease-out;
}
.p-discoveryshiraishi :not(.is-exclude) * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0s ease-out;
  transition: all 0s ease-out;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.p-discoveryshiraishi :not(.is-exclude) *::before,
.p-discoveryshiraishi :not(.is-exclude) *::after {
  -webkit-transition: all 0s ease-out;
  transition: all 0s ease-out;
}
.p-discoveryshiraishi :not(.is-exclude) html {
  font-size: 62.5%;
}
.p-discoveryshiraishi :not(.is-exclude) body {
  font-size: 16px;
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  font-style: normal;
  color: #333;
  line-height: 1;
  text-align: justify;
  background: #fff;
  overflow-x: hidden;
}
.p-discoveryshiraishi :not(.is-exclude) h1,
.p-discoveryshiraishi :not(.is-exclude) h2,
.p-discoveryshiraishi :not(.is-exclude) h3,
.p-discoveryshiraishi :not(.is-exclude) h4,
.p-discoveryshiraishi :not(.is-exclude) h5,
.p-discoveryshiraishi :not(.is-exclude) h6 {
  font-family: "Noto Sans JP", "Roboto", sans-serif;
  font-size: inherit;
  font-weight: bold;
}
.p-discoveryshiraishi :not(.is-exclude) ul,
.p-discoveryshiraishi :not(.is-exclude) li {
  list-style: none;
}
.p-discoveryshiraishi :not(.is-exclude) a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all 0s ease-out;
  transition: all 0s ease-out;
  display: inline-block;
}
.p-discoveryshiraishi :not(.is-exclude) table {
  border-collapse: collapse;
}
.p-discoveryshiraishi :not(.is-exclude) i {
  display: block;
  line-height: 1;
  font-style: normal;
}
.p-discoveryshiraishi :not(.is-exclude) em {
  font-style: normal;
}
.p-discoveryshiraishi :not(.is-exclude) img {
  width: 100%;
  max-width: 100%;
  vertical-align: top;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
}
.p-discoveryshiraishi :not(.is-exclude) svg {
  fill: currentColor;
}
.p-discoveryshiraishi :not(.is-exclude) button {
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}
.p-discoveryshiraishi :not(.is-exclude) input,
.p-discoveryshiraishi :not(.is-exclude) button {
  outline: none;
  border: none;
}
.p-discoveryshiraishi :not(.is-exclude) section {
  position: relative;
}
.p-discoveryshiraishi .breadBox {
  margin: 80px 0 0 0;
}
@media screen and (max-width: 767px) {
  .p-discoveryshiraishi .breadBox {
    margin: 160px 0 0 0;
  }
}

/* フェードイン前の状態 */
.js-fadein {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

/* スクロールして表示された時の状態 */
.js-fadein.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.js-open {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.js-open.js-open-down {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

/* 表示時 */
.js-open.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

html {
  scrollbar-gutter: stable;
}

@media screen and (min-width: 768px) {
  body:not(.is-loaded-complete) {
    overflow: hidden;
    -ms-scroll-chaining: none;
        overscroll-behavior: none;
  }
}
/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.p-discoveryshiraishi body { /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}
.p-discoveryshiraishi .animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.p-discoveryshiraishi .animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.p-discoveryshiraishi .flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}
@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
.p-discoveryshiraishi .shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}
.p-discoveryshiraishi .bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
.p-discoveryshiraishi .tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.p-discoveryshiraishi .swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
.p-discoveryshiraishi {
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
            transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
            transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
            transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
            transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
            transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.p-discoveryshiraishi .wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
.p-discoveryshiraishi {
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-discoveryshiraishi .pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
            transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
            transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
            transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
            transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}
.p-discoveryshiraishi .flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.p-discoveryshiraishi .flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.p-discoveryshiraishi .flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.p-discoveryshiraishi .flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.p-discoveryshiraishi .flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-discoveryshiraishi .fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-discoveryshiraishi .fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-discoveryshiraishi .fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-discoveryshiraishi .fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-discoveryshiraishi .fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-discoveryshiraishi .fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-discoveryshiraishi .fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-discoveryshiraishi .fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-discoveryshiraishi .fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.p-discoveryshiraishi .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}
.p-discoveryshiraishi .fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.p-discoveryshiraishi .fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
.p-discoveryshiraishi .fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}
.p-discoveryshiraishi .fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}
.p-discoveryshiraishi .fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}
.p-discoveryshiraishi .fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}
.p-discoveryshiraishi .fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}
.p-discoveryshiraishi .fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.p-discoveryshiraishi .bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-discoveryshiraishi .bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.p-discoveryshiraishi .bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-discoveryshiraishi .bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-discoveryshiraishi .bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}
.p-discoveryshiraishi .bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}
.p-discoveryshiraishi .bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}
.p-discoveryshiraishi .bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}
.p-discoveryshiraishi .bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}
.p-discoveryshiraishi .bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.p-discoveryshiraishi .rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.p-discoveryshiraishi .rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.p-discoveryshiraishi .rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.p-discoveryshiraishi .rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}
.p-discoveryshiraishi .rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
    opacity: 0;
  }
}
.p-discoveryshiraishi .rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}
.p-discoveryshiraishi .rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}
.p-discoveryshiraishi .rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}
.p-discoveryshiraishi .rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}
.p-discoveryshiraishi .rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0;
  }
}
.p-discoveryshiraishi .hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
.p-discoveryshiraishi {
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}
.p-discoveryshiraishi .rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
.p-discoveryshiraishi {
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg);
  }
}
.p-discoveryshiraishi .rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
.p-discoveryshiraishi {
  /* originally authored by Angelo Rohit - https://github.com/angelorohit */
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
            transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
            transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.p-discoveryshiraishi .lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.p-discoveryshiraishi .animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.p-discoveryshiraishi {
  /* originally authored by Angelo Rohit - https://github.com/angelorohit */
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.p-discoveryshiraishi .lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.p-discoveryshiraishi .animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}
.p-discoveryshiraishi {
  /* originally authored by Angelo Rohit - https://github.com/angelorohit */
}
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}
@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
            transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
            transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
            transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
            transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
            transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
            transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
            transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
            transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
}
.p-discoveryshiraishi .wiggle {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
.p-discoveryshiraishi .animated.wiggle {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

.c-hgroup .c-hgroup__logo {
  text-align: center;
  margin-bottom: -1px;
}
.c-hgroup .c-hgroup__logo .c-hgroup__img {
  margin: 0 auto;
  width: auto;
  height: 44px;
  display: inline-block;
}
.c-hgroup .c-hgroup__heading {
  width: 100%;
  height: 68px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 40px !important;
  font-weight: bold;
  background: #fff;
  border-radius: 68px;
  color: rgb(11, 124, 195);
}
.c-hgroup .c-hgroup__heading .c-hgroup__small {
  font-size: 30px !important;
}
.c-hgroup .c-hgroup__heading::before, .c-hgroup .c-hgroup__heading::after {
  display: inline-block;
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background: rgb(11, 124, 195);
}
#outdoors .c-hgroup .c-hgroup__heading {
  color: rgb(11, 124, 195);
}
#outdoors .c-hgroup .c-hgroup__heading::before, #outdoors .c-hgroup .c-hgroup__heading::after {
  background: rgb(11, 124, 195);
}
#indoors .c-hgroup .c-hgroup__heading {
  color: rgb(185, 141, 0);
}
#indoors .c-hgroup .c-hgroup__heading::before, #indoors .c-hgroup .c-hgroup__heading::after {
  background: rgb(185, 141, 0);
}
#hospital .c-hgroup .c-hgroup__heading {
  color: rgb(27, 166, 136);
}
#hospital .c-hgroup .c-hgroup__heading::before, #hospital .c-hgroup .c-hgroup__heading::after {
  background: rgb(27, 166, 136);
}
#office .c-hgroup .c-hgroup__heading {
  color: rgb(199, 110, 204);
}
#office .c-hgroup .c-hgroup__heading::before, #office .c-hgroup .c-hgroup__heading::after {
  background: rgb(199, 110, 204);
}
#farmranch .c-hgroup .c-hgroup__heading {
  color: rgb(243, 129, 18);
}
#farmranch .c-hgroup .c-hgroup__heading::before, #farmranch .c-hgroup .c-hgroup__heading::after {
  background: rgb(243, 129, 18);
}
.c-hgroup .c-hgroup__heading::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 22px;
  margin: auto;
}
.c-hgroup .c-hgroup__heading::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 22px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .c-hgroup .c-hgroup__logo .c-hgroup__img {
    margin: 0 auto;
    width: auto;
    height: 28px;
    display: inline-block;
  }
  .c-hgroup .c-hgroup__heading {
    width: 100%;
    height: 50px;
    border-radius: 50px;
    font-size: 24px !important;
  }
  .c-hgroup .c-hgroup__heading .c-hgroup__small {
    font-size: 20px !important;
  }
  .c-hgroup .c-hgroup__heading::before, .c-hgroup .c-hgroup__heading::after {
    width: 22px;
    height: 22px;
    border-radius: 22px;
  }
}

body:not(.is-loaded-complete) .p-discoveryshiraishi .c-section--slider {
  display: none !important;
}
.p-discoveryshiraishi .c-section--contents {
  margin-top: -160px;
  padding: 80px 0 320px 0;
  border-radius: 80px 80px 0 0;
  position: relative;
  z-index: 15;
  font-size: 20px;
  line-height: 2.2;
  color: #fff;
  background-image: url(../img/index/section_bgi01.webp);
  background-repeat: repeat;
  background-position: 0% 0%;
  background-size: 25px;
  background-attachment: fixed;
  overflow: hidden;
}
body:not(.is-loaded-complete) .p-discoveryshiraishi .c-section--contents {
  display: none !important;
}
.p-discoveryshiraishi .c-section--outdoors {
  background-color: rgb(11, 124, 195);
}
.p-discoveryshiraishi .c-section--indoors {
  background-color: rgb(255, 202, 29);
}
.p-discoveryshiraishi .c-section--hospital {
  background-color: rgb(73, 222, 190);
}
.p-discoveryshiraishi .c-section--office {
  background-color: rgb(199, 110, 204);
}
.p-discoveryshiraishi .c-section--farmranch {
  background-color: rgb(243, 129, 18);
  border-radius: 80px;
  padding-bottom: 240px;
}
.p-discoveryshiraishi .c-section .c-section__inner {
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  max-width: 1100px;
}
@media screen and (max-width: 767px) {
  .p-discoveryshiraishi .c-section--slider {
    margin-bottom: -60px;
  }
  .p-discoveryshiraishi .c-section--contents {
    margin-top: -60px;
    padding: 60px 0 280px 0;
    border-radius: 40px 40px 0 0;
    font-size: 15px;
    line-height: 2;
    background-image: url(../img/index/section_bgi01.webp);
    background-repeat: repeat;
    background-position: 0% 0%;
    background-size: 25px;
    background-attachment: unset;
  }
  .p-discoveryshiraishi .c-section--farmranch {
    border-radius: 40px;
  }
  .p-discoveryshiraishi .c-section .c-section__inner {
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    max-width: 1100px;
  }
}

.p-contents {
  position: relative;
}
.p-contents__header .p-contents__hgroup {
  margin-bottom: 40px;
}
.p-contents__body .p-contents__lead {
  margin-bottom: 40px;
}
.p-contents__body .p-contents__lead .p-contents__par {
  font-size: 20px;
  font-weight: 600;
  line-height: 2 !important;
}
#indoors .p-contents__body .p-contents__lead .p-contents__par {
  color: #333;
}
#hospital .p-contents__body .p-contents__lead .p-contents__par {
  color: #333;
}
#farmranch .p-contents__body .p-contents__lead .p-contents__par {
  color: #333;
}
.p-contents__body .p-contents__map .p-contents__item {
  padding: 8px;
  border: 1px solid #fff;
  border-radius: 40px;
  position: relative;
}
.p-contents__body .p-contents__map .p-contents__img {
  border-radius: 34px;
  overflow: hidden;
}
.p-contents__body .p-contents__map .p-contents__pin {
  display: block;
  width: 5.751765893vw;
  height: 6.458123108vw;
  position: absolute;
  top: 0;
  left: 0;
}
.p-contents__body .p-contents__map .p-contents__pin.is-left .p-contents__anchor:hover .p-contents__figcaption {
  -webkit-transform: translate(calc(-40px), -100%) scale(1, 1);
          transform: translate(calc(-40px), -100%) scale(1, 1);
}
.p-contents__body .p-contents__map .p-contents__pin.is-right .p-contents__anchor:hover .p-contents__figcaption {
  -webkit-transform: translate(calc((100% - 100px) * -1), -100%) scale(1, 1);
          transform: translate(calc((100% - 100px) * -1), -100%) scale(1, 1);
}
@media (min-width: 1120px) {
  .p-contents__body .p-contents__map .p-contents__pin {
    width: 57px;
    height: 64px;
  }
}
.p-contents__body .p-contents__map .p-contents__pin .p-contents__anchor {
  display: block;
}
.p-contents__body .p-contents__map .p-contents__pin .p-contents__anchor:hover {
  display: block;
}
.p-contents__body .p-contents__map .p-contents__pin .p-contents__anchor:hover .p-contents__figcaption {
  opacity: 1;
  -webkit-transform: translate(calc((100% - 57px) / -2), -100%) scale(1, 1);
          transform: translate(calc((100% - 57px) / -2), -100%) scale(1, 1);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.p-contents__body .p-contents__map .p-contents__pin .p-contents__anchor:hover .p-contents__img {
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.p-contents__body .p-contents__map .p-contents__pin .p-contents__figure {
  position: relative;
}
.p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption {
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -webkit-transform: translate(calc((100% - 57px) / -2), 0%) scale(0, 0);
          transform: translate(calc((100% - 57px) / -2), 0%) scale(0, 0);
  opacity: 0;
  padding: 0px 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: auto;
  min-height: 52px;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  background: #fff;
  border: 2px solid rgb(11, 124, 195);
  color: rgb(11, 124, 195);
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  z-index: 15;
}
#outdoors .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption {
  border: 2px solid rgb(199, 110, 204);
  color: rgb(199, 110, 204);
}
#outdoors .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption svg * {
  fill: rgb(199, 110, 204);
}
#indoors .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption {
  border: 2px solid rgb(27, 166, 136);
  color: rgb(27, 166, 136);
}
#indoors .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption svg * {
  fill: rgb(27, 166, 136);
}
#hospital .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption {
  border: 2px solid rgb(243, 129, 18);
  color: rgb(243, 129, 18);
}
#hospital .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption svg * {
  fill: rgb(243, 129, 18);
}
#office .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption {
  border: 2px solid rgb(232, 178, 0);
  color: rgb(232, 178, 0);
}
#office .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption svg * {
  fill: rgb(232, 178, 0);
}
#farmranch .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption {
  border: 2px solid rgb(11, 124, 195);
  color: rgb(11, 124, 195);
}
#farmranch .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption svg * {
  fill: rgb(11, 124, 195);
}
.p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption .p-contents__em {
  display: none;
}
.p-contents__body .p-contents__map .p-contents__pin .p-contents__img {
  padding-top: 10px;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
#outdoors .p-contents__body .p-contents__map .p-contents__item--01 {
  padding: 8px;
  border-radius: 40px;
}
#outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__img {
  border-radius: 34px;
}
#outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
  top: 61.1111111111%;
  left: 47.2%;
}
@media (min-width: 1120px) {
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 396px;
    left: 480px;
  }
}
#outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
  top: 66.6666666667%;
  left: 61.4%;
}
@media (min-width: 1120px) {
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
    top: 420px11;
    left: 622px;
  }
}
#outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--03 {
  top: 68.253968254%;
  left: 33%;
}
@media (min-width: 1120px) {
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--03 {
    top: 430px11;
    left: 338px;
  }
}
#outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--04 {
  top: 16.3492063492%;
  left: 23.8%;
}
@media (min-width: 1120px) {
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--04 {
    top: 114px;
    left: 246px;
  }
}
#outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--05 {
  top: 39.2063492063%;
  left: 15%;
}
@media (min-width: 1120px) {
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--05 {
    top: 258px;
    left: 158px;
  }
}
#outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--06 {
  top: 23.8095238095%;
  left: 45.6%;
}
@media (min-width: 1120px) {
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--06 {
    top: 161px;
    left: 464px;
  }
}
#indoors .p-contents__body .p-contents__map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
#indoors .p-contents__body .p-contents__map .p-contents__item--01 {
  grid-area: 1/1/2/2;
}
#indoors .p-contents__body .p-contents__map .p-contents__item--02 {
  grid-area: 1/2/2/3;
}
#indoors .p-contents__body .p-contents__map .p-contents__item--03 {
  grid-area: 2/1/3/2;
}
#indoors .p-contents__body .p-contents__map .p-contents__item--04 {
  grid-area: 2/2/3/3;
}
#indoors .p-contents__body .p-contents__map .p-contents__item {
  padding: 8px;
  border-radius: 40px;
}
#indoors .p-contents__body .p-contents__map .p-contents__item .p-contents__img {
  border-radius: 34px;
}
#indoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
  top: 39.0163934426%;
  left: 75.5319148936%;
}
@media (min-width: 1120px) {
  #indoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 249px;
    left: 363px;
  }
}
#indoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
  top: 56.8852459016%;
  left: 19.1489361702%;
}
@media (min-width: 1120px) {
  #indoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
    top: 358px;
    left: 98px;
  }
}
#indoors .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
  top: 47.5409836066%;
  left: 76.5957446809%;
}
@media (min-width: 1120px) {
  #indoors .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
    top: 316px;
    left: 368px;
  }
}
#indoors .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--04 {
  top: 27.0491803279%;
  left: 34.0425531915%;
}
@media (min-width: 1120px) {
  #indoors .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--04 {
    top: 176px;
    left: 168px;
  }
}
#indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--05 {
  top: 18.0327868852%;
  left: 57.4468085106%;
}
@media (min-width: 1120px) {
  #indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--05 {
    top: 121px;
    left: 278px;
  }
}
#indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--06 {
  top: 43.9344262295%;
  left: 77.2340425532%;
}
@media (min-width: 1120px) {
  #indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--06 {
    top: 279px;
    left: 371px;
  }
}
#indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--07 {
  top: 61.6393442623%;
  left: 11.0638297872%;
}
@media (min-width: 1120px) {
  #indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--07 {
    top: 387px;
    left: 60px;
  }
}
#indoors .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--08 {
  top: 70.4918032787%;
  left: 63.829787234%;
}
@media (min-width: 1120px) {
  #indoors .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--08 {
    top: 441px;
    left: 308px;
  }
}
#hospital .p-contents__body .p-contents__map .p-contents__item {
  padding: 8px;
  border-radius: 40px;
}
#hospital .p-contents__body .p-contents__map .p-contents__item .p-contents__img {
  border-radius: 34px;
}
#hospital .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
  top: 31.746031746%;
  left: 20.6%;
}
@media (min-width: 1120px) {
  #hospital .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 211px;
    left: 214px;
  }
}
#hospital .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
  top: 43.1746031746%;
  left: 55%;
}
@media (min-width: 1120px) {
  #hospital .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
    top: 295px;
    left: 558px;
  }
}
#office .p-contents__body .p-contents__map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}
#office .p-contents__body .p-contents__map .p-contents__item--01 {
  grid-area: 1/1/2/2;
}
#office .p-contents__body .p-contents__map .p-contents__item--02 {
  grid-area: 1/2/2/3;
}
#office .p-contents__body .p-contents__map .p-contents__item {
  padding: 8px;
  border-radius: 40px;
}
#office .p-contents__body .p-contents__map .p-contents__item .p-contents__img {
  border-radius: 34px;
}
#office .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
  top: 29.5081967213%;
  left: 28.2978723404%;
}
@media (min-width: 1120px) {
  #office .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 191px;
    left: 141px;
  }
}
#office .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
  top: 34.4262295082%;
  left: 54.4680851064%;
}
@media (min-width: 1120px) {
  #office .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
    top: 236px;
    left: 264px;
  }
}
#office .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
  top: 13.1147540984%;
  left: 14.8936170213%;
}
@media (min-width: 1120px) {
  #office .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
    top: 91px;
    left: 78px;
  }
}
#office .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--04 {
  top: 54.0983606557%;
  left: 66.3829787234%;
}
@media (min-width: 1120px) {
  #office .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--04 {
    top: 341px;
    left: 320px;
  }
}
#farmranch .p-contents__body .p-contents__map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto 1fr;
  grid-column-gap: 40px;
  grid-row-gap: 2.6666666667%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map {
    grid-row-gap: 40px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--01 {
  grid-area: 1/1/2/2;
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--02 {
  grid-area: 2/1/3/2;
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--03 {
  grid-area: 1/2/3/3;
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--04 {
  grid-area: 3/1/4/2;
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--05 {
  grid-area: 3/2/4/3;
}
#farmranch .p-contents__body .p-contents__map .p-contents__item {
  padding: 8px;
  border-radius: 40px;
}
#farmranch .p-contents__body .p-contents__map .p-contents__item .p-contents__img {
  border-radius: 34px;
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
  top: 34.965034965%;
  left: 31.914893617%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 111px;
    left: 158px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--02 {
  top: 3.4965034965%;
  left: 25.5319148936%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--02 {
    top: 21px;
    left: 128px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
  top: 48.951048951%;
  left: 44.6808510638%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
    top: 151px;
    left: 218px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--04 {
  top: 57.6323987539%;
  left: 62.7659574468%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--04 {
    top: 381px;
    left: 303px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--05 {
  top: 36.0655737705%;
  left: 35.3191489362%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--05 {
    top: 231px;
    left: 174px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--06 {
  top: 68.0327868852%;
  left: 21.2765957447%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--06 {
    top: 426px;
    left: 108px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--07 {
  top: 13.9344262295%;
  left: 62.7659574468%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--07 {
    top: 96px;
    left: 303px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--08 {
  top: 40%;
  left: 33.1914893617%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--08 {
    top: 255px;
    left: 164px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--09 {
  top: 17.0491803279%;
  left: 71.914893617%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--09 {
    top: 115px;
    left: 346px;
  }
}
#farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--10 {
  top: 77.0491803279%;
  left: 23.4042553191%;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--10 {
    top: 481px;
    left: 118px;
  }
}
.p-contents__footer {
  position: relative;
}
#outdoors .p-contents__footer {
  display: block;
  width: 271px;
  position: absolute;
  bottom: -120px;
  left: -22px;
}
@media (min-width: 1120px) {
  #outdoors .p-contents__footer {
    bottom: -90px;
    left: -82px;
  }
}
#indoors .p-contents__footer {
  display: block;
  width: 248px;
  position: absolute;
  bottom: -114px;
  right: -14px;
}
@media (min-width: 1120px) {
  #indoors .p-contents__footer {
    bottom: -64px;
    right: -114px;
  }
}
#hospital .p-contents__footer {
  display: block;
  width: 212px;
  position: absolute;
  bottom: -116px;
  left: -18px;
}
@media (min-width: 1120px) {
  #hospital .p-contents__footer {
    bottom: -56px;
    left: -48px;
  }
}
#office .p-contents__footer {
  display: block;
  width: 229px;
  position: absolute;
  bottom: -106px;
  right: -25px;
}
@media (min-width: 1120px) {
  #office .p-contents__footer {
    bottom: -56px;
    right: -75px;
  }
}
#farmranch .p-contents__footer {
  display: block;
  width: 214px;
  position: absolute;
  bottom: -96px;
  left: -25px;
}
@media (min-width: 1120px) {
  #farmranch .p-contents__footer {
    bottom: -56px;
    left: -75px;
  }
}
@media screen and (max-width: 767px) {
  .p-contents {
    position: relative;
  }
  .p-contents__header {
    margin: 0 10px;
  }
  .p-contents__header .p-contents__hgroup {
    margin-bottom: 30px;
  }
  .p-contents__body .p-contents__lead {
    margin: 0 10px 40px 10px;
  }
  .p-contents__body .p-contents__lead .p-contents__par {
    font-size: 15px;
  }
  .p-contents__body .p-contents__map .p-contents__item {
    padding: 8px;
    border-radius: 40px;
    width: 100%;
    max-width: 375px;
  }
  .p-contents__body .p-contents__map .p-contents__img {
    border-radius: 24px;
  }
  .p-contents__body .p-contents__map .p-contents__pin {
    width: 12.8%;
    height: 14.4%;
  }
}
@media screen and (max-width: 767px) and (min-width: 1120px) {
  .p-contents__body .p-contents__map .p-contents__pin {
    width: 7.1641791045vw;
    height: 8.0597014925vw;
  }
}
@media screen and (max-width: 767px) {
  .p-contents__body .p-contents__map .p-contents__pin .p-contents__anchor:hover .p-contents__img {
    -webkit-transform: unset;
            transform: unset;
  }
  .p-contents__body .p-contents__map .p-contents__pin .p-contents__figcaption {
    display: none;
  }
  .p-contents__body .p-contents__map .p-contents__pin .p-contents__img {
    padding-top: 0;
  }
  #outdoors .p-contents__body .p-contents__map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-column-gap: unset;
    grid-row-gap: unset;
    gap: 30px;
  }
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 64.8275862069%;
    left: 56.4179104478%;
  }
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
    top: 68.5057471264%;
    left: 79.7014925373%;
  }
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--03 {
    top: 70.8045977011%;
    left: 29.2537313433%;
  }
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--04 {
    top: 25.2873563218%;
    left: 16.1194029851%;
  }
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--05 {
    top: 44.5977011494%;
    left: 5.9701492537%;
  }
  #outdoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--06 {
    top: 32.183908046%;
    left: 51.3432835821%;
  }
  #indoors .p-contents__body .p-contents__map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-column-gap: unset;
    grid-row-gap: unset;
    gap: 30px;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--01 {
    grid-area: unset;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--02 {
    grid-area: unset;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--03 {
    grid-area: unset;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--04 {
    grid-area: unset;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 56.3218390805%;
    left: 17.9104477612%;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
    top: 38.6206896552%;
    left: 74.6268656716%;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
    top: 48.275862069%;
    left: 68.6567164179%;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--04 {
    top: 27.5862068966%;
    left: 33.4328358209%;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--05 {
    top: 19.7701149425%;
    left: 57.3134328358%;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--06 {
    top: 45.9770114943%;
    left: 74.0298507463%;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--07 {
    top: 62.0689655172%;
    left: 10.1492537313%;
  }
  #indoors .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--08 {
    top: 71.2643678161%;
    left: 64.1791044776%;
  }
  #hospital .p-contents__body .p-contents__map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #hospital .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 29.1666666667%;
    left: 13.0952380952%;
  }
  #hospital .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
    top: 41.0714285714%;
    left: 65.4761904762%;
  }
  #office .p-contents__body .p-contents__map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-column-gap: unset;
    grid-row-gap: unset;
    gap: 30px;
  }
  #office .p-contents__body .p-contents__map .p-contents__item--01 {
    grid-area: unset;
  }
  #office .p-contents__body .p-contents__map .p-contents__item--02 {
    grid-area: unset;
  }
  #office .p-contents__body .p-contents__map .p-contents__item {
    padding: 8px;
    border-radius: 54px;
  }
  #office .p-contents__body .p-contents__map .p-contents__item .p-contents__img {
    border-radius: 44px;
  }
  #office .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 31.508197%;
    left: 29.297872%;
  }
  #office .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--02 {
    top: 38.42623%;
    left: 54.4680851064%;
  }
  #office .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
    top: 16.114754%;
    left: 16.893617%;
  }
  #office .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--04 {
    top: 54.0983606557%;
    left: 66.3829787234%;
  }
  #farmranch .p-contents__body .p-contents__map {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: unset;
    grid-template-rows: unset;
    grid-column-gap: unset;
    grid-row-gap: unset;
    gap: 30px;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--01 {
    grid-area: unset;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--02 {
    grid-area: unset;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--03 {
    grid-area: unset;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--04 {
    grid-area: unset;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--05 {
    grid-area: unset;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--01 .p-contents__pin--01 {
    top: 43.1547619048%;
    left: 26.1904761905%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--02 {
    top: 43.4523809524%;
    left: 64.2857142857%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--02 .p-contents__pin--03 {
    top: 64.2857142857%;
    left: 22.0238095238%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--03 .p-contents__pin--04 {
    top: 59.5238095238%;
    left: 54.7619047619%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--05 {
    top: 31.25%;
    left: 42.5595238095%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--06 {
    top: 71.4285714286%;
    left: 14.880952381%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--04 .p-contents__pin--07 {
    top: 13.3928571429%;
    left: 70.2380952381%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--08 {
    top: 38.6904761905%;
    left: 33.630952381%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--09 {
    top: 17.2619047619%;
    left: 58.0357142857%;
  }
  #farmranch .p-contents__body .p-contents__map .p-contents__item--05 .p-contents__pin--10 {
    top: 74.4047619048%;
    left: 17.8571428571%;
  }
  .p-contents__footer {
    position: relative;
  }
  #outdoors .p-contents__footer {
    display: block;
    width: 271px;
    position: absolute;
    bottom: -156px;
    left: 10px;
  }
  #indoors .p-contents__footer {
    display: block;
    width: 248px;
    position: absolute;
    bottom: -156px;
    right: 10px;
  }
  #hospital .p-contents__footer {
    display: block;
    width: 212px;
    position: absolute;
    bottom: -137px;
    left: 10px;
  }
  #office .p-contents__footer {
    display: block;
    width: 229px;
    position: absolute;
    bottom: -114px;
    right: 10px;
  }
  #farmranch .p-contents__footer {
    display: block;
    width: 214px;
    position: absolute;
    bottom: -114px;
    left: 10px;
  }
}

.p-discoveryshiraishi .p-hero {
  padding-top: 35px;
  position: relative;
  overflow: unset;
  background: #fff;
}
.p-discoveryshiraishi .p-hero .p-hero__heading {
  margin: 0 auto 16px auto;
  width: 100%;
  max-width: 430px;
  aspect-ratio: 430/280;
}
.p-discoveryshiraishi .p-hero .p-hero__par {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 2.2 !important;
  letter-spacing: 0.1em;
}
.p-discoveryshiraishi .p-hero .p-hero__navi {
  position: relative;
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item {
  font-size: 18px;
  width: 13.305556vw;
  position: absolute;
  z-index: 15;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
@media (min-width: 1120px) {
  .p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item {
    font-size: 20px;
    width: max(9.3055555556vw, 125px);
    height: 10.0694444444vw;
  }
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item--01 {
  top: 21.0416666667vw;
  left: 48.8888888889vw;
  color: #fff;
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item--02 {
  top: 8.1944444444vw;
  left: 62.6388888889vw;
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item--03 {
  top: 20.6944444444vw;
  left: 76.0416666667vw;
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item--04 {
  top: 23.3333333333vw;
  left: 27.5694444444vw;
  color: #fff;
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item--05 {
  top: 14.7916666667vw;
  left: 11.5277777778vw;
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item--05 .p-hero__figcaption {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__anchor {
  display: block;
  padding-bottom: 0px;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__anchor:hover {
  padding-bottom: 10px !important;
  -webkit-transform: translateY(-10px) !important;
          transform: translateY(-10px) !important;
  -webkit-transition: all linear 0.2s !important;
  transition: all linear 0.2s !important;
  -webkit-animation-name: unset;
          animation-name: unset;
}
@media (min-width: 1120px) {
  .p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__anchor {
    width: 100%;
    max-width: 134px;
    height: 100%;
    max-height: 145px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__figure {
  position: relative;
}
.p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__figcaption {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: translateY(-11px);
          transform: translateY(-11px);
}
.p-discoveryshiraishi .p-hero .p-hero__illust {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/1075;
}
.p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi {
  position: relative;
}
.p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi .p-hero__figure {
  position: relative;
}
.p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi .p-hero__figure::before {
  display: block;
  content: "";
  width: 100%;
  height: 100vh;
  background: #2ea7e0;
  position: absolute;
  top: 74.6vw;
  left: 0;
  right: 0;
  z-index: 0;
  margin: auto;
}
.p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi .p-hero__figure .p-hero__img,
.p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi .p-hero__figure .p-hero__source {
  position: relative;
  z-index: 15;
}
.p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__lottie {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (min-width: 992px) {
  .is-loaded-complete .p-discoveryshiraishi .p-hero {
    overflow: hidden;
  }
  .p-discoveryshiraishi .p-hero .p-hero__heading {
    opacity: 0;
  }
  .is-loaded-heading .p-discoveryshiraishi .p-hero .p-hero__heading {
    -webkit-animation: var(--animation-fadeInUp);
            animation: var(--animation-fadeInUp);
  }
  .p-discoveryshiraishi .p-hero .p-hero__par {
    opacity: 0;
  }
  .is-loaded-lead .p-discoveryshiraishi .p-hero .p-hero__par {
    -webkit-animation: var(--animation-fadeInUp);
            animation: var(--animation-fadeInUp);
  }
  .p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item {
    opacity: 0;
  }
  .is-firstscrolled .p-discoveryshiraishi .p-hero .p-hero__navi .p-hero__item {
    -webkit-animation-name: bounceInUp;
            animation-name: bounceInUp;
    -webkit-animation-duration: 1s;
            animation-duration: 1s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    opacity: 1;
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-transition: opacity 0.4s var(--animation-bounce), -webkit-transform 0.4s var(--animation-bounce);
    transition: opacity 0.4s var(--animation-bounce), -webkit-transform 0.4s var(--animation-bounce);
    transition: opacity 0.4s var(--animation-bounce), transform 0.4s var(--animation-bounce);
    transition: opacity 0.4s var(--animation-bounce), transform 0.4s var(--animation-bounce), -webkit-transform 0.4s var(--animation-bounce);
  }
  .is-loaded-illust .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__lottie,
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__cover {
    opacity: 0;
    -webkit-transform: translateY(-40px) scale(1);
            transform: translateY(-40px) scale(1);
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
  }
  .is-loaded-illust .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__lottie,
  .is-loaded-illust .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__cover {
    opacity: 1;
    -webkit-transform: translateY(0) scale(1);
            transform: translateY(0) scale(1);
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__lottie {
    -webkit-transition: opacity 0.4s var(--animation-pin) 0.2s, -webkit-transform 0.4s var(--animation-pin) 0.2s;
    transition: opacity 0.4s var(--animation-pin) 0.2s, -webkit-transform 0.4s var(--animation-pin) 0.2s;
    transition: opacity 0.4s var(--animation-pin) 0.2s, transform 0.4s var(--animation-pin) 0.2s;
    transition: opacity 0.4s var(--animation-pin) 0.2s, transform 0.4s var(--animation-pin) 0.2s, -webkit-transform 0.4s var(--animation-pin) 0.2s;
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__cover {
    -webkit-transition: opacity 0.4s var(--animation-pin) 0.4s, -webkit-transform 0.4s var(--animation-pin) 0.4s;
    transition: opacity 0.4s var(--animation-pin) 0.4s, -webkit-transform 0.4s var(--animation-pin) 0.4s;
    transition: opacity 0.4s var(--animation-pin) 0.4s, transform 0.4s var(--animation-pin) 0.4s;
    transition: opacity 0.4s var(--animation-pin) 0.4s, transform 0.4s var(--animation-pin) 0.4s, -webkit-transform 0.4s var(--animation-pin) 0.4s;
  }
}
@media screen and (max-width: 991px) {
  .p-discoveryshiraishi .p-hero {
    padding-top: 35px;
    position: relative;
    height: calc(100vh + 100px);
    min-height: calc(130vw + 255px);
    overflow: hidden;
  }
  .p-discoveryshiraishi .p-hero .p-hero__heading {
    margin: 0 auto 30px auto;
    width: 100%;
    max-width: 260px;
  }
  .p-discoveryshiraishi .p-hero .p-hero__navi {
    display: none;
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust {
    position: absolute;
    bottom: 0;
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi {
    width: 100vw;
    height: auto;
    aspect-ratio: 1024/741;
    position: absolute;
    bottom: 0;
    z-index: 15;
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__bgi .p-hero__figure::before {
    display: none;
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__lottie {
    display: none;
  }
  .p-discoveryshiraishi .p-hero .p-hero__illust .p-hero__cover {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .p-discoveryshiraishi .p-hero {
    padding-top: 35px;
    height: calc(100vh + 100px);
    min-height: calc(130vw + 300px);
  }
  .p-discoveryshiraishi .p-hero .p-hero__par {
    font-size: 15px;
    line-height: 2.2;
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: var(--animation-bounce);
            animation-timing-function: var(--animation-bounce);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 400px, 0);
            transform: translate3d(0, 400px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
            transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
            transform: translate3d(0, -5px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.p-discoveryshiraishi .p-menu .p-menu__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: fixed;
  top: 50%;
  right: -100px;
  z-index: 15;
  -webkit-transform: translateY(-50%) translateX(200px);
          transform: translateY(-50%) translateX(200px);
  -webkit-transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.is-scrolled .p-discoveryshiraishi .p-menu .p-menu__list {
  -webkit-transform: translateY(-50%) translateX(0px);
          transform: translateY(-50%) translateX(0px);
  -webkit-transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.p-discoveryshiraishi .p-menu .p-menu__item {
  width: 100%;
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
  background: #fff;
  border-radius: 50px;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
  -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
          filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
.p-discoveryshiraishi .p-menu .p-menu__item--outdoors {
  border: 2px solid #fff;
  background: rgb(11, 124, 195);
  color: #fff;
}
.p-discoveryshiraishi .p-menu .p-menu__item--outdoors:hover, .is-scroll-outdoors .p-discoveryshiraishi .p-menu .p-menu__item--outdoors {
  border: 2px solid rgb(11, 124, 195);
  background: #fff;
  color: rgb(11, 124, 195);
  -webkit-transform: translateZ(0) translateX(-20px);
          transform: translateZ(0) translateX(-20px);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.p-discoveryshiraishi .p-menu .p-menu__item--indoors {
  border: 2px solid #fff;
  background: rgb(255, 202, 29);
  color: #000;
}
.p-discoveryshiraishi .p-menu .p-menu__item--indoors:hover, .is-scroll-indoors .p-discoveryshiraishi .p-menu .p-menu__item--indoors {
  border: 2px solid rgb(255, 202, 29);
  background: #fff;
  color: rgb(185, 141, 0);
  -webkit-transform: translateZ(0) translateX(-20px);
          transform: translateZ(0) translateX(-20px);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.p-discoveryshiraishi .p-menu .p-menu__item--hospital {
  border: 2px solid #fff;
  background: rgb(73, 222, 190);
  color: #000;
}
.p-discoveryshiraishi .p-menu .p-menu__item--hospital:hover, .is-scroll-hospital .p-discoveryshiraishi .p-menu .p-menu__item--hospital {
  border: 2px solid rgb(73, 222, 190);
  background: #fff;
  color: rgb(27, 166, 136);
  -webkit-transform: translateZ(0) translateX(-20px);
          transform: translateZ(0) translateX(-20px);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.p-discoveryshiraishi .p-menu .p-menu__item--office {
  border: 2px solid #fff;
  background: rgb(199, 110, 204);
  color: #fff;
}
.p-discoveryshiraishi .p-menu .p-menu__item--office:hover, .is-scroll-office .p-discoveryshiraishi .p-menu .p-menu__item--office {
  border: 2px solid rgb(199, 110, 204);
  background: #fff;
  color: rgb(199, 110, 204);
  -webkit-transform: translateZ(0) translateX(-20px);
          transform: translateZ(0) translateX(-20px);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.p-discoveryshiraishi .p-menu .p-menu__item--farmranch {
  border: 2px solid #fff;
  background: rgb(243, 129, 18);
  color: #000;
}
.p-discoveryshiraishi .p-menu .p-menu__item--farmranch:hover, .is-scroll-farmranch .p-discoveryshiraishi .p-menu .p-menu__item--farmranch {
  border: 2px solid rgb(243, 129, 18);
  background: #fff;
  color: rgb(243, 129, 18);
  -webkit-transform: translateZ(0) translateX(-20px);
          transform: translateZ(0) translateX(-20px);
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.p-discoveryshiraishi .p-menu .p-menu__item .p-menu__anchor {
  padding: 12px 50px 12px 20px;
  width: 100%;
  min-width: 240px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.p-discoveryshiraishi .p-menu .p-menu__item .p-menu__small {
  display: none;
}
.p-discoveryshiraishi .p-menu .p-menu__button {
  display: none;
}
.p-discoveryshiraishi .p-menu .p-menu__bg {
  display: none;
}
@media screen and (max-width: 991px) {
  .p-discoveryshiraishi .p-menu .p-menu__list {
    display: none;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2px;
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 20px);
    max-width: 600px;
    z-index: 90;
    -webkit-transform: unset;
            transform: unset;
    -webkit-transition: unset;
    transition: unset;
    border-radius: 20px;
    overflow: hidden;
  }
  .is-scrolled .p-discoveryshiraishi .p-menu .p-menu__list {
    -webkit-transform: unset;
            transform: unset;
    -webkit-transition: unset;
    transition: unset;
  }
  .is-menu-open .p-discoveryshiraishi .p-menu .p-menu__list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-discoveryshiraishi .p-menu .p-menu__item {
    width: 100%;
    overflow: hidden;
    font-size: 18px;
    font-weight: bold;
    background: unset;
    border-radius: unset;
    -webkit-transition: unset;
    transition: unset;
    -webkit-filter: unset;
            filter: unset;
    margin: 0 auto;
  }
  .p-discoveryshiraishi .p-menu .p-menu__item--outdoors, .p-discoveryshiraishi .p-menu .p-menu__item--indoors, .p-discoveryshiraishi .p-menu .p-menu__item--hospital, .p-discoveryshiraishi .p-menu .p-menu__item--office, .p-discoveryshiraishi .p-menu .p-menu__item--farmranch {
    border: unset;
    background: unset;
    color: unset;
  }
  .p-discoveryshiraishi .p-menu .p-menu__item--outdoors:hover, .is-scroll-outdoors .p-discoveryshiraishi .p-menu .p-menu__item--outdoors, .is-scroll-indoors .p-discoveryshiraishi .p-menu .p-menu__item--outdoors, .is-scroll-hospital .p-discoveryshiraishi .p-menu .p-menu__item--outdoors, .is-scroll-office .p-discoveryshiraishi .p-menu .p-menu__item--outdoors, .is-scroll-farmranch .p-discoveryshiraishi .p-menu .p-menu__item--outdoors, .p-discoveryshiraishi .p-menu .p-menu__item--indoors:hover, .is-scroll-outdoors .p-discoveryshiraishi .p-menu .p-menu__item--indoors, .is-scroll-indoors .p-discoveryshiraishi .p-menu .p-menu__item--indoors, .is-scroll-hospital .p-discoveryshiraishi .p-menu .p-menu__item--indoors, .is-scroll-office .p-discoveryshiraishi .p-menu .p-menu__item--indoors, .is-scroll-farmranch .p-discoveryshiraishi .p-menu .p-menu__item--indoors, .p-discoveryshiraishi .p-menu .p-menu__item--hospital:hover, .is-scroll-outdoors .p-discoveryshiraishi .p-menu .p-menu__item--hospital, .is-scroll-indoors .p-discoveryshiraishi .p-menu .p-menu__item--hospital, .is-scroll-hospital .p-discoveryshiraishi .p-menu .p-menu__item--hospital, .is-scroll-office .p-discoveryshiraishi .p-menu .p-menu__item--hospital, .is-scroll-farmranch .p-discoveryshiraishi .p-menu .p-menu__item--hospital, .p-discoveryshiraishi .p-menu .p-menu__item--office:hover, .is-scroll-outdoors .p-discoveryshiraishi .p-menu .p-menu__item--office, .is-scroll-indoors .p-discoveryshiraishi .p-menu .p-menu__item--office, .is-scroll-hospital .p-discoveryshiraishi .p-menu .p-menu__item--office, .is-scroll-office .p-discoveryshiraishi .p-menu .p-menu__item--office, .is-scroll-farmranch .p-discoveryshiraishi .p-menu .p-menu__item--office, .p-discoveryshiraishi .p-menu .p-menu__item--farmranch:hover, .is-scroll-outdoors .p-discoveryshiraishi .p-menu .p-menu__item--farmranch, .is-scroll-indoors .p-discoveryshiraishi .p-menu .p-menu__item--farmranch, .is-scroll-hospital .p-discoveryshiraishi .p-menu .p-menu__item--farmranch, .is-scroll-office .p-discoveryshiraishi .p-menu .p-menu__item--farmranch, .is-scroll-farmranch .p-discoveryshiraishi .p-menu .p-menu__item--farmranch {
    border: unset;
    background: rgba(255, 255, 255, 0.8);
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-transition: unset;
    transition: unset;
  }
  .p-discoveryshiraishi .p-menu .p-menu__item--outdoors {
    color: rgb(11, 124, 195);
  }
  .p-discoveryshiraishi .p-menu .p-menu__item--indoors {
    color: rgb(185, 141, 0);
  }
  .p-discoveryshiraishi .p-menu .p-menu__item--hospital {
    color: rgb(27, 166, 136);
  }
  .p-discoveryshiraishi .p-menu .p-menu__item--office {
    color: rgb(199, 110, 204);
  }
  .p-discoveryshiraishi .p-menu .p-menu__item--farmranch {
    color: rgb(243, 129, 18);
  }
  .p-discoveryshiraishi .p-menu .p-menu__item .p-menu__anchor {
    padding: 12px 24px;
    width: 100%;
    min-width: unset;
    height: auto;
    min-height: 56px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    gap: 0px 8px;
  }
  .p-discoveryshiraishi .p-menu .p-menu__item .p-menu__small {
    display: unset;
    margin-left: auto;
  }
  .p-discoveryshiraishi .p-menu .p-menu__item .p-menu__small .p-menu__img {
    display: block;
    width: auto;
    height: 32px;
  }
  .p-discoveryshiraishi .p-menu .p-menu__button {
    padding: 15px 20px;
    width: 100%;
    max-width: 180px;
    height: 50px;
    border-radius: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    border: 2px solid #fff;
    background: rgb(51, 51, 51);
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    -webkit-filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
            filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 120;
    opacity: 0;
  }
  .is-loaded-complete .p-discoveryshiraishi .p-menu .p-menu__button {
    -webkit-animation-name: bounceInUp;
            animation-name: bounceInUp;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-fill-mode: both;
            animation-fill-mode: both;
    opacity: 1;
  }
  .p-discoveryshiraishi .p-menu .p-menu__button::before {
    display: inline-block;
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/index/menu_button01_open01.svg) no-repeat 50% 50%/contain;
  }
  .is-menu-open .p-discoveryshiraishi .p-menu .p-menu__button::before {
    background: url(../img/index/menu_button01_close01.svg) no-repeat 50% 50%/contain;
  }
  .is-menu-open .p-discoveryshiraishi .p-menu .p-menu__button::after {
    display: inline-block;
    content: "CLOSE";
  }
  .is-menu-open .p-discoveryshiraishi .p-menu .p-menu__button .p-menu__span {
    display: none;
  }
  .p-discoveryshiraishi .p-menu .p-menu__bg {
    display: none;
  }
  .is-menu-open .p-discoveryshiraishi .p-menu .p-menu__bg {
    display: unset;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 60;
    background: #fff;
  }
  .is-menu-open .p-discoveryshiraishi .p-menu .p-menu__bg .p-menu__inner {
    width: 100vw;
    height: calc(100vh + 100px);
    min-height: calc(130vw + 335px);
    position: relative;
  }
  .is-menu-open .p-discoveryshiraishi .p-menu .p-menu__bg .p-menu__inner > * {
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  .is-menu-open .p-discoveryshiraishi .p-menu .p-menu__bg .p-menu__inner {
    width: 100vw;
    height: calc(100vh + 100px);
    min-height: calc(130vw + 350px);
  }
  .p-discoveryshiraishi .p-menu .p-menu__list {
    top: 65px;
  }
}

@media screen and (max-width: 991px) {
  .is-menu-open .drawer_btn {
    display: none;
  }
}
.p-discoveryshiraishi .p-modal .p-modal__bgc {
  display: none;
  opacity: 0;
  width: 100vw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000000;
  cursor: pointer;
  -webkit-transition: opacity 0.3s linear, display 0.3s allow-discrete, overlay 0.3s allow-discrete;
  transition: opacity 0.3s linear, display 0.3s allow-discrete, overlay 0.3s allow-discrete;
}
.p-discoveryshiraishi .p-modal .p-modal__bgc:has(~ .p-modal__item.js-modal-active) {
  display: block;
  opacity: 0.8;
}
@starting-style {
  .p-discoveryshiraishi .p-modal .p-modal__bgc:has(~ .p-modal__item.js-modal-active) {
    opacity: 0;
  }
}
.p-discoveryshiraishi .p-modal > .p-modal__item {
  display: none;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.3s ease-out, display 0.3s allow-discrete, overlay 0.3s allow-discrete, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, display 0.3s allow-discrete, overlay 0.3s allow-discrete, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, display 0.3s allow-discrete, overlay 0.3s allow-discrete;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, display 0.3s allow-discrete, overlay 0.3s allow-discrete, -webkit-transform 0.3s ease-out;
  width: calc(100% - 40px);
  max-width: 1030px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  max-height: 90dvh;
  font-size: 20px;
  font-weight: bold;
  line-height: 2;
  background: #fff;
  border: 3px solid rgb(199, 110, 204);
  border-width: 3px 12px 12px 3px;
  border-radius: 64px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1000001;
}
.p-discoveryshiraishi .p-modal > .p-modal__item.js-modal-active {
  display: block;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}
@starting-style {
  .p-discoveryshiraishi .p-modal > .p-modal__item.js-modal-active {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
.p-discoveryshiraishi .p-modal > .p-modal__item--outdoors {
  border-color: rgb(199, 110, 204) !important;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--indoors {
  border-color: rgb(73, 222, 190) !important;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--hospital {
  border-color: rgb(243, 129, 18) !important;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--office {
  border-color: rgb(255, 202, 29) !important;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--farmranch {
  border-color: rgb(11, 124, 195) !important;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__inner {
  padding: 70px 110px 70px 70px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  position: unset;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__inner:not(:has(.p-modal__list)) {
  padding-bottom: 180px;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__inner::before {
  display: block;
  content: "";
  width: 80px;
  height: auto;
  background: url(../img/index/modal_outdoors_logo01.svg) no-repeat 50% 50%/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__inner::after {
  display: block;
  content: "";
  width: 180px;
  height: 135px;
  background: url(../img/index/contents_item01_illust01_img01.svg) no-repeat 50% 50%/contain;
  position: absolute;
  bottom: 40px;
  right: 90px;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__scroll {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px;
  position: relative;
  width: 100%;
  height: auto;
  max-height: calc(90dvh - 140px);
  overflow: hidden auto;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--outdoors .p-modal__inner::before {
  background: url(../img/index/modal_outdoors_logo01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--outdoors .p-modal__inner::after {
  background: url(../img/index/contents_item01_illust01_img01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--indoors .p-modal__inner::before {
  background: url(../img/index/modal_indoors_logo01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--indoors .p-modal__inner::after {
  background: url(../img/index/contents_item02_illust01_img01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--hospital .p-modal__inner::before {
  background: url(../img/index/modal_hospital_logo01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--hospital .p-modal__inner::after {
  background: url(../img/index/contents_item03_illust01_img01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--office .p-modal__inner::before {
  background: url(../img/index/modal_office_logo01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--office .p-modal__inner::after {
  background: url(../img/index/contents_item04_illust01_img01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--farmranch .p-modal__inner::before {
  background: url(../img/index/modal_farmranch_logo01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--farmranch .p-modal__inner::after {
  background: url(../img/index/contents_item05_illust01_img01.svg) no-repeat 50% 50%/contain;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__heading {
  margin-bottom: -10px;
  width: 100%;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  color: rgb(199, 110, 204);
  padding-bottom: 0.2em;
  border-bottom: 4px dotted rgb(199, 110, 204);
}
@media (min-width: 1120px) {
  .p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__heading {
    font-size: 38px;
  }
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__heading .p-modal__em {
  display: none;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--outdoors .p-modal__heading {
  border-color: rgb(199, 110, 204);
  color: rgb(199, 110, 204);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--indoors .p-modal__heading {
  border-color: rgb(27, 166, 136);
  color: rgb(27, 166, 136);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--hospital .p-modal__heading {
  border-color: rgb(243, 129, 18);
  color: rgb(243, 129, 18);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--office .p-modal__heading {
  border-color: rgb(232, 178, 0);
  color: rgb(232, 178, 0);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--farmranch .p-modal__heading {
  border-color: rgb(11, 124, 195);
  color: rgb(11, 124, 195);
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__image {
  width: 50%;
  max-width: 307px;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 1120px) {
  .p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__image {
    width: 50%;
    max-width: 400px;
  }
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__text {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  z-index: 15;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__text .p-modal__par {
  font-size: 20px;
  font-weight: 500;
  line-height: 2 !important;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__list {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__list .p-modal__button {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - 212px);
  min-width: 307px;
  height: auto;
  min-height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 64px;
  background: rgb(199, 110, 204);
  font-size: 16px;
  font-weight: bold;
  /* text-align: center; */
  line-height: 1.5;
  color: #fff;
  margin-right: auto;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__list .p-modal__anchor {
  padding: 0 25px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__list .p-modal__anchor svg {
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__list .p-modal__anchor:hover svg {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--outdoors .p-modal__list .p-modal__button {
  background-color: rgb(199, 110, 204);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--indoors .p-modal__list .p-modal__button {
  background-color: rgb(27, 166, 136);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--hospital .p-modal__list .p-modal__button {
  background-color: #E77405;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--office .p-modal__list .p-modal__button {
  background-color: #B98D00;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--farmranch .p-modal__list .p-modal__button {
  background-color: rgb(11, 124, 195);
}
.p-discoveryshiraishi .p-modal > .p-modal__item .p-modal__close {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: bold;
  color: rgb(199, 110, 204);
  position: absolute;
  top: 50px;
  right: 60px;
}
.p-discoveryshiraishi .p-modal > .p-modal__item--outdoors .p-modal__close {
  color: rgb(199, 110, 204);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--outdoors .p-modal__close svg * {
  fill: rgb(199, 110, 204);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--indoors .p-modal__close {
  color: rgb(27, 166, 136);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--indoors .p-modal__close svg * {
  fill: rgb(27, 166, 136);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--hospital .p-modal__close {
  color: rgb(243, 129, 18);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--hospital .p-modal__close svg * {
  fill: rgb(243, 129, 18);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--office .p-modal__close {
  color: rgb(232, 178, 0);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--office .p-modal__close svg * {
  fill: rgb(232, 178, 0);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--farmranch .p-modal__close {
  color: rgb(11, 124, 195);
}
.p-discoveryshiraishi .p-modal > .p-modal__item--farmranch .p-modal__close svg * {
  fill: rgb(11, 124, 195);
}
@media screen and (max-width: 991px) {
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__inner {
    padding: 70px 110px 70px 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-discoveryshiraishi .p-modal .p-modal__item {
    width: calc(100% - 35px);
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    min-height: unset;
    font-size: 16px;
    font-weight: bold;
    line-height: 2;
    border-width: 3px 9px 9px 3px;
    border-radius: 40px;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item--outdoors .p-modal__scroll::after {
    background-image: url(../img/index/contents_item01_illust01_img01.svg);
  }
  .p-discoveryshiraishi .p-modal .p-modal__item--indoors .p-modal__scroll::after {
    background-image: url(../img/index/contents_item02_illust01_img01.svg);
  }
  .p-discoveryshiraishi .p-modal .p-modal__item--hospital .p-modal__scroll::after {
    background-image: url(../img/index/contents_item03_illust01_img01.svg);
  }
  .p-discoveryshiraishi .p-modal .p-modal__item--office .p-modal__scroll::after {
    background-image: url(../img/index/contents_item04_illust01_img01.svg);
  }
  .p-discoveryshiraishi .p-modal .p-modal__item--farmranch .p-modal__scroll::after {
    background: url(../img/index/contents_item05_illust01_img01.svg) no-repeat 50% 50%/contain;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__inner {
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__inner:not(:has(.p-modal__list)) {
    padding-bottom: 20px;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__inner::before {
    display: none;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__inner::after {
    display: none;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__scroll {
    padding: 35px 30px 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__scroll::after {
    display: block;
    content: "";
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    width: 100%;
    height: 108px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-top: -3px;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__heading {
    margin-bottom: unset;
    padding-bottom: 16px;
    font-size: 24px;
    line-height: 1.6;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__image {
    width: 100%;
    max-width: 100%;
    border-radius: 24px;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__text .p-modal__par {
    font-size: 16px;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__list {
    gap: 8px;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__list .p-modal__button {
    width: 100%;
    min-width: 100%;
    height: auto;
    border-radius: 62px;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__list .p-modal__button--left {
    margin-right: unset;
    height: auto;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__list .p-modal__anchor {
    padding: 19px 25px;
    gap: 15px;
    text-align: left;
  }
  .p-discoveryshiraishi .p-modal .p-modal__item .p-modal__close {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    font-size: 12px;
    top: -36px;
    right: 0px;
  }
}

.p-discoveryshiraishi .p-pagetop {
  width: 100%;
  height: 1px;
}
.p-discoveryshiraishi .p-pagetop .p-pagetop__item {
  width: 108px;
  height: 108px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 15;
  opacity: 1;
  cursor: pointer;
  -webkit-transform: translateY(200px);
          transform: translateY(200px);
  -webkit-transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.is-scrolled .p-discoveryshiraishi .p-pagetop .p-pagetop__item {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
.p-discoveryshiraishi .p-pagetop .p-pagetop__anchor {
  display: block;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.p-discoveryshiraishi .p-pagetop .p-pagetop__anchor:hover {
  -webkit-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
  -webkit-transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@-webkit-keyframes floating-y {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@keyframes floating-y {
  0% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@media screen and (max-width: 991px) {
  .p-discoveryshiraishi .p-pagetop {
    position: relative;
  }
  .p-discoveryshiraishi .p-pagetop .p-pagetop__item {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  .is-scrolled .p-discoveryshiraishi .p-pagetop .p-pagetop__item {
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    -webkit-animation: unset;
            animation: unset;
  }
  .p-discoveryshiraishi .p-pagetop .p-pagetop__item {
    width: 108px;
    position: absolute;
    bottom: -20px;
    right: 20px;
  }
}

#topcontrol {
  display: none;
}

.p-discoveryshiraishi .p-slider {
  opacity: 0;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.is-loaded-complete .p-discoveryshiraishi .p-slider {
  opacity: 1;
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.p-discoveryshiraishi .p-slider--contents {
  margin-bottom: 80px;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 460px;
}
.p-discoveryshiraishi .p-slider--contents::before {
  display: block;
  content: "";
  width: 1000%;
  height: 113px;
  background: url(../img/index/mv_wave01.svg) repeat-x 50% 0%/contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 15;
  -webkit-animation: wave-loop 300s linear infinite;
          animation: wave-loop 300s linear infinite;
}
.p-discoveryshiraishi .p-slider--contents::after {
  display: block;
  content: "";
  width: 11520px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/index/slider_contents01_img01.webp) repeat-x 0 0/auto 100%;
  -webkit-animation: bg-transform-loop 30s linear infinite;
          animation: bg-transform-loop 30s linear infinite;
}
@-webkit-keyframes bg-transform-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-2880px);
            transform: translateX(-2880px);
  }
}
@keyframes bg-transform-loop {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-2880px);
            transform: translateX(-2880px);
  }
}
.p-discoveryshiraishi .p-slider--swiper {
  margin-bottom: -100px;
  overflow: hidden;
  position: relative;
}
.p-discoveryshiraishi .p-slider--swiper::before {
  display: block;
  content: "";
  width: 1000%;
  height: 113px;
  background: url(../img/index/mv_wave01.svg) repeat-x 50% 0%/contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 15;
  -webkit-animation: wave-loop 300s linear infinite;
          animation: wave-loop 300s linear infinite;
}
.p-discoveryshiraishi .p-slider--swiper .p-slider__list {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
.p-discoveryshiraishi .p-slider--swiper .p-slider__item {
  height: 530px !important;
  width: auto !important;
  max-width: 425px !important;
  overflow: hidden;
  padding: 64px 0;
}
.p-discoveryshiraishi .p-slider--swiper .p-slider__figure {
  width: 100%;
  height: 100%;
}
.p-discoveryshiraishi .p-slider--swiper .p-slider__img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-discoveryshiraishi .p-slider--contents {
    margin-bottom: -60px;
    width: 100%;
    height: 250px;
  }
  .p-discoveryshiraishi .p-slider--contents::before {
    display: block;
    content: "";
    width: 1000%;
    height: 40px;
  }
  .p-discoveryshiraishi .p-slider--contents::after {
    width: 11520px;
    height: 100%;
  }
  @-webkit-keyframes bg-transform-loop {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-2880px);
              transform: translateX(-2880px);
    }
  }
  @keyframes bg-transform-loop {
    0% {
      -webkit-transform: translateX(0);
              transform: translateX(0);
    }
    100% {
      -webkit-transform: translateX(-2880px);
              transform: translateX(-2880px);
    }
  }
  .p-discoveryshiraishi .p-slider--swiper {
    margin-bottom: -60px;
  }
  .p-discoveryshiraishi .p-slider--swiper::before {
    height: 60px;
    background: url(../img/index/mv_wave01.svg) repeat-x 50% 0%/contain;
    -webkit-animation: unset;
            animation: unset;
  }
  .p-discoveryshiraishi .p-slider--swiper .p-slider__item {
    height: 240px !important;
    max-width: 240px !important;
  }
}

@-webkit-keyframes wave-loop {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes wave-loop {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.p-discoveryshiraishi .u-switch--pc {
  display: none;
}
.p-discoveryshiraishi .u-switch--tb {
  display: none;
}
.p-discoveryshiraishi .u-switch--sp {
  display: none;
}
@media screen and (min-width: 1024px) {
  .p-discoveryshiraishi .u-switch--pc {
    display: unset;
  }
}
@media screen and (max-width: 1023px) and (min-width: 768px) {
  .p-discoveryshiraishi .u-switch--tb {
    display: unset;
  }
}
@media screen and (max-width: 767px) {
  .p-discoveryshiraishi .u-switch--sp {
    display: unset;
  }
}/*# sourceMappingURL=style.css.map */