@charset "utf-8";

::-webkit-input-placeholder {color: #CCC}
/*Firefox 19以降*/
::-moz-placeholder {color: #CCC}
/*Firefox 18以前*/
:-moz-placeholder {color: #CCC}
/*Windows IE*/
:-ms-input-placeholder {color: #CCC}

input, button, textarea, select, input[type="button"], input[type="submit"] {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
}

input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input:focus {
background-color: ivory;
}

select:focus {
background-color: ivory;
}

.error {
    color: red;
    font-size: 13px;
    padding-top: 3px;
    display: block;
}

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

/* =====================
  fonts
===================== */
/*  Yu Gothic
------------------------*/
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 100;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 200;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 300;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}
@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Bold");
    font-weight: bold;
}
/* =====================
base
===================== */
*,
*:before,
*:after {
    box-sizing: border-box;
}
img {
    width: 100%;
    height: auto;
}
svg {
    width: 100%;
    height: 100%;
}
:root {
    --col-bk: #000000;
    --col-wh: #ffffff;
}

/*-------------------------------------------*/
/*	PC
/*-------------------------------------------*/
@media screen and (min-width: 768px) {
/* =====================
base
===================== */
body {
    font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
        "游ゴシック体", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo,
        "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: var(--col-bk);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 1px;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.pc_none {
    display: none !important;
}
a[href^="tel:"] {
    pointer-events: none;
}
a {
    text-decoration: none;
    color: var(--col-gr);
}
.inner {
    padding: 50px 5% 80px;
    min-width: 640px;
    max-width: 640px;
    margin: 0 auto;
}
/* =====================
    #header
===================== */
#header .logo {
    text-align: center;
}

#header .logo img {
    width: 200px;
}

/* =====================
    #main
===================== */

.ttl_h2 {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 30px;
    border-bottom: solid 1px #000000;
}

.ttl_h3 {
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.ttl_h3::after {
  content: "■";
  position: absolute;
  top: 0px;
  left: 0px;
}

.head_text {
  margin-bottom: 20px;
}

.head_text .att {
  color: red;
  font-weight: 700;
  border: solid 2px red;
  padding: 10px 15px;
  margin-bottom: 15px;
  text-align: center;
}

.head_text .end {
  color: var(--col-bk);
  font-weight: 700;
  border: solid 2px var(--col-bk);
  padding: 10px 15px;
  margin-bottom: 15px;
  text-align: center;
}

.list_att {
  margin-bottom: 30px;
}

.list_att li {
  font-size: 14px;
  position: relative;
  padding-left: 18px;
}
.list_att li::after {
  content: "※";
  position: absolute;
  top: 0px;
  left: 0px;
}

.select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #000000;
    border-radius: 4px;
    padding: 10px 25px 10px 10px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.select:disabled {
    pointer-events: none;
    background-color: #f1f1f1;
    color: #000000;
}

.select_wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.select_wrap::after {
    content: '';
    position: absolute;
    border: 6px solid #000000;
    border-bottom: 0;
    border-left-color: transparent;
    border-right-color: transparent;
    top: calc(50% - 3px);
    right: 10px;
    width: 0;
    height: 0;
}

.select_wrap--disabled::after {
    border-top-color: #aaa;
}

.input_wrap {
    margin-bottom: 30px;
}

.input_txt {
    border: 2px solid #000000;
    border-radius: 4px;
    padding: 10px 25px 10px 10px;
    font-size: 16px;
    width: 100%;
}

.btn_submit {
    background-color: var(--col-bk);
    color: var(--col-wh);
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    line-height: 60px;
    font-size: 18px;
    font-weight: 700;
    display: block;
    text-align: center;
}

.btn_submit:hover {
    opacity: 0.7;
}

.list_item_conf {
    margin-bottom: 30px;
    counter-reset: item-counter;
}

.list_item_conf li {
    counter-increment: item-counter;
}

.list_item_conf li:before {
    content: counter(item-counter) ". ";
}

.conf_txt {
    margin-bottom: 30px;
}

.conf_txt span.mail {
    font-size: 13px;
    display: block;
    padding-top: 4px;
    color: red;
}

.end_txt {
  margin-bottom: 30px;
}


/* =====================
#footer
===================== */
#footer {
    background-color: var(--col-bk);
    text-align: center;
    padding: 100px 0;
}
#footer address {
    font-style: normal;
    text-align: center;
    font-size: 13px;
    padding: 80px 0;
    color: var(--col-wh);
}




  /* =====================
  share
  ===================== */
  #share {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transform: translateX(140%);
    transition: 0.3s;
  }
  #share.fixed {
    transform: translateX(0);
  }
  #share .share {
    display: block;
  }
  #share .share li {
    width: 70px;
    height: 70px;
  }
  #share .share li a {
    display: block;
  }
  #share .share li a.fb {
    background-color: #0766ff;
  }
  #share .share li a.x {
    background-color: #000000;
  }
  #share .share li a.line {
    background-color: #06c755;
  }

  /* =====================
  yoyaku
  ===================== */
  #yoyaku {
    max-width: 960px;
    padding: 25px;
    margin: 0 auto;
  }
  .logo_yoyaku {
    width: 350px;
    margin-bottom: 20px;
  }
  .ttl_date {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .tbl_yoyaku {
    border-collapse: collapse;
    font-size: 14px;
    width: 100%;
    margin-bottom: 30px;
  }
  .tbl_yoyaku tr th,.tbl_yoyaku tr td {
    padding: 10px 15px;
    border: 1px solid #000000;
    vertical-align: middle;
  }
  .tbl_yoyaku tr th {
    font-weight: 700;
    background: #CCCCCC;
  }
  .tbl_yoyaku tr td {
    
  }

  /* =====================
  kanri
  ===================== */
  #kanri {
    max-width: 960px;
    padding: 25px;
    margin: 0 auto;
  }
  .logo_kanri {
    width: 350px;
    margin-bottom: 20px;
  }
  .tbl_kanri {
    border-collapse: collapse;
    font-size: 14px;
    width: 100%;
    margin-bottom: 30px;
  }
  .tbl_kanri tr th,.tbl_kanri tr td {
    padding: 10px 15px;
    border: 1px solid #000000;
    vertical-align: middle;
  }
  .tbl_kanri tr th {
    font-weight: 700;
    background: #CCCCCC;
  }
  .tbl_kanri tr td {
    text-align: center;
  }

  .btn_save {
    background: #000000;
    color: #FFFFFF;
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    padding: 10px 50px;
    cursor: pointer;
  }

  .btn_del {
    border-radius: 4px;
    display: inline-block;
    text-align: center;
    padding: 10px 50px;
    cursor: pointer;
    text-decoration: underline;
  }

  /* =====================
  calendar
  ===================== */
  .tbl_cal {
    border-collapse: collapse;
    margin-bottom: 40px;
    width: 100%;
  }
  .tbl_cal tr th,
  .tbl_cal tr td {
    width: 14.29%; /* 各列を7等分する */
    border: 4px solid #FFF;
    text-align: center;
    font-weight: 600;
  }

  .tbl_cal tr th.sun {
    color: #b52222;
  }

  .tbl_cal tr th.sat {
    color: #074ab4;
  }

  .tbl_cal tr td {
    background: #F7F7F7;
    color: #CCCCCC;
    pointer-events: none;
    position: relative;
  }

  .tbl_cal tr td.today {
    background: #CCCCCC;
    color: #000000;
  }

  .tbl_cal tr td.active {
    color: #000000;
    pointer-events: auto;
  }

  .tbl_cal tr td.sold::after {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "SOLD OUT";
    font-size: 9px;
    color: #666;
    letter-spacing: 0;
    color: #b52222;
  }

  .tbl_cal tr td::before {
    position: absolute;
    bottom: 0;
    font-size: 9px;
    right: 3px;
    content: attr(data-rest);
    letter-spacing: 0;
    color: #666666;
    font-weight: normal;
  }
  

  .tbl_cal tr td label {
    display: block;
    padding: 8px;
    position: relative;
  }

  .tbl_cal tr td input[type=radio] {
    display: none;
  }

  .tbl_cal tr td input[type=radio]:checked + label {
    color: #FFF;
    background: #000000;
    /* z-index: 0; */
  }
  
  /* .tbl_cal tr td input[type=radio]:checked + label::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: inline-block;
    content: '';
    width: 32px;
    height: 32px;
    background: #000;
    color: #FFF;
    border-radius: 50%;
    z-index: -1;
  } */
}
/*-------------------------------------------*/
/*	SP
/*-------------------------------------------*/
@media screen and (max-width: 767px) {
  /* =====================
    base
  ===================== */
  body {
    font-family: "Yu Gothic", "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
      "游ゴシック体", "Hiragino Sans", "ヒラギノ角ゴシック", "メイリオ", Meiryo,
      "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: var(--col-gr);
    font-size: 14px;
    line-height: 1.8;
    font-weight: 500;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .sp_none {
    display: none !important;
  }
  a {
    text-decoration: none;
    color: var(--col-gr);
  }
  a.link {
    color: #var(--col-gr);
    text-decoration: underline;
  }
  .inner {
    padding: 20px 5% 50px;
  }

  /* =====================
    #header
===================== */
#header .logo {
  text-align: center;
}

#header .logo img {
  width: 40%;
}

