@charset "UTF-8";
/* ===================================================================
CSS information

 file name  :reset.css
 style info :リセット用CSS
=================================================================== */

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section.small {
    display:block;
}

/* --HTML-- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
	background:#fff;
	color:#333;
}

/* --BODY-- */
body {

	margin:0;
	padding:0;
	line-height:1;
}

/* --OTHER TAGS-- */
a img,img {
	border:0;
	vertical-align:bottom;
}

blockquote,dd,div,dl,dt,h1,h2,h3,h4,h5,h6,li,ol,p,pre,span,td,th,ul {
	margin:0;
	padding:0;
}

abbr,acronym {
	border:0;
}

address,caption,cite,code,dfn,em,th,strong,var {
	font-style:normal;
	font-weight:400;
}

caption,th {
	text-align:left;
}

code,kbd,pre,samp,tt {
	font-family:monospace;
	line-height:100%;
}

*+html code,kbd,pre,samp,tt {
	font-size:108%;
}

h1,h2,h3,h4,h5,h6 {
	font-size:100%;
	font-weight:400;
}

ol,ul {
	list-style:none;
}

q:before,q:after {
	content:'';
}

img {
	vertical-align: top;
	font-size:0;
	line-height: 0;
}

input,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
}

/* tables */
table {
	font-size:100%;
	line-height:1.5;
	border-collapse:collapse;
}

/*
---------------------------------------------
base
---------------------------------------------
*/

* {
  box-sizing: border-box;
  min-height: 0%;
}

*:focus {
  outline: none;
}

body {
  color: #333;
  font-family: 'Montserrat', Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  text-decoration: none;
}


/*
---------------------------------------------
helper
---------------------------------------------
*/

