@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

#loading {
  position: fixed;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.8823529412);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 1;
  transition: opacity 0.8s ease;
}

.loading-logo {
  width: 250px;
  opacity: 0;
  -webkit-animation: logoFadeIn 1s ease-out forwards;
          animation: logoFadeIn 1s ease-out forwards;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.loading-logo img {
  width: 100%;
}

@-webkit-keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes logoFadeIn {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.container {
  display: flex;
  background-color: #f8f5f0;
}

.wrapper {
  width: 75%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding-top: 150px;
  padding-inline: 10px;
}

aside {
  width: 25%;
  background-color: rgba(255, 215, 190, 0.3647058824);
}

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

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: black;
}

h2,
h3,
h4,
h5 {
  font-weight: normal;
}

h2 {
  font-size: 56px;
}

h3 {
  font-size: 24px;
}

@media (max-width: 970px) {
  .container {
    flex-direction: column;
  }
  .wrapper {
    width: 100%;
    max-width: 370px;
    padding-top: 150px;
  }
  aside {
    display: none;
  }
}
.title {
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 8px;
  margin-bottom: 20px;
}
.title::before, .title::after {
  content: "";
  width: 200px;
  border-top: 3px dashed #A8C09F;
  margin-inline: 30px;
}

@media (max-width: 970px) {
  h2 {
    font-size: 38px;
    margin-bottom: 50px;
  }
  h3 {
    font-size: 18px;
  }
  .title {
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .title::before, .title::after {
    width: 80px;
    margin-inline: 10px;
  }
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  gap: 10px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
}
.btn span:nth-child(2) {
  font-size: 32px;
}
.btn .icon {
  background: #9b9b9b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn .icon:hover {
  background: #A8C09F;
  width: 43px;
  height: 43px;
}

@media (max-width: 970px) {
  .btn {
    flex-wrap: wrap;
  }
  .btn span:nth-child(2) {
    font-size: 20px;
  }
  .btn .icon {
    width: 34px;
    height: 34px;
  }
  .btn .icon:hover {
    width: 34px;
    height: 34px;
  }
}
.main-visual {
  position: relative;
  height: 100vh;
}
.main-visual img {
  width: 100%;
  height: 100vh;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  background: linear-gradient(#f8f5f0, #f8f5f0 255, 255, 255, 0.9);
}

.main-visual li {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-animation: fade 15s infinite;
          animation: fade 15s infinite;
}
.main-visual li::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  box-shadow: inset 0 -30px 30px -1px #f8f5f0;
}
.main-visual li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.main-visual li:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.main-visual li:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  max-width: 300px;
  height: 100vh;
  padding: 12px;
  margin: 0 auto;
}
header img {
  width: 100%;
}

.open-icon,
.address-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 10px;
  border: 3px solid #FFD7BE;
  border-radius: 99999px;
  margin-top: 10px;
  background-color: white;
}
.open-icon p,
.address-icon p {
  font-size: 14px;
}

.open-icon h2 {
  width: 50px;
  margin-right: 10px;
  line-height: 8px;
}
.open-icon h2 img {
  width: 100%;
}

.address-icon h2 {
  width: 30px;
  margin-right: 10px;
}
.address-icon h2 img {
  width: 100%;
  vertical-align: middle;
}

.location-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.location-btn span {
  font-size: 16px;
  margin-right: 10px;
}
.location-btn .location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #9b9b9b;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.location-btn .location-icon:hover {
  background: #A8C09F;
}

#scroll {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: center;
  margin-top: 10px;
}
#scroll li {
  width: 70px;
  height: 70px;
  padding: 5px;
  border: 3px solid #FFD7BE;
  border-radius: 10px;
  background-color: white;
}
#scroll li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 970px) {
  aside,
