@charset "UTF-8";
@media (max-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media (min-width: 769px) {
  .hidden-pc {
    display: none;
  }
}

.v-select {
  position: relative;
  font-family: inherit;
}

.v-select,
.v-select * {
  box-sizing: border-box;
}

/* KeyFrames */
@-webkit-keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes vSelectSpinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Dropdown Default Transition */
.vs__fade-enter-active,
.vs__fade-leave-active {
  pointer-events: none;
  transition: opacity 0.15s cubic-bezier(1, 0.5, 0.8, 1);
}

.vs__fade-enter,
.vs__fade-leave-to {
  opacity: 0;
}

/** Component States */
/*
 * Disabled
 *
 * When the component is disabled, all interaction
 * should be prevented. Here we modify the bg color,
 * and change the cursor displayed on the interactive
 * components.
 */
.vs--disabled .vs__dropdown-toggle,
.vs--disabled .vs__clear,
.vs--disabled .vs__search,
.vs--disabled .vs__selected,
.vs--disabled .vs__open-indicator {
  cursor: not-allowed;
  background-color: #f8f8f8;
}

/*
 *  RTL - Right to Left Support
 *
 *  Because we're using a flexbox layout, the `dir="rtl"`
 *  HTML attribute does most of the work for us by
 *  rearranging the child elements visually.
 */
.v-select[dir="rtl"] .vs__actions {
  padding: 0 3px 0 6px;
}

.v-select[dir="rtl"] .vs__clear {
  margin-left: 6px;
  margin-right: 0;
}

.v-select[dir="rtl"] .vs__deselect {
  margin-left: 0;
  margin-right: 2px;
}

.v-select[dir="rtl"] .vs__dropdown-menu {
  text-align: right;
}

/**
    Dropdown Toggle

    The dropdown toggle is the primary wrapper of the component. It
    has two direct descendants: .vs__selected-options, and .vs__actions.

    .vs__selected-options holds the .vs__selected's as well as the
    main search input.

    .vs__actions holds the clear button and dropdown toggle.
 */
.vs__dropdown-toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  padding: 0 0 4px 0;
  background: none;
  border: 2px solid #000;
  border-radius: 0;
  white-space: normal;
}

.vs__selected-options {
  display: flex;
  flex-basis: 100%;
  flex-grow: 1;
  flex-wrap: wrap;
  padding: 0 2px;
  position: relative;
}

.vs__actions {
  display: flex;
  align-items: center;
  padding: 4px 6px 0 3px;
}

/* Dropdown Toggle States */
.vs--searchable .vs__dropdown-toggle {
  cursor: text;
}

.vs--unsearchable .vs__dropdown-toggle {
  cursor: pointer;
}

.vs--open .vs__dropdown-toggle {
  border-bottom-color: transparent;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.vs__open-indicator {
  fill: rgba(60, 60, 60, .5);
  transform: scale(1);
  transition: transform 150ms cubic-bezier(1, -0.115, 0.975, 0.855);
  transition-timing-function: cubic-bezier(1, -0.115, 0.975, 0.855);
}

.vs--open .vs__open-indicator {
  transform: rotate(180deg) scale(1);
}

.vs--loading .vs__open-indicator {
  opacity: 0;
}

/* Clear Button */
.vs__clear {
  fill: rgba(60, 60, 60, .5);
  padding: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  margin-right: 8px;
}

/* Dropdown Menu */
.vs__dropdown-menu {
  display: block;
  box-sizing: border-box;
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 1000;
  padding: 5px 0;
  margin: 0;
  width: 100%;
  max-height: 350px;
  min-width: 160px;
  overflow-y: auto;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, .15);
  border: 2px solid #000;
  border-top-style: none;
  border-radius: 0 0 0 0;
  text-align: left;
  list-style: none;
  background: #fff;
}

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

/* List Items */
.vs__dropdown-option {
  line-height: 1.42857143;
  /* Normalize line height */
  display: block;
  padding: 3px 20px;
  clear: both;
  color: #333;
  /* Overrides most CSS frameworks */
  white-space: nowrap;
}

.vs__dropdown-option:hover {
  cursor: pointer;
}

.vs__dropdown-option--highlight {
  background: #000;
  color: #fff;
}

.vs__dropdown-option--disabled {
  background: inherit;
  color: rgba(60, 60, 60, .5);
}

.vs__dropdown-option--disabled:hover {
  cursor: inherit;
}

/* Selected Tags */
.vs__selected {
  display: flex;
  align-items: center;
  background-color: #f0f0f0;
  border: 2px solid #000;
  border-radius: 0;
  color: #333;
  line-height: 1.4;
  margin: 4px 2px 0px 2px;
  padding: 0 0.25em;
  z-index: 0;
}

.vs__deselect {
  display: inline-flex;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin-left: 4px;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
  fill: rgba(60, 60, 60, .5);
  text-shadow: 0 1px 0 #fff;
}

/* States */
.vs--single .vs__selected {
  background-color: transparent;
  border-color: transparent;
}

.vs--single.vs--open .vs__selected {
  position: absolute;
  opacity: .4;
}

.vs--single.vs--searching .vs__selected {
  display: none;
}

/* Search Input */
/**
 * Super weird bug... If this declaration is grouped
 * below, the cancel button will still appear in chrome.
 * If it's up here on it's own, it'll hide it.
 */
.vs__search::-webkit-search-cancel-button {
  display: none;
}

.vs__search::-webkit-search-decoration,
.vs__search::-webkit-search-results-button,
.vs__search::-webkit-search-results-decoration,
.vs__search::-ms-clear {
  display: none;
}

.vs__search,
.vs__search:focus {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  line-height: 1.4;
  font-size: 1em;
  border: 1px solid transparent;
  border-left: none;
  outline: none;
  margin: 4px 0 0 0;
  padding: 0 7px;
  background: none;
  box-shadow: none;
  width: 0;
  max-width: 100%;
  flex-grow: 1;
  z-index: 1;
}

.vs__search::-moz-placeholder {
  color: inherit;
}

.vs__search::-ms-input-placeholder {
  color: inherit;
}

.vs__search:-ms-input-placeholder {
  color: inherit;
}

.vs__search::placeholder {
  color: inherit;
}

/**
    States
 */
.vs--unsearchable .vs__search {
  opacity: 1;
}

.vs--unsearchable:not(.vs--disabled) .vs__search:hover {
  cursor: pointer;
}

.vs--single.vs--searching:not(.vs--open):not(.vs--loading) .vs__search {
  opacity: .2;
}

/* Loading Spinner */
.vs__spinner {
  align-self: center;
  opacity: 0;
  font-size: 5px;
  text-indent: -9999em;
  overflow: hidden;
  border-top: 0.9em solid rgba(100, 100, 100, .1);
  border-right: 0.9em solid rgba(100, 100, 100, .1);
  border-bottom: 0.9em solid rgba(100, 100, 100, .1);
  border-left: 0.9em solid rgba(60, 60, 60, .45);
  transform: translateZ(0);
  -webkit-animation: vSelectSpinner 1.1s infinite linear;
          animation: vSelectSpinner 1.1s infinite linear;
  transition: opacity .1s;
}

.vs__spinner,
.vs__spinner:after {
  border-radius: 50%;
  width: 5em;
  height: 5em;
}

/* Loading Spinner States */
.vs--loading .vs__spinner {
  opacity: 1;
}

.store-selector .vs__open-indicator {
  transition: none !important;
}

@media (min-width: 769px) {
  .store-selector {
    height: 80px;
    width: 660px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 40px;
  }
}

