@import url("https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap");
@font-face {
  font-family: "NotoSansJP";
  src: url(/assets/font/NotoSansJP-VariableFont_wght.ttf) format("truetype");
}
* {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: "NotoSansJP", sans-serif;
}

.global_head {
  margin-bottom: 0;
}

.url-button {
  text-align: center;
  margin-top: 3em;
}
.url-button a {
  text-decoration: none;
  color: #fff;
  background-color: #DE0068;
  padding: 10px 1em;
  border-radius: 5px;
  font-size: 1.5em;
  font-weight: 600;
}

#backToTopButton {
  background-color: rgba(222, 0, 104, 0.7411764706);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  transition: opacity 0.3s;
}
#backToTopButton:hover {
  background-color: #DE0068;
}

#backToTopButton.hidden {
  opacity: 0;
  pointer-events: none;
}

#countdown {
  font-size: 50px;
  font-weight: 900;
}

.circle_btn {
  margin-top: 10px;
  text-align: center;
}
.circle_btn a {
  text-decoration: none;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 15px;
}

.bottom_text {
  margin: 50px 10px 150px;
}
.bottom_text p {
  text-align: center;
  width: 100%;
}

.text_line {
  max-width: 900px;
  margin: 0 auto;
}

.chuusen_annai {
  text-align: center;
}
.chuusen_annai img {
  max-width: 600px;
  width: 100%;
}