.open-icon {
    display: none;
  }
  .hamburger {
    display: block;
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer;
    z-index: 10;
    margin: 10px;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #9b9b9b;
    margin: 6px 0;
    transition: all 0.3s ease;
    position: absolute;
  }
  .hamburger span:nth-child(1) {
    top: 25%;
  }
  .hamburger span:nth-child(2) {
    top: 52%;
  }
  .hamburger span:nth-child(3) {
    top: 79%;
  }
  .open aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffdec9;
    z-index: 15;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    gap: 20px;
  }
  .open aside h1 {
    margin-bottom: 20px;
  }
  .open aside h1 img {
    width: 300px;
  }
  .open aside h2 {
    width: 40px;
    margin-bottom: 3px;
  }
  .open aside #scroll {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .open aside #scroll li {
    width: 80px;
    height: 80px;
  }
  .open .hamburger {
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 30;
    margin: 10px;
    position: fixed;
    top: 10px;
    left: 10px;
  }
  .open .hamburger span {
    background-color: #9b9b9b;
    z-index: 30;
  }
  .open .hamburger span:nth-child(1) {
    top: 50%;
    transform: rotate(-225deg);
  }
  .open .hamburger span:nth-child(2) {
    display: none;
  }
  .open .hamburger span:nth-child(3) {
    top: 50%;
    transform: rotate(225deg);
  }
}
#message {
  font-size: clamp(16px, 2.5vw, 24px);
  line-height: 1.8;
  margin-bottom: 5vw;
  word-break: keep-all;
}

#event-detail {
  margin-top: 150px;
}

.detail {
  padding-bottom: 80px;
}
.detail p {
  font-size: 30px;
  letter-spacing: 5px;
}

.spot p:nth-child(3) {
  font-size: 20px;
  margin-top: 20px;
}

.fee dl,
.park dl {
  width: 650px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 15px;
}

.fee dt,
.fee dd,
.park dt,
.park dd {
  width: 50%;
  font-size: 30px;
  margin-bottom: 5px;
}

.fee p {
  font-size: 24px;
}

.park p {
  width: 500px;
  margin: auto;
  border-bottom: 2px solid #9b9b9b;
}

@media (max-width: 970px) {
  #event-detail {
    margin-top: 80px;
    text-align: center;
  }
  .detail {
    padding-bottom: 50px;
  }
  .detail p {
    font-size: 20px;
  }
  .fee dl,
.park dl {
    width: 320px;
    margin-bottom: 20px;
  }
  .fee dt {
    width: 60%;
    font-size: 18px;
  }
  .fee dd {
    width: 40%;
    font-size: 18px;
  }
  .park dt,
.park dd {
    font-size: 18px;
  }
  .park p {
    width: 300px;
  }
}
#news {
  margin-top: 150px;
}

article {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 50px;
}
article .news-img {
  width: 150px;
  height: 150px;
}
article .news-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
article .news-img img:hover {
  opacity: 0.6;
}
article .news-text {
  text-align: left;
  font-size: 20px;
  margin-left: 50px;
}
article .news-text:hover {
  color: rgb(166, 165, 165);
}

.br-sp {
  display: inline;
}

@media (max-width: 970px) {
  #news {
    width: 100%;
    margin-top: 100px;
    justify-content: space-between;
  }
  article {
    padding-block: 30px;
  }
  article .news-img {
    width: 120px;
    height: 120px;
  }
  article .news-text {
    width: 60%;
    font-size: 16px;
    text-align: right;
    margin-left: 0px;
  }
  .br-sp {
    display: block;
  }
  .news-btn {
    margin-top: 50px;
  }
}
.news-btn {
  width: 180px;
  height: 60px;
  line-height: 50px;
  display: inline-block;
  position: relative;
  margin-top: 20px;
}
.news-btn::before, .news-btn::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background: #A8C09F;
  transition: all 0.3s ease;
}
.news-btn span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.news-btn span::before, .news-btn span::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background: #A8C09F;
  transition: all 0.3s ease;
}
.news-btn::before,
.news-btn span::before {
  width: 2px;
  height: 50%;
}
.news-btn::after,
.news-btn span::after {
  width: 20%;
  height: 2px;
}
.news-btn:hover::before,
.news-btn span:hover::before {
  height: 100%;
}
.news-btn:hover::after,
.news-btn span:hover::after {
  width: 100%;
}