@media (min-width: 769px) and (max-width: 768px) {
  .store-selector {
    height: 16.53333vw;
    width: 100%;
    width: calc(100% - 2.66667vw);
  }
}

@media (min-width: 769px) {
  .store-selector::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #000;
    display: block;
  }
}

@media (min-width: 769px) and (min-width: 769px) {
  .store-selector::after {
    height: 2px;
    left: -180px;
    right: -180px;
  }
}

@media (min-width: 769px) and (max-width: 768px) {
  .store-selector::after {
    left: -1.33333vw;
    right: -1.33333vw;
    height: 2px;
  }
}

@media (min-width: 769px) and (min-width: 769px) {
  .store-selector .vs__selected-options {
    height: 76px;
  }
}

@media (min-width: 769px) and (max-width: 768px) {
  .store-selector .vs__selected-options {
    height: 16vw;
  }
}

@media (min-width: 769px) {
  .store-selector .vs__selected {
    line-height: 76px;
    text-align: center;
    font-weight: bold;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    color: #000;
    font-size: 18px;
  }
}

@media (min-width: 769px) and (max-width: 768px) {
  .store-selector .vs__selected {
    line-height: 16vw;
    background-color: #f99;
    font-size: 3.2vw;
  }
}

@media (min-width: 769px) {
  .store-selector .vs__dropdown-toggle {
    padding: 0;
    box-sizing: border-box;
  }
  .store-selector .vs__dropdown-menu {
    padding-bottom: 0;
    padding-top: 0;
    margin: 0;
  }
  .store-selector .vs__dropdown-option {
    border-top: 2px solid #000;
    line-height: 76px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
  }
  .store-selector .vs__actions {
    position: absolute;
    right: 0;
    height: 78px;
    padding: 0;
    right: 24px;
  }
  .store-selector .vs__open-indicator {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .store-selector {
    margin: 0 auto;
    position: relative;
    height: calc(16vw + 4px);
    width: calc(100% - 5.33333vw);
    margin-bottom: 8vw;
    border-bottom-color: #fff;
  }
  .store-selector::before {
    content: '';
    position: absolute;
    bottom: 0;
    background-color: #000;
    display: block;
    right: -2.66667vw;
    width: calc(2.66667vw + 2px);
    height: 2px;
  }
  .store-selector::after {
    content: '';
    position: absolute;
    bottom: 0;
    background-color: #000;
    display: block;
    left: -2.66667vw;
    width: calc(2.66667vw + 2px);
    height: 2px;
  }
}

@media (max-width: 768px) and (min-width: 769px) {
  .store-selector .vs__selected-options {
    height: 76px;
  }
}

@media (max-width: 768px) and (max-width: 768px) {
  .store-selector .vs__selected-options {
    height: 16vw;
  }
}

@media (max-width: 768px) {
  .store-selector .vs__dropdown-toggle {
    border-bottom-color: #fff;
  }
  .store-selector .vs__selected {
    text-align: center;
    font-weight: bold;
    border: 0;
    padding: 0;
    margin: 0;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
    justify-content: center;
    color: #000;
    line-height: 16vw;
    font-size: 3.2vw;
    background-color: #fff;
  }
  .store-selector .vs__dropdown-toggle {
    padding: 0;
    box-sizing: border-box;
  }
  .store-selector .vs__dropdown-menu {
    padding-bottom: 0;
    padding-top: 0;
    margin: 0;
  }
  .store-selector .vs__dropdown-option {
    border-top: 2px solid #000;
    line-height: 16vw;
    text-align: center;
    font-size: 3.2vw;
    font-weight: bold;
  }
  .store-selector .vs__actions {
    position: absolute;
    right: 0;
    padding: 0;
    width: 4.8vw;
    height: 4.8vw;
    right: 4.66667vw;
    top: 5.06667vw;
  }
  .store-selector .vs__open-indicator {
    width: 4.8vw;
    height: 4.8vw;
  }
  .store-selector .vs__open-indicator svg {
    width: 100%;
  }
}

body {
  font-family: 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, sans-serif;
  font-feature-settings: 'palt';
  -webkit-font-smoothing: antialiased;
}

a {
  color: #0000ff;
  text-decoration: none;
}

@media (min-width: 769px) {
  .container {
    width: 1020px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 8vw;
  }
}

#header {
  box-sizing: content-box;
  padding: 0;
  text-align: center;
}

@media (min-width: 769px) {
  #header {
    height: 86px;
    border-bottom: 2px solid #f5f5f5;
  }
}

@media (max-width: 768px) {
  #header {
    height: 18.53333vw;
    border-bottom: 2px solid #f5f5f5;
  }
}

#header .header__logo {
  position: absolute;
}

@media (min-width: 769px) {
  #header .header__logo {
    width: 156px;
    height: 24px;
    left: 30px;
    top: 31px;
  }
}

@media (max-width: 768px) {
  #header .header__logo {
    left: 5.33333vw;
    top: 6.66667vw;
    width: 34.8vw;
    height: 5.33333vw;
  }
}

#header .header__title {
  padding: 0;
}

@media (min-width: 769px) {
  #header .header__title {
    padding-top: 15px;
    display: inline-block;
  }
}

@media (max-width: 768px) {
  #header .header__title {
    position: absolute;
    top: 3.86667vw;
    right: 5.2vw;
  }
  #header .header__title img {
    width: 22.13333vw;
    height: 10.66667vw;
  }
}

#header .header__title img {
  vertical-align: top;
}

@media (min-width: 769px) {
  .step {
    padding: 120px 0;
    border-bottom: 1px solid #f5f5f5;
  }
}

@media (max-width: 768px) {
  .step {
    padding: 19.06667vw 0 24vw;
    border-bottom: 0.53333vw solid #f5f5f5;
    margin-bottom: 4.8vw;
  }
}

.step__header {
  line-height: 1;
}

@media (min-width: 769px) {
  .step__header {
    margin-bottom: 71px;
  }
}

@media (max-width: 768px) {
  .step__header {
    margin-bottom: 11.06667vw;
  }
}

.step__title {
  text-align: center;
  line-height: 1;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-feature-settings: 'palt';
  font-smoothing: antialiased;
}

@media (min-width: 769px) {
  .step__title {
    margin-bottom: 53px;
  }
}

@media (max-width: 768px) {
  .step__title {
    margin-bottom: 13.6vw;
  }
}

.step__title--label {
  display: block;
}

@media (min-width: 769px) {
  .step__title--label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .step__title--label {
    margin-bottom: 0.8vw;
    font-size: 2.66667vw;
  }
}

.step__title--number {
  display: block;
}

