@charset "UTF-8";
/* ===================================
common
=================================== */
body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 158px);
  color: #fff;
  background: #000;
}

body.bg {
  background: url(../img/common/bg.gif);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

footer {
  margin-top: auto;
}

.p-error {
  font-size: 12px;
  color: #f44d4d;
  margin: 5px 0 10px;
}

/* page ttl
==============================　*/
.c-ttl_area {
  margin-top: 50px;
}
.c-ttl_area .c-pagettl {
  position: relative;
}
.c-ttl_area .c-pagettl > * {
  display: block;
  line-height: 1;
}
.c-ttl_area .c-pagettl .c-ja {
  font-size: 16px;
}
.c-ttl_area .c-pagettl .c-en {
  font-size: 80px;
  font-family: "Cormorant Infant", serif;
  background: #000;
  margin-top: 10px;
  letter-spacing: 0.1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 15px;
}
.c-ttl_area .c-pagettl .c-en:before {
  content: "";
  background: #777777;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: -1;
}

.c-info_box {
  background: #111111;
  margin-top: 45px;
  padding: 45px 50px;
}
.c-info_box > * + * {
  margin-top: 30px;
}
.c-info_box .c-info_list {
  margin-top: 15px;
}
.c-info_box .c-info_list li {
  position: relative;
  padding-left: 15px;
  line-height: 1.7;
}
.c-info_box .c-info_list li + li {
  margin-top: 15px;
}
.c-info_box .c-info_list li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 10px;
  left: 0px;
}

@media screen and (max-width: 600px) {
  .c-ttl_area .c-pagettl .c-ja {
    font-size: 14px;
  }
  .c-ttl_area .c-pagettl .c-en {
    font-size: 40px;
  }
  .c-ttl_area .c-pagettl .c-en:before {
    bottom: 20px;
  }
  .c-info_box {
    font-size: 12px;
  }
  .c-info_box .c-info_list li::before {
    width: 3px;
    height: 3px;
    top: 8px;
  }
}
/* ===================================
入力画面
=================================== */
.c-form_list {
  margin-top: 100px;
}

.c-input_ttl {
  display: flex;
  align-items: center;
}
.c-input_ttl .c-num {
  font-family: "Cormorant Infant", serif;
  font-size: 40px;
  border: 1px solid #777777;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-input_ttl .c-text {
  background: #000;
  display: inline-block;
  margin-left: -11px;
  font-size: 18px;
  padding: 5px;
  margin-top: -2px;
  font-family: "Noto Serif JP", serif;
}

.c-btn_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 100px;
}
.c-btn_list .c-item {
  width: calc((100% - 75px) / 4);
}
.c-btn_list .c-item + .c-item {
  margin-left: 25px;
}
.c-btn_list input {
  display: none;
}
.c-btn_list label {
  border: 1px solid #777777;
  font-size: 18px;
  color: #fff;
  transition: 0.5s;
  width: 100%;
  text-align: center;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn_list label span {
  font-size: 130%;
}
.c-btn_list label:hover,
.c-btn_list input:checked + label {
  background: #fff;
  color: #000000;
  border: 1px solid #777777;
}

.c-select {
  width: 180px;
  height: 60px;
  border: 1px solid #777777;
  margin-top: 40px;
  margin-bottom: 100px;
  position: relative;
  background: #000;
}
.c-select.js-on {
  border: 1px solid #fff;
  background: #fff;
}
.c-select.js-on:before {
  border-color: #000 transparent transparent transparent;
}
.c-select.js-on select {
  color: #000;
}
.c-select option {
  color: #000;
}
.c-select:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7.5px 0 7.5px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  bottom: 23px;
  right: 19px;
}
.c-select select {
  background: no-repeat;
  color: #fff;
  border: none;
  font-size: 18px;
  padding: 15px;
  width: 100%;
  height: 100%;
}

