@charset "UTF-8";

/*-----------*/
/*common
/*-----------*/

html {
  font-size: 62.5%;
}

*,*::after,*::before{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: var(--font-13px);
  font-weight: 500;
  color: var(--color-brown);
  font-family: 'Zen Kaku Gothic Antique', 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
  position: relative;
  -webkit-appearance: none;
  appearance: none;
}

:root {
  --border-radius: 10px;
  --border-brown: 2px solid #674b30;
  --color-white:#ffffff;
  --color-brown:#674b30;
  --color-green50:#c2e4cb;
  --color-lightGreen:#b3dca2;
  --color-lightGreen30:#e8f4e3;
  --color-blue50:#d7eef3;
  --color-blue20:#eff8fa;
  --color-red50:#f7c4c0;
  --color-red20:#fce7e6;
  --color-pink50:#fdece3;
  --color-orange80:#f5a656;
  --color-orange50:#f8c795;
  --color-yellow80:#fdd44a;
  --color-yellow50:#fde48e;
  --color-yellow20:#fef4d2;
  --color-ivory:#fff4dc;
  --font-12px: max(1.2rem, 3.0vw);
  --font-13px: max(1.3rem, 3.2vw);
  --font-14px: max(1.4rem, 3.4vw);
  --font-15px: max(1.5rem, 3.7vw);
  --font-16px: max(1.6rem, 3.9vw);
  --font-17px: max(1.7rem, 4.2vw);
  --font-18px: max(1.8rem, 4.4vw);
  --font-19px: max(1.9rem, 4.7vw);
  --font-20px: max(2.0rem, 4.9vw);
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--color-brown);
  transition: var(--transition);
  position: relative;
}

ul,li,tr,th,td,dl,dt,dd {
  text-decoration: none;
  list-style: none;
}

.hidden {
  visibility: hidden;
  height: 0!important;
  margin: 0!important;
  border: 0!important;
  padding: 0!important;
}


@media (min-width: 522px) {

  :root {
    --font-12px: 1.5rem;
    --font-13px: 1.6rem;
    --font-14px: 1.7rem;
    --font-15px: 1.8rem;
    --font-16px: 1.9rem;
    --font-17px: 2.0rem;
    --font-18px: 2.2rem;
    --font-19px: 2.3rem;
    --font-20px: 2.4rem;
  }

}

/* ▼ノートPC（メイン400px想定） */
@media (min-width: 1024px) and (max-width: 1199.98px) {

  :root {
    --font-12px: 1.4rem;
    --font-13px: 1.4rem;
    --font-14px: 1.6rem;
    --font-15px: 1.7rem;
    --font-16px: 1.8rem;
    --font-17px: 1.9rem;
    --font-18px: 2.0rem;
    --font-19px: 2.1rem;
    --font-20px: 2.2rem;
  }

}



/*-----------*/
/* animation(アニメーション)
/*-----------*/

.fade-in2,
.menu-scrollFallIn,
.scroll-bubble{
  opacity: 0;
}

