/* imgServerPaht = https://twimage.daigobang.com/web/events/fathersday2022 */

/* Config Event color  */
/* 參照 Zeplin Style Guideline 修改 E.G. https://app.zeplin.io/project/5cda928427264913e957ad6d/screen/62135486f7dfe5139201e1f5 */
:root {
  --banner-bg-color: #B80013; /* Banner 背景色碼 */
  /* Navigation */
  --navigation-width: 156px;
  --navigation-height: 442px;
  --navigation-bg-img: url(https://twimage.daigobang.com/web/events/2025animate/navigation-bg-img.png);
  --navigation-btn-img-1: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-1.png);
  --navigation-btn-img-2: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-2.png);
  --navigation-btn-img-3: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-3.png);
  --navigation-btn-img-4: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-4.png);
  --navigation-btn-img-5: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-5.png);
  --navigation-btn-img-1-hv: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-1-hv.png);
  --navigation-btn-img-2-hv: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-2-hv.png);
  --navigation-btn-img-3-hv: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-3-hv.png);
  --navigation-btn-img-4-hv: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-4-hv.png);
  --navigation-btn-img-5-hv: url(https://twimage.daigobang.com/web/events/2025animate/navigation-btn-img-5-hv.png);
  --navigation-totop-btn-img: url(https://twimage.daigobang.com/web/events/2025animate/totop-btn-img.png);
  --m-navigation-btn-img-1: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-1.png);
  --m-navigation-btn-img-2: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-2.png);
  --m-navigation-btn-img-3: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-3.png);
  --m-navigation-btn-img-4: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-4.png);
  --m-navigation-btn-img-5: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-5.png);
  --m-navigation-btn-img-1-hv: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-1-hv.png);
  --m-navigation-btn-img-2-hv: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-2-hv.png);
  --m-navigation-btn-img-3-hv: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-3-hv.png);
  --m-navigation-btn-img-4-hv: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-4-hv.png);
  --m-navigation-btn-img-5-hv: url(https://twimage.daigobang.com/web/events/2025animate/m-navigation-btn-img-5-hv.png);
}

/* Common */
main {
  min-width: 1200px;
}
button {
  border: none;
  background-color: transparent;
  padding: 0;
  margin: 0;
  outline: none;
}

@media screen and (max-width: 480px) {
  main {
    min-width: auto;
  }
}
/* Common (End) */

/* Site */
@media screen and (max-width: 1480px) {
  .site {
    padding-bottom: 55px;
  }
}
/* Site (End) */