.c-teble_area .c-pager_pn {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.c-teble_area .c-pager_pn a {
  transition: 0.5s;
}
.c-teble_area .c-pager_pn a:hover {
  opacity: 0.5;
}
.c-teble_area .c-pager_pn .c-prev {
  margin-left: 20px;
}
.c-teble_area .c-pager_pn .c-prev a {
  position: relative;
  padding-left: 15px;
}
.c-teble_area .c-pager_pn .c-prev a:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 6px 0;
  border-color: transparent #fff transparent transparent;
}
.c-teble_area .c-pager_pn .c-next {
  margin-right: 20px;
}
.c-teble_area .c-pager_pn .c-next a {
  position: relative;
  padding-right: 15px;
}
.c-teble_area .c-pager_pn .c-next a:before {
  content: "";
  position: absolute;
  top: 5px;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #fff;
}
.c-teble_area table {
  position: relative;
  font-size: 16px;
  margin-top: 15px;
  overflow: auto;
  width: 100%;
  display: block;
}
.c-teble_area table::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 89px;
  background: #777777;
  z-index: 1;
}
.c-teble_area table tbody {
  overflow: auto;
  width: 100%;
  display: table;
  word-break: break-all;
  white-space: nowrap;
  position: relative;
}
.c-teble_area table tbody::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 55px;
  left: 0;
  background: #777777;
  z-index: 1;
}
.c-teble_area table th, .c-teble_area table td {
  border: 1px solid #777777;
  padding: 3px;
  text-align: center;
}
.c-teble_area table td {
  font-size: 14px;
}
.c-teble_area table td span {
  font-size: 140%;
}
.c-teble_area table td span.price {
  font-size: 12px;
  display: block;
  line-height: 1.3;
  margin-bottom: 10px;
}
.c-teble_area table td span.no {
  font-size: 110%;
}
.c-teble_area table td.sat {
  color: #1fa4d0;
}
.c-teble_area table td.sun {
  color: #d93b3b;
}
.c-teble_area table td.inactive {
  color: #777;
}
.c-teble_area table .bg {
  background: #222222;
}
.c-teble_area table td.active {
  background: #fff;
  color: #000;
}
.c-teble_area table .c-head th {
  min-width: 93px;
  max-width: 93px;
  width: 93px;
}
.c-teble_area table .c-head > * {
  text-align: center;
  padding: 10px 3px 17px !important;
}

.c-input_ttl + .c-text {
  margin-top: 30px;
}

.c-price_area {
  margin-top: 100px;
  background: #111111;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
}
.c-price_area p span {
  font-size: 130%;
}

.c-btn_area {
  border-top: 1px solid #777;
  margin-top: 50px;
  padding-top: 50px;
}
.c-btn_area.active input {
  border: 1px solid #fff;
  color: #000;
  background: #fff;
  opacity: 1;
  pointer-events: inherit;
  cursor: pointer;
  transition: 0.5s;
}
.c-btn_area.active input:hover {
  opacity: 0.5;
}
.c-btn_area input {
  border: 1px solid #777;
  margin: 0 auto;
  color: #fff;
  background: #000;
  font-size: 16px;
  width: 400px !important;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.3;
  pointer-events: none;
}

