@charset "UTF-8";
@import url("./animation.css");
:root {
  --black: #4E4E4E;
  --white: #fff;
  --light-gray: #ccc;
  --middle-gray: #999;
  --dark-gray: #666;
  --pink:#FF7C9D;
  --pink_thin:#FFA5B7;
  --red: #d60148;
  --orange: #ff8a1c;
  --yellow: #ffea2d;
  --blue: #005AE1;
  --water:#66C6DE;
  --green: #24a740;
  --pale: #f1ede0;
  --main-color: #005AE1;
  --sub-color: #184621;
  --gold:#D2BC8E;
  --border1: var(--main-color) solid 0.1rem;
  --ofset_center: calc(50% - 37.5rem / 2);
  --main-font: "Shippori Mincho", serif;
  --sub-font: "Playfair Display", serif;
  --semi_bold:600;
  --bold:700;
  --extra_bold:800;
  /*--Material Symbols設定 案件ごとに設定--*/
  --ms: 'Material Symbols Outlined';
  /*--個別にMaterial Symbolsを設定する場合--*/
  --mso: 'Material Symbols Outlined';
  --msr: 'Material Symbols Rounded';
  --mss: 'Material Symbols Sharp';
  --sky_height:37.5rem;
}

.material-symbols {
  font-family: var(--ms);
}

/*====================================================================
　全体設定
====================================================================*/
html, body, header, footer, main, section, nav, div, ul, ol, li, a, p, h1, h2, h3, h4, h5, h6, img, dl, dt, dd, form, label, input, textarea, span {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

/*--ベースとなるフォントサイズ 1rem=10px想定--*/
html {
  font-size: 2.6666666667vw;
  scroll-behavior: smooth;
}

body {
  position: relative;
  background: var(--water);
  min-height: 100dvh;
  color: var(--black);
  font-family: var(--main-font);
  font-weight: var(--semi_bold);
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

body:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 37.5rem;
  height: var(--sky_height);
  background: linear-gradient(to bottom, #32A5F1 0%, #4691EB 100%);
}

main {
  position: relative;
}

img {
  display: block;
  width: 100%;
}

a {
  color: var(--red);
}

ul {
  list-style-type: none;
}

.caution li,
.indent {
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
}

.error {
  background: #fff;
  border: var(--red) solid 0.2rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
  margin: 0.5rem auto;
  max-width: 35.5rem;
  color: var(--red);
  font-weight: 700;
  font-size: 1.3rem;
  text-align: center;
  position: relative;
}

/*--下からせり上がり--*/
.scroll {
  opacity: 0;
  transform: translate(0, 5rem);
  transition: all 500ms;
}

.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.mt0 {
  margin-top: 0 !important;
}

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

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

.mt15 {
  margin-top: 1.5rem !important;
}

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

.mt3 {
  margin-top: 3rem !important;
}

.mt4 {
  margin-top: 4rem !important;
}

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

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

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

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

.mb15 {
  margin-bottom: 1.5rem !important;
}

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

.mb3 {
  margin-bottom: 3rem !important;
}

.mb4 {
  margin-bottom: 4rem !important;
}

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

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/*--------------見出し-----------*/
h2 {
  margin: 0 auto 2rem;
  text-align: center;
}
h2 .min {
  display: block;
  line-height: 2.8rem;
}
h2 .sub {
  display: block;
  font-family: var(--sub-font);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8rem;
}

/*--------------------枠--------------------*/
/*--フッタの高さ分、下部に余白を与えるために利用
フッタが無いページでは不要--*/
.section {
  margin-bottom: 6rem;
}

.block {
  padding: 2rem 0rem 18rem;
  min-height: calc(100vh - 19rem);
}

/*--共通の枠が必要な場合などに利用--*/
.content {
  position: relative;
  margin: 0 auto 2rem;
  width: 33.5rem;
  position: relative;
  padding-block: 3rem;
}
.content .wrap {
  position: relative;
  z-index: 1;
  background: url("../img/lframe_mid.png") repeat-y left top/33.5rem auto;
  padding-inline: 2.5rem;
}
.content:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/lframe_top.png") no-repeat left top/33.5rem auto;
  width: 100%;
  height: 3rem;
}
.content:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/lframe_btm.png") no-repeat left top/33.5rem auto;
  width: 100%;
  height: 3rem;
}

/*--------------------ボタン--------------------*/
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
}

.button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--light-gray);
  border-radius: 100vw;
  width: 100%;
  max-width: 28rem;
  margin: auto;
  min-height: 5.2rem;
  padding: 0.2rem;
  font-family: var(--main-font);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

:root {
  --disabled_bg: var(--light-gray);
  --disabled_box-shadow: inset 0 0 0 0.2rem var(--light-gray), inset 0 0 0 0.3rem #fff;
}

.button:disabled {
  background-color: var(--disabled_bg);
  box-shadow: var(--disabled_box-shadow);
}

.bt_next::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e5c8";
  font-size: 2.5rem;
  font-variation-settings: "wght" 300;
  right: 1rem;
}

.bt_back {
  background-color: var(--white);
  color: var(--pink);
  width: -moz-fit-content;
  width: fit-content;
  min-width: 18rem;
  min-height: auto;
  padding: 0.6rem 2.5rem;
  font-size: 1.6rem;
}

/* .bt_back::before {
	position: absolute;
	font-family: var(--ms);
	content: "\e5cb";
	font-size: 2.5rem;
	font-variation-settings: 'wght' 300;
	left: 1rem;
} */
.bt_sumi {
  background-color: var(--middle-gray);
  color: #ddd;
}

.button[target=_blank]::after,
.button[target=_new]::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e89e";
  font-weight: 300;
  font-size: 2.5rem;
  right: 1.5rem;
}

.bt_checkin::after {
  position: relative;
  font-family: var(--ms);
  content: "\e569";
  font-variation-settings: "FILL" 1;
  font-weight: 500;
  font-size: 2rem;
  margin-left: 1rem;
}

.bt-spot {
  background-color: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.5rem;
  border-radius: 50%;
  aspect-ratio: 1;
  flex-direction: column;
  font-size: 1.7rem;
  line-height: 2rem;
  position: relative;
}
.bt-spot span {
  margin-top: 1rem;
}
.bt-spot:after {
  content: "";
  width: 10.6rem;
  height: 10.6rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: 0.1rem solid var(--white);
  border-radius: 50%;
}

.bt_copy {
  width: 19.1rem;
}

/*--------------------色--------------------*/
.red {
  color: var(--red);
}

.bt_cookie,
.bt_submit,
.bg_pink,
.bt-camera {
  background-color: var(--pink);
}

.bg_blue {
  background-color: var(--blue);
  /* 二重線 */
  box-shadow: inset 0 0 0 0.2rem var(--blue), inset 0 0 0 0.3rem #fff;
}

.bg_white {
  background-color: var(--white);
  color: var(--pink);
}

.bg_bwhite {
  background-color: var(--white);
  color: var(--pink);
  border: 0.1rem solid var(--pink);
}

/*====================================================================
　PCでアクセス時のエラー表示
====================================================================*/
@media screen and (min-width: 481px) {
  html {
    font-size: 10px;
  }
  body {
    max-width: 750px;
    margin: auto;
  }
  main {
    max-width: 37.5rem;
    margin: auto;
  }
}
.view_pc .error {
  width: 90%;
  max-width: 500px;
  margin: 2rem auto;
}

.view_pc img {
  width: 150px;
  margin: 3rem auto;
}

/*--アコーディオン--*/
.accordion {
  margin: 2rem auto;
}

.accordion_title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--main-color);
  border: none;
  margin: 0;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}

.accordion_title::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e5c5";
  font-size: 1.5em;
  right: 1rem;
}

.accordion_title.active::after {
  transform: rotateZ(180deg);
}

.accordion_content + .accordion_title {
  margin-top: 0.1rem;
}

.accordion_content {
  display: none;
  background: #fff;
  margin: 0;
  padding: 1rem 0;
  transform-origin: top;
}

.accordion .accordion_title.active + .accordion_content {
  display: block;
}

.accordion_content.opne {
  display: block;
}

/*====================================================================
　ヘッダー設定
====================================================================*/
header {
  position: relative;
  width: 100%;
}