.main {
  display: block;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-nowrap {
	display: flex;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-between {
	display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
}

.flex-start {
	display: flex;
  justify-content: flex-start;
	flex-wrap: wrap;
}

.flex-reverse {
	display: flex;
  flex-direction: row-reverse;
	flex-wrap: wrap;
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.flex-stretch {
	display: flex;
	justify-content: stretch;
}

.flex-column {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.flex-col-center {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.flex-col-end {
	display: flex;
	align-items: flex-end;
}

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

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

.font-normal {
	font-weight: normal;
}

.font-bold {
	font-weight: bold;
}

.pc {
	display:block;
}

.sp {
	display:none;
}

br.sp,
img.sp,
span.sp {
	display:none;
}

br.pc,
img.pc,
span.pc {
	display:inline;
}

a,
a *{
  transition-duration: .3s;
}

@media screen and (max-width: 767px) {
	.sp-block {
		display: block;
	}

	.pc {
		display:none;
  }

	.sp {
		display:block;
	}

  br.sp,
  img.sp,
  span.sp {
		display:inline;
	}

  br.pc,
  img.pc,
  span.pc {
		display:none;
	}
}

/*
---------------------------------------------
common
---------------------------------------------
*/

.wrapper {
  min-width: 1200px;
}

.contents-inner {
  width: 1000px;
  min-width: 1000px;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .wrapper {
    min-width: 100%;
  }

  .contents-inner {
    min-width: 100%;
    width: 100%;
    padding: 0 15px;
  }
}

/*
---------------------------------------------
hedaer
---------------------------------------------
*/

.header {
  padding: 40px 50px 40px 40px;
  position: relative;
  z-index: 2;
  width: 100%;
  transition: .3s;
  background: white;
  top: 0;
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.header .inner .user-box {
  display: flex;
  margin-left: auto;
  align-items: center;
}

.header .inner .user-name {
  margin-right: 28px;
  font-size: 22px;
  color: #6D747E;
}

.header .inner .login {
  width: 175px;
  display: grid;
  place-items: center;
  color: white;
  background: #6d747e;
  border-radius: 30px;
  font-size: 22px;
  line-height: 1;
  padding: 16px 0;
}

.header .inner .logout {
  width: 175px;
  line-height: 1.5;
  padding: 10px 0;
	text-align:center;
  place-items: center;
  color: white;
  background: rgb(0,140,187);
  background: linear-gradient(90deg, rgba(0,140,187,1) 0%, rgba(74,181,234,1) 50%, rgba(0,140,187,1) 100%);
  border-radius: 30px;
  font-size: 22px;
  box-shadow: 0 0 5px rgba(170,165,165,.75);
}

.header .inner .logout:hover {
  opacity: .5;
}

@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    padding: 10px 0;
    background-color: rgba(255,255,255,0.85);
  }

  .header .inner {
    padding: 0 15px;
    width: 100%;
    flex-direction: column;
  }

  .header .inner .logo {
    width: 100px;
    order: 1;
    margin-right: auto;
  }

  .header .inner .logo img {
    width: 100%;
    height: auto;
  }

  .header .inner .user-box {
    margin: 0 auto 5px 0;
  }

  .header .inner .user-name {
    margin-right: 10px;
    font-size: 12px;
  }

  .header .inner .logout {
    width: 100px;
    font-size: 12px;
    border-radius:30px;
    padding: 5px 0;
  }

  .header .inner .login {
    padding: 10px 0;
  }

  .lower .header.scroll {
    overflow-x: visible !important;
  }

  .lower .header.scroll .inner .logo {
    display: none;
  }
}

/*
---------------------------------------------
hamburger
---------------------------------------------
*/

.menu {
  position: absolute;
  right: 15px;
  top: 12px;
  z-index:99999;
  width: 30px;
  height: 28px;
  cursor: pointer;
  transition-duration: .5s;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s !important;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 30px;
  height: 26px;
  display: block;
}

.menu-trigger span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 3px;
  background-color: #C9151E;
}

.menu-trigger span:nth-of-type(1) {
  top: 0px;
}

.menu-trigger span:nth-of-type(2) {
  top: 12px;
  width: 30px;
}

.menu-trigger span:nth-of-type(3) {
  bottom: 0;
  width: 30px;
}

.menu-trigger span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 3px;
  background-color: #C9151E;
  border-radius: 3px;
  transition: all 0.4s;
}

.menu-trigger.active span {
  background-color: #C9151E;
}

.menu-trigger.active span:nth-of-type(1) {
  transform: scale(0) translateY(20px);
  background-color: #C9151E;
}

.menu-trigger.active span:nth-of-type(2) {
  transform: rotate(-45deg);
  background-color: #C9151E;
}

.menu-trigger.active span:nth-of-type(2)::after {
  transform: rotate(90deg);
  background-color: #C9151E;
}

.menu-trigger.active span:nth-of-type(3) {
  transform: scale(0) translateY(-20px);
  background-color: #C9151E;
}

.menu-trigger.active span:nth-of-type(2) {
  width: 28px;
}

/*
---------------------------------------------
g-nav
---------------------------------------------
*/

.g-nav .g-nav-list {
  display: flex;
  border-bottom: solid 1px #999;
}

.g-nav .g-nav-list li {
  position: relative;
  z-index: 1;
  flex: 1;
}

.g-nav .g-nav-list > li > a {
  display: grid;
  /* height: 45px; */
  padding: 10px 0 4px;
  border-top: solid 1px #999;
  border-left: solid 1px #999;
  border-bottom: solid 3px #e8ecef;
  background: #e8ecef;
  color: #777;
  font-size: 18px;
  place-items: center;
  box-sizing: border-box;
  transition-duration: .2s
}

.g-nav .g-nav-list > li:last-child > a.current,
.g-nav .g-nav-list > li:last-child > a:hover,
.g-nav .g-nav-list > li:last-child > a {
  border-right: solid 1px #999;
}

.g-nav .g-nav-list > li > a:hover,
.g-nav .g-nav-list > li > a.current {
  border-width: 0 0 0 1px;
  background: white;
  border-bottom: solid 3px #058fbe;
  border-top: solid 1px white;
}

.g-nav .dropdown-list {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: white;
  border: solid 1px #E8ECEE;
  border-radius: 6px;
  box-shadow: 3px 3px 0 0 rgba(226,226,222,.75);
  width: 151px;
}

.g-nav .dropdown-list li:not(:last-child) {
  border-bottom: solid 1px #E8ECEE;
}

.g-nav .dropdown-list li a {
  padding: 10px 15px;
  font-size: 14px;
  color: #666;
  display: inline-block;
  width: 100%;
}

.g-nav .dropdown-list li a.current,
.g-nav .dropdown-list li a:hover {
  color: #009fe0;
  border-bottom: none;
}

/*
---------------------------------------------
drawer
---------------------------------------------
*/

body.active {
  height: 100%;
  overflow: hidden;
}

.drawer-sp {
  display: none;
  position: fixed;
  top: 92px;
  height: calc(100% - 92px);
  width: 100%;
  background: white;
  z-index: 100;
  padding: 10px 15px 0;
  overflow-y: scroll;
}

.drawer-sp .sp-nav {
  width: 100%;
  margin: auto;
}

.drawer-sp .sp-nav .g-nav-list li {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 1px #6D747E;
}

.drawer-sp .sp-nav .g-nav-list li a {
  position: relative;
  display: block;
  color: #6D747E;
  font-size: 18px;
	font-weight:bold;
}

.drawer-sp .sp-nav .g-nav-list li.sub > a::after,
.drawer-sp .sp-nav .g-nav-list li.sub > a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
	top: 12px;
	width: 14px;
	height: 2px;
	background-color: #6D747E;
}

.drawer-sp .sp-nav .g-nav-list li.sub > a::after {
	transform: rotate(90deg);
  transition: .3s;
}

.drawer-sp .sp-nav .g-nav-list li.sub.active > a::after {
	transform: rotate(0deg);
}

.drawer-sp .sp-nav .g-nav-list .dropdown-list {
  display: none;
}

.drawer-sp .sp-nav .g-nav-list .dropdown-list {
  border-top: solid 1px #6D747E;
  padding-top: 10px;
  margin-top: 10px;
}

.drawer-sp .sp-nav .g-nav-list .dropdown-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.drawer-sp .sp-nav .g-nav-list .dropdown-list li a {
  font-size: 16px;
  padding-left: 10px;
}
.drawer-sp .sp-nav .g-nav-list .dropdown-list li.sub a {
  font-size: 14px;
  padding-left: 20px;
}
.lower .header.scroll .drawer-sp {
  top: 53px;
  height: calc(100% - 53px);
}

/*
---------------------------------------------
footer
---------------------------------------------
*/

.footer {
  background: #808080;
  padding: 20px 0;
  color: white;
  text-align: center;
}

.footer .footer-nav .list {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.footer .footer-nav .list li:not(:last-child) {
  margin-right: 15px;
}

.footer .footer-nav .list li a {
  text-decoration: underline;
  color: white;
}

.footer .copyright {
  margin-top: 5px;
}

@media screen and (max-width: 767px) {
  .footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .footer .footer-nav .list {
    display: block;
  }

  .footer .footer-nav .list li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 5px;
  }

  .footer .footer-nav .list li a {
    font-size: 14px;
  }

  .footer .name {
    font-size: 14px;
  }

  .footer .copyright {
    font-size: 11px;
  }
}

/*
---------------------------------------------
common parts
---------------------------------------------
*/

.main {
  margin-top: 40px;
  margin-bottom: 60px;
  min-height: 500px;
}

@media screen and (max-width: 767px) {
  .main {
    margin-top: 110px;
    margin-bottom: 30px;
  }
}

/* scroll */

@media screen and (max-width: 767px) {
  .scroll {
    overflow-x: scroll;
  }
}

/* btn */

.btn-wrap {
  display: flex;
  gap: 20px;
}

.btn-wrap + .btn-wrap {
  margin-top: 15px;
}

.btn-wrap.right {
  justify-content: flex-end;
}

.btn-wrap.border {
  margin-top: 50px;
  padding-bottom: 10px;
  border-bottom: solid 1px #BBBCBC;
  margin-bottom: 10px;
}

.btn-back {
  background: #e8ecef;
  padding: 7px;
  border: solid 1px #ccc;
  border-radius: 4px;
  color: #777;
  text-align: center;
  width: 110px;
  display: inline-block;
  cursor: pointer;
  transition: .3s;
  font-size: 16px;
}

.btn-back:hover {
  opacity: .7;
}

.btn-invalid {
  border: none;
  color: white;
  background: gray;
  width: 260px;
  display: block;
  border-radius: 5px;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.3);
  cursor: pointer;
  transition: .3s;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
}

