@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cherry+Bomb+One&display=swap");
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
@keyframes poyon {
  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 get_fadeout {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
    height: 100vh;
    height: 100dvh;
  }
  100% {
    height: 0;
    opacity: 0;
  }
}
@keyframes zoom-in-anim {
  0% {
    transform: scale(0);
  }
  70% {
    transform: scale(1.1);
  }
  85% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #FFF;
}

body {
  -webkit-text-size-adjust: 100%;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
input, textarea, button, select,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

td, th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul, ol, li {
  list-style: none;
}

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

p, li, dd, dt, td, th {
  word-wrap: break-word;
}

select, input {
  word-wrap: normal;
}

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

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

legend {
  color: #000;
}

pre, code,
kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]), textarea, button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0px;
}

/*----------------------
     html base
---------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px; /* 1rem = 10px */
  background: #fff;
}

body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
  font-weight: 400;
}

html,
body {
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 1s;
}
a.-inner {
  color: #641344;
  text-decoration: underline;
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.l-header {
  position: relative;
  margin: 0 0 0;
  padding: 1.6rem 0 2.4rem 0;
  z-index: 10;
}
.l-header_top {
  padding: 0 !important;
}
.l-header_prefix {
  background: #fff;
  padding: 1.6rem 1.6rem 2.4rem;
  text-align: center;
}
.l-header_inner {
  position: relative;
}
.l-header_nav {
  width: 100%;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  position: absolute;
  z-index: 10;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-header_nav {
    padding: 0 1.6rem;
  }
}
@media (max-width: 767px) {
  .l-header_nav {
    transform: translateX(0);
    flex-direction: column;
    justify-content: center;
    position: fixed;
    padding-top: 8rem;
    top: -120vh;
    top: -120dvh;
    left: 0;
    height: 100vh;
    height: 100dvh;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 100;
    transition: 0.3s;
  }
  .l-header_nav.__active {
    top: 0;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .l-header_nav {
    padding-top: 4rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "nav lang" "nav sns";
  }
}
.l-header_logo {
  padding: 0 2.4rem 0 0.6rem;
}
.l-mv {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.l-footer {
  text-align: center;
}

body.__menu_open {
  overflow: hidden;
}

.l-container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 75rem;
  min-height: 100vh;
  min-height: 100dvh;
  background: url(../images/bg.png) repeat-y scroll center top;
  background-size: 100%;
  overflow: hidden;
}

.l-main {
  padding: 0 1.6rem;
}

.l-section {
  padding: 1.6rem;
}
@media (min-width: 1024px) {
  .l-section {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-section {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .l-section {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.l-contents_heading {
  text-align: center;
}
.l-contents_inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .l-contents_inner {
    margin-top: calc(7.2rem * 0.75);
    margin-bottom: calc(7.2rem * 0.75);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .l-contents_inner {
    margin-top: calc(5.6rem * 0.75);
    margin-bottom: calc(5.6rem * 0.75);
  }
}
@media (max-width: 767px) {
  .l-contents_inner {
    margin-top: calc(4rem * 0.75);
    margin-bottom: calc(4rem * 0.75);
  }
}
@media (max-width: 767px) {
  .l-contents {
    padding: 0 3vw;
  }
}

.l-pagetitle {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  border-bottom: 2px solid #000;
  padding: 0 0 0.4em 0;
}

.l-btn_block {
  margin-left: auto;
  margin-right: auto;
  padding: 1.6rem;
  display: flex;
  justify-content: space-around;
}

/*----------------------
     page top
---------------------------------------- */
.l-page_top {
  position: fixed;
  right: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
}
.l-page_top span {
  display: block;
  width: 3.2rem;
  height: 3.2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.l-page_top span:hover {
  opacity: 0.7;
}
.l-page_top.upMove {
  animation: UpAnime 0.5s forwards;
}
.l-page_top.downMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.c-with_line {
  border: 1px solid #000;
  background: #fff;
}

.c-list_item {
  display: flex;
}
.c-list_item:before {
  content: attr(data-icon);
  margin-right: 0.2em;
  flex-shrink: 0;
}

.c-grayscale {
  filter: grayscale(100%) brightness(120%);
  pointer-events: none;
}

.c-link_line {
  color: #004ea2;
  border-bottom: 2px solid #004ea2;
  padding-bottom: 0.2em;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}

.c-inner_link {
  color: #004ea2;
  text-decoration: underline;
}

.p-header_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}
.p-header_nav_list li {
  display: block;
  width: 12rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-header_nav_list li {
    width: 10rem;
  }
}
.p-header_nav_list a {
  display: block;
  width: 100%;
}
.p-header_nav_list img {
  width: 100%;
}
@media (max-width: 767px) {
  .p-header_nav_list {
    flex-direction: column;
  }
  .p-header_nav_list li {
    width: auto;
  }
  .p-header_nav_list img {
    width: 40vw;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-header_nav_list {
    grid-area: nav;
  }
  .p-header_nav_list img {
    width: 30vw;
  }
}
.p-header_lang select {
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  padding: 0.5em;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .p-header_lang select {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-header_lang {
    grid-area: lang;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .p-header_sns {
    grid-area: sns;
  }
}

.c-btn {
  display: block;
  border: 1px solid #006f35;
  background: #006f35;
  color: #fff;
  text-align: center;
  padding: 1em;
  width: 70%;
  border-radius: 2.5em;
}
.c-btn.__send {
  border: 1px solid #004ea2;
  background: #004ea2;
}
.c-btn.__back {
  display: flex;
  gap: 0.5em;
  justify-content: space-between;
  align-items: center;
}
.c-btn.__back:before {
  content: "\e2ea";
  font-family: "Material Icons";
  display: inline-block;
  font-size: 2.4rem;
}
.c-btn.__back:after {
  content: "　";
  display: inline-block;
  font-size: 2.4rem;
}
.c-btn.__small {
  width: 50%;
  padding: 1em 0.5em 1em 0.5em;
  letter-spacing: -0.15em;
  font-size: 95%;
  justify-content: flex-start;
}
.c-btn.__small:after {
  content: "　";
  display: inline-block;
  font-size: 0.4rem;
}
.c-btn.__reload {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  background-color: #004ea2;
  border: 1px solid #004ea2;
}
.c-btn.__reload:before {
  content: "\e042";
  font-family: "Material Icons";
  display: inline-block;
  font-size: 2.4rem;
}
.c-btn.__cancel {
  display: flex;
  gap: 0.5em;
  justify-content: center;
  align-items: center;
  background-color: #dedede;
  border: 1px solid #dedede;
  color: #000;
}
.c-btn.__cancel:before {
  content: "\e5c9";
  font-family: "Material Icons";
  display: inline-block;
}

.p-error {
  background: #fdf2f5;
  border: 1px solid #9b0010;
  border-radius: 6px;
  color: #9b0010;
  padding: 0.5em;
  line-height: 1.4;
  font-weight: 700;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
@media (min-width: 1024px) {
  .p-error {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-error {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-error {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-notice {
  margin-bottom: calc(1.6rem * 1);
}
.p-notice .__title {
  background: #fff;
  border: 2px solid #000;
  text-align: center;
  padding: 1.6rem;
  position: relative;
}
.p-notice .__title:after {
  content: "\e5cf";
  font-family: "Material Icons";
  position: absolute;
  font-size: 150%;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
}
.p-notice .__title.__open:after {
  content: "\e5ce";
  font-family: "Material Icons";
  position: absolute;
  font-size: 150%;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
}
.p-notice .__detail {
  background: #fff;
  border: 2px solid #000;
  border-top: none;
  line-height: 1.6;
  font-size: 1.4rem;
  padding: 1.6rem;
  display: none;
}
.p-notice .__detail li {
  margin-bottom: calc(1.6rem * 0.5);
}
.p-notice .__inner_text {
  background: #fdf2f5;
  padding: 1.6rem;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .p-notice .__inner_text {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-notice .__inner_text {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-notice .__inner_text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}

.p-precautions_inner {
  padding: 1.6rem 0;
}
.p-precautions .__title {
  margin-bottom: calc(1.6rem * 0.5);
}
.p-precautions .__detail {
  line-height: 1.4;
  font-size: 1.4rem;
  padding: 0.5em 0 1em;
  border-bottom: 1px solid #dedede;
  margin-bottom: calc(1.6rem * 1);
}
@media (min-width: 1024px) {
  .p-precautions .__list {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-precautions .__list {
    margin-top: calc(5.6rem * 0.25);
    margin-bottom: calc(5.6rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-precautions .__list {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-precautions .__inner_text {
  background: #fdf2f5;
  padding: 1.6rem;
  line-height: 1.6;
  font-size: 1.2rem;
}
@media (min-width: 1024px) {
  .p-precautions .__inner_text {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-precautions .__inner_text {
    margin-top: calc(5.6rem * 0.5);
    margin-bottom: calc(5.6rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-precautions .__inner_text {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-precautions .__flex_text {
  display: flex;
  align-items: center;
}
.p-precautions .__icon_image {
  display: inline-block;
  width: 4rem;
}
.p-accordion .__acc_title {
  background: #fff;
  border: 2px solid #000;
  text-align: center;
  padding: 1.6rem;
  position: relative;
  margin-bottom: 0;
}
.p-accordion .__acc_title:after {
  content: "\e5cf";
  font-family: "Material Icons";
  position: absolute;
  font-size: 150%;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
}
.p-accordion .__acc_title.__open:after {
  content: "\e5ce";
  font-family: "Material Icons";
  position: absolute;
  font-size: 150%;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5em;
}
.p-accordion .__acc_detail {
  background: #fff;
  border: 2px solid #000;
  border-top: none;
  line-height: 1.6;
  font-size: 1.4rem;
  padding: 1.6rem;
  display: none;
}
.p-accordion .__acc_detail li {
  margin-bottom: calc(1.6rem * 0.5);
}

.p-exp_title {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  margin-bottom: calc(1.6rem * 0.5);
  line-height: 1.6;
}
@media (max-width: 767px) {
  .p-exp_title {
    font-weight: 700;
    font-size: 1.6rem;
    font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  }
}
.p-exp_detail {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: calc(1.6rem * 0.5);
}
.p-exp_detail.__inner {
  margin-top: calc(1.6rem * 1);
  margin-bottom: calc(1.6rem * 1);
}
.p-exp_detail.__line {
  border-bottom: 1px solid #000;
  padding: 1.6rem 0;
}
.p-exp_link {
  text-align: center;
}
.p-exp_link a {
  color: #fff;
}
.p-exp .__line {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding: 1.6rem 0;
}
.p-exp_extra_title {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  margin-bottom: calc(1.6rem * 0.5);
  line-height: 1.6;
}
.p-exp_extra_title.__inner {
  margin-top: calc(1.6rem * 1);
}
.p-exp_list {
  border-top: 1px solid #dedede;
  border-bottom: 1px solid #dedede;
  padding: 1.6rem 0;
}
.p-exp_list2 li {
  margin-bottom: calc(1.6rem * 1);
}
.p-exp_bookmark {
  border: 2px solid #9b0010;
  border-radius: 10px;
  background: #fff;
}
.p-exp_bookmark .__title {
  text-align: center;
}
.p-exp_bookmark .__caution {
  font-size: 80%;
  margin-top: calc(1.6rem * 0.5);
}

.p-exp_ticket {
  background: #004ea2;
  border-radius: 10px;
  color: #fff;
  line-height: 1.6;
}
.p-exp_ticket .__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-exp_ticket .__limit {
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  margin: 0.5em 0;
}
.p-exp_ticket .__btn {
  background: #fff;
  border-color: #fff;
  color: #004ea2;
  font-weight: 700;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}

.p-stamp_container {
  background: url(../images/bg_balloon.svg) no-repeat center center/contain, url(../images/bg.png) repeat-y scroll center top/cover;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}
.p-stamp_main {
  background: url(../images/bg_lines.svg) no-repeat center center/cover;
  display: flex;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
}
.p-stamp_item {
  width: 80%;
  animation: zoom-in-anim 1s ease-out;
}
.p-stamp_text {
  font-family: "Cherry Bomb One", cursive;
  font-size: 10rem;
  text-align: center;
  position: absolute;
  top: 70%;
  width: 100%;
  left: 0;
}
.p-stamp_back {
  font-family: "Cherry Bomb One", cursive;
  position: absolute;
  bottom: 1.6rem;
  width: -moz-fit-content;
  width: fit-content;
  right: 1.6rem;
  font-size: 2.4rem;
  border-bottom: 1px solid #000;
}
.p-stamp_main2 {
  display: flex;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
}
.p-stamp_text2 {
  font-family: "Cherry Bomb One", cursive;
  font-size: 3.6rem;
  text-align: center;
  position: absolute;
  top: 60%;
  width: 100%;
  left: 0;
}
.p-stamp_item2 {
  width: 40%;
}
.p-stamp_hatena {
  display: flex;
  flex-direction: column;
}
.p-stamp_hatena:before {
  content: "?";
  font-family: "Cherry Bomb One", cursive;
  font-size: 6.4rem;
  color: #9b0010;
  text-align: center;
}

.p-cookie_block {
  padding: 1.6rem;
}
.p-cookie .tab_btn {
  width: 50%;
  padding: 0.5em;
  text-align: center;
  border: 1px solid #006f35;
  color: #006f35;
  background: #fff;
  cursor: pointer;
}
.p-cookie .tab_btn_wrap {
  display: flex;
}
.p-cookie .tab_btn.__active {
  background: #006f35;
  color: #fff;
}
.p-cookie .tab_target {
  display: none;
}
.p-cookie .tab_target.__active {
  display: block;
}
.p-cookie .type_title {
  background: #006f35;
  color: #fff;
  padding: 0.5em;
  text-align: center;
  margin-bottom: calc(1.6rem * 1);
}
.p-cookie .faq_list {
  line-height: 1.6;
}
.p-cookie .faq_list .__group {
  margin-bottom: calc(1.6rem * 1);
  border-bottom: 1px solid #dedede;
}
.p-cookie .faq_list .__title {
  color: #004ea2;
  font-weight: 700;
  padding: 0 0 0.8rem 0;
}
.p-cookie .faq_list .__detail {
  padding: 0 0 0.8rem 0;
}
.p-cookie .faq_list .__detail .__answer {
  color: #9b0010;
}
.p-cookie .__note {
  text-align: left;
  line-height: 1.6;
}
.p-cookie .link_line {
  color: #004ea2;
  text-decoration: underline;
}

.p-coupon_title {
  padding: 0 0.8rem 0 1.6rem;
}
.p-coupon_exp {
  text-align: center;
  line-height: 1.4;
  margin-bottom: calc(1.6rem * 0.5);
  font-weight: 700;
  font-size: 1.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-coupon_spot {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.p-coupon_spot a.__spot {
  background: #9b0010;
  color: #fff;
  border-radius: 1.5em;
  padding: 0.4em 1.5em 0.6em;
  font-weight: 700;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  width: -moz-fit-content;
  width: fit-content;
}
.p-coupon_count {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
.p-coupon_count_now {
  font-weight: 700;
  font-size: 3rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-coupon_list {
  display: grid;
  gap: 1.6rem;
  padding: 0 1.6rem;
}
.p-coupon .__is_used {
  position: relative;
}
.p-coupon .__is_used:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  content: "使用済";
  width: 80%;
  padding: 0.5em;
  text-align: center;
  background-color: #9b0010;
  color: #fff;
}
.p-coupon .__item {
  display: block;
  position: relative;
}
.p-bingo {
  position: relative;
}
.p-bingo_sheet {
  position: relative;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, 1fr);
}
.p-bingo_spot {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
  text-align: center;
  position: relative;
  top: 1.6rem;
}
.p-bingo_spot a.__spot {
  background: #006f35;
  color: #fff;
  border-radius: 1em;
  padding: 0.4em 1em 0.6em;
  font-weight: 700;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-bingo_spot a.__top {
  background: #004ea2;
  color: #fff;
  border-radius: 1em;
  padding: 0.4em 1em 0.6em;
  font-weight: 700;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-bingo_icon {
  width: 100%;
  aspect-ratio: 1/1;
  border: 4px solid #00255f;
  border-radius: 10px;
  background: #fff;
  padding: 3px;
}
.p-bingo_icon_inner {
  border: 1px solid #00255f;
  border-radius: 4px;
  aspect-ratio: 1/1;
  padding: 4px;
}
.p-bingo_icon_inner.__inner5 {
  border: none;
  border-radius: 0px;
  padding: 0;
}
.p-bingo_icon_inner.__inner5 img {
  max-height: none;
}
.p-bingo_icon img {
  height: 100%;
  max-height: 20vw;
  aspect-ratio: 1/1;
}
.p-bingo_line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  aspect-ratio: 1/1;
  border-radius: 10px;
}
.p-bingo_line.__line1 {
  background: linear-gradient(180deg, transparent 0%, transparent 15%, rgba(221, 19, 19, 0.5333333333) 15%, rgba(221, 19, 19, 0.5333333333) 17%, transparent 17%, transparent 100%);
}
.p-bingo_line.__line2 {
  background: linear-gradient(180deg, transparent 0%, transparent 49%, rgba(221, 19, 19, 0.5333333333) 49%, rgba(221, 19, 19, 0.5333333333) 51%, transparent 51%, transparent 100%);
}
.p-bingo_line.__line3 {
  background: linear-gradient(180deg, transparent 0%, transparent 83%, rgba(221, 19, 19, 0.5333333333) 83%, rgba(221, 19, 19, 0.5333333333) 85%, transparent 85%, transparent 100%);
}
.p-bingo_line.__line4 {
  background: linear-gradient(90deg, transparent 0%, transparent 15%, rgba(221, 19, 19, 0.5333333333) 15%, rgba(221, 19, 19, 0.5333333333) 17%, transparent 17%, transparent 100%);
}
.p-bingo_line.__line5 {
  background: linear-gradient(90deg, transparent 0%, transparent 49%, rgba(221, 19, 19, 0.5333333333) 49%, rgba(221, 19, 19, 0.5333333333) 51%, transparent 51%, transparent 100%);
}
.p-bingo_line.__line6 {
  background: linear-gradient(90deg, transparent 0%, transparent 83%, rgba(221, 19, 19, 0.5333333333) 83%, rgba(221, 19, 19, 0.5333333333) 85%, transparent 85%, transparent 100%);
}
.p-bingo_line.__line7 {
  background: linear-gradient(45deg, transparent 0%, transparent 49.2%, rgba(221, 19, 19, 0.5333333333) 49.2%, rgba(221, 19, 19, 0.5333333333) 50.5%, transparent 50.7%, transparent 100%);
}
.p-bingo_line.__line8 {
  background: linear-gradient(-45deg, transparent 0%, transparent 49.2%, rgba(221, 19, 19, 0.5333333333) 49.2%, rgba(221, 19, 19, 0.5333333333) 50.7%, transparent 50.7%, transparent 100%);
}

.p-bingo_get {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 500;
  animation: get_fadeout 0.3s linear 2s 1 forwards;
}
.p-bingo_get_item {
  text-align: center;
  width: 100%;
}
.p-bingo_get_item img {
  width: 80%;
  filter: drop-shadow(2px 2px 0 #fff);
}
.p-bingo_get .poyon {
  animation: poyon 1.1s linear 0s 1;
}

.p-bingo_btn_wrap {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  justify-content: space-around;
}
.p-bingo_btn_get {
  width: 30%;
}
.p-bingo_btn_get img {
  width: 100%;
}
.p-bingo_btn_item {
  width: 30%;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 1.6rem;
  padding: 1.6rem;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3137254902);
}
.p-bingo_btn_item img {
  height: 100%;
}
.p-bingo_btn_challenge {
  background: #006f35;
  max-width: 25vw;
  max-height: 25vw;
  aspect-ratio: 1/1;
}
.p-bingo_btn_challenge.c-grayscale {
  background: #dedede;
  filter: grayscale(100%) brightness(100%);
}
.p-bingo_btn_coupon {
  background: #9b0010;
  max-width: 25vw;
  max-height: 25vw;
  aspect-ratio: 1/1;
}
.p-bingo_btn_coupon.c-grayscale {
  background: #dedede;
  filter: grayscale(100%) brightness(100%);
}

.p-spot_title {
  display: grid;
  grid-template-columns: 2rem auto 2rem;
  margin-bottom: calc(1.6rem * 1);
  align-items: center;
  cursor: pointer;
}
.p-spot_title:before {
  content: "●";
  display: inline-block;
  margin-right: 0.2em;
}
.p-spot_title.__close:after {
  content: "\e145";
  display: inline-block;
  font-family: "Material Icons";
  margin-right: 0.2em;
}
.p-spot_title.__open:after {
  content: "\e15b";
  display: inline-block;
  font-family: "Material Icons";
  margin-right: 0.2em;
}
.p-spot_block {
  background-color: #fff;
  border-radius: 10px;
}
.p-spot_map {
  margin-bottom: calc(1.6rem * 1);
}
.p-spot_list li {
  padding: 0.8rem 2rem 0.8rem 0.8rem;
  border-bottom: 1px solid #dedede;
}
.p-spot_list li a {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}
.p-spot_list li a:after {
  position: absolute;
  content: "\e5cc";
  color: #dedede;
  font-family: "Material Icons";
  right: -2rem;
  top: calc(50% - 0.5em);
  font-size: 3.2rem;
}
.p-spot_list .__get {
  position: relative;
  z-index: 2;
}
.p-spot_list .__get:before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  background: url(../images/icon_get.svg) no-repeat center center;
  background-size: 24%;
  width: 100%;
  height: 80%;
  margin: 0.2em 0.2em 0 0;
  opacity: 0.1;
}
.p-spot_list .__get a {
  z-index: 3;
}
.p-spot .__category {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
}
.p-spot .__name {
  font-weight: 700;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  line-height: 1.4;
}
.p-spot .__place {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
}
.p-spot .__type {
  display: flex;
  gap: 0.8rem;
}
.p-spot .__icon {
  display: inline-block;
  padding: 0.5em;
  font-weight: 400;
  font-size: 1rem;
  text-align: center;
  color: #fff;
  border-radius: 4px;
}
.p-spot .__bingo {
  background: #006f35;
}
.p-spot .__coupon {
  background: #9b0010;
}
.p-spot .__link {
  text-decoration: underline;
  color: #004ea2;
}
.p-spot .__target_open {
  display: block;
}
.p-spot_detail {
  display: grid;
  gap: 0.8rem;
}
.p-spot_detail.__get {
  position: relative;
  z-index: 2;
}
.p-spot_detail.__get:before {
  content: "";
  position: absolute;
  z-index: 1;
  display: block;
  background: url(../images/icon_get.svg) no-repeat right top;
  background-size: 25%;
  width: 100%;
  height: 80%;
  margin: 0.2em 0.2em 0 0;
  opacity: 0.3;
}
.p-spot_detail.__get a {
  z-index: 3;
}
.p-spot .__list_title {
  display: flex;
}
.p-spot .__list_title:before {
  content: attr(data-title);
  flex-shrink: 0;
  margin-right: 0.2em;
  width: 5em;
}
.p-spot .__list_title span {
  display: flex;
}
.p-spot .__list_title span:before {
  content: ":";
  flex-shrink: 0;
  margin-right: 0.2em;
  width: 1em;
}

.p-challenge_title {
  text-align: center;
  color: #00255f;
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  padding: 1.6rem;
}
.p-challenge_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 0 2.4rem;
}
.p-challenge_zan {
  text-align: center;
}
@media (min-width: 1024px) {
  .p-challenge_zan {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-challenge_zan {
    margin-top: calc(5.6rem * 0.25);
    margin-bottom: calc(5.6rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-challenge_zan {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-challenge_zan span {
  font-size: 160%;
  font-weight: 700;
  font-size: 2.4rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}

.p-card .__item {
  position: relative;
  width: 100%;
  aspect-ratio: 93/132;
}
.p-card .__item img {
  width: 100%;
  aspect-ratio: 93/132;
}
.p-card .__item .__item_image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: 0.6s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.p-card .__item .__omote {
  transform: rotateY(-180deg);
}
.p-card .__item.__card_open .__ura {
  transform: rotateY(180deg);
}
.p-card .__item.__card_open .__omote {
  transform: rotateY(0);
}
.p-card .__disabled {
  pointer-events: none;
}
.p-card .__zoomup {
  transform: scale(1.2, 1.2);
  z-index: 10;
}
.p-card .__zoomup_bg {
  z-index: 11;
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5019607843);
  transition: all 0.3s;
}

.p-countdown {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100dvh;
}
.p-countdown .__num {
  display: inline-block;
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0;
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-size: 16rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  color: #fff;
  visibility: hidden;
}
.p-countdown .__active {
  visibility: visible;
  animation: bounce 1s 0s forwards;
}

.p-spotonly {
  display: none;
  background: rgba(0, 0, 0, 0.5019607843);
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 500;
}
.p-spotonly_frame {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 2.4rem;
}
.p-spotonly_openhook {
  box-sizing: border-box;
  width: 110px;
  height: 110px;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 2.4rem;
}

.__fixed {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
}

.p-coupon_manage .l-container {
  background: #000;
  color: #fff;
}
.p-coupon_manage_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-coupon_manage_inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 1.6rem;
  padding: 2.4rem;
  justify-content: center;
  align-items: center;
}
.p-coupon_manage_spot_name {
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.8rem;
}
.p-coupon_manage_spot_place {
  text-align: center;
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.4rem;
}
.p-coupon_manage_price {
  font-weight: 700;
  font-size: 2rem;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
}
.p-coupon_manage_cancel {
  margin-top: 3.6rem;
}
.p-coupon_manage .__label {
  text-align: center;
  line-height: 1.4;
}
.p-coupon_manage .__input {
  width: 80%;
  text-align: center;
  padding: 0.5em;
  font-weight: 500;
  font-size: 3rem;
}
.p-coupon_manage .__select {
  width: 100%;
  text-align: center;
  padding: 0.5em;
  font-weight: 500;
  font-size: 2rem;
}
.p-coupon_manage .__select option {
  text-align: center;
}

.p-ticket_text {
  font-family: "Cherry Bomb One", cursive;
  font-size: 3.6rem;
  text-align: center;
  margin-bottom: calc(1.6rem * 1);
}
.p-ticket_img2 {
  width: 40%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.p-map {
  width: 100%;
  height: 50vh;
}
.p-map_list {
  width: 100%;
  height: 26rem;
}
.p-map_detail {
  width: 100%;
  height: 50vh;
}

.p-footer {
  display: flex;
  gap: 1.6rem;
  align-items: center;
  padding: 1.6rem;
}
.p-footer_get {
  width: 30%;
}
.p-footer_get img {
  width: 100%;
}
.p-footer_btn {
  width: 30%;
  display: block;
  aspect-ratio: 1/1;
  border-radius: 1.6rem;
  padding: 1.6rem;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.3137254902);
}
.p-footer_btn img {
  height: 100%;
}
.p-footer_challenge {
  background: #006f35;
}
.p-footer_coupon {
  background: #006f35;
}

.p-introduction {
  background: url(../images/jp/bg02.png) scroll no-repeat calc(50% + 50rem) 0, url(../images/jp/bg01.png) scroll no-repeat calc(50% - 55rem) 220px, url(../images/jp/bg04.png) scroll no-repeat calc(50% + 60rem) 680px;
}

.p-photo {
  background: url(../images/jp/bg05.png) scroll no-repeat calc(50% + 55rem) 0px, url(../images/jp/bg03.png) scroll no-repeat calc(50% - 50rem) 20px;
}

.p-venue_menu {
  background: url(../images/jp/bg06.png) scroll no-repeat calc(50% + 45rem) 0px;
}

.p-movie {
  background: url(../images/jp/bg07.png) scroll no-repeat calc(50% - 45rem) 0px, url(../images/jp/bg08.png) scroll no-repeat calc(50% + 52rem) 380px, url(../images/jp/bg09.png) scroll no-repeat calc(50% - 52rem) 680px, url(../images/jp/bg10.png) scroll no-repeat calc(50% + 52rem) 1400px, url(../images/jp/bg11.png) scroll no-repeat calc(50% - 51rem) 1840px, url(../images/jp/bg12.png) scroll no-repeat calc(50% + 52rem) 2050px, url(../images/jp/bg13.png) scroll no-repeat calc(50% - 53rem) 2700px;
}

.p-sake {
  background: url(../images/jp/bg14.png) scroll no-repeat calc(50% + 55rem) 220px, url(../images/jp/bg15.png) scroll no-repeat calc(50% - 52rem) 760px, url(../images/jp/bg16.png) scroll no-repeat calc(50% + 52rem) 1100px;
}

@media (min-width: 1024px) {
  .h-pc_hide,
  .h-pc_tab_hide {
    display: none;
  }
}
@media (min-width: 768px) {
  .sp_only {
    display: none;
  }
  .event_consent.sp_only {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h-tab_hide,
  .h-pc_tab_hide,
  .h-sp_tab_hide {
    display: none;
  }
}
@media (max-width: 767px) {
  .h-sp_hide,
  .h-sp_tab_hide {
    display: none;
  }
  .pc_only {
    display: none;
  }
}
.ellipsis {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hp_mb0 {
  margin-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .hp_mb0 {
    margin-bottom: 0rem !important;
  }
}

.hp_mt0 {
  margin-top: 0rem !important;
}

.hp_pb0 {
  padding-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .hp_pb0 {
    padding-bottom: 0rem !important;
  }
}

.hp_mb10 {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .hp_mb10 {
    margin-bottom: 0.8rem !important;
  }
}

.hp_mt10 {
  margin-top: 1.6rem !important;
}

.hp_pb10 {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .hp_pb10 {
    padding-bottom: 0.8rem !important;
  }
}

.hp_mb20 {
  margin-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .hp_mb20 {
    margin-bottom: 1.6rem !important;
  }
}

.hp_mt20 {
  margin-top: 3.2rem !important;
}

.hp_pb20 {
  padding-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .hp_pb20 {
    padding-bottom: 1.6rem !important;
  }
}

.hp_mb30 {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .hp_mb30 {
    margin-bottom: 2.4rem !important;
  }
}

.hp_mt30 {
  margin-top: 4.8rem !important;
}

.hp_pb30 {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .hp_pb30 {
    padding-bottom: 2.4rem !important;
  }
}

.hp_mb40 {
  margin-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .hp_mb40 {
    margin-bottom: 3.2rem !important;
  }
}

.hp_mt40 {
  margin-top: 6.4rem !important;
}

.hp_pb40 {
  padding-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .hp_pb40 {
    padding-bottom: 3.2rem !important;
  }
}

.hp_mb50 {
  margin-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .hp_mb50 {
    margin-bottom: 4rem !important;
  }
}

.hp_mt50 {
  margin-top: 8rem !important;
}

.hp_pb50 {
  padding-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .hp_pb50 {
    padding-bottom: 4rem !important;
  }
}

.hp_mb60 {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .hp_mb60 {
    margin-bottom: 4.8rem !important;
  }
}

.hp_mt60 {
  margin-top: 9.6rem !important;
}

.hp_pb60 {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .hp_pb60 {
    padding-bottom: 4.8rem !important;
  }
}

.hp_mb70 {
  margin-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .hp_mb70 {
    margin-bottom: 5.6rem !important;
  }
}

.hp_mt70 {
  margin-top: 11.2rem !important;
}

.hp_pb70 {
  padding-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .hp_pb70 {
    padding-bottom: 5.6rem !important;
  }
}

.hp_mb80 {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .hp_mb80 {
    margin-bottom: 6.4rem !important;
  }
}

.hp_mt80 {
  margin-top: 12.8rem !important;
}

.hp_pb80 {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .hp_pb80 {
    padding-bottom: 6.4rem !important;
  }
}

.hp_mb90 {
  margin-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .hp_mb90 {
    margin-bottom: 7.2rem !important;
  }
}

.hp_mt90 {
  margin-top: 14.4rem !important;
}

.hp_pb90 {
  padding-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .hp_pb90 {
    padding-bottom: 7.2rem !important;
  }
}

.hp_mb100 {
  margin-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .hp_mb100 {
    margin-bottom: 8rem !important;
  }
}

.hp_mt100 {
  margin-top: 16rem !important;
}

.hp_pb100 {
  padding-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .hp_pb100 {
    padding-bottom: 8rem !important;
  }
}

.-mb5 {
  margin-bottom: 0.5rem !important;
}

.-mb10 {
  margin-bottom: 1rem !important;
}

.-mb20 {
  margin-bottom: 2rem !important;
}

.-mt5 {
  margin-top: 0.5rem !important;
}

.-mt10 {
  margin-top: 1rem !important;
}

.-mt20 {
  margin-top: 2rem !important;
}

.-tac {
  text-align: center;
}

.hp_bold {
  font-weight: 700;
}

.hp_white {
  color: #fff;
}

.hp_black {
  color: #000;
}

.hp_tac {
  text-align: center;
}

@media (max-width: 767px) {
  .hp_sp_tal {
    text-align: left;
  }
}

.hp_tal {
  text-align: left;
}

@media (max-width: 767px) {
  .hp_sp_padding {
    padding-right: 5vw;
    padding-left: 5vw;
  }
}

.hp_bg_white {
  background: #fff;
}
.hp_bg_white .__note {
  color: #000;
}

.hp_bg_radius {
  border-radius: 1.4rem;
}

.hp_contents_padding {
  padding: 2.4rem;
}

.hp_image_org_width img {
  width: auto !important;
}

.hp_fontL {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .hp_fontL {
    font-size: 1.8rem;
  }
}

.hp_fontS {
  font-size: 80%;
}

.hp_notice {
  font-size: 80%;
}

.hp_hide {
  display: none;
}