/*====================================================================
　フッター設定
====================================================================*/
footer {
  position: -webkit-fixed;
  position: fixed;
  background: url("../img/footer.png") no-repeat center bottom/37.5rem auto;
  width: 100%;
  height: 7.4rem;
  left: 0;
  bottom: 0;
  z-index: 200;
}

footer:has(#bt_menu:checked) {
  filter: none;
}

footer.hide {
  display: none;
}

footer ul {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  width: 37.5rem;
  left: calc(50% - 18.75rem);
  height: 100%;
}

footer ul li {
  font-family: var(--sub-font);
  text-align: center;
  flex-basis: 25%;
  height: 100%;
}
footer ul li img {
  width: 3.2rem;
  margin-inline: auto;
  margin-bottom: 0.2rem;
}

footer ul li a {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: end;
  padding-bottom: 1rem;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--white);
}

.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.menu-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.menubtn,
.menubtn:before,
.menubtn:after {
  position: absolute;
  display: block;
  background-color: #fff;
  border-radius: 0.3rem;
  height: 0.3rem;
  width: 2.5rem;
  content: "";
  transition: all 500ms;
  transition-timing-function: ease-in-out;
}

.menubtn {
  top: 37.5%;
}

.menubtn:before {
  bottom: 0.7rem;
}

.menubtn:after {
  top: 0.7rem;
}

.menutext {
  position: absolute;
  display: block;
  bottom: 1rem;
  font-size: 1.2rem;
  color: #fff;
}

#bt_menu:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0);
  transform: rotate(180deg);
}

#bt_menu:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(135deg);
}

#bt_menu:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(225deg);
}

#bt_menu:checked ~ .menu-btn span.menutext {
  transform: none;
}

#bt_menu {
  display: none;
}

.menu-content {
  position: fixed;
  background: linear-gradient(0deg, rgba(13, 63, 214, 0.96) 12.5%, rgba(66, 144, 234, 0.96) 100%);
  width: 100%;
  height: 100%;
  padding-bottom: 9rem;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
  transform-origin: bottom;
  transition-timing-function: linear(0, 0.3, 0.5, 0.65, 1);
  pointer-events: none;
}

.menu-content ul {
  display: block;
  padding: 0 2rem;
  height: calc(100% - 9rem);
  overflow-y: auto;
}

.menu-content ul li {
  width: 100%;
  height: auto;
  box-shadow: none;
  filter: none;
}
.menu-content ul li span.min {
  font-family: var(--main-font);
}
.menu-content ul li span.sub {
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  line-height: 1;
}

.menu-content ul li:last-of-type {
  border: none;
}

.menu-content ul li a {
  position: relative;
  display: flex;
  text-align: start;
  width: 100%;
  padding: 1.5rem 3rem 1.5rem 0.5rem;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
}

.menu-content ul li a::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e5cc";
  font-size: 2.5rem;
  font-variation-settings: "wght" 300;
  right: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#bt_menu:checked ~ .menu-content {
  opacity: 1;
  top: 0;
  left: 0;
  pointer-events: all;
}

body:has(#bt_menu:checked) {
  overflow: hidden;
}

/*--------------------シェア--------------------*/
.share {
  background: url("../img/bg_ootsu.png") no-repeat left top/37.5rem auto;
  padding-block: 12rem 8rem;
  margin-top: -10rem;
  color: var(--white);
  position: relative;
  z-index: 0;
}
.share .wrap {
  margin-inline: 3rem;
  max-width: 25.4rem;
}
.share .str {
  font-size: 1.4rem;
  font-weight: var(--extra_bold);
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 1.2rem;
}
.share .img {
  position: absolute;
  bottom: 13.2rem;
  right: 4.6rem;
  width: 7.9rem;
}
.share .bt_copy {
  margin-right: 5.4rem;
  margin-top: 2rem;
}
.share .outside {
  display: block;
  width: 20.3rem;
  margin-top: 1.8rem;
}

.share .copy-text {
  margin: 1.3rem auto;
  font-weight: 700;
  font-size: 2.3rem;
  border-bottom: 0.1rem solid var(--white);
  padding-bottom: 1rem;
  text-align: left;
}

.share ul {
  position: absolute;
  bottom: 8rem;
  right: 5.8rem;
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  margin-left: 8rem;
  padding: 0;
}

.share ul li {
  position: relative;
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
}

.share ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  font-size: 3rem;
  color: #fff;
  text-decoration: none;
}

.share ul li a img {
  position: relative;
  width: 2.4rem;
}

.insta {
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  overflow: hidden;
}

.insta::before {
  position: absolute;
  background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
  content: "";
  top: 2.3rem;
  left: -1.8rem;
  width: 6rem;
  height: 6rem;
}

.insta i {
  position: relative;
}

.twitter {
  background: #000;
}

.fasebook {
  background: #1877f2;
}

/*====================================================================
　マイページ設定
====================================================================*/
.mypage {
  text-align: center;
}

.mypage .title {
  font-weight: 700;
  font-size: 1.8rem;
}

/*====================================================================
　マイページポップアップ設定
====================================================================*/
.popup {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  padding: 2rem;
  top: 0;
  left: 0;
  z-index: 500;
}

.popup > div {
  background: #fff;
  padding: 2rem;
  text-align: center;
}

.popup div strong {
  color: var(--red);
  font-size: 1.8rem;
}

.popup .close {
  margin-top: 2rem;
}

/*--------------------ユーザー情報--------------------*/
.info-wrap {
  background-color: var(--white);
}

.info {
  padding: 1rem 2rem;
  background: url("../img/info_container.png") no-repeat top center/37.5rem auto;
  min-height: 14.1rem;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.info .name {
  font-size: 2.1rem;
  font-weight: var(--extra_bold);
  margin-top: 1.2rem;
}

.info .name small {
  font-size: 1.7rem;
}

.info .myno {
  font-size: 2.1rem;
  font-weight: var(--extra_bold);
}

.info .myno small {
  font-size: 1.5rem;
}

.info p {
  margin-top: 1rem;
  font-size: 1.1rem;
  text-align: center;
  font-weight: var(--semi_bold);
}

.photo-area {
  position: relative;
  background: url("../img/lala_wave.png") no-repeat left top/37.5rem auto;
  padding-block: 7rem 8rem;
  color: var(--white);
  overflow-x: hidden;
}
.photo-area .img {
  position: absolute;
  width: 10.4rem;
  left: 1.5rem;
  top: 5rem;
}
.photo-area .wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 3.2rem;
}
.photo-area .ttl {
  font-family: var(--sub-font);
  font-style: italic;
  font-weight: 400;
}
.photo-area .ttl .min {
  display: block;
  font-size: 3.5rem;
}
.photo-area .ttl .sub {
  display: block;
  font-size: 0.8rem;
}
.photo-area .str {
  text-align: left;
  font-size: 1.6rem;
  margin-top: 1.6rem;
  margin-left: 0.8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.photo-area .deco {
  position: absolute;
}
.photo-area .deco.surface1 {
  width: 29.3rem;
  left: 0;
  top: 3.2rem;
  animation: surface_anime 12s 0s ease-in-out infinite;
}
.photo-area .deco.surface2 {
  width: 20.2rem;
  right: 0;
  bottom: 2rem;
  animation: surface_anime2 8s 0.6s ease-in-out infinite;
}
.photo-area .deco.bubble {
  width: 1.8rem;
  left: 2.2rem;
  top: 0;
  opacity: 0;
  animation: bubble_up 6s 0s linear infinite, bubble_sway 2.4s 0s ease-in-out infinite alternate;
}
.photo-area .button {
  font-size: 1.5rem;
  width: 21.4rem;
  min-height: 4.4rem;
  margin-top: 2rem;
}

@keyframes surface_anime {
  0%, 100% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(-10%);
    opacity: 0.75;
  }
}
@keyframes surface_anime2 {
  0%, 100% {
    transform: translateX(0%);
    opacity: 1;
  }
  50% {
    transform: translateX(10%);
    opacity: 0.75;
  }
}
.logo {
  color: var(--white);
}
.logo .img {
  width: 18.5rem;
  margin-inline: auto;
}
.logo .str {
  font-size: 1.1rem;
  margin-top: 1.5rem;
}

@keyframes flashScale {
  0%, 100% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
}
.flash {
  width: 1.6rem;
  position: absolute;
  top: var(--ftop);
  left: var(--fleft);
  animation: flashScale 2s var(--ftiming) cubic-bezier(0.175, 1, 0.5, 1.275) infinite;
}

