@charset "UTF-8";
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

hr {
  margin-top: 0;
  margin-bottom: 0;
}

pre {
  margin-top: 0;
  margin-bottom: 0;
}

blockquote {
  margin: 0;
}

ol, ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

li {
  list-style-type: none;
}

dl {
  margin-top: 0;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

address, em, cite, dfn, var, i {
  font-style: inherit;
}

img, iframe, embed, object, video, audio, svg, canvas {
  vertical-align: bottom;
}

img, video, input, select, textarea {
  max-width: 100%;
  height: auto;
}

svg {
  fill: currentcolor;
}

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

td, th {
  padding: 0;
}

th {
  text-align: inherit;
}

input, button, select, textarea {
  padding: 0;
  font: inherit;
  color: inherit;
  background-color: transparent;
  border: 0;
}

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

/* =========================
   _base.scss
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #333;
  background-image: url("../img/bg_pattern.jpg");
  overflow-x: hidden;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
}

/* =========================
   _layout.scss
========================= */
/* Header */
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}
.l-header__inner {
  height: 57px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.l-header__logo img {
  display: block;
  width: clamp(143.25px, 13.2638888889vw, 286.5px);
  aspect-ratio: 287/34;
}
@media (max-width: 768px) {
  .l-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #fff;
    transition: 0.3s;
    padding-top: 57px;
  }
}
.l-header__nav.is-open {
  right: 0;
}
.l-header__menu {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .l-header__menu {
    flex-direction: column;
    padding: 20px;
  }
}
.l-header__menu a {
  text-decoration: none;
  color: #333;
}

/* Hamburger */
.c-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}
.c-hamburger span {
  width: 25px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}
.c-hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.c-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 768px) {
  .c-hamburger {
    display: flex;
  }
}

/* PageTop */
.c-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #333;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}
.c-pagetop.is-show {
  opacity: 1;
  visibility: visible;
}

/* Section */
.p-section {
  padding: 60px 0;
}
@media (max-width: 768px) {
  .p-section {
    padding: 30px 0;
  }
}
.p-section__inner {
  text-align: center;
}
@media (max-width: 768px) {
  .p-section__inner {
    padding-left: clamp(12px, 4vw, 24px);
    padding-right: clamp(12px, 4vw, 24px);
  }
}
.p-section__title img {
  display: block;
  margin: 0 auto;
}

.l-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Hero */
.p-hero {
  height: 110vh;
  max-height: 1165px;
  position: relative;
  background-image: url(../img/hero-mv.jpg);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-hero {
    max-height: 810px;
    background-image: url(../img/hero-mv_sp.jpg);
  }
}
.p-hero__inner {
  height: 100%;
  position: relative;
}
.p-hero .comment {
  position: absolute;
  top: 33.73vh;
  left: calc(50% + clamp(60px, 21.2vw, 380px));
  transform: translate(-50%, -50%);
}
.p-hero .comment img {
  display: block;
  width: clamp(246px, 26vw, 380px);
  height: auto;
}
@media (max-width: 768px) {
  .p-hero .comment {
    right: -30%;
    left: inherit;
    top: 86vh;
  }
  .p-hero .comment img {
    width: 246px;
  }
}

/* Sooting */
.p-shooting {
  background-color: #E41612;
  background-image: url(../img/shooting-bg.png);
  background-position: bottom center;
  background-size: 150% auto;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 94px;
}
@media (max-width: 768px) {
  .p-shooting {
    background-image: none;
    padding-bottom: 30px;
  }
}
.p-shooting {
  /* PC順序 */
}
.p-shooting__header {
  order: 1;
}
.p-shooting__gun-section {
  position: absolute;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  z-index: 2;
  order: 3;
  top: 274px;
  left: 50%;
  transform: translateX(-50%);
}
.p-shooting__movie {
  order: 4;
}
.p-shooting__content {
  position: relative;
  z-index: 1;
  order: 2;
  padding-bottom: 75px;
}
.p-shooting__content-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: wrap;
  width: calc(100% - 300px);
  max-width: 700px;
  float: right;
}
.p-shooting__content p {
  font-size: 0.6rem;
  padding: 26px 0 0 0;
}

.block1,
.block2 {
  position: relative;
}

.block1 {
  width: 345px;
  margin: -80px 0 0 auto;
}
.block1 .copy1 {
  position: absolute;
  bottom: 10px;
  left: -200px;
}

.block2 {
  width: 345px;
  margin: -23px auto 0 0;
}
.block2 .copy2 {
  position: absolute;
  bottom: -20px;
  right: -66px;
}

