@import url("https://fonts.googleapis.com/css?family=Kosugi");
li {
  list-style: none;
}

a {
  text-decoration: none;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  /* scroll-behavior: smooth; */
}

body {
  font-family: "Century Gothic", "Kosugi", sans-serif;
  overflow-x: hidden;
}

a,
p,
h1,
h2,
h3 {
  color: #fff;
}

h1 {
  font-size: 7rem;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 5rem;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 2rem;
  }
}

h3 {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 1rem;
  }
}

th {
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  th {
    font-size: 1rem;
  }
}

td {
  font-size: 2.5rem;
}

@media screen and (max-width: 767px) {
  td {
    font-size: 1.5rem;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.txt_emphasis {
  color: #007fff;
  font-size: 1.3em;
}

.fixed_bg {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  position: relative;
  background-size: cover;
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
}

.site_header {
  background: rgba(0, 127, 255, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  .site_header {
    height: 60px;
  }
}

.header_logo img {
  height: 80px;
  width: auto;
  margin: 5px 0px 5px 50px;
}

@media screen and (max-width: 767px) {
  .header_logo img {
    height: 40px;
    margin: 10px 0 10px 10px;
  }
}

.header_content {
  padding: 15px 50px 0px 0px;
  font-size: 5rem;
  /* color: #333; */
}

@media screen and (max-width: 767px) {
  .header_content {
    padding: 0 10px 0 0;
  }
}

@-webkit-keyframes sp_menu_icon-bar01 {
  0% {
    -webkit-transform: translateY(20px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes sp_menu_icon-bar01 {
  0% {
    -webkit-transform: translateY(20px) rotate(45deg);
            transform: translateY(20px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
            transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

#sp_menu_icon span:nth-of-type(2) {
  -webkit-transition: all 0.25s 0.25s;
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#sp_menu_icon span:nth-of-type(3) {
  -webkit-animation: sp_menu_icon-bar03 0.75s forwards;
  animation: sp_menu_icon-bar03 0.75s forwards;
}

@-webkit-keyframes sp_menu_icon-bar03 {
  0% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes sp_menu_icon-bar03 {
  0% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
            transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
            transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
}

#sp_menu_icon.active span:nth-of-type(1) {
  -webkit-animation: active-sp_menu_icon-bar01 0.75s forwards;
  animation: active-sp_menu_icon-bar01 0.75s forwards;
}

@-webkit-keyframes active-sp_menu_icon-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(20px) rotate(45deg);
  }
}

@keyframes active-sp_menu_icon-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
            transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(20px) rotate(45deg);
            transform: translateY(20px) rotate(45deg);
  }
}

#sp_menu_icon.active span:nth-of-type(2) {
  opacity: 0;
}

#sp_menu_icon.active span:nth-of-type(3) {
  -webkit-animation: active-sp_menu_icon-bar03 0.75s forwards;
  animation: active-sp_menu_icon-bar03 0.75s forwards;
}

@-webkit-keyframes active-sp_menu_icon-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
  }
}

@keyframes active-sp_menu_icon-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
            transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
            transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
            transform: translateY(-20px) rotate(-45deg);
  }
}

a,
p,
h1,
h2,
h3 {
  text-align: center;
  color: #000;
}

.privacy_panel {
  width: 100%;
}

.section_main {
  width: 80%;
  max-width: 900px;
  margin: auto;
  padding-bottom: 150px;
}

.section_main h1 {
  font-size: 3rem;
}

.section_main h2 {
  text-align: left;
  font-size: 2.5rem;
  margin: 20px 0 10px 0;
}

.section_main p {
  font-size: 1.6rem;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .section_main h1 {
    font-size: 2.6rem;
  }
  .section_main h2 {
    font-size: 2rem;
  }
  .section_main p {
    font-size: 1.4rem;
  }
}

.main_top .main_title {
  padding: 110px 0 50px 0;
}

#container {
  -webkit-animation: fadein 1s forwards;
          animation: fadein 1s forwards;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=privacy.css.map */