/* Navigation */
.navigation {
  width: var(--navigation-width);
  height: var(--navigation-height);
  background-image: var(--navigation-bg-img);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 120px;
  position: fixed;
  right: 170px;
  top: 147px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.navigation__btn {
  width: 124px;
  height: 32px;
  position: relative;
}
.navigation__btn:hover::before {
  opacity: 0;
}
.navigation__btn:hover::after {
  opacity: 1;
}
.navigation__btn:not(:last-child) {
  margin-bottom: 15px;
}
.navigation__totop-btn {
  width: 42px;
  height: 33px;
  margin-top: 25px;
}
.navigation__btn::before,
.navigation__btn::after,
.navigation__totop-btn::before {
  content: '';
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.navigation__btn::before,
.navigation__btn::after {
  position: absolute;
  top: 0;
  left: 0;
}
.navigation__btn::after {
  opacity: 0;
}
.navigation__totop-btn::before {
  display: block;
}
.navigation__btn:nth-child(1)::before {
  background-image: var(--navigation-btn-img-1);
}
.navigation__btn:nth-child(1)::after {
  background-image: var(--navigation-btn-img-1-hv);
}
.navigation__btn:nth-child(2)::before {
  background-image: var(--navigation-btn-img-2);
}
.navigation__btn:nth-child(2)::after {
  background-image: var(--navigation-btn-img-2-hv);
}
.navigation__btn:nth-child(3)::before {
  background-image: var(--navigation-btn-img-3);
}
.navigation__btn:nth-child(3)::after {
  background-image: var(--navigation-btn-img-3-hv);
}
.navigation__btn:nth-child(4)::before {
  background-image: var(--navigation-btn-img-4);
}
.navigation__btn:nth-child(4)::after {
  background-image: var(--navigation-btn-img-4-hv);
}
.navigation__btn:nth-child(5)::before {
  background-image: var(--navigation-btn-img-5);
}
.navigation__btn:nth-child(5)::after {
  background-image: var(--navigation-btn-img-5-hv);
}
.navigation__totop-btn::before {
  background-image: var(--navigation-totop-btn-img);
}

@media screen and (max-width: 1480px) {
  .navigation {
    display: none;
  }
}
/* Navigation (End) */

/* Mobile Navigation */
.m-navigation {
  width: 100%;
  background-image: linear-gradient(to top, #2FC56B 99%, #ACE548 1%);
  padding: 6.5px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: none;
}
.m-navigation__container {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.m-navigation__btn {
  position: relative;
}
.m-navigation__btn:hover::before {
  opacity: 0;
}
.m-navigation__btn:hover::after {
  opacity: 1;
}
.m-navigation__btn:nth-child(1),
.m-navigation__btn:nth-child(2),
.m-navigation__btn:nth-child(3),
.m-navigation__btn:nth-child(5) {
  width: 66px;
  height: 42px;
}
.m-navigation__btn:nth-child(4) {
  width: 74px;
  height: 42px;
}
.m-navigation__btn:not(:last-child) {
  margin-right: 2px;
}
.m-navigation__btn:nth-child(1)::before {
  background-image: var(--m-navigation-btn-img-1);
}
.m-navigation__btn:nth-child(1)::after {
  background-image: var(--m-navigation-btn-img-1-hv);
}
.m-navigation__btn:nth-child(2)::before {
  background-image: var(--m-navigation-btn-img-2);
}
.m-navigation__btn:nth-child(2)::after {
  background-image: var(--m-navigation-btn-img-2-hv);
}
.m-navigation__btn:nth-child(3)::before {
  background-image: var(--m-navigation-btn-img-3);
}
.m-navigation__btn:nth-child(3)::after {
  background-image: var(--m-navigation-btn-img-3-hv);
}
.m-navigation__btn:nth-child(4)::before {
  background-image: var(--m-navigation-btn-img-4);
}
.m-navigation__btn:nth-child(4)::after {
  background-image: var(--m-navigation-btn-img-4-hv);
}
.m-navigation__btn:nth-child(5)::before {
  background-image: var(--m-navigation-btn-img-5);
}
.m-navigation__btn:nth-child(5)::after {
  background-image: var(--m-navigation-btn-img-5-hv);
}
.m-navigation__btn::before,
.m-navigation__btn::after {
  content: '';
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
.m-navigation__btn::after {
  opacity: 0;
}

@media screen and (max-width: 480px) {
  .m-navigation {
    display: block;
  }
}
/* Mobile Navigation (End) */

/* Section */
.section {
  padding: 65px 0;
}
.section__container {
  margin: 0 auto;
}
.section__title {
  margin: 0 auto;
}
.section__title::before {
  content: '';
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.section__content {
  margin-top: 70px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 480px) {
  .section {
    padding: 15px 0 40px 0;
  }
  .section__content {
    margin-top: 20px;
  }
}
/* Section (End) */

/* Item */
.item {
  width: 273px;
  text-align: center;
}
.item:hover .item__photo {
  opacity: 0.8;
}
.item__photo {
  width: 273px;
  height: 210px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.item__name {
  color: #150607;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 7.2px;
  margin-top: 10px;
}
.item__btn {
  background-color: #FEE800;
  border: 2px solid #150607;
  border-radius: 25px;
  color: #150607;
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5;
  letter-spacing: 1px;
  margin-top: 30px;
  padding: 7px 15px;
  display: inline-block;
}
.item__btn:hover {
  background-color: #FEA700;
  color: #150607;
}
.item__btn::after {
  content: '>';
  line-height: 1;
  margin-left: 3px;
  transform: translateY(-2px);
  display: inline-block;
}

@media screen and (max-width: 480px) {
  .item {
    width: calc(50% - (10px / 2));
  }
  .item__photo {
    width: 100%;
    height: 0;
    padding-bottom: 77.42%;
  }
  .item__name {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 4.8px;
    margin-top: 7px;
  }
  .item__btn {
    border: 1px solid #150607;
    font-size: 13px;
    line-height: 1;
    margin-top: 12px;
    padding: 7px 12px;
  }
  .item__btn::after {
    transform: translateY(-1px);
  }
}
/* Item (End) */

/* Main Visual Section */
#main-visual-section {
  width: 100%;
  height: 704px;
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/main-visual-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--banner-bg-color);
  background-size: auto 100%;
  overflow: hidden;
  padding: 0;
}
#main-visual-section .section__container {
  width: 1200px;
  height: 100%;
  position: relative;
}
#main-visual-section .section__container::before {
  content: '';
  width: 240px;
  height: 370px;
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/anime-character-1.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: anime-character-grow-shrink 3s infinite linear;
  position: absolute;
  bottom: 7.5%;
  left: -0.5%;
}
#main-visual-section .section__container::after {
  content: '';
  width: 327px;
  height: 349px;
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/anime-character-2.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: anime-character-grow-shrink 3s infinite linear;
  position: absolute;
  right: -1.25%;
  bottom: 9.25%;
}
@keyframes anime-character-grow-shrink {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1);
  }
  42.5% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(1);
  }
  57.5% {
    transform: scale(1.05);
  }
  65% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 480px) {
  #main-visual-section {
    height: 0;
    padding-bottom: 101.87%;
    background-image: url(https://twimage.daigobang.com/web/events/2025animate/m-main-visual-bg.png);
  }
  #main-visual-section .section__container {
    width: 100%;
  }
  #main-visual-section .section__container::before,
  #main-visual-section .section__container::after {
    display: none;
  }
}
/* Main Visual Section (End) */