@media (min-width: 769px) {
  .step__title--number {
    font-size: 60px;
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .step__title--number {
    font-size: 8vw;
    margin-bottom: -2.66667vw;
  }
}

.step__subtitle {
  text-align: center;
}

@media (min-width: 769px) {
  .step__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .step__subtitle {
    font-size: 4.8vw;
  }
}

@media (min-width: 769px) {
  .step__subtitle {
    margin-bottom: 18px;
  }
}

@media (max-width: 768px) {
  .step__subtitle {
    margin-bottom: 2.4vw;
  }
}

.step__lead {
  text-align: center;
  font-weight: bold;
}

@media (min-width: 769px) {
  .step__lead {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .step__lead {
    font-size: 3.2vw;
  }
}

.step__lead em {
  color: #ff0042;
  font-style: normal;
}

@media (max-width: 768px) {
  .step__lead {
    line-height: 1.5;
  }
}

@media (min-width: 769px) {
  .step__lead br {
    display: none;
  }
}

.step__lead small {
  color: #ff0042;
  display: block;
}

@media (min-width: 769px) {
  .step__lead small {
    margin-top: 10px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .step__lead small {
    display: block;
    font-size: 2.93333vw;
    margin-top: 0.66667vw;
  }
}

@media (min-width: 769px) {
  .color {
    display: flex;
    margin-left: -30px;
    margin-right: -30px;
  }
}

.color__image {
  background-color: #f5f5f5;
  position: relative;
}

@media (min-width: 769px) {
  .color__image {
    width: 480px;
    height: 480px;
  }
}

@media (max-width: 768px) {
  .color__image {
    width: 84vw;
    height: 84vw;
  }
}

.color__image img {
  position: absolute;
  will-change: opacity;
}

@media (min-width: 769px) {
  .color__image img {
    width: 480px;
    height: 480px;
  }
}

@media (max-width: 768px) {
  .color__image img {
    width: 84vw;
    height: 84vw;
  }
}

.color__text {
  background: #f5f5f5;
}

.color__text::after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 769px) {
  .color__text {
    padding: 0px 35px;
    height: 80px;
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  .color__text {
    height: 14vw;
    line-height: 14vw;
    padding: 0 5.2vw;
  }
}

.color__text dt {
  float: left;
  font-weight: bold;
}

@media (min-width: 769px) {
  .color__text dt {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .color__text dt {
    font-size: 3.2vw;
  }
}

.color__text dd {
  float: right;
  letter-spacing: 0.05em;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-feature-settings: 'palt';
  font-smoothing: antialiased;
}

@media (min-width: 769px) {
  .color__text dd {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .color__text dd {
    font-size: 3.73333vw;
  }
}

@media (min-width: 769px) {
  .color__column {
    width: 480px;
    margin: 0 30px;
  }
}

@media (max-width: 768px) {
  .color__column {
    margin-bottom: 8vw;
  }
  .color__column:last-of-type {
    margin-bottom: 0;
  }
}

.color__column input {
  display: none;
}

.color__column input + span {
  display: block;
  cursor: pointer;
  position: relative;
}

@media (min-width: 769px) {
  .color__column input + span {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 768px) {
  .color__column input + span {
    width: 14vw;
    height: 14vw;
  }
}

.color__column input + span:after {
  content: '';
  display: block;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  background: url("../images/check.svg") no-repeat center/contain;
  opacity: 0;
}

@media (min-width: 769px) {
  .color__column input + span:after {
    height: 24px;
    width: 24px;
    margin-left: -12px;
    margin-top: -12px;
  }
}

@media (max-width: 768px) {
  .color__column input + span:after {
    width: 4.8vw;
    height: 4.8vw;
    margin-top: -2.4vw;
    margin-left: -2.4vw;
  }
}

.color__column input:checked + span:after {
  transform: scale(1);
  opacity: 1;
}

.color__column ul {
  display: flex;
  list-style: none;
}

.color__column .TW input + span {
  background-color: #887d66;
}

.color__column .UM input + span {
  background-color: #412a29;
}

.color__column .BK input + span {
  background-color: #000000;
}

.color__column .NV input + span {
  background-color: #202235;
}

.color__column .FK input + span {
  background-color: #454832;
}

.color__column .GR input + span {
  background-color: #2b2b2d;
}

.tab {
  display: flex;
}

@media (min-width: 769px) {
  .tab {
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .tab {
    margin-bottom: 8vw;
  }
}

.tab__list {
  width: 50%;
  list-style: none;
  position: relative;
}

@media (min-width: 769px) {
  .tab__list {
    padding: 10px 10px 0;
  }
}

@media (max-width: 768px) {
  .tab__list {
    padding: 0 1.33333vw 0;
  }
}

@media (min-width: 769px) {
  .tab__list:first-of-type {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .tab__list:first-of-type {
    padding-left: 2.66667vw;
  }
}

@media (min-width: 769px) {
  .tab__list:last-of-type {
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .tab__list:last-of-type {
    padding-right: 2.66667vw;
  }
}

.tab__list:after {
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  background: #000;
  left: 0;
  bottom: 0;
}

@media (min-width: 769px) {
  .tab__list:after {
    height: 2px;
  }
}

@media (max-width: 768px) {
  .tab__list:after {
    height: 0.53333vw;
  }
}

.tab__list--input {
  display: none;
}

.tab__list--input:checked + .tab__list--label {
  background: #fff;
  color: #000;
}

@media (min-width: 769px) {
  .tab__list--input:checked + .tab__list--label {
    border: 2px solid #000;
  }
}

@media (max-width: 768px) {
  .tab__list--input:checked + .tab__list--label {
    border: 2px solid #000;
  }
}

.tab__list--input:checked + .tab__list--label:before {
  content: '';
  display: block;
  width: 100%;
  background: #fff;
  z-index: 5;
  left: 0;
  position: absolute;
}

@media (min-width: 769px) {
  .tab__list--input:checked + .tab__list--label:before {
    height: 2px;
  }
}

@media (max-width: 768px) {
  .tab__list--input:checked + .tab__list--label:before {
    height: 1.46667vw;
  }
}

@media (min-width: 769px) {
  .tab__list--input:checked + .tab__list--label:before {
    bottom: -2px;
  }
}

@media (max-width: 768px) {
  .tab__list--input:checked + .tab__list--label:before {
    bottom: -0.8vw;
  }
}

.tab__list--input:checked + .tab__list--label:after {
  opacity: 1;
}

.tab__list--label {
  cursor: pointer;
  display: block;
  background: #f5f5f5;
  position: relative;
  font-weight: bold;
  color: #9c9c9c;
  position: relative;
  transition: color 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition-property: color background-color, border;
}

@media (min-width: 769px) {
  .tab__list--label {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .tab__list--label {
    font-size: 3.2vw;
  }
}

@media (min-width: 769px) {
  .tab__list--label {
    padding: 0 40px;
    line-height: 78px;
    border: 2px solid transparent;
  }
}

@media (max-width: 768px) {
  .tab__list--label {
    padding: 0 4.66667vw;
    padding-top: 5.06667vw;
    border: 2px solid transparent;
    height: 16.53333vw;
  }
}

.tab__list--label:after {
  content: '';
  display: block;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 50%;
  background: url("../images/check_black.svg") no-repeat center/contain;
  opacity: 0.1;
  transition: opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (min-width: 769px) {
  .tab__list--label:after {
    width: 24px;
  }
}

@media (max-width: 768px) {
  .tab__list--label:after {
    width: 4.8vw;
  }
}

@media (min-width: 769px) {
  .tab__list--label:after {
    height: 24px;
  }
}

@media (max-width: 768px) {
  .tab__list--label:after {
    height: 4.8vw;
  }
}

@media (min-width: 769px) {
  .tab__list--label:after {
    margin-top: -12px;
    right: 38px;
  }
}

@media (max-width: 768px) {
  .tab__list--label:after {
    margin-top: -2.66667vw;
    right: 4.8vw;
  }
}

.timetable {
  position: relative;
  overflow: hidden;
}

@media (min-width: 769px) {
  .timetable {
    margin-left: -88px;
    margin-right: -88px;
    padding-left: 88px;
    padding-right: 88px;
  }
}

.timetable .swiper-wrapper {
  display: flex;
}

.timetable .swiper-slide {
  flex-shrink: 0;
  height: auto;
}

@media (min-width: 769px) {
  .timetable .swiper-slide {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .timetable .swiper-slide {
    width: 48vw;
  }
}

.timetable__clip {
  overflow: hidden;
}

.timetable__item {
  background: #f5f5f5;
}

@media (min-width: 769px) {
  .timetable__item {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .timetable__item {
    width: 48vw;
  }
}

@media (min-width: 769px) {
  .timetable__item {
    padding: 29px 20px 40px;
  }
}

@media (max-width: 768px) {
  .timetable__item {
    padding: 5.86667vw 5.33333vw 8vw;
  }
}

.timetable__item:last-of-type {
  margin-right: 0;
}

.timetable__date {
  line-height: 1;
  text-align: center;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-feature-settings: 'palt';
  font-smoothing: antialiased;
}

@media (min-width: 769px) {
  .timetable__date {
    height: 57px;
  }
}

@media (max-width: 768px) {
  .timetable__date {
    height: 11.33333vw;
  }
}

@media (min-width: 769px) {
  .timetable__date {
    margin-bottom: 42px;
  }
}

@media (max-width: 768px) {
  .timetable__date {
    margin-bottom: 8vw;
  }
}

.timetable__date--year {
  display: block;
}

@media (min-width: 769px) {
  .timetable__date--year {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .timetable__date--year {
    font-size: 2.66667vw;
  }
}

@media (min-width: 769px) {
  .timetable__date--year {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .timetable__date--year {
    margin-bottom: 2.26667vw;
  }
}

@media (min-width: 769px) {
  .timetable__date--year {
    margin-top: -2px;
  }
}

@media (max-width: 768px) {
  .timetable__date--year {
    margin-top: 0vw;
  }
}

.timetable__date--day {
  display: block;
}

@media (min-width: 769px) {
  .timetable__date--day {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .timetable__date--day {
    font-size: 4.8vw;
  }
}

.timetable__date--week {
  display: block;
}

@media (min-width: 769px) {
  .timetable__date--week {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .timetable__date--week {
    font-size: 1.86667vw;
  }
}

@media (min-width: 769px) {
  .timetable__date--week {
    margin-top: 5px;
  }
}

@media (max-width: 768px) {
  .timetable__date--week {
    margin-top: 0.53333vw;
  }
}

.timetable__list {
  list-style: none;
}

.timetable__list li {
  background: #fff;
}

@media (min-width: 769px) {
  .timetable__list li {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .timetable__list li {
    height: 16vw;
  }
}

@media (min-width: 769px) {
  .timetable__list li {
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  .timetable__list li {
    line-height: 16vw;
  }
}

@media (min-width: 769px) {
  .timetable__list li {
    margin-bottom: 2px;
  }
}

@media (max-width: 768px) {
  .timetable__list li {
    margin-bottom: 0.53333vw;
  }
}

.timetable__list li label {
  display: block;
  cursor: pointer;
  position: relative;
}

.timetable__list li label:after {
  content: '';
  display: block;
  height: 24px;
  width: 24px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  background: url("../images/check_black.svg") no-repeat center/contain;
  opacity: 0.1;
}

@media (min-width: 769px) {
  .timetable__list li label:after {
    right: 30px;
  }
}

@media (max-width: 768px) {
  .timetable__list li label:after {
    right: 5.33333vw;
  }
}

.timetable__list li label span {
  display: block;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-feature-settings: 'palt';
  font-smoothing: antialiased;
  font-weight: bold;
}

@media (min-width: 769px) {
  .timetable__list li label span {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .timetable__list li label span {
    font-size: 3.73333vw;
  }
}

@media (min-width: 769px) {
  .timetable__list li label span {
    padding: 0 30px 0 29px;
  }
}

@media (max-width: 768px) {
  .timetable__list li label span {
    padding: 0 5.33333vw;
  }
}

.timetable__list li input {
  display: none;
}

.timetable__list li input:checked + span {
  background: #000;
  color: #fff;
  position: relative;
}

.timetable__list li input:checked + span:after {
  content: '';
  display: block;
  height: 24px;
  width: 24px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  background: url("../images/check.svg") no-repeat center/contain;
}

@media (min-width: 769px) {
  .timetable__list li input:checked + span:after {
    right: 30px;
  }
}

@media (max-width: 768px) {
  .timetable__list li input:checked + span:after {
    right: 5.33333vw;
  }
}

.timetable__list li input:disabled + span {
  cursor: default;
  background: #fff;
  color: #ddd;
  z-index: 2;
  position: relative;
}

.timetable__list li input:disabled + span:after {
  content: none;
}

.timetable__list li input:disabled + span:after {
  content: '';
  display: block;
  height: 24px;
  width: 24px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  top: 50%;
  margin-top: -12px;
  background: url("../images/check_black.svg") no-repeat center/contain;
  opacity: .1;
}

@media (min-width: 769px) {
  .timetable__list li input:disabled + span:after {
    right: 30px;
  }
}

@media (max-width: 768px) {
  .timetable__list li input:disabled + span:after {
    right: 5.33333vw;
  }
}

.timetable__list li input.disabled + span {
  cursor: default;
  color: #ddd;
  z-index: 2;
  position: relative;
}

.timetable__list li input.disabled + span:after {
  content: none;
}

@media (min-width: 769px) {
  .timetable__arrow {
    position: absolute;
    width: 88px;
    top: 0;
    bottom: 0;
    background: #fff;
    z-index: 5;
  }
  .timetable__arrow:focus {
    outline: 0;
  }
  .timetable__arrow.swiper-button-disabled {
    cursor: default;
  }
  .timetable__arrow.swiper-button-disabled:after {
    cursor: default;
    opacity: 0;
  }
  .timetable__arrow.swiper-button-disabled:hover {
    display: none;
  }
  .timetable__arrow:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 88px;
    bottom: 0;
  }
  .timetable__arrow:after {
    pointer-events: auto;
    cursor: pointer;
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -24px;
    background-size: contain;
    background: #000;
    width: 48px;
    height: 48px;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
  }
  .timetable__arrow:hover:after {
    opacity: 0.5;
  }
  .timetable__arrow--prev {
    left: 0px;
  }
  .timetable__arrow--prev:after {
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20%0A%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20width%3D%229px%22%20height%3D%2214px%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22rgb(255%2C%20255%2C%20255)%22%0A%20d%3D%22M7.019%2C-0.003%20C6.763%2C-0.003%206.507%2C0.095%206.312%2C0.290%20L0.310%2C6.294%20C-0.081%2C6.685%20-0.081%2C7.318%200.310%2C7.709%20L6.312%2C13.712%20C6.703%2C14.103%207.336%2C14.103%207.727%2C13.712%20C8.117%2C13.321%208.117%2C12.688%207.727%2C12.298%20L2.432%2C7.001%20L7.727%2C1.705%20C8.117%2C1.314%208.117%2C0.681%207.727%2C0.290%20C7.531%2C0.095%207.275%2C-0.003%207.019%2C-0.003%20Z%22%2F%3E%0A%3C%2Fsvg%3E");
  }
  .timetable__arrow--next {
    right: 0;
  }
  .timetable__arrow--next:after {
    right: 0;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20%0A%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20width%3D%228px%22%20height%3D%2214px%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22rgb(255%2C%20255%2C%20255)%22%0A%20d%3D%22M1.118%2C13.972%20C1.369%2C13.972%201.620%2C13.875%201.811%2C13.681%20L7.696%2C7.717%20C8.079%2C7.329%208.079%2C6.700%207.696%2C6.312%20L1.811%2C0.348%20C1.428%2C-0.040%200.807%2C-0.040%200.424%2C0.348%20C0.041%2C0.736%200.041%2C1.365%200.424%2C1.754%20L5.616%2C7.015%20L0.424%2C12.275%20C0.041%2C12.664%200.041%2C13.293%200.424%2C13.681%20C0.616%2C13.875%200.867%2C13.972%201.118%2C13.972%20Z%22%2F%3E%0A%3C%2Fsvg%3E");
  }
}

@media (max-width: 768px) {
  .timetable__arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .form {
    margin-top: -0.8vw;
  }
}

.form input[type="color"], .form input[type="date"], .form input[type="datetime"], .form input[type="datetime-local"], .form input[type="email"], .form input[type="month"], .form input[type="number"], .form input[type="password"], .form input[type="search"], .form input[type="tel"], .form input[type="text"], .form input[type="time"], .form input[type="url"], .form input[type="week"], .form input:not([type]), .form textarea {
  background-color: #f5f5f5;
  display: block;
  width: 100%;
  border-radius: 0;
}

@media (min-width: 769px) {
  .form input[type="color"], .form input[type="date"], .form input[type="datetime"], .form input[type="datetime-local"], .form input[type="email"], .form input[type="month"], .form input[type="number"], .form input[type="password"], .form input[type="search"], .form input[type="tel"], .form input[type="text"], .form input[type="time"], .form input[type="url"], .form input[type="week"], .form input:not([type]), .form textarea {
    padding: 28px 40px;
  }
}

@media (max-width: 768px) {
  .form input[type="color"], .form input[type="date"], .form input[type="datetime"], .form input[type="datetime-local"], .form input[type="email"], .form input[type="month"], .form input[type="number"], .form input[type="password"], .form input[type="search"], .form input[type="tel"], .form input[type="text"], .form input[type="time"], .form input[type="url"], .form input[type="week"], .form input:not([type]), .form textarea {
    font-size: 3.2vw;
    padding: 5.46667vw 4.66667vw;
  }
}

.form input[type="color"]::-webkit-input-placeholder, .form input[type="date"]::-webkit-input-placeholder, .form input[type="datetime"]::-webkit-input-placeholder, .form input[type="datetime-local"]::-webkit-input-placeholder, .form input[type="email"]::-webkit-input-placeholder, .form input[type="month"]::-webkit-input-placeholder, .form input[type="number"]::-webkit-input-placeholder, .form input[type="password"]::-webkit-input-placeholder, .form input[type="search"]::-webkit-input-placeholder, .form input[type="tel"]::-webkit-input-placeholder, .form input[type="text"]::-webkit-input-placeholder, .form input[type="time"]::-webkit-input-placeholder, .form input[type="url"]::-webkit-input-placeholder, .form input[type="week"]::-webkit-input-placeholder, .form input:not([type])::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
  color: #000;
  opacity: 0.5;
}

.form input[type="color"]::-moz-placeholder, .form input[type="date"]::-moz-placeholder, .form input[type="datetime"]::-moz-placeholder, .form input[type="datetime-local"]::-moz-placeholder, .form input[type="email"]::-moz-placeholder, .form input[type="month"]::-moz-placeholder, .form input[type="number"]::-moz-placeholder, .form input[type="password"]::-moz-placeholder, .form input[type="search"]::-moz-placeholder, .form input[type="tel"]::-moz-placeholder, .form input[type="text"]::-moz-placeholder, .form input[type="time"]::-moz-placeholder, .form input[type="url"]::-moz-placeholder, .form input[type="week"]::-moz-placeholder, .form input:not([type])::-moz-placeholder, .form textarea::-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.form input[type="color"]:-moz-placeholder, .form input[type="date"]:-moz-placeholder, .form input[type="datetime"]:-moz-placeholder, .form input[type="datetime-local"]:-moz-placeholder, .form input[type="email"]:-moz-placeholder, .form input[type="month"]:-moz-placeholder, .form input[type="number"]:-moz-placeholder, .form input[type="password"]:-moz-placeholder, .form input[type="search"]:-moz-placeholder, .form input[type="tel"]:-moz-placeholder, .form input[type="text"]:-moz-placeholder, .form input[type="time"]:-moz-placeholder, .form input[type="url"]:-moz-placeholder, .form input[type="week"]:-moz-placeholder, .form input:not([type]):-moz-placeholder, .form textarea:-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.form input[type="color"]:-ms-input-placeholder, .form input[type="date"]:-ms-input-placeholder, .form input[type="datetime"]:-ms-input-placeholder, .form input[type="datetime-local"]:-ms-input-placeholder, .form input[type="email"]:-ms-input-placeholder, .form input[type="month"]:-ms-input-placeholder, .form input[type="number"]:-ms-input-placeholder, .form input[type="password"]:-ms-input-placeholder, .form input[type="search"]:-ms-input-placeholder, .form input[type="tel"]:-ms-input-placeholder, .form input[type="text"]:-ms-input-placeholder, .form input[type="time"]:-ms-input-placeholder, .form input[type="url"]:-ms-input-placeholder, .form input[type="week"]:-ms-input-placeholder, .form input:not([type]):-ms-input-placeholder, .form textarea:-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}

.form input {
  font-weight: bold;
}

.form textarea {
  resize: none;
  font-weight: bold;
}

@media (min-width: 769px) {
  .form textarea {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .form textarea {
    height: 48vw;
  }
}

.form .select {
  position: relative;
}

.form .select select {
  cursor: pointer;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  background-color: #f5f5f5;
  border-radius: 0;
  display: block;
  width: 100%;
}

@media (min-width: 769px) {
  .form .select select {
    padding: 28px 40px;
  }
}

@media (max-width: 768px) {
  .form .select select {
    font-size: 3.2vw;
    padding: 6vw 4.66667vw;
  }
}

.form .select select::-webkit-input-placeholder {
  color: #000;
  opacity: 0.5;
}

.form .select select::-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.form .select select:-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.form .select select:-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}

.form .select:after {
  content: '';
  pointer-events: none;
  display: block;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20%0A%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20width%3D%2210px%22%20height%3D%2210px%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22rgb(0%2C%200%2C%200)%22%0A%20d%3D%22M9.710%2C5.704%20L5.705%2C9.696%20C5.613%2C9.789%205.502%2C9.862%205.380%2C9.912%20C5.135%2C10.013%204.859%2C10.013%204.614%2C9.912%20C4.491%2C9.862%204.381%2C9.788%204.288%2C9.696%20L0.284%2C5.704%20C0.088%2C5.509%20-0.010%2C5.254%20-0.010%2C4.999%20C-0.010%2C4.743%200.088%2C4.488%200.284%2C4.293%20C0.675%2C3.903%201.308%2C3.903%201.700%2C4.293%20L3.996%2C6.582%20L3.996%2C1.006%20C3.996%2C0.455%204.444%2C0.008%204.997%2C0.008%20C5.550%2C0.008%205.998%2C0.455%205.998%2C1.006%20L5.998%2C6.582%20L8.294%2C4.293%20C8.685%2C3.903%209.319%2C3.903%209.710%2C4.293%20C10.101%2C4.683%2010.101%2C5.314%209.710%2C5.704%20Z%22%2F%3E%0A%3C%2Fsvg%3E");
  background-position: center;
}

@media (min-width: 769px) {
  .form .select:after {
    width: 40px;
  }
}

@media (max-width: 768px) {
  .form .select:after {
    width: 8vw;
  }
}

@media (min-width: 769px) {
  .form .select:after {
    height: 40px;
  }
}

@media (max-width: 768px) {
  .form .select:after {
    height: 8vw;
  }
}

@media (min-width: 769px) {
  .form .select:after {
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  .form .select:after {
    margin-top: -4vw;
  }
}

@media (min-width: 769px) {
  .form .select:after {
    right: 20px;
  }
}

@media (max-width: 768px) {
  .form .select:after {
    right: 4vw;
  }
}

.form .select .placeholder {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
  pointer-events: none;
}

@media (min-width: 769px) {
  .form .select .placeholder {
    top: 28px;
  }
}

@media (max-width: 768px) {
  .form .select .placeholder {
    top: 6.4vw;
  }
}

@media (min-width: 769px) {
  .form .select .placeholder {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .form .select .placeholder {
    font-size: 3.2vw;
  }
}

@media (min-width: 769px) {
  .form .select .placeholder {
    left: 40px;
  }
}

@media (max-width: 768px) {
  .form .select .placeholder {
    left: 5.06667vw;
  }
}

@media (min-width: 769px) {
  .form__group {
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .form__group {
    margin-bottom: 6vw;
  }
}

.form__group:last-of-type {
  margin-bottom: 0;
}

.form__group dt {
  position: relative;
  font-weight: bold;
}

@media (min-width: 769px) {
  .form__group dt {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .form__group dt {
    margin-bottom: 2.66667vw;
  }
}

@media (min-width: 769px) {
  .form__group dt {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .form__group dt {
    font-size: 2.66667vw;
  }
}

.form__group dt.required:after {
  content: '＊';
  color: #ff0042;
}

@media (max-width: 768px) {
  .form__group dt.has_notice {
    padding-bottom: 9.33333vw;
  }
}

.form__group dt small {
  opacity: 0.5;
  display: inline-block;
  position: absolute;
}

@media (min-width: 769px) {
  .form__group dt small {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .form__group dt small {
    font-size: 2.66667vw;
  }
}

@media (min-width: 769px) {
  .form__group dt small {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .form__group dt small {
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 769px) {
  .form__row {
    display: flex;
  }
}

@media (min-width: 769px) {
  .form__column {
    width: calc(50% - 30px);
    margin: 0 30px;
  }
  .form__column:first-of-type {
    margin-left: 0;
  }
  .form__column:last-of-type {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .form__column {
    margin-bottom: 7.33333vw;
  }
}

.form__notice {
  list-style: none;
  color: #a3a3a3;
  font-weight: bold;
}

@media (min-width: 769px) {
  .form__notice {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .form__notice {
    font-size: 2.66667vw;
  }
}

@media (max-width: 768px) {
  .form__notice {
    margin-top: 15.06667vw;
    line-height: 4.93333vw;
    margin-bottom: -10.93333vw;
  }
}

@media (min-width: 769px) {
  .form__notice li {
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .form__notice li {
    margin-bottom: 0vw;
  }
}

.form__notice li:last-of-type {
  margin-bottom: 0;
}

.form__notice li:before {
  content: '※';
}

.agreement {
  font-weight: bold;
  line-height: 2;
  border-bottom: 0;
}

@media (min-width: 769px) {
  .agreement {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .agreement {
    font-size: 2.66667vw;
  }
}

@media (min-width: 769px) {
  .agreement {
    text-align: center;
    letter-spacing: 0;
  }
  .agreement p {
    margin-bottom: 28px;
  }
  .agreement p:last-of-type {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .agreement {
    padding-bottom: 19.2vw;
    margin-top: -0.53333vw;
    line-height: 4.26667vw;
  }
  .agreement p {
    margin-bottom: 4.53333vw;
  }
}

@media (min-width: 769px) {
  .agreement__text {
    margin-bottom: 53px;
  }
}

@media (max-width: 768px) {
  .agreement__text {
    margin-bottom: 10.66667vw;
  }
}

.agreement__button {
  background: #f5f5f5;
  position: relative;
}

@media (min-width: 769px) {
  .agreement__button {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .agreement__button {
    height: 16vw;
  }
}

@media (min-width: 769px) {
  .agreement__button {
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  .agreement__button {
    line-height: 4.66667vw;
  }
}

@media (max-width: 768px) {
  .agreement__button {
    padding: 3.86667vw 5.33333vw;
  }
}

.agreement__button label {
  display: block;
}

.agreement__button span {
  cursor: pointer;
  display: block;
}

.agreement__button span:after {
  pointer-events: none;
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  opacity: 0.1;
  background: url("../images/check.svg") no-repeat center/contain #000;
}

@media (min-width: 769px) {
  .agreement__button span:after {
    height: 80px;
  }
}

@media (max-width: 768px) {
  .agreement__button span:after {
    height: 16vw;
  }
}

@media (min-width: 769px) {
  .agreement__button span:after {
    width: 80px;
  }
}

@media (max-width: 768px) {
  .agreement__button span:after {
    width: 16vw;
  }
}

@media (min-width: 769px) {
  .agreement__button span:after {
    background-size: 24px 24px;
  }
}

@media (max-width: 768px) {
  .agreement__button span:after {
    background-size: 4.8vw 4.8vw;
  }
}

.agreement__button input {
  display: none;
}

.agreement__button input:checked + span:after {
  opacity: 1;
  background-color: #000;
}

#submit {
  background-color: #f5f5f5;
  font-size: 0;
  text-align: center;
}

#submit .submit__erros {
  color: #ff0042;
  font-weight: bold;
}

@media (min-width: 769px) {
  #submit .submit__erros {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #submit .submit__erros {
    font-size: 2.66667vw;
  }
}

@media (min-width: 769px) {
  #submit .submit__erros {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  #submit .submit__erros {
    margin-bottom: 4vw;
  }
}

#submit .submit__erros span {
  display: block;
}

@media (min-width: 769px) {
  #submit {
    padding: 90px 0;
  }
}

@media (max-width: 768px) {
  #submit {
    padding: 16vw 0;
  }
}

#submit button, #submit a {
  background-color: #fff;
  position: relative;
  font-weight: bold;
  display: inline-block;
  color: #000;
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-feature-settings: 'palt';
  font-smoothing: antialiased;
}

@media (min-width: 769px) {
  #submit button, #submit a {
    height: 80px;
  }
}

@media (max-width: 768px) {
  #submit button, #submit a {
    height: 16vw;
  }
}

@media (min-width: 769px) {
  #submit button, #submit a {
    width: 200px;
  }
}

@media (max-width: 768px) {
  #submit button, #submit a {
    width: 38vw;
  }
}

@media (min-width: 769px) {
  #submit button, #submit a {
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  #submit button, #submit a {
    line-height: 16vw;
  }
}

@media (min-width: 769px) {
  #submit button, #submit a {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #submit button, #submit a {
    font-size: 3.2vw;
  }
}

@media (min-width: 769px) {
  #submit button, #submit a {
    border-radius: 20px;
    padding: 0 40px;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  #submit button, #submit a {
    border-radius: 4vw;
    padding: 0 8vw;
  }
}

#submit button.submit__back, #submit a.submit__back {
  text-align: right;
}

@media (min-width: 769px) {
  #submit button.submit__back, #submit a.submit__back {
    width: 200px;
  }
  #submit button.submit__back:hover:after, #submit a.submit__back:hover:after {
    border-color: rgba(0, 0, 0, .2);
  }
}

#submit button.submit__back:disabled, #submit a.submit__back:disabled {
  color: rgba(0, 0, 0, .25);
  pointer-events: none;
}

#submit button.submit__back:disabled::after, #submit a.submit__back:disabled::after {
  opacity: 0.25;
}

@media (max-width: 768px) {
  #submit button.submit__back, #submit a.submit__back {
    margin-right: 8vw;
  }
}

#submit button.submit__back:after, #submit a.submit__back:after {
  content: '';
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20%0A%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20width%3D%2211px%22%20height%3D%2210px%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22rgb(0%2C%200%2C%200)%22%0A%20d%3D%22M9.063%2C6.011%20L3.522%2C6.011%20L5.796%2C8.285%20C6.184%2C8.673%206.184%2C9.300%205.796%2C9.688%20C5.603%2C9.882%205.349%2C9.978%205.095%2C9.978%20C4.841%2C9.978%204.587%2C9.882%204.394%2C9.688%20L0.426%2C5.721%20C0.335%2C5.629%200.262%2C5.519%200.212%2C5.398%20C0.112%2C5.155%200.112%2C4.882%200.212%2C4.640%20C0.262%2C4.518%200.335%2C4.409%200.426%2C4.317%20L4.394%2C0.350%20C4.781%2C-0.038%205.409%2C-0.038%205.796%2C0.350%20C6.184%2C0.737%206.184%2C1.365%205.796%2C1.753%20L3.522%2C4.027%20L9.063%2C4.027%20C9.611%2C4.027%2010.055%2C4.471%2010.055%2C5.019%20C10.055%2C5.567%209.611%2C6.011%209.063%2C6.011%20Z%22%2F%3E%0A%3C%2Fsvg%3E");
  background-position: center;
  position: absolute;
  top: 50%;
  border-radius: 50%;
}

@media (min-width: 769px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    left: 20px;
  }
}

@media (max-width: 768px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    left: 4vw;
  }
}

@media (min-width: 769px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    width: 40px;
  }
}

@media (max-width: 768px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    width: 8vw;
  }
}

@media (min-width: 769px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    height: 40px;
  }
}

@media (max-width: 768px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    height: 8vw;
  }
}

@media (min-width: 769px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    margin-top: -4vw;
  }
}

@media (min-width: 769px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    background-size: 11px auto;
    border: 1px solid rgba(0, 0, 0, .05);
  }
}

@media (max-width: 768px) {
  #submit button.submit__back:after, #submit a.submit__back:after {
    background-size: 2.4vw auto;
    border: 0.4vw solid rgba(0, 0, 0, .05);
  }
}

#submit button.submit__next, #submit a.submit__next {
  background-color: #0000ff;
  color: #fff;
  text-align: left;
}

