@charset "utf-8";

*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

  /* max-width: 100%;       */
  /* ビューポート幅を超えない */
  /* overflow-x: hidden; */
  /* 横スクロールを防止 */
}

#vdbanner {
  width: 0;
  height: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  font-family: "Zen Old Mincho", serif;
}

ul,
ol {
  list-style: none;
}

img {
  vertical-align: bottom;
}

.title:hover {
  opacity: 0.3;
  cursor: url(../img/icon.png), auto;
}

.main {
  color: rgb(63, 49, 49);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 29px 50px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
  background-color: rgb(255, 255, 255, 0.8);
}

body {
  padding-top: 100px;
  overflow-x: hidden;
}

.site-menu {
  display: flex;
  gap: 50px;
}

.menu-icon {
  display: none;
}

.site-menu ul {
  display: flex;
  justify-content: space-around;

}

.site-menu ul li {
  margin: 0 20px;
  opacity: 1;
  transition: all 0.5s ease;
}

.site-menu ul a:hover {
  opacity: 0.3;
  cursor: url(../img/botan.png), auto;
}

.site-menu ul li a {
  font-family: Libre Baskerville;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 21px;
}

.title {
  color: #3f3131;
  text-shadow: 5px 5px 5px rgba(63, 49, 49, 0.301);
  font-family: Libre Baskerville;
  font-size: 32px;
  font-weight: bold;
  background-image: linear-gradient(20deg,
      rgb(63, 49, 49) 45%,
      #fff 50%,
      rgb(63, 49, 49) 55%);
  background-size: 500% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: shine 10s;
}

@keyframes shine {
  0% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}








footer {
  color: rgb(63, 49, 49);
  font-weight: bold;
  /* background-color: #bb987980; */
  padding: 30px 0 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Libre Baskerville;
  line-height: 60px;
  background-image: url(../img/footer.png);
  /* background-attachment: fixed; */
  background-repeat: no-repeat;
  background-size: cover;
}

footer img:hover {
  opacity: 0.3;
  cursor: url(../img/ic.png), auto;
}

.okini {
  display: flex;
  gap: 50px;
  font-family: "Zen Old Mincho", serif;
  font-weight: bold;
  font-size: 18px;
}

.ftitle {
  font-size: 31px;
  padding-top: 29px;
  padding-bottom: 29px;
}

.ftitle a:hover {
  opacity: 0.3;
  cursor: url(../img/icon.png), auto;
}

.copyright {
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
  font-family: Libre Baskerville;
}