/* Featured Section */
#featured-section {
  background-color: #FEFBE6;
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/featured-section-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
#featured-section .section__container {
  width: 1152px;
}
#featured-section .section__title {
  width: 346px;
  height: 130px;
}
#featured-section .section__title::before {
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/featured-section-title.png);
}
#featured-section .item:not(:nth-child(4n)) {
  margin-right: 20px;
}

@media screen and (max-width: 480px) {
  #featured-section .section__container {
    width: calc(100% - 40px);
  }
  #featured-section .section__title {
    width: 173px;
    height: 65px;
  }
  #featured-section .item:nth-child(odd) {
    margin-right: 10px;
  }
  #featured-section .item:nth-child(even) {
    margin-right: 0;
  }
  #featured-section .item:not(:nth-last-child(-n+2)) {
    margin-bottom: 30px;
  }
}
/* Featured Section (End) */

/* Neighborhood Section */
#neighborhood-section {
  background-color: #C7D867;
  position: relative;
}
#neighborhood-section::before,
#neighborhood-section::after {
  content: '';
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
}
#neighborhood-section::before {
  display: none;
}
#neighborhood-section::after {
  width: 887px;
  height: 367px;
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/neighborhood-section-bg.png);
  right: 235px;
  bottom: 115px;
}
#neighborhood-section .section__container {
  width: 919px;
  position: relative;
  z-index: 1;
}
#neighborhood-section .section__title {
  width: 362px;
  height: 68px;
}
#neighborhood-section .section__title::before {
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/neighborhood-section-title.png);
}
#neighborhood-section .item:not(:nth-child(3n)) {
  margin-right: 50px;
}
#neighborhood-section .item:not(:nth-last-child(-n+3)) {
  margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
  #neighborhood-section::before,
  #neighborhood-section::after {
    width: 51.39%;
    height: 0;
    padding-bottom: 61.39%;
    background-image: url(https://twimage.daigobang.com/web/events/2025animate/m-neighborhood-section-bg.png);
  }
  #neighborhood-section::before {
    top: 8.35%;
    left: -0.75%;
    display: block;
  }
  #neighborhood-section::after {
    right: -1.3%;
    bottom: 1.75%;
  }
  #neighborhood-section .section__container {
    width: calc(100% - 40px);
  }
  #neighborhood-section .section__title {
    width: 181px;
    height: 34px;
  }
  #neighborhood-section .item:nth-child(odd) {
    margin-right: 10px;
  }
  #neighborhood-section .item:nth-child(even) {
    margin-right: 0;
  }
  #neighborhood-section .item:not(:nth-last-child(-n+2)) {
    margin-bottom: 30px;
  }
}
/* Neighborhood Section (End) */

/* Creation Section */
#creation-section {
  background-color: #67CFD8;
  position: relative;
}
#creation-section::before,
#creation-section::after {
  content: '';
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
}
#creation-section::before {
  width: 887px;
  height: 367px;
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/creation-section-bg.png);
  bottom: 115px;
  left: 245px;
}
#creation-section::after {
  display: none;
}
#creation-section .section__container {
  width: 919px;
  position: relative;
  z-index: 1;
}
#creation-section .section__title {
  width: 362px;
  height: 64px;
}
#creation-section .section__title::before {
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/creation-section-title.png);
}
#creation-section .item:not(:nth-child(3n)) {
  margin-right: 50px;
}
#creation-section .item:not(:nth-last-child(-n+3)) {
  margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
  #creation-section::before,
  #creation-section::after {
    width: 51.39%;
    height: 0;
    padding-bottom: 61.39%;
    background-image: url(https://twimage.daigobang.com/web/events/2025animate/m-creation-section-bg.png);
  }
  #creation-section::before {
    top: 8.35%;
    left: -0.75%;
  }
  #creation-section::after {
    right: -1.3%;
    bottom: 1.75%;
    display: block;
  }
  #creation-section .section__container {
    width: calc(100% - 40px);
  }
  #creation-section .section__title {
    width: 181px;
    height: 34px;
  }
  #creation-section .item:nth-child(odd) {
    margin-right: 10px;
  }
  #creation-section .item:nth-child(even) {
    margin-right: 0;
  }
  #creation-section .item:not(:nth-last-child(-n+2)) {
    margin-bottom: 30px;
  }
}
/* Creation Section (End) */

