@charset "UTF-8";
/* sassファイル行頭で記述 */
@keyframes hover_button {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes click_navi_open {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes click_navi_close {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    opacity: 0.5;
    transform: scale(0.5);
  }
}
@keyframes click_button {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn_slide_l {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn_slide_r {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn_rotate {
  0% {
    opacity: 0;
    transform: rotate(40deg) scale(2);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes fadeUp_pc {
  from {
    transform: translateY(20%);
    opacity: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideIn_l {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@keyframes kurukuru {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes kurukuru_yoko {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes poyopoyo {
  0% {
    transform: scale(0.8, 1.4) translate(0%, -100%);
  }
  10% {
    transform: scale(0.8, 1.4) translate(0%, -15%);
  }
  20% {
    transform: scale(1.4, 0.6) translate(0%, 30%);
  }
  30% {
    transform: scale(0.9, 1.1) translate(0%, -10%);
  }
  40% {
    transform: scale(0.95, 1.2) translate(0%, -30%);
  }
  50% {
    transform: scale(0.95, 1.2) translate(0%, -10%);
  }
  60% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  70% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20%);
  }
}
@keyframes pikopiko {
  0% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes pyonpyon {
  0%, 100% {
    transform: rotate(30deg) scale(1);
  }
  50% {
    transform: rotate(-30deg) scale(0.8);
  }
}
@keyframes wobble-hor-bottom {
  0%, 100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
    transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
    transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
    transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
    transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
    transform: translateX(-6px) rotate(-1.2deg);
  }
}
/*===================================================================
				= 基本(初期デフォルト化含む)
===================================================================*/
html, body {
  width: 100%;
  scroll-behavior: smooth;
}

html {
  font-size: 62.5%;
  height: 100%;
  font-family: "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #18183b;
  -webkit-font-smoothing: antialiased;
}

body {
  background-color: #fff;
  height: 100%;
  font-size: 1rem; /* 基本サイズ10px */
  -webkit-text-size-adjust: 100%;
  line-height: 1.75;
  -webkit-font-smoothing: subpixel-antialiased;
}
@media (min-width: 1921px) {
  body {
    font-size: 0.8333333333vw;
  }
}
@media (max-width: 750px) {
  body {
    line-height: 1.8;
    font-size: 2.6666666667vw;
  }
}

h1, h2, h3, h4 {
  font-size: 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  z-index: 20;
}

ul {
  list-style: none;
}

section, footer {
  width: 100%;
  height: auto;
}

section * {
  position: absolute;
}

.wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.inner_wrap {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
}

.clear_pc {
  display: none;
}
@media (max-width: 750px) {
  .clear_pc {
    display: block;
  }
}

.clear_sp {
  display: block;
}
@media (max-width: 750px) {
  .clear_sp {
    display: none;
  }
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
  outline: none;
  color: #010101;
}

/*===================================================================
				= Magnific Popup
===================================================================*/
.popup.mfp-bg {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.popup.mfp-bg.mfp-ready {
  opacity: 0.8;
}
.popup.mfp-bg.mfp-ready {
  opacity: 0.6;
}
.popup.mfp-bg.mfp-removing {
  opacity: 0;
}
.popup.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.popup.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}
.popup.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-image-holder .mfp-content, .mfp-iframe-holder .mfp-content {
  max-width: 1240px;
  width: 60%;
}
.popup .mfp-image-holder .mfp-content, .popup .mfp-iframe-holder .mfp-content {
  max-width: 1000px;
  width: 52.0833333333%;
}
.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  width: 10.2430555556%;
  padding: 10.2430555556% 0 0 0;
  top: -8.3333333333%;
  right: -4.0798611111%;
  opacity: 1;
  font-size: 0;
  white-space: nowrap;
  overflow: hidden;
  background: url("../img/btn_close.png") no-repeat center center/contain;
}
.mfp-image-holder .mfp-close #movie, .mfp-iframe-holder .mfp-close #movie {
  width: 13.5632183908%;
  padding: 24.5833333333% 0 0 0;
}
.mfp-image-holder .mfp-close:active, .mfp-iframe-holder .mfp-close:active {
  animation: click_navi_close 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.mfp-image-holder .mfp-close:hover, .mfp-iframe-holder .mfp-close:hover {
  animation: hover_button 0.2s forwards;
}
.mfp-image-holder .mfp-content, .mfp-iframe-holder .mfp-content {
  width: 60%;
}
@media (max-width: 750px) {
  .mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
    width: 15.7333333333%;
    padding: 15.7333333333% 0 0 0;
    top: -30.5687203791%;
    right: 1.7333333333%;
  }
  .mfp-image-holder .mfp-content, .mfp-iframe-holder .mfp-content {
    width: 100%;
  }
  .popup .mfp-image-holder .mfp-content, .popup .mfp-iframe-holder .mfp-content {
    width: 100%;
  }
}

.mfp-inline-holder .mfp-bg {
  height: 100vh;
}
.mfp-inline-holder .mfp-wrap {
  height: 100vh;
}
.mfp-inline-holder .mfp-content {
  width: 110.1333333333%;
  max-width: 826px;
  height: 0;
  padding: min(  110.1333333333%, 826px) 0 0 0;
  position: relative;
}
.mfp-inline-holder .mfp-content * {
  position: absolute;
}
.mfp-inline-holder .mfp-close {
  width: 18.401937046%;
  padding: 18.401937046% 0 0 0;
  top: -6.2953995157%;
  right: 0;
  opacity: 1;
  font-size: 0;
  white-space: nowrap;
  overflow: hidden;
  background: url("../img/btn_close.png") no-repeat center center/contain;
}
.mfp-inline-holder .mfp-close:active {
  animation: click_navi_close 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
.mfp-inline-holder .mfp-close:hover {
  animation: hover_button 0.2s forwards;
}
@media (max-width: 750px) {
  .mfp-inline-holder .mfp-content {
    width: 100%;
    max-width: 100%;
    padding: 98.9333333333% 0 0 0;
  }
}

img.mfp-img {
  padding: 0;
}

@media (min-width: 1921px) {
  .gallery-arrow, .cd-arrow {
    width: 6.1458333333%;
    padding: 6.1458333333% 0 0 0;
  }
  .gallery-arrow-left, .cd-arrow-left {
    margin: 0 0 0 -40.4166666667%;
  }
  .gallery-arrow-right, .cd-arrow-right {
    margin: 0 0 0 35.2083333333%;
  }
}
@media (max-width: 750px) {
  .gallery-arrow, .cd-arrow {
    top: 50%;
    width: 15.7333333333%;
    padding: 15.7333333333% 0 0 0;
    transform: translateX(0);
  }
  .gallery-arrow-left, .cd-arrow-left {
    left: 0;
    margin: 30.8% 0 0 0;
  }
  .gallery-arrow-right, .cd-arrow-right {
    left: auto;
    right: 0;
    margin: 30.8% 0 0 0;
  }
}