@charset "UTF-8";
/* reset
----------------------------*/
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,
b,
u,
i,
center,
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,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

:root {
  --color-bg: #dfdfdf;
  --color-bg-rgb: 255, 255, 255;
  --color-bg-gray: #9d9d9d;
  --color-footer-bg: #1388ab;
  --color-footer: #fff;
  --bg-main: #dfdfdf;
  --text-black: #000;
  --main-gray-color: #767676;
  --color-primary: #1388ab;
  --color-secondary: #1388ab;
  --color-tertiary: #1388ab;
  --color01: #000000;
  --color02: #1388ab;
  --color03: #000000;
  --color-danger: rgba(220, 53, 69, 0.9);
  --color-info: rgba(0, 123, 255, 0.9);
  --color-success: rgba(40, 167, 69, 0.9);
  --color-optional: #d0ba9f;
  --color-required: #db0839;
  --color-formitem: #9f9f9f;
  --font-langJa: "Noto Sans JP", sans-serif;
  --font-langEn: "Noto Sans JP", sans-serif;
  --font-langNum: "Noto Sans JP", sans-serif;
  --font-weight-regular: 400;
  --font-weight-bold: 700;
  --font-weight-black: 700;
  --common-r01: 40px;
  --common-r02: 0;
  --contents-width: 1224;
  --contents-width-px: calc(var(--contents-width) * 1px);
  --sp-width: 390;
  --sp-width-px: calc(var(--sp-width) * 1px);
  --footer-height: 60;
  --footer-height-px: calc(var(--footer-height) * 1px);
  --title02: var(--color-tertiary);
}

html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  position: relative;
  width: 100%;
  min-height: 100%;
  font-family: var(--font-langJa);
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-black);
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 1fr min(var(--sp-width-px), 100%) 1fr;
  grid-template-rows: auto;
  gap: 0px 0%;
  background: #4aecff;
  background: linear-gradient(90deg, #effe0b 0%, #29eaff 50%, #bdfcfd 100%);
  background-size: 200% 200%;
  animation: gradientAnimation 5s infinite alternate;
}
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
body .l-container {
  grid-area: 1/2/2/3;
  background-color: #fff;
}
body::before {
  grid-area: 1/1/2/2;
}
body::after {
  grid-area: 1/3/2/4;
}
body::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
body::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

@-webkit-keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes moveGradient {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 100%;
  }
}
a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
img,
svg {
  max-width: 100%;
  height: auto;
}

:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}

.l-main {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}
.l-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  height: 100%;
  margin: 0 auto;
}
.l-inner {
  margin: 0 auto;
  width: 96%;
  max-width: 1500px;
}
.l-inner.-small {
  max-width: 1000px;
}
.l-inner.-fluid {
  width: 100%;
  max-width: 1920px;
}

/******************************
* utility
*******************************/
.pc-only {
  display: none;
}

.sp-only {
  display: block;
}