#look {
  margin-top: 150px;
}

.map {
  width: 750px;
  margin-block: 50px;
}
.map img {
  width: 100%;
}

#look .title {
  margin-block: 50px;
}

.look1,
.look2 {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.look1 .look-img1,
.look1 .look-img2,
.look2 .look-img1,
.look2 .look-img2 {
  width: 380px;
  height: 380px;
  border-radius: 50%;
}
.look1 .look-img1 img,
.look1 .look-img2 img,
.look2 .look-img1 img,
.look2 .look-img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.look1 .text,
.look2 .text {
  width: 420px;
  text-align: center;
  padding: 10px;
}
.look1 .text h4,
.look2 .text h4 {
  font-size: 32px;
  margin-bottom: 50px;
}
.look1 .text p,
.look2 .text p {
  font-size: 24px;
}

.look2 {
  flex-direction: row-reverse;
}

@media (max-width: 970px) {
  #look {
    margin-top: 100px;
  }
  .map {
    margin-block: 0px;
  }
  .look1,
.look2 {
    flex-direction: column;
    margin-bottom: 50px;
  }
  .look1 .look-img1,
.look1 .look-img2,
.look2 .look-img1,
.look2 .look-img2 {
    width: 280px;
    height: 280px;
  }
  .look1 .text,
.look2 .text {
    width: 360px;
    padding: 0px;
  }
  .look1 .text h4,
.look2 .text h4 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .look1 .text p,
.look2 .text p {
    font-size: 18px;
  }
}
/*/////lookアニメーション/////*/
.move1 {
  -webkit-animation: move1 0.5s ease-out 0s 1 forwards;
          animation: move1 0.5s ease-out 0s 1 forwards;
}

@-webkit-keyframes move1 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes move1 {
  0% {
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.move2 {
  -webkit-animation: move2 0.5s ease-out 0s 1 forwards;
          animation: move2 0.5s ease-out 0s 1 forwards;
}

@-webkit-keyframes move2 {
  0% {
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes move2 {
  0% {
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
#play {
  margin-top: 150px;
}
#play .title {
  margin-block: 50px;
}

.play-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-block: 100px;
}
.play-list .play-img {
  width: 200px;
  height: 200px;
  border: 3px solid #9b9b9b;
  border-radius: 50%;
}
.play-list .play-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.play-list span {
  display: block;
  font-size: 24px;
}

.event {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.event .event-img {
  width: 400px;
  height: 400px;
  border-radius: 50%;
}
.event .event-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.event .event-text {
  width: 400px;
  text-align: center;
}
.event .event-text p {
  font-size: 32px;
}

@media (max-width: 970px) {
  #play {
    margin-top: 100px;
  }
  #play .title {
    margin-block: 0px;
  }
  .play-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-block: 50px;
  }
  .play-list span {
    font-size: 20px;
  }
  .event {
    flex-direction: column;
    margin-top: 30px;
  }
  .event .event-img {
    width: 280px;
    height: 280px;
  }
  .event .event-text {
    width: 370px;
  }
  .event .event-text p {
    font-size: 24px;
  }
}
/*/////playアニメーション/////*/
.play1,
.play2,
.play3 {
  opacity: 0;
  transform: scale(0.1);
}

.play1.balloon {
  -webkit-animation: balloon 0.5s ease-out 0s 1 forwards;
          animation: balloon 0.5s ease-out 0s 1 forwards;
}

.play2.balloon {
  -webkit-animation: balloon 0.5s ease-out 0.3s 1 forwards;
          animation: balloon 0.5s ease-out 0.3s 1 forwards;
}

.play3.balloon {
  -webkit-animation: balloon 0.5s ease-out 0.6s 1 forwards;
          animation: balloon 0.5s ease-out 0.6s 1 forwards;
}

@-webkit-keyframes balloon {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes balloon {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#eat {
  margin-top: 150px;
}

.eat-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin-block: 100px;
}
.eat-list .eat-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid #9b9b9b;
  background-color: white;
}
.eat-list .eat-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.eat-list span {
  display: block;
  font-size: 24px;
}