/* Girl Section */
#girl-section {
  background-color: #F5BACF;
  position: relative;
}
#girl-section::before,
#girl-section::after {
  content: '';
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
}
#girl-section::before {
  display: none;
}
#girl-section::after {
  width: 887px;
  height: 367px;
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/girl-section-bg.png);
  right: 235px;
  bottom: 115px;
}
#girl-section .section__container {
  width: 919px;
  position: relative;
  z-index: 1;
}
#girl-section .section__title {
  width: 422px;
  height: 59px;
}
#girl-section .section__title::before {
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/girl-section-title.png);
}
#girl-section .item:not(:nth-child(3n)) {
  margin-right: 50px;
}
#girl-section .item:not(:nth-last-child(-n+3)) {
  margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
  #girl-section::before,
  #girl-section::after {
    width: 51.39%;
    height: 0;
    padding-bottom: 61.39%;
    background-image: url(https://twimage.daigobang.com/web/events/2025animate/m-girl-section-bg.png);
  }
  #girl-section::before {
    top: 8.35%;
    left: -0.75%;
    display: block;
  }
  #girl-section::after {
    right: -1.3%;
    bottom: 1.75%;
  }
  #girl-section .section__container {
    width: calc(100% - 40px);
  }
  #girl-section .section__title {
    width: 211px;
    height: 34px;
  }
  #girl-section .item:nth-child(odd) {
    margin-right: 10px;
  }
  #girl-section .item:nth-child(even) {
    margin-right: 0;
  }
  #girl-section .item:not(:nth-last-child(-n+2)) {
    margin-bottom: 30px;
  }
}
/* Girl Section (End) */

/* Game Section */
#game-section {
  background-color: #F2BD78;
  position: relative;
}
#game-section::before,
#game-section::after {
  content: '';
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 0;
}
#game-section::before {
  width: 887px;
  height: 367px;
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/game-section-bg.png);
  bottom: 115px;
  left: 245px;
}
#game-section::after {
  display: none;
}
#game-section .section__container {
  width: 919px;
  position: relative;
  z-index: 1;
}
#game-section .section__title {
  width: 362px;
  height: 62px;
}
#game-section .section__title::before {
  background-image: url(https://twimage.daigobang.com/web/events/2025animate/game-section-title.png);
}
#game-section .item:not(:nth-child(3n)) {
  margin-right: 50px;
}
#game-section .item:not(:nth-last-child(-n+3)) {
  margin-bottom: 60px;
}

@media screen and (max-width: 480px) {
  #game-section::before,
  #game-section::after {
    width: 51.39%;
    height: 0;
    padding-bottom: 61.39%;
    background-image: url(https://twimage.daigobang.com/web/events/2025animate/m-game-section-bg.png);
  }
  #game-section::before {
    top: 8.35%;
    left: -0.75%;
  }
  #game-section::after {
    right: -1.3%;
    bottom: 1.75%;
    display: block;
  }
  #game-section .section__container {
    width: calc(100% - 40px);
  }
  #game-section .section__title {
    width: 181px;
    height: 34px;
  }
  #game-section .item:nth-child(odd) {
    margin-right: 10px;
  }
  #game-section .item:nth-child(even) {
    margin-right: 0;
  }
  #game-section .item:not(:nth-last-child(-n+2)) {
    margin-bottom: 30px;
  }
}
/* Game Section (End) */

/* Contact Section */
#contact-section {
  background-color: #B7751F;
}
#contact-section .section__container {
  width: 850px;
}
#contact-section .section__title {
  color: #150607;
  font-size: 24px;
  letter-spacing: 2px;
}
#contact-section .section__title::before {
  display: none;
}
#contact-section .section__content {
  font-size: 20px;
  margin-top: 40px;
}
#contact-section .section__content li {
  color: #150607;
}
#contact-section .section__content li:not(:last-child) {
  margin-bottom: 8px;
}
#contact-section .section__content a {
  color: #150607;
}

@media screen and (max-width: 480px) {
  #contact-section {
    padding: 25px 0;
  }
  #contact-section .section__container {
    width: calc(100% - 50px);
  }
  #contact-section .section__title {
    font-size: 18px;
    letter-spacing: 1px;
  }
  #contact-section .section__content {
    font-size: 16px;
    margin-top: 30px;
  }
  #contact-section .section__content li:not(:last-child) {
    margin-bottom: 0;
  }
}
/* Contact Section (End) */

/* Footer */
.footer {
  background-color: #00020C;
}
/* Footer (End) */
