/************************************************
@PC
************************************************/
/*-------------------------------

top

-------------------------------*/
.top {
  padding: 18px;
}

.logo {
  position: absolute;
  z-index: 1;
  width: 70%;
  top: 30px;
  left: 20px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slideimg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  background-size: cover;
  animation: slideAnime 15s infinite;
  border-radius: 30px;
}

@keyframes slideAnime {
  0%, 30%, 100% {
    opacity: 0;
  }
  10%, 20% {
    opacity: 1;
  }
}
.slideimg:nth-of-type(1) {
  background-image: url("../img/top/slider/0.jpg");
  animation-delay: 0s;
  background-position: 100%;
}

.slideimg:nth-of-type(2) {
  background-image: url("../img/top/slider/1.jpg");
  animation-delay: 3s;
  background-position: 10%;
}

.slideimg:nth-of-type(3) {
  background-image: url("../img/top/slider/2.jpg");
  animation-delay: 6s;
  background-position: 0%;
}

.slideimg:nth-of-type(4) {
  background-image: url("../img/top/slider/3.jpg");
  animation-delay: 9s;
  background-position: 60%;
}

.slideimg:nth-of-type(5) {
  background-image: url("../img/top/slider/4.jpg");
  animation-delay: 12s;
  background-position: 90%;
}

.slideimg:nth-of-type(6) {
  background-image: url("../img/top/slider/5.jpg");
  animation-delay: 15s;
  background-position: 90%;
}

/*-------------------------------

news

-------------------------------*/
#news {
  position: relative;
}
#news .ttl {
  width: 150px;
  margin: 0 auto;
}

.news-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-shape-wrapper {
  margin: 50px 0;
  width: 400px;
  height: 400px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .news-shape-wrapper {
    width: 500px;
    height: 500px;
  }
}

.news-shape {
  width: 100%;
  height: 100%;
  background-color: rgba(240, 252, 13, 0.8);
  border-radius: 62% 38% 63% 37%/40% 60% 40% 60%;
  animation: 15s linear infinite rotation1;
  position: absolute;
  top: 0;
  left: 0;
}

.news-shape-text {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 40px;
  box-sizing: border-box;
}

@keyframes rotation1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.news-title {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .news-title {
    font-size: 36px;
  }
}

.news-content {
  padding: 30px;
  border-radius: 15px;
}

.news-image {
  margin: 0 0 20px 0;
  text-align: center;
}
.news-image img {
/*  width: 100%;*/
	width: 70%;
  max-width: 330px;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  .news-image {
    margin: 0 0 25px 0;
  }
  .news-image img {
/*    width: 90%;*/
/*    max-width: 500px;*/
		max-width: 350px;
  }
}

.news-text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 1.6;
  width: 90%;
  margin: 0 auto 25px;
}
@media screen and (min-width: 768px) {
  .news-text {
    font-size: 20px;
  }
}

.news-button {
  display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
  color: #fff;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.news-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  background: linear-gradient(45deg, #ff5252, #ff7979);
}
@media screen and (min-width: 768px) {
  .news-button {
    padding: 15px 35px;
    font-size: 18px;
  }
}

/*-------------------------------

about

-------------------------------*/
#about {
  background: #fff;
  position: relative;
  margin: 100px 0;
  padding: 20px;
}
#about .ttl {
  width: 150px;
  margin: 0 auto 40px;
}

.about-inner {
  position: relative;
  z-index: 1;
}

.about-photo {
  padding: 40px 20px 0;
  opacity: 0;
}
.about-photo img {
  border-radius: 30px;
}

.ellipse {
  position: absolute;
  width: 150%;
  height: 500px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.ellipse-top {
  top: -70px;
}

.ellipse-bottom {
  bottom: -70px;
}

.deco0 {
  position: absolute;
  width: 100px;
  right: 30px;
  margin: auto;
  top: -70px;
  z-index: 1;
  animation-name: Swing;
  animation-duration: 1400ms;
  animation-timing-function: steps(2, end);
  animation-iteration-count: infinite;
}

.deco1 {
  position: absolute;
  width: 80px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -100px;
  z-index: 1;
  animation-name: Swing;
  animation-duration: 1400ms;
  animation-timing-function: steps(2, end);
  animation-iteration-count: infinite;
}

@keyframes Swing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(25deg);
  }
}
.follow-us h2 {
  width: 200px;
  margin: 0 auto 20px;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  animation-name: forlornly;
}