@media (max-width: 970px) {
  #eat {
    margin-top: 100px;
  }
  .eat-list {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-block: 50px;
  }
  .eat-list span {
    font-size: 20px;
  }
}
/*/////playアニメーション/////*/
.eat1,
.eat2,
.eat3 {
  opacity: 0;
  transform: scale(0.1);
}

.eat1.balloon {
  -webkit-animation: balloon 0.5s ease-out 0s 1 forwards;
          animation: balloon 0.5s ease-out 0s 1 forwards;
}

.eat2.balloon {
  -webkit-animation: balloon 0.5s ease-out 0.3s 1 forwards;
          animation: balloon 0.5s ease-out 0.3s 1 forwards;
}

.eat3.balloon {
  -webkit-animation: balloon 0.5s ease-out 0.6s 1 forwards;
          animation: balloon 0.5s ease-out 0.6s 1 forwards;
}

@keyframes balloon {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
#gallery {
  margin-top: 150px;
}

.slide2,
.slide3 {
  max-width: 100%;
  margin: auto;
  padding-block: 50px;
}
.slide2 li,
.slide3 li {
  height: 200px;
  flex-shrink: 0;
  padding: 0 15px;
}
.slide2 img,
.slide3 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide3 {
  direction: rtl;
}

@media (max-width: 970px) {
  #gallery {
    margin-top: 100px;
  }
  .slide2,
.slide3 {
    width: 300px;
    padding-block: 25px;
  }
}
#access {
  margin-top: 150px;
  margin-bottom: 50px;
}
#access h2 {
  margin-bottom: 50px;
}
#access h4 {
  font-size: 28px;
  margin-bottom: 50px;
}

.car,
.train {
  position: relative;
}

.car li,
.train li {
  display: inline-block;
  width: 500px;
  padding: 40px;
  margin-bottom: 80px;
  font-size: 25px;
  border: 1px solid #9b9b9b;
  background-color: #a8c09f;
  color: white;
  border-radius: 15px;
  position: relative;
  z-index: 5;
}

.car::before,
.train::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 400px;
  background-color: rgba(155, 155, 155, 0.4431372549);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 970px) {
  #access {
    margin-top: 100px;
  }
  #access h4 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .car li,
.train li {
    width: 350px;
    padding: 20px;
    margin-bottom: 50px;
    font-size: 20px;
  }
  .car::before,
.train::before {
    width: 30px;
    height: 300px;
  }
}
#footer {
  margin-top: 100px;
}
#footer .contact-btn {
  display: block;
  padding-block: 50px;
  margin-inline: 100px;
  font-size: 40px;
  border: 1px solid #9b9b9b;
  background-color: rgba(255, 215, 190, 0.4784313725);
  letter-spacing: 24px;
  margin-bottom: 50px;
}
#footer .contact-btn:hover {
  border: 3px solid #9b9b9b;
}

@media (max-width: 970px) {
  #footer {
    margin-top: 50px;
  }
  #footer .contact-btn {
    display: block;
    padding-block: 50px;
    margin-inline: 20px;
    font-size: 28px;
    letter-spacing: 8px;
  }
}
.top-btn {
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 25px;
  font-size: 16px;
  cursor: pointer;
  padding-bottom: 50px;
}
.top-btn span:nth-child(2) {
  font-size: 24px;
}
.top-btn .icon {
  background: #9b9b9b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-btn .icon:hover {
  background: #A8C09F;
  width: 43px;
  height: 43px;
}

