@charset "UTF-8";
/* CSS */
:root {
  --color-green: #00400a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
}

html{
  min-height: -webkit-fill-available;
}
body{
  padding-top: 50px;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  margin: 0;
  background: #ffffff no-repeat url('../img/menu_03_bg.jpg') center bottom / cover;
}
@media screen and (max-width:500px) {
  body{
    padding-top: 30px;
  }
}

h1{
	text-align: center;
  margin: 0 0 30px;
}

h1 span {
	display: inline-flex;
  color: #ffffff;
  font-size: 2.25rem;
  font-weight: 700;
  background-color: #56d1e7;
  border: 3px solid #4891d5;
  border-radius: 50px;
  padding: 5px 5px 8px;
  width: 400px;
  height: 75px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:700px) {
  h1 span {
    font-size: 32px;
    width: 380px;
    height: 60px;
  }
}
@media screen and (max-width:440px) {
  h1 span {
    font-size: 28px;
    width: 300px;
    height: 50px;
  }
}
@media screen and (max-width:360px) {
  h1 span {
    font-size: 24px;
    width: 280px;
    height: 44px;
  }
}

#wrapper{
	margin: 0 auto;
	width: 350px;
  height: auto;
}
#msg{
  display: none;
	margin: 0px; padding: 10px;
	background-color: lightgray;
	text-align: center;
  word-wrap: break-word;
  word-break: break-all;
}

#canvas_wrap {
  width: 100%;
  height: auto;
  background-color: #ffffff;
  border: 5px solid var(--color-green);
  height: 350px;
  position: relative;
}
#canvas {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 300px;
  height: 300px;
  background-color: #000000;
}
@media screen and (max-width:440px) {
  #wrapper{
    width: 320px;
  }
  #canvas_wrap {
    height: 320px;
  }
  #canvas {
    top: 15px;
    left: 15px;
    width: 280px;
    height: 280px;
  }
}
@media screen and (max-width:360px) {
  #wrapper{
    width: 280px;
  }
  #canvas_wrap {
    height: 280px;
  }
  #canvas {
    width: 240px;
    height: 240px;
  }
}

.qr_notice {
  margin: 55px 0 50px;
  text-align: center;
}
.qr_notice>div {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 730px;
  height: 63px;
  padding: 2px 15px 5px;
  background: #ffffff;
  border: 5px solid var(--color-green);
  border-radius: 10px;
  color: var(--color-green);
  font-size: 30px;
  border-radius: 64px;
}
.qr_notice>div span {
  font-weight: 700;
  font-size: 1.75rem;
}
.qr_notice>div span.txt1 {
  color: #f04b0a;
}
@media screen and (max-width:700px) {
  .qr_notice>div {
    font-size: 24px;
  }
}
@media screen and (max-width:500px) {
  .qr_notice {
    margin: 40px 0 30px;
  }
  .qr_notice>div {
    font-size: 20px;
  }
}
@media screen and (max-width:440px) {
  .qr_notice {
    margin-top: 30px;
  }
  .qr_notice > div {
    font-size: 16px;
    width: 320px;
    padding: 5px;
  }
  .qr_notice > div span.txt1 {
    margin-right: 2px;
  }
}
@media screen and (max-width:360px) {
  .qr_notice > div {
    font-size: 14px;
    width: 280px;
    padding: 3px;
    min-height: 50px;
  }
}
nav{
  height: 111px;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
}
.home-link{
  position: relative;
	top: 0;
  left: 0;
  height: 80px;
  width: auto;
  margin-right: 12px;
  justify-content: space-between;
  display: flex;
  z-index: 6;
}
.home-link a{
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.home-link a.return{
  margin-left: 4px;
  margin-right: 0;
}
.home-link a>div{
  height: 80px;
  width: 115px;
  border: 3px solid #00400a;
  border-radius: 10px;
  background-color: #fff;
}
.home-link a.return>div{
  width: 80px;
}
.home-link a:active>div{
  background-color: #dff6da;
}
.home-link a>div::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #00400a;
  border-radius: 10px;
  top: 3px;
  left: 0;
  z-index: -1;
}
.home-link a.hide-in-display {
  margin-right: 0;
  opacity: 0;
  max-width: 0;
  display: block;
}
.home-link p{
  letter-spacing: 0.6px;
  color: rgb(0, 64, 10);
  margin-bottom: 0px !important;
  text-align: center;
  line-height: 20px;
  font-size: 14px !important;
}
.home-link .return p{
  font-size: 10px !important;
  line-height: 1;
}
#return{
  width: 32px;
  height: 28px;
  margin: 14px auto 6px;
  background: transparent url(../img/return.svg) no-repeat center center / contain;
}