@charset "UTF-8";
/*//////////////////////////////////////////////////////////

------------------------------------------------------------
CSS information
 file name  :  reset.css
 style info :  リセットファイル

//////////////////////////////////////////////////////////*/
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

audio[controls], canvas, video {
  display: inline-block;
  zoom: 1;
}

html {
  overflow-y: scroll;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td, ul {
  margin: 0;
  padding: 0;
}

body, button, input, select, textarea {
  font-size: 100%;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: bold;
}

blockquote {
  margin: 1em 40px;
}

dfn {
  font-style: italic;
}

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

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: "courier new", monospace;
  font-size: 1em;
}

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

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

small {
  font-size: 75%;
}

sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

ul, ol {
  margin: 0;
  padding: 0;
}

dd {
  margin: 0px;
}

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

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

svg:not(:root) {
  overflow: hidden;
}

figure, form {
  margin: 0;
}

fieldset {
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
}

input[type=submit],
input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  -webkit-box-sizing: border-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  background-color: transparent;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  display: block;
  border: 0 none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  outline: none;
  background: none;
  font-size: 1.5rem;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
select::-ms-expand {
  display: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style: none;
}

/*画像を縦に並べた時に余白が出ないように*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
* {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
*:before, *:after {
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: block;
}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.fadeIn {
  opacity: 0;
}
.fadeIn.js-active {
  animation: fadeIn 1s ease-in-out forwards;
}

.fadeInDelay {
  opacity: 0;
}
.fadeInDelay.js-active {
  animation: fadeIn 1s ease-in-out 0.4s forwards;
}

.fadeInLeft {
  opacity: 0;
}
.fadeInLeft.js-active {
  animation: fadeInLeft 1s ease-in-out forwards;
}

.fadeInRight {
  opacity: 0;
}
.fadeInRight.js-active {
  animation: fadeInRight 1s ease-in-out forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(2em);
  }
  80% {
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(1.5em);
  }
  80% {
    transform: translateX(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* アンカーリンクスクロール時のフェードイン */
.fadeIn-anchor {
  opacity: 0;
}
.fadeIn-anchor.js-active {
  animation: fadeInAnchor 0.6s ease-out forwards;
}

@keyframes fadeInAnchor {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ------------------------
    基本構造
------------------------ */
:root {
  --sideW: min(.7vw, 10px);
}
@media screen and (max-width: 750px) {
  :root {
    --sideW: min(2.56vw, 10px);
  }
}

html {
  scroll-behavior: auto;
}
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-feature-settings: "palt";
  margin: 0;
  /* ページ読み込み中は非表示 */
}
body.is-loading {
  opacity: 0;
  visibility: hidden;
}
body.is-loaded {
  animation: fadeIn 0.8s ease-out forwards;
}

p {
  text-align: justify;
  word-break: break-all;
  text-justify: inter-ideograph;
  text-justify: inter-character;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media screen and (max-width: 750px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

img {
  width: 100%;
}

.al-center {
  text-align: center;
}

.al-center-pc {
  text-align: center;
}
@media screen and (max-width: 750px) {
  .al-center-pc {
    text-align: left;
  }
}

.nolink {
  pointer-events: none;
  color: #000;
  cursor: pointer;
  text-decoration: none;
}

.u-disp-ib {
  display: inline-block;
}

.only-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .only-sp {
    display: inherit;
  }
}

@media screen and (max-width: 750px) {
  .only-pc {
    display: none;
  }
}
/*
.split-contents{
	display: grid;
	grid-template-columns: 1fr 375px 1fr;
	justify-content: center;
	position: relative;
	@include mq(md){
		grid-template-columns: 1fr;
	}
}
*/
.background {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -2;
  background: url(../img/fix_bg.png);
  background-repeat: repeat;
  background-size: 80%;
}
@media screen and (max-width: 750px) {
  .background {
    display: none;
  }
}
.background::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -2;
  background: url(../img/fix_bg_ov.png) no-repeat center center/cover;
}
@media screen and (max-width: 750px) {
  .background::before {
    display: none;
  }
}

.app-wrap {
  padding: 0 1.2rem;
}
.app-wrap .hidden {
  display: none;
}

.total-data {
  background-image: url(../img/app_frame.png);
  background-size: 100% 100%;
  padding: 0.6rem 1rem;
}
.total-data ul li {
  display: flex;
  align-items: center;
  padding: 0 0.2rem;
  line-height: 1;
}
.total-data ul li + li {
  border-top: 1px solid #b3b3b3;
}
.total-data ul li p {
  white-space: nowrap;
  min-width: 5rem;
  text-align: right;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
}
.total-data ul li p span {
  font-size: 1.3rem;
}

.app-head {
  margin: 0.4rem 0 0.2rem 0;
}

button.start {
  display: block;
  position: relative;
  background: none;
  border: none;
  padding: 0;
}
button.start .hand {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  width: 4rem;
  animation: hand-float 0.5s ease-in-out infinite alternate;
}

