@charset "UTF-8";
/* initial setting */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

li {
  text-decoration: none;
}

html {
  font-size: 100%;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "YuGothic", "Meiryo", sans-serif;
}

body {
  line-height: 1;
  color: #333;
}

code {
  font-family: "Operator Mono", "Menlo", "Monaco", "Consolas", monospace;
}

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

main {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
  text-decoration: none;
}

img {
  outline: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

html,
button,
input,
select,
textarea {
  box-sizing: border-box;
}

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

@font-face {
  font-family: "Hiragino Sans";
  font-style: normal;
  src: local(HiraginoSans-W0);
  font-weight: 100;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1);
  font-weight: 200;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2);
  font-weight: 300;
}
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3);
  font-weight: 400;
}
@keyframes fadeIn {
  from {
    visibility: hidden;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    visibility: visible;
    opacity: 1;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
/* definitions */
/* component */
body {
  background-color: rgba(0, 160, 234, 0.1);
}

h2 {
  line-height: 1;
  margin: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.wrapper {
  max-width: 960px;
  margin: 0 auto;
  background-color: #fff;
}

.for-pc {
  display: none;
}
@media (min-width: 768px) {
  .for-pc {
    display: block;
  }
}

.for-sp {
  display: block;
}
@media (min-width: 768px) {
  .for-sp {
    display: none;
  }
}

.btn {
  background-color: #e83927;
  color: #fff;
  height: 50px;
  padding: 2px 14px;
  width: auto;
  min-width: 100px;
  font-size: 1.4rem;
  line-height: 1.2;
  transition: all 0.25s ease;
  box-sizing: border-box;
  cursor: pointer;
  border: none;
  outline: none;
  font-weight: 300;
  border-radius: 10px;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none !important;
  box-shadow: 0 3px 0 #ddd;
}

.d-none {
  display: none;
}

#header {
  height: 60px;
  background-color: #00a0ea;
  color: #fff;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
@media (min-width: 768px) {
  #header {
    margin-bottom: 40px;
  }
}

#header-titile {
  font-size: 1rem;
}

.hamburger-btn {
  display: block;
  width: 50px;
  height: 50px;
  margin: 7px;
  z-index: 100;
  background: #00a0ea;
  border: none;
  outline: none;
  padding: 10px;
  cursor: pointer;
  float: right;
  border-radius: 50%;
  position: fixed;
  top: 0;
  right: 0;
}
.hamburger-btn:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-color: #00a0ea;
  transform: scale(0);
  transition: 0.75s;
  position: absolute;
  border-radius: 50%;
  top: 0;
  left: 0;
  transform-origin: center;
  z-index: 1;
}
.hamburger-btn span {
  display: block;
  width: 30px;
  height: 3px;
  margin: 3px 0;
  background-color: #fff;
  transition: all 0.3s;
  float: right;
  z-index: 5;
  position: relative;
}
.hamburger-btn .menu-list--sp li a {
  animation: menu-bar01 0.75s forwards;
}
body .hamburger-btn:hover {
  background-color: transparent;
}
body .hamburger-btn:hover:before {
  transform: scale(1);
}
body .hamburger-btn:hover span {
  background-color: #fff;
}

#menu {
  box-shadow: 0px 0px 5px #d5d5d5;
  background-color: #e5f5fc;
  color: #00a0ea;
  width: 80%;
  max-width: 400px;
  height: 100%;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  transition: all 0.5s;
  padding: 90px 0;
  font-size: 1.3rem;
  line-height: 2;
}
.menu-open .hamburger-btn span:first-child {
  animation: active-menu-bar01 0.75s forwards;
}
.menu-open .hamburger-btn span:nth-child(2) {
  opacity: 0;
}
.menu-open .hamburger-btn span:nth-child(3) {
  animation: active-menu-bar03 0.75s forwards;
}
.menu-open #menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.menu-close .hamburger-btn span:nth-of-type(1) {
  animation: menu-bar01 0.75s forwards;
}
.menu-close .hamburger-btn span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.menu-close .hamburger-btn span:nth-of-type(3) {
  animation: menu-bar03 0.75s forwards;
}