.btn-blue {
  border: none;
  color: white;
  background: rgb(0,143,187);
  background: linear-gradient(90deg, rgba(0,143,187,1) 0%, rgba(72,179,231,1) 50%, rgba(0,143,187,1) 100%);
  width: 260px;
  display: block;
  border-radius: 5px;
  box-shadow: 1px 1px 4px 0 rgba(0,0,0,.3);
  cursor: pointer;
  transition: .3s;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 5px;
}

.btn-blue:hover {
  opacity: .7;
}

.btn-blue.auto {
  margin: auto;
}

.btn-gray {
  border: solid 1px #BBBCBC;
  color: #6D747E;
  background: #E8ECEE;
  height: 35px;
  display: block;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
  font-size: 16px;
}

.btn-gray:hover {
  opacity: .7;
}

.btn-white {
  border: solid 1px #6D747E;
  color: #6D747E;
  font-size: 14px;
  padding: 2px 10px;
  box-shadow: 0 0 2px rgba(170,165,165, .75);
  border-radius: 5px;
}

.btn-black {
  background: #000;
  border: solid 1px #000;
  color: #fff;
  font-size: 14px;
  padding: 2px 10px;
  border-radius: 5px;
}

.btn-red {
  background: #C9151E;
  border: solid 1px #C9151E;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 2px 5px;
  border-radius: 5px;
  text-align: center;
  width: 140px;
  box-shadow: 0 0 5px rgba(170,165,165,.75);
}