/* =====================
  #main
===================== */

.ttl_h2 {
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: solid 1px #000000;
}

.ttl_h3 {
font-size: 18px;
margin-bottom: 10px;
position: relative;
padding-left: 20px;
}

.ttl_h3::after {
content: "■";
position: absolute;
top: 0px;
left: 0px;
}

.head_text {
margin-bottom: 20px;
}

.head_text .att {
color: red;
font-weight: 700;
border: solid 2px red;
padding: 10px 15px;
margin-bottom: 15px;
text-align: center;
}

.head_text .end {
color: var(--col-bk);
font-weight: 700;
border: solid 2px var(--col-bk);
padding: 10px 15px;
margin-bottom: 15px;
text-align: center;
}

.list_att {
margin-bottom: 30px;
}

.list_att li {
font-size: 14px;
position: relative;
padding-left: 18px;
}
.list_att li::after {
content: "※";
position: absolute;
top: 0px;
left: 0px;
}

.select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #000000;
  border-radius: 4px;
  padding: 10px 25px 10px 10px;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

.select:disabled {
  pointer-events: none;
  background-color: #f1f1f1;
  color: #000000;
}

.select_wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select_wrap::after {
  content: '';
  position: absolute;
  border: 6px solid #000000;
  border-bottom: 0;
  border-left-color: transparent;
  border-right-color: transparent;
  top: calc(50% - 3px);
  right: 10px;
  width: 0;
  height: 0;
}

