@charset "UTF-8";
/*-----------------------------------------------------------------------------
初期化
-------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  transition: all 0.3s ease-in;
}

img {
  vertical-align: bottom;
}

h1, h2, h3, h4, h5, h6, figure, p, dl, dt, dd {
  padding: 0;
  margin: 0;
}

.none {
  display: none;
}

html, body {
  scroll-behavior: smooth;
}

/*-----------------------------------------------------------------------------
break point
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
PC/SP
-------------------------------------------------------------------------------*/
@media screen and (min-width: 817px) {
  .pc-only {
    display: block;
  }
  .sp-only {
    display: none;
  }
}
@media screen and (max-width: 816px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/*-----------------------------------------------------------------------------
font
-------------------------------------------------------------------------------*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.8;
  width: 100%;
}
@media screen and (max-width: 816px) {
  body {
    height: 100%;
    font-size: 4vw;
    width: 100%;
  }
}

.f-kaisei {
  font-family: "Kaisei Opti", serif;
  font-weight: 400;
  font-style: normal;
}

/*-----------------------------------------------------------------------------
display
-------------------------------------------------------------------------------*/
.dflex {
  display: flex;
}

span.dblock {
  display: block;
}

/*-----------------------------------------------------------------------------
colors
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
テキスト
-------------------------------------------------------------------------------*/
.txt-center {
  text-align: center;
}

.txt-white {
  color: #fff;
}

.txt-blue {
  color: #0B367C;
}

.txt-primary {
  color: #EB5505;
}

.txt-bold {
  font-weight: 700;
}

.txt-dotted-bottom-white {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-color: #fff;
  text-decoration-thickness: 0.3125rem; /* 17.857% */
  text-underline-offset: 0.5rem; /* 28.571% */
  text-underline-position: from-font;
}
@media screen and (max-width: 816px) {
  .txt-dotted-bottom-white {
    text-decoration-thickness: 0.8vw;
    text-underline-offset: 1.5vw;
  }
}

/*-----------------------------------------------------------------------------
背景
-------------------------------------------------------------------------------*/
.bg-white {
  background: #fff;
}

.bg-orange {
  background: var(--grd, linear-gradient(170deg, #EA5904 0%, #E83B0A 100%));
}

/*-----------------------------------------------------------------------------
リンク
-------------------------------------------------------------------------------*/
@media screen and (min-width: 817px) {
  .link-o a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 817px) {
  .link a:hover {
    text-decoration: underline;
  }
}

/*-----------------------------------------------------------------------------
ドット線
-------------------------------------------------------------------------------*/
.dotted_line {
  line-height: 1;
  background: url("../img/border_dot.webp") repeat-x top left/auto 0.75rem;
}
@media screen and (max-width: 816px) {
  .dotted_line {
    background-size: auto 2vw;
  }
}

.dotted_line-white {
  background: url("../img/border_dot_white.webp") repeat-x top left/auto 0.75rem;
}
@media screen and (max-width: 816px) {
  .dotted_line-white {
    background-size: auto 2vw;
  }
}

.dotted_line-color {
  background: url("../img/border_dot_color.webp") repeat-x top left/auto 0.75rem;
}
@media screen and (max-width: 816px) {
  .dotted_line-color {
    background-size: auto 2vw;
  }
}

/*-----------------------------------------------------------------------------
参加方法
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
カテゴリから探す
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
エリアから探す
-------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------
SNS
-------------------------------------------------------------------------------*/
.sec-share {
  margin-top: 3.75rem;
}
@media screen and (max-width: 816px) {
  .sec-share {
    margin-top: 13vw;
  }
}
.sec-share .p-share__buttons {
  gap: 0.8125rem;
  justify-content: center;
}
@media screen and (max-width: 816px) {
  .sec-share .p-share__buttons {
    gap: 2vw;
  }
}
.sec-share .p-share__buttons li a {
  background-color: #fff;
  width: 4.375rem;
  height: 4.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.5rem;
}
@media screen and (max-width: 816px) {
  .sec-share .p-share__buttons li a {
    width: 20vw;
    height: 20vw;
  }
  .sec-share .p-share__buttons li a img {
    height: 7vw;
  }
}
@media screen and (min-width: 817px) {
  .sec-share .p-share__buttons a:hover {
    opacity: 0.7;
    cursor: pointer;
  }
}

/*-----------------------------------------------------------------------------
画像
-------------------------------------------------------------------------------*/
img {
  display: block;
  vertical-align: bottom;
}

.img-center {
  display: block;
  margin: 0 auto;
}

.w100 {
  width: 100%;
}

/*-----------------------------------------------------------------------------
枠
-------------------------------------------------------------------------------*/
.wrapper {
  position: relative;
  overflow: hidden;
  background: url("../img/bg_wrapper.webp") repeat top center/1440px auto;
}
.wrapper .inner {
  width: 100%;
  max-width: 66.5rem;
  margin: 0 auto;
  position: relative;
  padding: 0 1.25rem;
}
@media screen and (max-width: 816px) {
  .wrapper .inner {
    padding: 0 4vw;
  }
}
.wrapper .l-main {
  background: #fff url("../img/bg_main.webp") repeat top center/800px auto;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
  max-width: 50rem;
  margin-inline: auto;
}
@media screen and (max-width: 816px) {
  .wrapper .l-main {
    background: unset;
  }
}

/*-----------------------------------------------------------------------------
a tag
-------------------------------------------------------------------------------*/
a {
  transition: all 0.3s ease-in;
}

/*-------------------------------------------------------------
ふわっと表示
-------------------------------------------------------------*/
.fadein {
  opacity: 0;
  transform: translateY(30px);
}

/*-----------------------------------------------------------------------------
パンくずリスト
-------------------------------------------------------------------------------*/
.breadlist {
  border-top: none;
  padding: 0 4px;
  border-bottom: 1px solid #cccccc;
}
.breadlist .inner {
  width: 100%;
  margin: 0 auto;
  max-width: unset;
}
@media screen and (max-width: 816px) {
  .breadlist .inner {
    max-width: unset;
    padding: 1.2vw;
  }
}
@media screen and (max-width: 816px) {
  .breadlist {
    padding: 0.25rem 0.375rem 0.25rem;
    width: 100%;
  }
}
.breadlist .list {
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 816px) {
  .breadlist .list {
    padding: 0;
    flex-wrap: nowrap;
    gap: 4px 0;
  }
}
.breadlist .list .item {
  font-size: 0.75rem;
  letter-spacing: 0.045rem;
  color: #ccc;
}
.breadlist .list .item.myfont {
  white-space: nowrap;
}
@media screen and (max-width: 816px) {
  .breadlist .list .item {
    font-size: 2.7vw;
    line-height: 1.3;
  }
  .breadlist .list .item.fontnormal {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.breadlist .list .item:not(:last-of-type):after {
  content: "";
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  background: url("../img/icon_arrow_breadlist.svg") no-repeat top center;
  background-size: contain;
  margin-left: 4px;
  position: relative;
  top: 0rem;
}
@media screen and (max-width: 816px) {
  .breadlist .list .item:not(:last-of-type):after {
    vertical-align: -0.2vw;
    width: 2.7vw;
    height: 2.7vw;
  }
}
.breadlist .list .item a {
  font-size: 0.625rem;
  color: #ccc;
}
@media screen and (max-width: 816px) {
  .breadlist .list .item a {
    font-weight: 700;
    font-size: 2.7vw;
  }
}
.breadlist .list .item a:hover {
  text-decoration: underline;
}

/*-----------------------------------------------------------------------------
ヘッダー
-------------------------------------------------------------------------------*/
.header {
  height: 3.375rem;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 816px) {
  .header {
    height: unset;
    padding: 3vw 6vw;
    display: block;
  }
  .header img {
    width: 100%;
    display: block;
    margin-inline: auto;
  }
}

/*-----------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------*/
.footer {
  max-width: 50rem;
  margin-inline: auto;
  background-color: #333;
  line-height: 4.1875rem;
  padding: 0 1.25rem;
  position: relative;
}
@media screen and (max-width: 816px) {
  .footer {
    line-height: 1.3;
    padding: 3vw 6vw;
  }
}
.footer small {
  font-size: 0.75rem;
  color: #fff;
}
@media screen and (max-width: 816px) {
  .footer small {
    line-height: 1.3;
    font-size: 3.5;
  }
}
.footer .tothetop {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.3125rem;
  height: 4.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 816px) {
  .footer .tothetop {
    height: 17vw;
    width: 17vw;
  }
}
.footer .tothetop a {
  background: var(--grd_blue, linear-gradient(15deg, #0B367C 30.31%, #4470AC 101.05%));
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.2;
  width: 100%;
  height: 100%;
  text-align: center;
}
@media screen and (max-width: 816px) {
  .footer .tothetop a {
    font-size: 3.3vw;
    letter-spacing: 1.2px;
    line-height: 1.1;
  }
}
.footer .tothetop a img {
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 816px) {
  .footer .tothetop a img {
    width: 4vw;
  }
}
@media screen and (min-width: 817px) {
  .footer .tothetop a:hover img {
    transform: translateY(-2px);
  }
}
.footer .tothetop a .dflex {
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

/*-----------------------------------------------------------------------------
KV
-------------------------------------------------------------------------------*/
.kv {
  height: 45.75rem;
  overflow: hidden;
  background: url("../img/bg_kv.webp") no-repeat bottom center/contain;
}
@media screen and (max-width: 816px) {
  .kv {
    height: 141vw;
    background: url("../img/bg_kv@sp.webp") no-repeat top 3vw center/100vw auto;
    overflow: unset;
    margin-bottom: 15vw;
  }
}
.kv .kv_inner {
  height: 100%;
  position: relative;
}
.kv .kv_inner .hs {
  position: relative;
  top: -0.5rem;
}
@media screen and (max-width: 816px) {
  .kv .kv_inner .hs {
    top: 2vw;
  }
  .kv .kv_inner .hs img {
    width: 90%;
  }
}
.kv .kv_inner .hs .kv_subttl {
  position: relative;
  top: -2.5rem;
}
@media screen and (max-width: 816px) {
  .kv .kv_inner .hs .kv_subttl {
    top: 1vw;
  }
}
.kv .kv_inner .kv_period {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 816px) {
  .kv .kv_inner .kv_period {
    bottom: -18vw;
  }
}

/*-----------------------------------------------------------------------------
期間限定謎解きイベントで家族の時間をもっと楽しもう！
-------------------------------------------------------------------------------*/
.sec-eventinfo {
  position: relative;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo {
    padding-bottom: 11vw !important;
  }
}
.sec-eventinfo .icon {
  position: absolute;
  top: 1.75rem;
  right: 2.5rem;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .icon {
    top: 9vw;
    right: 6vw;
  }
  .sec-eventinfo .icon img {
    width: 24vw;
  }
}
.sec-eventinfo .dotted_line-upper {
  width: 84%;
  margin-bottom: 2.875rem;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .dotted_line-upper {
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .dotted_line-bottom {
    width: 83%;
  }
}
.sec-eventinfo .sec_ttl {
  font-size: 1.75rem;
  line-height: 180%; /* 50.4px */
  letter-spacing: 0.56px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-color: #EB5505;
  text-decoration-thickness: 5px; /* 17.857% */
  text-underline-offset: 8px; /* 28.571% */
  text-underline-position: from-font;
  margin-bottom: 2.0625rem;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .sec_ttl {
    font-size: 6vw;
    line-height: 2;
    text-decoration-thickness: 1vw; /* 17.857% */
    text-underline-offset: 1.5vw; /* 28.571% */
    margin-bottom: 5vw;
  }
}
.sec-eventinfo .lead {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.7px;
  margin-bottom: 1.9375rem;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .lead {
    font-size: 3.8vw;
  }
}
.sec-eventinfo .lead span {
  font-size: 0.75rem;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .lead span {
    font-size: 3vw;
    line-height: 1.8;
    display: block;
    margin-top: 1.5vw;
  }
}
.sec-eventinfo .box .box_header {
  position: relative;
  z-index: 10;
  margin-bottom: 1.9375rem;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .box .box_header {
    margin-bottom: 5vw;
  }
}
.sec-eventinfo .box .box_header .dotted_line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.875rem;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .box .box_header .dotted_line {
    top: 6vw;
    background-size: auto 2.6vw;
    width: 99%;
  }
}
.sec-eventinfo .box .box_header .ttl {
  background: url("../img/bg_ribbon.svg") no-repeat top/auto 40.7px;
  line-height: 2.54375rem;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .box .box_header .ttl {
    height: 15vw;
    padding-top: 1vw;
    line-height: 1.3;
    font-size: 5vw;
    background: url("../img/bg_ribbon@sp.svg") no-repeat top/75.5vw auto;
  }
}
.sec-eventinfo .box .bnrs {
  gap: 2.5rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 817px) {
  .sec-eventinfo .box .bnrs {
    justify-content: space-between;
  }
  .sec-eventinfo .box .bnrs .item {
    width: 48%;
  }
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .box .bnrs {
    flex-direction: column;
    gap: 8vw;
    margin-bottom: 15vw;
  }
}
.sec-eventinfo .box .bnrs .ttl {
  color: #EB5505;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.36px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-color: #0B367C;
  text-decoration-thickness: 3.5px; /* 19.444% */
  text-underline-offset: 6px; /* 33.333% */
  text-underline-position: from-font;
  margin-bottom: 1rem;
}
@media screen and (max-width: 816px) {
  .sec-eventinfo .box .bnrs .ttl {
    font-size: 4.6vw;
    text-decoration-thickness: 1vw;
    text-underline-offset: 1.5vw;
    margin-bottom: 6vw;
  }
}

/*-----------------------------------------------------------------------------
共通パーツ
-------------------------------------------------------------------------------*/
.sec {
  padding: 3.75rem 2.75rem;
  position: relative;
}
@media screen and (max-width: 816px) {
  .sec {
    padding: 15vw 5vw;
  }
}

.bbdo {
  padding-bottom: 0.5rem;
  background: url("../img/border_bottom_dotted_orange.png") repeat-x bottom left/auto 0.3125rem;
}
@media screen and (max-width: 816px) {
  .bbdo {
    background-size: auto 0.8vw;
  }
}

.btn-blue a {
  background: var(--grd_blue, linear-gradient(15deg, #0B367C 30.31%, #4470AC 101.05%));
  display: block;
  text-align: center;
  color: #fff;
  width: 100%;
  position: relative;
  line-height: 3.125rem;
  font-size: 1.125rem;
  overflow: hidden;
}
.btn-blue a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(15deg, #4470AC 0%, #0B367C 70.73%);
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 0;
}
.btn-blue a > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 817px) {
  .btn-blue a:hover::before {
    opacity: 1;
  }
}
.btn-blue a .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 0.75rem;
  transition: all 0.3s ease-in;
}
.btn-blue a .icon img {
  transition: all 0.3s ease-in;
  width: 100%;
}

/*-----------------------------------------------------------------------------
WEB版 auからの挑戦状!
-------------------------------------------------------------------------------*/
.sec-facility {
  background: var(--grd_blue, linear-gradient(15deg, #0B367C 30.31%, #4470AC 101.05%));
  mix-blend-mode: multiply;
  position: relative;
  padding-bottom: 3.5rem;
}
.sec-facility > .note {
  position: absolute;
  left: 0.5rem;
  bottom: 0.4375rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 150%; /* 18px */
  letter-spacing: 0.6px;
}
@media screen and (max-width: 816px) {
  .sec-facility > .note {
    font-size: 2.6vw;
    left: 2vw;
    bottom: 2vw;
  }
}
.sec-facility:after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  background: url("../img/icon_sword.svg") no-repeat top center/contain;
  position: absolute;
  top: -1rem;
  right: 2.75rem;
}
@media screen and (max-width: 816px) {
  .sec-facility:after {
    top: -20vw;
    right: 4vw;
    width: 27vw;
    height: 27vw;
  }
}
.sec-facility .sec_ttl {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 816px) {
  .sec-facility .sec_ttl {
    margin-bottom: 5vw;
  }
  .sec-facility .sec_ttl img {
    width: 100%;
  }
}
.sec-facility .lead {
  line-height: 1.8; /* 37.8px */
  letter-spacing: 0.42px;
  font-size: 1.3125rem;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-color: #FFF;
  text-decoration-thickness: 5px; /* 23.81% */
  text-underline-offset: 8px; /* 38.095% */
  text-underline-position: from-font;
  margin-bottom: 3.3125rem;
}
@media screen and (max-width: 816px) {
  .sec-facility .lead {
    font-size: 4.5vw;
    text-decoration-thickness: 0.8vw;
    text-underline-offset: 1.5vw;
    text-underline-position: from-font;
    margin-bottom: 8vw;
    line-height: 1.9;
  }
}
.sec-facility .box {
  position: relative;
}
.sec-facility .box:before, .sec-facility .box:after {
  content: "";
  display: block;
  position: absolute;
  height: 0.1875rem;
  width: 100%;
  max-width: 37.625rem;
  background-color: #F5CC2A;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 816px) {
  .sec-facility .box:before, .sec-facility .box:after {
    width: 63vw;
    height: 0.6vw;
  }
}
.sec-facility .box:before {
  top: 0;
}
.sec-facility .box:after {
  bottom: 92px;
}
@media screen and (max-width: 816px) {
  .sec-facility .box:after {
    bottom: 20.5vw;
  }
}
.sec-facility .upper, .sec-facility .bottom {
  position: relative;
  font-size: 0;
}
.sec-facility .upper:before, .sec-facility .upper:after, .sec-facility .bottom:before, .sec-facility .bottom:after {
  content: "";
  display: block;
  width: 4rem;
  height: 3.875rem;
  position: absolute;
}
@media screen and (max-width: 816px) {
  .sec-facility .upper:before, .sec-facility .upper:after, .sec-facility .bottom:before, .sec-facility .bottom:after {
    width: 12.5vw;
    height: 12.5vw;
  }
}
.sec-facility .upper:before {
  top: -0.75rem;
  left: -1.0625rem;
  background: url("../img/icon_left_top.svg") no-repeat top center/contain;
}
@media screen and (max-width: 816px) {
  .sec-facility .upper:before {
    top: -2.5vw;
    left: -3vw;
  }
}
.sec-facility .upper:after {
  top: -0.75rem;
  right: -1.0625rem;
  background: url("../img/icon_right_top.svg") no-repeat top center/contain;
}
@media screen and (max-width: 816px) {
  .sec-facility .upper:after {
    top: -2.5vw;
    right: -3vw;
  }
}
.sec-facility .bottom:before {
  bottom: 5rem;
  left: -1.0625rem;
  background: url("../img/icon_left_bottom.svg") no-repeat bottom center/contain;
}
@media screen and (max-width: 816px) {
  .sec-facility .bottom:before {
    bottom: 18vw;
    left: -3vw;
  }
}
.sec-facility .bottom:after {
  bottom: 5rem;
  right: -1.0625rem;
  background: url("../img/icon_right_bottom.svg") no-repeat bottom center/contain;
}
@media screen and (max-width: 816px) {
  .sec-facility .bottom:after {
    bottom: 18vw;
    right: -3vw;
  }
}
.sec-facility .wall {
  width: 100%;
  height: 100%;
  position: relative;
}
.sec-facility .wall:before, .sec-facility .wall:after {
  content: "";
  display: block;
  width: 0.1875rem;
  height: 68%;
  position: absolute;
  top: 3.625rem;
  background-color: #F5CC2A;
}
@media screen and (max-width: 816px) {
  .sec-facility .wall:before, .sec-facility .wall:after {
    height: 112vw;
    top: 11.5vw;
  }
}
.sec-facility .wall:before {
  left: 0rem;
}
.sec-facility .wall:after {
  right: 0;
}
.sec-facility .facility-swiper {
  padding: 2.5rem 2.5rem 8.75rem;
  overflow-x: hidden;
}
@media screen and (max-width: 816px) {
  .sec-facility .facility-swiper {
    padding: 6vw 6vw 27vw;
  }
}
.sec-facility .facility-swiper .swiper-wrapper {
  align-items: stretch;
  display: flex;
}
.sec-facility .swiper-button-next,
.sec-facility .swiper-button-prev {
  top: unset;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 816px) {
  .sec-facility .swiper-button-next,
  .sec-facility .swiper-button-prev {
    width: 13vw;
    height: 13vw;
  }
}
@media screen and (min-width: 817px) {
  .sec-facility .swiper-button-next:hover,
  .sec-facility .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.sec-facility .swiper-button-next svg,
.sec-facility .swiper-button-prev svg {
  display: none;
}
.sec-facility .swiper-button-prev {
  background: #EDD8BE url("../img/icon_arrow_prev.svg") no-repeat center center/14px auto;
  margin-left: -50px;
}
@media screen and (max-width: 816px) {
  .sec-facility .swiper-button-prev {
    margin-left: -30vw;
  }
}
.sec-facility .swiper-button-next {
  background: #EDD8BE url("../img/icon_arrow_next.svg") no-repeat center center/14px auto;
  margin-left: 50px;
}
@media screen and (max-width: 816px) {
  .sec-facility .swiper-button-next {
    margin-left: 30vw;
  }
}
.sec-facility .swiper-pagination-fraction {
  position: absolute;
  bottom: 2vw;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  color: #fff;
  font-size: 5.5vw;
  font-weight: 500;
  z-index: 10;
}
@media screen and (min-width: 817px) {
  .sec-facility .swiper-pagination-fraction {
    display: none;
  }
}
.sec-facility .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}
.sec-facility .swiper-slide .img {
  position: relative;
}
.sec-facility .swiper-slide .img .label {
  position: absolute;
  top: 0.25rem;
  right: 0.625rem;
  background: url("../img/icon_shield.svg") no-repeat center center/contain;
  width: 3.4375rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}
.sec-facility .swiper-slide .img .label span {
  position: relative;
  top: -0.125rem;
}
.sec-facility .swiper-slide > .dflex {
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.sec-facility .swiper-slide > .dflex > .dflex {
  flex-direction: column-reverse;
  gap: 0.75rem;
}
.sec-facility .swiper-slide .ttl {
  font-size: min(1.125rem, 2vw);
}
@media screen and (max-width: 816px) {
  .sec-facility .swiper-slide .ttl {
    font-size: 4.8vw;
    margin-bottom: 2vw;
  }
}
.sec-facility .swiper-slide .txt {
  font-size: min(0.875rem, 1.8vw);
  line-height: 2;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 816px) {
  .sec-facility .swiper-slide .txt {
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
.sec-facility .swiper-slide .txt .stxt {
  font-size: min(0.75rem, 1.5vw);
}
@media screen and (max-width: 816px) {
  .sec-facility .swiper-slide .txt .stxt {
    font-size: 3.5vw;
  }
}
.sec-facility .btn-gold {
  margin-top: auto;
}
.sec-facility .btn-gold a {
  text-align: center;
  background: linear-gradient(90deg, #E0C7AB 0%, #FAE9D0 20%, #DFD0BB 43%, #FAE9D0 71%, #E8E0D1 89%, #FAF5EA 100%);
  color: #0B367C;
  display: block;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sec-facility .btn-gold a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #FAF5EA 0%, #E8E0D1 11%, #FAE9D0 29%, #DFD0BB 57%, #FAE9D0 80%, #E0C7AB 100%);
  opacity: 0;
  transition: opacity 0.3s ease-in;
  z-index: 0;
}
.sec-facility .btn-gold a > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 817px) {
  .sec-facility .btn-gold a:hover::before {
    opacity: 1;
  }
}
.sec-facility .btn-gold a .txt {
  display: block;
  width: 100%;
  font-size: min(1.125rem, 2vw);
  text-align: center;
  line-height: 3.125rem;
  margin-bottom: 0;
}
@media screen and (max-width: 816px) {
  .sec-facility .btn-gold a .txt {
    font-size: 5vw;
    line-height: 14vw;
  }
}
.sec-facility .btn-gold a .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.25rem;
  width: 0.875rem;
  transition: all 0.3s ease-in;
}
.sec-facility .btn-gold a .icon img {
  transition: all 0.3s ease-in;
  width: 100%;
}

/*-----------------------------------------------------------------------------
お子さまのスマホは、使い方に合わせて選べるauがおすすめ
-------------------------------------------------------------------------------*/
.sec-recommend .icon {
  position: absolute;
  right: 2.1875rem;
  top: -0.625rem;
}
@media screen and (max-width: 816px) {
  .sec-recommend .icon {
    right: 3vw;
    top: -7.2vw;
  }
  .sec-recommend .icon img {
    width: 27.5vw;
  }
}
.sec-recommend .sec_ttl {
  margin-bottom: 3.75rem;
  font-size: 1.75rem;
  line-height: 1.8;
  margin-top: 2.875rem;
}
@media screen and (max-width: 816px) {
  .sec-recommend .sec_ttl {
    margin-bottom: 11vw;
    font-size: 6vw;
    margin-top: 7vw;
  }
}
.sec-recommend .bnrs {
  margin-bottom: 3.75rem;
  gap: 2.5rem;
}
@media screen and (min-width: 817px) {
  .sec-recommend .bnrs {
    justify-content: space-between;
  }
  .sec-recommend .bnrs .item {
    width: 48%;
  }
}
@media screen and (max-width: 816px) {
  .sec-recommend .bnrs {
    gap: 8vw;
    flex-direction: column;
    margin-bottom: 15vw;
  }
}
.sec-recommend .bnrs .item .ttl {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
@media screen and (max-width: 816px) {
  .sec-recommend .bnrs .item .ttl {
    font-size: 4.5vw;
    margin-bottom: 5vw;
  }
}
.sec-recommend .dotted_line-top {
  justify-content: space-between;
}
.sec-recommend .dotted_line-top div:first-of-type {
  width: 87%;
}
@media screen and (max-width: 816px) {
  .sec-recommend .dotted_line-top div:first-of-type {
    width: 72%;
  }
}
.sec-recommend .dotted_line-top div:last-of-type {
  width: 5.4%;
  background-position: top left;
}
@media screen and (max-width: 816px) {
  .sec-recommend .dotted_line-top div:last-of-type {
    width: 18%;
  }
}

/*-----------------------------------------------------------------------------
WEB版 auからの挑戦状!
-------------------------------------------------------------------------------*/
.sec-challenge .btn-blue {
  margin-top: 1.875rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .btn-blue {
    margin-top: 5vw;
  }
}
.sec-challenge .sec_ttl {
  margin-bottom: 2.375rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .sec_ttl {
    margin-bottom: 6vw;
  }
  .sec-challenge .sec_ttl img {
    width: 100%;
  }
}
.sec-challenge .box-wrap {
  position: relative;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .box-wrap {
    margin-bottom: 12vw;
  }
}
.sec-challenge .box-wrap .box {
  background: url("../img/bg_paper.svg") no-repeat top center/420px auto;
  padding: 1.25rem 0 3.375rem;
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .box-wrap .box {
    background: url("../img/bg_paper.svg") no-repeat top center/86vw auto;
    padding: 4vw 0 9vw;
    margin-bottom: 0;
  }
}
.sec-challenge .box-wrap .box div {
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #0B367C;
  text-decoration-thickness: 16%;
  text-underline-offset: 30.5%;
  text-underline-position: from-font;
}
.sec-challenge .box-wrap .box .txt {
  line-height: 1.8;
  letter-spacing: 0.42px;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 50.4px */
  letter-spacing: 0.56px;
}
@media screen and (max-width: 816px) {
  .sec-challenge .box-wrap .box .txt {
    font-size: 5.5vw;
    line-height: 1.9;
  }
}
.sec-challenge .box-wrap .box .txt strong {
  color: #EB5505;
}
.sec-challenge .box-wrap .icon {
  position: absolute;
  right: -0.9375rem;
  bottom: -1.875rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .box-wrap .icon {
    right: -5vw;
    bottom: -10vw;
  }
  .sec-challenge .box-wrap .icon img {
    width: 35vw;
  }
}
.sec-challenge .box-wrap .dotted_line {
  width: 85%;
}
@media screen and (max-width: 816px) {
  .sec-challenge .box-wrap .dotted_line {
    width: 72%;
  }
}
.sec-challenge .box-wrap .lead {
  font-size: 1.3125rem;
  line-height: 1.6; /* 33.6px */
  letter-spacing: 0.42px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .box-wrap .lead {
    font-size: 4.5vw;
    line-height: 1.6;
    margin-bottom: 15vw;
    letter-spacing: unset;
  }
  .sec-challenge .box-wrap .lead .stxt {
    display: block;
    margin-top: 2vw;
  }
}
.sec-challenge .box-wrap .lead strong {
  font-size: 2.125rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .box-wrap .lead strong {
    font-size: 8vw;
  }
}
.sec-challenge .panels {
  justify-content: space-between;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels {
    flex-direction: column;
    gap: 10vw;
    margin-bottom: 12vw;
  }
}
.sec-challenge .panels > * {
  width: 48%;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels > * {
    width: 100%;
  }
}
.sec-challenge .panels .faq {
  background: var(--grd_blue, linear-gradient(15deg, #0B367C 30.31%, #4470AC 101.05%));
  padding: 0.625rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .faq {
    padding: 2.7vw;
  }
}
.sec-challenge .panels .faq .faq_inner {
  border: 1px solid #fff;
  padding: 1rem 1.375rem 1.375rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .faq .faq_inner {
    padding: 4vw 5vw 5vw;
  }
}
.sec-challenge .panels .faq .txt-white {
  line-height: 1.6;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.21875rem;
  border-bottom: 4px dotted #fff;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .faq .txt-white {
    font-size: 5vw;
    margin-bottom: 5vw;
    padding-bottom: 2vw;
    border-width: 0.8vw;
  }
}
.sec-challenge .panels .terms {
  padding: 0.625rem;
  position: relative;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms {
    padding: 3vw;
  }
}
.sec-challenge .panels .terms:after {
  content: "";
  display: block;
  width: 100%;
  height: 5.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 70%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms:after {
    height: 20vw;
  }
}
.sec-challenge .panels .terms .terms_inner {
  border: 1px solid #0B367C;
  padding: 1rem 1.375rem 1.375rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner {
    padding: 4vw 5vw 5vw;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea {
  width: 100%;
  height: 17.9375rem;
  overflow-y: auto;
  padding: 0 0 1.5rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea {
    height: 82vw;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea::-webkit-scrollbar {
  display: none;
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box {
  font-size: 0.75rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea .box {
    font-size: 3.5vw;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box:not(:last-of-type) {
  margin-bottom: 0.25rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea .box:not(:last-of-type) {
    margin-bottom: 2vw;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box .box_ttl {
  font-size: 1.125rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea .box .box_ttl {
    font-size: 5vw;
    padding-bottom: 2vw;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box p {
  word-break: break-all;
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box ol {
  border-top: 4px dotted #0B367C;
  border-bottom: 4px dotted #0B367C;
  padding: 0.5rem 0;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea .box ol {
    border-width: 0.8vw;
    padding: 3vw 0;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box ol li {
  gap: 0.375rem;
  font-size: 0.875rem;
  align-items: baseline;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea .box ol li {
    gap: 0.7vw;
    font-size: 3.5vw;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box ol li:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea .box ol li:not(:last-of-type) {
    margin-bottom: 2vw;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box ol .number {
  background-color: #E83B0A;
  width: 1.125rem;
  height: 1.125rem;
  line-height: 1.125rem;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea .box ol .number {
    width: 5.2vw;
    height: 5.2vw;
    font-size: 3.5vw;
  }
}
.sec-challenge .panels .terms .terms_inner .scrollarea .box ol .txt {
  width: calc(100% - 1.125rem);
}
@media screen and (max-width: 816px) {
  .sec-challenge .panels .terms .terms_inner .scrollarea .box ol .txt {
    width: 88%;
  }
}

/*-----------------------------------------------------------------------------
モーダル
-------------------------------------------------------------------------------*/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 54, 124, 0.8);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  margin: 0;
  padding: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay .note {
  font-size: 0.75rem;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 19.2px */
  letter-spacing: 0.24px;
}
@media screen and (max-width: 816px) {
  .modal-overlay .note {
    font-size: 3vw;
    margin-top: 1.8vw;
  }
}
.modal-overlay.is-active {
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal-overlay:not(.is-active) {
  display: none;
}
.modal-overlay .m_inner {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.modal-overlay .m_inner .modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  top: 1.25rem;
  right: 1.25rem;
  background-color: unset;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease-in;
  z-index: 10;
  font-size: 1.125rem;
}
@media screen and (max-width: 816px) {
  .modal-overlay .m_inner .modal-close {
    font-size: 4.5vw;
    top: 5vw;
    right: 5vw;
  }
  .modal-overlay .m_inner .modal-close img {
    width: 6vw;
  }
}
.modal-overlay .modal-content {
  position: relative;
  max-width: 44.5rem;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(1);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.modal-overlay .modal-content .modal-body .bg-white {
  padding: 2.875rem 0.625rem 3.75rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 816px) {
  .modal-overlay .modal-content .modal-body .bg-white {
    padding: 10vw 6vw 14vw;
    border-radius: 5vw;
  }
}
.modal-overlay .modal-content .modal-body .txt-hint {
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 50.4px */
  letter-spacing: 0.56px;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  text-decoration-color: #EB5505;
  text-decoration-thickness: 16%; /* 4.48px */
  text-underline-offset: 30.5%; /* 8.54px */
  text-underline-position: from-font;
  margin-bottom: 2.125rem;
}
@media screen and (max-width: 816px) {
  .modal-overlay .modal-content .modal-body .txt-hint {
    font-size: 6vw;
    line-height: 2;
    margin-bottom: 6vw;
  }
}
.modal-overlay .modal-content .modal-body .hiragana {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
  margin-bottom: 2.125rem;
}
@media screen and (max-width: 816px) {
  .modal-overlay .modal-content .modal-body .hiragana {
    font-size: 5vw;
    margin-bottom: 6vw;
  }
}
.modal-overlay .modal-content .modal-body .inputfield {
  width: 29.5rem;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 816px) {
  .modal-overlay .modal-content .modal-body .inputfield {
    width: 100%;
  }
}
.modal-overlay .modal-content .modal-body .inputfield .inputbar {
  width: 100%;
  border: 1px solid #BBB;
  background: #F5F5F5;
  padding: 0.9375rem 6.25rem 0.9375rem 0.9375rem;
  font-size: 1rem;
}
@media screen and (max-width: 816px) {
  .modal-overlay .modal-content .modal-body .inputfield .inputbar {
    padding: 4vw 23vw 4vw 4vw;
  }
}
.modal-overlay .modal-content .modal-body .inputfield .btn-submit {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.875rem;
  width: 5.5rem;
  height: 100%;
  color: #fff;
  border: none;
  background: linear-gradient(15deg, #4470AC 0%, #0B367C 70.73%);
  cursor: pointer;
  transition: all 0.3s ease-in;
}
@media screen and (max-width: 816px) {
  .modal-overlay .modal-content .modal-body .inputfield .btn-submit {
    width: 20vw;
    font-size: 3.5vw;
  }
}
@media screen and (min-width: 817px) {
  .modal-overlay .modal-content .modal-body .inputfield .btn-submit:hover {
    opacity: 0.7;
  }
}

/*-----------------------------------------------------------------------------
下層ページ
-------------------------------------------------------------------------------*/
.l-page {
  min-height: calc(100vh - 54px);
}
@media screen and (max-width: 816px) {
  .l-page {
    min-height: unset;
    height: 94svh;
    overflow: hidden;
  }
}
.l-page .l-page_inner {
  padding: 2.125rem 2.75rem;
  background: url("../img/bg_page.webp") no-repeat bottom center/100% auto;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner {
    background: url("../img/bg_page@sp.webp") no-repeat bottom center/100vw auto;
    height: calc(100vh - 11vw);
    padding: 10vw 6.2vw;
    overflow: hidden;
  }
}
.l-page .l-page_inner .ttl {
  font-size: 8.75rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 140px */
  letter-spacing: 16.8px;
  margin-bottom: 3.875rem;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .ttl {
    font-size: 25vw;
    letter-spacing: 2vw;
    margin-bottom: 14vw;
  }
}
.l-page .l-page_inner .dotted_line-upper {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .dotted_line-upper {
    margin-bottom: 6vw;
  }
}
.l-page .l-page_inner .txt-keyword {
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .txt-keyword {
    margin-bottom: 3vw;
    width: 60%;
  }
}
.l-page .l-page_inner .txt-correct {
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .txt-correct {
    margin-bottom: 10vw;
    position: relative;
    width: 100%;
  }
}
.l-page .l-page_inner .txt-correct span {
  font-size: 6.25rem;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 100px */
  letter-spacing: -4px;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .txt-correct span {
    font-size: 23vw;
    letter-spacing: unset;
    position: absolute;
  }
  .l-page .l-page_inner .txt-correct span:first-of-type {
    left: -14vw;
  }
  .l-page .l-page_inner .txt-correct span:last-of-type {
    right: -14vw;
  }
}
.l-page .l-page_inner .txt-correct strong {
  font-size: 100px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 100px */
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .txt-correct strong {
    font-size: 23vw;
    letter-spacing: unset;
  }
}
.l-page .l-page_inner .dotted_line-bottom {
  margin-bottom: 2.0625rem;
}
.l-page .l-page_inner p.txt-blue {
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 700;
  line-height: 160%; /* 28.8px */
  letter-spacing: 0.9px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner p.txt-blue {
    font-size: 4.7vw;
    letter-spacing: unset;
    line-height: 1.7;
    margin-bottom: 8vw;
  }
}
.l-page .l-page_inner p.txt-wrong {
  font-size: 2.625rem;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 58.8px */
  letter-spacing: 0.84px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner p.txt-wrong {
    font-size: 7vw;
    letter-spacing: unset;
    line-height: 1.7;
    margin-bottom: 6.5vw;
  }
}
.l-page .l-page_inner .img {
  margin-bottom: 2.5rem;
}
.l-page .l-page_inner .btn {
  width: 21rem;
  margin-inline: auto;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .btn {
    width: 100%;
  }
}
.l-page .l-page_inner .btn a {
  font-size: 1.125rem;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .btn a {
    font-size: 5vw;
  }
  .l-page .l-page_inner .btn a .txt img {
    width: 4.5vw;
  }
}
.l-page .l-page_inner .btn a .icon {
  width: 0.875rem;
}
@media screen and (max-width: 816px) {
  .l-page .l-page_inner .btn a .icon {
    width: 3.8vw;
  }
}
.l-page .l-page_inner .btn .dflex {
  justify-content: center;
  align-items: center;
}

.l-worng .l-page_inner {
  padding-top: 2.25rem;
  padding-bottom: 3.75rem;
}
@media screen and (max-width: 816px) {
  .l-worng .l-page_inner {
    padding-top: 8vw;
    padding-bottom: unset;
  }
}
.l-worng .l-page_inner .ttl {
  margin-bottom: 3.0625rem;
}
@media screen and (max-width: 816px) {
  .l-worng .l-page_inner .ttl {
    margin-bottom: 4.4vw;
  }
}

@media screen and (max-width: 816px) {
  .modal-overlay-hint .modal-content .modal-body .bg-white {
    padding: 8vw 6vw;
  }
}
@media screen and (max-width: 816px) {
  .modal-overlay-hint .modal-content .modal-body .txt-hint {
    font-size: 4.7vw;
  }
}
@media screen and (max-width: 816px) {
  .modal-overlay-hint img {
    width: 80%;
  }
}

.link-footer a {
  color: #fff;
  text-decoration: underline;
}
@media screen and (min-width: 817px) {
  .link-footer a:hover {
    text-decoration: none;
  }
}

#btn-kv {
  cursor: pointer;
}/*# sourceMappingURL=style.css.map */