.btn-red.left {
  margin-right: auto;
}

.btn-search {
  border: none;
  color: white;
  background: rgb(67,177,230);
  background: linear-gradient(180deg, rgba(67,177,230,1) 0%, rgba(31,159,208,1) 50%, rgba(3,144,189,1) 100%);
  width: 185px;
  height: 35px;
  display: block;
  border-radius: 5px;
  box-shadow: 4px 6px 7px 0 rgba(0,0,0,.4);
  cursor: pointer;
  transition: .3s;
  font-size: 16px;
  font-weight: bold;
}

.btn-search:hover {
  opacity: .7;
}

.btn-search.right {
  margin-left: auto;
}

.btn-search.center {
  margin: auto;
}

.btn-cancel {
  border: solid 1px #BBBCBC;
  color: #6D747E;
  background: #E8ECEE;
  width: 185px;
  height: 35px;
  display: block;
  border-radius: 5px;
  cursor: pointer;
  transition: .3s;
  font-size: 16px;
  font-weight: bold;
}

.btn-cancel:hover {
  opacity: .7;
}

.btn-dl {
  border: none;
  font-size: 12px;
  color: white;
  background: rgb(67,177,230);
  background: linear-gradient(180deg, rgba(67,177,230,1) 0%, rgba(31,159,208,1) 50%, rgba(3,144,189,1) 100%);
  padding: 6px;
  border-radius: 5px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .btn-back {
    padding: 5px;
  }

  .btn-wrap.right {
    justify-content: center;
  }

  .btn-blue {
    font-size: 16px;
    padding: 7px;
  }

  .btn-red {
    font-size: 16px;
    padding: 7px;
  }

  .btn-search.right {
    margin: auto;
  }

  .btn-cancel {
    margin: 15px auto 0;
  }

  .btn-wrap.border {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .btn-red.left {
    margin-right: 0;
  }
}

/* page title */

.page-title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.page-sub-title {
  font-weight: bold;
  margin-bottom: 15px;
}

@media screen and (max-width: 767px) {
  .page-title {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .page-sub-title {
    margin-bottom: 10px;
  }
}

/* pagenation */

.pagenation p {
  color: #6D747E;
  margin-bottom: 5px;
}

.pagenation .list {
  display: flex;
}

.pagenation .list .next,
.pagenation .list .prev {
  background: #CDCDCE;
  width: 21px;
  height: 30px;
  position: relative;
  display: block;
  border: solid 1px #CDCDCE;
}

.pagenation .list .next::before,
.pagenation .list .prev::before {
  position: absolute;
  top: 7px;
  left: 6px;
  content: "";
  border-left: solid 2px white;
  border-bottom: solid 2px white;
  width: 10px;
  height: 10px;
  transform: rotateZ(45deg);
  transition: .3s;
}

.pagenation .list .next:hover,
.pagenation .list .prev:hover {
  background: white;
}

.pagenation .list .next:hover::before,
.pagenation .list .prev:hover::before {
  border-left: solid 2px #CDCDCE;
  border-bottom: solid 2px #CDCDCE;
}

.pagenation .list .next::before {
  left: 1px;
  transform: rotateZ(-135deg);
}

.pagenation .list .num {
  color: #6D747E;
  border: solid 1px #CDCDCE;
  border-width: 1px 0 1px 1px;
  padding: 2px;
  display: block;
  transition: .3s;
  min-width: 24px;
  text-align: center;
}

.pagenation .list .num.active,
.pagenation .list .num:hover {
  background: #058fbe;
  color: white;
}

@media screen and (max-width: 767px) {
  .pagenation {
    margin-bottom: 20px;
  }

  .pagenation p {
    font-size: 14px;
  }

  .pagenation .list .next,
  .pagenation .list .prev {
    height: 27px;
  }

  .pagenation .list .next::before,
  .pagenation .list .prev::before {
    top: 6px;
  }

  .pagenation .list .num {
    font-size: 14px;
  }
}

/* form */

input[type=password],
input[type=email],
input[type=text] {
  border: solid 1px #aaa;
  border-radius: 5px;
  padding: 8px;
  width: 200px;
  box-shadow: inset 0 0 4px rgba(35,24,21,.4);
  color: #333;
}

input[type=text]::placeholder {
  color: #333;
  opacity: 1;
}

@-moz-document url-prefix(){
  input[type=email],
  input[type=text] {
    padding: 10px;
  }
}

input[type=email].lg,
input[type=text].lg {
  width: 420px;
}

.selectbox {
  display: block;
  position: relative;
  border: solid 1px #999;
  border-radius: 5px;
  overflow: hidden;
  width: 200px;
  box-shadow: inset 0 0 4px rgba(35,24,21,.4);
  padding: 2px 4px;
  background: white;
}

.selectbox.lg {
  width: 635px;
}

.selectbox::before {
  position: absolute;
  top: 9px;
  right: 10px;
  content: "";
  pointer-events: none;
  width: 8px;
  height: 8px;
  border-top: solid 2px #999;
  border-right: solid 2px #999;
  transform: rotate(135deg);
}

.selectbox select {
  appearance: none;
  width: 100%;
  padding: 6px;
  border: none;
  outline: 0;
  background: #fff;
  background-image: none;
  box-shadow: none;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  cursor: pointer;
}

.selectbox select.is-empty {
  color: #333;
}

.selectbox select option {
  background: white;
  color: #333;
}

.checkbox-wrap input[type=checkbox] {
  display: none;
}

.checkbox-wrap .checkbox {
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: auto;
  padding-left: 30px;
  font-size: 14px;
  font-weight: bold;
  color: white;
}

.checkbox-wrap .checkbox::before {
  background: #fff;
  border-radius: 3px;
  content: '';
  display: block;
  height: 16px;
  left: 5px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  width: 16px;
}

.checkbox-wrap .checkbox::after {
  border-right: 2px solid #6D747E;
  border-bottom: 2px solid #6D747E;
  content: '';
  display: block;
  height: 9px;
  left: 9px;
  margin-top: -8px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}

.checkbox-wrap input[type=checkbox]:checked + .checkbox::after {
  opacity: 1;
}

.checkbox-wrap .checkbox.cancel::before {
  background: #1E64CD;
  top: -5px;
}

.checkbox-wrap .checkbox.cancel::after {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: -4px;
}

@media screen and (max-width: 767px) {
  input[type=email],
  input[type=text] {
    margin-bottom: 10px;
    display: block;
    font-size: 16px;
    width: 100%;
  }

  input[type=email].lg,
  input[type=text].lg {
    width: 100%;
  }

  .selectbox {
    margin-bottom: 10px;
    width: 100%;
    flex: 1;
  }

  .selectbox.lg {
    width: 100%;
  }

  .selectbox select {
    font-size: 16px;
  }

  @-moz-document url-prefix(){
    .selectbox::before {
      top: 12px;
    }
  }

  .checkbox-wrap {
    margin-bottom: 10px;
  }
}

/* table */

.table {
  width: 100%;
  font-size: 14px;
  margin: 40px 0 50px;
}

.table tr {
  border-bottom: dashed 1px #CDCDCE;
}

.table td,
.table th {
  padding: 8px 0;
}

.table .status {
  font-size: 12px;
  color: #6D747E;
  text-align: center;
  padding: 6px 14px;
  border: solid 1px #6D747E;
  border-radius: 20px;
  display: inline-block;
  box-shadow: 0 0 5px rgba(170,165,165, .75);
  min-width: 102px;
}

.table .status.available {
  background: #00A0DF;
  color: white;
}

.table .status.reserve {
  background: #232288;
  color: white;
}

.table .status.confirm {
  background: #E51D2D;
  color: white;
  border: none;
}

.table .unread {
  color: #C9151E;
}

.table a {
  color: #1E64CD;
  text-decoration: underline;
}

.table a.link {
  font-weight: bold;
  text-decoration: none;
  position: relative;
  padding-right: 24px;
}

.table a.link::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 0;
  width: 20px;
  height: 20px;
  background: #4F74B5;
  border-radius: 50%;
}

.table a.link::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 7px;
  width: 7px;
  height: 7px;
  border-bottom: solid 2px white;
  border-right: solid 2px white;
  transform: rotateZ(-45deg);
}

