@keyframes floating {
  0% {
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translateX(-35px) translateY(-5px) rotate(-4deg) scale(1.02);
  }
  40% {
    transform: translateX(-15px) translateY(-10px) rotate(4deg) scale(1);
  }
  60% {
    transform: translateX(35px) translateY(-10px) rotate(4deg) scale(1);
  }
  80% {
    transform: translateX(15px) translateY(-15px) rotate(-2deg) scale(0.99);
  }
  100% {
    transform: translateX(0px) translateY(0px) rotate(0deg) scale(1);
  }
}
@keyframes floating3 {
  0% {
    transform: translateX(0px) translateY(30px) rotate(-2deg) scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(-50px) translateY(120px) rotate(-1deg) scale(0.95);
  }
  40% {
    transform: translateX(40px) translateY(240px) rotate(1deg) scale(1);
  }
  60% {
    transform: translateX(-30px) translateY(380px) rotate(-2deg) scale(0.98);
  }
  80% {
    transform: translateX(60px) translateY(480px) rotate(2deg) scale(1.02);
    opacity: 0.8;
  }
  100% {
    transform: translateX(0px) translateY(560px) rotate(0deg) scale(1);
    opacity: 0;
  }
}
@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes floating2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30%, -300%) rotate(3deg);
  }
}
.visual {
  position: relative;
  width: 100%;
  height: 800px;
  background-image: url("../images/main/main3.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: #fdebca;
  overflow: hidden;
}
.visual .any01 {
  position: absolute;
  top: 50%;
  margin-top: -19%;
  left: 42%;
  width: 2%;
  animation: floating 6s cubic-bezier(0.42, 0, 0.58, 1) infinite;
  will-change: transform;
  display: inline-block;
  transform: rotate(0);
}
.visual .any02 {
  position: absolute;
  width: 8.5%;
  top: 50%;
  margin-top: 4%;
  left: 26.4%;
  rotate: -8deg;
  transform-origin: right top;
  animation: rotate2 2s ease infinite;
  padding: 10px;
}
.visual .any03 {
  position: absolute;
  top: 50%;
  margin-top: -16%;
  left: 65.3%;
  width: 4.2%;
  animation: floating2 5s 0s ease infinite;
}
.visual .any04 {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  animation: floating3 10s infinite;
  animation-timing-function: linear;
  will-change: transform;
}
.visual .any05 {
  position: absolute;
  top: 50%;
  margin-top: 12.7%;
  right: 29.6%;
  animation: rotate 2s 0s ease infinite;
  transform-origin: left top;
  width: 5.5%;
}

#section {
  padding: 60px 0;
}
#section .inner {
  width: 100%;
  max-width: 1400px;
}
#section .inner .section-title {
  margin-bottom: 30px;
  text-align: center;
}
#section .inner .section-title h2 {
  font-size: 3.4em;
  font-weight: 600;
  color: #f7ab00;
  font-family: "S-CoreDream";
}
#section .inner .item-wrap {
  justify-content: center;
}
#section p {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.7px;
}
#section p span {
  font-weight: 500;
  font-size: 0.9em;
  opacity: 0.8;
}
#section p.item-title, #section p.item-txt {
  word-break: keep-all;
}