@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(9px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(-9px) rotate(-45deg);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(9px) rotate(30deg);
  }
  50% {
    transform: translateY(9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar03 {
  0% {
    transform: translateY(-9px) rotate(-30deg);
  }
  50% {
    transform: translateY(-9px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu-list li {
  list-style: none;
  background-color: #00a0ea;
  color: #fff;
  border-radius: 4px;
  margin: 10px;
}
#menu-list li a {
  display: block;
  padding: 5px 1em;
  box-shadow: 0 3px 0 #ddd;
  transition: 0.15s all ease-out;
  -webkit-transition: 0.15s all ease-out;
  -moz-transition: 0.15s all ease-out;
  -ms-transition: 0.15s all ease-out;
  -o-transition: 0.15s all ease-out;
}
#menu-list li a:hover {
  color: #000;
}

#footer {
  background-color: #00a0ea;
  color: #fff;
}

.copyright {
  text-align: center;
  display: block;
  padding: 20px 10px;
}

.vol {
  display: flex;
  margin: 20px 0;
  padding: 0 10px;
  flex-direction: column;
}
.vol__text {
  border: 3px solid #00a1e9;
  border-radius: 10px;
  padding: 1em;
  line-height: 1.3;
  font-size: 1.2rem;
  text-align: justify;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .vol {
    justify-content: space-between;
    flex-direction: row;
  }
  .vol__ilst {
    width: 42%;
  }
  .vol__text {
    width: 54%;
    font-size: 1.4rem;
  }
}

.quiz-block {
  margin-bottom: 40px;
}

.answer {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 400px;
  margin: 0 auto;
  padding: 50px 10px;
}

.answer__input {
  flex: 1;
}

.answer__btn {
  width: 100px;
  margin: 5px;
}
.answer__btn button {
  transition: 0.15s all ease-out;
  -webkit-transition: 0.15s all ease-out;
  -moz-transition: 0.15s all ease-out;
  -ms-transition: 0.15s all ease-out;
  -o-transition: 0.15s all ease-out;
}
.answer__btn button:hover {
  opacity: 0.75;
  filter: alpha(opacity=50);
}

.answer input {
  display: block;
  width: 100%;
  height: 50px;
  font-size: 1.6rem;
  box-shadow: none;
  background: #fff;
  border: 2px solid #9c9c9c;
  border-radius: 10px;
  padding: 5px;
  padding: 0 10px;
  box-sizing: border-box;
  outline: none;
}

.modal1.tingle-modal,
.modal2.tingle-modal {
  background-color: rgba(0, 160, 234, 0.1);
}

.tingle-modal__closeLabel {
  font-size: 1rem;
}

.tingle-modal-box__content {
  text-align: center;
  padding: 3rem 20px !important;
}

details-group {
  border: 1px solid #CFD8DC;
  border-radius: 5px;
  background-color: white;
}

.details {
  overflow: hidden;
  border-bottom: 1px solid #CFD8DC;
  transition: height 300ms ease-in-out;
}
.details:last-child {
  border-bottom: 0;
}
.details__summary, .details__content {
  padding: 24px;
}
.details__summary {
  position: relative;
  list-style: none;
  padding-left: 48px;
  outline: 0;
  cursor: pointer;
  font-size: 1.4rem;
  text-transform: uppercase;
  transition: color 300ms ease-in-out;
}
.details__summary::-webkit-details-marker {
  display: none;
}
.details__summary:before, .details__summary:after {
  content: "";
  position: absolute;
}
.details__summary:before {
  left: 20px;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  width: 16px;
  background: #00a0ea;
}
.details__summary:after {
  left: 28px;
  top: 50%;
  height: 16px;
  margin-top: -8px;
  width: 2px;
  margin-left: -1px;
  background: #00a0ea;
  transition: all 300ms ease-in-out;
}
[open] > .details__summary {
  color: #00a0ea;
}
[open] > .details__summary:after {
  opacity: 0;
  transform: translateY(25%);
}
.details__content {
  padding-top: 0;
}
[open] > .details__content {
  animation-duration: 0.3s;
  animation-name: fadeIn;
}

.modal-image {
  margin-bottom: 1em;
}

.modal-text {
  margin-bottom: 1em;
  font-size: 1.3rem;
}

.sns-share {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

.sns-list li {
  list-style: none;
  display: inline-block;
  padding: 4px;
}

.lum-lightbox-inner img {
  max-width: 160vw !important; /* 軽くスワイプで左端から右端まで動かせる量 */
  max-height: 85vh !important; /* 上下に適度に余白 */
}

.luminous {
  cursor: default;
}

.hint-img {
  display: block;
  margin: 0 auto;
}/*# sourceMappingURL=style.css.map */