@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 100;
  src: local("Noto Sans JP Thin"), url("fonts/NotoSansJP-Thin.woff2") format("woff2"), url("fonts/NotoSansJP-Thin.woff") format("woff"), url("fonts/NotoSansJP-Thin.ttf") format("ttf"), url("fonts/NotoSansJP-Thin.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 300;
  src: local("Noto Sans JP Light"), url("fonts/NotoSansJP-Light.woff2") format("woff2"), url("fonts/NotoSansJP-Light.woff") format("woff"), url("fonts/NotoSansJP-Light.ttf") format("ttf"), url("fonts/NotoSansJP-Light.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: local("Noto Sans JP Regular"), url("fonts/NotoSansJP-Regular.woff2") format("woff2"), url("fonts/NotoSansJP-Regular.woff") format("woff"), url("fonts/NotoSansJP-Regular.ttf") format("ttf"), url("fonts/NotoSansJP-Regular.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: local("Noto Sans JP Medium"), url("fonts/NotoSansJP-Medium.woff2") format("woff2"), url("fonts/NotoSansJP-Medium.woff") format("woff"), url("fonts/NotoSansJP-Medium.ttf") format("ttf"), url("fonts/NotoSansJP-Medium.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: local("Noto Sans JP Bold"), url("fonts/NotoSansJP-Bold.woff2") format("woff2"), url("fonts/NotoSansJP-Bold.woff") format("woff"), url("fonts/NotoSansJP-Bold.ttf") format("ttf"), url("fonts/NotoSansJP-Bold.eot") format("embedded-opentype");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 900;
  src: local("Noto Sans JP Black"), url("fonts/NotoSansJP-Black.woff2") format("woff2"), url("fonts/NotoSansJP-Black.woff") format("woff"), url("fonts/NotoSansJP-Black.ttf") format("ttf"), url("fonts/NotoSansJP-Black.eot") format("embedded-opentype");
  font-display: swap;
}
/*
reset
------------------------------------------------------------------------------------------*/
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

img {
  max-width: 100%;
  border-style: none;
  vertical-align: bottom;
  height: auto;
}

p,
dl,
dt,
dd,
ul,
ul > li,
h1,
h2,
h3,
h4,
h5,
h6,
iframe,
figure {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

ul {
  list-style: none;
}

ul > li {
  list-style-type: none;
}

caption,
th {
  text-align: left;
}

q::before,
q::after {
  content: "";
}

abbr,
acronym {
  border: 0;
}

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

a {
  text-decoration: none;
}

/*
layout
------------------------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  background-color: #fff100;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  min-width: 320px;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.page-container {
  width: 100%;
  min-height: 100vh;
}

.page-wrapper {
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  padding: 0 15px;
}

.page-header h1 {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-block: 0.5em;
  padding: 0;
}
.page-header h1:before {
  font-family: "Font Awesome 5 Free";
  font-size: 14px;
  content: "\f0da";
  width: 14px;
  display: block;
  color: #1f86c0;
}

a.btn {
  background-color: #e16162;
  color: #fff;
  padding: 0.3em 2em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
a.btn:hover {
  background-color: #ff0000;
}

#checkin-flash-message-success {
  max-width: 640px;
  max-height: 640px;
  width: 80vw;
  height: 80vw;
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  transform-origin: center center;
  background: #4CAF50;
  border-radius: 50%;
  color: #fff;
  font-size: 26px;
  text-align: center;
  padding: 1em 2em;
  z-index: 9999;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleUp 0.6s ease-out;
}

@keyframes scaleUp {
  from {
    transform: translateX(-50%) scale(0.5);
    opacity: 0;
  }
  60% {
    transform: translateX(-50%) scale(1.1);
    opacity: 1;
  }
  to {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}
.return-back {
  margin-top: 60px;
}
.return-back a {
  display: block;
  width: 240px;
  max-width: 80%;
  margin-inline: auto;
  padding: 6px 10px;
  font-size: 16px;
  text-align: center;
  border: none;
  background: #666;
  color: #fff;
  border-radius: 50px;
}
.return-back a:hover {
  background-color: #333;
}

#header {
  min-height: 2em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #1f86c0;
}
#header span.event_name {
  font-size: 14px;
}

/*
footer
------------------------------------------------------------------------------------------*/
#footer {
  position: fixed;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #1f86c0;
  margin-top: 30px;
}

.copyright {
  background: #000;
  font-weight: normal;
  text-align: center;
  color: #fff;
  font-size: 12px;
  padding: 1em;
}

/*-------------------------------------------*
	PAGE TOP
 *-------------------------------------------*/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30px;
  bottom: 60px;
  background: #e16162;
  border-radius: 50%;
  z-index: 9999;
}
#page_top a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a:hover {
  opacity: 1;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0d8";
  font-size: 25px;
  font-weight: 900;
  color: #fff;
}