@media screen and (max-width: 600px) {
  .c-info_box {
    padding: 23px;
  }
  .c-form_list {
    margin-top: 80px;
  }
  .c-input_ttl .c-num {
    width: 55px;
    height: 55px;
    font-size: 30px;
  }
  .c-input_ttl .c-text {
    font-size: 14px;
    padding: 0;
    margin-left: -5px;
    margin-top: -3px;
  }
  .c-btn_list .c-item {
    width: 100%;
  }
  .c-btn_list .c-item + .c-item {
    margin: 10px 0 0;
  }
  .c-btn_list label {
    font-size: 14px;
    height: 50px;
  }
  .c-btn_list {
    margin: 20px auto 80px;
  }
  .c-select {
    width: 105px;
    height: 50px;
    margin: 20px 0 80px;
  }
  .c-select select {
    font-size: 14px;
  }
  .c-select:before {
    border-width: 7px 5.5px 0 5.5px;
    bottom: 20px;
    right: 14px;
  }
  .c-teble_area .c-pager_pn {
    margin-top: 10px;
  }
  .c-teble_area .c-pager_pn .c-prev,
.c-teble_area .c-pager_pn .c-next {
    margin: 0;
  }
  .c-teble_area table {
    margin: 15px -20px 0;
    width: calc(100% + 40px);
    font-size: 12px;
    line-height: 1.6;
  }
  .c-teble_area table .c-head th {
    min-width: 50px;
    max-width: 50px;
    width: 50px;
  }
  .c-teble_area table .c-head td {
    line-height: 1.6;
  }
  .c-teble_area table td {
    line-height: 1.2;
  }
  .c-teble_area table th, .c-teble_area table td {
    vertical-align: middle;
    padding: 8px 1px;
  }
  .c-teble_area table td span.price {
    font-size: 10px;
    margin: 5px 0 0;
  }
  .c-teble_area table::before {
    left: 47px;
  }
  .c-teble_area table td {
    font-size: 12px;
  }
  .c-teble_area table .c-head > * {
    padding: 5px 3px 12px !important;
  }
  .c-teble_area table tbody::after {
    top: 53px;
  }
  .c-price_area {
    font-size: 14px;
    margin-top: 80px;
    padding: 10px 20px;
  }
  .c-btn_area {
    margin-top: 30px;
    padding-top: 30px;
  }
  .c-btn_area input {
    font-size: 14px;
    width: 100% !important;
    height: 50px;
  }
}
/* ===================================
確認画面
=================================== */
.c-confirm {
  margin-top: 70px;
}
.c-confirm > .c-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-align: center;
}
.c-confirm .c-list_wrap {
  margin-top: 70px;
}
.c-confirm .c-list_wrap + .c-list_wrap {
  margin-top: 90px;
}
.c-confirm .c-list_wrap .c-ttl_b {
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
}
.c-confirm .c-list_wrap .c-ttl_b .c-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.c-confirm .c-list_wrap .c-ttl_b a {
  text-decoration: underline;
  transition: 0.5s;
}
.c-confirm .c-list_wrap .c-ttl_b a:hover {
  opacity: 0.5;
}
.c-confirm .c-list_wrap .c-list {
  margin-top: 35px;
}
.c-confirm .c-list_wrap .c-list dt {
  font-family: "Noto Serif JP", serif;
  background: #000;
  padding-right: 20px;
}
.c-confirm .c-list_wrap .c-list dd {
  background: #000;
  padding-left: 20px;
  max-width: 500px;
}
.c-confirm .c-list_wrap .c-list dd.c-bold {
  font-weight: bold;
  line-height: 1.4;
}
.c-confirm .c-list_wrap .c-list dd.c-bold span {
  font-size: 125%;
}
.c-confirm .c-list_wrap .c-list div {
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  font-size: 16px;
  position: relative;
}
.c-confirm .c-list_wrap .c-list div:before {
  content: "";
  background: #777777;
  width: calc(100% - 50px);
  height: 1px;
  position: absolute;
  top: 15px;
  left: 25px;
  z-index: -1;
}
.c-confirm .c-list_wrap .c-list div + div {
  margin-top: 14px;
}
.c-confirm .c-list_wrap .c-pay_text {
  padding: 0 25px;
  font-size: 16px;
  margin-top: 30px;
}
.c-confirm .c-list_wrap .c-pay_text .c-bold {
  font-weight: bold;
}
.c-confirm .c-btn_g > * {
  width: 400px;
  font-size: 16px;
  margin: 145px auto 0;
  padding: 17px 0;
}

@media screen and (max-width: 600px) {
  .c-confirm,
.c-confirm .c-list_wrap {
    margin-top: 50px;
  }
  .c-confirm .c-list_wrap + .c-list_wrap {
    margin-top: 60px;
  }
  .c-confirm .c-list_wrap .c-ttl_b .c-ttl {
    font-size: 16px;
  }
  .c-confirm .c-list_wrap .c-ttl_b {
    padding: 10px 15px;
  }
  .c-confirm .c-list_wrap .c-list div {
    flex-wrap: wrap;
    padding: 0 2%;
    font-size: 14px;
  }
  .c-confirm .c-list_wrap .c-list div + div {
    margin-top: 25px;
  }
  .c-confirm .c-list_wrap .c-list dt {
    border-bottom: 1px solid #777777;
  }
  .c-confirm .c-list_wrap .c-list dt, .c-confirm .c-list_wrap .c-list dd {
    width: 100%;
    padding: 5px 0;
  }
  .c-confirm .c-list_wrap .c-pay_text {
    font-size: 14px;
    padding: 0;
  }
  .c-confirm .c-list_wrap .c-list div:before {
    display: none;
  }
  .c-confirm .c-btn_g > * {
    width: 90%;
    margin-top: 75px;
  }
  .c-confirm .c-ttl {
    font-size: 20px;
  }
}
/* ===================================
完了画面
=================================== */
.c-fin {
  margin-top: 65px;
  text-align: center;
}
.c-fin .c-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  letter-spacing: 0.08em;
}
.c-fin .c-text {
  margin-top: 30px;
}
.c-fin .c-add {
  font-weight: bold;
}
.c-fin .c-btn_w {
  margin-top: 75px;
}

