@charset "UTF-8";
/*
	BASE
*******************************/
/*
font-family: heisei-kaku-gothic-std, sans-serif;
*/
* {
  font-family: heisei-kaku-gothic-std, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
  line-height: 1;
}

.font_en {
  font-family: "MuseoModerno", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

html {
  font-size: 62.5%;
  line-height: 1;
}
html body {
  font-size: 1.6rem;
  background-color: #E7E7E7;
}
html body.menuopen {
  overflow: hidden;
}
html body img {
  backface-visibility: hidden;
  vertical-align: bottom;
  line-height: 0;
}
html body p, html body th, html body td, html body dt, html body dd, html body li, html body h1, html body h2, html body h3, html body h4, html body h5, html body h6, html body label {
  color: #231815;
}
html body a {
  color: #1d1d1d;
  text-decoration: none;
  outline: none;
  border: none;
}
html body a:hover {
  text-decoration: none;
}
html body a img {
  outline: none;
  border: none;
  backface-visibility: hidden;
}
html body area {
  border: none;
  outline: none;
}
html body * img {
  max-width: 100%;
  height: auto;
}
html body main {
  overflow: hidden;
}

:root {
  --color_ur1: #910D53;
  --color_ur1h: #740A42;
  --color_ur2: #00447D;
  --color_ur2h: #003664;
  --color_yellow: #E5FF79;
  --color_purple: #492868;
  --color_purpleh: #3A2053;
  --slidemax: 3;
}

html body * :focus-visible {
  outline: red;
  border: 3px dotted #cc0000 !important;
}

.wrap {
  position: relative;
}
.wrap .contents {
  width: calc(100% - 160px);
  max-width: 1520px;
  margin: 0 auto;
}
.wrap .contents .btn {
  font-size: 1.8rem;
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1;
  width: 300px;
  height: 56px;
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
  color: var(--color_ur1);
  border: 1px solid #000000;
  border-radius: 28px;
  box-shadow: 3px 3px 0 #000000;
}

.fancybox__content {
  aspect-ratio: 16/9 !important;
  width: 90vw !important;
  max-width: 960px !important;
  height: auto !important;
  padding: 0 !important;
}
/**animation**/
.animation {
  opacity: 0;
  transition-duration: 2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  /* .fade-in {

  } */
}
.animation.fade-left {
  transform: translateX(-50px);
}
.animation.fade-right {
  transform: translateX(50px);
}
.animation.fade-up {
  transform: translateY(50px);
}
.animation.bounce {
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}
@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(100px) scaleY(0.9);
  }
  30% {
    opacity: 1;
    transform: translateY(-20px) scaleY(0.9);
  }
  50% {
    transform: translateY(10px) scaleY(0.95);
  }
  70% {
    transform: translateY(-5px) scaleY(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.animation.delay-1 {
  transition-delay: 0.2s;
}
.animation.delay-2 {
  transition-delay: 0.4s;
}
.animation.delay-3 {
  transition-delay: 0.6s;
}
.animation.delay-4 {
  transition-delay: 0.8s;
}
.animation.delay-5 {
  transition-delay: 1s;
}
.animation.delay-6 {
  transition-delay: 1.2s;
}
.animation.delay-7 {
  transition-delay: 1.4s;
}
.animation.delay-8 {
  transition-delay: 1.6s;
}
.animation.delay-9 {
  transition-delay: 1.8s;
}
.animation.delay-10 {
  transition-delay: 2s;
}
.animation:hover.delay-1 {
  transition-delay: 0s;
}
.animation:hover.delay-2 {
  transition-delay: 0s;
}
.animation:hover.delay-3 {
  transition-delay: 0s;
}
.animation:hover.delay-4 {
  transition-delay: 0s;
}
.animation:hover.delay-5 {
  transition-delay: 0s;
}
.animation:hover.delay-6 {
  transition-delay: 0s;
}
.animation:hover.delay-7 {
  transition-delay: 0s;
}
.animation:hover.delay-8 {
  transition-delay: 0s;
}
.animation:hover.delay-9 {
  transition-delay: 0s;
}
.animation:hover.delay-10 {
  transition-delay: 0s;
}

.animation.show {
  opacity: 1;
  /* .fade-in {

  } */
}
.animation.show.fade-left {
  transform: translate(0, 0);
}
.animation.show.fade-right {
  transform: translate(0, 0);
}
.animation.show.fade-up {
  transform: translate(0, 0);
}
.animation.show.bounce {
  opacity: 0;
  animation: bounce 1s ease 2s 1 normal forwards;
}
.animation.show > .fade-left {
  opacity: 1;
  transform: translate(0, 0);
}
.animation.show > .fade-right {
  opacity: 1;
  transform: translate(0, 0);
}
.animation.show > .fade-up {
  opacity: 1;
  transform: translate(0, 0);
}
@media (hover: hover) {
  .wrap .contents .btn {
    transition: 0.3s;
  }
  .wrap .contents .btn:hover {
    box-shadow: 0 0 0 #000000;
    color: #FFFFFF;
    background-color: var(--color_ur1h);
  }
}
@media screen and (max-width: 1500px) {
  .wrap {
    position: relative;
  }
  .wrap .contents {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 1200px) {
  .wrap {
    position: relative;
  }
  .wrap .contents {
    width: calc(100% - 60px);
  }
  .pcOnly3 {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .wrap {
    position: relative;
  }
  .wrap .contents {
    width: calc(100% - 40px);
  }
  .pcOnly2 {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .wrap .contents .btn {
    width: 290px;
    height: 56px;
  }
  .pcOnly {
    display: none !important;
  }
  .animation {
    opacity: 0;
    transition-duration: 2s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    /* .fade-in {

    } */
  }
  .animation.fade-left {
    transform: translateX(-50px);
  }
  .animation.fade-right {
    transform: translateX(50px);
  }
  .animation.fade-up {
    transform: translateY(50px);
  }
  .animation.delay-1 {
    transition-delay: 0s;
  }
  .animation.delay-2 {
    transition-delay: 0s;
  }
  .animation.delay-3 {
    transition-delay: 0s;
  }
  .animation.delay-4 {
    transition-delay: 0s;
  }
  .animation.delay-5 {
    transition-delay: 0s;
  }
  .animation.delay-6 {
    transition-delay: 0s;
  }
  .animation.delay-7 {
    transition-delay: 0s;
  }
  .animation.delay-8 {
    transition-delay: 0s;
  }
  .animation.delay-9 {
    transition-delay: 0s;
  }
  .animation.delay-10 {
    transition-delay: 0s;
  }
}
@media screen and (min-width: 1025px) {
  .tbOnly {
    display: none !important;
  }
}
@media screen and (min-width: 1201px) {
  .tbOnly2 {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}