.table .comp-state {
  border-radius: 5px;
  background: #969696;
  color: white;
  padding: 2px 7px;
  display: inline-block;
  font-size: 12px;
}

.table-info {
  width: 100%;
  color: #6D747E;
  margin-bottom: 60px;
}

.table-info th {
  background: #F1F1F1;
  width: 230px;
  padding: 10px 20px;
  border: solid 1px white;
  border-width: 1px 0 1px 1px;
}

.table-info td {
  padding: 10px 20px;
  border: solid 1px #E6E6E6;
}

@media screen and (max-width: 767px) {
  .table {
    width: 900px;
    margin: 20px 0 30px;
  }

  .table-info {
    margin-bottom: 30px;
    font-size: 14px;
  }

  .table-info th {
    display: block;
    width: 100%;
    padding: 10px;
  }

  .table-info td {
    display: block;
    padding: 10px;
  }
}

/* search-area */

.search-area {
  background: rgb(0,143,187);
  background: linear-gradient(90deg, rgba(0,143,187,1) 0%, rgba(72,179,231,1) 50%, rgba(0,143,187,1) 100%);
  padding: 20px 0 20px;
  margin-top: -20px;
}

.search-area .tilde,
.search-area .name {
  font-weight: bold;
  color: white;
}

.search-area .tilde {
  display: inline-block;
  margin: 0 3px;
}

