@charset "UTF-8";
/* Scss Document */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:aftera {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Scss Document */
#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  transition: all 0.5s ease;
  background-color: #fff;
  z-index: 1000000;
}
#loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  animation: loadinglogo 1s ease-in-out 0s infinite alternate;
}

@keyframes loadinglogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html {
  box-sizing: border-box;
}

/*------------------------------- Common --------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

a {
  color: #000;
  text-decoration: underline;
}
a:hover {
  color: #e60012;
}

@media screen and (min-width: 576px) {
  .alignleft {
    float: left;
    margin: 0 20px 20px 0;
  }
}

@media screen and (min-width: 576px) {
  .alignright {
    float: right;
    margin: 0 0 20px 20px;
  }
}

@media screen and (min-width: 576px) {
  .aligncenter {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 930px) {
  .br-sp {
    display: none;
  }
}

@media screen and (min-width: 576px) {
  .br-sp-only {
    display: none;
  }
}

.br-tablet {
  display: none;
}
@media screen and (min-width: 576px) {
  .br-tablet {
    display: block;
  }
}

.br-pc {
  display: none;
}
@media screen and (min-width: 930px) {
  .br-pc {
    display: block;
  }
}

.br-hd {
  display: none;
}
@media screen and (min-width: 1060px) {
  .br-hd {
    display: block;
  }
}

.br-fhd {
  display: none;
}
@media screen and (min-width: 930px) {
  .br-fhd {
    display: block;
  }
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  letter-spacing: 0.05em;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  line-height: 2;
}

.text-center {
  text-align: center;
}

.text-attention {
  color: #ff0000;
}

li,
p {
  font-size: 15px;
}

.js-scroll.scrolled {
  opacity: 1;
}

.js-scroll {
  opacity: 0;
  transition: opacity 0.3s;
}

.js-scroll.fade-in-bg {
  transition: opacity 1s;
}

.scrolled.scroll-delay {
  transition-delay: opacity 0.5s;
  animation-delay: 0.5s;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
#qbb-top {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

#qbb-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  max-width: 90%;
  margin: 0 auto;
  width: 600px;
}
#qbb-container p {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 20px;
  text-align: justify;
}
@media screen and (min-width: 400px) {
  #qbb-container p {
    font-size: 16px;
  }
}
#qbb-container p.rights {
  font-size: 13px;
  margin-bottom: 40px;
}
#qbb-container li {
  font-size: 15px;
  line-height: 1.8;
}
@media screen and (min-width: 400px) {
  #qbb-container li {
    font-size: 16px;
  }
}

#qbb-banner {
  position: absolute;
  top: 20px;
  left: 0;
  width: calc(100% - 26px);
  display: flex;
  justify-content: space-between;
}
#qbb-banner .qbb-logo {
  width: 110px;
}
@media screen and (min-width: 400px) {
  #qbb-banner .qbb-logo {
    width: clamp(6.875rem, 1.964rem + 19.64vw, 13.75rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-banner .qbb-logo {
    width: 220px;
  }
}

#qbb-catch {
  max-width: 560px;
  margin: 0 auto;
  max-width: 90%;
  margin: 0 auto;
  width: 560px;
}
#qbb-catch img {
  margin-top: -20px;
}

#qbb-date {
  max-width: 480px;
  margin: 20px auto 0;
  max-width: 90%;
  margin: 0 auto;
  width: 240px;
}
@media screen and (min-width: 640px) {
  #qbb-date {
    width: 480px;
  }
}

.sdgs-logo {
  margin-top: 10px;
  width: 60px;
  margin-right: 0;
}
@media screen and (min-width: 400px) {
  .sdgs-logo {
    margin-top: clamp(0.625rem, -0.417rem + 4.17vw, 1.25rem);
    width: clamp(3.75rem, 1.071rem + 10.71vw, 7.5rem);
    margin-right: clamp(0rem, -2.604rem + 10.42vw, 1.563rem);
  }
}
@media screen and (min-width: 960px) {
  .sdgs-logo {
    margin-top: 20px;
    width: 120px;
    margin-right: 25px;
  }
}

#qbb-address {
  margin: 10px 0;
  border-top: dotted 2px #000;
  border-bottom: dotted 2px #000;
  text-align: center;
  padding: 10px 0;
}
#qbb-address p {
  text-align: center;
}
#qbb-address p span {
  display: block;
  font-size: 12px;
  line-height: 1;
  margin: 10px 0;
}
@media screen and (min-width: 400px) {
  #qbb-address p span {
    font-size: clamp(0.75rem, 0.661rem + 0.36vw, 0.875rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-address p span {
    font-size: 14px;
  }
}
#qbb-address p span:first-of-type {
  font-size: 15px;
}
@media screen and (min-width: 400px) {
  #qbb-address p span:first-of-type {
    font-size: clamp(0.938rem, 0.491rem + 1.79vw, 1.563rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-address p span:first-of-type {
    font-size: 25px;
  }
}
#qbb-address p span:nth-of-type(2) {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 15px;
}
@media screen and (min-width: 400px) {
  #qbb-address p span:nth-of-type(2) {
    font-size: clamp(1.5rem, 1.143rem + 1.43vw, 2rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-address p span:nth-of-type(2) {
    font-size: 32px;
  }
}

#qbb-container {
  /* Google Mapを囲う要素 */
  /* Google Mapのiframe */
}
#qbb-container .participants {
  text-align: center;
  margin-bottom: 40px;
}
#qbb-container .participants p {
  text-align: center;
  font-size: 30px;
  line-height: 1.3;
  margin: 10px 0;
  font-weight: bold;
}
#qbb-container .participants p:nth-of-type(2) {
  font-size: 16px;
}
@media screen and (min-width: 400px) {
  #qbb-container .participants p:nth-of-type(2) {
    font-size: clamp(1rem, 0.643rem + 1.43vw, 1.5rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-container .participants p:nth-of-type(2) {
    font-size: 24px;
  }
}
#qbb-container .participants p:nth-of-type(3) {
  font-size: 18px;
}
@media screen and (min-width: 400px) {
  #qbb-container .participants p:nth-of-type(3) {
    font-size: clamp(1.125rem, 0.5rem + 2.5vw, 2rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-container .participants p:nth-of-type(3) {
    font-size: 32px;
  }
}
#qbb-container .participants p:nth-of-type(4) {
  font-weight: normal;
  font-size: 14px;
}
@media screen and (min-width: 400px) {
  #qbb-container .participants p:nth-of-type(4) {
    font-size: clamp(0.875rem, 0.786rem + 0.36vw, 1rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-container .participants p:nth-of-type(4) {
    font-size: 16px;
  }
}
#qbb-container .participants .participants-title {
  font-size: 36px;
  color: #e60012;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.4em;
}
@media screen and (min-width: 400px) {
  #qbb-container .participants .participants-title {
    font-size: clamp(2.25rem, 1.625rem + 2.5vw, 3.125rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-container .participants .participants-title {
    font-size: 50px;
  }
}
#qbb-container .heading-yellow {
  font-size: 18px;
  padding: 2px 10px 3px;
  font-weight: bold;
  text-align: center;
  background: #fdd108;
  border-radius: 100px;
  margin: 25px auto;
}
#qbb-container .ul-round {
  margin: 25px 0;
}
#qbb-container .heading-subtitle {
  font-size: 18px;
  font-weight: bold;
}
#qbb-container .googlemap {
  margin: 25px 0;
}
#qbb-container .googlemap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
#qbb-container .googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#qbb-container p.flow {
  margin-bottom: 40px;
}
#qbb-container .form-link a {
  display: block;
  font-size: 18px;
  padding: 5px;
  font-weight: bold;
  text-align: center;
  background: #e60012;
  border-radius: 100px;
  color: #fff;
  margin: 40px auto;
  transition: 0.3s;
  text-decoration: none;
}
@media screen and (min-width: 400px) {
  #qbb-container .form-link a {
    font-size: clamp(1.125rem, 0.679rem + 1.79vw, 1.75rem);
  }
}
@media screen and (min-width: 960px) {
  #qbb-container .form-link a {
    font-size: 28px;
  }
}
#qbb-container .form-link a:hover {
  background: #b3000e;
}