@charset "UTF-8";
/* ==============================================================================
  FOUNDATIONS
============================================================================== */
/* ---------------------------------------------------------
  COLORS  $c-xx
--------------------------------------------------------- */
/* ---------------------------------------------------------
  FONT FAMILY  $f-xx
--------------------------------------------------------- */
/* ---------------------------------------------------------
  SIZE  $s-xx
--------------------------------------------------------- */
/* ---------------------------------------------------------
  OTHERS  $o-xx
--------------------------------------------------------- */
/* ======================================================================
 HOVER
========================================================================= */
/* ======================================================================
 LAYOUT
========================================================================= */
/* ======================================================================
 DESIGN PATTERN
========================================================================= */
/*--------------------------------------------------------------------
  Reset
--------------------------------------------------------------------*/
*, *::after, *::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html, body, div, span, h1, h2, h3, h4, h5, h6, p, a, img, small, strong, b, dl, dt, dd, ol, ul, li, form, label, table, caption, tbody, tfoot, thead, tr, th, td, article, figure, figcaption, footer, header, nav, section {
  margin: 0;
  padding: 0;

  font: inherit;
  font-size: 100%;
  vertical-align: baseline;

  border: 0;
}

article, figcaption, figure, footer, header, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

button, input {
  padding: 0;

  background: none;
  border: none;
  border-radius: 0;
  outline: none;

  -webkit-appearance: none;

  -moz-appearance: none;

  appearance: none;
}

input[type="radio"], input[type="checkbox"] {
  display: none;
}

input[type="date"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="date"]::-webkit-clear-button {
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

pre {
  margin: 0;

  font-family: inherit;
}

html {
  min-height: 100%;

  font-size: 62.5%;
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  min-height: 100%;

  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: #111111;
}

*, *::after, *::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

main {
  display: block;
}

a {
  color: #111111;

  -webkit-transition: .2s;

  transition: .2s;
}

@media (hover: hover), (-ms-high-contrast: none) {
  a:hover {
    opacity: .6;
  }
}

pre {
  white-space: pre-wrap;
}

.\--disabled-g {
  opacity: .4;

  pointer-events: none;
}

select::-ms-expand {
  display: block;
  width: 12px;

  background-color: transparent;
  border: none;
}

/* ==============================================================================
  COMPONENTS
============================================================================== */
.c-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 2rem;

  font-weight: 700;
  font-size: 2rem;
  line-height: 1.1;
  text-align: center;

  border-radius: 6px;
  cursor: pointer;

  -webkit-transition: .2s;

  transition: .2s;
}

@media (hover: hover), (-ms-high-contrast: none) {
  .c-btn:hover {
    opacity: .6;
  }
}

.c-btn.\--border {
  color: #666666;

  border: 1px solid #efefef;
}

.c-btn.\--border02 {
  color: #666666;

  border: 1px solid #c4c4c4;
}

.c-btn.\--white {
  color: #666666;

  background-color: #ffffff;
  border: #c4c4c4 solid 1px;
}