@media (min-width: 769px) {
  #submit button.submit__next, #submit a.submit__next {
    width: 360px;
  }
  #submit button.submit__next:hover:after, #submit a.submit__next:hover:after {
    border-color: #fff;
  }
}

#submit button.submit__next:disabled, #submit a.submit__next:disabled {
  pointer-events: none;
  opacity: 0.1;
  background-color: #000;
}

#submit button.submit__next:after, #submit a.submit__next:after {
  content: '';
  display: block;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20%0A%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%0A%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%0A%20width%3D%2211px%22%20height%3D%2210px%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20%20fill%3D%22rgb(255%2C%20255%2C%20255)%22%0A%20d%3D%22M10.788%2C4.640%20C10.888%2C4.882%2010.888%2C5.155%2010.788%2C5.398%20C10.738%2C5.519%2010.665%2C5.629%2010.574%2C5.721%20L6.606%2C9.688%20C6.413%2C9.882%206.159%2C9.978%205.905%2C9.978%20C5.651%2C9.978%205.397%2C9.882%205.204%2C9.688%20C4.816%2C9.300%204.816%2C8.673%205.204%2C8.285%20L7.478%2C6.011%20L1.937%2C6.011%20C1.389%2C6.011%200.945%2C5.567%200.945%2C5.019%20C0.945%2C4.471%201.389%2C4.027%201.937%2C4.027%20L7.478%2C4.027%20L5.204%2C1.753%20C4.816%2C1.365%204.816%2C0.737%205.204%2C0.350%20C5.591%2C-0.038%206.219%2C-0.038%206.606%2C0.350%20L10.574%2C4.317%20C10.665%2C4.409%2010.738%2C4.518%2010.788%2C4.640%20Z%22%2F%3E%0A%3C%2Fsvg%3E");
  background-position: center;
  position: absolute;
  top: 50%;
  border-radius: 50%;
}

