@charset "UTF-8";
:root {
  /*""color""*/
  --base-color: #ffffff;
  --main-color: #e2e2e2;
  --contrast-color: #1b1b1b;
  --accent-color: #26a69a;
  --phonto-black-color: #1b1b1b;
  --phonto-white-color: #cccccc;
  /*""phontosize""*/
  --normal-size: 16px;
  --important-size: 20px;
  --title-size: 28px;
  --main-title-size: 36px;
  --fade-in-title-size: 96px;
  --viewWidth: 100vw;
}

* {
  box-sizing: border-box;
}

body {
  display: flex;
  flex-flow: column;
  font-family: "Meiryo UI", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  color: var(--phonto-black-color);
  width: var(--viewWidth);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

span {
  display: inline-block;
}

body {
  margin: 0;
}

/*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
                          nav
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*/
a {
  text-decoration: none;
  transition: 0.3s;
}

.navburger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4em;
  background: #2d303a;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.logotype {
  font-family: sans-serif;
  font-size: 36px;
  color: #ffffff;
}

nav {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 48em) {
  nav nav {
    display: inline;
  }
}

.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}
@media screen and (max-width: 48em) {
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 15em;
    margin: -600px 0 0 0;
    padding: 0.6em 0;
    text-align: center;
    background-color: #2d303a;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition-duration: 0.5s;
  }
}

.red {
  color: #f06c64;
}

.menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em 0 1.9em;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 1.5vw;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 48em) {
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 18px;
    transition-duration: 0.5s;
  }
  .menu__item:hover {
    background-color: #4f5464;
  }
}

#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #f06c64;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #f06c64;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
}

.menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  bottom: 2px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 2;
}
.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}
.menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  content: "";
  top: -8px;
  transition-duration: 0.25s;
}
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  content: "";
  top: 8px;
  transition-duration: 0.25s;
}
@media screen and (min-width: 48.01em) {
  .menu__btn {
    display: none;
  }
}

/*"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
                          hero
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*/
.font-inter {
  font-family: "Inter", sans-serif;
}

.hero-section {
  width: 100%;
  height: 300px;
  background-image: url("/path/to/hero-image.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.hero-section h1 {
  font-size: 2.5rem;
  /* 40px */
  margin-bottom: 1rem;
  /* 16px */
}

h1 {
  display: inline-block;
  background: linear-gradient(45deg, #fa8bff 16%, #2bd2ff 57%, #2bff88 90%);
  background: -webkit-linear-gradient(45deg, #fa8bff 16%, #2bd2ff 57%, #2bff88 90%);
  background-size: 300% auto;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientEffect 2.5s infinite alternate;
}

@keyframes gradientEffect {
  from {
    background-position: left;
  }
  to {
    background-position: right;
  }
}
button {
  padding: 0.75rem 1.5rem;
  /* 12px 24px */
  background-color: #004d40;
  color: white;
  border-radius: 0.5rem;
  /* 8px */
  transition: background-color 0.3s;
}

button:hover,
button:focus {
  background-color: #00796b;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 173, 187, 0.5);
  /* Adding focus outline for accessibility */
}

@keyframes rotation {
  0% {
    transform: rotate3d(0, 0, 0, 0deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 720deg);
  }
}
.cat-picture {
  width: 400px;
  height: 400px;
  margin: 60px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  background: url(../image/gratisography-witch-cat-800x525.jpg) center;
  background-size: auto 100%;
  box-shadow: -20px -10px 40px rgba(0, 0, 0, 0.75) inset;
  animation: rotation 0.1s linear infinite;
}
.cat-picture::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: auto;
  width: 90px;
  height: 4px;
  border-radius: 50%;
  background: #000;
  filter: blur(4px);
}

.vr-tourism-section {
  text-align: center;
  padding: 2.5rem;
  /* 40px */
}

.vr-tourism-section h2 {
  font-size: 1.5rem;
  /* 24px */
  margin-bottom: 2rem;
  /* 32px */
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 1.75rem;
    /* Adjusting for smaller screens */
  }
  .vr-tourism-section h2 {
    font-size: 1.25rem;
  }
  .vr-tourism-section {
    padding: 1.25rem;
  }
}
/*""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
                                                        footer
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""*/
.footer {
  padding: 2rem;
  font-size: var(--normal-size);
  color: #dbdada;
  background: #2d303a;
  margin-top: 16px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer a {
  color: #999;
  text-decoration: none;
}

.footer a:hover {
  color: white;
}

.flex {
  display: flex;
}

.footer hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #e5e7eb;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__navi li {
  display: inline-block;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

@media (min-width: 800px) {
  .md-flex {
    display: flex;
  }
  .md-justify-between {
    justify-content: space-between;
  }
  .copyright {
    display: inline-block;
    margin-right: auto;
  }
}
@media screen and (min-width: 800px) and (max-width: 801px) {
  .copyright {
    margin: 100px;
  }
}
.icon {
  width: 20px;
  height: 20px;
}

.link-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 801px) {
  .link-flex {
    flex-direction: column;
  }
}

.link-tab {
  margin-left: 12px;
}
@media screen and (max-width: 801px) {
  .link-tab {
    margin-top: 8px;
  }
}/*# sourceMappingURL=concept.css.map */