.question {
  border: 3px solid #8cc220;
  border-radius: 1rem;
  padding: 0 0.2rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.question img.question-image {
  margin: 0;
}
.question .answer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5px;
}
.question .answer button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 120px;
  max-width: 100%;
}

.result {
  border: 3px solid #8cc220;
  border-radius: 1rem;
  padding: 0 0.2rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.result ul {
  display: grid;
  align-items: center;
  grid-template-columns: 75% auto;
}
.result ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  aspect-ratio: 1/1;
  padding: 0.6rem 0.6rem 0.8rem 0.6rem;
  position: relative;
}
.result ul li a img.check {
  width: 100%;
}
.result ul li a img.arrow {
  width: 25%;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
.result ul li a.type1 {
  background-color: #0068b7;
}

.hero-bg-wrap {
  display: grid;
  grid-template-columns: 1fr 375px 1fr;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 100vh;
  max-height: none;
}
@media screen and (max-width: 750px) {
  .hero-bg-wrap {
    grid-template-columns: 1fr;
  }
}

.hero-bg {
  width: 100%;
  height: 90%;
  padding: 20px 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.hero-bg > div {
  padding: 10px 4%;
  width: 33%;
}
@media screen and (max-width: 1200px) {
  .hero-bg > div {
    width: 50%;
  }
}
@media screen and (max-width: 750px) {
  .hero-bg > div {
    display: none;
  }
}
.hero-bg .break {
  display: block;
  width: 100%;
  font-size: 0;
  line-height: 0;
}

/*[class^="bg-image"] {
        will-change: transform;
}*/
@keyframes cloud-float {
  0% {
    transform: translate3d(0, -1%, 0);
  }
  100% {
    transform: translate3d(0, 2%, 0);
  }
}
@keyframes cloud-float-rev {
  0% {
    transform: translate3d(0, 2%, 0);
  }
  100% {
    transform: translate3d(0, -1%, 0);
  }
}
@keyframes hand-float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
/* ページ読み込み完了時のフェードインアニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
/* =========================
   Navigation
========================= */
.lp-nav {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  width: 376px;
  max-width: 100%;
  margin: auto;
  /* ハンバーガーボタン */
}
@media screen and (max-width: 750px) {
  .lp-nav {
    width: 100%;
  }
}
.lp-nav.is-open + .nav-menu {
  opacity: 1;
  visibility: visible;
}
.lp-nav.is-open .nav-toggle {
  visibility: hidden;
}
.lp-nav .head-logo {
  position: relative;
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: left center;
     object-position: left center;
}
.lp-nav .nav-toggle {
  visibility: visible;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 23px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.lp-nav .nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.lp-nav .nav-toggle span:nth-child(1) {
  top: 0;
}
.lp-nav .nav-toggle span:nth-child(2) {
  top: 10px;
}
.lp-nav .nav-toggle span:nth-child(3) {
  bottom: 0;
}

/* メニュー */
.nav-menu {
  position: fixed;
  background: #868686;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 376px;
  max-width: 100%;
  margin: auto;
  overflow-y: auto;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 9999;
}
@media screen and (max-width: 750px) {
  .nav-menu {
    width: 100%;
  }
}
.nav-menu .menu-wrap {
  padding: 0 0 2rem 0;
  background: #fff;
}
.nav-menu .menu-head {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.nav-menu .menu-head li.logo {
  height: 64px;
}
.nav-menu .menu-head li.menu {
  height: 1.2rem;
  text-align: right;
  padding-right: 1.2rem;
}
.nav-menu .menu-head li img {
  width: auto;
  height: 100%;
}
.nav-menu .title {
  margin: 1rem 0;
}
.nav-menu .navi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  padding: 0 1.2rem;
}
.nav-menu .bannar {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 1.2rem;
  padding: 0 1.2rem;
}
.nav-menu .bannar li {
  padding: 0;
  border-top: 1px solid #b3b3b3;
  border-bottom: 1px solid #b3b3b3;
}
.nav-menu .bannar li + li {
  border-top: none;
}

button.close {
  display: block;
  background: none;
  border: none;
  padding: 0;
  margin: 2rem auto;
  cursor: pointer;
  width: 120px;
  max-width: 100%;
}

.contents-wrap {
  position: relative;
  background-color: #fff;
  width: 376px;
  margin: auto;
  padding-top: 64px;
}
@media screen and (max-width: 750px) {
  .contents-wrap {
    width: 100%;
  }
}
.contents-wrap .external-links {
  display: none;
}
@media screen and (max-width: 750px) {
  .contents-wrap .external-links {
    display: flex;
  }
}

.hero-wrap {
  background-image: url(../img/app_bg.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
  padding: 2rem 0;
  position: relative;
}
.hero-wrap::before, .hero-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 30px;
  background-image: url(../img/app_bg_edge.png);
  background-size: 100%;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  z-index: 99;
}
.hero-wrap::after {
  top: auto;
  bottom: 0;
  transform: rotate(180deg);
}
.hero-wrap .anniversary {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: 30% auto;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}
.hero-wrap .anniversary li img {
  width: 100%;
}
.hero-wrap .anniversary li p {
  color: #003273;
  font-size: 0.7rem;
}
.hero-wrap h1 {
  padding: 0;
  margin: 10px 0;
}

.copy {
  padding: 1rem 0;
}

.article-wrap {
  position: relative;
  padding: 2rem 0.5rem 2.6rem 0.5rem;
  margin: 0;
  background-image: url(../img/app_bg.png);
  background-size: contain;
  background-repeat: repeat-y;
}
.article-wrap h2 {
  margin-bottom: -10%;
}
.article-wrap h2 .title {
  width: 100%;
  margin: 0;
  padding-left: 4px;
}
.article-wrap h2 .title .burst {
  width: 105%;
}
@media screen and (max-width: 750px) {
  .article-wrap h2 .title .burst {
    width: 102%;
  }
}
.article-wrap h2 .bombs {
  width: 100%;
  margin: -20px auto 0 auto;
}
.article-wrap .type1 .rounded-box .line em span, .article-wrap .type1 .rounded-box a {
  color: #0068b7;
}
.article-wrap .type2 .rounded-box .line em span, .article-wrap .type2 .rounded-box a {
  color: #d63565;
}
.article-wrap .type3 .rounded-box .line em span, .article-wrap .type3 .rounded-box a {
  color: #00957a;
}
.article-wrap .type4 .rounded-box .line em span, .article-wrap .type4 .rounded-box a {
  color: #964d9a;
}

/* Rounded box utility */
.rounded-box {
  background-image: url(../img/round_bg.png);
  background-size: 100% auto;
  background-repeat: repeat-y;
  padding: 0;
  width: 94%;
  margin: 18% auto;
  position: relative;
}
.rounded-box.mb-0 {
  margin-bottom: 0;
}
.rounded-box::before, .rounded-box::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 40px;
  background-image: url(../img/round_bg_edge.png);
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
}
.rounded-box::before {
  bottom: 100%;
}
.rounded-box::after {
  top: 100%;
  transform: rotate(180deg);
}
.rounded-box .type-head {
  width: 100%;
  margin: auto;
}
.rounded-box p {
  padding: 1.2rem 1.2rem 0 1.2rem;
  margin: 0;
}
.rounded-box p span.small {
  font-size: 0.85em;
}
.rounded-box .type-foot {
  width: 100%;
  margin: 1rem 0 0 0;
}
.rounded-box .line {
  text-align: center;
  width: auto;
  max-width: 100%;
}
.rounded-box .line em {
  position: relative;
  display: inline-block;
  padding: 0 0.5rem;
}
.rounded-box .line em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 8px;
  background-color: #FFF100;
  z-index: 0;
  line-height: 1;
}
.rounded-box .line em span {
  position: relative;
  z-index: 10;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .rounded-box .line span:after {
    height: 0.45em;
    bottom: 0.06em;
  }
}

.present {
  background-color: #e2f0c7;
  padding: 2rem 1.2rem 1.4rem 1.2rem;
  margin: 0;
}
.present p {
  font-size: 0.78rem;
}
.present p .t-center {
  font-size: 0.9rem;
  display: block;
  text-align: center;
  line-height: 1.8;
}
.present p .t-center a {
  display: inline-block;
  margin-top: 0.5rem;
  text-decoration: underline;
}

.nagano150 {
  padding: 1.6rem;
  margin: 0;
}
.nagano150 img + img {
  margin-top: 1.6rem;
}

.present-cta {
  width: 376px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transition: 0.3s;
  transform: translateY(100%);
  z-index: 9999;
}
.present-cta.active {
  transform: translateY(0);
}
@media screen and (max-width: 750px) {
  .present-cta {
    width: 100%;
  }
}

.footer {
  padding: 1.4rem 1rem 4rem 1rem;
  text-align: center;
}
.footer .foot-logo {
  position: relative;
  max-width: 14rem;
  margin: auto;
}
.footer .address {
  font-size: 0.85rem;
  margin-top: 0.6rem;
}
.footer .privacy {
  display: inline-block;
  font-size: 0.9rem;
  line-height: 1;
  letter-spacing: 0.1rem;
  padding: 0 0 6px 0;
  background-image: url(../img/chalk_line.png);
  background-position: center bottom;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 1.6rem auto;
}
.footer small {
  display: block;
  text-align: center;
}

/* ======================================
   Anchor Link
======================================== */
#scroll-top {
  display: block;
  cursor: pointer;
  padding: 0;
  position: fixed;
  bottom: 1rem;
  left: 50%;
  z-index: 1000;
  opacity: 0;
  transition: 0.5s;
  background-color: transparent;
  border: 0;
}
#scroll-top.show {
  opacity: 1;
}
#scroll-top.slide-up {
  transform: translate(130px, 0);
}
#scroll-top.slide-up.active {
  transform: translate(130px, -60px);
}
#scroll-top span {
  white-space: nowrap;
  display: none;
  width: 100%;
  font-size: 0.7rem;
  position: absolute;
  bottom: 0;
  letter-spacing: 0;
  text-align: center;
}
#scroll-top p {
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #8CC223;
  background-image: url("../img/angle_up_sw.png");
  background-size: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto;
}