.side-column .side-logo {
  width: calc(100% - 50px);
}
.side-column .title-kind {
  margin-top: 20px;
  padding: 0.5em 1em;
  border: solid 1px #ccc;
  background-color: #fff;
  text-align: center;
  font-weight: 600;
}
.side-column .title-kind .title-kind-yyyy {
  color: #cc0000;
}
.side-column .menu-container {
  margin-top: 30px;
}
.side-column .menu-container .menu-group {
  margin-bottom: 30px;
}
.side-column .menu-container .menu-group .menu-header {
  padding: 0.1em 1em;
  color: #fff;
  background-color: #333;
}
.side-column .menu-container .menu-group .menu-content {
  padding: 1em 0.5em;
  background-color: #fff;
  border: solid 1px #ccc;
}
.side-column .menu-container .menu-group .menu-content .menu-item {
  position: relative;
  padding-left: 1em;
  padding-bottom: 0.5em;
  font-weight: 500;
  line-height: 1.2em;
}
.side-column .menu-container .menu-group .menu-content .menu-item:before {
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  content: "\f0da";
  width: 12px;
  color: #f7c200;
  position: absolute;
  top: 0;
  left: 0;
}
.side-column .menu-container .menu-group .menu-content .menu-item a {
  color: #444;
}
.side-column .menu-container .menu-group .menu-content .menu-item a:hover {
  color: #f7c200;
}

form input,
form textarea,
form select {
  padding: 0.3em 1em;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-sizing: border-box;
  -moz-appearance: auto;
  -webkit-appearance: auto;
}
form input:focus,
form textarea:focus,
form select:focus {
  border-color: #007BFF;
  outline: none;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.2);
}
form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=url],
form input[type=number] {
  width: 100%;
}
form select {
  padding: 0.3em 2em 0.3em 1em;
}
form textarea {
  width: 100%;
  min-height: 3em;
}
form button {
  background-color: #e16162;
  color: #fff;
  padding: 0.3em 2em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
form button:hover {
  background-color: #ff0000;
}

/*
チェックイン画面
------------------------------------------------------------------------------------------*/
.main-visual {
  text-align: center;
  background-color: #1f86c0;
}

.checkin-section {
  margin-block: 30px 60px;
}
.checkin-section .checkin-container h2 {
  width: 80%;
  display: block;
  margin-top: -30px;
  margin-inline: auto;
  background-color: #fff;
  font-size: 20px;
  text-align: center;
}
.checkin-section .checkin-container .catch {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.checkin-section .checkin-container .checkin-form-container {
  margin-block: 1em 2em;
  padding: 10px;
  border: solid 4px #1f86c0;
  background-color: #fff;
  border-radius: 10px;
}
.checkin-section .checkin-container .checkin-form-container #checkin-form {
  display: block;
  margin-inline: auto;
  margin-block: 10px;
  width: calc(100% - 60px);
  text-align: center;
}
.checkin-section .checkin-container .checkin-form-container #checkin-form button {
  color: #fff;
  background-color: #e16162;
}
.checkin-section .checkin-container .checkin-form-container #checkin-form button:hover {
  background-color: #ff0000;
}
.checkin-section .checkin-container .checkin-form-container .checkin-note {
  font-size: 14px;
  text-align: center;
}
.checkin-section .error-message,
.checkin-section #checkin-message-fail {
  color: #ff0000;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-block: 1em;
}

.faq-section {
  padding-bottom: 60px;
}
.faq-section h2 {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}
.faq-section h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #1f86c0;
}
.faq-section h2 span {
  position: relative;
  padding: 0 1em;
  color: #1f86c0;
  background: #fff100;
}
.faq-section .faq-list dl {
  position: relative;
  background: #fff;
  margin-bottom: 15px;
  font-size: 16px;
  text-align: left;
  padding: 10px 1em;
  border: solid 1px #ccc;
  border-radius: 5px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faq-section .faq-list dl {
    font-size: 14px;
  }
}
.faq-section .faq-list dl::before {
  position: absolute;
  top: 18px;
  right: 1em;
  display: block;
  width: 7px;
  height: 7px;
  margin: auto;
  content: "";
  transform: rotate(135deg);
  border-top: 3px solid #e16162;
  border-right: 3px solid #e16162;
}
.faq-section .faq-list dl .open::before {
  transform: rotate(-45deg);
  top: 22px;
}
.faq-section .faq-list dl dt {
  position: relative;
  padding: 0 1em 0 2em;
  font-weight: bold;
}
.faq-section .faq-list dl dt::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "Q.";
  display: inline-block;
  width: 1.6em;
  color: #e16162;
}
.faq-section .faq-list dl dd {
  font-weight: normal;
  padding: 1em 10px 0 0;
  margin-left: 1em;
  display: none;
}
.faq-section .faq-list dl dd .open {
  display: block;
}
.faq-section .faq-list dl dd ul li {
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
  line-height: 1.4em;
}
.faq-section .faq-list dl dd ul li + li {
  margin-top: 0.5em;
}

