@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Mystery+Quest&family=Playwrite+MX+Guides&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&family=Zen+Antique&family=Zen+Kaku+Gothic+Antique&display=swap');
*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Source Serif 4", serif;
  font-size: 16px;
  /* color: azure; */
  line-height: 1;
}

img {
  max-width: 100%;
}



/* header */

header {
  height: 100px;
  background-image: url(../images/background/header-back.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header-inner {
  max-width: 1200px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.header-logo img {
  width: 70px;
  margin: 20px auto 0px;
}

.site-menu ul {
  display: flex;
  align-items: center;
  text-align: center;
}

.site-menu ul li {
  font-weight: bold;
  color: #734f00;
  padding-bottom: 5px;
  position: relative;
  width: 250px;
}

.site-menu ul li a {
  display: block;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  padding-bottom: 5px;

}

.site-menu li a::before {
  background: #a16e007f;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.site-menu li a:hover::before {
  background: linear-gradient(0deg, #da805a, #ff1787);
  -webkit-text-fill-color: transparent;
  transform-origin: left top;
  transform: scale(1, 1);
}

.site-menu li a.current::before {
  transform-origin: left top;
  transform: scale(1, 1);
}



/* main */

.first-view {
  width: 100%;
  background-image: url(../images/firstview.png);
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1451/423;
  position: relative;
}

.first-view h1 {
  width: 100%;
  background: #00000099;
  padding: 2vw 0;
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  position: relative;
  color: azure;
  font-size: 3vw;
  top: 13vw;
}

.box {
  width: 100%;
  height: 30%;
  background: rgba(0, 0, 0, 0.40);
  position: absolute;
  top: 10vw;
  display: flex;
  justify-content: center;
}

.menu-list {
  background-image: url(../images/background/pink.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  color: #734f00;
  padding-bottom: 100px;
}


.about h2 {
  padding: 80px 0 40px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Zen Antique", serif;
  font-style: normal;
  font-size: 25px;
}

.about p {
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
  font-size: 20px;
  line-height: 40px;
}




.arrow::before,
.arrow::after {
  margin-top: 5px;
  content: "";
  width: 300px;
  height: 20px;
  display: block;
  background: url(../images/item2/Arrow\ 1.png) no-repeat center/contain;
  flex-shrink: 0;
}

.arrow {
  padding: 80px 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 5vw;
  font-size: 30px;
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  overflow: hidden;

}

.arrow h2 {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: bold;
}

.arrow::after {
  scale: -1 1;
}

.item-list {
  width: 900px;
  max-width: 70%;
  margin: 0 auto;
  display: grid;
  gap: 10vw;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
}


.item-list img {
  width: 100%;
  transition-duration: .4s;

}

.item-list img:hover {
  transform: scale(1.1);
  box-shadow: 10px 9px 20px #734f00;
}

.item-list dl {
  font-weight: bold;
  margin-top: 15px;
font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.item-list dt {
  padding: 20px 0 5px;
  font-size: 16px;
}

.item-list dd {
  display: flex;
  justify-content: flex-end;
}


/* footer */

footer {
  width: 100%;
  background-image: url(../images/background/footer-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: #734f00;
  font-weight: bold;
}

.site-menu2 {
  width: 100%;
}

.site-menu2 ul {
  display: flex;
  padding: 20px 0;
  justify-content: space-around;
}


.site-menu2 a {
  position: relative;
  /* 文字色は透明にして背景が見えるようにする */
  color: transparent;
  font-size: 20px;

  /* オレンジと黒が50%の位置で切り替わるグラデーション */
  background: linear-gradient(to right, #ff1787 50%, #da805a, #764f00 50%) 100%;
  /* 背景をテキストで切り抜く */
  background-clip: text;

  /* 横幅は200%にしてグラデーションの青部分は見えないようにする */
  background-size: 200% 100%;

  transition: background-position 0.3s;
}

.site-menu2 a::after {
  visibility: hidden;
  transition: 0.3s;
}


.site-menu2 a:hover {
  width: 100%;
  background-position: 0 100%;
}




.footer-inner {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.footer-logo img {
  width: 100px;
  padding-bottom: 10px;
}

.footer-inner ul {
  display: flex;
}

.footer-inner li {
  padding: 5px 10px;
  font-weight: bold;
}

.footer-inner p {
  padding: 10px 0 20px;
  font-weight: bold;
}



@media(max-width:768px) {
  .item-list {
    max-width: 90%;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media(max-width:450px) {
  .item-list {
    max-width: 80%;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}


/* 文字アニメ */
.textAnime {
  overflow: hidden;
}

.textAnime span {
  display: inline-block;
  font-size: 40px;
  text-shadow: 5px 5px 5px #000000;
  color: #fff;
  font-family: "Zen Antique", serif;
  font-weight: bold;
  letter-spacing: 3px;
  line-height: 1;
  transform: translateY(100px);
  animation: textAnime 1s both;
}

@keyframes textAnime {
  100% {
    transform: translateY(0px);
  }
}