.search-column {
  display: flex;
  width: 740px;
  margin: auto;
  align-items: center;
  gap: 20px;
}

.search-column + .search-column {
  margin-top: 15px;
}

.search-column.lg {
  width: 1070px;
}

.search-column .inner,
.search-column .wrap {
  display: flex;
  align-items: center;
}

.search-column .inner input[type=text] {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .search-area {
    padding: 20px;
    margin-top: 0;
  }

  .search-column {
    display: block;
    width: 100%;
  }

  .search-column.lg {
    width: 100%;
  }

  .search-area .name {
    margin-bottom: 10px;
  }

  .search-column .wrap {
    display: block;
  }
}

/* items-display */

.items-display {
  text-align: right;
  color: #6D747E;
  font-size: 14px;
  margin: 20px 0 50px;
}

.items-display p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.items-display input[type=text] {
  border: none;
  box-shadow: 0 0 5px rgba(170,165,165, .75);
  border-radius: 5px;
  padding: 4px 10px;
  display: inline-block;
  margin: 0 10px;
  width: 40px;
  height: 40px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .items-display {
    margin: 20px 0 10px;
  }
}

/* facility-detail */

.facility-detail {
  display: flex;
  width: 920px;
  margin: auto;
  justify-content: space-between;
}

.facility-detail .name {
  font-size: 22px;
}

.facility-detail .store {
  font-size: 22px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .facility-detail {
    display: block;
    width: 100%;
  }

  .facility-detail .store,
  .facility-detail .name {
    font-size: 18px;
  }

  .facility-detail .address,
  .facility-detail .area,
  .facility-detail .open-time {
    font-size: 14px;
  }
}

/* price-wrap */

.price-wrap {
  margin-top: 20px;
}

.price-wrap p {
  display: flex;
  font-size: 30px;
  font-weight: bold;
  align-items: baseline;
  position: relative;
  padding-left: 30px;
}

.price-wrap p span {
  color: white;
  font-size: 10px;
  width: 26px;
  height: 26px;
  background: #211715;
  display: grid;
  place-items: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 9px;
  font-weight: normal;
}

