html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  cursor: pointer !important;
  z-index: 100;
  width: 75px;
}

.scroll-top img {
  width: 100%;
}

@media (max-width: 768px) {
  .scroll-top {
    width: 60px;
    bottom: 10px;
    right: 10px;
  }
}
.header {
  position: fixed;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  transition: 0.5s ease-in-out;
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header.change-color {
  background-color: #fff;
  border-bottom: solid 2px #333;
  transition: 0.5s ease-in-out;
  padding: 16px 0;
}

.header__content--logo {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  transition: 0.5s ease-in-out;
}
.header__content--logo:hover {
  opacity: 0.5;
  transition: 0.2s;
}

.hide-logo {
  display: none;
}

.show-logo {
  display: block;
}

.header__content--hamburger {
  display: none;
}

.header__navigation {
  display: flex;
}
.header__navigation ul li {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}
.header__navigation ul li::after {
  content: "";
  width: 2px;
  height: 24px;
  position: absolute;
  right: -10px;
  background-color: #333;
}
.header__navigation ul li:last-child::after {
  content: none;
}
.header__navigation ul li a {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 24px;
  text-decoration: none;
  color: #333;
  transition: 0.2s ease-in-out;
}
.header__navigation ul li a:hover {
  opacity: 0.5;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .header {
    padding: 16px 0;
  }
  .header__content--logo {
    font-size: 14px;
    line-height: 1.3;
  }
  .change-color {
    padding: 10px;
  }
  .header__content--hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 24px;
    top: -6px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .header__content--hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #333;
    transition: 0.3s ease-in-out;
  }
  .header__content--hamburger span:nth-child(1) {
    top: 30px;
  }
  .header__content--hamburger span:nth-child(2) {
    top: 40px;
  }
  .header__content--hamburger span:nth-child(3) {
    top: 50px;
  }
  .header__content--hamburger.active span:nth-child(1), .header__content--hamburger.active span:nth-child(3) {
    width: 14px;
  }
  .header__content--hamburger.active span:nth-child(1) {
    transform: translate(-1px, 5px) rotate(-45deg);
  }
  .header__content--hamburger.active span:nth-child(3) {
    transform: translate(-1px, -5px) rotate(45deg);
  }
  nav.header__navigation {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateX(100%);
    transition: all 0.6s;
    width: 100%;
  }
  nav.header__navigation ul {
    background: #f6e2b6;
    width: 100%;
    height: 100vh;
    padding-top: 80px;
  }
  nav.header__navigation ul li {
    list-style-type: none;
    width: 100%;
    margin-left: 0;
    padding: 0;
  }
  nav.header__navigation ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
  nav.header__navigation ul li::after {
    content: none;
  }
  nav.header__navigation ul li a {
    display: block;
    padding-bottom: 36px;
    text-decoration: none;
  }
  nav.header__navigation.active {
    transform: translateX(0%);
  }
}
.content-wrapper {
  background-color: #f6e2b6;
  border-top: solid 2px #333;
  padding: 160px 24px 80px;
}

.headeing {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 56px;
  margin-bottom: 56px;
}

.section {
  max-width: 1200px;
  margin: 0 auto 80px;
}

.section h3 {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.section h3::before {
  content: "";
  position: absolute;
  background: #333;
  width: 300px;
  height: 2px;
  left: -330px;
  top: 20px;
}

.red {
  color: #F54645;
  font-weight: 700;
}

.green {
  color: #358C3E;
  font-weight: 700;
}

.blue {
  color: #4256D5;
  font-weight: 700;
}

.orange {
  color: #FF6E24;
  font-weight: 700;
}

.pink {
  color: #FE94D4;
  font-weight: 700;
}

.yellow {
  color: #FFBF41;
  font-weight: 700;
}

.light-green {
  color: #54B584;
  font-weight: 700;
}

.view-more a {
  background: #fff;
  border-radius: 70px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 250px;
  padding: 16px 0;
  color: #333;
  border: solid 2px #333;
  transition: 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}
.view-more a:hover {
  color: #333;
}
.view-more a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 40px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 100px 16px 20px;
  }
  .headeing {
    font-size: 48px;
  }
  .view-more a {
    font-size: 14px;
    margin: 0 auto;
  }
}
#contact {
  text-align: center;
}
#contact h2 {
  margin-bottom: 32px;
}
#contact p {
  font-weight: 700;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 32px;
}

.dot {
  font-size: 24px;
  opacity: 0;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(1, end);
}
.dot:nth-child(1) {
  animation-name: dot1;
}
.dot:nth-child(2) {
  animation-name: dot2;
}
.dot:nth-child(3) {
  animation-name: dot3;
}

@keyframes dot1 {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dot2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes dot3 {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.send-email {
  background: #fff;
  border-radius: 70px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 400px;
  width: 100%;
  padding: 32px 0;
  color: #333;
  border: solid 2px #333;
  transition: 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin: 32px auto 0;
}
.send-email:hover {
  background-color: #333;
  color: #fff;
}
.send-email:hover::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.send-email::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 40px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  #contact p {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .dot {
    font-size: 20px;
  }
  .send-email {
    margin-top: 24px;
  }
}
.firstview-subpage__balloon {
  position: relative;
  display: inline-block;
  background-color: #fff;
  border-bottom: solid 2px #333;
  padding: 8px 16px;
  max-width: 100%;
  margin-bottom: 24px;
  text-align: center;
}
.firstview-subpage__balloon::before, .firstview-subpage__balloon::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.firstview-subpage__balloon::before {
  border: solid 12px transparent;
  border-top: solid 12px #333;
}
.firstview-subpage__balloon::after {
  border: solid 14px transparent;
  border-top: solid 14px #fff;
  margin-top: -5px;
}
.firstview-subpage__balloon h1 {
  font-family: "Mukta Vaani", sans-serif;
  font-weight: 800;
  font-style: normal;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

.firstview-subpage {
  text-align: center;
  padding: 116px 24px 80px;
}
.firstview-subpage__title-image img {
  max-width: 480px;
  width: 80%;
}

.footer {
  border-top: solid 2px #333;
  text-align: center;
  padding: 24px 0;
}
.footer small {
  font-size: 10px;
}

.element {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.fadein {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.element02 {
  opacity: 0;
  transform: translate(-30px, 0);
  transition: 1s;
}

.fadein02 {
  transform: translate(0, 0);
  opacity: 1;
}

@media (max-width: 768px) {
  .sp-bk-none {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */