@charset "UTF-8";
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #eee;
  z-index: 3000;
  overflow-y: auto;
}
.popup .popup-header {
  text-align: center;
  border-bottom: 1px solid #777;
  position: relative;
}
.popup .popup-header .close {
  position: absolute;
  right: 10px;
  top: -10px;
  font-size: 30px;
  width: 25px;
  height: 25px;
  color: #555;
  background-color: #eee;
  text-shadow: none;
}
.popup .popup-header .close:hover {
  color: #000;
}
.popup .popup-content {
  padding: 20px 0;
}
.popup .popup-content h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid #777;
}

#pagetop {
  bottom: 10px;
  line-height: 1;
  opacity: 0;
  position: absolute;
  right: 20px;
  text-align: right;
  top: 0;
  transition: 0.4s all;
  z-index: 555;
}
#pagetop a {
  background: #333333;
  display: inline-block;
  height: 50px;
  opacity: 0.8;
  overflow: hidden;
  position: relative;
  transition: 0.2s all;
  width: 50px;
}
#pagetop a span {
  display: block;
  position: absolute;
  right: -999em;
}
#pagetop a::before {
  border-bottom: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  content: "";
  display: block;
  height: 12px;
  left: 50%;
  margin-left: -6px;
  margin-top: -4px;
  position: absolute;
  top: 50%;
  transform: rotate(-135deg);
  width: 12px;
  will-change: transform;
}
#pagetop a:hover,
#pagetop a:focus {
  opacity: 0.7;
}
#pagetop.active {
  opacity: 1;
}
#pagetop.stop {
  bottom: 10px;
  position: fixed;
  top: auto;
}

.page-home {
  display: none;
}

#pageLoading {
  display: none;
  z-index: 3050;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#pageLoading .modal-loading-body {
  position: absolute;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  width: 50%;
  height: 80px;
  padding: 23px 15px 15px 15px;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.3);
  *border: 1px solid #999;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  outline: none;
  -webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding-box;
  background-clip: padding-box;
}

#message-box {
  display: none;
  z-index: 4000;
  position: fixed;
  bottom: 25%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 20px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
}

#my-modal {
  display: none;
  opacity: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 4001;
  margin-bottom: 50px;
  transition: opacity 0.6s;
}
#my-modal .dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 40%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 8px;
  overflow-y: auto;
}
#my-modal .dialog .modal-header h4 {
  font-size: 1.2rem;
}
#my-modal .dialog .modal-body {
  text-align: center;
  padding: 30px 0;
}
#my-modal .dialog .modal-footer button {
  min-width: 120px;
}
#my-modal.active {
  display: block;
  opacity: 1;
}

.btn a {
  color: inherit;
}
.btn a:hover {
  text-decoration: none;
}