.price-wrap p::after {
  content: '円/日';
  font-size: 14px;
}

.price-wrap p.saturday {
  color: #5073b7;
}

.price-wrap p.saturday span {
  background: #5073b7;
}

.price-wrap p.sunday {
  color: #ca151e;
}

.price-wrap p.sunday span {
  background: #ca151e;
}

.price-wrap p.special {
  color: #9E0D82;
}

.price-wrap p.special span {
  background: #9E0D82;
}

@media screen and (max-width: 767px) {
  .price-wrap {
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .price-wrap p {
    font-size: 24px;
    padding-left: 26px;
  }

  .price-wrap p span {
    width: 22px;
    height: 22px;
    top: 6px;
  }

  .price-wrap p::after {
    font-size: 12px;
  }
}

/* calendar */

.calendar-wrap {
  width: 475px;
}

.calendar-wrap .calendar-btns {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.calendar-wrap .calendar-btns .btn-gray {
  width: 114px;
}

.calendar-wrap .note {
  margin-top: 15px;
}

.calendar .calendar-box {
  background: rgb(0,143,187);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  padding: 15px 15px 20px;
  margin-bottom: 15px;
  text-align: center;
}

.calendar .calendar-box .inner {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.calendar .calendar-box .inner a {
  color: white;
  position: relative;
}

.calendar .calendar-box .inner a.prev {
  padding-left: 20px;
}

.calendar .calendar-box .inner a.next {
  padding-right: 20px;
}

.calendar .calendar-box .inner a::before {
  position: absolute;
  content: '';
  width: 30px;
  height: 30px;
  border-top: solid 2px white;
  border-right: solid 2px white;
  position: absolute;
  top: 5px;
  transition: .3s;
}

.calendar .calendar-box .inner a.prev::before {
  transform: rotate(-135deg);
  left: 0px;
}

.calendar .calendar-box .inner a.next::before {
  transform: rotate(45deg);
  right: 0px;
}

.calendar .calendar-box .inner a:hover::before {
  opacity: .7;
}

.calendar .calendar-body {
  display: grid;
  grid-template-columns: repeat(7, calc(100% / 7));
  border: solid 1px #999;
  border-width: 0 1px 1px 0;
  text-align: center;
}

.calendar .calendar-body .week {
  border: solid 1px #999;
  border-width: 1px 0 0 1px;
  background: #ddd;
  padding: 5px 0 3px;
}

.calendar .calendar-body .day {
  border: solid 1px #999;
  border-width: 1px 0 0 1px;
  min-height: 50px;
  padding: 5px;
}

.calendar .calendar-body .day.sun,
.calendar .calendar-body .week.sun {
  background: #e99fa3;
  color: white;
}

.calendar .calendar-body .day.sat,
.calendar .calendar-body .week.sat {
  background: #d3edfb;
}

.calendar .calendar-body .day.facilityCalendarFocus,
.calendar .calendar-body .day.facilityCalendarFocus.today {
    background: orange;
}

.calendar .calendar-body .day.today {
  background: #FFF67F;
}

.calendar .calendar-body .day.pastDay {
  background: lightgray;
}

@media screen and (max-width: 767px) {
  .calendar-wrap {
    width: 100%;
  }

  .calendar-wrap .calendar-btns {
    margin-bottom: 10px;
  }

  .calendar-wrap .calendar-btns .btn-gray {
    width: auto;
  }

  .calendar .calendar-box {
    padding: 10px;
    margin-bottom: 10px;
  }

  .calendar .calendar-box .title {
    font-size: 14px;
  }

  .calendar .calendar-box .inner {
    font-size: 14px;
  }

  .calendar .calendar-box .inner a::before {
    width: 20px;
    height: 20px;
    top: -3px;
  }

  .calendar .calendar-body {
    font-size: 14px;
  }
}

/* total */

.total {
  border-top: solid 1px #BBBCBC;
  padding-top: 25px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.total p {
  display: flex;
  justify-content: flex-end;
  font-size: 22px;
  font-weight: bold;
  align-items: baseline;
}

.total p span {
  font-size: 40px;
}

@media screen and (max-width: 767px) {
  .total {
    padding-top: 10px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  .total p {
    font-size: 14px;
  }

  .total p span {
    font-size: 30px;
  }
}