.info .flash1 {
  --ftop:.7rem;
  --fleft:.9rem;
  --ftiming:0s;
}
.info .flash2 {
  --ftop:1.2rem;
  --fleft:5.6rem;
  --ftiming:.4s;
}
.info .flash3 {
  --ftop:.5rem;
  --fleft:29rem;
  --ftiming:.4s;
}
.info .flash4 {
  --ftop:8.6rem;
  --fleft:34.8rem;
  --ftiming:0s;
}

.topics_top .flash1 {
  --ftop:1.6rem;
  --fleft:.9rem;
  --ftiming:.4s;
}
.topics_top .flash2 {
  --ftop:2.4rem;
  --fleft:5.6rem;
  --ftiming:0s;
}
.topics_top .flash3 {
  --ftop:1.5rem;
  --fleft:26rem;
  --ftiming:0s;
}
.topics_top .flash4 {
  --ftop:8.6rem;
  --fleft:34.8rem;
  --ftiming:.4s;
}

/*--------------------スタンプ一覧--------------------*/
.stamp-list {
  background: url("../img/bg_surface.png") no-repeat left top/37.5rem auto, url("../img/bg_first.png") no-repeat left top/37.5rem auto;
  padding-block: 2rem 8rem;
  margin-top: -1rem;
  position: relative;
  margin-bottom: -30rem;
  overflow-x: hidden;
}
.stamp-list a {
  text-decoration: none;
  color: var(--main-color);
}
.stamp-list .title {
  color: var(--white);
  margin-top: 2rem;
}
.stamp-list .title span.min {
  display: block;
  font-size: 2.7rem;
  font-weight: var(--extra_bold);
  line-height: 3.4rem;
}
.stamp-list .title span.sub {
  display: block;
  font-size: 1.6rem;
  font-weight: var(--bold);
  margin-top: 1.6rem;
}
.stamp-list .title span.add {
  font-size: 1.3rem;
  font-weight: var(--bold);
  line-height: 2.6rem;
  display: block;
}
.stamp-list .list-wrap {
  position: relative;
}
.stamp-list .bubble {
  width: 18.75rem;
  height: 18.75rem;
  display: block;
  position: relative;
}
.stamp-list .bubble a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.stamp-list .bubble a > * {
  position: relative;
  z-index: 1;
}
.stamp-list .bubble .ttl {
  font-size: 1.7rem;
  font-weight: var(--extra_bold);
  line-height: 2.1rem;
  margin-top: 1rem;
}
.stamp-list .bubble .icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
.stamp-list .bubble .icons li {
  width: 2.5rem;
}
.stamp-list .bubble .arrow {
  width: 3.2rem;
  margin-top: 0.8rem;
  margin-inline: auto;
}
.stamp-list .bubble .img {
  width: 21rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}
.stamp-list .bt-spot {
  position: absolute;
  top: 0;
  right: 4.2rem;
  color: var(--white);
  font-weight: var(--extra_bold);
}
.stamp-list .deco > * {
  position: absolute;
}
.stamp-list .bubble1 {
  position: absolute;
  top: 4.9rem;
  left: 1.4rem;
  width: 4.7rem;
  animation: bubble_up 6s 1s linear infinite, bubble_sway 2.4s 1s ease-in-out infinite alternate;
  opacity: 0;
}
.stamp-list .bubble2 {
  position: absolute;
  top: 3.7rem;
  right: 1.7rem;
  width: 4rem;
  animation: bubble_up 6s 2.6s linear infinite, bubble_sway 2.4s 2.6s ease-in-out infinite alternate;
  opacity: 0;
}
.stamp-list .bubble3 {
  position: absolute;
  top: 36.4rem;
  left: 1.4rem;
  width: 3.64rem;
  animation: bubble_up 6s 4.2s linear infinite, bubble_sway 2.4s 4.2s ease-in-out infinite alternate;
  opacity: 0;
}
.stamp-list .bubble4 {
  position: absolute;
  top: 35.1rem;
  right: 1.5rem;
  width: 5.2rem;
  animation: bubble_up 6s 1s linear infinite, bubble_sway 2.4s 1s ease-in-out infinite alternate;
  opacity: 0;
}
.stamp-list .bubble5 {
  position: absolute;
  top: 57.7rem;
  left: 3.7rem;
  width: 15.1rem;
  animation: bubble_up 6s 2.6s linear infinite, bubble_sway 2.4s 2.6s ease-in-out infinite alternate;
  opacity: 0;
}
.stamp-list .bubble6 {
  position: absolute;
  top: 55.5rem;
  right: 2.4rem;
  width: 3.8rem;
  animation: bubble_up 6s 1s linear infinite, bubble_sway 2.4s 1s ease-in-out infinite alternate;
  opacity: 0;
}
.stamp-list .bubble7 {
  position: absolute;
  top: 76.6rem;
  right: 10.85rem;
  width: 2.85rem;
  animation: bubble_up 6s 4.2s linear infinite, bubble_sway 2.4s 4.2s ease-in-out infinite alternate;
  opacity: 0;
}
.stamp-list .fish1 {
  position: absolute;
  top: 13.7rem;
  left: 0.2rem;
  width: 36.2rem;
  animation: fish_anime 6s 0s cubic-bezier(0.175, 0.2, 0.5, 1.5) infinite;
}
.stamp-list .fish2 {
  position: absolute;
  top: 36.6rem;
  left: 1.7rem;
  width: 23.6rem;
  animation: fish_anime 6s 1s cubic-bezier(0.175, 0.2, 0.5, 1.5) infinite;
}
.stamp-list .fish3 {
  position: absolute;
  top: 57.4rem;
  left: 20.7rem;
  width: 1.6rem;
  animation: fish_anime 6s 0s cubic-bezier(0.175, 0.2, 0.5, 1.5) infinite;
}
.stamp-list .fish4 {
  position: absolute;
  top: 77.5rem;
  right: 2.1rem;
  width: 15.6rem;
  animation: fish_anime 6s 1s cubic-bezier(0.175, 0.2, 0.5, 1.5) infinite;
}
.stamp-list .padding-dummy {
  padding-bottom: 18rem;
}
.stamp-list .isFirst .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
.stamp-list .isFirst .list li:first-child {
  grid-column: 1/-1;
  justify-self: start;
}
.stamp-list .isFirst .list > li:nth-child(1) {
  transform: translateX(2rem) translateY(-1rem);
}
.stamp-list .isFirst .list > li:nth-child(2) {
  transform: translateX(0rem) translateY(-1rem);
}
.stamp-list .isFirst .list > li:nth-child(3) {
  transform: translateX(-0.4rem) translateY(-4.6rem);
}
.stamp-list .isFirst .list > li:nth-child(4) .ttl {
  font-size: 1.5rem;
  transform: translateY(1rem);
}
.stamp-list .isFirst .list > li:nth-child(4) {
  transform: translateX(0.6rem) translateY(0rem);
}
.stamp-list .isFirst .list > li:nth-child(5) {
  transform: translateX(-0.6rem) translateY(-3.6rem);
}
.stamp-list .isSecond {
  background: url("../img/bg_second.png") no-repeat left top/37.5rem auto;
  padding-block: 5rem 16rem;
}
.stamp-list .isSecond + .padding-dummy {
  padding-bottom: 0;
}
.stamp-list .isSecond .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 2rem;
}
.stamp-list .isSecond .list li:last-child {
  grid-column: 1/-1;
  justify-self: end;
}
.stamp-list .isSecond .list > li:nth-child(1) {
  transform: translateX(0rem) translateY(3rem);
}
.stamp-list .isSecond .list > li:nth-child(2) .ttl {
  transform: translateY(0.5rem);
  font-size: 1.5rem;
}
.stamp-list .isSecond .list > li:nth-child(2) {
  transform: translateX(-0.6rem) translateY(0rem);
}
.stamp-list .isSecond .list > li:nth-child(3) {
  transform: translateX(0rem) translateY(3.2rem);
}
.stamp-list .isSecond .list > li:nth-child(4) {
  transform: translateX(-0.6rem) translateY(0rem);
}
.stamp-list .isSecond .list > li:nth-child(5) {
  transform: translateX(-5rem) translateY(0rem);
}
.stamp-list .isSecond .bubble1 {
  position: absolute;
  top: 6.6rem;
  left: 2.5rem;
  width: 3rem;
  opacity: 0;
  animation: bubble_up 6s 1s linear infinite, bubble_sway 2.4s 1s ease-in-out infinite alternate;
}
.stamp-list .isSecond .bubble2 {
  position: absolute;
  top: 6.8rem;
  right: 2.2rem;
  width: 0.84rem;
  opacity: 0;
  animation: bubble_up 6s 2.6s linear infinite, bubble_sway 2.4s 2.6s ease-in-out infinite alternate;
}
.stamp-list .isSecond .bubble3 {
  position: absolute;
  top: 23rem;
  left: 18.7rem;
  width: 2.7rem;
  opacity: 0;
  animation: bubble_up 6s 4.2s linear infinite, bubble_sway 2.4s 4.2s ease-in-out infinite alternate;
}
.stamp-list .isSecond .bubble4 {
  position: absolute;
  top: 44.5rem;
  right: 2.25rem;
  width: 1.5rem;
  opacity: 0;
  animation: bubble_up 6s 1s linear infinite, bubble_sway 2.4s 1s ease-in-out infinite alternate;
}
.stamp-list .isSecond .bubble5 {
  position: absolute;
  top: 47.1rem;
  left: 2.3rem;
  width: 9.6rem;
  opacity: 0;
  animation: bubble_up 6s 4.2s linear infinite, bubble_sway 2.4s 4.2s ease-in-out infinite alternate;
}
.stamp-list .isSecond .fish1 {
  position: absolute;
  top: 6.7rem;
  left: 9.2rem;
  width: 7.9rem;
  animation: fish_anime 6s 1s cubic-bezier(0.175, 0.2, 0.5, 1.5) infinite;
}
.stamp-list .isSecond .fish2 {
  position: absolute;
  top: 26rem;
  left: 33.6rem;
  width: 1.8rem;
  animation: fish_anime 6s 0s cubic-bezier(0.175, 0.2, 0.5, 1.5) infinite;
}
.stamp-list .isSecond .fish3 {
  position: absolute;
  top: 52.2rem;
  left: 4.2rem;
  width: 10.5rem;
  animation: fish_anime 6s 1s cubic-bezier(0.175, 0.2, 0.5, 1.5) infinite;
}