@media (min-width: 769px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
.u-link {
  text-decoration: underline;
  text-underline-offset: 0.25em;
  outline: none;
}
.u-link:hover,
.u-link:focus {
  text-decoration: none;
}

.u-ft-maru {
  font-family: "Kiwi Maru", serif;
}

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

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

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

.u-fwb {
  font-weight: 700;
}

.u-color-primary {
  color: var(--color-primary);
}

.u-color-secondary {
  color: var(--color-secondary);
}

.u-color-tertiary {
  color: var(--color-tertiary);
}

.u-color01 {
  color: var(--color01);
}

.u-color02 {
  color: var(--color02);
}

.u-color03 {
  color: var(--color03);
}

.u-mt10 {
  margin-top: 10px;
}

.u-mt15 {
  margin-top: 15px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mt25 {
  margin-top: 25px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mt35 {
  margin-top: 35px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mt45 {
  margin-top: 45px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mt55 {
  margin-top: 55px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-tt-uc {
  text-transform: uppercase;
}

/*******************************
* common
******************************/
.c-section {
  padding: 150px 0;
}
@media (min-width: 769px) {
  .c-section {
    padding: 80px 0;
  }
}

.c-frame {
  margin: 0 auto;
  position: relative;
  width: 100%;
}

.c-frame-inner {
  padding: 8% 6%;
}

.c-ttl01 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65em 0.25em;
  color: var(--color-primary);
  text-align: center;
  font-size: 26px;
  font-weight: var(--font-weight-black);
  border-top: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
}
.c-ttl01 .small {
  display: inline-block;
  font-size: 16px;
  font-weight: var(--font-weight-black);
  line-height: 1.06;
}
.c-ttl01.border-bottom + * {
  margin-top: 15px;
  border-top: 3px solid var(--color-primary);
}
.c-ttl01 + * {
  margin-top: 30px;
}

.c-ttl02 {
  position: relative;
  padding: 1em 0.25em 1em;
  font-size: 21px;
  font-weight: var(--font-weight-black);
  letter-spacing: 0.06em;
  color: var(--common-r01);
  text-align: center;
}
.c-ttl02::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: block;
  width: 40px;
  height: 18px;
  background-color: var(--title02);
  -webkit-mask-image: url(../img/custom/title02_after.svg);
  mask-image: url(../img/custom/title02_after.svg);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.c-ttl02 + * {
  margin-top: 1.5em;
}

.c-text01 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.c-text02 {
  font-size: 18px;
  font-weight: var(--font-weight-black);
  line-height: 1.72;
}

.c-scroll {
  padding: 0.25em;
}
.c-scroll::-webkit-scrollbar {
  width: 16px;
}
.c-scroll::-webkit-scrollbar-track {
  background-color: #fff;
  border-left: 1px solid var(--color-formitem);
}
.c-scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-formitem);
  border-radius: 8px;
}

.c-list-dot li {
  position: relative;
  padding-left: 1em;
}
.c-list-dot li::before {
  content: "・";
  position: absolute;
  left: 0;
  display: block;
}

/* 送信ボタン */
.c-btn01 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0.75em;
  width: 100%;
  max-width: 300px;
  color: #fff;
  background-color: var(--color02);
  border: 1px solid var(--color02);
  text-align: center;
  font-size: 19px;
  font-weight: var(--font-weight-black);
  border-radius: var(--common-r01);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
.c-btn01.center {
  margin: 0 auto;
}
.c-btn01:hover {
  color: var(--color02);
  background-color: #fff;
}
.c-btn01:hover span[class^="icon-"]::before {
  background-color: var(--color02);
}
.c-btn01[data-color="sc"] {
  color: #fff;
  background-color: ar(--color-secondary);
  border-color: ar(--color-secondary);
}
.c-btn01[data-color="sc"]:hover {
  color: ar(--color-secondary);
  background-color: #fff;
}
.c-btn01[data-color="sc"]:hover span[class^="icon-"]::before {
  background-color: var(--color-secondary);
}
.c-btn01[data-color="pr"] {
  color: #fff;
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.c-btn01[data-color="pr"]:hover {
  color: var(--color-primary);
  background-color: #fff;
}
.c-btn01[data-color="pr"]:hover span[class^="icon-"]::before {
  background-color: var(--color-primary);
}
.c-btn01 span {
  position: relative;
  display: inline-block;
  padding-right: 1.5em;
}
.c-btn01 span.icon-arrow::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  -webkit-mask-image: url(../img/common/icon_arrow.svg);
  mask-image: url(../img/common/icon_arrow.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-footer);
}
.c-btn01 span.icon-camera::before {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 1em;
  height: 1em;
  display: block;
  -webkit-mask-image: url(../img/common/icon_camera.svg);
  mask-image: url(../img/common/icon_camera.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-footer);
}
.c-btn01:disabled {
  background-color: var(--color-formitem);
  border: 1px solid var(--color-formitem);
  cursor: default;
}
.c-btn01:disabled:hover {
  color: #fff;
  background-color: var(--color-formitem);
}

.c-btn-link01 {
  color: inherit;
  font-size: 16px;
  font-family: var(--font-langJa);
  font-weight: 700;
  background: transparent;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: underline;
}

.c-flow > dt {
  padding-left: 1em;
  text-indent: -1em;
}
.c-flow * + dt {
  padding-left: 1em;
  text-indent: -1em;
}
.c-flow > dd {
  margin-top: 0.5em;
}

.c-hero img {
  width: 100%;
  height: auto;
}

.c-sub-title {
  padding: 1em 1em 0;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: var(--color-primary);
}

/*******************************
* footer
******************************/
.l-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 5px 0;
  width: 100%;
  max-width: var(--sp-width-px);
  height: var(--footer-height-px);
  background-color: var(--color-footer-bg);
  color: var(--color-footer);
  z-index: 100;
}
@media (min-width: 769px) {
  .l-footer {
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-nav {
  margin: 0 auto;
}

.footer-navlist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.footer-nav-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: inherit;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.footer-nav-link .text {
  position: relative;
}
.footer-nav-link .text::before {
  margin: 0 auto 0;
  content: "";
  width: 2.5em;
  height: 2.5em;
  display: block;
  -webkit-mask-image: url(../img/common/icon_home.svg);
  mask-image: url(../img/common/icon_home.svg);
  -webkit-mask-size: 80%;
  mask-size: 80%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--color-footer);
}
.footer-nav-link .text.icon-present::before {
  -webkit-mask-image: url(../img/common/icon_present.svg);
  mask-image: url(../img/common/icon_present.svg);
}
.footer-nav-link .text.icon-map::before {
  -webkit-mask-image: url(../img/common/icon_map.svg);
  mask-image: url(../img/common/icon_map.svg);
}
.footer-nav-link .text.icon-danger::before {
  -webkit-mask-image: url(../img/common/icon_danger.svg);
  mask-image: url(../img/common/icon_danger.svg);
}

/**********************
* lang
*************************/
.lang-select-contents .l-inner {
  padding: 40px 0;
}

/**********************
* top
*************************/
.mv img {
  width: 100%;
  height: auto;
}

.sec-frame + .sec-frame {
  margin-top: 20px;
}

.text-lead {
  text-align: center;
  font-size: 18px;
  font-weight: var(--font-weight-black);
  line-height: 1.75;
}

* + .text-lead {
  margin-top: 1.5em;
}

.list-checkpoint {
  margin: 10px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  counter-reset: number 0;
}
.list-checkpoint li {
  position: relative;
  font-size: 18px;
  font-weight: var(--font-weight-black);
  line-height: 1.72;
}
.list-checkpoint li::before {
  counter-increment: number 1;
  content: counter(number) " ";
  margin-right: 0.5em;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #fff;
  background-color: var(--color-primary);
  display: inline-block;
  width: 1.75em;
  height: 1.75em;
  line-height: 1.75em;
  border-radius: 50%;
}

.register {
  position: relative;
  padding: 20px 3.5% 25px;
  border: 3px solid var(--color-secondary);
}

.register-title {
  position: absolute;
  left: 50%;
  top: -1em;
  transform: translateX(-50%);
  display: inline-block;
  padding: 0.25em 1em;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background-color: var(--color-secondary);
  color: #fff;
  border-radius: var(--common-r01);
}

.register-form > dt {
  color: var(--color01);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.register-form > dt .text {
  position: relative;
  display: inline-block;
}
.register-form > dt .text.small {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.register-form > dt .label.is-required {
  margin-right: 1em;
  font-size: 80%;
  display: inline-block;
  padding: 0.1em 1em;
  color: #fff;
  background-color: var(--color-required);
}
.register-form > dt .label.is-optional {
  margin-right: 1em;
  font-size: 80%;
  display: inline-block;
  padding: 0.1em 1em;
  color: #fff;
  background-color: var(--color-optional);
}
.register-form > dd {
  padding: 4% 0;
}
.register-form .text-terms {
  font-size: 15px;
}

.form-agree__check {
  font-size: 15px;
  font-weight: 700;
}

.text-copy {
  padding: 15px 4% 0;
  padding-bottom: calc((var(--footer-height) + 20) * 1px);
  color: var(--color-footer);
  background: var(--color-footer-bg);
  font-size: 10px;
  font-weight: 500;
  font-family: "Nunito Sans", sans-serif;
}

main.top .text-copy,
main.qr .text-copy {
  padding: 15px 4% 10px;
}

.text-small-caution {
  position: relative;
  margin-top: auto;
  padding: 15px 4%;
  font-size: 10px;
  font-weight: 500;
}

/*******************************
* form
******************************/
input,
textarea,
select {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

.c-form-text {
  height: 40px;
  width: 100%;
  padding: 0 16px;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 0 1px var(--color-formitem) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 1px var(--color-primary) inset;
}
.c-form-text.-half {
  width: 50%;
}

.c-form-checkbox:not(.row) label,
.c-form-radio:not(.row) label {
  display: flex;
}
.c-form-checkbox:not(.row) label .c-form-check-text,
.c-form-radio:not(.row) label .c-form-check-text {
  width: calc(100% - 1.25em);
}
.c-form-checkbox:not(.row) label .c-form-checkbox input[type="checkbox"],
.c-form-checkbox:not(.row) label .c-form-radio input[type="radio"],
.c-form-radio:not(.row) label .c-form-checkbox input[type="checkbox"],
.c-form-radio:not(.row) label .c-form-radio input[type="radio"] {
  flex-shrink: 0;
}

.c-form-checkbox input[type="checkbox"],
.c-form-radio input[type="radio"] {
  position: relative;
  cursor: pointer;
  margin: 0;
  width: 1.25em;
  height: 1.25em;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  text-align: center;
  border: none;
  flex-shrink: 0;
}

.c-form-checkbox input[type="checkbox"]::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 100%;
}
.c-form-checkbox input[type="checkbox"]::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 0.5em;
  height: 0.5em;
  border: none;
  background-color: var(--color-primary);
  opacity: 0;
}

.c-form-radio input[type="radio"]::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: 2px solid var(--color-primary);
  border-radius: 100%;
}
.c-form-radio input[type="radio"]::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--color-primary);
  opacity: 0;
}

.c-form-checkbox-text,
.c-form-radiobox-text {
  margin-left: 0.5em;
}

.c-form-checkbox input[type="checkbox"]:checked::after,
.c-form-radio input[type="radio"]:checked::after {
  opacity: 1;
}

.c-form-checkbox input:focus,
.c-form-checkbox input:focus-visible {
  border: 1px solid var(--color-primary);
  border-radius: 100%;
}

.c-form-radio input:focus,
.c-form-radio input:focus-visible {
  border: 1px solid var(--color-primary);
  border-radius: 100%;
}

.c-form-check-text {
  margin-left: 0.25em;
}

.c-form-select {
  position: relative;
}
.c-form-select:before {
  content: "▼";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 0;
  width: 38px;
  height: 38px;
  border-left: 1px solid var(--color-formitem);
  font-size: 10px;
  color: var(--color-formitem);
  transform: translateY(-50%);
  margin: auto;
  pointer-events: none;
}
.c-form-select select {
  height: 40px;
  width: 100%;
  padding: 0 8px;
  border-radius: 0;
  border: none;
  color: var(--text-black);
  background-color: #fff;
  box-shadow: 0 0 0 1px var(--color-formitem) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}
.c-form-select select::-ms-expand {
  display: none;
}
.c-form-select select select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--color-primary) inset;
}