@media (min-width: 769px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    right: 20px;
  }
}

@media (max-width: 768px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    right: 4vw;
  }
}

@media (min-width: 769px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    width: 40px;
  }
}

@media (max-width: 768px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    width: 8vw;
  }
}

@media (min-width: 769px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    height: 40px;
  }
}

@media (max-width: 768px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    height: 8vw;
  }
}

@media (min-width: 769px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    margin-top: -4vw;
  }
}

@media (min-width: 769px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    background-size: 11px auto;
    border: 1px solid rgba(255, 255, 255, .3);
  }
}

@media (max-width: 768px) {
  #submit button.submit__next:after, #submit a.submit__next:after {
    background-size: 2.4vw auto;
    border: 0.4vw solid rgba(255, 255, 255, .3);
  }
}

#submit .submit__sent {
  line-height: 2;
  border-bottom: 0;
  font-weight: bold;
  color: #ff0042;
}

@media (min-width: 769px) {
  #submit .submit__sent {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #submit .submit__sent {
    font-size: 2.66667vw;
  }
}

@media (min-width: 769px) {
  #submit .submit__sent {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  #submit .submit__sent {
    margin-top: 5.33333vw;
  }
}

@media (min-width: 769px) {
  #submit .submit__sent {
    margin-bottom: -8px;
  }
}