.btn-primary {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-primary:hover, .btn-primary:disabled {
  background-color: #777;
}
.btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active {
  color: #ffffff !important;
  background-color: #777 !important;
  box-shadow: 0 0 0 0.2rem #777;
}

.btn-secondary {
  color: #222222;
  background-color: #ffffff;
  border-color: #222222;
}
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active, .btn-secondary:disabled {
  color: #222222 !important;
  background-color: #eeeeee !important;
}

body {
  padding-top: 3rem;
  /* fixed-top */
}
@media (max-width: 576px) {
  body {
    font-size: 0.9rem;
  }
}

h1 {
  font-size: 1.7rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

header {
  background-color: #fff;
  display: flex;
  align-items: center;
  height: 3rem;
}
header a {
  color: rgba(0, 0, 0, 0.5);
}
header a:hover {
  text-decoration: underline;
}
header .navbar-brand h1 {
  display: none;
}
@media (max-width: 768px) {
  header .navbar-brand h1 {
    font-size: 1.2rem;
    display: block;
  }
}
header .navbar-brand img {
  max-width: 160px;
}
header .header-buttons {
  padding: 0 20px;
}
@media (max-width: 768px) {
  header .header-buttons {
    text-align: right;
    padding: 10px 0;
  }
}
header .gnav {
  justify-content: center;
  background-color: #fff;
}
@media (max-width: 768px) {
  header .gnav {
    justify-content: flex-start;
    position: absolute;
    top: 100%;
    right: 0;
  }
}
header .gnav .nav-item {
  position: relative;
  padding: 0 20px;
}
@media (max-width: 768px) {
  header .gnav .nav-item .nav-link {
    text-align: right;
  }
}
header .gnav .nav-item .nav-link > img {
  width: 25px;
}
header .gnav .nav-item::after {
  content: "|";
  color: #aaa;
  display: inline-block;
  position: absolute;
  top: 0.4rem;
  right: 0;
}
@media (max-width: 768px) {
  header .gnav .nav-item::after {
    content: none;
  }
}
header .gnav .nav-item:last-child::after {
  content: none;
}
header .lang {
  display: none;
  margin: 0 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  position: absolute;
  top: 50px;
  right: -92px;
  width: 180px;
}
header .lang .title {
  padding: 0 20px;
  border-bottom: 1px solid #ccc;
  background-color: #ccc;
  color: #005bac;
}
header .lang ul {
  list-style: none;
  padding: 10px 20px;
  font-size: 90%;
}
header .lang ul > li {
  cursor: pointer;
  white-space: nowrap;
}
header .lang ul > li:hover {
  text-decoration: underline;
}
header .lang ul > li::before {
  content: ">";
  margin-right: 10px;
  color: #005bac;
}
header .lang::before {
  border-color: transparent transparent #ccc transparent;
  border-style: solid;
  border-width: 0 8.5px 14px 8.5px;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  margin-left: -8.5px;
  position: absolute;
  top: -14px;
  width: 0;
}
header .MYPAGE {
  display: none;
}

.full-width {
  width: 100%;
  padding: 0 20px;
}

.form-control {
  height: auto;
  min-height: calc(2.25rem + 2px);
  overflow-x: hidden;
}

.form-group.error {
  border: 1px solid #E53065;
}

.form-actions {
  text-align: center;
  padding: 20px;
}
.form-actions .form-control {
  display: inline-block;
  width: 150px;
  margin-right: 10px;
}

footer {
  padding: 20px;
  text-align: center;
  font-size: 1rem;
  background-color: #E7E7E7;
}
@media (max-width: 768px) {
  footer .navbar-nav {
    flex-direction: row;
  }
}
footer .navbar-nav .nav-item {
  position: relative;
  padding: 0 20px;
}
@media (max-width: 768px) {
  footer .navbar-nav .nav-item {
    padding: 0 10px;
  }
}
@media (max-width: 768px) {
  footer .navbar-nav .nav-item .nav-link {
    text-align: right;
  }
}
footer .navbar-nav .nav-item::after {
  content: "|";
  color: #aaa;
  display: inline-block;
  position: absolute;
  top: 0.4rem;
  right: 0;
}
footer .navbar-nav .nav-item:nth-last-child(1)::after {
  content: "";
}

section {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: transparent;
}
@media (max-width: 768px) {
  section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
section h1 {
  font-size: 1.6rem;
  padding: 20px;
}
@media (max-width: 768px) {
  section h1 {
    font-size: 1.4rem;
  }
}
section h2 {
  display: inline-block;
  text-align: center;
  width: auto;
  margin: 0 auto;
}
section h2::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background-color: black;
  margin: 8px auto;
}
@media (max-width: 768px) {
  section h2 {
    font-size: 1.4rem;
  }
}
section h3 {
  margin-bottom: 20px;
}
section .subtitle {
  text-align: center;
  padding: 8px 0;
  font-size: 90%;
}
section .section-title {
  text-align: center;
}
section .section-title h2 {
  display: inline-block;
}
section .section-content,
section .main-content {
  text-align: left;
  padding: 40px 50px;
  background-color: white;
}
section .section-content ul,
section .main-content ul {
  margin: 0;
  padding: 0;
  margin-bottom: 1rem;
}
section .section-content ul li,
section .main-content ul li {
  margin-left: 1rem;
  vertical-align: top;
}
section .section-content img,
section .main-content img {
  max-width: 100%;
}
section .section-content .contest-flow li,
section .main-content .contest-flow li {
  list-style: none;
}
section .section-content .contest-flow li h5,
section .main-content .contest-flow li h5 {
  font-weight: bolder;
}
section .section-content .contest-flow li span.flow-step,
section .main-content .contest-flow li span.flow-step {
  font-size: 1rem;
  margin-top: -3px;
  padding: 2px 10px;
  border: solid 1px #999;
  border-radius: 6px;
  margin-right: 10px;
}
section .section-content .table,
section .main-content .table {
  font-size: 0.85rem;
}
section .section-content .table tr td.number,
section .main-content .table tr td.number {
  text-align: center;
}
section .section-content .table tr td.judge,
section .main-content .table tr td.judge {
  max-width: 300px;
}
@media (max-width: 576px) {
  section .section-content,
  section .main-content {
    padding: 20px;
  }
}
section p {
  text-align: left;
}
section.hero {
  padding-top: 0;
  padding-bottom: 0;
  text-align: center;
  color: #222;
}
section.hero .main-image img {
  max-width: 100%;
}
section.hero .sub-image {
  background-color: #eee;
  text-align: left;
}
section.hero .sub-image img {
  height: 60px;
}
section.hero .site-title {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
section.hero .notice-period {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  text-align: center;
  margin: 10px 0 10px 0;
  padding: 20px 10px;
  border-bottom: 1px solid #ddd;
  color: #222;
  display: inline-block;
}
section.hero .notice-period .period-title {
  white-space: nowrap;
  margin-right: 10px;
  padding: 7px 12px;
  border: 1px solid #222;
  border-radius: 9999px;
}
section.hero .notice-period > p {
  display: inline-block;
  margin: 0;
}
section.hero .notice-period > p .contest-from,
section.hero .notice-period > p .contest-to {
  font-size: 150%;
  font-weight: bold;
}
@media (max-width: 768px) {
  section.hero .site-title {
    display: none;
  }
}
section.content .bg {
  background: linear-gradient(90deg, #F2EAE7 0%, #CDDED4 50%, #FFFFFF 100%);
  clip-path: polygon(0 0, 100% 30%, 100% 100%, 0 100%);
}
section.content .form-actions {
  margin-top: 70px;
}
section.content .form-actions .form-control {
  width: 180px;
  padding: 10px;
  margin: 5px 15px;
}
section.banner {
  background-color: #E7E7E7;
}
section.banner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
section.banner ul li {
  list-style: none;
  display: inline-block;
  padding: 10px;
  max-width: 300px;
}
section.banner ul li img {
  max-width: 100%;
}
section.gallery .nav {
  justify-content: center;
}
section.gallery .nav li.nav-item {
  min-width: 240px;
  text-align: center;
}
@media (max-width: 768px) {
  section.gallery .nav li.nav-item {
    min-width: 120px;
  }
}
section.gallery .nav-tabs .nav-link {
  background-color: #EDEDED;
  color: #222222;
}
section.gallery .nav-tabs .nav-link:hover, section.gallery .nav-tabs .nav-link.active {
  background-color: #fff;
  color: #000;
}
section.gallery .load-more {
  display: none;
  width: auto;
  margin: 30px auto;
  padding: 10px 80px;
  border: 1px solid #0C419A;
  color: #0C419A;
  cursor: pointer;
}
section.gallery .load-more.active {
  display: inline-block;
}
section.gallery .load-more:hover {
  color: #EDEDED;
  background: #0C419A;
}
section.gallery span.like {
  display: inline-block;
  padding: 5px 10px;
  background-color: #FE3000;
  color: #fff;
}

.top section.hero {
  background-image: none;
}
.top section.hero .container {
  width: 100% !important;
  max-width: 100%;
  color: #222;
}

.award .award-title .section-content {
  display: flex;
  flex-wrap: wrap;
}
.award .award-title .section-content .award-comment {
  display: block;
  padding: 0 10px 20px 120px;
}
@media (max-width: 576px) {
  .award .award-title .section-content .award-comment {
    padding-left: 50px;
  }
}
.award .award-title .section-content .award-comment .award-comment-photo {
  display: inline-block;
  vertical-align: top;
  width: 18%;
  padding-right: 18px;
}
@media (max-width: 576px) {
  .award .award-title .section-content .award-comment .award-comment-photo {
    width: 50% !important;
    padding-right: 10px;
  }
}
.award .award-title .section-content .award-comment .award-comment-photo img {
  max-width: 100%;
  border-radius: 10px;
}
.award .award-title .section-content .award-comment p {
  display: inline-block;
  vertical-align: top;
  width: 79%;
}
@media (max-width: 576px) {
  .award .award-title .section-content .award-comment p {
    width: 50% !important;
  }
}
.award .award-title .section-content .award-comment p:nth-child(3) {
  width: 100%;
}
.award .award-title .section-content .award-comment:nth-child(1) {
  padding: 0 10px 20px 10px;
}
.award .award-title .section-content .award-comment:nth-child(1) .award-comment-photo {
  width: 20%;
}
@media (max-width: 576px) {
  .award .award-title .section-content .award-comment:nth-child(1) .award-comment-photo {
    width: 50% !important;
  }
}
.award .award-title .section-content .award-comment:nth-child(2) .award-comment-photo,
.award .award-title .section-content .award-comment:nth-child(4) .award-comment-photo {
  float: right;
  padding-left: 18px;
  padding-right: 0;
}
@media (max-width: 576px) {
  .award .award-title .section-content .award-comment:nth-child(2) .award-comment-photo,
  .award .award-title .section-content .award-comment:nth-child(4) .award-comment-photo {
    padding-left: 10px;
  }
}
.award .award-title .comment-title {
  font-size: 1.6rem;
  margin-top: 30px;
  padding: 10px;
  background-color: #C9FEAC;
  border-bottom: 1px solid #999;
}
.award .award-title .award-caption {
  text-align: center;
  font-size: 2.5rem;
  color: red;
  padding-top: 30px;
}
@media (max-width: 576px) {
  .award .award-title .award-caption {
    font-size: 1.5rem;
  }
}
.award .award-content ul {
  padding: 0;
}
.award .award-content .prize {
  position: relative;
  margin-top: 50px;
  list-style: none;
}
.award .award-content .prize .prize-title {
  top: -30px;
  left: calc(50% - 120px);
  height: 50px;
  text-align: center;
  box-sizing: border-box;
  z-index: 3;
}
.award .award-content .prize .prize-title h3 {
  position: relative;
  margin: 0;
  padding: 0 20px;
  line-height: 50px;
  font-size: 1.6rem;
  color: #FFF;
  background: linear-gradient(90deg, #EA2E83, #F53010);
}
.award .award-content .prize .prize-comment {
  padding: 30px 20px;
  border: 1px solid #777;
  border-bottom: none;
}
.award .award-content .prize .prize-content {
  padding-top: 50px;
  border: 1px solid #777;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.award .award-content .prize .prize-content .prize-photo {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.award .award-content .prize .prize-content .prize-photo .photo-frame {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: auto;
  max-height: 100%;
}
.award .award-content .prize .prize-content .prize-photo .photo-frame img {
  max-width: 80%;
  max-height: 70vh;
}
.award .award-content .prize .prize-content .prize-photo .photo-info {
  padding: 30px 20px 50px;
  text-align: left;
  width: 80%;
}
.award .award-content .prize .prize-content .prize-photo .photo-info .info-label,
.award .award-content .prize .prize-content .prize-photo .photo-info .info-value {
  border-bottom: 1px dotted #B24B76;
}
.award .award-content .prize .prize-content .prize-photo .photo-info .info-label {
  color: #B24B76;
  font-weight: bold;
}
@media (max-width: 576px) {
  .award .award-content .prize .prize-content .prize-photo .photo-frame {
    height: 50vh;
  }
  .award .award-content .prize .prize-content .prize-photo .photo-frame img {
    max-width: 80%;
    max-height: 50vh;
  }
}
.award .award-content .prize .prize-content .prize-photo.prize-2 {
  width: 50%;
}
.award .award-content .prize .prize-content .prize-photo.prize-2 .photo-frame {
  height: 60vh;
}
.award .award-content .prize .prize-content .prize-photo.prize-2 .photo-frame img {
  max-height: 70vh;
}
@media (max-width: 576px) {
  .award .award-content .prize .prize-content .prize-photo.prize-2 {
    width: 100%;
  }
  .award .award-content .prize .prize-content .prize-photo.prize-2 .photo-frame {
    height: 40vh;
  }
  .award .award-content .prize .prize-content .prize-photo.prize-2 .photo-frame img {
    max-width: 80%;
    max-height: 40vh;
  }
}
.award .award-content .prize .prize-content .prize-photo.prize-4 {
  width: 33.33%;
}
.award .award-content .prize .prize-content .prize-photo.prize-4 .photo-frame {
  height: 45vh;
}
.award .award-content .prize .prize-content .prize-photo.prize-4 .photo-frame img {
  max-height: 40vh;
}
@media (max-width: 576px) {
  .award .award-content .prize .prize-content .prize-photo.prize-4 {
    width: 100%;
  }
  .award .award-content .prize .prize-content .prize-photo.prize-4 .photo-frame {
    height: 40vh;
  }
  .award .award-content .prize .prize-content .prize-photo.prize-4 .photo-frame img {
    max-width: 80%;
    max-height: 40vh;
  }
}
.award .award-content .prize:nth-child(2) .prize-title h3 {
  background: linear-gradient(90deg, #F95402, #FDC300);
}
.award .award-content .prize:nth-child(3) .prize-title h3 {
  background: linear-gradient(90deg, #E1FF77, #FCFFAC);
  color: #000;
}
.award .award-content .prize:nth-child(4) .prize-title h3 {
  background: linear-gradient(90deg, #A8D506, #FDC300);
  color: #000;
}

.box-fadein img {
  opacity: 0;
  -webkit-transition: opacity 3s;
  transition: opacity 1s;
}

.box-fadein.lazyloaded img.lazyloaded {
  opacity: 1;
}

.gallery {
  position: relative;
}
.gallery .gallery-sort label,
.gallery .gallery-sort select {
  display: inline-block;
}
.gallery .gallery-sort label.form-control,
.gallery .gallery-sort select.form-control {
  width: auto;
}
.gallery .gallery-arrange {
  display: inline-block;
  padding: 0 20px;
  cursor: pointer;
}
.gallery .gallery-arrange .bi-columns-gap {
  display: none;
}
.gallery .gallery-arrange .bi-grid {
  font-size: 18px;
  display: inline;
}
.gallery .gallery-item {
  position: absolute;
  display: block;
  list-style: none;
  z-index: 1;
  cursor: pointer;
  width: 20%;
  text-align: center;
}
.gallery .gallery-item.voted .gallery-image::after {
  content: "投";
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 8px;
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
  border-radius: 20px;
  border: 1px solid #ddd;
  background-color: orange;
}
@media (max-width: 992px) {
  .gallery .gallery-item {
    width: 25%;
  }
}
@media (max-width: 768px) {
  .gallery .gallery-item {
    width: 33.33%;
  }
}
@media (max-width: 576px) {
  .gallery .gallery-item {
    width: 50%;
  }
}
.gallery .gallery-item .gallery-image {
  width: 100%;
}
.gallery .gallery-item .gallery-image img {
  margin: 5px;
  width: calc(100% - 10px);
  border-radius: 10px;
}
.gallery .gallery-item .gallery-info {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 5px;
  transition: all 0.5s;
  max-height: 0;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  text-align: center;
  overflow: hidden;
}
.gallery .gallery-item .gallery-info .gallery-title {
  white-space: nowrap;
}
.gallery .gallery-item:hover .gallery-info {
  max-height: 999px;
  padding: 8px;
}
.gallery.arrange .gallery-image {
  height: 30vh;
  display: flex;
  align-items: center;
  padding: 5px;
  justify-content: center;
}
.gallery.arrange .gallery-image img {
  width: auto;
  max-height: 100%;
  max-width: 100%;
}
.gallery.arrange .gallery-arrange .bi-columns-gap {
  display: inline;
}
.gallery.arrange .gallery-arrange .bi-grid {
  display: none;
}
.gallery.arrange .gallery-info {
  position: relative;
  max-height: none;
  margin-bottom: 10px;
  padding: 8px;
  background-color: inherit;
  color: inherit;
}

.photo-slider {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 3000;
}
.photo-slider .slider-header {
  background-color: #fff;
  height: 44px;
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  padding: 7px 0;
  position: relative;
}
.photo-slider .slider-header .close {
  position: absolute;
  right: 10px;
  top: 7px;
  font-size: 25px;
  width: 25px;
  height: 25px;
  color: #555;
  background-color: #eee;
  text-shadow: none;
}
.photo-slider .slider-header .close:hover {
  color: #000;
}
.photo-slider .slider-view {
  background-color: #fff;
  overflow: hidden;
  height: 90vh;
  width: 170vh;
  max-width: 100%;
  margin: 5vh auto;
  position: relative;
}
.photo-slider .slider-view .slider-container {
  display: block;
  padding: 0;
  position: absolute;
  top: 40px;
  bottom: 0;
  z-index: 3001;
  transition: all 0.3s;
  scroll-snap-type: mandatory;
}
.photo-slider .slider-view .slider-container .photo-frame {
  scroll-snap-align: start;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  list-style: none;
  width: 100%;
  height: 100%;
  float: left;
}
@media (max-width: 768px) {
  .photo-slider .slider-view .slider-container .photo-frame {
    flex-direction: column;
  }
}
.photo-slider .slider-view .slider-container .photo-frame .image-frame {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65%;
  height: 100%;
}
.photo-slider .slider-view .slider-container .photo-frame .image-frame img {
  max-height: 100%;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 768px) {
  .photo-slider .slider-view .slider-container .photo-frame .image-frame {
    width: 100%;
    height: 50%;
  }
}
.photo-slider .slider-view .slider-container .photo-frame .photo-info {
  display: inline-block;
  width: 33%;
  padding: 0 3%;
  max-height: 100%;
  overflow-y: auto;
}
.photo-slider .slider-view .slider-container .photo-frame .photo-info .photo-vote {
  padding: 0 20px;
  width: 100%;
  text-align: center;
  padding: 20px 30px;
  cursor: pointer;
}
.photo-slider .slider-view .slider-container .photo-frame .photo-info .photo-vote span {
  display: inline-block;
  padding: 10px;
  margin-top: 30px;
  background-color: #222222;
  border-radius: 4px;
  color: #fff;
}
@media (max-width: 768px) {
  .photo-slider .slider-view .slider-container .photo-frame .photo-info {
    width: 100%;
    height: auto;
  }
  .photo-slider .slider-view .slider-container .photo-frame .photo-info .col-sm-5 {
    width: 30%;
  }
  .photo-slider .slider-view .slider-container .photo-frame .photo-info .col-sm-7 {
    width: 70%;
  }
}
.photo-slider .slider-left,
.photo-slider .slider-right {
  position: absolute;
  width: 50px;
  top: 40px;
  bottom: 0;
  display: table-cell;
  vertical-align: middle;
  z-index: 5000;
}
.photo-slider .slider-left span,
.photo-slider .slider-right span {
  position: absolute;
  top: 50%;
  display: block;
  font-size: 30px;
  width: 100%;
  height: 50px;
  text-align: center;
  opacity: 0.2;
  cursor: pointer;
}
.photo-slider .slider-left span:hover,
.photo-slider .slider-right span:hover {
  color: #FFF;
  background-color: #0C419A;
  border-radius: 50px;
  border: 1px solid #0C419A;
  opacity: 1;
}
.photo-slider .slider-left {
  left: 0;
}
.photo-slider .slider-right {
  right: 0;
}

.mypage .form-input .area-input {
  position: relative;
}
.mypage .form-input .area-input .edit {
  position: absolute;
  top: 0;
  right: 15px;
  width: 150px;
}
.mypage .form-actions {
  margin-top: 30px;
}
.mypage .section-mypage .form-group {
  text-align: left;
}
.mypage .section-mypage .nav.nav-tabs {
  justify-content: center;
}
.mypage .section-mypage .tab-content {
  margin-top: 30px;
}
.mypage .section-mypage .tab-content .gallery {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.mypage .section-mypage .tab-content .gallery .gallery-item {
  list-style: none;
  width: 33.3%;
  padding: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.mypage .section-mypage .tab-content .gallery .gallery-item .photo-frame img {
  max-width: 100%;
  max-height: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.mypage .section-mypage .tab-content .gallery .gallery-item .photo-info {
  text-align: left;
  padding: 20px 10px 20px 10px;
  width: 100%;
}
.mypage .section-mypage .section-content {
  padding-bottom: 0;
}
.mypage .photo-slider .photo-frame {
  display: inline-block !important;
}
.mypage .photo-slider .photo-info {
  background-color: #fff;
  position: absolute;
  top: 10px;
  bottom: 0;
  right: 0;
  width: 35%;
  text-align: left;
  padding: 0 10px;
  margin: 20px auto auto;
  z-index: 3010;
}
@media (max-width: 768px) {
  .mypage .photo-slider .photo-info {
    top: 50%;
    width: 100%;
  }
}
.mypage .photo-slider .photo-info > .container {
  margin-bottom: 200px;
  height: calc(100% - 210px);
  overflow-y: auto;
}
.mypage .photo-slider .photo-info > .container .col-title {
  position: relative;
}
.mypage .photo-slider .photo-info > .container .col-title span.required::after {
  content: "必須";
  position: absolute;
  bottom: 9px;
  font-size: 9px;
  border: 1px solid red;
  color: red;
  padding: 2px 6px;
  margin-left: 9px;
}
.mypage .photo-slider .photo-info .form-actions {
  background-color: #fff;
  position: absolute;
  bottom: 0;
}

.popup.pwd-edit,
.popup.pwd-forgot {
  background-color: rgba(0, 0, 0, 0.7);
}
.popup.pwd-edit .popup-content,
.popup.pwd-forgot .popup-content {
  background-color: white;
  max-width: 640px;
  margin: 50px auto;
}
.popup.pwd-edit .popup-content .form-input,
.popup.pwd-forgot .popup-content .form-input {
  padding: 30px 20px 10px 20px;
}

.registration .form-header {
  text-align: center;
}
.registration .form-content {
  padding: 20px 0;
}
.registration .form-content h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid #777;
}
.registration .form-content .privacy,
.registration .form-content .terms {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
}

.toggle-pass {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.contest-entry .note-required,
.contest-register .note-required,
.profile .note-required {
  color: red;
  display: inline-block;
  margin-left: 50px;
  font-size: 1rem;
}
.contest-entry .required > label::after,
.contest-register .required > label::after,
.profile .required > label::after {
  content: "必須";
  color: red;
  position: absolute;
  right: 5px;
  font-size: 9px;
  border: 1px solid red;
  padding: 2px 6px;
}
.contest-entry .form-confirm,
.contest-entry .form-complete,
.contest-register .form-confirm,
.contest-register .form-complete,
.profile .form-confirm,
.profile .form-complete {
  display: none;
}
.contest-entry .form-confirm .form-group .form-control,
.contest-register .form-confirm .form-group .form-control,
.profile .form-confirm .form-group .form-control {
  background-color: #ced4da;
}
.contest-entry .upload-file > label,
.contest-register .upload-file > label,
.profile .upload-file > label {
  width: 100%;
}
.contest-entry .upload-file > label > span,
.contest-register .upload-file > label > span,
.profile .upload-file > label > span {
  display: inline-block;
  margin-right: 20px;
  color: #fff;
  background: #ee7800;
  padding: 8px 0;
  border-radius: 16px;
  width: 240px;
  text-align: center;
  transition: 1s;
  cursor: pointer;
}
.contest-entry .upload-file > label > span:hover,
.contest-register .upload-file > label > span:hover,
.profile .upload-file > label > span:hover {
  background: #000;
}
.contest-entry .upload-file > label > input,
.contest-register .upload-file > label > input,
.profile .upload-file > label > input {
  position: relative;
  margin: 8px 0 0 -14px;
  width: auto;
  display: inline-block;
}
.contest-entry .upload-file > label > input:focus,
.contest-register .upload-file > label > input:focus,
.profile .upload-file > label > input:focus {
  outline: 0;
}
.contest-entry .upload-file > label > input::before,
.contest-register .upload-file > label > input::before,
.profile .upload-file > label > input::before {
  content: attr(data-content);
  position: absolute;
  background-color: #eee;
  width: 130px;
  height: 30px;
  line-height: 2;
  text-align: left;
}
.contest-entry .upload-file .file-preview,
.contest-register .upload-file .file-preview,
.profile .upload-file .file-preview {
  max-height: 200px;
  padding: 10px 0;
  display: block;
  /*margin: 0 auto; */
}

#contactus {
  display: none;
  z-index: 4001;
  background-color: #eee;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#contactus h2 {
  text-align: center;
  padding: 30px;
}
#contactus .btn-area {
  padding: 30px 20px;
}
#contactus .btn-area .btn {
  min-width: 100px;
  margin-left: 10px;
}
#contactus .required > label::after {
  content: "*";
  color: red;
  position: absolute;
  right: 5px;
}
#contactus .note-required {
  text-align: right;
  color: red;
}
#contactus .note-required::before {
  content: "*";
  color: red;
}

.section-mypage .forgot-password,
.section-login .forgot-password {
  padding: 20px;
  cursor: pointer;
}
.section-mypage .forgot-password:hover,
.section-login .forgot-password:hover {
  text-decoration: underline;
}
.section-mypage .btn,
.section-login .btn {
  min-width: 240px;
}
.section-mypage .reg-entrance,
.section-login .reg-entrance {
  text-align: center;
  margin: 20px;
  padding: 30px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.section-mypage .reg-section,
.section-login .reg-section {
  display: none;
}
.section-mypage .reg-section .btn-info,
.section-login .reg-section .btn-info {
  height: 90px;
}
.section-mypage .login-section,
.section-login .login-section {
  max-width: 640px;
  margin: 0 auto;
}

.section-login .form-login {
  width: 100%;
}
.section-login .form-login .container {
  text-align: left;
  max-width: 640px;
  padding: 100px 0;
}
@media (max-width: 576px) {
  .section-login .form-login .container {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 4rem;
  }
  header {
    height: 4rem;
  }
  header .navbar .navbar-brand {
    white-space: wrap;
    padding-right: 2rem;
  }
  header .navbar .navbar-brand h1 {
    font-size: 1rem;
  }
  header .navbar .navbar-toggler {
    position: absolute;
    right: 0;
  }
}/*# sourceMappingURL=style.css.map */