@keyframes forlornly {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  color: #000000;
  border-radius: 50%;
  font-size: 28px;
  text-decoration: none;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
  border: 1px solid #000;
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: #f0fc0d;
  color: #000;
}

.social-icons a i {
  vertical-align: middle;
}

/*-------------------------------

popup

-------------------------------*/
#popup .ttl {
  width: 150px;
  margin: 0 auto 30px;
}

.badge {
  padding: 30px;
}

.popup-photo {
  padding: 40px 20px;
  opacity: 0;
}
.popup-photo img {
  border-radius: 30px;
}

.contact,
.review {
  text-align: center;
}

.rotate-cont {
  position: relative;
  width: 290px;
  height: 290px;
  margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
  .rotate-cont {
    width: 350px;
    height: 350px;
  }
}

.rotate-inner-txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-45%, -53%);
  text-align: center;
  z-index: 1;
  width: 85%;
}

.rotate-float {
  animation: rotate 12s infinite linear;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*-------------------------------

staff

-------------------------------*/
#staff {
  background: #fff;
  position: relative;
  margin: 140px 0 80px;
  padding: 20px;
}
#staff .ttl {
  width: 150px;
  margin: 0 auto;
}
#staff .txt {
  margin: 20px 0;
  opacity: 0;
}
#staff .txt span {
  background: #f7d0bc;
}

.staff-inner {
  position: relative;
  z-index: 1;
}

.staff-photo {
  padding: 40px 20px 0;
  opacity: 0;
}
.staff-photo img {
  border-radius: 30px;
  opacity: 0;
}

.ellipse {
  position: absolute;
  width: 150%;
  height: 500px;
  background: #fff;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}

.ellipse-top {
  top: -70px;
}

.ellipse-bottom {
  bottom: -70px;
}

.profile-card {
  text-align: center;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .profile-card {
    padding: 20px;
  }
}

.profile-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin: 10px 0 0 0;
}

.profile-image {
  width: 160px;
  border-radius: 50%;
  object-fit: cover;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .profile-image {
    width: 190px;
  }
}

.profile-image-staff {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 7px 5px #f1fb0d;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .profile-image-staff {
    width: 190px;
    height: 190px;
  }
}

.profile-text {
  text-align: left;
}

.profile-text h2 {
  font-size: 18px;
  margin: 0;
  color: #333;
  text-align: center;
}

.profile-text p {
  margin: 0 0 10px;
  font-size: 14px;
  color: #000;
  background: #f9cfbd;
  text-align: center;
  padding: 4px;
}

.instagram-button {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  background-color: #f9cfbd;
  padding: 10px 50px;
  border-radius: 25px;
  margin-top: 20px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.instagram-button:hover {
  background-color: #f0fc0d;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.recruting {
  padding: 40px 0 0;
}

.attention {
  width: 150px;
  margin: 0 auto 10px;
}

/*-------------------------------

menu

-------------------------------*/
#menu .ttl {
  width: 150px;
  margin: 0 auto;
}

.menu-list {
  padding: 20px;
}

.menu-list-ttl {
  margin: 0 auto 15px;
  width: 90%;
}

.image-container {
  position: relative;
  display: block;
  cursor: pointer;
  text-align: center;
}

.image-container img {
  width: 90%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-container img:hover {
  transform: scale(1.05);
}

.plus-icon {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background-color: #fef107;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transform: scale(1);
  transition: all 0.3s ease;
}

.popup-overlay.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.popup-content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
  overflow: hidden;
  overflow-y: auto;
  transition: all 0.3s ease;
}

.popup-content img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 1100;
}

.scroll-container {
  width: 100%;
  height: 90px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.scroll-content {
  display: flex;
  animation: scroll-horizontal 10s linear infinite;
}

.scroll-content img {
  width: 430px;
  height: auto;
  margin-right: 0;
}

@keyframes scroll-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-430px);
  }
}
/*-------------------------------

info

-------------------------------*/
#info .ttl {
  width: 220px;
  margin: 0 auto;
}

.info-section {
  margin: 20px 0;
  text-align: center;
}

.info-section p {
  margin: 8px 0 0;
}

.info-section .label {
  font-weight: bold;
  background: #f9cfbd;
  display: inline-block;
  padding: 5px;
  font-size: small;
}

.map-container {
  margin: 40px 0 60px;
  position: relative;
  height: 400px;
}

iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}/*# sourceMappingURL=style.css.map */