.section1 {
  width: 100%;
  background-color: #fffce7;
}
.section1 .item-wrap {
  display: flex;
  border-top: 1px solid #f2ab57;
}
.section1 .item-wrap .item-box {
  border-right: 1px solid #f2ab57;
  padding: 40px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section1 .item-wrap .item-box:first-child {
  padding-left: 0;
}
.section1 .item-wrap .item-box:last-child {
  border-right: 0;
  padding-right: 0;
}
.section1 .item-wrap .item-box .item-img {
  margin-top: 30px;
  width: 100%;
  max-width: 300px;
  overflow: hidden;
}
.section1 .item-wrap .item-box .item-img img {
  width: 100%;
}
.section1 .item-wrap .item-box:hover {
  cursor: pointer;
}
.section1 .item-wrap .item-box:hover .item-title {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.section1 .item-wrap .item-box:hover img {
  transition: ease 0.2s;
  scale: 1.1;
}

.section2 {
  background-image: url("../images/main/section_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 80px;
  background-attachment: fixed;
}
.section2 .item-wrap {
  display: flex;
}
.section2 .item-wrap .item-box {
  display: flex;
  padding: 40px 30px 40px 0;
  width: calc(100% / 2);
  border-top: 1px solid #f2ab57;
  border-right: 1px solid #f2ab57;
  align-items: end;
  gap: 20px;
}
.section2 .item-wrap .item-box:last-child {
  padding: 40px 0px 40px 30px;
  border-right: 0;
}
.section2 .item-wrap .item-box:hover {
  cursor: pointer;
}
.section2 .item-wrap .item-box:hover .item-txt {
  text-decoration: underline;
}
.section2 .item-wrap .item-box:hover img {
  transition: ease 0.2s;
  scale: 1.1;
}
.section2 .item-wrap .item-box .item-img {
  width: 426px;
  overflow: hidden;
}
.section2 .item-wrap .item-box .item-txt {
  padding-bottom: 40px;
  width: 35%;
}
.section2 .item-wrap:last-child .item-box {
  padding-bottom: 0;
}

.section3 {
  background-color: #fffce7;
}
.section3 .item-wrap {
  display: flex;
}
.section3 .item-wrap .item-box {
  padding: 40px 30px 0;
  border-top: 1px solid #f2ab57;
  border-right: 1px solid #f2ab57;
}
.section3 .item-wrap .item-box:first-child {
  padding-left: 0;
}
.section3 .item-wrap .item-box:last-child {
  padding-right: 0;
  border-right: 0;
}
.section3 .item-wrap .item-box p {
  margin-top: 15px;
  text-align: center;
}
.section3 .item-wrap .item-box .item-img {
  overflow: hidden;
}
.section3 .item-wrap .item-box:hover {
  cursor: pointer;
}
.section3 .item-wrap .item-box:hover .item-img img {
  transition: ease 0.2s;
  scale: 1.1;
}
.section3 .item-wrap .item-box:hover p {
  text-decoration: underline;
}

.section4 {
  background-image: url("../images/main/section_bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-attachment: fixed;
  background-color: #fcf7f5;
}
.section4 .item-wrap {
  display: flex;
  border-top: 1px solid #f2ab57;
}
.section4 .item-wrap .event-item-box {
  padding: 40px 0 0;
  width: calc(100% / 2);
  border-right: 1px solid #f2ab57;
  text-align: center;
}
.section4 .item-wrap .event-item-box .event-item {
  margin: 0 auto;
  width: 70%;
  cursor: pointer;
}
.section4 .item-wrap .item-box {
  padding: 30px 40px 0;
  width: calc(100% / 2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.section4 .item-wrap .item-box .item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.section4 .item-wrap .item-box .item:hover {
  cursor: pointer;
}
.section4 .item-wrap .item-box .item:hover .item-img {
  opacity: 0.8;
}
.section4 .item-wrap .item-box .item .item-img {
  width: calc((100% - 20px) - 30%);
}
.section4 .item-wrap .item-box .item .item-txt {
  width: calc((100% - 20px) - 70%);
}

@media screen and (max-width: 1440px) {
  .visual .any02 {
    width: 8.9%;
    margin-top: 3.7%;
  }
}
@media screen and (max-width: 1290px) {
  #section .inner {
    padding: 0 40px;
    width: 100%;
    max-width: 1000px;
  }
  #section p {
    font-size: 1.1em;
  }

  .section1 .item-wrap {
    width: 100%;
  }

  .section2 .item-wrap .item-box .item-img {
    width: 300px;
  }

  .section4 .item-wrap .item-box .item .item-img {
    width: calc((100% - 20px) - 40%);
  }
  .section4 .item-wrap .item-box .item .item-txt {
    width: calc((100% - 20px) - 60%);
  }
}
@media screen and (max-width: 900px) {
  .visual {
    background-size: 100%;
    background-image: url("../images/main/main.png");
  }
  .visual .any01,
.visual .any02,
.visual .any03,
.visual .any04,
.visual .any05 {
    display: none;
  }

  #section .inner {
    width: auto;
    padding: 0 60px;
  }
  #section p {
    font-size: 1em;
  }

  .section1 .item-wrap {
    flex-direction: column;
    border: 0;
  }
  .section1 .item-wrap .item-box {
    padding: 0 0 50px;
    margin: 0 auto 40px;
    border-right: 0;
    border-bottom: 1px solid #f2ab57;
  }
  .section1 .item-wrap .item-box:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .section2 .item-wrap .item-box {
    flex-direction: column;
  }
  .section2 .item-wrap .item-box .item-img {
    width: 100%;
  }
  .section2 .item-wrap .item-box .item-img img {
    width: 100%;
  }
  .section2 .item-wrap .item-box .item-txt {
    padding-bottom: 0;
    width: 50%;
  }
  .section2 .item-wrap:last-child .item-box {
    padding-bottom: 0;
  }

  .section3 .item-wrap {
    flex-direction: column;
  }
  .section3 .item-wrap .item-box {
    margin: 40px auto 0;
    padding: 0 0 40px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #f2ab57;
  }
  .section3 .item-wrap .item-box:last-child {
    border-bottom: 0;
  }

  .section4 .item-wrap {
    flex-wrap: wrap;
  }
  .section4 .item-wrap .event-item-box {
    display: flex;
    padding: 20px;
    align-items: center;
  }
  .section4 .item-wrap .event-item-box .event-item {
    width: 100%;
  }
  .section4 .item-wrap .item-box {
    padding: 20px;
  }
  .section4 .item-wrap .item-box .item {
    flex-wrap: wrap;
  }
  .section4 .item-wrap .item-box .item .item-img {
    width: 100%;
  }
  .section4 .item-wrap .item-box .item .item-txt {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  #section {
    padding: 0;
  }
  #section .inner {
    padding: 60px 30px 40px !important;
  }
  #section .inner .section-title {
    margin-bottom: 40px;
  }
  #section .inner .section-title h2 {
    font-size: 3em;
  }

  .section1 .inner .item-wrap .item-box {
    margin: 0 0 20px 0;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #f2ab57;
  }
  .section1 .inner .item-wrap .item-box:last-child {
    border-bottom: 0;
    margin-bottom: 0;
  }
  .section1 .inner .item-wrap .item-box .item-img {
    max-width: none !important;
  }

  .section2 .inner .item-wrap {
    flex-direction: column;
  }
  .section2 .inner .item-wrap .item-box {
    padding: 40px 0;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #f2ab57;
  }
  .section2 .inner .item-wrap:last-child .item-box:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .section2 .inner .item-wrap:nth-child(2) .item-box:first-child {
    padding-top: 0;
  }

  #section.section2 {
    background-image: url("../images/main/section_bg2.png");
    background-position: 0;
    background-attachment: unset;
    background-size: cover;
  }

  #section.section4 {
    background-image: url("../images/main/section_bg2.png");
    background-attachment: unset;
    background-position: center;
    background-size: cover;
  }
  #section.section4 .item-wrap {
    flex-direction: column;
    gap: 40px;
    border-top: 0;
  }
  #section.section4 .item-wrap .event-item-box {
    padding-bottom: 60px;
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid #ed6d2b;
  }
  #section.section4 .item-wrap .item-box {
    width: 100%;
    border: 0;
  }
}
@media screen and (max-width: 425px) {
  #section .inner {
    max-width: 300px;
  }
  #section.section3 .inner .item-wrap {
    align-items: center;
    justify-content: center;
  }
  #section.section3 .inner .item-wrap .item-box {
    margin: 0;
  }
}
@media screen and (min-width: 1921px) {
  .visual .any01 {
    left: 50%;
    margin-left: -150px;
    margin-top: -370px;
    width: 40px;
  }
  .visual .any02 {
    left: 50%;
    margin-left: -454px;
    width: 168px;
    margin-top: 76px;
  }
  .visual .any03 {
    margin-top: -260px;
    left: 50%;
    margin-left: 250px;
    width: 100px;
  }
  .visual .any04 {
    width: 1920px;
    left: 50%;
    margin-left: -960px;
  }
  .visual .any05 {
    left: 50%;
    margin-left: 288px;
    width: 100px;
    margin-top: 243px;
  }
}