@keyframes bubble_up {
  0% {
    opacity: 0;
    transform: translateY(30%) scale(0.7);
  }
  15% {
    opacity: 1;
  }
  75% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-5%);
  }
}
@keyframes bubble_sway {
  from {
    margin-left: -6px;
  }
  to {
    margin-left: 6px;
  }
}
@keyframes fish_anime {
  0% {
    transform: translateY(0) rotate(-1deg) scale(1);
  }
  50% {
    transform: translateY(10%) rotate(1deg) scale(0.98);
  }
  100% {
    transform: translateY(0) rotate(-1deg) scale(1);
  }
}
/* ポイント表示 */
.point {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  background: #fff;
  font-weight: 700;
  padding: 0.5rem 2rem;
  margin: 2rem auto;
}

.point span:nth-of-type(1) {
  display: block;
  height: 100%;
  padding-bottom: 1rem;
  margin-right: auto;
}

.point span:nth-of-type(2) {
  margin-left: auto;
}

.point strong {
  font-size: 2.6rem;
}

.stamp-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.stamp-list ul.scroll li {
  opacity: 0;
}

.stamp-list ul.scrollin li {
  opacity: 1;
  transition: all 300ms;
}

.stamp-list ul.scrollin li:nth-of-type(2),
.stamp-list ul.scrollin li:nth-of-type(4) {
  transition-delay: 0.05s;
}

.stamp-list ul.scrollin li:nth-of-type(3),
.stamp-list ul.scrollin li:nth-of-type(5),
.stamp-list ul.scrollin li:nth-of-type(7) {
  transition-delay: 0.1s;
}

.stamp-list ul.scrollin li:nth-of-type(6),
.stamp-list ul.scrollin li:nth-of-type(8) {
  transition-delay: 0.15s;
}

.stamp-list ul.scrollin li:nth-of-type(9) {
  transition-delay: 0.2s;
}

/*--横スクロール型スタンプ帳--*/
.slide ul {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.slide li {
  flex: 0 0 auto;
  width: 15rem;
}

.slide li:nth-of-type(even) {
  margin: 7.5rem -1.5rem 0;
}

.slide ::-webkit-scrollbar {
  width: 7rem;
  height: 0.5rem;
}

.slide ::-webkit-scrollbar-track {
  background-color: rgba(120, 170, 210, 0.3);
  border-radius: 10vw;
}

.slide ::-webkit-scrollbar-thumb {
  background: #78aad2;
  border-radius: 10vw;
  width: 7rem;
}

/*--------------------景品一覧--------------------*/
.prize-list {
  padding: 0 2rem;
  background: url("../img/bg_prize.png") no-repeat center 0.5rem;
  background-size: 33.8rem auto;
  position: relative;
  z-index: 1;
}
.prize-list .title {
  color: var(--white);
  font-family: var(--sub-font);
  font-style: italic;
  font-weight: 400;
}
.prize-list .title .min {
  display: block;
  font-size: 3.9rem;
}
.prize-list .title .sub {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
.prize-list .explain {
  color: var(--white);
  font-size: 1.6rem;
}
.prize-list .explain strong {
  font-size: 4.1rem;
  margin-right: -0.2em;
  line-height: 1;
}
.prize-list ul {
  margin-top: 2.5rem;
  max-width: 31.7rem;
  margin-inline: auto;
}

.prize-list li {
  position: relative;
  padding-block: 3rem;
}
.prize-list li .wrap {
  position: relative;
  z-index: 1;
  background: url("../img/lframe_mid.png") repeat-y left top/31.7rem auto;
  padding-inline: 3rem;
}
.prize-list li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/lframe_top.png") no-repeat left top/31.7rem auto;
  width: 100%;
  height: 3rem;
}
.prize-list li:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/lframe_btm.png") no-repeat left top/31.7rem auto;
  width: 100%;
  height: 3rem;
}
.prize-list li .button {
  max-width: 23.2rem;
  margin-inline: auto;
  margin-top: 0.9rem;
}
.prize-list li .container {
  background: rgba(210, 188, 142, 0.3);
  margin-top: 1.4rem;
  padding: 1rem 1.5rem;
}
.prize-list li .container .sub {
  display: flex;
  gap: 1rem;
  font-size: 1.3rem;
  font-weight: var(--extra_bold);
}
.prize-list li .container .sub span {
  border-top: 0.1rem solid #4E4E4E;
  flex: 1;
  transform: translateY(1rem);
}
.prize-list li .container .min {
  font-size: 1.8rem;
  margin-top: 0.4rem;
}
.prize-list li .container .min.small {
  font-size: 1.6rem;
}
.prize-list li .container .min + .sub {
  margin-top: 1rem;
}
.prize-list li .note {
  display: flex;
  margin-inline:auto;
  font-size: 1rem;
  line-height: 2.4rem;
  margin-top: 0.6rem;
  text-align: left;
  line-height: 1.4rem;
}
.prize-list li .note + .note{
  margin-top: .5rem;
}
.prize-list li .caution {
  font-size: 0.8rem;
  line-height: 2.4rem;
  text-align: end;
  margin-right: 1rem;
}
.prize-list .add-wrap{
  color: var(--white);
  width: 31.7rem;
  margin-inline:auto;
}
.prize-list .add-wrap .note{
  text-align: left;
  display: flex;
  margin-inline:auto;
  font-size: 1rem;
  line-height: 2.4rem;
  margin-top: 1rem;
  text-align: left;
  line-height: 1.4rem;
}
.prize-list li + li {
  margin-top: 3rem;
}

.prize_img img{
  position: relative;
  border: 0.1rem solid var(--gold);
  border-radius: 1.5rem;
}

.rank {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: baseline;
  background: var(--main-color);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  top: -2.5rem;
  left: -2.5rem;
  color: #fff;
  font-size: 3rem;
  font-weight: 500;
}

.rank small {
  font-size: 1.6rem;
}

.winner {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--sub-color);
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  right: -2.5rem;
  bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
}