@media (max-width: 768px) {
  .p-shooting__header {
    order: 1;
    padding: 20px;
  }
  .p-shooting__gun-section {
    order: 2;
    max-height: 311px;
    top: 115px;
  }
  .p-shooting__movie {
    order: 3;
    padding-top: 240px;
  }
  .p-shooting__content {
    order: 4;
    margin-top: 30px;
    padding-bottom: 0;
  }
  .p-shooting__content-wrap {
    width: 100%;
    gap: 15px;
    float: none;
  }
  .block1,
  .block2 {
    margin: 0 auto;
  }
  .block1 .copy1,
  .block1 .copy2,
  .block2 .copy1,
  .block2 .copy2 {
    position: absolute;
    bottom: -20px;
    right: 0;
    left: inherit;
  }
}
.gun-section {
  position: relative;
  min-height: 610px;
  overflow: visible;
  /* はみ出しOK */
}
@media (max-width: 768px) {
  .gun-section {
    min-height: 200px;
  }
}

/* 銃 */
.gun {
  max-width: 620px;
  width: 70%;
}
@media (max-width: 768px) {
  .gun {
    margin-left: -50px;
    width: clamp(300px, 26vw, 360px);
  }
}

/* シューティングコメント */
.gun-comment {
  position: absolute;
  bottom: 20%;
  right: 0;
  width: clamp(340px, 26vw, 395px);
}
@media (max-width: 768px) {
  .gun-comment {
    right: 0;
    bottom: 0;
    width: clamp(246px, 26vw, 360px);
  }
}

/* ビームのマスク */
.beam-mask {
  position: absolute;
  /* 位置調整 */
  left: 50%;
  bottom: 70%;
  width: 130vw;
  height: 80px;
  overflow: hidden;
  /* 角度（右斜上） */
  transform: rotate(-15deg) scaleX(0);
  transform-origin: left center;
}

/* ビーム画像 */
.beam-img {
  width: 130vw;
  display: block;
}

/* 発射アニメーション */
.beam-mask.is-fire {
  animation: beamFire 0.35s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes beamFire {
  0% {
    transform: rotate(-15deg) scaleX(0);
    opacity: 1;
  }
  100% {
    transform: rotate(-15deg) scaleX(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .beam-mask {
    left: 61%;
    bottom: 72%;
    width: 120vw;
    height: 20px;
    transform: rotate(-20deg) scaleX(0);
  }
  .beam-img {
    width: 120vw;
  }
}
/*ここまで*/
.movie {
  display: block;
  max-width: 850px;
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto 78px;
  border: none;
  max-height: 478.125px;
}
@media (max-width: 768px) {
  .movie {
    margin: 0 auto 20px;
  }
}

/* button */
.button a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 398px;
  padding: 26px 50px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid #FFF;
}
@media (max-width: 768px) {
  .button a {
    padding: 20px;
    font-size: 0.9rem;
  }
}
.button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
}

.button--black a {
  background: #000;
  filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.1019607843));
}

.button--pink a {
  background: #EE66B2;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.1019607843));
}

/*ゴジラ*/
.p-ride {
  background-color: #070505;
  background-image: url(../img/ride-bg.jpg);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 94px;
}
.p-ride__content {
  max-width: 1140px;
  margin: 250px auto 20px;
}
.p-ride .item1 {
  width: clamp(201px, 26vw, 324px);
}
@media (max-width: 768px) {
  .p-ride {
    background-position: top 200px center;
    background-size: 150% auto;
    padding-bottom: 30px;
  }
  .p-ride__content {
    height: 470px;
    margin: 0 0 20px 0;
  }
  .p-ride__content .wrap {
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
  }
}

