@charset "UTF-8";
/*
共通
*/
.inner {
  max-width: 1060px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
}

@media screen and (max-width: 819px) {
  .inner {
    padding: 0 20px;
  }

  .pc_only {
    display: none;
  }
}

@media screen and (min-width: 820px) {
  .sp_only {
    display: none;
  }
}

.txt_em {
  color: #BF1F20;
}

/*
header
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background-color: #BF1F20;
  z-index: 100;
}
.header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header_txt {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .2em;
  color: #fff;
}
.header_btn {
  width: 265px;
}
.header_btn:hover {
  opacity: .7;
}

@media screen and (max-width: 819px) {
  .header {
    padding: 15px 0 20px;
  }
  .header_wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .header_txt {
    font-size: 18px;
    line-height: 1.6;
  }
  .header_btn {
    width: 229px;
    margin: 24px auto 0;
  }
}

/*
note
*/
.note {
  padding-top: 58px;
  padding-bottom: 154px;
}

.note_link {
  display: flex;
  align-items: center;
  margin-bottom: 62px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2.25;
  letter-spacing: .1em;
  color: #C7393A;
}
.note_link img {
  width: 11px;
  margin-right: 11px;
}

.note_txt {
  font-size: 21px;
  line-height: 1.95;
}

.note_txt .txt_small {
  font-size: 18px;
}

.note_cancel_periods {
  display: table;
}
.note_cancel_periods .note_cancel_row {
  display: table-row;
}
.note_cancel_periods .note_cancel_label {
  display: table-cell;
  padding-right: 0;
}
.note_cancel_periods .note_cancel_sep {
  display: table-cell;
  padding: 0 .06em;
  color: #000000;
}
.note_cancel_periods .note_cancel_date {
  display: table-cell;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.note_btn {
  display: block;
  margin-top: 50px;
  margin-bottom: 34px;
  width: 265px;
}
.note_btn:hover {
  opacity: .7;
}

.note_back {
  display: block;
  width: 316px;
  padding: 16px;
  margin: 82px auto 0;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  background-color: #C7393A;
}
.note_back:hover {
  background-color: #E47879;
}

@media screen and (max-width: 819px) {
  .note {
    padding-top: 31px;
    padding-bottom: 124px;
  }

  .note_link {
    margin-bottom: 38px;
    font-size: 14px;
  }

  .note_txt {
    font-size: 14px;
    line-height: 1.85;
  }

  .note_txt .txt_small {
    font-size: 12px;
  }

  .note_cancel_periods .note_cancel_row {
    display: block;
  }
  .note_cancel_periods .note_cancel_label {
    display: inline;
    padding-right: 0;
  }
  .note_cancel_periods {
    display: block;
    line-height: 1.85;
  }
  .note_cancel_periods .note_cancel_sep {
    display: inline;
    padding: 0;
    margin-left: .2em;
  }
  .note_cancel_periods .note_cancel_date {
    display: inline;
    text-align: left;
    white-space: nowrap;
  }

  .note_btn {
    margin: 39px auto 37px;
    width: 229px;
  }

  .note_back {
    margin: 40px auto 0;
  }
}

/*
pagetop
*/
.pagetop {
  position: fixed;
  width: 60px;
  height: 60px;
  right: 5%;
  bottom: 5%;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.pagetop.show {
  opacity: 1;
  pointer-events: auto;
}
.pagetop a {
  display: block;
  background-color: #025336;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  height: 100%;
  transition: background-color .3s ease;
}
.pagetop a::after {
  content: '';
  width: 14px;
  height: 14px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-135deg);
  position: absolute;
  top: 5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.pagetop a:hover {
  background-color: #8fc31f;
}

@media screen and (max-width: 819px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 15px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}