.winner small {
  font-size: 1.2rem;
}

.prize_name {
  margin: 1rem auto 0;
  font-size: 2.2rem;
}

.prize_detail {
  margin-top: .5rem;
  font-size: 1.5rem;
}
.add-wrap .prize_detail {
  font-size: 1.3rem;
}
/*--------------------トピックス--------------------*/
.topics_top {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
  background: url("../img/topics_container.png") no-repeat top center/37.5rem auto;
  min-height: 14.1rem;
  color: var(--white);
}

.topics_top .title {
  position: relative;
  padding-bottom: 0.4rem;
  font-size: 2.1rem;
}

.topics_top ul {
  margin: 0.5rem auto 0;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 5em;
}

.topics_top ul li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.25rem 0;
  text-align: left;
}

.topics_top ul li a {
  position: relative;
  color: var(--white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.topics_top ul li span {
  position: relative;
  margin-right: 1em;
  color: var(--white);
  font-size: 1.2rem;
  white-space: nowrap;
  font-weight: var(--extra_bold);
}

.topics_top .topics_link {
  position: absolute;
  display: block;
  background: #2A88CA;
  border-radius: 0.5rem;
  padding: 0.3rem 1.5rem;
  top: 1rem;
  right: 1rem;
  font-size: 1.4rem;
  font-weight: var(--extra_bold);
  text-align: right;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.5rem;
}

/*====================================================================
　トピックス設定
====================================================================*/
.topics_list ul {
  margin: 0 auto;
}

.topics_list ul li {
  position: relative;
}

.topics_list ul li a {
  position: relative;
  display: block;
  text-align: left;
  padding: 0rem 3rem 1.5rem 0;
  text-decoration: none;
  color: var(--black);
}

.topics_list ul li a::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e5cc";
  font-size: 2.5rem;
  font-variation-settings: "wght" 300;
  right: 0;
  top: calc(50% - 1rem);
  color: var(--main-color);
}

.topics_list ul li + li {
  border-top: var(--border1);
  padding-top: 1.5rem;
}

.topics_list span {
  color: var(--dark-gray);
}

.topics_list p {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.topics_list h3,
.topics_datail h3 {
  margin-bottom: 0.5rem;
  color: var(--main-color);
  word-wrap: break-word;
}

.topics_datail .date {
  color: var(--dark-gray);
  text-align: left;
}

.topics_datail .note {
  text-align: left;
  padding-bottom: 2rem;
  word-break: break-word;
}

/*====================================================================
　全体マップ画面
====================================================================*/
body:has(#message_placeholder) {
  border: #fff solid 0.3rem;
}

video {
  position: absolute;
  width: calc(100vw - 0.6rem);
  height: calc(100dvh - 0.6rem);
  left: 0;
  top: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

canvas {
  display: none;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

#message_placeholder {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

#message_placeholder > * {
  position: absolute;
}

#message {
  display: none;
  position: absolute;
  width: 100%;
}

#message div {
  position: relative;
  left: 0;
  top: 0;
  padding: 1.5rem 0.5rem;
  text-align: center;
  font-size: 90%;
  font-weight: bold;
  background-color: rgba(238, 238, 238, 0.5);
  border: #808080 solid 0.1rem;
  border-radius: 1rem;
  margin: 1rem;
}

#loading {
  width: 100%;
  text-align: center;
  color: grey;
  padding-top: 10rem;
}

#error {
  margin: 0.5rem;
  display: none;
}

/*====================================================================
　エリア一覧画面
====================================================================*/
.area-list li + li {
  border-top: 0.1rem solid #ccc;
}

.area-list li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 3rem 1rem 1rem;
  width: 100%;
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
}

.area-list li a::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e5cc";
  font-size: 2.5rem;
  font-variation-settings: "wght" 300;
  right: 0.5rem;
}

/*====================================================================
　対象地点一覧
====================================================================*/
/* エリアリスト利用時 */
.spot-list .arealist {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  z-index: 5;
}

.spot-list .arealist span {
  border: var(--main-color) solid 0.1rem;
  border-radius: 10vw;
  padding: 0.2rem 2rem;
  text-decoration: none;
  color: var(--main-color);
  font-weight: 500;
}

.spot-list .arealist span.active {
  background-color: var(--main-color);
  color: #fff;
}

.spot-list .area {
  margin-top: 0.2rem;
}

.spot-list .areaname {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  background: var(--main-color);
  border: none;
  margin: 0;
  padding: 1rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}

.spot-list .areaname::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e5c5";
  font-size: 1.5em;
  right: 1rem;
}

.spot-list .areaname.active::after {
  transform: rotateZ(180deg);
}

.spot-list .area_list {
  display: none;
  background: #fff;
  margin: 0;
  padding: 1rem 0;
  transform-origin: top;
}

.spot-list .areaname.active + .area_list,
.spot-list .areaname_list.opne {
  display: block;
}

.spot-list .accordion_title {
  justify-content: flex-start;
}

.spot-list ul + .accordion_title {
  margin-top: 0.2rem;
}

/* エリアリスト利用時ここまで */
.spot-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.spot-list li + li {
  border-top: 0.1rem solid #ccc;
}

.spot-list li a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 3rem 1rem 1rem;
  width: 100%;
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
}

.spot-list li a::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e5cc";
  font-size: 2.5rem;
  font-variation-settings: "wght" 300;
  right: 0.5rem;
}

.spot-list li a img {
  position: absolute;
  width: 2.5rem;
  left: 0;
}

.spot-list li a .category {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--middle-gray);
  border-radius: 10vw;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2rem 1rem;
  margin-left: auto;
  font-size: 1.2rem;
  color: #fff;
}

.checked::before {
  position: absolute;
  font-family: var(--ms);
  content: "\e834";
  font-variation-settings: "FILL" 1;
  left: 0.5rem;
  font-size: 1.4em;
  font-weight: 400;
  color: var(--main-color);
}

.nocheck::before {
  position: absolute;
  font-family: var(--ms);
  content: "\e835";
  font-variation-settings: "FILL" 1;
  left: 0.5rem;
  font-size: 1.4em;
  font-weight: 400;
  color: var(--light-gray);
}

.search_List {
  margin: 2rem auto 0;
}

.search_List li {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search_List li + li {
  border-top: 0.1rem solid #ccc;
}

.search_List li a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1rem 3rem 1rem 0;
  width: 100%;
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  text-decoration: none;
}

.search_List li a::after {
  position: absolute;
  font-family: var(--ms);
  content: "\e5cc";
  font-size: 2.5rem;
  font-variation-settings: "wght" 300;
  right: 0.5rem;
}

.search_List li a span {
  display: block;
  background: var(--main-color);
  border-radius: 10vw;
  padding: 0.2rem 1rem;
  margin-right: 1rem;
  font-size: 1rem;
  color: #fff;
}

.pager {
  display: flex;
  justify-content: center !important;
  gap: 0 0.8rem !important;
  margin: 2rem auto !important;
}

.pager li {
  background: var(--light-gray);
  border: none !important;
  border-radius: 50%;
  width: 4rem !important;
  height: 4rem !important;
}