/* リカちゃん */
.p-rika {
  height: 836px;
  background-image: url(../img/rika-main.png), url(../img/rika-bg.jpg);
  background-position: bottom center, top center;
  background-size: auto 95%, cover;
  background-repeat: no-repeat, no-repeat;
  position: relative;
}
@media (max-width: 768px) {
  .p-rika {
    background-position: center center, top center;
    background-size: 100% auto, cover;
    max-height: 766px;
  }
}
.p-rika__title {
  display: none;
}
@media (max-width: 768px) {
  .p-rika__title {
    display: block;
    width: 275px;
    max-width: 85%;
    margin: 0 auto;
    padding-top: 38px;
  }
}
.p-rika .comment {
  position: absolute;
  top: 5%;
  left: calc(50% + clamp(60px, 21.2vw, 380px));
}
.p-rika .comment img {
  display: block;
  width: clamp(246px, 26vw, 390px);
  height: auto;
}
@media (max-width: 768px) {
  .p-rika .comment {
    top: calc(50% + clamp(180px, 10.2vw, 252px));
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .p-rika .comment img {
    max-width: 272px;
  }
}
.p-rika__content {
  position: absolute;
  bottom: 5%;
  left: calc(50% + clamp(60px, 10.2vw, 375px));
  width: 100%;
  max-width: 352px;
}
@media (max-width: 768px) {
  .p-rika__content {
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
  }
}
.p-rika__box {
  bottom: 1em;
  right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: inherit;
  gap: 1em;
}
.p-rika__box .logo {
  display: block;
}
@media (max-width: 768px) {
  .p-rika__box .logo {
    display: none;
  }
}

/* other */
#other h2 {
  width: clamp(285px, 80vw, 500px);
  margin: 0 auto;
}
#other .other__box {
  margin: 30px auto;
}
#other .other__box .item1,
#other .other__box .item2,
#other .other__box .item3,
#other .other__box .item4 {
  width: 50%;
}
@media (max-width: 768px) {
  #other .other__box .item1,
  #other .other__box .item2,
  #other .other__box .item3,
  #other .other__box .item4 {
    width: 100%;
  }
}
#other .other__box .item1 {
  animation-delay: 0s;
}
#other .other__box .item2 {
  animation-delay: 0.2s;
}
#other .other__box .item3 {
  animation-delay: 0.4s;
}
#other .other__box .item4 {
  animation-delay: 0.6s;
}
#other .profile {
  background-color: #fff;
  padding: 25px 30px;
}
#other .profile__box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 1em;
}
@media (max-width: 768px) {
  #other .profile__box {
    flex-direction: column;
  }
}
#other .profile .pic-box img {
  max-width: 200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  #other .profile .pic-box img {
    max-width: 180px;
  }
}
#other .profile .text-box {
  width: 70%;
}
@media (max-width: 768px) {
  #other .profile .text-box {
    width: 100%;
  }
}

/* アニメーション */
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.anim-box.fadeup {
  opacity: 0;
  transform: translateY(30px);
}