/*
とは
------------------------------------------------------------------------------------------*/
#dashboad .vote-section {
  margin-top: 60px;
}
#dashboad .vote-section .vote-container {
  padding: 16px;
  border: solid 4px #1f86c0;
  border-radius: 10px;
  background-color: #fff;
}
#dashboad .vote-section .vote-container h2 {
  width: 80%;
  display: block;
  margin-top: -35px;
  margin-inline: auto;
  padding: 0.2em 1em;
  background-color: #1f86c0;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
#dashboad .vote-section .vote-container .vore-number-container {
  margin-block: 1em;
}
#dashboad .vote-section .vote-container .vore-number-container label {
  font-size: 16px;
  display: block;
  text-align: center;
}
#dashboad .vote-section .vote-container .vore-number-container .vore-number {
  color: #ff0000;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
#dashboad .vote-section .vote-container .vote-message {
  margin-block: 0.5em;
  font-size: 16px;
  text-align: center;
}
#dashboad .vote-section .vote-container .vote-note {
  margin-block: 0.5em;
  color: #ff0000;
  font-size: 12px;
  text-align: center;
}
#dashboad .vote-section .vote-container .btn-vote {
  display: block;
  width: 240px;
  max-width: 80%;
  margin-inline: auto;
  padding: 6px 10px;
  font-size: 16px;
  text-align: center;
  border: none;
  background: #e16162;
  color: #fff;
  border-radius: 50px;
}
#dashboad .vote-section .vote-container .btn-vote:hover {
  background-color: #ff0000;
}
#dashboad .vote-section .vote-container .vote-closed-message {
  text-align: center;
  color: #ff0000;
  font-size: 16px;
}
#dashboad .photoframe-section {
  margin-top: 60px;
}
#dashboad .photoframe-section .photoframe-container {
  padding: 16px;
  border: solid 4px #1f86c0;
  border-radius: 10px;
  background-color: #fff;
}
#dashboad .photoframe-section .photoframe-container h2 {
  width: 90%;
  display: block;
  margin-top: -35px;
  margin-inline: auto;
  padding: 0.2em 1em;
  background-color: #1f86c0;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}
#dashboad .photoframe-section .photoframe-container .frame-options {
  display: flex;
  margin-block: 30px 20px;
}
#dashboad .photoframe-section .photoframe-container .frame-options .frame-item {
  width: 50%;
  padding: 0 5%;
  text-align: center;
}
#dashboad .photoframe-section .photoframe-container .frame-options .frame-item .frame-name {
  margin-top: 1em;
  font-size: 14px;
  font-weight: bold;
}
#dashboad .photoframe-section .photoframe-container .frame-options .frame-item a {
  display: block;
  border-radius: 10px;
}
#dashboad .photoframe-section .photoframe-container .frame-options .frame-item a:hover {
  background-color: aquamarine;
}

/*
投票
------------------------------------------------------------------------------------------*/
.vote-edit-section {
  margin-top: 60px;
}
.vote-edit-section .vote-edit-container {
  padding: 16px;
  border: solid 4px #1f86c0;
  border-radius: 10px;
  background-color: #fff;
}
.vote-edit-section .vote-edit-container h2 {
  width: 80%;
  display: block;
  margin-top: -35px;
  margin-inline: auto;
  padding: 0.2em 1em;
  background-color: #1f86c0;
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  text-align: center;
}
.vote-edit-section .vote-edit-container .vote-edit-form {
  margin-block: 30px;
}
.vote-edit-section .vote-edit-container .vote-edit-form .vote-edit-form-input {
  margin-bottom: 1em;
}
.vote-edit-section .vote-edit-container .vote-edit-form .vote-edit-form-input input[type=number] {
  width: 100%;
  font-size: 20px;
  text-align: center;
}
.vote-edit-section .vote-edit-container .vote-edit-form p.note {
  font-size: 14px;
  text-align: center;
  margin-bottom: 1em;
}
.vote-edit-section .vote-edit-container button {
  display: block;
  width: 240px;
  max-width: 80%;
  margin-inline: auto;
  padding: 6px 10px;
  font-size: 16px;
  text-align: center;
  border: none;
  background: #e16162;
  color: #fff;
  border-radius: 50px;
}
.vote-edit-section .vote-edit-container button:hover {
  background-color: #ff0000;
}

/*
フォトフレーム撮影
------------------------------------------------------------------------------------------*/
#photoframe .camera-section .camera-control .control-container .control-item {
  margin-block: 0.5em;
}
#photoframe .camera-section .camera-control .control-container .control-item .control-btn {
  display: block;
  width: 80%;
  margin-inline: auto;
  padding: 6px 10px;
  font-size: 16px;
  border: none;
  background-color: #e16162;
  color: #fff;
  border-radius: 6px;
}
#photoframe .camera-section .camera-control .control-container .control-item #btn-retake.control-btn {
  background-color: #ff0000;
}/*# sourceMappingURL=style.css.map */