@keyframes glow {
  0% {
    filter: drop-shadow(0 0 10px #f228e9);
  }
  50% {
    filter: drop-shadow(0 0 20px #f228e9);
  }
  100% {
    filter: drop-shadow(0 0 10px #f228e9);
  }
}
@keyframes lightning {
  0% {
    filter: drop-shadow(0 0 0px #f228e9);
    opacity: 0;
  }
  9.75% {
    filter: drop-shadow(0 0 0px #f228e9);
    opacity: 0;
  }
  10% {
    filter: drop-shadow(0 0 10px #f228e9) drop-shadow(0 0 20px #f228e9);
    opacity: 1;
  }
  10.5% {
    filter: drop-shadow(0 0 0px #f228e9);
    opacity: 0;
  }
  11% {
    filter: drop-shadow(0 0 30px #f228e9) drop-shadow(0 0 60px #f228e9);
    opacity: 1;
  }
  13% {
    filter: drop-shadow(0 0 0px #f228e9);
    opacity: 0;
  }
  40% {
    filter: drop-shadow(0 0 15px #f228e9) drop-shadow(0 0 30px #f228e9);
    opacity: 0.5;
  }
  99% {
    filter: drop-shadow(0 0 15px #f228e9) drop-shadow(0 0 30px #f228e9);
    opacity: 0.5;
  }
  100% {
    filter: drop-shadow(0 0 0px #f228e9);
    opacity: 0;
  }
}
.denno {
  min-height: 100vh;
  background-image: url(../img/bg.png);
  background-position: center;
  background-repeat: repeat;
  animation: glow 10s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.denno::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 10px;
  left: 10px;
  bottom: 0;
  background-image: url(../img/elec.png);
  background-position: center;
  background-repeat: repeat;
  animation: lightning 50s infinite;
}
@media only screen and (min-width: 768px) {
  .denno::after {
    background-size: 1500px;
  }
}
@media only screen and (max-width: 767px) {
  .denno::after {
    background-size: 750px;
  }
}
@media only screen and (min-width: 768px) {
  .denno {
    background-size: 1500px;
  }
}
@media only screen and (max-width: 767px) {
  .denno {
    background-size: 750px;
  }
}
.denno__logo {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.denno__logo img {
  text-align: center;
  margin: 0 auto 0;
  max-width: 1000px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 50px #000000);
  aspect-ratio: 1;
  object-fit: contain;
}
@media only screen and (min-width: 768px) {
  .denno__logo img {
    width: 70vw;
  }
}
@media only screen and (max-width: 767px) {
  .denno__logo img {
    width: 98%;
  }
}
.denno__links--one, .denno__links--two, .denno__links--three, .denno__links--four, .denno__links--five, .denno__links--six {
  position: absolute;
  z-index: 10;
}
.denno__links--one img, .denno__links--two img, .denno__links--three img, .denno__links--four img, .denno__links--five img, .denno__links--six img {
  filter: drop-shadow(0 0 25px #ff26ba);
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.25s;
}
.denno__links--one img:hover, .denno__links--two img:hover, .denno__links--three img:hover, .denno__links--four img:hover, .denno__links--five img:hover, .denno__links--six img:hover {
  transform: scale(1.05);
  z-index: 20;
}
@media only screen and (min-width: 768px) {
  .denno__links--one {
    top: 15%;
    left: 10px;
  }
  .denno__links--one img {
    max-width: 135px;
    width: 15vw;
  }
}
@media only screen and (max-width: 767px) {
  .denno__links--one {
    top: 0px;
    left: 10px;
  }
  .denno__links--one img {
    max-width: 135px;
    width: 25vw;
  }
}
@media only screen and (min-width: 768px) {
  .denno__links--two {
    top: 5%;
    right: 40%;
  }
  .denno__links--two img {
    max-width: 245px;
    width: 15vw;
  }
}
@media only screen and (max-width: 767px) {
  .denno__links--two {
    top: -25px;
    left: 40%;
  }
  .denno__links--two img {
    width: 30vw;
  }
}
@media only screen and (min-width: 768px) {
  .denno__links--three {
    top: 15%;
    right: 10px;
  }
  .denno__links--three img {
    max-width: 175px;
    width: 18vw;
  }
}
@media only screen and (max-width: 767px) {
  .denno__links--three {
    top: 40px;
    right: 10px;
  }
  .denno__links--three img {
    max-width: 175px;
    width: 18vw;
  }
}
@media only screen and (min-width: 768px) {
  .denno__links--four {
    left: 10px;
    bottom: 10%;
  }
  .denno__links--four img {
    max-width: 300px;
    width: 20vw;
  }
}
@media only screen and (max-width: 767px) {
  .denno__links--four {
    left: 10px;
    bottom: -35px;
  }
  .denno__links--four img {
    max-width: 300px;
    width: 35vw;
  }
}
@media only screen and (min-width: 768px) {
  .denno__links--five {
    bottom: 15%;
    left: 55%;
  }
  .denno__links--five img {
    max-width: 145px;
    width: 12.5vw;
  }
}
@media only screen and (max-width: 767px) {
  .denno__links--five {
    bottom: 50px;
    left: 50%;
  }
  .denno__links--five img {
    max-width: 145px;
    width: 17vw;
  }
}
@media only screen and (min-width: 768px) {
  .denno__links--six {
    bottom: 10%;
    right: 10px;
  }
  .denno__links--six img {
    max-width: 225px;
    width: 22vw;
  }
}
@media only screen and (max-width: 767px) {
  .denno__links--six {
    bottom: 10px;
    right: 10px;
  }
  .denno__links--six img {
    max-width: 225px;
    width: 22vw;
  }
}

.links--one {
  margin: 50px;
  padding: 50px;
}

.neon-frame {
  border-image-slice: 60;
  border-image-width: 70px;
  border-image-outset: 0px;
  border-image-repeat: repeat repeat;
  border-image-source: url("../img/border-test.png");
  border-style: solid;
  padding: 40px 65px 60px;
  margin: -35px -50px -70px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal.active {
  animation: modalFadeIn 0.3s forwards;
  opacity: 1;
  pointer-events: auto;
}
.modal.closing {
  animation: modalFadeOut 0.3s forwards;
  opacity: 0;
  pointer-events: none;
}
.modal__content {
  padding: 3rem;
  border-radius: 20px;
  width: 90vw;
  position: relative;
  color: #fff;
  text-align: left;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s, transform 0.3s;
}
@media only screen and (min-width: 768px) {
  .modal__content {
    max-width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .modal__content {
    max-width: fit-content;
    width: 90%;
    margin: 0 auto;
  }
}
.modal__content.active {
  animation: modalScaleIn 0.3s forwards;
  opacity: 1;
  transform: scale(1);
}
.modal__content.closing {
  animation: modalScaleOut 0.3s forwards;
  opacity: 0;
  transform: scale(0.85);
}
.modal__close {
  position: absolute;
  bottom: 30px;
  right: 50%;
  transform: translateX(50%);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  width: 25px;
  height: 25px;
}
.modal__close img {
  width: 100%;
  height: 100%;
  display: block;
}
.modal__inner {
  background-color: #000000;
  border-radius: 15px;
  padding: 16px 24px 40px;
  margin: -26px -26px -26px;
}
.modal__inner h2 span {
  font-size: 1rem;
}

@keyframes modalFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modalFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes modalScaleIn {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes modalScaleOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.85);
    opacity: 0;
  }
}
.circles {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .circles {
    padding: 10px 10px 0 0;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .circles {
    padding: 10px 10px 0 0;
    width: 100%;
  }
}
.circles__circle {
  background-image: url(../img/frame-circle.png);
  background-repeat: no-repeat;
  background-size: contain;
  text-decoration: none;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .circles__circle {
    margin: 0 0 10px 5px;
    width: calc(50% - 5px);
  }
}
@media only screen and (min-width: 768px) {
  .circles__circle {
    margin: 0 0 15px 10px;
    width: calc(33.33% - 10px);
  }
}
.circles__circle::before {
  content: "";
  display: block;
  padding-bottom: 34.33%;
}
.circles__circle-inner {
  align-items: center;
  display: flex;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .circles__circle-inner {
    top: 7px;
    left: 7px;
  }
}
.circles__circlecut {
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .circles__circlecut {
    height: 46px;
    width: 46px;
  }
}
@media only screen and (min-width: 768px) {
  .circles__circlecut {
    height: 72px;
    width: 72px;
  }
}
.circles__body {
  margin-left: 5px;
  width: calc(100% - 53px);
}
@media only screen and (min-width: 768px) {
  .circles__body {
    margin-left: 10px;
    width: calc(100% - 97px);
  }
}
.circles__name {
  color: #fff;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .circles__name {
    font-size: 0.9rem;
  }
}
@media only screen and (min-width: 768px) {
  .circles__name {
    font-size: 1.1rem;
  }
}
@media only screen and (max-width: 767px) {
  .circles__name--s {
    font-size: 0.7rem;
  }
}
.circles__author {
  color: #fff;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  .circles__author {
    font-size: 0.7rem;
    margin: 5px 0 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .circles__author {
    font-size: 0.9rem;
    margin: 10px 0 0 0;
  }
}
.circles img {
  vertical-align: bottom;
  width: 100%;
}
.circles__outer {
  height: calc(100% - 14px);
  margin: 6px auto 0 auto;
  overflow-y: scroll;
  width: 91.6%;
}

.attention ul {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .attention ul {
    padding: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .attention ul {
    padding: 50px 30px 50px 70px;
  }
}
.attention li {
  line-height: 2;
  margin: 40px 0 0 0;
}
.attention li:first-child {
  margin-top: 0;
}

@media only screen and (max-width: 767px) {
  .overlay {
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition-property: transform;
    transition-duration: 300ms;
    transition-timing-function: ease-out;
    z-index: 9999;
  }
}
@media only screen and (min-width: 768px) {
  .overlay {
    display: none;
  }
}
.overlay__logo {
  width: 200px;
  margin: 0 auto;
}
.overlay__nav {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 30px auto 0 auto;
}
.overlay__link {
  color: #fff;
  margin: 20px 0 0 0;
}
.overlay__link::before {
  background-image: url(../img/point-white.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  display: inline-block;
  height: 16px;
  margin: 3px 5px 0 0;
  vertical-align: text-top;
  width: 16px;
}
.overlay__link--em {
  color: #e62572;
}
.overlay__link--em::before {
  background-image: url(../img/point-red.png);
}
.overlay__link a {
  color: inherit;
  text-decoration: none;
}
.overlay__close {
  background-image: url(../img/icon-close.png);
  background-size: cover;
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
}
.overlay__activate {
  transform: translateY(0%);
}
.overlay__deactivate {
  transform: translateY(100%);
}
.overlay ul {
  display: inline;
  list-style: none;
  margin: 0;
  padding: 0;
}
.overlay img {
  vertical-align: bottom;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .dropbtn {
    background-color: black;
    border: 5px double white;
    color: white;
    padding: 5px;
    font-size: 16px;
    cursor: pointer;
  }
}
@media only screen and (min-width: 768px) {
  .dropbtn {
    display: none;
  }
}

.dropbtn:hover, .dropbtn:focus {
  background-color: #000000;
}

@media only screen and (min-width: 768px) {
  .dropdown {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .dropdown {
    position: relative;
    top: 10px;
    left: 20px;
    display: inline-block;
  }
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #000000;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: #494646;
}

.show {
  display: block;
}

.about {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  background-color: #000;
  font-size: 1em;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 768px) {
  .about {
    padding-bottom: 80px;
  }
}
.about__head {
  height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.about__content {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  box-sizing: border-box;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .about__content {
    height: 619px;
    padding: 20px 0 0 0;
    width: 335px;
  }
}
@media only screen and (min-width: 768px) {
  .about__content {
    height: 539px;
    padding: 50px 0 0 0;
    width: 1200px;
  }
}
.about__logo {
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .about__logo {
    width: 220px;
  }
}
@media only screen and (min-width: 768px) {
  .about__logo {
    width: 700px;
  }
}
@media only screen and (max-width: 767px) {
  .about__logo--sp {
    display: inline;
  }
}
@media only screen and (min-width: 768px) {
  .about__logo--sp {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .about__logo--pc {
    display: inline;
  }
}
.about__banner {
  max-width: 800px;
  margin: 0 auto;
}
.about__banner img {
  margin: 10px 0 20px;
  max-width: 800px;
  width: 100%;
}
.about__text {
  max-width: 800px;
  position: relative;
  top: 50px;
  right: -25%;
}
.about__text img {
  max-width: 600px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about__text {
    max-width: 800px;
    position: relative;
    top: 50px;
    right: 0%;
  }
  .about__text img {
    max-width: 600px;
    width: 100%;
  }
}
.about__kaisai {
  text-align: center;
  margin: 100px 0;
}
.about__kaisai p {
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  .about__logodom {
    margin: 0 auto;
    text-align: center;
  }
  .about__logodom img {
    max-width: 800px;
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .about__logodom {
    margin: 0 auto;
  }
  .about__logodom img {
    max-width: 500px;
    width: 100%;
  }
}
.about__rates {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .about__rates {
    margin: 20px auto 0 auto;
    padding: 15px 0;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .about__rates {
    margin: 15px auto 0 auto;
    padding: 10px auto;
    width: 700px;
  }
}
@media only screen and (min-width: 768px) {
  .about__manda {
    text-align: center;
  }
  .about__manda img {
    width: 100%;
    max-width: 200px;
  }
}
@media only screen and (max-width: 767px) {
  .about__manda {
    text-align: center;
  }
  .about__manda img {
    width: 100%;
    max-width: 120px;
  }
}
@media only screen and (max-width: 767px) {
  .about__navigation {
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    margin: -40px 0px 20px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .about__navigation {
    display: flex;
    justify-content: space-between;
    margin: 50px auto 0 auto;
    width: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .about__nav-link {
    margin: 15px auto 0 auto;
    width: 140px;
  }
}
.about__nav-link a {
  color: inherit;
  text-decoration: none;
}
.about__nav-link a::before {
  background-image: url(../img/point-white.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  display: inline-block;
  height: 16px;
  vertical-align: text-top;
  width: 16px;
}
@media only screen and (max-width: 767px) {
  .about__nav-link a::before {
    margin: 2px 10px 0 0;
  }
}
@media only screen and (min-width: 768px) {
  .about__nav-link a::before {
    margin: 2px 5px 0 0;
  }
}
.about__nav-link--em {
  color: #e62572;
}
@media only screen and (max-width: 767px) {
  .about__nav-link--em {
    margin: 15px auto 0 auto;
    width: 140px;
  }
}
@media only screen and (min-width: 768px) {
  .about__nav-link--em {
    font-size: 1.1rem;
    font-weight: 600;
  }
}
.about__nav-link--em a {
  color: inherit;
  text-decoration: none;
}
.about__nav-link--em a::before {
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  vertical-align: text-top;
}
@media only screen and (max-width: 767px) {
  .about__nav-link--em a::before {
    height: 16px;
    margin: 2px 10px 0 0;
    width: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .about__nav-link--em a::before {
    height: 19px;
    margin: 2px 5px 0 0;
    width: 19px;
  }
}
.about__nav-link--em a::before img {
  width: 100%;
}
.about__nav-link--active {
  color: #e62572;
}
@media only screen and (max-width: 767px) {
  .about__nav-link--active {
    margin: 15px auto 0 auto;
    width: 140px;
  }
}
.about__nav-link--active a {
  color: inherit;
  text-decoration: none;
}
.about__nav-link--active a::before {
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
  display: inline-block;
  vertical-align: text-top;
}
@media only screen and (max-width: 767px) {
  .about__nav-link--active a::before {
    height: 16px;
    margin: 2px 10px 0 0;
    width: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .about__nav-link--active a::before {
    height: 16px;
    margin: 2px 5px 0 0;
    width: 16px;
  }
}
.about__nav-link--active a::before img {
  width: 100%;
}
.about__nav-link--blank {
  color: #666;
}
@media only screen and (max-width: 767px) {
  .about__row {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) {
  .about__row {
    display: flex;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .about__sub {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .about__sub {
    background-repeat: no-repeat;
    background-position: 0 0;
    width: 300px;
  }
}
@media only screen and (min-width: 768px) {
  .about__sub-logo img {
    margin: 25px 95px 0 32px;
    width: 160px;
  }
}
@media only screen and (min-width: 768px) {
  .about__sub-nav-link {
    margin: 27px 90px 0 auto;
    width: 140px;
  }
}
.about__main {
  background-repeat: no-repeat;
  background-position: top left;
}
@media only screen and (max-width: 767px) {
  .about__main {
    height: 732px;
    width: 375px;
  }
}
@media only screen and (min-width: 768px) {
  .about__main {
    background-size: cover;
    height: 75vh;
    width: 900px;
    margin: 0 auto;
  }
}
.about__main-inner {
  overflow-y: scroll;
}
@media only screen and (max-width: 767px) {
  .about__main-inner {
    height: calc(100% - 4px);
    margin: 2px auto 0 auto;
    width: calc(100% - 50px);
  }
}
@media only screen and (min-width: 768px) {
  .about__main-inner {
    max-width: 865px;
    overflow: hidden;
    overflow-y: scroll;
    height: 75vh;
    width: calc(100% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .about__hmenu {
    height: 30px;
    margin: 0 14px 10px auto;
    width: 30px;
  }
  .about__hmenu::before {
    background-image: url(../img/icon-menu.png);
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    display: block;
    height: 100%;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .about__hmenu {
    display: none;
  }
}
.about__scroll {
  left: 50%;
  transform: translateY(0%) rotate(45deg);
  opacity: 0;
  width: 2em;
  height: 2em;
  background-color: transparent;
  z-index: 80;
  position: absolute;
  border-width: 0 0.25em 0.25em 0;
  border-style: solid;
  border-color: rgb(255, 255, 255);
}
@keyframes scrolldown {
  0% {
    transform: translateY(20%) rotate(45deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(0%) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: translateY(20%) rotate(45deg);
    opacity: 0.7;
  }
}

@media only screen and (min-width: 768px) {
  .text-line {
    background-size: cover;
    width: 900px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .text-line {
    background-size: cover;
    width: 380px;
    margin: 50px 20px;
  }
}

@media only screen and (min-width: 768px) {
  .text-line-inner {
    max-width: 900px;
    margin: 50px 175px;
  }
  .text-line-inner p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .text-line-inner {
    max-width: 380px;
  }
  .text-line-inner p {
    font-size: 11px;
    margin: 10px;
  }
  .text-line-inner h2 {
    font-size: 18px;
    margin: 20px 10px;
  }
}

.seal-btn {
  margin: 20px 0 0 0;
  text-align: center;
}
.seal-btn a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  border: 1px solid #fff;
  padding: 5px;
}

.circle-list {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.circle-main {
  padding: 5px;
  border-bottom: 1px solid;
  margin: 0 auto;
  max-width: 800px;
}

@media only screen and (min-width: 768px) {
  .circle-name {
    display: flex;
    margin-top: 20px;
  }
  .circle-name img {
    width: 100px;
    margin: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .circle-name {
    display: flex;
  }
  .circle-name img {
    width: 50px;
    margin: 10px;
  }
}

@media only screen and (min-width: 768px) {
  .circle-prod {
    display: flex;
    flex-wrap: wrap;
  }
  .circle-prod img {
    width: 150px;
    height: 150px;
    margin: 1.5em;
    object-fit: cover;
  }
}
@media only screen and (max-width: 767px) {
  .circle-prod img {
    margin: 4px;
    height: 100px;
    width: 100px;
  }
}/*# sourceMappingURL=style.css.map */