.c-form-textarea {
  display: block;
  width: 100%;
  height: 100%;
  padding: 4px 16px;
  border-radius: 0;
  border: none;
  box-shadow: 0 0 0 1px var(--color-formitem) inset;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  resize: vertical;
}
.c-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px var(--color-primary) inset;
}

.c-form-error {
  color: var(--color-danger);
  font-size: 15px;
}

button[type="button"],
button[type="submit"],
input[type="button"],
input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
}

/*******************************
* toast
******************************/
/* 基本のトーストスタイル */
.c-toast-message {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 10px;
  border-radius: 5px;
  font-size: 14px;
  color: #fff;
  z-index: 100;
  transition: opacity 0.5s;
  opacity: 1;
  text-align: center;
  width: 100%;
  max-width: 350px;
  min-width: 250px;
  /* フェードアウト */
}
.c-toast-message .is-fade-out {
  opacity: 0;
}

/* トーストの種類 */
.c-toast-info {
  background-color: var(--color-info);
}

.c-toast-success {
  background-color: var(--color-success);
}

.c-toast-danger {
  background-color: var(--color-danger);
}

/*******************************
* 送信中
********************************/
.send-dialog {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* 半透明 */
  color: #fff;
  font-size: 1.5rem;
  pointer-events: none;
}