@media screen and (max-width: 1023px) {
  .c-fin {
    padding: 0 20px;
  }
}
@media screen and (max-width: 600px) {
  .c-fin .c-ttl {
    font-size: 20px;
  }
  .c-fin .c-btn_w > * {
    width: 90%;
  }
  .c-fin .c-text {
    text-align: left;
  }
}
/* ===================================
login / reset
=================================== */
/* login
==============================　*/
.c-login_box {
  display: flex;
  justify-content: center;
  background: #111111;
  margin-top: 70px;
  padding: 30px 0;
}
.c-login_box .c-box {
  width: 50%;
}
.c-login_box .c-box + .c-box {
  border-left: 1px solid #777;
}
.c-login_box .c-login_wrap,
.c-login_box .c-sns_list {
  max-width: 400px;
  margin: 0 auto;
}
.c-login_box .c-box_ttl {
  text-align: center;
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  margin-top: 5px;
}
.c-login_box .p-login_btn {
  margin: 45px auto 0;
  width: 200px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  transition: 0.5s;
}
.c-login_box .p-login_btn:hover {
  background: #111111;
  color: #fff;
}
.c-login_box .p-small {
  font-size: 12px;
  text-align: center;
  margin-top: 15px;
  text-decoration: underline;
}
.c-login_box .p-small a {
  transition: 0.5s;
}
.c-login_box .p-small a:hover {
  opacity: 0.5;
}

.c-input_area {
  margin-top: 40px;
}
.c-input_area + .p-small {
  text-align: right;
}
.c-input_area input {
  width: 100%;
  font-size: 16px;
  background: #111111;
  border: 1px solid #777;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: initial;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 100;
  color: #fff;
  padding: 10px 20px;
}
.c-input_area input::-moz-placeholder {
  color: #777;
  font-weight: 100;
  font-family: "Noto Sans JP", sans-serif;
}
.c-input_area input::placeholder {
  color: #777;
  font-weight: 100;
  font-family: "Noto Sans JP", sans-serif;
}
.c-input_area input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #111111 inset;
  -webkit-text-fill-color: #fff;
}
.c-input_area .p-password {
  margin-top: 20px;
}

.c-sns_list {
  margin-top: 40px !important;
}
.c-sns_list li + li {
  margin-top: 20px;
}
.c-sns_list a {
  display: flex;
  align-items: center;
  padding: 5px;
  transition: 0.5s;
}
.c-sns_list a:hover {
  opacity: 0.5;
}
.c-sns_list .p-twitter a {
  background: #1da1f2;
}
.c-sns_list .p-line a {
  background: #00b900;
}
.c-sns_list .p-facebook a {
  background: #1877f2;
}
.c-sns_list .c-ico {
  width: 55px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 0;
}
.c-sns_list .c-ico img {
  width: 30px;
  margin: 0 auto;
}
.c-sns_list .c-text {
  display: block;
  width: calc(100% - 55px);
  text-align: center;
  font-size: 16px;
}

/* reset
==============================　*/
.c-fin.c-resets .c-input_area {
  max-width: 400px;
  margin: 40px auto 0;
}
.c-fin.c-resets .c-input_area input {
  background: #000;
}
.c-fin.c-resets .c-input_area input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #000 inset;
  -webkit-text-fill-color: #fff;
}
.c-fin.c-resets .c-btn_area {
  border-top: none;
  padding-top: 0;
  margin-top: 80px;
}
.c-fin.c-resets .c-btn_area input {
  width: 200px !important;
}

.c-fin.c-resets .c-input_area.c-notify {
  margin-top: -5px;
}