.sidepage-container {
  max-width: 100%;
  margin: 0 auto;
  background-color: #f8f5f0;
}
.sidepage-container h2 {
  padding-left: 10px;
}
.sidepage-container .line-img {
  width: 100vw;
  margin: 0 calc(-50vw + 50%);
  overflow: hidden;
  height: 200px;
}
.sidepage-container .line-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 970px) {
  .sidepage-container h2 {
    margin-bottom: 0px;
  }
  .sidepage-container .line-img {
    height: 100px;
  }
}
.back-btn {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 25px;
  font-size: 16px;
  cursor: pointer;
  padding-bottom: 20px;
  padding-left: 30px;
}
.back-btn span:nth-child(2) {
  font-size: 28px;
}
.back-btn .icon {
  background: #9b9b9b;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.back-btn .icon:hover {
  background: #A8C09F;
  width: 43px;
  height: 43px;
}

@media (max-width: 970px) {
  .back-btn {
    margin-top: 30px;
    padding-left: 15px;
  }
  .back-btn span:nth-child(2) {
    font-size: 18px;
  }
  .back-btn .icon {
    width: 34px;
    height: 34px;
  }
  .back-btn .icon:hover {
    width: 34px;
    height: 34px;
  }
}
#news1 {
  width: 900px;
  margin: 0 auto;
}

.page-btn {
  text-align: center;
  font-size: 24px;
}
.page-btn a {
  border-bottom: 2px solid black;
  margin-left: 5px;
}
.page-btn a:hover {
  color: rgb(166, 165, 165);
}

@media (max-width: 970px) {
  #news1 {
    width: 100%;
    justify-content: space-between;
  }
  .page-btn {
    font-size: 16px;
  }
  .page-btn a {
    border-bottom: 1px solid black;
  }
}
#news2 {
  width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 100px;
}
#news2 .news2-img {
  width: 30%;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
}
#news2 .news2-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#news2 .news2-text {
  width: 70%;
  text-align: left;
  padding-inline: 20px;
}
#news2 .news2-text h5 {
  font-size: 32px;
  margin-bottom: 30px;
}
#news2 .news2-text p {
  font-size: 24px;
  letter-spacing: 5px;
  margin-bottom: 20px;
}

@media (max-width: 970px) {
  #news2 {
    width: 370px;
    padding-inline: 5px;
    flex-direction: column;
    margin-bottom: 50px;
  }
  #news2 .news2-img {
    width: 100%;
  }
  #news2 .news2-text {
    width: 100%;
  }
  #news2 .news2-text h5 {
    font-size: 24px;
  }
  #news2 .news2-text p {
    font-size: 19px;
    letter-spacing: 2px;
  }
}
.event-schedule {
  width: 900px;
  margin: 0 auto;
  margin-top: 80px;
  margin-bottom: 100px;
}

.day {
  display: flex;
  justify-content: center;
  text-align: center;
}
.day p {
  position: relative;
  font-size: 28px;
  margin-right: 30px;
}

.schedule {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 750px;
  padding-top: 30px;
}
.schedule::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background-color: rgba(155, 155, 155, 0.4431372549);
  top: 3px;
  left: 0;
}
.schedule li {
  display: inline-block;
  position: relative;
  font-size: 20px;
}
.schedule li::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  background-color: rgba(155, 155, 155, 0.4431372549);
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
}

.stage1,
.stage2,
.stage3 {
  display: inline-block;
  margin-block: 10px;
}
.stage1::before,
.stage2::before,
.stage3::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent black transparent;
  border-width: 0px 10px 17.32px 10px;
}
.stage1 p:nth-child(2),
.stage2 p:nth-child(2),
.stage3 p:nth-child(2) {
  font-size: 28px;
}
.stage1 p:nth-child(3),
.stage2 p:nth-child(3),
.stage3 p:nth-child(3) {
  font-size: 20px;
}

.stage1 {
  margin-left: 306px;
  position: static;
}

.stage2 {
  margin-left: 530px;
  position: static;
}

.stage3 {
  margin-left: 204px;
  position: static;
}