.send-dialog.is-show {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
}

/*******************************
* 言語選択
******************************/
.lang-select {
  margin-top: 50px;
}
.lang-select .btn-lang + .btn-lang {
  margin-top: 30px;
}

.btn-lang {
  height: 68px;
}

/*******************************
* 下層共通
******************************/
.c-page-ttl {
  padding-top: 8%;
  margin: 0 auto;
  width: 81.3333333333%;
}
.c-page-ttl + .c-frame {
  margin-top: 10%;
}

.text-no {
  margin-top: 20px;
  padding-top: 10px;
  font-size: 11px;
  font-weight: var(--font-weight-black);
  line-height: 1.36;
  border-top: 3px solid var(--color-primary);
}

/*******************************
* about
******************************/
* + .about-terms {
  margin-top: 30px;
}

.about-terms {
  font-size: 16px;
  line-height: 1.75;
}
.about-terms dt {
  font-weight: 700;
}
.about-terms dd {
  padding: 0 0 2em;
}

* + .about-terms02 {
  margin-top: 30px;
}

.about-terms02 {
  font-size: 16px;
  line-height: 1.75;
}
.about-terms02 li {
  position: relative;
  padding-left: 1em;
}
.about-terms02 li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.logo-lilian {
  margin: 0 auto 0;
  display: block;
  width: 200px;
}
.logo-lilian:hover {
  opacity: 0.6;
}