@media screen and (max-width: 1023px) {
  .c-login_box .c-box {
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-login_box {
    display: block;
  }
  .c-login_box .c-box {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 0;
  }
  .c-login_box .c-box + .c-box {
    border-left: none;
    border-top: 1px solid #777;
    margin-top: 50px;
    padding-top: 30px;
  }
}
@media screen and (max-width: 600px) {
  .c-login_box .c-box_ttl {
    font-size: 18px;
    line-height: 1.6;
  }
  .c-sns_list .c-ico {
    width: 40px;
    padding: 5px 0;
  }
  .c-sns_list .c-ico img {
    width: 20px;
  }
  .c-sns_list .c-text {
    width: calc(100% - 40px);
  }
  .c-fin.c-resets .c-btn_area {
    margin-top: 40px;
  }
  .c-input_area input {
    padding: 10px 15px;
  }
  .c-input_area + .p-small {
    margin-top: 10px;
  }
  .c-sns_list .c-text {
    font-size: 14px;
  }
}
/* ===================================
マイページ
=================================== */
.c-member_text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  margin-top: 55px;
}
.c-member_text .c-name_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.c-member_text .c-lank {
  background: #fff;
  color: #000;
  font-size: 12px;
  display: inline-block;
  margin-right: 15px;
  border-radius: 15px;
  padding: 7px 20px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.c-mypage .c-ttl_bg {
  background: #111111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 25px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.c-mypage .c-btn_list {
  display: flex;
}
.c-mypage .c-btn_list li {
  width: calc((100% - 40px) / 2);
}
.c-mypage .c-btn_list li + li {
  margin-left: 40px;
}
.c-mypage .c-btn_list li a {
  border: 1px solid #777;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  padding: 20px;
  transition: 0.5s;
}
.c-mypage .c-btn_list li a:hover {
  opacity: 0.5;
}
.c-mypage .c-btn_list li a > span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-mypage .c-btn_list .c-ico {
  width: 31px;
  display: block;
  margin-right: 15px;
}
.c-mypage .c-text_list {
  margin-top: 30px;
  padding: 0 30px;
}
.c-mypage .c-text_list li + li {
  margin-top: 10px;
}
.c-mypage .c-text_list a {
  text-decoration: underline;
  transition: 0.5s;
}
.c-mypage .c-text_list a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 600px) {
  .c-member_text {
    font-size: 18px;
  }
  .c-member_text .c-lank {
    padding: 4px 10px;
  }
  .c-mypage .c-ttl_bg {
    padding: 10px 15px;
    font-size: 16px;
  }
  .c-mypage .c-btn_list li {
    width: 100%;
  }
  .c-mypage .c-btn_list li + li {
    margin: 20px 0 0;
  }
  .c-mypage .c-btn_list li a {
    padding: 10px;
  }
  .c-mypage .c-btn_list .c-ico {
    width: 25px;
  }
}
/* ===================================
予約履歴
=================================== */
.c-confirm.p-reserve {
  margin-top: 55px;
}

