@charset "UTF-8";


:root{
	--yellow: #fff200;
	--navy: #0F2D64;
	--sky: #00A0E6;
	--pink: #F05AAC;
	--blue: #0046A0;
	--noto-sans: 'Noto Serif JP', serif;
	--rounded: 'M PLUS Rounded 1c', sans-serif;
}
body {
  margin: 0 0;
  width: 100%;
  color: #000000;
  position: relative;
  -webkit-text-size-adjust: none;
  font-family: 'Noto Sans JP', serif;
  font-feature-settings: "palt" 1;
  font-weight: 400;
  line-height: 1.75;
  text-align: justify;
  font-size: 100%;
  overflow-x: hidden;
  background-color: var(--yellow);
  
}
a {
  user-select: none;
}
main{
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.wrapper {
  width: 100%;
  max-width: 430px;
  padding: 0 16px 24px;
  margin: 0 auto;
  position: relative;
}
main .wrapper{
  background: var(--yellow);
}

.inner {
  width: 100%;
  padding: 24px 15px 16px;
  margin: 0 auto;
  position: relative;
}




#fixed-bg{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index:-1;
  background-image: url(../images/side-bg.png);
  background-position: center;
  background-repeat: repeat;
  background-size: 10px 19px;

}

#fixed-town-left{
  position: fixed;
  left: 0;
  bottom: 140px;
  width: calc((100% - 430px) / 2);
  height: 108px;
  z-index:-1;
  background-image: url(../images/town-left.png);
  background-position: bottom right;
  background-repeat: repeat-x;
  background-size: auto 108px;
}
#fixed-town-right{
  position: fixed;
  right: 0;
  bottom: 140px;
  width: calc((100% - 430px) / 2);
  height: 108px;
  z-index:-1;
  background-image: url(../images/town-right.png);
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: auto 108px;
}

#fixed-address{
  position: fixed;
  right: 0;
  bottom: 16px;
  width: calc((100% - 430px) / 2);
  height: 108px;
  z-index:-1;
  padding: 0 0 0 30px;
  line-height: 1.5;
}
#fixed-address p.host{
  margin-left: 3em;
  text-indent: -3em;
}
#fixed-address p.contact{
  margin-left: 7em;
  text-indent: -7em;
}

#fixed-logo{
  position: fixed;
  right: 0;
  width: calc((100% - 430px) / 2);
  height: 100vh;
}

#fixed-logo .image{
  width: 245px;
  position: relative;
  top: 44%;
  transform: translateY(-50%);
  left:100px;
}
#fixed-menu{
  position: fixed;
  left: 0;
  width: calc((100% - 430px) / 2);
  height: 100vh;
  z-index: 2;
}
#fixed-menu ul{
  width: fit-content;
  position: absolute;
  top: 44%;
  transform: translateY(-50%);
  right:120px;
  list-style: none;
  border-top:1px dashed var(--navy);
  padding:0;
}
#fixed-menu ul li{
  color:var(--navy);
  font-size: 1.125em;
  font-weight: 700;
  font-family: var(--rounded);
  text-align: center;
  border-bottom:1px dashed var(--navy);
}
#fixed-menu ul li:first-child{
  border-top:1px dashed var(--navy);
}
#fixed-menu ul li a{
  color:var(--navy);
  text-decoration: none;
  display: block;
  padding: 0.9em 1em;
}
#fixed-menu ul li a:hover{
  color:var(--sky);
  text-shadow: 0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff;
}
@media only screen and (max-width: 1120px) {
  #fixed-logo{
    display: none;
  }
  #fixed-menu{
    display: none;
  }
  #fixed-address{
    display: none;
  }
}

#menu-bg{
  display: none;
  position: fixed;
  top:0;
  left:0;
  width: 100vw;
  height: 100vh;
  z-index: 4;
  background: rgba(15,45,100,0.5);
}
#menu-nav{
  display: none;
  position: fixed;
  left: 50%;
  bottom: 96px;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--yellow);
  border-radius: 6px;
  padding: 24px 40px;
  max-height: calc(100vh - 120px);
  height: max-content;
  min-width: 270px;
}
#menu-nav .logo{
  text-align: center;
  margin-bottom: 16px;
}
#menu-nav .logo img{
  width: auto;
  height: 140px;
  margin: auto;
}

#menu-nav ul{
  width: fit-content;
  height: max-content;
  max-height: calc(100vh - 328px);
  overflow-y: scroll;
  scrollbar-width: none;
  list-style: none;
  margin: auto;
  padding: 0;
}
#menu-nav ul li:first-child{
  border-top:1px dashed var(--navy);
}
#menu-nav ul li{
  color:var(--navy);
  font-size: 1.125em;
  font-weight: 700;
  font-family: var(--rounded);
  text-align: center;
  border-bottom:1px dashed var(--navy);
}
#menu-nav ul li a{
  color:var(--navy);
  text-decoration: none;
  display: block;
  padding: 0.9em 0.9em;
}
#menu-nav ul li a:hover{
  color:var(--sky);
  text-shadow: 0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff,
  0px 0px 8px #fff;
}