/*******************************
* 問題ページ
******************************/
.quest-title {
  position: relative;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.06em;
}
.quest-title span {
  position: relative;
  padding: 0;
  color: var(--color01);
  z-index: 1;
}
.quest-title + * {
  margin-top: 30px;
}

/*******************************
* 正解ページ
******************************/
/*******************************
* アンケートフォーム
******************************/
.enquete-form dt {
  font-size: 15px;
  font-weight: var(--font-weight-black);
}
.enquete-form dd {
  padding: 10px 0 30px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.84;
}

.enquete-form-title {
  font-size: 17px;
  font-weight: var(--font-weight-black);
}

/*******************************
* カメラ起動
******************************/
.qr-camera-wrap {
  text-align: center;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 400px; /* 任意で制限 */
  margin: 0 auto;
  position: relative;
}
.qr-camera-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
}

/*******************************
* スタンプ画面
******************************/
.btn-read-wrap {
  display: none;
}
.btn-read-wrap.is-show {
  display: block;
}

.btn-complete-wrap {
  display: none;
}
.btn-complete-wrap.is-show {
  display: block;
}

.stamp-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.stamp-list.--col02 {
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
  width: 90%;
}

.stamp-item {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
}

/*☆スタンプデータ*/
.stamp-item {
  position: relative;
  background: url(../img/stamp/stamp01_off.jpg) no-repeat center/contain;
}
.stamp-item[data-status="on"]:nth-child(1) {
  background-image: url(../img/stamp/stamp01_on.jpg);
}
.stamp-item[data-status="on"]:nth-child(2) {
  background-image: url(../img/stamp/stamp02_on.jpg);
}
.stamp-item[data-status="on"]:nth-child(3) {
  background-image: url(../img/stamp/stamp03_on.jpg);
}
.stamp-item[data-status="on"]:nth-child(4) {
  background-image: url(../img/stamp/stamp04_on.jpg);
}
.stamp-item[data-status="on"]:nth-child(5) {
  background-image: url(../img/stamp/stamp05_on.jpg);
}
.stamp-item[data-status="on"]:nth-child(6) {
  background-image: url(../img/stamp/stamp06_on.jpg);
}
.stamp-item:nth-child(1) {
  background-image: url(../img/stamp/stamp01_off.jpg);
}
.stamp-item:nth-child(2) {
  background-image: url(../img/stamp/stamp02_off.jpg);
}
.stamp-item:nth-child(3) {
  background-image: url(../img/stamp/stamp03_off.jpg);
}
.stamp-item:nth-child(4) {
  background-image: url(../img/stamp/stamp04_off.jpg);
}
.stamp-item:nth-child(5) {
  background-image: url(../img/stamp/stamp05_off.jpg);
}
.stamp-item:nth-child(6) {
  background-image: url(../img/stamp/stamp06_off.jpg);
}