.c-confirm .c-list_wrap.p-box {
  border: 1px solid #777;
  margin-top: 40px;
  padding: 25px 45px;
}
.c-confirm .c-list_wrap.p-box + .c-list_wrap {
  margin-top: 30px;
}
.c-confirm .c-list_wrap.p-box .c-list {
  margin-top: 0;
}
.c-confirm .c-list_wrap.p-box .c-list dd.c-bold {
  font-size: 18px;
}
.c-confirm .c-list_wrap.p-box div + div {
  margin-top: 5px;
}
.c-confirm .c-list_wrap.p-box .c-list div {
  padding: 0;
}
.c-confirm .c-list_wrap.p-box .c-bottom_text {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.c-confirm .c-list_wrap.p-box .c-bottom_text .c-link a {
  transition: 0.5s;
  text-decoration: underline;
}
.c-confirm .c-list_wrap.p-box .c-bottom_text .c-link a:hover {
  opacity: 0.5;
}

.c-pager {
  display: flex;
  justify-content: center;
  font-size: 30px;
  font-family: "Cormorant Infant", serif;
  margin-top: 75px;
  line-height: 1;
}
.c-pager a {
  transition: 0.5s;
  opacity: 0.3;
  margin: 0 9px;
}
.c-pager a.p-current {
  opacity: 1;
}
.c-pager a:hover {
  opacity: 1;
}
.c-pager .c-prev {
  margin: 0 20px 0 0;
}
.c-pager .c-prev:after {
  transform: rotate(-135deg);
  top: 9px;
  left: 1px;
}
.c-pager .c-next {
  margin: 0 0 0 20px;
}
.c-pager .c-next:after {
  transform: rotate(45deg);
  top: 9px;
  right: 1px;
}
.c-pager .c-prev, .c-pager .c-next {
  width: 21px;
  position: relative;
  pointer-events: none;
}
.c-pager .c-prev.p-active, .c-pager .c-next.p-active {
  opacity: 1;
  pointer-events: inherit;
}
.c-pager .c-prev.p-active:hover, .c-pager .c-next.p-active:hover {
  opacity: 0.5;
}
.c-pager .c-prev.p-active:before, .c-pager .c-next.p-active:before {
  background: #fff;
}
.c-pager .c-prev.p-active:after, .c-pager .c-next.p-active:after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.c-pager .c-prev:before, .c-pager .c-next:before {
  content: "";
  width: 21px;
  height: 1px;
  background: #777;
  position: absolute;
  top: 14px;
  left: 0;
}
.c-pager .c-prev:after, .c-pager .c-next:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  position: absolute;
}

.c-confirm .c-list_wrap.p-box + .c-btn_w {
  margin-top: 100px;
}

.c-pager + .c-btn_w {
  margin-top: 75px;
}

.c-confirm > .c-ttl + .c-text {
  text-align: center;
  margin-top: 30px;
}
.c-confirm > .c-ttl + .c-text .c-bold {
  font-weight: bold;
}

.c-confirm .c-list_wrap.p-box + .c-btn_w.p-cansel {
  margin-top: 80px !important;
}
.c-confirm .c-list_wrap.p-box + .c-btn_w.p-cansel a {
  background: #fff;
  color: #000;
}
.c-confirm .c-list_wrap.p-box + .c-btn_w.p-cansel a:hover {
  background: #000;
  color: #fff;
}
.c-confirm .c-list_wrap.p-box + .c-btn_w.p-cansel + .c-link_text {
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
}
.c-confirm .c-list_wrap.p-box + .c-btn_w.p-cansel + .c-link_text a {
  text-decoration: underline;
  transition: 0.5s;
}
.c-confirm .c-list_wrap.p-box + .c-btn_w.p-cansel + .c-link_text a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 600px) {
  .c-confirm.p-reserve {
    margin-top: 45px;
  }
  .c-confirm .c-list_wrap.p-box {
    padding: 20px;
  }
  .c-confirm .c-list_wrap.p-box .c-list dd.c-bold {
    font-size: 16px;
  }
  .c-pager {
    font-size: 26px;
  }
  .c-pager .c-prev, .c-pager .c-next {
    transform: scale(0.7);
  }
  .c-confirm .c-list_wrap.p-box + .c-btn_w {
    margin-top: 50px;
  }
  .c-confirm .c-list_wrap.p-box .c-bottom_text {
    display: block;
  }
  .c-confirm .c-list_wrap.p-box + .c-btn_w.p-cansel {
    margin-top: 40px !important;
  }
  .c-confirm .c-list_wrap.p-box + .c-btn_w.p-cansel + .c-link_text {
    margin-top: 30px;
  }
  .c-confirm > .c-ttl + .c-text {
    text-align: left;
  }
}
/* ===================================
フォーム入力画面
=================================== */
.c-input.p-edit {
  margin-top: 70px;
}
.c-input.p-edit .c-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  text-align: center;
}