.c-btn.\--yellow {
  color: #111111;

  background-color: #ffffff;
  background-image: url("../img/bg/yellow_grad.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100% 100%;
}

.c-btn.\--red {
  color: #ffffff;

  background-color: #b7241e;
}

.c-btn.\--red02 {
  color: #ffffff;

  background-color: #ffffff;
  background-image: url("../img/bg/red02_grad.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100% 100%;
}

.c-btn.\--back::before {
  content: "";

  display: block;
  width: 10px;
  height: 18px;
  margin-top: 2px;
  margin-right: 1.5rem;

  background-image: url("../img/icons/arrow_gray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-btn.\--back.\--red02::before {
  background-image: url("../img/icons/arrow_white.svg");
}

.c-btn.\--ahead::after {
  content: "";

  display: block;
  width: 10px;
  height: 18px;
  margin-top: 2px;
  margin-left: 1.5rem;

  background-image: url("../img/icons/arrow_gray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.c-btn.\--ahead.\--red02::after {
  background-image: url("../img/icons/arrow_white.svg");
}

.c-btn.\--disabled {
  color: #ffffff;

  background-image: url("../img/bg/gray_grad.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100% 100%;

  pointer-events: none;
}

.c-btn.\--disabled.\--ahead::after {
  background-image: url("../img/icons/arrow_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-btn.\--full {
  width: 100%;
}

.c-btn.\--ball {
  width: 4rem;
  height: 4rem;

  border-radius: 9999px;
}

.c-btn.\--round {
  padding: 1.5rem 2rem;

  border-radius: 9999px;
}

.c-btn.\--round-sm {
  padding: .9rem 2rem;

  font-size: 1.8rem;

  border-radius: 9999px;
}

.c-btn.\--round-xs {
  min-width: 11rem;
  padding: .8rem 2rem;

  font-weight: 400;
  font-size: 1.4rem;

  border-radius: 9999px;
}

.c-btn.\--long {
  width: 100%;
  max-width: 34.2rem;
  margin-right: auto;
  margin-left: auto;
}

.c-btn.\--lg {
  height: 8rem;

  font-size: 2.4rem;
  line-height: 1.5;

  background-size: 100% 100%;
}

.c-btn.\--min-lg {
  min-height: 8rem;

  font-size: 1.3rem;
  line-height: 1.5;

  background-size: 100% 100%;
}

.c-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.5rem;

  visibility: hidden;
  opacity: 0;

  -webkit-transition: .2s;

  transition: .2s;
}

.c-modal.isVisible {
  visibility: visible;
  opacity: 1;
}

.c-modal.isVisible .c-modal__contents {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.c-modal__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 101;

  background: rgba(0, 0, 0, .5);
}

.c-modal__contents {
  z-index: 102;

  width: 100%;
  max-width: 29rem;

  background-color: #ffffff;
  border-radius: 6px;
  -webkit-transform: translateY(4%);
  transform: translateY(4%);

  -webkit-transition: .2s;

  transition: .2s;
}

.c-modal__contents__header, .c-modal__contents__body, .c-modal__contents__footer {
  padding: 1rem 1.5rem;
}

.c-modal__contents__header {
  font-weight: 700;
  font-size: 1.6rem;

  background-color: #efefef;
  border-radius: 6px 6px 0 0;
}

.c-modal__contents__body {
  height: 26rem;
  overflow-y: auto;

  font-size: 1.4rem;
}

.c-modal__contents__list > li + li {
  margin-top: 2rem;
}

.c-modal__contents__footer > * + * {
  margin-top: 1rem;
}

.c-modal__contents__footer form > * + * {
  margin-top: 1rem;
}

.c-modal.--search .c-modal__contents {
  max-width: 60rem;
}

.c-modal .p-register__container {
  height: 100%;

  background-color: #dddddd;
}

.c-headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-headline.\--red02 {
  max-width: 50rem;
  min-height: 4.4rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1rem 0;
}

.c-headline.\--red02 h2, .c-headline.\--red02 h3, .c-headline.\--red02 h4, .c-headline.\--red02 h5, .c-headline.\--red02 h6 {
  font-size: 1.8rem;
  color: #b7241e;
}

.c-headline.\--cover {
  max-width: 50rem;
  min-height: 4.4rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1rem 0;

  background-color: #ebe9e5;
}

.c-headline__sub {
  display: block;
  margin-top: 1rem;

  font-weight: 400;
  font-size: 1.2rem;
}

.c-headline h2, .c-headline h3, .c-headline h4, .c-headline h5, .c-headline h6 {
  font-weight: 700;
  font-weight: 700;
  font-size: 1.6rem;
  color: #111111;
}

.c-headline h2.\--sm, .c-headline h3.\--sm, .c-headline h4.\--sm, .c-headline h5.\--sm, .c-headline h6.\--sm {
  font-weight: 400;
  font-size: 1.2rem;
}

.c-input.\--disabled {
  opacity: .3;

  pointer-events: none;
}

.c-input.\--full {
  width: 100%;
}

.c-input.\--border {
  width: calc( 100% + 3.2rem);
  margin-right: -1.6rem;
  margin-left: -1.6rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;

  border-bottom: 1px solid #efefef;
}

.c-input.\--hasErr .c-input__input {
  border-width: 3px;
  border-color: #ef2004;
}

.c-input.\--hasErr .c-input__errMsg {
  display: block;
}

.c-input + .c-input:not(button) {
  margin-top: 2rem;
}

.c-input + .c-input:not(button).\--nextTo {
  margin-top: 1rem;
}

.c-input.\--sm + .c-input:not(button) {
  margin-top: 1rem;
}

.c-input__cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.c-input__cols + .c-input__cols, .c-input__cols + .c-input__input {
  margin-top: 1rem;
}

@media (max-width: 370px) {
  .c-input__cols.--date {
    display: block;
  }
  .c-input__cols.--date > * {
    margin-right: 1rem;
    margin-left: 0;
  }
}

.c-input__cols.\--btwn {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.c-input__cols.\--top {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.c-input__cols.\--top .c-input__label-sm {
  margin-top: .5rem;
}

.c-input__cols label {
  width: 18rem;
  margin-right: 1rem;
  margin-bottom: 0;

  font-weight: 400;
}

.c-input__cols > * + * {
  margin-left: 1rem;
}

.c-input__label {
  display: block;
  margin-bottom: .7rem;

  font-weight: 700;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  color: #111111;
}

.c-input__label.\--sm {
  font-size: 1.4rem;
}

.c-input__label.--auto {
  width: auto;
}

.c-input__label > span {
  display: block;
  margin-top: 1rem;

  font-weight: 400;
}

.c-input__label-sm {
  width: 12rem;
}

.c-input__label-sm.--full {
  width: 100%;
  margin-bottom: .5rem;
}

.c-input__input {
  width: 100%;
  height: 3rem;
  padding: .3rem 1rem;

  background-color: #ffffff;
  border: 1px solid #666666;
  border-radius: 6px;
}

.c-input__input + .c-input__input {
  margin-top: 1rem;
}

.c-input__input.\--hasErr {
  border-width: 2px;
  border-color: #ef2004;
}

.c-input__input.\--no-mg {
  margin-top: 0;
}

.c-input__input.\--xxs {
  width: 3.6rem;
}

.c-input__input.\--xsm {
  width: 4.6rem;
}

.c-input__input.\--sm {
  width: 5.4rem;
}

.c-input__input.\--mid {
  width: 7rem;
}

.c-input__input.\--mid-m {
  width: 10.4rem;
}

.c-input__input.\--mid-sm {
  width: 12rem;
}

.c-input__input.\--mid-l {
  width: 13rem;
}

.c-input__input.\--lg {
  width: 20rem;
}

.c-input__input.\--xxl {
  width: 100%;
}

.c-input__input.\--min-20 {
  width: auto;
  min-width: 20rem;
}

.c-input__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  cursor: pointer;
}

.c-input__radio + .c-input__radio {
  margin-top: 1rem;
}

.c-input__radio__btn {
  position: relative;

  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;

  border: 3px solid #c4c4c4;
  border-radius: 9999px;
}

.c-input__radio input[type="radio"]:checked + .c-input__radio__btn {
  border-color: #dbb836;
}

.c-input__radio input[type="radio"]:checked + .c-input__radio__btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;

  width: 1rem;
  height: 1rem;

  background-color: #dbb836;
  border-radius: 9999px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.c-input__checkbox {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  cursor: pointer;
}

.c-input__checkbox + .c-input__radio {
  margin-top: 1rem;
}

.c-input__checkbox__btn {
  position: relative;

  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;

  background-color: #ffffff;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
}

.c-input__checkbox input[type="checkbox"]:checked + .c-input__checkbox__btn {
  background-image: url("../img/icons/checkbox.svg");
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
}

.c-input__comment {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.c-input__submit {
  margin-top: 2rem;
}

.c-input__submit + a {
  margin-top: 1rem;
}

.c-input__errMsg {
  display: none;

  color: #ef2004;
}

.c-input__errMsg.\--show {
  display: block;
}

body.confirm-page .c-input.--border {
  padding-bottom: 2rem;

  border-color: #c4c4c4;
}

body.confirm-page .c-input:not(:last-of-type) {
  padding-bottom: 2rem;

  border-bottom: 1px solid #c4c4c4;
}

body.confirm-page .c-input.--no-border {
  padding-bottom: 0;

  border-bottom: none;
}

.c-registerLink {
  border-bottom: 1px solid #efefef;
}

.c-registerLink > a {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1.3rem 3.6rem 1.3rem 1.6rem;

  font-size: 1.6rem;
}

.c-registerLink > a:before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 1rem;
  padding-bottom: 2px;

  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;

  border-radius: 9999px;
}

.c-registerLink > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;

  display: block;
  width: 10px;
  height: 18px;

  background-image: url("../img/icons/arrow_gray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.c-registerLink.\--disabled > a {
  opacity: .3;

  pointer-events: none;
}

.c-registerLink.\--done > a, .c-registerLink.\--notYet > a, .c-registerLink.--later > a, .c-registerLink.\--again > a {
  padding: 1rem 3.6rem 1rem 1.6rem;
}

.c-registerLink.\--done > a:before {
  content: "済";

  background-image: url("../img/bg/gray_grad.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-registerLink.\--notYet > a:before {
  content: "未";

  background-image: url("../img/bg/yellow_grad.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-registerLink.\--again > a:before {
  content: "再";

  background-image: url("../img/bg/red_grad.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-registerLink.\--later > a:before {
  content: "後";

  background-image: url("../img/bg/gray_grad.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.c-progress > li {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;

  font-size: 1.6rem;
}

.c-progress > li:before {
  content: "";

  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 1rem;

  border: 3px solid #c4c4c4;
  border-radius: 9999px;
}

.c-progress > li + li {
  margin-top: 4rem;
}

.c-progress > li + li:after {
  content: "";
  position: absolute;
  top: -43px;
  left: 9px;

  display: block;
  width: 2px;
  height: 47px;

  background-color: #c4c4c4;
}

.c-progress > li.\--done:before {
  background-image: url("../img/icons/checked.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
}

.c-progress > li.\--done:after {
  background-color: #dbb836;
}

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

.c-text.\--link {
  display: block;

  color: #01aff0;
  text-decoration: underline;

  cursor: pointer;
}

@media (hover: hover), (-ms-high-contrast: none) {
  .c-text.\--link:hover {
    opacity: .6;
  }
}

.c-text.\--link-inline {
  color: #01aff0;
  text-decoration: underline;
  word-break: break-all;

  cursor: pointer;
}

@media (hover: hover), (-ms-high-contrast: none) {
  .c-text.\--link-inline:hover {
    opacity: .6;
  }
}

.c-text.\--confirm {
  font-size: 1.8rem;
  color: #666666;
}

.c-text.\--lg {
  font-weight: 700;
  font-size: 1.8rem;
}

.c-text.\--annotation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  font-size: 1.4rem;
}

.c-text.\--annotation:before {
  content: "※";
}

.c-text.\--list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  font-size: 1.4rem;
}

.c-text.\--list-item:before {
  content: "・";
}

.c-text .checkmark {
  margin-right: 6px;
}

.c-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-dl dt {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.c-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 20rem;
  height: 20rem;
  margin: 5rem auto 2rem;
  padding: 1rem;

  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  color: #666666;

  border: 1px solid #efefef;
  border-radius: 9999px;
}

.c-circle > span {
  display: block;
}

.c-circle.\--red {
  background-color: #b7241e;
}

.c-circle.\--sm {
  font-size: 1.6rem;
}

.c-errMsg {
  padding: 1rem 1.5rem;

  font-size: 1.4rem;
  color: #ef2004;

  border: 3px solid #ef2004;
  border-radius: 6px;
}

.l-container > .c-errMsg {
  margin-top: 2rem;
}

.c-prevModal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 6rem;
  left: 0;

  background-color: #ffffff;
}

.c-prevModal .l-main {
  height: 100%;
  padding-bottom: 0 !important;
}

.c-prevModal .l-main > div {
  height: 100%;
}

.c-prevModal .l-main .p-register__container {
  height: 100%;
}

.c-prevModal .l-main .p-register__img {
  height: 100%;
}

.c-prevModal .l-main .p-register__img img {
  height: 100%;
}

.c-prevModal .l-footer {
  z-index: 1000;
}

.leaflet-top {
  position: fixed !important;
  top: auto !important;
  right: auto !important;
  bottom: 7rem;
  left: 50% !important;

  margin-left: 150px;
}

@media (max-width: 768px) {
  .leaflet-top {
    right: 1rem !important;
    left: auto !important;

    margin-left: 0;
  }
}

.leaflet-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  float: none !important;
  margin: 0;
}

.leaflet-touch .leaflet-bar {
  border: none !important;
}

.leaflet-control-zoom-out, .leaflet-control-zoom-in {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 4rem !important;
  height: 4rem !important;
  margin-right: 5px;
  padding-bottom: 4px;

  line-height: 1 !important;
  color: #ffffff !important;

  background-color: #ffffff;
  background-image: url("../img/bg/red02_grad.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 100% 5rem;
  border-radius: 9999px !important;
}

.c-canvas {
  display: block;
  margin: 0 auto;

  background-color: #efefef;
  border: 1px solid #666666;
}

*.isRequired {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
}

*.isRequired:after {
  content: "必須";

  -ms-flex-negative: 0;

  flex-shrink: 0;
  margin-left: 1rem;
  padding: .4rem .7rem;

  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  color: #ef2004;

  border: 1px solid #ef2004;
  border-radius: 5px;
}

*.isRequired.nomb {
  margin-bottom: 0;
}

.c-scrollable {
  height: 25rem;
  padding: 1rem 1.6rem;
  overflow-y: auto;

  border: 1px solid #c4c4c4;
  border-radius: 6px;
}

/* ==============================================================================
  LAYOUTS
============================================================================== */
.l-header {
  height: 7rem;

  background-color: #ffffff;
  border-bottom: 4px solid #b7241e;
}

.l-header__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
}

.l-header__lead {
  font-weight: 700;
  font-size: 2rem;
  color: #111111;
}

.l-header__lead .logo {
  display: block;
  max-height: 6rem;
  margin: .3rem 0;
}

.l-header__hum {
  position: relative;

  width: 26px;
  height: 21px;

  cursor: pointer;
}

.l-header__hum > span {
  position: absolute;
  left: 0;

  display: block;
  width: 26px;
  height: 3px;

  background-color: #b7241e;
}

.l-header__hum > span:first-child {
  top: 0;
}

.l-header__hum > span:nth-child(2) {
  top: 50%;

  -webkit-transform: translateY(-50%);

  transform: translateY(-50%);
}

.l-header__hum > span:nth-child(3) {
  bottom: 0;
}

body.isHumMenuOpen .l-header__hum {
  display: none;
}

.l-hum {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;

  visibility: hidden;
}

.l-hum__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;

  display: none;

  background-color: rgba(17, 17, 17, .4);
  opacity: 0;

  -webkit-transition: .2s;

  transition: .2s;
}

@media (max-width: 768px) {
  .l-hum__overlay {
    display: block;
  }
}

.l-hum__close {
  position: absolute;
  top: -4.8rem;
  right: 50%;
  z-index: 200;

  display: block;
  width: 28px;
  height: 28px;
  margin-right: -23.5rem;

  background-image: url("../img/icons/cross_gray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;

  -webkit-transition: .2s;

  transition: .2s;
}

@media (hover: hover), (-ms-high-contrast: none) {
  .l-hum__close:hover {
    opacity: .6;
  }
}

@media (max-width: 768px) {
  .l-hum__close {
    top: 2rem;
    right: auto;
    left: -4rem;

    margin-right: 0;

    background-image: url("../img/icons/cross_white.svg");
  }
}

.l-hum__body {
  position: fixed;
  top: 7rem;
  left: 0;
  z-index: 200;

  width: 100vw;
  height: calc( 100% - 7rem);

  background-color: #ffffff;
  opacity: 0;

  -webkit-transition: .2s;

  transition: .2s;
}

@media (max-width: 768px) {
  .l-hum__body {
    top: 0;
    right: 0;
    bottom: 0;
    left: 8.5rem;

    width: auto;
    height: 100%;

    -webkit-transform: translate(100%, 0);

    transform: translate(100%, 0);
  }
}

.l-hum__body__scroll {
  width: 100%;
  max-width: 50rem;
  height: 100vh;
  height: 100%;
  margin: 0 auto;
  overflow-y: auto;
}

.l-hum__title {
  padding: 1.3rem 1.6rem;

  font-weight: 700;
  font-size: 1.6rem;

  border-bottom: 1px solid #efefef;
}

.l-hum__topLink {
  position: relative;
}

.l-hum__topLink.\--disabled {
  opacity: .3;

  pointer-events: none;
}

.l-hum__topLink:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.8rem;

  display: block;
  width: 10px;
  height: 18px;

  background-image: url("../img/icons/arrow_gray.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.l-hum__nav {
  width: 100%;
}

.l-hum__nav li {
  border-bottom: 1px solid #efefef;
}

.l-hum__topLink {
  display: block;
  width: 100%;
  height: 7rem;
  padding: 2.3rem 3.6rem 2.3rem 1.6rem;

  font-weight: 700;
  font-size: 1.6rem;

  border-bottom: 1px solid #efefef;
}

body.isHumMenuOpen {
  position: fixed;
}

@media (max-width: 768px) {
  body.isHumMenuOpen {
    position: static;
  }
}

body.isHumMenuOpen .l-hum {
  visibility: visible;
}

body.isHumMenuOpen .l-hum__overlay {
  opacity: 1;
}

body.isHumMenuOpen .l-hum__body {
  opacity: 1;
}

@media (max-width: 768px) {
  body.isHumMenuOpen .l-hum__body {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.l-main {
  width: 100%;
}

.l-main.\--fixedFooter {
  padding-bottom: 8rem;
}

.l-main.\--prevFooter {
  padding-bottom: 13rem;
}

.l-main.\--fixedTotal {
  padding-bottom: 13rem;
}

.l-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;

  height: 6rem;

  background-color: #ffffff;
  border-top: 1px solid #c4c4c4;
}

.l-footer .l-container {
  height: 100%;
}

.l-footer__controller {
  position: absolute;
  right: 16px;
  bottom: 70px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
}

.l-footer__controller > * + * {
  margin-left: 5px;
}

[class*="l-"].\--between {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

[class*="l-"].\--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.l-width {
  width: 100%;
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto;
}

.l-container {
  position: relative;

  width: 100%;
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}

.l-container.\--no-pdg {
  padding-right: 0;
  padding-left: 0;
}

.l-block {
  width: 100%;
  max-width: 50rem;
  margin-right: auto;
  margin-left: auto;
  padding: 1.6rem;
}

.l-sub {
  margin-bottom: 1rem;
}

.l-sub-upper {
  margin-top: 1rem;
}

.l-sub-upper.--border {
  margin-right: -1rem;
  margin-left: -1rem;
  padding: 1rem;

  border: #c4c4c4 solid 1px;
}

.l-area {
  margin-bottom: 2rem;
}

.l-area-upper {
  margin-top: 2rem;
}

.l-box {
  margin-bottom: 4rem;
}

.l-formSec + .l-formSec {
  margin-top: 2rem;
}

.l-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
  margin-left: -1rem;
}

.l-btns.\--wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.l-btns > * {
  margin-top: 1rem;
  margin-left: 1rem;
}

.l-border {
  padding: 2rem 1.6rem;

  border-bottom: 1px solid #efefef;
}

.l-block-sec + .l-block-sec {
  margin-top: 2rem;
}

.l-fixedFoot {
  position: fixed;
  bottom: 6rem;
  left: 0;

  width: 100%;

  background-color: #efefef;
}

.l-fixedFoot__inner {
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  padding: 1.3rem 1.5rem;
}

.l-canvasWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 4rem;
}

/* ==============================================================================
  PROJECTS
============================================================================== */
.p-register__container {
  margin-top: 2rem;
}

.p-register__container + .p-register__container {
  margin-top: 3em;
}

.p-register__container.\withImg {
  width: 100%;
  max-width: 50rem;
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
}

.p-register__container.\--prevImg {
  width: 100%;
  max-width: 50rem;
  height: calc(100% - 20rem);
  margin-top: 0;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;

  text-align: center;
}

.p-register__annotation {
  margin-bottom: 2rem;

  font-size: 1.4rem;
}

main .p-register__img {
  position: relative;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

main .p-register__img img {
  max-width: 50rem;
  height: auto;
}

body.isFileUploaded main .p-register__img, body.isImageExisted main .p-register__img {
  height: auto;
  padding: 1.6rem;

  background-color: #ffffff;
}

body.isFileUploaded main .p-register__img img, body.isImageExisted main .p-register__img img {
  max-width: initial;
  max-width: 100%;
  max-height: calc( 35rem - 3.2rem);
}

.js-prev-image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.js-prev-image-box > img {
  height: auto !important;
  max-height: 100%;
}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .p-register__container.\--prevImg {
    position: relative;
  }
  .p-register__container.\--prevImg .leaflet-container {
    left: 0 !important;

    width: 100% !important;
  }
}

.p-fileUp__yet {
  display: block;
}

.p-fileUp__done {
  display: none;
}

body.isFileUploaded .p-fileUp__yet {
  display: none;
}

body.isFileUploaded .p-fileUp__done {
  display: block;
}

/* ==============================================================================
  Others
============================================================================== */
.u-bold {
  font-weight: 700 !important;
}

.u-normal {
  font-weight: 400 !important;
}

.u-text-right {
  text-align: right;
}

.u-text-lh-m {
  line-height: 1.5;
}

.u-text-minimum {
  font-size: 1rem;
}

.u-text-small {
  font-size: 1.2rem;
}

.u-text-13 {
  font-size: 1.3rem;
}

.u-text-16 {
  font-size: 1.6rem;
}

.u-text-mid {
  font-size: 1.8rem;
}

.u-white {
  color: #ffffff;
}

.u-red {
  color: #ef2004 !important;
}

.u-d-inline {
  display: inline !important;
}

.u-d-block {
  display: block !important;
}

.u-w100 {
  width: 100%;
}

.u-border {
  border: 1px solid #c4c4c4;
}

.u-indent {
  padding-left: 1em;
}

.u-indent-1word {
  padding-left: 1em;
}

.u-indent-2word {
  padding-left: 2em;
}

.u-indent-5word {
  padding-left: 5em;
}

.u-indent-newline {
  padding-left: 1em;

  text-indent: -1em;
}