@charset "UTF-8";
/* reset */
/* ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  color: #333333;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  color: #333333;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  line-height: 1.875;
}
p + p {
  margin-top: 1em;
}

ul,
dl,
figure {
  margin: 0;
  padding: 0;
}

dt {
  font-weight: normal;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333333;
}
@media (hover: hover) {
  a:hover {
    color: #333333;
    text-decoration: none;
  }
}

em {
  font-style: normal;
  font-weight: normal;
  color: inherit;
}

input,
select,
textarea {
  outline: none;
  vertical-align: middle;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
input ::-moz-placeholder,
select ::-moz-placeholder,
textarea ::-moz-placeholder {
  opacity: 1;
}
input:not([type=checkbox]):not([type=radio]):not([type=file]):not([type=hidden]):not([type=submit]):not([type=reset]):not([type=button]):not([type=image]),
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0.143em 0.81em;
  border: 1px solid;
  background-color: #fff;
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 2;
}

address {
  display: block;
  margin-bottom: 0;
}


.hidden-pc {
  display: none;
}
.hidden-sp {
  display: block;
}
@media screen and (max-width: 768px) {
  .hidden-pc {
    display: block;
  }
  .hidden-sp {
    display: none;
  }
}



/* PC メニュー */
/* ============================================ */
.shiga2025 .hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  width: 65px;
  height: 65px;
}
.menu .animated-menu {
  position: relative;
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #1e95c3 0%, #15d1dd 100%);
  cursor: pointer;
}
.menu .animated-menu span {
  position: absolute;
  display: block;
  background: white;
  height: 4px;
  width: 40px;
  margin-bottom: 5px;
  transition: all 0.3s;
}
.menu .animated-menu span:nth-child(1) {
  top: 17px;
}
.menu .animated-menu span:nth-child(2) {
  top: 30px;
}
.menu .animated-menu span:nth-child(3) {
  top: 43px;
}
.menu.active .animated-menu {
  background: transparent;
}
.menu.active span:nth-child(1) {
  left: 13px;
  top: 30px !important;
  transform: rotate(45deg);
}
.menu.active span:nth-child(2) {
  width: 0px !important;
  opacity: 0;
}
.menu.active span:nth-child(3) {
  left: 13px;
  top: 30px !important;
  transform: rotate(-45deg);
}


.shiga2025 .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}
#overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.shiga2025 .overlay-content {
  position: relative;
  top: 30%;
  text-align: center;
  color: white;
}

.shiga2025 .close-btn {
  width: 32px;
  position: absolute;
  top: 100px;
  right: 30px;
  cursor: pointer;
  z-index: 5;
}
.shiga2025 .close-btn img {
  display: block;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .shiga2025 .hamburger {
    display: none;
  }
}






/* Common Parts */
/* ============================================ */
#wrapper {
  overflow: hidden;
}

.container {
  padding-left: 1.3333vw;
  padding-right: 1.3333vw;
  width: 100%;
  max-width: 1400px;
}
.lead-box .container,
.big-event .container {
  padding-left: 3.3333vw;
  padding-right: 3.3333vw;
}
@media (min-width: 960px) {
  .container {
    margin-left: auto;
    margin-right: auto;
    padding-left: min(11.5vw, 150px);
    padding-right: min(11.5vw, 150px);
  }
  .lead-box .container,
  .big-event .container {
    padding-left: min(11.5vw, 150px);
    padding-right: min(11.5vw, 150px);
  }

}






/* anker link */
/* ============================================ */
.ank_link {
  padding: 85px 0 60px;
  background-color: #e9faf9;
}