.select_wrap--disabled::after {
  border-top-color: #aaa;
}

.input_wrap {
  margin-bottom: 30px;
}

.input_txt {
  border: 2px solid #000000;
  border-radius: 4px;
  padding: 10px 25px 10px 10px;
  font-size: 16px;
  width: 100%;
}

.btn_submit {
  background-color: var(--col-bk);
  color: var(--col-wh);
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
  line-height: 60px;
  font-size: 18px;
  font-weight: 700;
  display: block;
  text-align: center;
}

.btn_submit:hover {
  opacity: 0.7;
}

.list_item_conf {
  margin-bottom: 30px;
  counter-reset: item-counter;
}

.list_item_conf li {
  counter-increment: item-counter;
}

.list_item_conf li:before {
  content: counter(item-counter) ". ";
}

.conf_txt {
  margin-bottom: 30px;
}

.conf_txt span.mail {
  font-size: 13px;
  display: block;
  padding-top: 4px;
  color: red;
}

.end_txt {
  margin-bottom: 30px;
}

/* =====================
#footer
===================== */
#footer {
  background-color: var(--col-bk);
  text-align: center;
  padding: 60px 0;
}
#footer address {
  font-style: normal;
  text-align: center;
  font-size: 13px;
  padding: 80px 0;
  color: var(--col-wh);
}



/* =====================
share
===================== */
#share {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  transform: translateX(140%);
  transition: 0.3s;
}
#share.fixed {
  transform: translateX(0);
}
#share .share {
  display: block;
}
#share .share li {
  width: 70px;
  height: 70px;
}
#share .share li a {
  display: block;
}
#share .share li a.fb {
  background-color: #0766ff;
}
#share .share li a.x {
  background-color: #000000;
}
#share .share li a.line {
  background-color: #06c755;
}

/* =====================
yoyaku
===================== */
#yoyaku {
  min-width: 960px;
  padding: 25px;
  margin: 0 auto;
}
.logo_yoyaku {
  width: 350px;
  margin-bottom: 20px;
}
.ttl_date {
  font-size: 20px;
  margin-bottom: 10px;
}
.tbl_yoyaku {
  border-collapse: collapse;
  font-size: 14px;
  width: 100%;
  margin-bottom: 30px;
}
.tbl_yoyaku tr th,.tbl_yoyaku tr td {
  padding: 10px 15px;
  border: 1px solid #000000;
  vertical-align: middle;
}
.tbl_yoyaku tr th {
  font-weight: 700;
  background: #CCCCCC;
}
.tbl_yoyaku tr td {
  
}

/* =====================
calendar
===================== */
.tbl_cal {
  border-collapse: collapse;
  margin-bottom: 40px;
  width: 100%;
}
.tbl_cal tr th,
.tbl_cal tr td {
  width: 14.29%; /* 各列を7等分する */
  border: 4px solid #FFF;
  text-align: center;
  font-weight: 600;
}

.tbl_cal tr th.sun {
  color: #b52222;
}

.tbl_cal tr th.sat {
  color: #074ab4;
}

.tbl_cal tr td {
  background: #F7F7F7;
  color: #CCCCCC;
  pointer-events: none;
  position: relative;
}

.tbl_cal tr td.today {
  background: #CCCCCC;
  color: #000000;
}

.tbl_cal tr td.active {
  color: #000000;
  pointer-events: auto;
}

.tbl_cal tr td.sold::after {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "SOLD OUT";
  font-size: 2vw;
  color: #666;
  letter-spacing: 0;
  line-height: 1.3;
  color: #b52222;
}

.tbl_cal tr td::before {
  position: absolute;
  bottom: 0;
  font-size: 9px;
  right: 3px;
  content: attr(data-rest);
  letter-spacing: 0;
  color: #666666;
  font-weight: normal;
}


.tbl_cal tr td label {
  display: block;
  padding: 8px;
  position: relative;
}

.tbl_cal tr td input[type=radio] {
  display: none;
}

.tbl_cal tr td input[type=radio]:checked + label {
  color: #FFF;
  background: #000000;
  /* z-index: 0; */
}