#bottom-button{
  position: fixed;
  left:50%;
  bottom:24px;
  bottom:-80px;
  transform: translateX(-50%);
  z-index: 6;

}
#bottom-button .button-wrap{
  display: flex;
  align-items: end;
  justify-content: center;
  gap:12px;
}
#bottom-button #button-menu{ 
  position: relative;
  display: block;
}
#bottom-button #button-menu a{ 
  position: relative;
  cursor: pointer;
  display: block;
  width: 48px;
  height: 56px;
}
#bottom-button #button-menu a:before{ 
  content:"";
  position: absolute;
  top:0;
  left: 0;
  cursor: pointer;
  display: block;
  width: 48px;
  height: 56px;
  background-image: url(../images/menu-off.png);
  background-position: center;
  background-size: 48px 56px;
  background-repeat: no-repeat;
}
#bottom-button #button-menu.active a:before{ 
  content:"";
  position: absolute;
  top:0;
  left: 0;
  cursor: pointer;
  display: block;
  width: 48px;
  height: 56px;
  background-image: url(../images/menu-on.png);
  background-position: center;
  background-size: 36px 56px;
  background-repeat: no-repeat;
}

#bottom-button #button-top{ 
  position: relative;
  display: block;
}
#bottom-button #button-top a{ 
  position: relative;
  cursor: pointer;
  display: block;
  width: 48px;
  height: 56px;
}
#bottom-button #button-top a:before{ 
  content:"";
  position: absolute;
  top:0;
  left: 0;
  cursor: pointer;
  display: block;
  width: 48px;
  height: 56px;
  background-image: url(../images/top-off.png);
  background-position: center;
  background-size: 48px 56px;
  background-repeat: no-repeat;
}
#bottom-button #button-top.active a:before{ 
  content:"";
  position: absolute;
  top:0;
  left: 0;
  cursor: pointer;
  display: block;
  width: 48px;
  height: 56px;
  background-image: url(../images/top-on.png);
  background-position: center;
  background-size: 48px 56px;
  background-repeat: no-repeat;
}

#bottom-button #button-entry{
  text-align: center;
  width: 240px;
  height: 40px;
  margin: 0 auto;
  position: relative;
}
#bottom-button #button-entry a{
  font-family: var(--rounded);
  font-weight: 800;
  font-size:1.125em;
  line-height: 1.75;
  color:#fff;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 30px;
  background: linear-gradient( to right, #4bb9eb 0%,#4bb9eb 20% ,#00418c 90%,#00418c 100%  );
  z-index:2;
  transition: 0.3s;
  cursor: pointer;
  opacity: 1;
  overflow: hidden;
}
#bottom-button #button-entry a span{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 100%;
}
#bottom-button #button-entry a::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 20px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
  animation: shine1 15.5s linear infinite;
}
 
@keyframes shine1 {
  0.6% {
    transform: scale(2) rotate(30deg);
    opacity: 0;
  }
  1.2% {
    transform: scale(20) rotate(30deg);
    opacity: 0.6;
  }
  1.8% {
    transform: scale(30) rotate(30deg);
    opacity: 0.4;
  }
  2.4% {
    transform: scale(45) rotate(30deg);
    opacity: 0.2;
  }
  3.0% {
    transform: scale(50) rotate(30deg);
    opacity: 0;
  }
  100% {
    transform: scale(2) rotate(30deg);
    opacity: 0;
  }
}
#bottom-button #button-entry:before{
  content:"";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: absolute;
  left:3px;
  top:3px;
  background: var(--navy);
  z-index:1;
}
#bottom-button #button-entry a:hover{
  background: var(--navy);
  left:3px;
  top:3px;
}

@media only screen and (max-width: 360px) {
  #bottom-button{
    width: 100%;
  }
  #bottom-button #button-entry{
    width: 100%;
  }
  #bottom-button #button-entry a{
    font-size:5vw;
  }
}
@media only screen and (max-width: 320px) {
}

/* ページトップに戻る---------------- */
#skip {
  position: absolute;
  left: -9999em;
}


/* フッター---------------- */
footer {
  width: 100%;
  max-width: 430px;
  margin: 0 auto 104px;
  position: relative;
}
footer #sponsor {
  background: #e7eaef;
  color: var(--navy);
}
footer #sponsor  h2{
  font-size: 1em;
  background: var(--navy);
  color: #fff;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 1em;
  padding-left: 1em;
  margin-bottom: 0;
}
footer #sponsor address{
  font-style: normal;
  text-align: center;
  line-height: 1.5;
  padding: 12px 16px 12px;
}
footer #copyright {
  background: #8796b1;
  color: #fff;
  text-align: center;
}
footer #copyright small{
  padding: 0 16px 0;
  font-size: 0.75em;
  line-height:2;
}