.ank_link ul,
.overlay ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gradient-border {
  width: 260px;
  width: min(260 / 1400 * 100vw, 260px);
  height: 121px;
  height: min(121 / 1400 * 100vw, 121px);
  border-radius: 20px;
  background: linear-gradient(to bottom, #1e95c3, #15d1dd);
  position: relative;
  cursor: pointer;
}
.gradient-border::before {
  content: "";
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  left: 5px;
  background-color: white;
  border-radius: 15px;
  z-index: 1;
}
.gradient-border .scroll-link,
.gradient-border a {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 15px;
}
.gradient-border img.camp-tit {
  width: 80px;
  width: min(80 / 1400 * 100vw, 80px);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.gradient-border p {
  font-size: 21px;
  font-size: min(21 / 1400 * 100vw, 21px);
  font-weight: bold;
  line-height: 1.1428;
  color: #1e96c4;
  letter-spacing: -0.07em;
  text-align: left;
}
.gradient-border:nth-child(1) p {
  font-size: 30px;
}
.gradient-border:nth-child(4) p {
  font-size: 19px;
}
.gradient-border .camp-img {
  position: absolute;
}
.gradient-border .camp-img.img01 {
  width: 83px;
  width: min(83 / 1400 * 100vw, 83px);
  top: 10px;
  right: 0;
}
.gradient-border .camp-img.img02 {
  width: 99px;
  width: min(99 / 1400 * 100vw, 94px);
  top: 10px;
  right: 27px;
}
.gradient-border .camp-img.img03 {
  width: 98px;
  width: min(98 / 1400 * 100vw, 98px);
  top: 15px;
  right: 0;
}
.gradient-border .camp-img.img04 {
  width: 61px;
  width: min(61 / 1400 * 100vw, 61px);
  top: 13px;
  right: 5px;
}

.gradient-border .arrow {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  width: min(46 / 1400 * 100vw, 46px);
  height: min(46 / 1400 * 100vw, 46px);
  border-radius: 50%;
  background: linear-gradient(to bottom, #1e95c3, #15d1dd);
  display: flex;
  justify-content: center;
  align-items: center;
}
.gradient-border .arrow svg {
  width: 50%;
  height: auto;
  padding-top: 5px;
  transition: transform 0.3s ease;
}
.gradient-border:hover .arrow svg {
  transform: translateY(5px);
}
@media (max-width:1400px) and (min-width:769px) {
  .ank_link ul,
  .overlay ul {
    gap: 1.4286vw;
  }
  .gradient-border {
    height: 8.6429vw;
  }
  .gradient-border .scroll-link,
  .gradient-border a {
    padding-left: 1.0714vw;
  }
  .gradient-border img.camp-tit {
    width: 5.7143vw;
    top: -3.5714vw;
  }
  .gradient-border p {
    font-size: 1.5000vw;
  }
  .gradient-border:nth-child(1) p {
    font-size: 2.1429vw;
  }
  .gradient-border:nth-child(4) p {
    font-size: 1.3571vw;
  }
  .gradient-border .camp-img.img01 {
    width: 5.9286vw;
    top: 0.7143vw;
    right: -1px;
  }
  .gradient-border .camp-img.img02 {
    width: 7.0714vw;
    top: 0.7143vw;
    right: 1.5714vw;
  }
  .gradient-border .camp-img.img03 {
    width: 7vw;
    top: 1.0714vw;
    right: 0;
  }
  .gradient-border .camp-img.img04 {
    width: 4.3571vw;
    top: 0.9286vw;
    right: 0.2vw;
  }

  .gradient-border .arrow {
    bottom: -1.5714vw;
    width: 3.2857vw;
    height: 3.2857vw;
  }
}
@media screen and (max-width: 768px) {
  .ank_link {
    padding: 6.6667vw 0;
    background-color: #fff;
    box-shadow: 0 -15px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    transition: bottom 0.4s ease, opacity 0.4s ease;
    opacity: 0;
    z-index: 1000;

    height: 20vw;
  }
  .ank_link.visible {
    bottom: 0;
    opacity: 1;
  }
  .ank_link ul,
  .overlay ul {
    gap: 1.3333vw;
  }
  .gradient-border {
    width: 23.3333vw;
    height: 11.0667vw;
    border-radius: 10px;
  }
  .gradient-border::before {
    width: calc(100% - 1.3333vw);
    top: 0.6667vw;
    right: 0.6667vw;
    bottom: 0.6667vw;
    left: 0.6667vw;
    border-radius: 8px;
  }
  .gradient-border .scroll-link,
  .gradient-border a {
    padding-left: 2vw;
  }
  .shiga_store .gradient-border a {
    padding-left: 0;
  }
  .gradient-border:hover {
    opacity: 1;
  }
  .gradient-border img.camp-tit {
    width: 7.3333vw;
    top: -4.5vw;
  }
  .gradient-border p {
    font-size: 1.8667vw;
  }
  .gradient-border:nth-child(1) p {
    font-size: 2.6667vw;
  }
  .gradient-border:nth-child(4) p {
    font-size: 1.6vw;
  }
  .gradient-border .camp-img.img01 {
    width: 7.3333vw;
    top: 0.9333vw;
    right: 0;
  }
  .gradient-border .camp-img.img02 {
    width: 8.9333vw;
    top: 1.2vw;
    right: 2.4vw;
  }
  .gradient-border .camp-img.img03 {
    width: 8.4vw;
    top: 1.3333vw;
    right: 0;
  }
  .gradient-border .camp-img.img04 {
    width: 5.2vw;
    top: 1.8667vw;
    right: 0.6vw;
  }
  
  .gradient-border .arrow {
    bottom: -1.5vw;
    width: 4vw;
    height: 4vw;
    width: min(30 / 768 * 100vw, 30px);
    height: min(30 / 768 * 100vw, 30px);
  }
  .gradient-border .arrow svg {
    width: 45%;
    height: auto;
    padding-top: 2px;
  }
  .gradient-border:hover .arrow svg {
    transform: translateY(0);
  }
}




/* Go TOP */
/* ============================================ */
.top-button {
  width: 64px;
  position: fixed;
  bottom: 45px;
  right: 20px;
  border: none;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
.top-button.show {
  opacity: 1;
  pointer-events: auto;
}
.top-button img.arrow {
  width: 21px;
  position: absolute;
  top: 13px;
  left: 22px;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.top-button:hover img.arrow {
  transform: translateY(-5px) rotate(180deg);
}
@media screen and (max-width: 768px) {
  .top-button {
    width: 10.6667vw;
    bottom: 27vw;
    right: 2vw;
  }
  .top-button img.arrow {
    width: 3.3333vw;
    top: 2vw;
    left: 3.6vw;
  }
  .top-button:hover img.arrow {
    transform: translateY(0) rotate(180deg);
  }
}






/* animation */
/* ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-up.visible {
  animation: effect00 1s ease 0s 1 forwards;
}
@keyframes effect00 {
  100% { opacity: 1; transform: translate( 0, 0);}
}



.ef01 {
  opacity: 0;
  transform: translateY(20px);
}
.ef01.visible {
  animation: effect01 0.5s ease 0s 1 forwards;
}
@keyframes effect01 {
  100% { opacity: 1; transform: translate( 0, 0);}
}
.ef02 {
  opacity: 0;
  transform: translateY(20px);
}
.ef02.visible {
  animation: effect02 0.5s ease 0.5s 1 forwards;
}
@keyframes effect02 {
  100% { opacity: 1; transform: translate( 0, 0);}
}




.fade-kv-txt {
  animation-name: fade-show;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  visibility: hidden;
}
.fade-kv-txt01 {
  animation-name: fade-show;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  visibility: hidden;
}
.fade-kv-txt02 {
  animation-name: fade-show;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 2s;
  visibility: hidden;
}
.fade-kv-txt03 {
  animation-name: fade-show;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
  visibility: hidden;
}
.fade-kv-txt04 {
  animation-name: fade-show;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 3s;
  visibility: hidden;
}



.fade-ani {
  visibility: hidden;
}
.fade-ani.visible {
  animation-name: fade-show;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.lead-box li:nth-child(1).fade-ani.visible,
.ank_link li:nth-child(1).fade-ani.visible,
.sank_link li:nth-child(1).fade-ani.visible,
.campaign01 .cont02-list li:nth-child(1).fade-ani.visible,
.campaign01 .cont02-list li:nth-child(4).fade-ani.visible,
.campaign01 .cont02-list li:nth-child(7).fade-ani.visible,
.campaign04 .chance-box li:nth-child(1).fade-ani.visible
{
  animation-delay: .3s;
}
.lead-box li:nth-child(2).fade-ani.visible,
.ank_link li:nth-child(2).fade-ani.visible,
.sank_link li:nth-child(2).fade-ani.visible,
.campaign01 .cont02-list li:nth-child(2).fade-ani.visible,
.campaign01 .cont02-list li:nth-child(5).fade-ani.visible,
.campaign01 .cont02-list li:nth-child(8).fade-ani.visible,
.campaign04 .chance-box li:nth-child(2).fade-ani.visible
{
  animation-delay: .6s;
}
.lead-box li:nth-child(3).fade-ani.visible,
.ank_link li:nth-child(3).fade-ani.visible,
.campaign01 .cont02-list li:nth-child(3).fade-ani.visible,
.campaign01 .cont02-list li:nth-child(6).fade-ani.visible,
.campaign04 .chance-box li:nth-child(3).fade-ani.visible
{
  animation-delay: .9s;
}
.ank_link li:nth-child(4).fade-ani.visible {
  animation-delay: 1.2s;
}
@keyframes fade-show {
  0%, 20%, 40%, 60%, 80%, 100% {
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }
  0% {
    visibility: visible;
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
  20% {
      transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
      transform: scale3d(.9, .9, .9);
  }
  60% {
      opacity: 1;
      transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
      transform: scale3d(.97, .97, .97);
  }
  100% {
      visibility: visible;
      opacity: 1;
      transform: scaleZ(1);
  }
}

.fade-ani02 {
  visibility: hidden;
}
.fade-ani02.visible {
  animation-name: fade-show02;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes fade-show02 {
  0%, 20%, 40%, 60%, 80%, 100% {
    animation-timing-function: cubic-bezier(.215,.61,.355,1);
  }
  0% {
    visibility: visible;
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
  20% {
      transform: scale3d(1.5, 1.5, 1.5);
  }
  40% {
      transform: scale3d(.9, .9, .9);
  }
  60% {
      opacity: 1;
      transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
      transform: scale3d(.97, .97, .97);
  }
  100% {
      visibility: visible;
      opacity: 1;
      transform: scaleZ(2);
  }
}










.underline {
  position: relative;
  display: inline-block;
}
.underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 8px;
  width: 0;
  background-color: #fcff00;
  transition: width 0.5s ease;
  z-index: -1;
}
.ef01.visible .underline::after,
.fade-ani.visible .underline::after {
  width: 100%;
  transition-delay: 1s;
}
.ef02.visible .underline::after {
  width: 100%;
  transition-delay: 1.5s;
}


.campaign .underline-yellow {
  background-image: linear-gradient(to bottom, transparent 70%, #fff100 70%);
  background-size: 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.5s ease;
  line-height: 1.8;
}
.ef01.visible .underline-yellow01 {
  background-size: 100% 100%;
  transition-delay: 0.5s;
}
.ef01.visible .underline-yellow02 {
  background-size: 100% 100%;
  transition-delay: 1.2s;
}