@media screen and (max-width: 960px) {

  body {
    max-width: 960px;
    overflow-x: hidden;
  }

  img {
    max-width: 960px;
    height: auto;
  }

  .sp-br {
    display: inline;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }

  .header-inner {
    height: 90px;
  }

  .main {
    padding: 35px 45px;
  }

  .title {
    font-size: 21px;
  }



  /* tuika */
  [type="checkbox"]:checked,
  [type="checkbox"]:not(:checked) {
    position: absolute;
    left: -9999px;
  }

  .menu-icon:checked+label,
  .menu-icon:not(:checked)+label {
    position: fixed;
    top: 40px;
    right: 75px;
    display: block;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    cursor: pointer;
    z-index: 1010;
  }

  .menu-icon:checked+label:before,
  .menu-icon:not(:checked)+label:before {
    position: absolute;
    content: '';
    display: block;
    width: 30px;
    height: 20px;
    z-index: 1020;
    top: 0;
    left: 0;
    border-top: 2px solid rgb(63, 49, 49);
    border-bottom: 2px solid rgb(63, 49, 49);
    transition: border-width 100ms 1500ms ease,
      top 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
      height 100ms 1600ms cubic-bezier(0.23, 1, 0.32, 1),
      background-color 200ms ease,
      transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu-icon:checked+label:after,
  .menu-icon:not(:checked)+label:after {
    position: absolute;
    content: '';
    display: block;
    width: 22px;
    height: 2px;
    z-index: 1020;
    top: 10px;
    right: 4px;
    background-color: rgb(63, 49, 49);
    margin-top: -1px;
    transition: width 100ms 1750ms ease,
      right 100ms 1750ms ease,
      margin-top 100ms ease,
      transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu-icon:checked+label:before {
    top: 10px;
    transform: rotate(45deg);
    height: 2px;
    background-color: rgb(63, 49, 49);
    border-width: 0;
    transition: border-width 100ms 340ms ease,
      top 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
      height 100ms 300ms cubic-bezier(0.23, 1, 0.32, 1),
      background-color 200ms 500ms ease,
      transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .menu-icon:checked+label:after {
    width: 30px;
    margin-top: 0;
    right: 0;
    transform: rotate(-45deg);
    transition: width 100ms ease,
      right 100ms ease,
      margin-top 100ms 500ms ease,
      transform 200ms 1700ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .site-menu {
    position: fixed;
    top: 11px;
    right: 50px;
    display: block;
    width: 80px;
    height: 80px;
    padding: 0;
    margin: 0;
    z-index: 1009;
    overflow: hidden;
    /* box-shadow: 0 8px 30px 0 rgba(63, 49, 49, 0.3); */
    background-color: #fcdbbe4f;
    animation: border-transform 7s linear infinite;
    transition: top 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
      right 350ms 1100ms cubic-bezier(0.23, 1, 0.32, 1),
      transform 250ms 1100ms ease,
      width 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1),
      height 650ms 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  @keyframes border-transform {

    0%,
    100% {
      border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    }

    14% {
      border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
    }

    28% {
      border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
    }

    42% {
      border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
    }

    56% {
      border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
    }

    70% {
      border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
    }

    84% {
      border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
    }
  }

  .menu-icon:checked~.site-menu {
    animation-play-state: paused;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 200%;
    height: 200%;
    transition: top 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
      right 350ms 700ms cubic-bezier(0.23, 1, 0.32, 1),
      transform 250ms 700ms ease,
      width 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1),
      height 750ms 1000ms cubic-bezier(0.23, 1, 0.32, 1);
  }

  .site-menu ul {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1006;
    text-align: center;
    transform: translateY(-50%);
    list-style: none;
  }

  .site-menu ul li {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    margin: 10px 0;
    text-align: center;
    list-style: none;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: all 250ms linear;
  }

  .site-menu ul li:nth-child(1) {
    transition-delay: 200ms;
  }

  .site-menu ul li:nth-child(2) {
    transition-delay: 150ms;
  }

  .site-menu ul li:nth-child(3) {
    transition-delay: 100ms;
  }

  .site-menu ul li:nth-child(4) {
    transition-delay: 50ms;
  }

  .site-menu ul li a {
    font-size: 6vh;
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 800;
    display: inline-block;
    position: relative;
    color: rgb(63, 49, 49);
    transition: all 250ms linear;
  }

  .site-menu ul li a:hover {
    text-decoration: none;
    color: #ffeba7;
  }

  .site-menu ul li a:after {
    display: block;
    position: absolute;
    top: 50%;
    content: '';
    height: 2vh;
    margin-top: -1vh;
    width: 0;
    left: 0;
    background-color: #353746;
    opacity: 0.8;
    transition: width 250ms linear;
  }

  .site-menu ul li a:hover:after {
    width: 100%;
  }


  .menu-icon:checked~.site-menu ul li {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 350ms ease,
      transform 250ms ease;
  }

  .menu-icon:checked~.site-menu ul li:nth-child(1) {
    transition-delay: 1400ms;
  }

  .menu-icon:checked~.site-menu ul li:nth-child(2) {
    transition-delay: 1480ms;
  }

  .menu-icon:checked~.site-menu ul li:nth-child(3) {
    transition-delay: 1560ms;
  }

  .menu-icon:checked~.site-menu ul li:nth-child(4) {
    transition-delay: 1640ms;
  }
}

@media screen and (max-width: 480px) {

  body {
    max-width: 480px;
    overflow-x: hidden;
  }

  img {
    max-width: 480px;
    height: auto;
  }

  .sp-br {
    display: inline;
  }

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }

  .header-inner {
    height: 60px;
  }

  .main {
    padding: 39px 25px;
  }

  .title {
    font-size: 18px;
  }

  .site-menu ul li a {
    font-size: 3vh;
  }

  .first-view {
    height: calc(45vh - 50px);
  }

  .first-view h2 {
    font-size: 11px;
  }

}