@charset "UTF-8";

body {
  height: 100%;
  width: 100vw;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #c1f7ff, #f7d4fa);
  font-family: 'Noto Sans JP', sans-serif;
}

.container {
  max-width: 700px;
}

.first-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

.header {
  background: white;
  border-radius: 30px;
  height: 90%;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3vw;
  margin: 4vh auto;
  position: relative;
}

.container_main {
  margin: auto 0;
}

.main-logo {
  display: block;
  width: 95%;
  margin: auto;
}

.first-view-subtitle {
  font: bold 0.73rem 'Noto Sans JP', sans-serif;
  text-align: center;
  color: #545454;
}

.scroll-indicator {
  font: bold 0.8rem 'Noto Sans JP', sans-serif;
  text-align: center;
  color: #545454;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-indicator::after {
  content: "";
  display: block;
  width: 1px;
  height: 2rem;
  background: #545454;
  margin: 0.5rem auto 0;
}

.body .container>h2, .closing .container>h2, .questions .container>h2 {
  display: flex;
  justify-content: center;
}

.body .container>h2 span, .closing .container>h2 span, .questions .container>h2 span {
  background-color: #ddd;
  font: bold 1.2rem 'Noto Sans JP', sans-serif;
  color: #545454;
}

.body .container>div, .closing .container>div {
  background: white;
  border-radius: 30px;
  height: 90%;
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3vw;
  margin: 3vw auto;
}

.questions .container>div {
  background: white;
  border-radius: 30px;
  height: 90%;
  width: 95%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3vw;
  margin: 3vw auto;
}

.check-box-list {
  list-style: none;
}

.check-box-list li {
  position: relative;
  font: 600 1rem 'Noto Sans JP', sans-serif;
  color: #294460;
}

.check-box-list li::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  margin-bottom: 1rem;
  border: 2px solid #294460;
  position: absolute;
  left: -0.5rem;
  top: 1.2rem;
  border-radius: 0.2rem;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 5rem solid transparent;
  border-right: 5rem solid transparent;
  border-top: 3rem solid #888;
  border-radius: 0.2rem;
  margin-top: 1rem;
}

.count-box {
  position: relative;
}

.count-1 {
  width: 120px;
  font-size: 5rem;
  font-weight: 900;
  position: absolute;
  transform: translateX(-16%);
  top: 0 ;
  right: 0;
  color: #ede8e8;
  z-index: 1
}

.count-2 {
  font-size: 5rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
  color: #ddd;
  z-index: 1
}

.count-content {
  position: relative;
  z-index: 2;
}

.line-icon {
  width: 35px;
}

.btn-line {
  background-color: #08c755;
  font: bold 1.2rem 'Noto Sans JP', sans-serif;
  color: #fff;
}

.btn-line:hover {
  background-color: #08c755;
}

h3 {
  font-size: 1.4rem;
  font-weight: bold;
  font-family:  'Noto Sans JP', sans-serif;
  color: #001f3f;
  line-height: 1.5;
}

p {
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif;
  color: #545454;
  line-height: 1.6;
}

.c-05, .c-04, .c-03, .c-02, .c-01 {
  width: 100%;
}

.voice {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  bottom: 40px;
}

.q_content {
  color: #294460;
  font-family: 'Noto Sans JP', sans-serif;
}

.ans_content {
  color: #545454;
  font-family: 'Noto Sans JP', sans-serif;
}

footer {
  background-color: #d9d9d9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.copyright {
    font-size: 10px;
    font-weight: 400;
    margin: 10px auto;
}

.line-fixed {
  position: fixed;
  top: 5px;
  left: 5px;
  z-index: 1000;
}

.line-fixed img {
  width: 100px;
  height: 100px;
}

.menu-button {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 999;
  width: 100px;
  height: 100px;
}

.close-button {
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 1000;
  width: 100px;
  height: 100px;
  color: #fff;
}

.overlay-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(128, 128, 128, 0.8);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  visibility: hidden;
  z-index: 999;
}

.overlay-menu.show {
  transform: translateX(0);
  visibility: visible;
}

.overlay-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 30vh;
  text-align: center;
}

.overlay-menu li {
  margin: 1rem 0;
  font-weight: bold;
}

.overlay-menu a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}