.stamp-text {
  position: relative;
  display: none;
}

/*******************
* modal
*******************/
#modal-1 {
  display: none;
}

#modal-1.is-open {
  display: block;
}

.modal {
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir,
    helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #fff;
  padding: 30px;
  margin-right: 20px;
  margin-left: 20px;
  max-width: 640px;
  max-height: 100vh;
  width: 100%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: var(--color-secondary);
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  font-size: 20px;
  font-family: var(--font-langEn);
}

.modal__header .modal__close:before {
  content: "✕";
}

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal__btn {
  font-size: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: #1b95e0;
  color: #fff;
  border-radius: 4px;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  width: 100%;
  max-width: 320px;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: transform 0.25s ease-out;
}

.modal__btn:focus,
.modal__btn:hover {
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}

/*******************
* Demo Animation Style
*******************/
@-webkit-keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(10%);
  }
  to {
    transform: translateY(0);
  }
}
@-webkit-keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  -webkit-animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  -webkit-animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  -webkit-animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  -webkit-animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/************
* 特典ページ
************/
.complete-page-wrap {
  display: none;
}
.complete-page-wrap.is-wating {
  display: block;
}
.complete-page-wrap.is-wating .status-wating {
  display: block;
}
.complete-page-wrap.is-wating .status-answered {
  display: none;
}
.complete-page-wrap.is-wating .status-received {
  display: none;
}
.complete-page-wrap.is-answered {
  display: block;
}
.complete-page-wrap.is-answered .status-wating {
  display: none;
}
.complete-page-wrap.is-answered .status-answered {
  display: block;
}
.complete-page-wrap.is-answered .status-received {
  display: none;
}
.complete-page-wrap.is-received {
  display: block;
}
.complete-page-wrap.is-received .status-wating {
  display: none;
}
.complete-page-wrap.is-received .status-answered {
  display: none;
}
.complete-page-wrap.is-received .status-received {
  display: block;
}

.complete-present-img {
  margin: 30px auto 0;
  max-width: 50%;
}

.text-staff-only {
  margin-top: 25vh;
  position: relative;
  color: #00449e;
  text-align: center;
}
.text-staff-only::before,
.text-staff-only ::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  border-bottom: 2px dotted #00449e;
}
