@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;
}

button {
  background-color: transparent;
  border: none;
  outline: none;
  color: inherit;
}

body {
  font-family: "Source Serif 4", serif;
  font-size: 16px;
  /* color: azure; */
  line-height: 1;
}

img {
  max-width: 100%;
}

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 {
  background-image: url(../images/firstview-contact.png);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 1440/423;
}

.first-view h1 {
  background: #00000099;
  padding: 2vw 0;
  text-align: center;
  align-items: center;
  position: relative;
  top: 10vw;
}

.background {
  background-image: url(../images/background/pink.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  aspect-ratio: 4/3;
  display: flex;
  justify-content: center;
  align-items: center;
}




.contact {
  width: 938px;
  height: 740px;
  padding: 80px 125px;
  background: #fff;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.contact>h2,
.contact>h3 {
  color: #734f00;
  line-height: 50px;
}

.contact ul {
  width: 500px;
  margin: 0 auto;
}

.contact ul li {
  width: 100%;
  font-weight: bold;
  padding: 50px 0 10px;
  text-align: left;
}

.contact label span {
  display: block;
}

.contact p {
  color: red;
}

input {
  width: 500px;
  height: 37px;
  border: none;
  background: gainsboro;
}

textarea {
  width: 500px;
  height: 148px;
  padding-top: 5px;
  padding-left: 10px;
  border: none;
  background: gainsboro;
  font-size: 16px;
  color: #734f00;
}

.message-button button {
  width: 90px;
  background: #734f00;
  height: 30px;
  margin: 10px auto 20px;
  border-radius: 5px;
  cursor: pointer;
  /* display: inline-block; */
  padding: 5px 0;
  color: white;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  /* border: 1px solid transparent; */
  box-shadow: 0 5px 0 rgba(179, 115, 0, 1);
  opacity: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

.message-button button:hover {
  box-shadow: 0 2px 0 rgba(179, 115, 0, 1);
  transform: translateY(3px);
  opacity: 0.9;
}


input[type="text"] {
  padding-left: 5px;
  font-size: 16px;
  color: #734f00;
  border: 0;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}

input[type="text"]:focus {
  border: 2px solid #734f00;
  outline: 0;
}





/* 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;
}



/* 文字アニメ */
.textAnime {
  overflow: hidden;
}

.textAnime span {
  display: inline-block;
  font-size: 45px;
  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);
  }
}



@keyframes drift {
  from {
    transform: rotate(0deg);
  }

  from {
    transform: rotate(360deg);
  }
}