.anim-box.fadeup.is-animated {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.siteFooter {
  position: relative;
  font-size: 12px;
}

.siteFooter a {
  text-decoration: none;
  color: #333;
}

.siteFooter__logo svg {
  fill: #e71b1a;
}

.siteFooter__btnList {
  display: flex;
}

.siteFooter__btnList .siteFooter__btnItem.-map .siteFooter__button::before {
  background: url(https://www.seibuen-amusement-park.jp/amusementpark/common-html/img/common/icon_access.svg);
}

.siteFooter__btnList .siteFooter__btnItem.-tel a {
  display: block;
}

.siteFooter__btnList .siteFooter__btnItem.-tel a .siteFooter__button::before {
  background: url(https://www.seibuen-amusement-park.jp/amusementpark/common-html/img/common/icon_tel.svg);
}

.siteFooter__btnList .siteFooter__button {
  position: relative;
  background: #e71b1a;
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 0 0 rgba(44, 49, 60, 0.1);
}

.siteFooter__btnList .siteFooter__button::before {
  content: "";
  display: block;
  position: absolute;
}

.siteFooter__menu .siteFooter__item {
  position: relative;
}

.siteFooter__menu .siteFooter__item::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #333;
  border-radius: 50%;
  top: 8px;
  left: 0;
  width: 3px;
  height: 3px;
}

.siteFooter__menu .siteFooter__item a {
  display: inline-block;
}

.siteFooter__menu .siteFooter__item:last-child a {
  margin-bottom: 0;
}

.siteFooter__menu .siteFooter__item > ol > li a {
  color: #666;
}

.siteFooter__txt {
  color: #6c593e;
  margin-top: 44px;
}

.siteFooter__bottomNav {
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
}

.siteFooter__bottomNav .siteFooter__bottomList {
  display: flex;
}

.siteFooter__bottomNav .siteFooter__bottomItem {
  border-right: 1px solid #d6d5d3;
  line-height: 1;
}

.siteFooter__bottomNav .siteFooter__bottomItem a {
  color: #666;
}

.siteFooter__bottomNav .siteFooter__copyright {
  color: #999;
  font-size: 10px;
}

.siteFooter__inner {
  position: relative;
  padding: 50px 0;
  margin: 0 auto;
  max-width: 1000px;
}

.siteFooter__inner a {
  transition: opacity 0.3s ease;
}

.siteFooter__inner a:hover {
  opacity: 0.7;
}

.siteFooter__logo {
  width: 212px;
}

.siteFooter__logo .siteFooter__logo a {
  transition: opacity 0.3s ease;
}

.siteFooter__logo .siteFooter__logo a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .siteFooter__btnList {
    position: absolute;
    top: 50px;
    right: 0;
  }
  .siteFooter__btnList a[href^="tel:"] {
    pointer-events: none;
  }
  .siteFooter__btnList .siteFooter__btnItem.-map .siteFooter__button::before {
    background-size: 17px 25px;
    width: 17px;
    height: 25px;
    top: 13px;
    left: 21px;
  }
  .siteFooter__btnList .siteFooter__btnItem.-tel a .siteFooter__button::before {
    background-size: 19px 24px;
    width: 19px;
    height: 24px;
    top: 13px;
    left: 20px;
  }
  .siteFooter__btnList .siteFooter__button {
    width: 240px;
    height: 50px;
    line-height: 50px;
    font-size: 12px;
    margin-left: 20px;
  }
  .siteFooter__menu {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
  }
  .siteFooter__menu .siteFooter__box {
    width: 500px;
    display: flex;
    justify-content: space-between;
  }
  .siteFooter__menu .siteFooter__list:nth-child(odd) {
    width: 270px;
  }
  .siteFooter__menu .siteFooter__list:nth-child(even) {
    width: 230px;
  }
  .siteFooter__menu .siteFooter__item a, .siteFooter__menu .siteFooter__item span {
    padding-left: 7px;
    margin-bottom: 12px;
  }
  .siteFooter__menu .siteFooter__item > ol > li a {
    padding-left: 17px;
  }
  .siteFooter__bottomNav .siteFooter__bottomItem {
    padding-right: 30px;
    margin-right: 30px;
  }
  .siteFooter__pageTopBtn a {
    display: block;
    width: 500px;
    height: 60px;
    line-height: 60px;
    margin: 50px auto 0;
    transition: opacity 0.3s ease;
  }
  .siteFooter__pageTopBtn a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 768px) {
  .siteFooter__inner {
    padding: 50px 25px 70px;
  }
  .siteFooter__logo {
    width: 151px;
  }
  .siteFooter__btnList {
    justify-content: space-between;
    margin-top: 25px;
    right: inherit;
  }
  .siteFooter__btnList .siteFooter__btnItem {
    width: 47.7%;
  }
  .siteFooter__btnList .siteFooter__button {
    width: 100%;
    height: 70px;
  }
  .siteFooter__menu {
    margin-top: 36px;
    display: flex;
    display: -ms-flexbox;
    justify-content: space-between;
  }
  .siteFooter__menu .siteFooter__list:nth-child(1) {
    margin-bottom: 22px;
  }
  .siteFooter__menu .siteFooter__list:nth-child(2) {
    grid-column: 1/2;
  }
  .siteFooter__menu .siteFooter__list:nth-child(3) {
    margin-bottom: 22px;
  }
  .siteFooter__menu .siteFooter__list:nth-child(4) {
    grid-column: 2/3;
  }
  .siteFooter__menu .siteFooter__box:nth-child(1) {
    width: 56%;
  }
  .siteFooter__menu .siteFooter__box:nth-child(2) {
    width: 44%;
  }
  .siteFooter__menu .siteFooter__item a, .siteFooter__menu .siteFooter__item span {
    padding-left: 7px;
    margin-bottom: 22px;
  }
  .siteFooter__menu .siteFooter__item > ol > li a {
    padding-left: 12px;
  }
  .siteFooter__bottomNav {
    flex-wrap: wrap;
  }
  .siteFooter__bottomNav .siteFooter__bottomList {
    width: 100%;
    font-size: 10px;
  }
  .siteFooter__bottomNav .siteFooter__bottomItem {
    padding: 0 11px;
  }
  .siteFooter__bottomNav .siteFooter__bottomItem:last-child {
    border-right: none;
  }
  .siteFooter__bottomNav .siteFooter__copyright {
    width: 100%;
    margin-top: 34px;
  }
  .siteFooter__pageTopBtn a {
    display: block;
    width: 210px;
    height: 60px;
    line-height: 60px;
    margin: 38px auto 0;
  }
}/*# sourceMappingURL=style.css.map */