@media (max-width: 970px) {
  .event-schedule {
    display: flex;
    position: relative;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 80px;
  }
  .day {
    width: 30%;
    flex-direction: column;
  }
  .day p {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
  }
  .schedule {
    flex-direction: column;
    width: 370px;
    height: 300px;
    padding-left: 20px;
  }
  .schedule::before {
    width: 5px;
    height: 100%;
    top: 24px;
    left: 23px;
  }
  .schedule li {
    width: 130px;
    font-size: 16px;
  }
  .schedule li::before {
    top: 50%;
    left: -25px;
    left: 0px;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
  }
  .stage1::before,
.stage2::before,
.stage3::before {
    border-color: transparent black transparent transparent;
    border-width: 6.5px 11.26px 6.5px 0px;
  }
  .stage1 span,
.stage2 span,
.stage3 span {
    font-size: 13px;
  }
  .stage1 p:nth-child(2),
.stage2 p:nth-child(2),
.stage3 p:nth-child(2) {
    font-size: 16px;
  }
  .stage1 p:nth-child(3),
.stage2 p:nth-child(3),
.stage3 p:nth-child(3) {
    font-size: 16px;
  }
  .event-schedule:nth-of-type(1) .stage1 {
    position: absolute;
    top: 50px;
    left: -172px;
  }
  .event-schedule:nth-of-type(1) .stage2 {
    position: absolute;
    top: 143px;
    left: -396px;
  }
  .event-schedule:nth-of-type(2) .stage1 {
    position: absolute;
    top: 50px;
    left: -168px;
  }
  .event-schedule:nth-of-type(2) .stage2 {
    position: absolute;
    top: 143px;
    left: -394px;
  }
  .event-schedule:nth-of-type(3) .stage3 {
    position: absolute;
    top: 20px;
    left: -61px;
  }
  .event-schedule:nth-of-type(3) .stage2 {
    position: absolute;
    top: 144px;
    left: -389px;
  }
  .event-schedule:nth-of-type(4) .stage3 {
    position: absolute;
    top: 19px;
    left: -67px;
  }
  .event-schedule:nth-of-type(4) .stage2 {
    position: absolute;
    top: 144px;
    left: -396px;
  }
  .event-schedule:nth-of-type(5) .stage3 {
    position: absolute;
    top: 19px;
    left: -66px;
  }
  .event-schedule:nth-of-type(5) .stage2 {
    position: absolute;
    top: 145px;
    left: -395px;
  }
}
#contact {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
#contact .tel,
#contact .mail {
  width: 500px;
  padding-inline: 30px;
}
#contact .tel h5,
#contact .mail h5 {
  font-size: 28px;
  margin-block: 30px;
}
#contact .tel span,
#contact .mail span {
  font-size: 20px;
}
#contact .tel p,
#contact .mail p {
  font-size: 24px;
}
#contact .tel p:nth-child(2) {
  font-size: 28px;
  margin-bottom: 30px;
}
#contact .tel p:nth-child(5) {
  font-size: 18px;
  margin-top: 30px;
}

.contact-form {
  margin-right: 1%;
}

#name,
#tel,
#mail {
  width: 95%;
  padding: 10px 10px;
  margin-bottom: 20px;
  border: 3px solid #9b9b9b;
  background-color: white;
  border-radius: 15px;
}

#message-text {
  width: 95%;
  height: 200px;
  padding: 12px 10px;
  margin-bottom: 20px;
  border: 3px solid #9b9b9b;
  background-color: white;
  border-radius: 10px;
}

#contact-submit {
  border: 3px solid #9b9b9b;
  background-color: white;
  border-radius: 15px;
  padding: 10px 80px;
  line-height: 30px;
  display: block;
  margin: 0 auto;
}
#contact-submit:hover {
  background-color: #a8c09f;
  color: white;
}

@media (max-width: 970px) {
  #contact {
    width: 370px;
    flex-direction: column;
    margin: 0 auto;
  }
  #contact .tel,
#contact .mail {
    width: 370px;
    padding-inline: 20px;
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=style.css.map */