@media (max-width: 768px) {
  #submit .submit__sent {
    margin-bottom: -1.06667vw;
  }
}

#submit .submit__sent p {
  margin-bottom: .75em;
}

#submit .submit__sent p:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #submit .submit__sent {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}

#submit .submit__error {
  color: #ff0042;
  line-height: 2;
  border-bottom: 0;
  font-weight: bold;
  color: #ff0042;
}

@media (min-width: 769px) {
  #submit .submit__error {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #submit .submit__error {
    font-size: 2.66667vw;
  }
}

@media (min-width: 769px) {
  #submit .submit__error {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  #submit .submit__error {
    margin-top: 5.33333vw;
  }
}

@media (min-width: 769px) {
  #submit .submit__error {
    margin-bottom: -8px;
  }
}

@media (max-width: 768px) {
  #submit .submit__error {
    margin-bottom: -1.06667vw;
  }
}

#confirm .confirm__title {
  text-align: center;
  border-bottom: 2px solid #f5f5f5;
}

@media (min-width: 769px) {
  #confirm .confirm__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__title {
    font-size: 6.4vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__title {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__title {
    padding-top: 22.26667vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__title {
    padding-bottom: 120px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__title {
    padding-bottom: 22.13333vw;
  }
}

#confirm .confirm__subtitle {
  font-weight: bold;
  text-align: center;
}

@media (min-width: 769px) {
  #confirm .confirm__subtitle {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__subtitle {
    font-size: 4.8vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__subtitle {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__subtitle {
    margin-bottom: 6.4vw;
  }
}

#confirm .confirm__block {
  border-bottom: 2px solid #f5f5f5;
}

@media (min-width: 769px) {
  #confirm .confirm__block {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block {
    padding-top: 10.8vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block {
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block {
    padding-bottom: 12vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__row {
    display: flex;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__row .confirm__column {
    width: calc(50% - 30px);
    margin: 0 30px;
  }
  #confirm .confirm__row .confirm__column:first-of-type {
    margin-left: 0;
  }
  #confirm .confirm__row .confirm__column:last-of-type {
    margin-right: 0;
  }
}

#confirm .confirm__column--color {
  background: #f5f5f5;
}

@media (min-width: 769px) {
  #confirm .confirm__column--color {
    line-height: 80px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__column--color {
    line-height: 16vw;
  }
}

#confirm .confirm__column--color dt {
  float: left;
  opacity: .5;
  font-weight: bold;
}

@media (min-width: 769px) {
  #confirm .confirm__column--color dt {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__column--color dt {
    padding-left: 5.33333vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__column--color dt {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__column--color dt {
    font-size: 3.2vw;
  }
}

#confirm .confirm__column--color dd {
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-feature-settings: 'palt';
  font-smoothing: antialiased;
  float: right;
  letter-spacing: .05em;
}

@media (min-width: 769px) {
  #confirm .confirm__column--color dd {
    padding-right: 40px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__column--color dd {
    padding-right: 5.33333vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__column--color dd {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__column--color dd {
    font-size: 3.73333vw;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__column--color {
    margin-bottom: 0.53333vw;
  }
  #confirm .confirm__column--color::after {
    clear: both;
    content: "";
    display: table;
  }
  #confirm .confirm__column--color:last-of-type {
    margin-bottom: 0;
  }
}

#confirm .confirm__block--date {
  font-weight: bold;
}

#confirm .confirm__block--date::after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 769px) {
  #confirm .confirm__block--date__label {
    background: #f5f5f5;
    padding: 0px 35px;
    height: 80px;
    line-height: 80px;
    float: left;
    width: 50%;
    font-size: 14px;
    font-weight: bold;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--date__label {
    display: none;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--date__list {
    float: right;
    display: flex;
    width: 50%;
  }
}

#confirm .confirm__block--date__list dl {
  width: 100%;
}