.pager li:first-of-type,
.pager li:last-of-type {
  background: none;
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.pager li.disabled {
  opacity: 0;
}

.pager li.selected {
  background: var(--main-color);
}

.pager li a,
.pager li div {
  display: flex !important;
  justify-content: center;
  align-items: center;
  background: none !important;
  border: none !important;
  padding: 0;
  height: 100%;
  width: 100%;
  box-shadow: none !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

.pager li:first-of-type a,
.pager li:last-of-type a,
.pager li:first-of-type div,
.pager li:last-of-type div {
  font-size: 2.4rem;
  color: var(--light-gray);
}

.pager li a::after {
  content: none;
}

/* カバーフロー */
.slider.cover-flow {
  position: relative;
  width: 100%;
  /* perspective: 100.0rem; */
  overflow: visible;
}

.slider.cover-flow .slides {
  display: flex;
  transition: transform 0.4s ease;
  transform-style: preserve-3d;
  height: 100%;
  padding: 0;
  margin: 0;
}

.slider.cover-flow .slide {
  flex: 0 0 auto;
  border: none;
  width: 15rem;
  padding: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  z-index: 1;
}

.slider.cover-flow .slide::before {
  left: calc(50% - 7.5rem);
}

.slider.cover-flow .slide.active {
  --active-width: 25.0rem;
  width: var(--active-width);
  padding: 0 calc((100% - var(--active-width)) / 2);
  transform: scale(1) translateZ(0);
  z-index: 3;
  opacity: 1;
}

.slider.cover-flow .slide.active::before {
  left: calc(50% - var(--active-width) / 2);
}

.slider.cover-flow .slide.prev {
  height: 100%;
  transition-duration: 0ms;
  transform: translate(100vw, 10vw);
  z-index: 2;
}

.slider.cover-flow .slide.next {
  height: 100%;
  transition-duration: 0ms;
  transform: translate(-30vw, 10vw);
  z-index: 2;
}

.slider.cover-flow .slide.hidden {
  transform: scale(0.6);
  opacity: 0;
  z-index: 0;
}

.cover-flow .slide a {
  position: relative;
  display: flex;
  width: auto;
  padding: 0;
}

.cover-flow .slide::before {
  bottom: 1rem;
  line-height: 1;
  z-index: 2;
}

.cover-flow .slide a::after {
  bottom: 0rem;
  line-height: 1;
}

.cover-flow .slide figure {
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: var(--white);
  width: 15rem;
  height: 100%;
  padding: 0;
  margin: 0;
}

.cover-flow .slide.active figure {
  width: var(--active-width);
}

.cover-flow .slide figure img {
  position: relative;
  width: 100%;
}

.cover-flow .slide figure figcaption {
  position: relative;
  height: 10rem;
  padding: 1rem 2.5rem;
}

/*====================================================================
　地点詳細画面
====================================================================*/
.spot {
  position: relative;
  margin: 0 auto 2rem;
  width: 33.5rem;
  position: relative;
  padding-block: 3rem;
}
.spot .wrap {
  position: relative;
  z-index: 1;
  background: url("../img/lframe_mid.png") repeat-y left top/33.5rem auto;
  padding-inline: 2.5rem;
}
.spot:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/lframe_top.png") no-repeat left top/33.5rem auto;
  width: 100%;
  height: 3rem;
}
.spot:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../img/lframe_btm.png") no-repeat left top/33.5rem auto;
  width: 100%;
  height: 3rem;
}

.spot h2 {
  position: relative;
  display: flex;
  flex-direction: column;
}

.spot h2 span {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 1.4rem;
}

.spot h2 span::before,
.spot h2 span::after {
  position: relative;
  border-top: var(--black) solid 0.1rem;
  content: "";
  width: 3rem;
  height: 0.1rem;
}

.message-unacquired {
  margin: 2.5rem auto;
  color: var(--red);
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}

.message-sumi {
  margin: 2.5rem auto;
  color: #999;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
}

.message-gps {
  border: 0.2rem solid #eee;
  padding: 0.5rem;
  margin: 2rem auto;
  font-size: 1.4rem;
}

.spot .spot-img {
  position: relative;
  margin: 0 auto 2rem;
}

.spot .spot-img img {
  border-radius: 0.8rem 0.8rem 0 0;
  border-radius: 0.3rem 0.3rem 0 0;
}