.c-edit_area {
  margin-top: 65px;
}
.c-edit_area dl {
  max-width: 740px;
  margin: 30px auto 0;
}
.c-edit_area dl + .c-ttl_bg {
  margin-top: 95px;
}
.c-edit_area dl dt {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  display: flex;
  align-items: center;
}
.c-edit_area dl dt .c-hissu {
  color: #f44d4d;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  margin-left: 10px;
}
.c-edit_area dl dd {
  margin-top: 5px;
}
.c-edit_area dl dd input {
  background: #000;
}
.c-edit_area dl dd input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #000 inset;
}
.c-edit_area dl dd .c-small {
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.5;
}
.c-edit_area dl dd label {
  display: block;
}
.c-edit_area dl dd label + label {
  margin-top: 13px;
}
.c-edit_area dl dd label input[type=radio] {
  display: none;
}
.c-edit_area dl dd label input + span::before,
.c-edit_area dl dd label input + span::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
.c-edit_area dl dd label input:checked + span::after {
  opacity: 1;
}
.c-edit_area dl dd label input[type=radio] + span {
  position: relative;
  cursor: pointer;
  padding-left: 40px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-weight: 100;
  margin-top: 7px;
}
.c-edit_area dl dd label input[type=radio] + span:before {
  content: "";
  background-color: #000;
  border: 1px solid #777;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  left: 0;
  position: absolute;
  top: 17px;
}
.c-edit_area dl dd label input[type=radio] + span:after {
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  width: 14px;
  height: 14px;
  left: 6px;
  top: 17px;
  position: absolute;
}
.c-edit_area dl dd label input[type=radio]:checked + span:after {
  opacity: 1;
}
.c-edit_area dl dd label input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #f3f3f3 inset;
  -webkit-text-fill-color: #333333;
}
.c-edit_area dl dd + dt {
  margin-top: 35px;
}
.c-edit_area .c-pay_text {
  padding: 0 30px;
  font-size: 16px;
  margin-top: 30px;
}
.c-edit_area .c-pay_text .c-bold {
  font-weight: bold;
}
.c-edit_area .c-pay_text a {
  font-size: 14px;
  text-decoration: underline;
  margin-left: 30px;
  transition: 0.5s;
}
.c-edit_area .c-pay_text a:hover {
  opacity: 0.5;
}

.c-edit_area .c-btn_w {
  margin-top: 80px;
}
.c-edit_area .c-btn_w > * {
  pointer-events: none;
  opacity: 0.5;
}
.c-edit_area .c-btn_w.active > * {
  pointer-events: inherit;
  opacity: 1;
  background: #fff;
  color: #000;
}
.c-edit_area .c-btn_w.active > *:hover {
  background: #000;
  color: #fff;
}

.c-edit_area.p-new {
  margin-top: 55px;
}
.c-edit_area.p-new dl {
  max-width: 800px;
  padding: 0 20px;
  box-sizing: content-box;
}
.c-edit_area.p-new .c-btn_w {
  margin-top: 25px;
}

.c-edit_area dl + .c-text {
  text-align: center;
  margin-top: 70px;
  padding: 0 20px;
}
.c-edit_area dl + .c-text a {
  text-decoration: underline;
  transition: 0.5s;
}
.c-edit_area dl + .c-text a:hover {
  opacity: 0.5;
}

.c-edit_area.p-pay {
  max-width: 500px;
  margin: 30px auto 0;
}
.c-edit_area.p-pay .c-text {
  text-align: center;
  margin-bottom: 60px;
}

.c-edit_area dl dd.p-my {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.c-edit_area dl dd.p-my input {
  width: 80px;
}
.c-edit_area dl dd.p-my span {
  margin: 0 13px;
}

.c-edit_area dl dd.p-code input {
  width: 100px;
}

@media screen and (max-width: 600px) {
  .c-input.p-edit .c-ttl {
    font-size: 20px;
  }
  .c-edit_area dl dt {
    font-size: 16px;
  }
  .c-edit_area dl dd label input[type=radio] + span {
    font-size: 14px;
  }
  .c-edit_area .c-pay_text {
    padding: 0;
  }
  .c-edit_area .c-pay_text a {
    display: block;
    margin-left: 0;
  }
  .c-edit_area dl + .c-ttl_bg {
    margin-top: 60px;
  }
  .c-edit_area dl dd.p-my {
    font-size: 14px;
  }
  .c-edit_area dl + .c-text {
    text-align: left;
  }
  .c-edit_area.p-pay .c-text {
    text-align: left;
  }
}
/* ===================================
大カテゴリ
=================================== */
/* 中カテゴリ
==============================　*/
/* 小カテゴリ、コメント */