@media (min-width: 769px) {
  #confirm .confirm__block--date__list dl {
    background: #f5f5f5;
    padding: 0px;
    height: 80px;
    line-height: 80px;
    margin-left: 2px;
  }
  #confirm .confirm__block--date__list dl dt {
    display: none;
  }
  #confirm .confirm__block--date__list dl dd {
    font-family: "Helvetica Neue" , Helvetica, sans-serif;
    font-feature-settings: 'palt';
    font-smoothing: antialiased;
    letter-spacing: .05em;
    text-align: center;
  }
}

@media (min-width: 769px) and (min-width: 769px) {
  #confirm .confirm__block--date__list dl dd {
    font-size: 18px;
  }
}

@media (min-width: 769px) and (max-width: 768px) {
  #confirm .confirm__block--date__list dl dd {
    font-size: 2.66667vw;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--date__list dl {
    background: #f5f5f5;
    line-height: 16vw;
    height: 16vw;
    margin-bottom: 0.53333vw;
  }
  #confirm .confirm__block--date__list dl::after {
    clear: both;
    content: "";
    display: table;
  }
  #confirm .confirm__block--date__list dl:last-of-type {
    margin-bottom: 0;
  }
  #confirm .confirm__block--date__list dl dt {
    float: left;
    padding-left: 5.33333vw;
    font-size: 3.2vw;
    font-weight: bold;
  }
  #confirm .confirm__block--date__list dl dd {
    float: right;
    padding-right: 5.33333vw;
    font-family: "Helvetica Neue" , Helvetica, sans-serif;
    font-feature-settings: 'palt';
    font-smoothing: antialiased;
    font-size: 3.73333vw;
    letter-spacing: .05em;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--information {
    padding-bottom: 120px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information {
    padding-bottom: 24vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--information .confirm__row {
    display: flex;
  }
}

#confirm .confirm__block--information > dl:last-of-type {
  margin-bottom: 0;
}