.spot-trivia {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.spot .spot-detail {
  border: 0.1rem solid #ccc;
  border-collapse: collapse;
  width: 100%;
  margin: 2rem auto;
  text-align: left;
}

.spot .spot-detail tr:has(td:empty),
.spot .spot-detail tr:has(td a[href=""]) {
  display: none;
}

.spot .spot-detail tr:nth-of-type(n+2) {
  border-top: #eee solid 0.1rem;
}

.spot .spot-detail th,
.spot .spot-detail td {
  padding: 1rem 0.5rem;
  word-break: break-word;
}

.spot .spot-detail th {
  width: 5em;
  vertical-align: top;
  text-align: center;
}

.spot .spot-detail td {
  line-height: 1.2;
}
.spot .spot-detail td a {
  word-break: break-word;
}

.spot .spot-detail td span {
  position: relative;
  display: inline-block;
  margin-left: 0.5em;
  top: 0.3rem;
  font-size: 1.1em;
}

.spot .button {
  margin-top: 2rem;
}

/*====================================================================
　フォトフレーム一覧画面設定 //ボタンあり
====================================================================*/
.photoframe {
  text-align: center;
}

.photoframe .list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.photoframe .list li {
  width: calc(50% - 1rem);
}

.bt-camera::before {
  position: relative;
  margin-right: 0.5rem;
  font-family: var(--ms);
  content: "\e412";
  font-variation-settings: "FILL" 1;
}

.photoframe .photoframe-sample {
  border: 0.1rem solid var(--gold);
  width: 80%;
  margin: 2rem auto;
}

.photoframe .button {
  margin-top: 2rem;
  font-size: 1.6rem;
}

/*====================================================================
　スタンプ取得画面設定
====================================================================*/
.btm-header__wrap {
  padding-block: 4rem 2rem;
  position: relative;
}

.btm-header__min {
  width: 22.8rem;
  margin-inline: auto;
  opacity: 0;
  animation: ttl_anime 0.6s 0.4s ease-in forwards;
  transform: translateY(1rem);
}

@keyframes ttl_anime {
  0% {
    opacity: 0;
    transform: translateY(1rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.btm-header__sub {
  position: absolute;
  width: 33.9rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  animation: fade-in 0.6s 0.6s ease-in forwards;
}

.getstamp {
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  min-height: 100dvh;
}
.getstamp:before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50vh;
  background-color: #005AE1;
}
.getstamp .view {
  margin-top: -3rem;
  position: relative;
}
.getstamp .view .deco {
  position: absolute;
  width: 32.5rem;
  left: 2.4rem;
  bottom: 5.9rem;
}
.getstamp .isntCongrats {
  margin-top: 2rem;
  animation: ttl_anime 0.6s 1.6s ease-in forwards;
  opacity: 0;
}
.getstamp .isntCongrats .str {
  color: var(--white);
  font-size: 1.1rem;
  margin-top: 2rem;
  padding-bottom: 2.4rem;
}
.getstamp {
  --txt_pd_left:12.4rem;
}
.getstamp .message {
  margin: 1.5rem auto 2.3rem;
  padding-left: var(--txt_pd_left);
  font-weight: 700;
  text-align: left;
  font-size: 2.6rem;
  color: var(--white);
  line-height: 3.1rem;
  opacity: 0;
  animation: ttl_anime 0.6s 1.6s ease-in forwards;
}
.getstamp .guide {
  font-size: 1.5rem;
  padding-left: var(--txt_pd_left);
  color: var(--white);
  opacity: 0;
  animation: ttl_anime 0.6s 1.6s ease-in forwards;
  text-align: left;
}
.getstamp .button.bg_pink {
  margin-top: 4.5rem;
  opacity: 0;
  animation: ttl_anime 0.6s 1.6s ease-in forwards;
}
.getstamp .btm-contents {
  position: relative;
  z-index: 1;
  margin-top: -5rem;
  background: url("../img/gs_main_bg.png") no-repeat left top/37.5rem auto;
  padding-block: 6rem 0;
}
.getstamp .btm-contents .deco {
  position: absolute;
}
.getstamp .btm-contents .deco.lala {
  width: 6.6rem;
  left: 3.9rem;
  top: 4rem;
  opacity: 0;
  animation: ttl_anime 0.6s 1.6s ease-in forwards;
}
.getstamp .btm-contents .deco.bubble1 {
  width: 1.6rem;
  top: 6rem;
  left: 2rem;
  opacity: 0;
  animation: bubble_up 6s linear infinite, bubble_sway 2.4s ease-in-out infinite alternate;
}
.getstamp .btm-contents .deco.bubble2 {
  width: 1.4rem;
  top: 6rem;
  right: 1.5rem;
  opacity: 0;
  animation: bubble_up 6s 0.8s linear infinite, bubble_sway 2.4s 0.8s ease-in-out infinite alternate;
}
.getstamp .btm-contents .deco.fish {
  width: 34.4rem;
  left: 1.1rem;
  top: 4.6rem;
  animation: fish_anime 6s cubic-bezier(0.175, 0.2, 0.5, 1.5) infinite;
}
.getstamp .btm-contents .flash1 {
  --ftop:7.3rem;
  --fleft:10.5rem;
  --ftiming:.4s;
}
.getstamp .btm-contents .flash2 {
  --ftop:5.2rem;
  --fleft:32.3rem;
  --ftiming:0s;
}
.getstamp .btm-contents .flash3 {
  --ftop:20.9rem;
  --fleft:3rem;
  --ftiming:0s;
}
.getstamp .btm-contents .flash4 {
  --ftop:20rem;
  --fleft:34.8rem;
  --ftiming:.4s;
}
.getstamp .hasVoice {
  background: url("../img/bg_voice.png") no-repeat left top/37.5rem auto;
  padding-block: 4rem 12rem;
  margin-top: -4.5rem;
  margin-bottom: -4rem;
  position: relative;
  z-index: 10;
}
.getstamp .hasVoice > * {
  animation: fade-in 0.6s 0.6s ease-in forwards;
  opacity: 0;
}
.getstamp .hasVoice .str {
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin-top: 1.7rem;
}
.getstamp .hasVoice .img {
  width: 23.3rem;
  margin-inline: auto;
  margin-top: 2.4rem;
}
.getstamp .hasVoice audio {
  width: 25.7rem;
  height: 3.3rem;
  margin-top: 1.6rem;
  margin-inline: auto;
}

/* デザイン調整時のみ使用 */
/* .getstamp *{
	animation: none!important;
} */
/*--達成時のみにスタイルあてたい場合--
.getstamp:has(.congrats){

}*/
.stampget {
  font-size: 4rem;
  font-weight: 900;
  animation: scale-up-center 0.4s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.getstamp .stamp-img {
  position: relative;
  /* perspective: 30rem;
  transform-style: preserve-3d; */
}

.getstamp .stamp-img img {
  width: 25rem;
  height: 25rem;
  margin: 1rem auto;
  animation: 2s cubic-bezier(0.2, 0.8, 0.5, 1.05) both;
  animation: 2s linear both;
  animation-name: invert;
}

.getstamp .spot-title {
  font-size: 1.8rem;
  font-weight: 700;
  padding-block: 2rem;
  margin-inline: 3rem;
  position: relative;
  z-index: 11;
}
.getstamp .spot-title:before {
  content: "";
  top: 0;
  left: 0;
  background: url("../img/sframe_top.png") no-repeat left top/31.5rem 2rem;
  position: absolute;
  width: 31.5rem;
  height: 2rem;
}
.getstamp .spot-title:after {
  content: "";
  left: 0;
  bottom: 0;
  background: url("../img/sframe_btm.png") no-repeat left top/31.5rem 2rem;
  position: absolute;
  width: 31.5rem;
  height: 2rem;
}
.getstamp .spot-title .wrap {
  background: url("../img/sframe_mid.png") repeat-y left top/31.5rem 2rem;
  padding-inline: 2rem;
}
.getstamp .spot-title .wrap span {
  animation: fade-in 0.6s 0.6s ease-in forwards;
  opacity: 0;
}

.getstamp .congrats {
  position: relative;
  background: url("../img/cg_decoration.png") no-repeat 2.9rem 1.35rem/33.45rem auto, url("../img/bg_cong.png") no-repeat left bottom/37.5rem auto;
  padding-top: 6rem;
  margin-top: 3rem;
}
.getstamp .congrats .wrap {
  text-align: left;
  width: 28.6rem;
  margin-inline: auto;
}
.getstamp .congrats .min {
  color: var(--white);
  font-size: 3rem;
  line-height: 3.6rem;
}
.getstamp .congrats .min strong {
  display: block;
  font-size: 4.2rem;
  letter-spacing: -2.5%;
}
.getstamp .congrats .sub {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-top: 1.6rem;
}
.getstamp .congrats .button {
  margin-top: 2.1rem;
  width: 28.6rem;
}
.getstamp .congrats .img {
  position: absolute;
  right: 5.6rem;
  top: 4.2rem;
  width: 6.5rem;
}
.getstamp .congrats .str {
  color: var(--white);
  font-size: 1.1rem;
  padding-bottom: 2.4rem;
}

.getstamp .button {
  margin: 1.5rem auto;
}

.getstamp .close {
  display: block;
  margin: auto auto 3rem;
  font-size: 4rem;
  font-variation-settings: "FILL" 1;
  animation: fade-in 1.2s 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

/*====================================================================
　引き換え画面
====================================================================*/
.exchange {
  text-align: center;
}

.exchange .redemption dt {
  display: inline-block;
  background: var(--main-color);
  border-radius: 100vw;
  padding: 0.5rem 1.5rem;
  margin: 2rem auto 0.5rem;
  color: #fff;
  font-weight: 700;
}

.exchange .caution {
  padding: 0 2rem;
  margin: 2rem auto 0rem;
  list-style-type: none;
  text-align: left;
}

.exchange .exchange-img {
  position: relative;
  margin: 2rem auto 1rem;
}
.exchange .exchange-img .caution2{
    font-size: 0.8rem;
    line-height: 2.4rem;
    text-align: end;
    margin-right: 1rem;
}
.exchange .exchange-img img{
  border: 0.1rem solid var(--gold);
  border-radius: 1.6rem;

}
.exchange .exchange-img.sumi img {
  animation: grayscale 0.4s 0.8s linear both;
}

.exchange .exchange-img.sumi::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: var(--red) solid 0.3rem;
  border-radius: 1rem;
  content: "引換済";
  padding: 0.5rem;
  width: 10rem;
  top: 40%;
  left: calc(50% - 5rem);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  transform: rotate(-15deg);
  animation: scale-down-center-roll_15 0.4s 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.exchange .exchange-result {
  text-align: center;
  background: var(--pale);
  padding: 2rem 0;
  margin: 2rem auto 0;
}

.exchange .exchange-result dt {
  font-weight: 700;
}

.exchange .exchange-result dd + dt {
  margin-top: 1rem;
}

.exchange .exchange-result dd {
  font-size: 2.2rem;
}

/* 確認用チェック */
.check-btn {
  text-align: center;
  margin: 2rem 0 0rem;
}

.check-btn label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
}

.check-btn p {
  font-size: 1.2rem;
}

.check-btn .button {
  margin-top: 1rem;
}

.check-btn:has(.bt_check:not(:checked)) .button {
  background-color: var(--disabled_bg);
  pointer-events: none;
}

/*====================================================================
　フォーム設定
====================================================================*/
.form dl {
  margin: 1em auto 3rem;
}

.form dt {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  background: var(--pale);
  padding: 0.5em;
  font-size: 1.6rem;
  font-weight: 700;
}

.form dt small {
  margin-left: 0.5rem;
  font-size: 1rem;
  word-break: break-word;
}

.form * + dt {
  margin-top: 2rem;
}
.form * + dt .small {
  font-size: 0.95em;
}

.form dd {
  margin-top: 0.5rem;
  word-break: break-word;
}

.form dd.flex,
.form dd.flex50 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.form dd.flex label {
  margin-right: 1rem;
}

.form dd.flex50 label {
  width: 50%;
}

.form dd label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.form dd.gender {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form dd.gender input {
  display: none;
}

.form dd.gender label {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  border: var(--light-gray) solid 0.1rem;
  border-radius: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  text-align: center;
  color: var(--black);
  font-weight: bold;
  transition: 0.1s;
}

.form dd.gender label:has(input[type=radio]:checked) {
  background: var(--main-color);
  border-color: var(--main-color);
  color: var(--white);
}

.required,
.any {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border: var(--red) solid 0.1rem;
  border-radius: 0.5rem;
  padding: 0.2rem 0.5rem;
  /* min-width: 3.6rem; */
  max-height: 2.1rem;
  color: var(--red);
  font-size: 1.2rem;
  line-height: 1;
  overflow-wrap: normal;
  word-break: keep-all;
}

.any {
  border-color: var(--dark-gray);
  color: var(--dark-gray);
}

.prize-name {
  margin: 2rem auto;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: var(--main-color);
}

.form .caution {
  margin-top: 2rem;
}

.form .caution li {
  font-size: 1.2rem;
}

.form_comp {
  text-align: center;
}

.form_comp p {
  margin: 2rem auto;
}

input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  background: #fff;
  border: var(--light-gray) solid 0.1rem;
  border-radius: 50%;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

input[type=radio]:checked {
  border-color: var(--main-color);
}

input[type=radio]:checked:before {
  position: absolute;
  display: block;
  content: "";
  background: var(--main-color);
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  left: calc(50% - 0.5rem);
  top: calc(50% - 0.5rem);
}

input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  background: #fff;
  border: var(--light-gray) solid 0.1rem;
  border-radius: 0.5rem;
  width: 2rem;
  min-width: 2rem;
  height: 2rem;
  margin-right: 0.5rem;
  vertical-align: middle;
}

input[type=checkbox]:checked {
  border-color: var(--main-color);
}

input[type=checkbox]:checked:before {
  position: absolute;
  display: block;
  background: var(--main-color);
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(6% 70%, 15% 54%, 43% 70%, 81% 8%, 97% 19%, 50% 95%);
}

input[type=text],
input[type=email],
input[type=number],
input[type=tel],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: var(--light-gray) solid 0.1rem;
  border-radius: 0.5rem;
  min-height: 3.6rem;
  padding: 0.5rem;
  font-size: 1.6rem;
  width: 100%;
}

input[type=date] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: var(--light-gray) solid 0.1rem;
  border-radius: 0.5rem;
  min-height: 3.6rem;
  padding: 0.5rem;
  font-size: 1.6rem;
}

textarea[disabled] {
  border-color: #ddd;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E) no-repeat right 0.5rem top 55%;
  background-size: 1.6rem 1.6rem;
  border: var(--light-gray) solid 0.1rem;
  border-radius: 0.5rem;
  max-width: 100%;
  min-height: 3.6rem;
  padding: 0.5rem 2.5rem 0.5rem 0.5rem;
  font-size: 1.6rem;
  color: var(--black);
}

option:checked {
  background-color: var(--pale);
}

input:focus,
select:focus,
textarea:focus {
  outline: var(--main-color) solid 0.2rem;
}

::-moz-placeholder {
  color: #999;
  font-size: 0.9em;
}

::placeholder {
  color: #999;
  font-size: 0.9em;
}

input#textPassword {
  border: none;
}

.textPassword {
  position: relative;
  border: var(--light-gray) solid 0.1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.textPassword input,
.textPassword input:focus {
  outline: none;
}

.textPassword:has(input:focus) {
  outline: var(--main-color) solid 0.2rem;
}

#buttonEye {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 10%;
  right: 0;
  top: 0;
}

#buttonEye.visibility::before {
  position: absolute;
  font-family: var(--ms);
  content: "\e8f4";
}