/* fade-in2 */
.fade-in2.is-active{
  animation: scrollFadeIn .3s cubic-bezier(0.58, 0.02, 0.54, 1) .6s forwards;
}
@keyframes scrollFadeIn {
  0% {
    transform: translate(0, 10px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* menu-scrollFallIn */
.menu-scrollFallIn.is-active{
  animation: scrollFallIn .3s cubic-bezier(0.58, 0.02, 0.54, 1) .4s forwards;
}
@keyframes scrollFallIn {
  0%{
    transform: translate(0, -20px);
  }
  100%{
    transform: translate(0, 0);
    opacity: 1;
  }
}

/* scroll-bubble */
.scroll-bubble.is-active{
  animation: bubblePopIn .5s cubic-bezier(0.58, 0.02, 0.54, 1) forwards;
}
.scroll-bubble2.is-active{
  animation: bubblePopIn .5s cubic-bezier(0.58, 0.02, 0.54, 1) forwards;
}
@keyframes bubblePopIn {
  0%{
    transform: scale(0);
    bottom: -30px;
    left: 12px;
  }
  100%{
    transform:scale(1);
    opacity: 1;
    bottom: 0px;
    left: 0px;
  }
}

/* katakata */
.a-katakata {
  animation: katakata 1.5s steps(2) infinite;
}
@keyframes katakata {
  0%  { transform: rotate(5deg); }
  100%  { transform: rotate(-5deg); }
}
.a-katakata2 {
  animation: katakata2 1.5s steps(2) infinite;
}
@keyframes katakata2 {
  0%  { transform: rotate(-5deg); }
  100%  { transform: rotate(5deg); }
}


/* kakukaku */
.kakukaku {
  animation: kakukaku 2s steps(2, start) infinite;
}
@keyframes kakukaku {
  0% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* kakukaku2 */
.kakukaku2 {
  animation: kakukaku2 2s steps(2, start) infinite;
}
@keyframes kakukaku2 {
  0% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* fuwafuwa */
.fuwafuwa {
  animation: fuwafuwa 4s infinite ease-in-out 0s alternate;
}
.fuwafuwa2 {
  animation: fuwafuwa 5s infinite ease-in-out 0s alternate;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -6px);
  }
  100% {
    transform: translate(0, 0px);
  }
}


/*-----------*/
/* loading
/*-----------*/

#js-loading {
  width: 100%;
  height: 100%;

  background-color: var(--color-white);
  background-image: url("img/mainContents-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 11;
  overflow: hidden;
  transition: ease .5s;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.-logoAnimation_image {
  width: 40%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.-logoAnimation_image .-image_icon {
  width: 48%;
}

.loading-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(5vw,2rem);
  font-weight: 700;
  padding-top: min(2vw,1.4rem);
}

/* ▼ここからloadingの動き */

#js-loading {
  opacity: 1;
  visibility: visible;
  transition: opacity .8s ease, visibility .8s ease;
}

#js-loading.is-hide {
  opacity: 0;
  pointer-events: none;
}

.loading-text .char {
  display:inline-block;
  animation: loadingBounce 1.2s ease-in-out infinite;
  animation-delay: calc(0.06s * var(--char-index));
}

@keyframes loadingBounce{
  0%, 100% { transform: translateY(30%); }
  50%      { transform: translateY(0%); }
}

/* ▲ここまでloadingの動き */

/* body.appear .splashbg {
  display: block;
  border-radius: 50%;
  animation-name: PageAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    display: block;
    transform: scale(0);
  }
  100% {
    transform: scale(100);
    display: none;
  }
} */


@media (min-width: 522px){
  .-logoAnimation_image{
    width: 25%;
  }
}


@media (min-width: 1024px){
  #js-loading{
    background-image: url("img/mainContents-bgPc.jpg");
  }
}


/*-----------*/
/* mainContainer
/*-----------*/

html, body{
  height: 100vh;
  background: linear-gradient(to bottom right, #66bc7d, #67b845);
}

body {
  margin: 0;
  overflow: hidden;
  background: transparent; /* ここは透明にしてOK */
}

/* pcSide */

.pcSide {
  display: none;
}

/* frame */

.frame {
  position: fixed;
  inset: 0;
}

.frame__card {
  position: absolute;
  top:    calc(16px + env(safe-area-inset-top));
  right:  calc(16px + env(safe-area-inset-right));
  bottom: calc(16px + env(safe-area-inset-bottom));
  left:   calc(16px + env(safe-area-inset-left));

  background-color: #fff;
  background-image: url("img/mainContents-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  border: 2px solid var(--color-brown);
  border-radius: 60px;
  overflow: hidden;
}

.frame__inner {
  height: 100%;
  overflow-x: clip;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-sizing: border-box;
  background: transparent;

  /* スクロールバー非表示 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.frame__inner::-webkit-scrollbar {
  display: none;
}


@media (min-width: 520px) {

  .mainContainer {
    width: 100%;
    height: 100vh;
    background-image: url(img/mainContents-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: fixed;
    top: 0;
  }

  /* frame */

  .frame {
    width: 500px;
    margin: 0 auto;
    background: linear-gradient(to bottom right, #66bc7d, #67b845);
  }

}


@media (min-width: 1024px) {

  .mainContainer {
    background-image: url(img/mainContents-bgPc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .mainInner{
    max-width: 1440;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: min(100px, 5vw);
  }

  /* pcSide */

  .pcSide{
    position: static;
    width: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .pcSide_inner {
    height: min(50vw, 80vh);
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .pcSide_inner img {
    width: auto;
    height: 100%;
  }

  .pcSide_logo {
    height: 18%;
  }

  .pcSide_logo a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }

  .pcSide_subTitleImage {
    display: block;
    height: 12%;
  }

  .pcSide_mainTitleImage {
    display: block;
    height: 72%;
  }

  .pcSide_list {
    height: 30%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 1.5vw;
  }

  .pcSide_list li {
    height: 45%;
  }

  .pcSide_list li a {
    display: block;
    transition: 0.3s;
  }

  .pcSide_list li a:hover {
    transform: scale(1.08);
  }

  .pcSide_illustration {
    height: 40%;
    position: relative;
  }

  .pcSide_ueda, .pcSide_ippei {
    position: absolute;
  }

  .pcSide_ueda {
    height: 40%;
    top: 19%;
    right: 13%;
  }

  .pcSide_ippei {
    height: 80%;
    z-index: 1;
    bottom: 12%;
    left: 0;
  }

  .pcSide_ippei a {
    display: block;
    transition: 0.3s;
  }

  .pcSide_ippei a:hover {
    transform: scale(1.05);
  }

  .pcSide_baceIllustration {
    position: relative;
  }

  /* ▼ここからpcSideの装飾 */

  .pcSide_deco {
    position: absolute;
  }

  /* leftTop01～05 */

  .pcSide_deco_leftTop01 {
    height: 5%;
    top: 0;
    left: 0;
  }

  .pcSide_deco_leftTop02 {
    height: 5%;
    top: -3%;
    left: 18%;
  }

  .pcSide_deco_leftTop03 {
    height: 4.5%;
    top: 9%;
    left: 1%;
  }

  .pcSide_deco_leftTop04 {
    height: 5%;
    top: 16%;
    left: -8%;
  }

  .pcSide_deco_leftTop05 {
    height: 3%;
    top: 16%;
    left: 6%;
  }

  /* leftBottom01～03 */

  .pcSide_deco_leftBottom01 {
    height: 3%;
    left: -8%;
    bottom: 47%;
  }

  .pcSide_deco_leftBottom02 {
    height: 5.5%;
    left: -8%;
    bottom: 38%;
  }

  .pcSide_deco_leftBottom03 {
    height: 3%;
    left: 4%;
    bottom: 40%;
  }

  /* rightTop01～06 */

  .pcSide_deco_rightTop01 {
    height: 6%;
    top: -4%;
    right: 10%;
  }

  .pcSide_deco_rightTop02 {
    height: 5%;
    top: 0;
    right: 0;
  }

  .pcSide_deco_rightTop03 {
    height: 7%;
    top: 8%;
    right: 2%;
  }

  .pcSide_deco_rightTop04 {
    height: 5%;
    top: 14%;
    right: -4%;
  }

  .pcSide_deco_rightTop05 {
    height: 3%;
    top: 6%;
    right: -5%;
  }

  .pcSide_deco_rightTop06 {
    height: 3%;
    top: 15%;
    right: 12%;
  }

  /* rightBottom01～04 */

  .pcSide_deco_rightBottom01 {
    height: 7%;
    bottom: 37%;
    right: -5%;
  }

  .pcSide_deco_rightBottom02 {
    height: 8%;
    bottom: 26%;
    right: 0;
  }

  .pcSide_deco_rightBottom03 {
    height: 2.5%;
    bottom: 30%;
    right: -6%;
  }

  .pcSide_deco_rightBottom04 {
    height: 4%;
    bottom: 38%;
    right: 10%;
  }

  /* ▲ここまでpcSideの装飾 */

  /* frame */

  .frame{
    width: 400px;
    height: 100%;
    margin: 0;
    position: relative;
    inset: auto;
  }

}


@media (min-width: 1200px) {

  .mainInner{
    gap: min(100px, 8vw);
  }

  /* frame */

  .pcSide {
    width: auto;
  }

  .frame {
    width: 500px;
    margin: 0;
  }

}


/*-----------*/
/* G-vav
/*-----------*/

/* openbtn */

.openbtn {
  width: 50px;
  height: 50px;
  border: var(--border-brown);
  border-radius: 50%;
  background-color: var(--color-white);
  position: absolute;
  top: 2%;
  right: 2%;
  z-index: 11;
  cursor: pointer;
}

.openbtn span {
  display: block;
  width: 50%;
  height: 2px;
  border-radius: 10px;
  background-color: var(--color-brown);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.openbtn span:nth-of-type(1) {
  top: 32%;
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: 66%;
}

.openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  top: 50%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  top: 50%;
}

/* g-nav */

.g-nav{
  width: 100%;
  height: 100vh;
  height: 100dvh;

  background-image: url(img/mainContents-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  position: fixed;
  top: 0;
  z-index: 10;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.g-nav.panelactive {
  opacity: 1;
  visibility: visible;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.g-nav_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 85%;
}

.g-nav_wrapper img {
  width: auto;
  height: 100%;
  display: block;
}

.g-nav_logo {
  height: 25%;
}

.g-nav_logo a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.g-nav_logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display:block;
}

.g-nav_subTitleImage {
  display: block;
  height: 10%;
  margin: 0 auto;
}

.g-nav_mainTitleImage {
  display:block;
  height: 85%;
  min-height: 1px;
}

.g-nav_list {
  height: 50%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

.g-nav_listItem {
  height: 22%;
}

.g-nav_listItem:first-of-type {
  margin-top: 0;
}

.g-nav_listItem a,
.g-nav_application a {
  height: 100%;
}

.g-nav_listItem a {
  display: block;
}

.g-nav_bottomArea {
  height: 14%;
  position: relative;
}

.g-nav_application {
  height: 100%;
  margin: 0 auto;
}

.g-nav_application a {
  display: block;
}

.g-nav_deco {
  position: absolute;
  bottom: 0;
}

.g-nav_deco01 {
  height: 100%;
  left: -80%;
}

.g-nav_deco02 {
  height: 90%;
  right: -82%;
}

/* ▼ここからg-nav内のアニメーション */

.g-nav_logo, .g-nav_listItem, .g-nav_bottomArea {
  opacity: 0;
}

.g-nav.panelactive .g-nav_logo, 
.g-nav.panelactive .g-nav_listItem, 
.g-nav.panelactive .g-nav_bottomArea {
  animation: pon 0.5s forwards;
}

.g-nav.panelactive .g-nav_listItem:nth-of-type(1) {
  animation-delay: 0.1s;
}

.g-nav.panelactive .g-nav_listItem:nth-of-type(2) {
  animation-delay: 0.2s;
}

.g-nav.panelactive .g-nav_listItem:nth-of-type(3) {
  animation-delay: 0.3s;
}

.g-nav.panelactive .g-nav_listItem:nth-of-type(4) {
  animation-delay: 0.4s;
}

.g-nav.panelactive .g-nav_bottomArea {
  animation-delay: 0.5s;
}

@keyframes pon {
  0% {
    opacity: 0;
    transform: translateY(20%) scale(0.9);
  }
  60% {
    transform: translateY(-2%) scale(1.02);
  }
  80% {
    transform: translateY(1%) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ▲ここまでg-nav内のアニメーション */


@media (min-width: 522px) {

  .g-nav {
    width: 500px;
    border-right: 2px solid var(--color-brown);
    border-left: 2px solid var(--color-brown);
  }

}


@media (min-width: 1024px) {

  .openbtn, .g-nav {
    display: none;
  }

}


/*-----------*/
/* KV
/*-----------*/

.KV {
  height: calc(100vh - 32px);
  height: calc(100svh - 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 0;
}

.KV-main {
  height: 85svh;
  max-height: 500px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.KV-main img {
  width: auto;
  height: 100%;
}

.KV-titleImage {
  height: 26%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.KV-subTitleImage {
  display: block;
  height: 8%;
}

.KV-subTitleImage img {
  display: block;
}

.KV-mainTitleImage {
  display: block;
  height: 85%;
}

.KV-visualImage {
  height: 60%;
  position: relative;
}

.KV-scrollImage {
  height: 8%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

body.is-loadActive .KV-scrollImage {
  animation: scrollFadeIn .3s cubic-bezier(0.58, 0.02, 0.54, 1) .7s forwards;
}

.KV-scrollImage-item01 {
  height: 30%;
}

.KV-scrollImage-item02 {
  height: 52%;
}

/* KVの装飾 */

.KV-deco {
  width: 100%;
  height: 90dvh;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.KV-deco-item {
  position: absolute;
}

.KV-deco-item img {
  width: auto;
  height: 100%;
}

/* left01～08 */

.KV-deco_itemLeft01 {
  height: 4.2%;
  top: 9.5%;
  left: 6%;
}

.KV-deco_itemLeft02 {
  height: 2.5%;
  top: 21%;
  left: 10%;
}

.KV-deco_itemLeft03 {
  height: 4%;
  top: 32%;
  left: 5%;
}

.KV-deco_itemLeft04 {
  height: 2.5%;
  top: 43%;
  left: 6%;
}

.KV-deco_itemLeft05 {
  height: 2.5%;
  top: 52%;
  left: 9%;
}

.KV-deco_itemLeft06 {
  height: 4%;
  top: 60%;
  left: 4%;
}

.KV-deco_itemLeft07 {
  height: 4%;
  top: 72%;
  left: 6%;
}

.KV-deco_itemLeft08 {
  height: 3.5%;
  top: 82%;
  left: 13%;
  rotate: -80deg;
}

/* right01～08 */

.KV-deco_itemRight01 {
  height: 4.5%;
  top: 10%;
  right: 5%;
}

.KV-deco_itemRight02 {
  height: 3%;
  top: 21.5%;
  right: 8%;
}

.KV-deco_itemRight03 {
  height: 4.5%;
  top: 30%;
  right: 5%;
}

.KV-deco_itemRight04 {
  height: 4.5%;
  top: 40%;
  right: 6%;
}

.KV-deco_itemRight05 {
  height: 6%;
  top: 50%;
  right: 4%;
}

.KV-deco_itemRight06 {
  height: 3%;
  top: 61%;
  right: 8%;
}

.KV-deco_itemRight07 {
  height: 5.5%;
  top: 70%;
  right: 6%;
}

.KV-deco_itemRight08 {
  height: 5.5%;
  top: 80%;
  right: 5%;
  rotate: 10deg;
}

/* kv動き */

.is-loadActive .KV-titleImage {
  opacity: 0;
  animation: fadeInPopup 0.3s ease 0.5s forwards;
}

@keyframes fadeInPopup {
  0% {
    transform: translateY(30px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

.is-loadActive .KV-visualImage{
  opacity: 0;
  animation: fadeInPopup .3s ease 0.6s forwards;
}

@keyframes visualAnimation {
  0% {
    opacity: 0;
    transform: translateY(-2%);
  }
  50% {
    opacity: 1;
    transform: translateY(2%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

.is-loadActive .KV-deco {
  opacity: 0;
  animation: fadeInPopup2 0.3s ease 0.7s forwards;
}

@keyframes fadeInPopup2 {
  0% {
    transform: translateY(-45%) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) scale(1.0);
  }
  80%, 100% {
    opacity: 1;
  }
}

/* スクロールしたら消える */

.KV {
  transition: opacity .25s ease;
}

.KV.is-hidden {
  opacity: 0;
  pointer-events: none; /* 上に残ってクリック邪魔しない */
}


@media (min-width: 522px) {

  .KV-main {
    max-height: 650px;
  }

}


@media (min-width: 1024px) {

  .KV-main {
    max-height: 550px;
  }

}


@media (min-width: 1200px) {

  .KV-main {
    max-height: 700px;
  }

}


/*-----------*/
/* mainContents-inner(メイン共通)
/*-----------*/
.contents {
  width: 85%;
  margin: 0 auto;
  padding-top: 50px;
}

.eventDetails, .program {
  width: calc(100% + 5px);
  margin-top: min(26svh, 44vw);
  border-radius: 0 0 60px 60px;
  border-left: var(--border-brown);
  border-right: var(--border-brown);
  border-bottom: var(--border-brown);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.eventDetails::before, .program::before {
  content: "";
  width: 105%;
  height: 50vw;
  position: absolute;
  z-index: -1;
  top: -40vw;
  left: 50%;
  transform: translateX(-50%);
}

#point, #program, #timeTable, #precautions {
  scroll-margin-top: 50px;
}


@media (min-width: 522px) {

  .eventDetails, .program {
    margin-top: 250px;
  }

  .eventDetails::before, .program::before {
    height: 250px;
    top: -220px;
  }

}


/* ▼ノートPC（メイン400px想定） */
@media (min-width: 1024px) and (max-width: 1199.98px) {
  .eventDetails::before, .program::before {
    top: -200px;
  }
}



/*-----------*/
/* eventDetails(イベント内容)
/*-----------*/
.eventDetails {
  padding-bottom: 50px;
  background: var(--color-lightGreen);
}

.eventDetails::before {
  background: url(img/bgDecoMatsu-lightGreen.svg) no-repeat center;
  background-size: 100%;
}

.eventDetails .contents {
  padding-top: 0;
}

.eventDetails-opening {
  width: 80%;
  margin: 0 auto;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 10px;
}

._chara__uedaSan {
  width: 50%;
}

._chara__uedaSan img:first-of-type {
  width: 110%;
  margin: 0 0 5px -30px;
}

._chara__ippei {
  width: 44%;
}

._chara__ippei img:first-of-type {
  animation-delay: .1s;
  width: 90%;
  margin: 0 0 10px 30px;
}

/* 申込期間・対象者・イベント期間 共通 */
.eventDetails-days {
  background-color: var(--color-white);
  margin: 20px auto 0;
  border: var(--border-brown);
  border-radius: var(--border-radius);
  padding: 20px 0;
  position: relative;
}

/* 申込期間 */
.-days_online {
  padding: 30px 0 20px;
}
.eventDetails-daysTitle {
  font-size: var(--font-14px);
  line-height: 1;
  text-align: center;
}
.eventDetails-daysText {
  width: 85%;
  margin: min(10px, 2vw) auto;
}
.eventDetails-daysNote {
  width: 94%;
  margin: 0 auto;
  text-align: center;
}

/* 対象者・イベント期間 */
.eventDetails-target {
  margin-top: 30px;
}

.eventDetails-targetInfo_title {
  width: 26%;
  margin: 0 auto;
}

.eventDetails-targetInfo_detail {
  margin-top: 10px;
  text-align: center;
  line-height: 1.8;
}

.eventDetails-targetInfo_detail span {
  border-radius: 4px;
  padding: 0 6px 2px;
  background-color: var(--color-brown);
  font-size: var(--font-18px);
  color: var(--color-white);
}

.supplement-list {
  margin-top: 15px;
}

.supplement-list li {
  margin-top: 5px;
  text-indent: -1.3em;
  padding-left: 1em;
  font-weight: 500;
  line-height: 1.4;
}

.supplement-list li:first-of-type {
  margin-top: 0;
}

.supplement-list li::before {
  content: "● ";
  font-size: 1em;
}

.eventDetails-days.-days_offline {
  background: var(--color-blue50);
}

.eventDetails-days.-days_online {
  background: var(--color-orange50);
}

.eventDetails-target h4 {
  width: 27%;
  position: absolute;
  top: -6%;
  left: -4%;
}

.-days_image, .-days_place {
  width: 85%;
  margin: 0 auto;
}

.-days_place {
  margin-top: 10px;
}

.eventDetails-wanted {
  margin-top: 15px;
}

.eventDetails-wanted p {
  text-align: center;
}

.eventDetails-wantedText01 {
  font-size: 150%;
  font-weight: 600;
}


/*-----------*/
/* Point(イベントのポイント)
/*-----------*/

.point {
  margin-bottom: min(60vw, 40%);
}

.point-title_container {
  position: relative;
}

.point-title {
  width: 90%;
  margin: 0 auto 30px;
  border-bottom: 0;
}

.point-titleDeco {
  position: absolute;
  width: 8%;
}

.point-titleDeco01 {
  top: -50%;
  left: -4%;
}

.point-titleDeco02 {
  top: -30%;
  right: -2%;
}

.point-listItem {
  margin-top: 20px;
}

.point-listItem__text {
  position: relative;
  z-index: 1;
}

.point-listItem__text01 {
  rotate: 2deg;
}

.point-listItem__text02, 
.point-listItem__text03 {
  rotate: -1deg;
}

.point-listItem__text04 {
  rotate: 1deg;
}

.point-listItem__deco {
  width: 30%;
  margin-top: -15px;
}

.point-listItem:nth-of-type(even) .point-listItem__deco {
  margin-left: auto;
}

.point-listItem__deco01, .point-listItem__deco04 {
  rotate: -3deg;
}

.point-listItem__deco02, .point-listItem__deco03 {
  rotate: 3deg;
}

/* ▼ここから動き */
.point-listItem__text01.is-active, 
.point-listItem__text03.is-active {
  animation: point-listItem_InLeft 0.5s steps(3, end) both;
}

.point-listItem__text01.is-active {
  animation-delay: 0.1s;
}

@keyframes point-listItem_InLeft {
  0% {
    transform: translate(-50%) rotate(-15deg);
  }
  100% {
    transform: translate(0) rotate(0);
  }
}

.point-listItem__text02.is-active, 
.point-listItem__text04.is-active {
  animation: point-listItem_InRight 0.5s steps(3, end) both;
}

@keyframes point-listItem_InRight {
  0% {
    transform: translate(50%) rotate(15deg);
  }
  100% {
    transform: translate(0) rotate(0);
  }
}

/* ▲ここまで動き */


/*-----------*/
/* Program(プログラム)
/*-----------*/

.program {
  padding-bottom: 50px;
  background: var(--color-orange80);
}

.program::before {
  background: url(img/bgDecoMatsu-orange.svg) no-repeat center;
  background-size: 100%;
}

.program-contents {
  width: 90%;
  border: 1.5px solid var(--color-brown);
  border-radius: var(--border-radius);
  padding-top: 0;
  background-color: var(--color-lightGreen);
  position: relative;
}

.program-contentsInner {
  margin: 3%;
  padding: 5%;
  border: 1.5px solid var(--color-brown);
  border-radius: var(--border-radius);
  background-color: var(--color-white);
  position: relative;
}

.program-details:first-of-type {
  margin-top: 30px;
}

.program-details dl {
  margin-top: 20px;
}

.program-details dl:first-of-type {
  margin-top: 0;
}

.program-title {
  width: 26%;
  max-width: 92px;
  position: absolute;
  top: -1%;
  left: -8%;
  z-index: 1;
}

.program-details dl:nth-of-type(1) .program-detailsTitle {
  padding-left: 2em;
}

.program-detailsTitle {
  display: flex;
  gap: 2vw;
  font-size: 5.2vw;
  font-weight: 600;
  line-height: 1;
}

.program-detailsNum {
  display: inline-block;
  width: 1.2em;
}

.program-detailsSmall {
  font-size: 80%;
}

.program-details dl:nth-of-type(2) .program-detailsSmall {
  display: block;
  margin-top: 10px;
  text-align: right;
}

.program-detailsText {
  margin-top: 10px;
}

.program-underLine {
  background: linear-gradient(transparent 60%, #fce9d5 60%);
}

.program-job {
  margin-top: 15px;
  padding: 1em;
  border: 1px solid var(--color-brown);
  border-radius: var(--border-radius);
  background-color: var(--color-yellow20);
  position: relative;
}

.program-details .program-jobList {
  margin-top: 10px;
}

.program-details .program-jobList:first-of-type {
  margin-top: 0;
}

.program-jobList dt {
  margin-bottom: 5px;
  border: 1px solid var(--color-brown);
  border-radius: 4px;
  padding: 0.1em 0;
  font-size: var(--font-14px);
  font-weight: 600;
  text-align: center;
}

.program-jobList01 dt {
  background-color: var(--color-yellow50);
}

.program-jobList02 dt {
  background-color: var(--color-blue50);
}

.program-jobList dd {
  line-height: 1.4;
}

.program-jobBubble {
  width: 26vw;
  position: absolute;
  top: -10%;
  right: -13%;
}

.program-booth {
  margin-top: 20px;
  position: relative;
}

.program-boothList {
  margin-top: 15px;
}

.program-boothList:first-of-type {
  margin-top: 0;
}

.program-boothList dt {
  width: fit-content;
  margin: 0 auto 0 0;
  font-size: var(--font-18px);
  font-weight: 600;
  line-height: 1;
  background: linear-gradient(transparent 60%, #e0f2e5 60%);
}

.program-boothText {
  margin-top: 10px;
}

.program-boothBubble {
  width: 27%;
  position: absolute;
  top: -20%;
  right: -8%;
}

.program-contentsDeco {
  width: 85%;
  position: absolute;
  top: -1.7%;
  left: 50%;
  transform: translateX(-50%);
}


@media (min-width: 522px) {

  .program-detailsTitle {
    gap: 10px;
    font-size: 2.7rem;
  }

  .program-title {
    width: 100px;
    max-width: initial;
  }

  .program-jobBubble {
    width: 130px;
  }

  .program-boothBubble {
    width: 90px;
    top: -64%;
    right: -8%;
  }

}

/* ▼ノートPC（メイン400px想定） */
@media (min-width: 1024px) and (max-width: 1199.98px) {

  .program-title {
    width: 80px;
  }

  .program-detailsTitle {
    font-size: 2.1rem;
  }

  .program-jobBubble {
    width: 100px;
    top: -5%;
  }

  .program-boothBubble {
    width: 70px;
  }

}


/*-----------*/
/* timeTable(当日のタイムスケジュール)
/*-----------*/

/* accordion-title */

.timeTable-accordion{
  border: 1.5px solid var(--color-brown) ;
  border-radius: var(--border-radius);
  background: var(--color-white);
  margin-bottom: min(6vw, 4rem);;
}
.timeTable-accordion:last-of-type{
  margin-bottom: 0;
}

.accordion-title {
  position: relative;
  text-align: center;
  border-radius: var(--border-radius);
  padding: min(2vw, .8rem);
  font-size: min(2.14rem, 4.4vw);
  transition: var(--transition);
  cursor: pointer;
}
.accordion-title.active{
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.timeTable-matsue>.accordion-title{
  background: var(--color-red50);
}
.timeTable-hamada>.accordion-title{
  background:var(--color-lightGreen);
}
.timeTable-days>.accordion-title{
  background: var(--color-yellow80);
}

.accordion-title h3{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.accordion-title h3 img{
  display: block;
  width: min(18vw,10rem);
  margin: 0 auto;
}

img.acc-subTitle {
  position: absolute;
  width: min(18vw, 8rem);
  left: -4%;
  top: -16%;
  z-index: 1;
}

.acc-arrow {
  position: absolute;
  transition: var(--transition);
  height: 65%;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
}

.acc-arrow img {
  width: auto;
  height: 100%;
}

.acc-arrow .acc-arrowClose {
  display: none;
}

.accordion-title.active .acc-arrowOpen {
  display: none;
}

.accordion-title.active .acc-arrowClose {
  display: block;
}

/* accordion-contents */

.timeTable {
  width: 90%;
}

.timeTable-title, .wantedNote-title {
  width: 50%;
  margin: 0 auto 30px;
}

.timeTable-noteBox {
  margin-bottom: min(6vw, 4rem);
  border: 1px solid var(--color-brown);
  border-radius: var(--border-radius);
  padding: 15px;
  background-color: var(--color-red20);
}

.timeTable-noteList li {
  margin-top: 5px;
  text-indent: -1em;
  padding-left: 1em;
  line-height: 1.3;
  font-weight: 600;
}

.timeTable-noteList li:first-of-type {
  margin-top: 0;
}

.timeTable-noteList li::before {
  content: "・";
}

.timeTable-noteGyosei {
  display: inline-block;
  margin-bottom: 6px;
}

.timeTable-noteGyosei span {
  background-color: var(--color-yellow50);
  margin-left: 0.6em;
  border: 1px solid var(--color-brown);
  border-radius: 4px;
  padding: 0 0.3em 0.1em;
}

.timeTable-noteText {
  margin-top: 5px;
  line-height: 1.3;
  text-indent: -1em;
  padding-left: 1em;
  font-size: 80%;
  font-weight: 600;
}

.timeTable-noteText::before {
  content: "※";
}

.timeTable-details{
  display: flex;
  justify-content: space-between;
  position: relative;
}
.timeTable-details::before{
  content: "";
  position: absolute;
  background: url(img/dotted-border.svg) repeat center;
  background-size: 2.4%;
  width: 97%;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.timeTable-details:last-of-type::before{
  display: none;
}

.timeTable-details_hour{
  width: min(10vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: min(4vw, 2rem) min(1vw, .8rem);
}
.timeTable-matsue .timeTable-details_hour{
  background: var(--color-pink50);
}
.timeTable-hamada .timeTable-details_hour{
  background: var(--color-lightGreen30);
}
.timeTable-days .timeTable-details_hour{
  background: var(--color-yellow20);
}

.timeTable-details_hourAdjustment {
  justify-content: flex-start;
  gap: 12vw;
}

.timeTable-details_hour span img{
  height: min(2.4vw,1.4rem);
  display: block;
  margin: 0 auto;
}

.timeTable-details:last-of-type .timeTable-details_hour{
  border-radius: 0 0 0 var(--border-radius);
}

.timeTable-details_contents{
  width: calc(100% - min(18vw,10rem));
  padding: min(4vw,2rem) min(2vw,1rem);
}

.timeTable-details:not(:has(.timeTable-details_booth)) .timeTable-details_contents{
  width: calc(100% - min(10vw, 6rem));
}

.timeTable-details_mainItem {
  border: solid 1px var(--color-brown);
  border-radius: var(--border-radius);
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.timeTable-details_mainItem._mainItem_pink{
  background: var(--color-red50);
}
.timeTable-details_mainItem._mainItem_green{
  background: var(--color-green50);
}
.timeTable-details_mainItem._mainItem_gray{
  background: #e1ded6;
  border: 0;
}

.timeTable-details_mainItem .-details_mainItem__title{
  margin-top: 0;
  text-align: center;
  font-weight: 600;
  font-size: min(3.83vw, 2.14rem);
}
.timeTable-details_mainItem .-details_mainItem__title img{
  width: min(28rem, 100%);
}

.-details_mainItem__title span.__title-hour{
  margin-bottom: 0.3em;
  display: flex;
  align-items: center;
  gap: 2px;
  text-align: left;
  line-height: 1;
}
.-details_mainItem__title span.__title-hour img{
  width: fit-content;
  height: 10px;
}


.timeTable-details_mainItem ul,
.timeTable-details_mainItem p {
  font-size: min(3.24vw,1.5rem);
}

.timeTable-details_mainItem ul {
  margin-top: 5px;
}

.timeTable-details_mainItem li {
  text-indent: -1em;
  padding-left: 1em;
}

.timeTable-details_mainItem li::before {
  content: "・";
}

.timeTable-details_mainItem p {
  margin-top: 5px;
  line-height: 1.3;
}

ul.timeTable-details_departments{
  display: flex;
  flex-wrap: wrap;
  gap: min(.8vw,.4rem);
  margin: 0 0 10px;
}
.timeTable-details_contents:not(:has(.timeTable-details_mainItem)) ul.timeTable-details_departments{
  margin: 0;
}

.timeTable-details_contents:has(._mainItem_green) ul.timeTable-details_departments{
  margin: 0 0 10px;
}

ul.timeTable-details_departments li{
  width: calc((100% - calc(min(.8vw,.4rem) * 2)) / 3);
}
ul.timeTable-details_departments li._departments__item {
  border: solid 1px var(--color-brown);
  border-radius: calc(var(--border-radius) / 2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6px 5px;
}
li._departments__item img {
  display: block;
  width: auto;
  height: min(2rem, 3.2vw);
  margin: 0 auto;
}
li._departments__item img._departments__itemNougaku, 
li._departments__item img._departments__itemRingyo {
  height: min(3.4rem, 6.4vw);
}
li._departments__item img._departments__itemSub{
  height: min(1.4rem, 2.2vw);
  margin: 0;
}
li._departments__item img._departments__itemSub2{
  width: 100%;
  height: auto;
  margin: 0;
}

ul.timeTable-details_departments li._departments__gyosei{
  background: var(--color-yellow50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
ul.timeTable-details_departments li._departments__blue{
  background: var(--color-blue50);
}
ul.timeTable-details_departments li._departments__ivory{
  background: var(--color-ivory);
}
ul.timeTable-details_departments li._departments__green{
  background: var(--color-green50);
}
ul.timeTable-details_departments li._departments__yellow{
  background: var(--color-yellow50);
}
ul.timeTable-details_departments li._departments__orange{
  background: var(--color-orange50);
}

.timeTable-details_booth{
  width: min(7vw, 4rem);
  padding: 4vw 0;
  margin: min(4vw, 2rem) min(2vw, 1rem) min(4vw, 2rem) 0;
  background: #e1ded6;
  padding: min(2.8vw, 2rem) min(.8vw, .8rem);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.timeTable-details_booth p {
  font-weight: 600;
  writing-mode: tb;
  font-size: min(1.4rem, 3vw);
}


@media (min-width: 522px) {

  /* accordion-title */

  .timeTable-accordion {
    margin-bottom: 25px;
  }

  .accordion-title {
    padding: 10px;
    font-size: 1.8rem;
  }

  .accordion-title h3 img {
    width: 90px;
  }

  .timeTable-details_hour span img {
    height: 12px;
  }

  .timeTable-details_hourAdjustment {
    gap: 60px;
  }

  /* accordion-contents */

  ul.timeTable-details_departments li._departments__item {
    padding: 8px 5px;
  }

  li._departments__item img {
    height: 16px;
  }

  .-details_mainItem__title span.__title-hour img {
    height: 12px;
  }

}

/* ▼ノートPC（メイン400px想定） */
@media (min-width: 1024px) and (max-width: 1199.98px) {

  .timeTable-details_mainItem ul, .timeTable-details_mainItem p {
      font-size: 1.3rem;
  }

  li._departments__item img {
    height: 12.5px;
  }

  li._departments__item img._departments__itemNougaku, li._departments__item img._departments__itemRingyo {
    height: 26px;
  }

}


/*-----------*/
/*precautions(注意事項)
/*-----------*/

.precautions .contents {
  width: 90%;
}

.precautions-contents {
  margin-top: 40px;
}
.precautions-contents:first-of-type {
  margin-top: 0;
}

.precautions-items {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
}

.precautions-items dt, .precautions-items dd {
  font-weight: 600;
  letter-spacing: 0;
}

.precautions-items dt {
  width: min(100px, 22vw);
  border-radius: 5px;
  padding: 2px 0 3px;
  background: var(--color-brown);
  font-size: var(--font-12px);
  text-align: center;
  color: var(--color-white);
}

.precautions-items dd {
  width: calc(100% - min(115px, 26vw));
}

.precautions-items dd span::before {
  content: "・";
}

.precautions-items dd span {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}

.precautions-items dd ul {
  padding-top: 5px;
}
.precautions-items dd li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 90%;
  font-weight: 500;
}


@media (min-width: 522px) {

  .precautions-items dt {
    width: 95px;
  }

  .precautions-items dd {
    width: calc(100% - 110px);
  }

}


/*-----------*/
/*footer
/*-----------*/

footer {
  margin-top: 80vw;
  padding-bottom: 50px;
  background: var(--color-lightGreen);
  text-align: center;
  letter-spacing: 0;
  position: relative;
}

footer::before {
  content: "";
  background: url(img/bgDecoMatsu-lightGreen.svg) no-repeat center;
  background-size: 100%;
  width: 105%;
  height: 50vw;
  position: absolute;
  top: -40vw;
  left: 50%;
  transform: translateX(-50%);
}

.footer-sns {
  position: relative;
}

.footer-sns p {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-sns p .text-bubble {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0 1.5em;
  position: relative;
}

.footer-sns p .text-bubble::before, 
.footer-sns p .text-bubble::after {
  content: "";
  width: 2px;
  height: 2.2em;
  background: var(--color-brown);
  position: absolute;
  bottom: 0;
}

.footer-sns p .text-bubble::before {
  left: 0;
  transform: rotate(-25deg);
}

.footer-sns p .text-bubble::after {
  right: 0;
  transform: rotate(25deg);
}

.linkBtn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  border-radius: var(--border-radius);
  padding: 0.2em 1.5em 0.3em;
  background: rgba(119, 117, 101, 0.2);
  font-size: var(--font-20px);
  font-weight: 600;
  z-index: 1;
  transition: 0.3s;
}

.linkBtn::before {
  content: "";
  width: 100%;
  height: 100%;
  border: var(--border-brown);
  border-radius: var(--border-radius);
  background: var(--color-yellow50);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-2%, -8%);
  z-index: 2;
  transition: var(--transition);
}

.linkBtn span {
  display: block;
  position: relative;
  transform: translate(-2%, -8%);
  z-index: 3;
  transition: var(--transition);
}

.footer-information {
  margin: 20px 0;
}

.footer-information h2 {
  width: fit-content;
  margin: 0 auto;
  font-size: var(--font-13px);
  line-height: 1.4;
  font-weight: 600;
  text-align: center;
}
.footer-information h2 span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-left: 1.5em;
}
.footer-information h2 span::before {
  content: "";
  background: url(img/shimane-logo.svg) no-repeat center;
  background-size: 100%;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footer-information ul {
  text-align: center;
  line-height: 1.2;
  padding-top: 10px;
  font-weight: 600;
}

.footer-information ul li {
  padding-bottom: 4px;
}

.footer-information ul li a:hover {
  opacity: 0.6;
}

footer small {
  display: block;
  text-align: center;
}

.deco-image {
  position: absolute;
}

.footer-deco_uedaSan{
  width: min(17vw, 11rem);
  top: -63vw;
  left: min(16vw, 7rem);
}

.footer-deco_ippei{
  width: min(16vw, 11rem);
  top: -57vw;
  right: min(15vw, 8rem);
}
.-deco_ippei__bubble{
  position: absolute;
  width: min(19vw, 10rem);
  left: -18vw;
  top: -8vw;
}

.footer-deco1{
  width: min(6vw, 3rem);
  top: -58%;
  left: 7%;
}
.footer-deco2{
  width: min(2vw, 1rem);
  top: -55%;
  right: 10%;
}

a.pageTop{
  position: absolute;
  top: -24px;
  right: 4vw;
  width: 66px;
}

.deskTop-left{
  display: none;
}


@media (min-width: 522px) {

  footer {
    margin-top: 400px;
  }

  footer::before {
    height: 250px;
    top: -200px;
  }

  .footer-deco_uedaSan {
    width: 20%;
    top: -300px;
    left: 10%;
  }

  .footer-deco_ippei {
    width: 20%;
    top: -280px;
    right: 10%;
  }

  .-deco_ippei__bubble {
    width: 95%;
    left: -100%;
    top: -30%;
  }

}


@media (min-width: 768px) {

  .linkBtn:hover {
    transform: scale(1.1);
  }

}


/*-----------*/
/* fixedMenu（申込みはこちらボタン）
/*-----------*/

.fixedMenu {
  width: 24%;
  position: absolute;
  left: 2%;
  bottom: 2%;
  z-index: 9;
  opacity: 0;
}

body.is-loadActive .fixedMenu {
  animation: scrollFadeIn .3s cubic-bezier(0.58, 0.02, 0.54, 1) .7s forwards;
}

.fixedMenu a {
  display: block;
}


@media (min-width: 522px) {

  .fixedMenu {
    width: 22%;
  }

}