#confirm .confirm__block--information dl {
  background: #f5f5f5;
}

@media (min-width: 769px) {
  #confirm .confirm__block--information dl {
    margin-bottom: 2px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information dl {
    margin-bottom: 0.53333vw;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information dl {
    padding: 4.26667vw 5.33333vw 5.06667vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--information dl {
    padding: 30px 40px;
    display: flex;
  }
  #confirm .confirm__block--information dl.confirm__col {
    width: calc(50% - 1px);
    margin-right: 2px;
  }
  #confirm .confirm__block--information dl.confirm__col:nth-of-type(2n) {
    margin-right: 0;
  }
}

#confirm .confirm__block--information dl.etc {
  display: block;
}

#confirm .confirm__block--information dl.etc dt {
  display: block;
}

@media (min-width: 769px) {
  #confirm .confirm__block--information dl.etc dt {
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information dl.etc dt {
    margin-bottom: 0vw;
  }
}

#confirm .confirm__block--information dl.etc dd {
  display: block;
  white-space: normal;
  overflow: auto;
}

#confirm .confirm__block--information dt {
  color: #9c9c9c;
  white-space: nowrap;
  font-weight: bold;
}

@media (min-width: 769px) {
  #confirm .confirm__block--information dt {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information dt {
    font-size: 3.2vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--information dt {
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information dt {
    margin-right: 2.66667vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--information dt {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information dt {
    display: inline;
    line-height: 1.5;
  }
}

#confirm .confirm__block--information dd {
  font-weight: bold;
}

@media (min-width: 769px) {
  #confirm .confirm__block--information dd {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information dd {
    font-size: 3.2vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--information dd {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--information dd {
    word-break: break-all;
    display: inline;
    line-height: 1.5;
  }
}

#confirm .confirm__block--message {
  line-height: 2;
  font-weight: bold;
}

@media (min-width: 769px) {
  #confirm .confirm__block--message {
    line-height: 2;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--message {
    line-height: 4.26667vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--message {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--message {
    font-size: 2.66667vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--message {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--message {
    padding-top: 23.33333vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--message {
    padding-bottom: 120px;
  }
}

@media (max-width: 768px) {
  #confirm .confirm__block--message {
    padding-bottom: 22.8vw;
  }
}

@media (min-width: 769px) {
  #confirm .confirm__block--message {
    text-align: center;
  }
}

#confirm .confirm__block--message em {
  font-style: normal;
  color: #ff0042;
}

#footer {
  font-family: "Helvetica Neue" , Helvetica, sans-serif;
  font-feature-settings: 'palt';
  font-smoothing: antialiased;
  text-align: right;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 769px) {
  #footer {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #footer {
    font-size: 2.66667vw;
  }
}

@media (min-width: 769px) {
  #footer {
    padding: 180px 60px 60px;
  }
}

@media (max-width: 768px) {
  #footer {
    padding: 23.86667vw 7.6vw 16vw;
  }
}

#footer .footer__madeby {
  margin-bottom: 5px;
}

#footer .footer__madeby a {
  text-decoration: underline;
}

#footer .footer__madeby a:hover {
  text-decoration: none;
}

#footer .footer__copyright {
  margin-bottom: -5px;
}

.fade-enter-active {
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
}

.fade-leave-active {
  transition: opacity 0s cubic-bezier(0.19, 1, 0.22, 1);
}

.fade-enter, .fade-leave-to {
  opacity: 0;
}

.fadeFast-enter-active {
  transition: opacity 0s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: 0s;
}

.fadeFast-leave-active {
  transition: opacity 0s cubic-bezier(0.19, 1, 0.22, 1);
}

.fadeFast-enter, .fadeFast-leave-to {
  opacity: 0;
}