#buttonEye.visibility_off::before {
  position: absolute;
  font-family: var(--ms);
  content: "\e8f5";
}

.other_checked {
  display: none;
}

.form dd:has(.other:checked) .other_checked {
  display: block;
  margin-top: 0.2rem;
}

/*====================================================================
　規約・概要
====================================================================*/
.rule dt {
  font-size: 1.6rem;
  font-weight: 700;
}

.rule dt span {
  color: var(--main-color);
}

.rule * + dt {
  border-top: var(--main-color) dotted 0.1rem;
  padding-top: 2rem;
}

.rule dd {
  margin-bottom: 2rem;
  padding: 2rem 0 0;
  word-break: break-word;
}
.rule dd:last-child {
  margin-bottom: 0;
}

.rule dd div {
  background: var(--pale);
  margin: 0.5rem 0;
  padding: 0.5rem;
  font-size: 1.3rem;
}

.rule li {
  padding-left: 1em;
  text-indent: -1em;
}

.rule li + li {
  margin-top: 1rem;
}

/*====================================================================
　参加時のご注意
====================================================================*/
.join_attention strong {
  font-size: 1.8rem;
}

.join_attention a {
  font-weight: 700;
}

.join_attention div {
  background: var(--pale);
  margin: 2rem 0 1rem;
  padding: 0.5rem;
}
.join_attention div.wrap {
  margin: 0;
}

.join_attention li {
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 700;
  font-size: 1.4rem;
}

.join_attention li + li {
  margin-top: 0.5rem;
}

.join_attention div + ul li {
  font-size: 1.2rem;
  font-weight: normal;
}

/*------初回アクセス時-----*/
.attention {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100dvh;
  padding: 2rem 2rem 5rem;
  top: 0;
  left: 0;
  text-align: center;
  overflow-y: auto;
}

.attention div {
  background: #fff;
  border-radius: 1rem;
  height: 70%;
  padding: 2rem;
  margin-bottom: 2rem;
  overflow-y: scroll;
}

.attention dl {
  margin: 0 0 2rem;
}

.attention dt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  color: #333;
  font-weight: 700;
  font-size: 1.8rem;
  padding: 1rem;
}

.attention dt::before,
.attention dt::after {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: red;
  width: 2.4rem;
  height: 2.1rem;
  padding-top: 0.2rem;
  font-family: var(--ms);
  content: "\f22f";
  color: var(--white);
  line-height: 1;
  clip-path: path("M10.264,3.039a2,2,0,0,1,3.473,0L22.29,18.008A2,2,0,0,1,20.554,21H3.446A2,2,0,0,1,1.71,18.008Z");
}

.attention dt span.material-symbols {
  margin: 0 1rem;
  color: #c92a19;
  font-variation-settings: "FILL" 1;
}

.attention dd {
  padding: 0.5rem 0;
  text-align: left;
}

.attention ul li {
  padding: 0.5rem 1em;
  text-indent: -1em;
}

.attention ul li img {
  width: 15rem;
  margin: 0 auto;
}

.attention ul li img.w100 {
  width: 100%;
}

.ios,
.android,
.safari,
.chrome,
.is-ios .on_pc,
.is-android .on_pc {
  display: none;
}

.is-ios .ios,
.is-ios img.ios,
.is-android .android,
.is-android img.android,
.is-safari-os .on_pc,
.is-chrome-os .on_pc,
.is-safari-os .safari,
.is-chrome-os .chrome,
.is-safari-os img.safari,
.is-chrome-os img.chrome {
  display: block;
}

.is-ios span.ios,
.is-android span.android,
.is-safari-os span.safari,
.is-chrome-os span.chrome {
  display: inline;
}

/*====================================================================
　FAQ
====================================================================*/
.faq .title {
  background: var(--red);
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.faq img {
  width: 100%;
  margin: 1rem 0;
}

.faq dt {
  margin: 0;
  padding: 1rem 0;
  padding-left: 1.25em;
  text-indent: -1.25em;
  color: #185195;
}

.faq dt strong {
  font-size: 1.8rem;
}

.faq dd {
  border-bottom: 0.1rem dotted #999;
  margin: 0 0 1rem;
  padding-bottom: 1em;
  padding-left: 1.25em;
  text-indent: -1.25em;
}

.faq dd strong {
  font-size: 1.8rem;
  color: var(--red);
}

.faq ul {
  padding: 0.5rem 0 0.5rem 1em;
  text-indent: -1em;
}

.faq .title2 {
  background: #006298;
  padding: 0.5rem;
  margin: 0.5rem 0;
  color: #fff;
}

.faq .midashi {
  background: var(--red);
  padding: 0.5rem 3rem;
  margin: 0.5rem 0;
  color: #fff;
  font-weight: 700;
}

/*====================================================================
　自動翻訳の設定方法
====================================================================*/
.translate h2 {
  margin-top: 0 !important;
}

.translate h3.title {
  background-color: #006298;
  color: #fff;
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 3rem;
}

.translate img {
  display: block;
  margin: 0.5rem auto 0;
  padding-bottom: 0.5rem;
}

.translate ol.numb {
  list-style: none;
  counter-reset: number;
}

.translate ol.numb li {
  position: relative;
  padding-left: 2rem;
}

.translate ol.numb li:not(:last-of-type) {
  border-bottom: var(--dark-gray) dotted 0.2rem;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.translate ol.numb li::before {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #006298;
  counter-increment: number;
  content: counter(number);
  top: 0.2em;
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  color: #fff;
  font-size: 0.7em;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
}

.translate ol.numb li div.box {
  margin: 0.5rem 0.5rem 0rem -1.5rem;
}

.translate ol.numb li img.inline {
  display: inline;
  width: 2em;
  margin: 0 0 -0.5rem;
}

.translate .siege {
  border: var(--black) solid 0.1rem;
  padding: 0.5rem;
}

.translate form {
  margin: 0 auto 2rem;
  text-align: center;
}

.eng {
  display: none;
}/*# sourceMappingURL=style.css.map */