@charset "UTF-8";
:root {
  --common-bgcolor: rgba(62,65,75,0.9);
  --common-gradient: #292b35, #23282f;
  --common-fontfamily: "Noto Sans JP", 游ゴシック体, YuGothic, 游ゴシック, "Yu Gothic", ヒラギノ角ゴシック, "Hiragino Sans", メイリオ, Meiryo, sans-serif;
  --common-fontawesomefamily: "Font Awesome 6 Free";
  --common-fontsize-pc: 16px;
  --common-fontsize-sp: 16px;/* 12.5→16 入力時の拡大を防ぐ */
  --common-fontweight-regular: 400;
  --common-fontweight-medium: 500;
  --common-fontweight-bold: 700;
  --common-fontweight-black: 900;
  --common-transition-time: 0.2s;
  /* for Member */
  --member-maincolor: #16b3ff;
  --member-gradient: #16b3ff 0%, #00e682 100%;
  /* for Crew */
  --crew-maincolor: #ffffff;
  --crew-gradient: #8c6ee6 0%, #dc64f0 50%, #ffaaaa 100%;
  /* for Admin */
  --admin-maincolor: #ffffff;
  --admin-gradient: rgba(0,210,255,1) 0%, rgba(0,220,130,1) 50%, rgba(255,200,0,1) 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--common-fontfamily);
  font-size: var(--common-fontsize-pc);
  font-weight: var(--common-fontweight-regular);
  background-color: #000;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;

  margin-bottom: 150px;
}
@media screen and (max-width: 960px) {
  body {
    font-size: var(--common-fontsize-sp);
    background: linear-gradient(90deg, var(--common-gradient));

  margin-bottom: 60px;
  }
}
body.login {
  background-color: #000;
  background-image: url("../images/bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

@media screen and (max-width: 960px) {
  .for-pc {
    display: none !important;
  }
  .ttopbak{
    text-align: center!important;
  }
}

@media screen and (min-width: 961px) {
  .for-mb {
    display: none !important;
  }
}

.ttopbak{
  text-align: right;
}

.tcenter {
  text-align: center;
}

.tleft {
  text-align: left;
}

.tright {
  text-align: right;
}

.vtop {
  vertical-align: top;
}

.vtop {
  vertical-align: middle;
}

.vbottom {
  vertical-align: bottom;
}

.fullwidth {
  box-sizing: border-box;
  width: 100%;
}

.halfwidth {
  box-sizing: border-box;
  width: 50%;
}

.onethirdwidth {
  box-sizing: border-box;
  width: 33.3333333333%;
}

.quarterwidth {
  box-sizing: border-box;
  width: 25%;
}

.logo {
  text-align: center;
}
.logo .logo-img {
  aspect-ratio: 160.53/141.71;
}

.dialog {
  box-sizing: border-box;
  width: min(100%, 680px);
  background: var(--common-bgcolor);
  color: #fff;
  padding: 80px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 960px) {
  .dialog {
    padding: 25px;
  }
}
.dialog .logo {
  margin-bottom: 25px;
}
.dialog .page-title {
  margin-bottom: 75px;
}
@media screen and (max-width: 960px) {
  .dialog .page-title {
    margin-bottom: 40px;
  }
}
.dialog .message {
  text-align: center;
}

.tooltip {
  position: relative;
}
.tooltip:before {
  content: attr(tooltip-data);
  position: absolute;
  background-color: #fff;
  color: #000;
  text-align: center;
  padding: 5px 10px;
  transform: translateX(-50%);
  border-radius: 5px;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s;
  bottom: calc(100% + 16px);
  left: 50%;
  font-size: 70%;
  visibility: hidden;
  width: 200px;
  box-sizing: border-box;
  line-height: 1.2;
}
.tooltip:after {
  content: "";
  position: absolute;
  top: -16px;
  left: calc(50% - 8px);
  border-width: 8px;
  border-style: solid;
  opacity: 0;
  transition: opacity 0.5s;
  border-color: #fff transparent transparent transparent;
  visibility: hidden;
}
.tooltip:hover:before, .tooltip:hover:after {
  opacity: 1;
  visibility: visible;
}

.page-title {
  font-size: 28px;
  font-weight: var(--common-fontweight-bold);
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 960px) {
  .page-title {
    font-size: 23.5px;
  }
}

input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=date],
input[type=month],
input[type=time],
input[type=checkbox],

select,
textarea {
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  padding: 12px;
  font-size: var(--common-fontsize-pc);
  background: linear-gradient(0deg, var(--common-gradient));
  color: #fff;
}
input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=checkbox]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  font-family: var(--common-fontfamily);
  font-size: var(--common-fontsize-pc);
}
input[type=text]::placeholder,
input[type=password]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
input[type=date]::placeholder,
input[type=time]::placeholder,
input[type=checkbox]::placeholder,
select::placeholder,
textarea::placeholder {
  font-family: var(--common-fontfamily);
  font-size: var(--common-fontsize-pc);
}
@media screen and (max-width: 960px) {
  input[type=text],
  input[type=password],
  input[type=tel],
  input[type=email],
  input[type=date],
  input[type=time],
  input[type=checkbox],
  select,
  textarea {
    font-size: var(--common-fontsize-sp);
  }
  input[type=text]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=time]::-moz-placeholder, input[type=checkbox]::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
    font-size: var(--common-fontsize-sp);
  }
  input[type=text]::placeholder,
  input[type=password]::placeholder,
  input[type=tel]::placeholder,
  input[type=email]::placeholder,
  input[type=date]::placeholder,
  input[type=time]::placeholder,
  input[type=checkbox]::placeholder,
  select::placeholder,
  textarea::placeholder {
    font-size: var(--common-fontsize-sp);
  }
}
input[type=text].block,
input[type=password].block,
input[type=tel].block,
input[type=email].block,
input[type=date].block,
input[type=time].block,
input[type=checkbox].block,
select.block,
textarea.block {
  display: block;
  width: 100%;
  margin-bottom: 6px;
}
input[type=text] option,
input[type=password] option,
input[type=tel] option,
input[type=email] option,
input[type=date] option,
input[type=time] option,
input[type=checkbox] option,
select option,
textarea option {
  background: #fff;
  color: #000;
}

label {
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  label {
    font-size: 15px;
  }
}

input[type=date],
input[type=time] {
  position: relative;
}
input[type=date]::-webkit-datetime-edit,
input[type=time]::-webkit-datetime-edit {
  font-family: var(--common-fontfamily);
}
input[type=date]::-webkit-calendar-picker-indicator,
input[type=time]::-webkit-calendar-picker-indicator {
  background: transparent;
  z-index: 1;
}

input[type=date]::-webkit-date-and-time-value,
input[type=time]::-webkit-date-and-time-value {
  text-align: left;
}

input[type=date]::after,
input[type=time]::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}

input[type=date]::after {
  background-image: url(../images/icon-calendar.svg);
}

input[type=time]::after {
  background-image: url(../images/icon-time.svg);
}

input[type=checkbox] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 20px;
  cursor: pointer;
  margin-right: 30px;
  vertical-align: middle;
  position: relative;
}
input[type=checkbox]::before, input[type=checkbox]::after {
  content: "";
  display: block;
  position: absolute;
}
input[type=checkbox]::before {
  background: linear-gradient(0deg, var(--common-gradient));
  border-radius: 0%;
  border: 1px solid #9d9d9d;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
input[type=checkbox]::after {
  border-bottom: 3px solid #fff;
  border-left: 3px solid #fff;
  opacity: 0;
  height: 6px;
  width: 11px;
  transform: rotate(-45deg);
  top: 4px;
  left: 4px;
}
input[type=checkbox]:checked::after {
  opacity: 1;
}

input[type=radio] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  margin-right: 30px;
  vertical-align: middle;
  position: relative;
}
input[type=radio]::before, input[type=radio]::after {
  content: "";
  display: block;
  position: absolute;
}
input[type=radio]::before {
  background: linear-gradient(0deg, var(--common-gradient));
  border-radius: 0%;
  border: 1px solid #9d9d9d;
  border-radius: 9999px;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}
input[type=radio]::after {
  opacity: 0;
  height: 9px;
  width: 9px;
  border-radius: 9999px;
  top: -4px;
  left: 6px;
  background: var(--member-maincolor);
}
input[type=radio]:checked::after {
  opacity: 1;
}

button {
  background-color: var(--member-maincolor);
  font-family: var(--common-fontfamily);
  font-weight: var(--common-fontweight-medium);
  box-sizing: border-box;
  border: none;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
}
@media screen and (max-width: 960px) {
  button {
    font-size: 15px;
  }
}
button.negative {
  background-color: #c5c5c5 !important;
  color: #000 !important;
}
button.block {
  display: block;
  width: 100%;
  padding: 10px;
}
@media screen and (max-width: 960px) {
  button.block {
    max-width: 100%;
  }
}
button.inline {
  padding-left: 1.5em;
  padding-right: 1.5em;
}
button.form-submit {
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  button.form-submit {
    margin-top: 30px;
  }
}

a {
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

#login {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loginform .form-wrapper {
  width: min(100%, 360px);
  margin-left: auto;
  margin-right: auto;
}
#loginform .logo img {
  width: 160px;
}
@media screen and (max-width: 960px) {
  #loginform .logo img {
    width: 96px;
  }
}

.sidemargin {
  padding-left: 15px;
  padding-right: 15px;
}

@media screen and (max-width: 960px) {
  .nav-logout a {
    font-weight: var(--common-fontweight-medium);
    padding: 12px 32px;
  }
}
.nav-logout a img {
  width: 26px;
  margin-right: 17px;
}

#header {
  box-sizing: border-box;
  width: 353px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(75deg, #373748 0%, #000 50%, #373748 100%);
  padding-right: 3px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#header:after {
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background: linear-gradient(0deg, #3e4349 0%, #292b35 50%, #3e4349 100%);
  position: fixed;
  top: 0;
  left: 350px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  #header {
    overflow: visible;
    width: 100%;
    height: 55px;
    z-index: 9;
  }
  #header:after {
    content: "";
    display: block;
    width: 100vw;
    height: 2px;
    background: linear-gradient(0deg, #000 0%, #64686d 50%, #000 100%);
    position: absolute;
    top: unset;
    left: 0;
    right: unset;
    bottom: 0;
    z-index: 9;
  }
}
@media screen and (max-width: 960px) {
  #header .header-logo-wrap {
    background: linear-gradient(75deg, #373748 0%, #000 50%, #373748 100%);
    position: relative;
    z-index: 9;
  }
}
#header .header-link-totop {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin-top: 40px;
}
@media screen and (max-width: 960px) {
  #header .header-link-totop {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 10px;
    margin-top: 0;
  }
}
#header .header-logo {
  /*        margin-bottom: 50px;*/
}
@media screen and (max-width: 960px) {
  #header .header-logo {
    margin-bottom: 0;
  }
}
#header .header-sysname {
  font-size: 24.5px;
  font-weight: 900;
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  #header .header-sysname {
    font-size: 22.5px;
  }
}
#header .header-nav-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}
@media screen and (max-width: 960px) {
  #header .header-nav-wrap {
    display: block;
    margin-top: 0;
  }
}
#header .header-nav-toggle {
  box-sizing: border-box;
  background: transparent;
  border: none;
  width: 52px;
  height: 52px;
  padding: 0 15px;
  z-index: 9;
  position: absolute;
  top: 0;
  right: 0;
}
#header .header-nav-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 9999px;
  margin: 7px 0;
  transition: all var(--common-transition-time);
  transform-origin: 0 0;
}
#header .header-nav-toggle.active .bar:nth-of-type(1) {
  width: 32px;
  transform: rotate(45deg);
}
#header .header-nav-toggle.active .bar:nth-of-type(2) {
  opacity: 0;
}
#header .header-nav-toggle.active .bar:nth-of-type(3) {
  margin-top: 10px;
  margin-left: -2px;
  width: 32px;
  transform: rotate(-45deg);
}
#header .header-nav {
  color: #fff;
  transition: all 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media screen and (max-width: 960px) {
  #header .header-nav {
    display: block !important;
    background: #0e232b;
    position: absolute;
    top: -100dvh;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 100dvh;
  }
}
#header .header-nav.active {
  top: 55px;4.
}
#header .header-nav a {
  color: #fff;
}
#header .header-nav-main {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 24px;/*28*/
}
@media screen and (max-width: 960px) {
  #header .header-nav-main {
    font-size: 20px;
overflow-y: scroll;
height: 70vh;
  }
}
#header .header-nav-main .toggle {
  display: block;
  padding-left: 40px;
  padding-top: 16px;/*20*/
  padding-bottom: 16px;/*20*/
  cursor: pointer;
  position: relative;
  border-bottom: 1px solid #acacac;
}
@media screen and (max-width: 960px) {
  #header .header-nav-main .toggle {
    background: #333;
    padding: 12px 32px;
  }
}
#header .header-nav-main .toggle:after {
  content: "";
  background-image: url(../images/angle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 5px;
  height: 10px;
  position: absolute;
  right: 14px;
  top: calc(50% - 5px);
  transition: all var(--common-transition-time);
}
@media screen and (max-width: 960px) {
  #header .header-nav-main .toggle:after {
    width: 9px;
    height: 16px;
  }
}
#header .header-nav-main .toggle.active:after {
  transform: rotateZ(90deg);
}
#header .header-nav-sub {
  font-size: 20px;/*26*/
  margin-left: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
/*  display: none;
  border-right: 8px solid #16b3ff;*/
}
@media screen and (max-width: 960px) {
  #header .header-nav-sub {
    border-right: none;
    border-bottom: 1px solid #fff;
    display: none;
  }

#header .header-nav-sub.active {
  display: block;
}
}

#header .header-nav-sub.active {
  display: block;
}
#header .header-nav-sub li {
  position: relative;
}
#header .header-nav-sub li a {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 25px;
}
@media screen and (max-width: 960px) {
  #header .header-nav-sub li a {
    gap: 10px;
    font-size: 20px;
    padding: 6px 32px;
  }
}
#header .header-nav-sub li a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f1ba";
  font-weight: 900;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  #header .header-nav-sub li a:before {
    font-size: 18px;
  }
}
#header .header-nav-sub li:hover, #header .header-nav-sub li.current {
  background: #333;
}
@media screen and (max-width: 960px) {
  #header .header-nav-sub li:first-of-type a {
    padding-top: 12px;
  }
}
@media screen and (max-width: 960px) {
  #header .header-nav-sub li:last-of-type a {
    padding-bottom: 12px;
  }
}
#header .header-nav-footer {
  font-size: 14px;
  list-style: none;
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 960px) {
  #header .header-nav-footer {
    margin: 0;
    padding: 18px 0 0 0;
  }
}
@media screen and (max-width: 960px) {
  #header .header-nav-footer .nav-logout {
    font-size: 20px;
  }
  #header .header-nav-footer .nav-logout a {
    color: #929292;
    display: block;
  }
}
#header .header-nav-footer .nav-logout img {
  width: 26px;
  margin-right: 17px;
}
#header .nav-changepw {
  color: #fff;
}
@media screen and (max-width: 960px) {
  #header .nav-changepw {
    font-size: 20px;
    font-weight: var(--common-fontweight-medium);
    padding: 12px 32px;
  }
}

#main-contents {
  margin-left: 353px;


}
@media screen and (max-width: 960px) {
  #main-contents {
    margin-top: 55px;
    margin-left: 0;
  }
}

#main-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: linear-gradient(0deg, var(--common-gradient));
  color: #fff;
  padding: 20px 42px 20px 30px;
  position: relative;
}
@media screen and (max-width: 960px) {
  #main-header {
    flex-direction: column;
    justify-content: center;
    padding: 0;
  }
}
#main-header:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #3e4349 0%, #292b35 50%, #3e4349 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 960px) {
  #main-header:after {
    top: 0;
    bottom: unset;
  }
}

#page-title {
  margin: 0;
}
@media screen and (max-width: 960px) {
  #page-title {
    order: 2;
    text-align: center;
    padding: 38px 0 30px;
  }
}

#page-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  #page-status {
    display: block;
    text-align: center;
    order: 1;
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    position: relative;
  }
  #page-status:after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3e4349 0%, #292b35 50%, #3e4349 100%);
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

#page-login {
  font-size: 16px;
}
#page-login .login-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
@media screen and (max-width: 960px) {
  #page-login .login-stat {
    justify-content: center;
    width: 100%;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  #page-login .login-stat .login-name {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
  }
  #page-login .login-stat .login-name:after {
    content: "";
    background-image: url(../images/angle.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 5px;
    height: 10px;
    transition: all var(--common-transition-time);
  }
}
@media screen and (max-width: 960px) and (max-width: 960px) {
  #page-login .login-stat .login-name:after {
    width: 9px;
    height: 16px;
  }
}
@media screen and (max-width: 960px) {
  #page-login .login-stat .login-name.active:after {
    transform: rotateZ(90deg);
  }
}

@media screen and (min-width: 961px) {
  .page-links-wrap {
    display: block !important;
  }
}
@media screen and (max-width: 960px) {
  .page-links-wrap {
    height: auto;
    display: none;
  }
}

#page-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 960px) {
  #page-links {
    box-sizing: border-box;
    overflow: hidden;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 960px) {
  #page-links .nav-logout {
    font-size: var(--common-fontsize-sp);
    padding-bottom: 20px;
  }
}
#page-links .nav-logout a {
  color: #fff;
}
#page-links .nav-logout img {
  width: 20px;
  margin-right: 12px;
}

.btn-changepw a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 55px;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .btn-changepw a {
    width: 200px;
    height: 30px;
  }
}
.btn-changepw a:before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  right: 2px;
  background: linear-gradient(0deg, var(--common-gradient));
  z-index: -1;
  border-radius: 8px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
}
.btn-changepw a:after {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  background: linear-gradient(90deg, var(--member-gradient));
  z-index: -2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.btn-changestatus a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 55px;
  background: var(--member-maincolor);
  color: #fff !important;
  text-align: center;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .btn-changestatus a {
    width: 200px;
    height: 30px;
  }
}
.btn-changestatus a:after {
  content: "";
  background-image: url(../images/angle.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 5px;
  height: 10px;
  position: absolute;
  right: 14px;
  top: calc(50% - 5px);
  transition: all var(--common-transition-time);
}
@media screen and (max-width: 960px) {
  .btn-changestatus a:after {
    right: 7px;
  }
}

#main-body {
  box-sizing: border-box;
  max-width: 1076px;
  padding-top: 38px;
  padding-left: 36px;
  padding-right: 36px;
  color: #fff;
}

.pd16{
  padding-left: 16px!important;
  padding-right: 16px!important;
  padding-bottom:16px;
  padding-top: 10px!important;
  margin-top:-40px;
}

@media screen and (max-width: 960px) {
  #main-body {
    padding-top: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.page-summary {
  margin: 0;
  font-size: 20px;
  font-weight: var(--common-fontweight-regular);
}
@media screen and (max-width: 960px) {
  .page-summary {
    order: 3;
    display: block;
    text-align: center;
    padding: 0;
    font-size: 13px;
  }
}

.notice-wrap {
  display: flex;
  background: #ffc800;
  border: 2px solid #fff;
  border-radius: 20px;
  align-items: center;
  margin-bottom: 26px;
}
@media screen and (max-width: 960px) {
  .notice-wrap {
    flex-direction: column;
    border-radius: 10px;
    align-items: unset;
    position: relative;
  }
  .notice-wrap .notice-icon {
    position: absolute;
    width: 52px;
    top: calc(50% - 26px);
    left: 15px;
  }
  .notice-wrap .notice-icon img {
    width: 100%;
  }
}
.notice-wrap .notice-head {
  padding: 18px 24px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 960px) {
  .notice-wrap .notice-head {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    padding: 0;
  }
}
.notice-wrap .notice-title {
  font-size: 22px;
  font-weight: var(--common-fontweight-bold);
  color: #000;
}
@media screen and (max-width: 960px) {
  .notice-wrap .notice-title {
    position: relative;
    width: 100%;
    font-size: 15px;
    padding: 10px 10px 10px 90px;
  }
  .notice-wrap .notice-title:after {
    content: "";
    background-image: url(../images/angle-black.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 8px;
    height: 15px;
    position: absolute;
    right: 14px;
    top: calc(50% - 7.5px);
  }
}
.notice-wrap .notice-body {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
  font-weight: var(--common-fontweight-medium);
  color: #000;
}
@media screen and (max-width: 960px) {
  .notice-wrap .notice-body {
    font-size: 12.5px;
    padding: 10px 10px 10px 90px;
  }
}

.nw_nm {background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(41, 43, 53, 0), rgba(35, 40, 47, 0.3)), var(--common-bgcolor);border:0;border-radius: 10px;}
.notice-wrap .nt_nm {color:white;}
.notice-wrap .nb_nm {color:white;}


.common-message {
  display: flex;
  background: #fff;
  border: 1px solid #fff;
  border-radius: 20px;
  align-items: center;
  color: #000 !important;
}
@media screen and (max-width: 960px) {
  .common-message {
    flex-direction: column;
    border-radius: 10px;
    align-items: unset;
    position: relative;
  }
  .common-message .message-icon {
    position: absolute;
    width: 52px;
    top: calc(50% - 26px);
    left: 15px;
  }
  .common-message .message-icon img {
    width: 100%;
  }
}
.common-message .message-head {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(0, 0, 0, 0.1);
  padding: 12px;
}
@media screen and (max-width: 960px) {
  .common-message .message-head {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    padding: 0;
  }
}
.common-message .message-title {
  font-size: 18px;
  font-weight: var(--common-fontweight-medium);
}
@media screen and (max-width: 960px) {
  .common-message .message-title {
    position: relative;
    width: 100%;
    font-size: 15px;
    padding: 10px 10px 10px 90px;
  }
  .common-message .message-title:after {
    content: "";
    background-image: url(../images/angle-black.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 8px;
    height: 15px;
    position: absolute;
    right: 14px;
    top: calc(50% - 7.5px);
  }
}
.common-message .message-body {
  padding: 12px;
}
@media screen and (max-width: 960px) {
  .common-message .message-body {
    font-size: 12.5px;
    padding: 10px 10px 10px 90px;
  }
}

.content-block {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(41, 43, 53, 0), rgba(35, 40, 47, 0.3)), var(--common-bgcolor);
  background-blend-mode: screen;
  border-radius: 10px;
  color: #fff;
  margin-top: 30px;
}

.content-head {
  border-bottom: 1px solid #1d1f2a;
  padding: 20px 42px;/*28 42*/
  color: #fff;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .content-head {
    display: block;
    padding: 20px 10px;
  }
}
.content-head .content-title {
  margin: 0;
  font-size: 20px;/*40px*/
  font-weight: var(--common-fontweight-bold);
}

@media screen and (max-width: 960px) {
  .content-head .content-title {
    font-size: 20px;
    text-align: center;

  }
}


.content-body {
  padding: 28px 42px;/* ★28px 42px★ */
}
@media screen and (max-width: 960px) {
  .content-body {
    padding: 25px 5px 25px 5px;/* ★25 10 25 10★ */
  }
}
.content-body + .content-body {
  border-top: 1px solid #1d1f2a;
}

.table {
  border-collapse: separate;
  box-sizing: border-box;
  border-spacing: 10px;/*20*/
  font-size: 20px;/*26*/
}

.table .iwaku{	
border: 1px solid #9d9d9d;
}

@media screen and (max-width: 960px) {
  .table {
    font-size: 15px;
    border-spacing: 5px;
  }
}
.table.fullwidth {
  table-layout: fixed;
}
.table.small, .table.small tbody th, .table.small tbody td {
  padding: 5px;
  font-size: 12px;
}
@media screen and (max-width: 960px) {
  .table.small, .table.small tbody th, .table.small tbody td {
    padding: 2px;
    font-size: 10px;
  }
}
.table.small, .table.small *, .table.small tbody th, .table.small tbody th *, .table.small tbody td, .table.small tbody td * {
  font-size: 16px;/* 12 PC */
}
@media screen and (max-width: 960px) {
  .table.small, .table.small *, .table.small tbody th, .table.small tbody th *, .table.small tbody td, .table.small tbody td * {
    font-size: 14px;/* 10 SP */
  }
}
.table tbody th, .table tbody td {
  border-radius: 10px;
  padding: 5px;/*23*/
}
@media screen and (max-width: 960px) {
  .table tbody th, .table tbody td {
    border-radius: 5px;
    padding: 5px;
  }
}
.table tbody th {
  font-weight: var(--common-fontweight-medium);
}
.table tbody td {
  font-size: 16px;/*20*/
}
@media screen and (max-width: 960px) {
  .table tbody td {
    font-size: 15px;
  }
}
.table.list {
  border-spacing: 1px 8px;
}
.table.list tbody th,
.table.list tbody td {
  background: linear-gradient(0deg, var(--common-gradient));
  border-radius: 0;
}
.table.list tbody tr th:first-child,
.table.list tbody tr td:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.table.list tbody tr th:last-child,
.table.list tbody tr td:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.hch td{height:36px!important;}

.table.calendar {
  border-spacing: 4px 10px;
}
@media screen and (max-width: 960px) {
  .table.calendar {
    border-spacing: 2px 5px;
  }
}
.table.calendar .sun {
  color: #d651a0;
}
.table.calendar .sat {
  color: #16b3ff;
}
.table.calendar tbody td {
  padding: 0;
  border: 1px solid #929292;
  color: #000;
}
.table.calendar tbody td.day {
  border: none;
  background: #ebebeb;
  cursor: pointer;
}
.table.calendar tbody td.day.disabled {
  background: #929292;
  cursor: default;
}
.table.calendar tbody td.day.today {
  background: #00e682;
}
.table.calendar tbody td.day .day-wrap {
  display: flex;
  flex-direction: column;
  min-height: 140px;
}
@media screen and (max-width: 960px) {
  .table.calendar tbody td.day .day-wrap {
    min-height: 70px;
  }
}
.table.calendar tbody td.day .day-head {
  border-bottom: 3px solid #4d4d4d;
  text-align: center;
  padding: 12px;/*12*/
  line-height: 1;
  font-weight: var(--common-fontweight-medium);
}
@media screen and (max-width: 960px) {
  .table.calendar tbody td.day .day-head {
    padding: 6px;
    font-size: 10px;
    border-width: 1.5px;
  }
}
.table.calendar tbody td.day .day-body {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.table.calendar .reserve-stat {
  background: #fff;
  color: #16b3ff;
  border: 2px solid #16b3ff;
  border-radius: 10px;
  font-size: 18px;
  font-weight: var(--common-fontweight-medium);
  text-align: center;
  line-height: 1;
  padding: 10px;
}
@media screen and (max-width: 960px) {
  .table.calendar .reserve-stat {
    border-width: 1px;
    border-radius: 5px;
    font-size: 9px;
    padding: 4px;
  }
}
.table.calendar .reserve-stat.wait {
  background: #ff1d25;
  border-color: #fff;
  color: #fff;
}
.table.calendar .reserve-stat.ng {
  background: #ff7800;
  border-color: #fff;
  color: #fff;
}
.table.calendar .reserve-stat.app {
  background: #16b3ff;
  border-color: #fff;
  color: #fff;
}
.table .cell-time {
  width: 2.5em;
  padding: 0;
}
.table .cell-empty {
  background: linear-gradient(90deg, var(--common-gradient));
}
.table .cell-empty:after {
  content: "　";
}
.table .cell-active {
  padding: 0;
}
.table .cell-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  background: var(--member-maincolor);
  color: #fff;
  border-radius: 10px;
  padding: 5px;/*23*/
}

.table .normalday{
  background: #16b3ff!important;
}

.table .alertday{
  background: #ff1d25!important;
}

@media screen and (max-width: 960px) {
  .table .cell-inner {
    border-radius: 5px;
    padding: 5px;
  }
}

#footer {
  background: #000;
  color: #fff;
  padding: 30px;
  margin-left: 353px;
/*  margin-top: 55px;*/

  bottom: 0px;
  width: calc(100% - 353px);
  position: fixed;
}
@media screen and (max-width: 960px) {
  #footer {
    margin-left: 0;
    padding: 15px 10px;

  bottom: 0px;
  width: 100%;
  position: fixed;
  }
}
#footer .copyright {
  margin: 0;
  text-align: center;
  line-height: 1;
  font-size: 20px;
}
@media screen and (max-width: 960px) {
  #footer .copyright {
    font-size: 10px;
  }
}

.form-item-group {
  margin-bottom: 15px;
}
.form-item-group:last-of-type {
  margin-bottom: 0;
}

.form-item-subject {
  font-weight: var(--common-fontweight-bold);
  margin-bottom: 10px;
}
@media screen and (max-width: 960px) {
  .form-item-subject {
    font-size: 15px;
  }
}

.form-items {
  margin-bottom: 10px;
}

.form-items-hol {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.form-items-hol.center {
  justify-content: center;
}

/* tab */
.tab-contents {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}

.tab-label {
  color: White;
  background: #000;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px 0.5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: 1px solid #fff;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  flex: 1;
}

.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.tab-content > * {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.tab-switch:checked + .tab-label {
  background: #00e682;
}

.tab-switch:checked + .tab-label + .tab-content {
  height: auto;
  overflow: auto;
  opacity: 1;
}

.tab-switch {
  display: none;
}

.tab-separated .tab-label {
  color: White;
  background: linear-gradient(0deg, var(--common-gradient));
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 10px 0.5em;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: none;
  border-bottom: 0;
  border-radius: 5px;
  border: 1px solid #4d4d4d;
  flex: 1;
}

/* for member
****************************************************************************************************/
body.member input[type=text], body.member input[type=password], body.member input[type=tel], body.member input[type=email], body.member input[type=date], body.member input[type=time], body.member select, body.member textarea {
  background: linear-gradient(0deg, var(--common-gradient));
  color: #fff;
}
body.member option {
  background: #fff;
  color: #000;
}
body.member a {
  color: var(--member-maincolor);
}
body.member button {
  background-color: var(--member-maincolor);
  color: #fff;
}
body.member .header-sysname {
  color: #fff;
}

body.member .tab-switch:checked + .tab-label {
  background-color: var(--member-maincolor);
}

@media screen and (max-width: 960px) {
  body.member .header-sysname {
    background-image: linear-gradient(90deg, var(--member-gradient));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
body.member .header-nav-sub {
  border-right-color: var(--member-maincolor);
}
body.member .nav-changepw {
  background: linear-gradient(90deg, var(--member-gradient));
}
body.member .btn-changepw a:after {
  background: linear-gradient(90deg, var(--member-gradient));
}

/* for crew
****************************************************************************************************/
body.crew input[type=text], body.crew input[type=password], body.crew input[type=tel], body.crew input[type=email], body.crew input[type=date], body.crew input[type=time], body.crew select, body.crew textarea {
  background: linear-gradient(0deg, var(--common-gradient));
  color: #fff;
}
body.crew option {
  background: #fff;
  color: #000;
}
body.crew a {
  color: var(--crew-maincolor);
}
body.crew button {
  background-color: var(--crew-maincolor);
  color: #000;
}
body.crew .header-sysname {
  color: #fff;
}
@media screen and (max-width: 960px) {
  body.crew .header-sysname {
  color: #fff;
  }
}
body.crew #header .header-nav-sub {
  border-right-color: var(--crew-maincolor);
}
body.crew .nav-changepw {
  background: linear-gradient(90deg, var(--crew-gradient));
}
body.crew .btn-changepw a:after {
  background: linear-gradient(90deg, var(--crew-gradient));
}

/* for admin
****************************************************************************************************/
body.admin input[type=text], body.admin input[type=password], body.admin input[type=tel], body.admin input[type=email], body.admin input[type=date], body.admin input[type=time], body.admin select, body.admin textarea {
  background: linear-gradient(0deg, var(--common-gradient));
  color: #fff;
}
body.admin option {
  background: #fff;
  color: #000;
}
body.admin a {
  color: var(--admin-maincolor);
}
body.admin button {
  background-color: var(--admin-maincolor);
  color: #000;
}
body.admin .header-sysname {
  color: #fff;
}
@media screen and (max-width: 960px) {
  body.admin .header-sysname {
  color: #fff;
  }
}
body.admin #header .header-nav-sub {
  border-right-color: var(--admin-maincolor);
}
body.admin .nav-changepw {
  background: linear-gradient(90deg, var(--admin-gradient));
}
body.admin .btn-changepw a:after {
  background: linear-gradient(90deg, var(--admin-gradient));
}

/* 追加 pc,sp共通 */

/* 2列テーブル */
/* フォームあり */
.ta1 {	
	width: 100%;
	font-size: var(--common-fontsize-pc);
	border-collapse:collapse;
}

.ta1 th, .ta1 td {	
/*border: 1px solid #ffffff;*/
}

.ta1 th {	
/*	width: 30%;*/
	text-align: right;
	padding: 5px 5px;
 vertical-align: top;
 width:28%;"
}

.ta1 td {	
	padding: 5px 5px;
	word-break: break-all;

/*	background: linear-gradient(0deg, var(--common-gradient));*/
}




/* 検索 */
.ta2 {	
	width: 100%;
	font-size: var(--common-fontsize-pc);
	border-collapse:collapse;

 background: linear-gradient(0deg, var(--common-gradient));
	border-radius: 10px;
 margin-bottom:10px;
}

.ta2 th, .ta2 td {	
/*border: 1px solid #ffffff;*/
}

.ta2 th {	
/*	width: 30%;*/
	text-align: left;
	padding: 15px 5px 5px 15px;
}

.ta2 td {	
	padding: 5px 15px 15px 15px;
	word-break: break-all;
	border-radius: 10px;
/*	background: linear-gradient(0deg, var(--common-gradient));*/
}

.ta2 input{	
border: 1px solid #9d9d9d;
}

.ta2 textarea,select{	
border: 1px solid #9d9d9d;
}

/* 確認 */

.ta3 {	
	width: 100%;
	font-size: var(--common-fontsize-pc);
}

.ta3 th, .ta3 td {	
/*border: 1px solid #ffffff;*/
 margin-bottom:5px;
}

.ta3 th {	
/*	width: 30%;*/
	text-align: right;
	padding: 10px;
/* vertical-align: top;*/
 width:28%;
}

.ta3 td {	
	padding: 10px;
	word-break: break-all;
	border-radius: 0px 10px 10px 0px;
	background: linear-gradient(0deg, var(--common-gradient));
}

.ta3 input{	
border: 1px solid #9d9d9d;
}

.ta3 textarea,select{	
border: 1px solid #9d9d9d;
}


/* 項目小 */

.ta3s {	
	width: 100%;
	font-size: var(--common-fontsize-pc);
}

.ta3s th, .ta3s td {	
/*border: 1px solid #ffffff;*/
 margin-bottom:5px;
}

.ta3s th {	
/*	width: 30%;*/
	text-align: right;
	padding: 10px;
/* vertical-align: top;*/
 width:21%;
}

.ta3s td {	
	padding: 10px;
	word-break: break-all;
	border-radius: 0px 10px 10px 0px;
	background: linear-gradient(0deg, var(--common-gradient));
}

.ta3s input{	
border: 1px solid #9d9d9d;
}

.ta3s textarea,select{	
border: 1px solid #9d9d9d;
}


/* 項目小2 */

.ta3s2 {	
	width: 100%;
	font-size: var(--common-fontsize-pc);
}

.ta3s2 th, .ta3s2 td {	
/*border: 1px solid #ffffff;*/
 margin-bottom:5px;
}

.ta3s2 th {	
/*	width: 30%;*/
	text-align: right;
	padding: 10px;
/* vertical-align: top;*/
 width:5%;
}

.ta3s2 td {	
	padding: 10px;
	word-break: break-all;
	border-radius: 0px 10px 10px 0px;
	background: linear-gradient(0deg, var(--common-gradient));
}

.ta3s2 input{	
border: 1px solid #9d9d9d;
}

.ta3s2 textarea,select{	
border: 1px solid #9d9d9d;
}



/* 項目 1:8:1 */

.ta181 {	
	width: 100%;
	font-size: var(--common-fontsize-pc);
}

.ta181 th, .ta181 td {	
/*border: 1px solid #ffffff;*/
 margin-bottom:5px;
}

.ta181 th {	
/*	width: 30%;*/
	text-align: right;
	padding: 10px;
/* vertical-align: top;*/
 width:5%;
}

.ta181 td:nth-child(odd) {	
	padding: 10px;
	word-break: break-all;
	width:12%;
	border-radius: 0px;
	background: none;
 text-align:center!important;
 white-space: nowrap;
}

.ta181 td {	
	padding: 10px;
 width:76%;
	word-break: break-all;
	border-radius: 0px 10px 10px 0px;
	background: linear-gradient(0deg, var(--common-gradient));
}

.ta181 input{	
border: 1px solid #9d9d9d;
}

.ta181 textarea,select{	
border: 1px solid #9d9d9d;
}

.ta181 td:nth-child(odd) button{	
padding:5px 15px;
display: block;
margin: auto;
white-space: nowrap;
}


/* 検索 */
.ta4 {	
	width: 100%;
	font-size: var(--common-fontsize-pc);
	border-collapse:collapse;

 background: linear-gradient(0deg, var(--common-gradient));
	border-radius: 10px;
 margin-bottom:10px;
}

.ta4 th, .ta4 td {	
/*border: 1px solid #ffffff;*/
}

.ta4 th {	
	width: 26%;
	text-align: center;
}

.ta4 td {	
	word-break: break-all;
	border-radius: 10px;
 padding:10px 10px 5px 1px;
/*	background: linear-gradient(0deg, var(--common-gradient));*/
}

.ta4 input{	
border: 1px solid #9d9d9d;
}

.ta4 textarea{	
border: 1px solid #9d9d9d;
}


/* ドライバー空 */
.ta5 {	
	border-collapse:collapse;
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
	background: linear-gradient(0deg, var(--common-gradient));
	position: relative;
}

.ta5 th, .ta5 td {	
	border: 1px solid #ccc;

}


.ta5 th {	
	padding: 10px 5px;
	text-align:center;
	position: sticky;
	top: 0px;
	background: linear-gradient(0deg, var(--common-gradient));
}

.ta5 th:before {	
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
}

.ta5 td {	
	padding: 10px 5px;
	word-break: break-all;
	text-align:center;
}


/* カレンダー表 */
.ta6 {	
	border-collapse:collapse;
	table-layout: fixed;
	width: 100%;
	margin: 0 auto 30px;
	background: linear-gradient(0deg, var(--common-gradient));
	position: relative;
}

.ta6 th, .ta6 td {	
	border: 1px solid #ccc;
}


.ta6 th {	
	padding: 5px 5px;
	text-align:center;
	width:40px;
	position: sticky;
	top: 0px;
	background: linear-gradient(0deg, var(--common-gradient));
}

.ta6 th:before {	
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
}

.ta6 td {	
	padding: 5px 5px;
	word-break: break-all;
	text-align:center;
}

.ta6 button{
  padding-top: 2px;
  padding-bottom: 2px;
}

/* 項目幅なし */

.tafrpad {
  padding: 28px 28px;
}

.tafr {   
    width: 100%;
    font-size: var(--common-fontsize-pc);
}

.tafr th, .tafr td {   
 margin-bottom:5px;
}

.tafr th {   
    text-align: right;
    padding: 10px;
}

.tafr td {   
    padding: 10px;
    word-break: break-all;
    border-radius: 0px 10px 10px 0px;
    background: linear-gradient(0deg, var(--common-gradient));
}

.tafr input{   
border: 1px solid #9d9d9d;
}

.tafr textarea,select{   
border: 1px solid #9d9d9d;
}



/* スクロールテーブル */
.scroll_table {
  max-width: 2000px;
  max-height: 600px;
  overflow-x: auto;
  overflow-y: auto;
}

.scroll_table::-webkit-scrollbar {
  height: 10px; /* スクロールバーの高さ */
}

.scroll_table::-webkit-scrollbar-thumb {
  background: #aaa; /* ツマミの色 */

}

.scroll_table::-webkit-scrollbar-track {
  background: #ddd; /* トラックの色 */
}


/* トグルボタン */
.toggle-button {
    display: flex;
    align-items: center;
    position: relative;
    width: 100px;
    height: 50px;
    border-radius: 50px;
    box-sizing: content-box;
    background-color: #75bbff33;
    cursor: pointer;
    transition: background-color .4s;
}

.toggle-button:has(:checked) {
    background-color: #ff8d8d33;
}

.toggle-button::before {
    position: absolute;
    left: 5px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #75bbff;
    content: '';
    transition: left .4s;
}

.toggle-button:has(:checked)::before {
    left: 50px;
    background-color: #ff8d8d;
}

.toggle-button::after {
    position: absolute;
    left: 26px;
    transform: translateX(-50%);
    color: #fff;
    font-weight: 600;
    font-size: .9em;
    content: '不要';
    transition: left .4s;
}

.toggle-button:has(:checked)::after {
    left: 71px;
    content: '必要';
}

.toggle-button input {
    display: none;
}

.mukoumenu{
pointer-events: none;
background: grey;
}


.daiji {
  background: red;
  border-radius: 10px;
  color: #fff;
}

.daiji2 {
  background: red;
  border-radius: 10px 10px 0px 0px;
  color: #fff;
}

#daijia{
  color: #fff;
    display: block;
    width: 100%;
    height: 100%;
}

#daijib {
  background: red;
  color: #fff;
}

#gyo1{
padding-bottom:10px;
}

.unk{background-color:#ffffcc!important;color:black;}
.yas{background-color:#999999;}
.dyas{background-color:#ff8989;}

.photos {
    list-style: none;
  }


/* タイトル部分の件数 */

.content-head2 {
  border-bottom: 1px solid #1d1f2a;
  padding: 20px 42px;/*28 42*/
  color: #fff;
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .content-head2 {
    display: block;
    padding: 20px 10px;
  }
}
.content-head2 .content-title2 {
  margin: 0;
  font-size: 20px;/*40px*/
  font-weight: var(--common-fontweight-bold);
}

@media screen and (max-width: 960px) {
  .content-head2 .content-title2 {
    font-size: 20px;
margin-left:50px;;
top:14px;
position:absolute;

  }
}

.titken {
  position:absolute;	right:10px;top:24px;
}

@media screen and (max-width: 960px) {
  .titken {
    text-align: center;
position:absolute;	right:10px;top:44px;
  }
}


/*ベース*/
.toggles {
	display: none;
}
.Label {		/*タイトル*/
  background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(41, 43, 53, 0), rgba(35, 40, 47, 0.3)), var(--common-bgcolor);
  border-radius: 10px ;
  margin-bottom:-22px;
  padding: 20px 42px;
	display: block;
	color: #fff;
  font-size: 20px;/*40px*/
  font-weight: var(--common-fontweight-bold);
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 3px );
	left: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	overflow: hidden;
}
.toggles:checked + .Label + .content {	/*開閉時*/
	height: auto;
	transition: all .3s;
}
.toggles:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

.reten {
margin: 0 auto;
  content: '';
  width: 10px;
  height: 5px;
  border-left: 2px solid #25AF01;
  border-bottom: 2px solid #25AF01;
  transform: rotate(-45deg);
}



.notice-wrap2 {
  display: flex;
  border-radius: 20px;
  align-items: center;
  margin-bottom: 26px;
}
@media screen and (max-width: 960px) {
  .notice-wrap2 {
    flex-direction: column;
    border-radius: 10px;
    align-items: unset;
    position: relative;
  }
  .notice-wrap2 .notice-icon {
    position: absolute;
    width: 52px;
    top: calc(50% - 26px);
    left: 15px;
  }
  .notice-wrap2 .notice-icon img {
    width: 100%;
  }
}
.notice-wrap2 .notice-head2 {
  padding: 18px 24px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width: 960px) {
  .notice-wrap2 .notice-head2 {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
    padding: 0;
  }
}
.notice-wrap2 .notice-title2 {
  font-size: 22px;
  font-weight: var(--common-fontweight-bold);
  color: #fff;
}
@media screen and (max-width: 960px) {
  .notice-wrap2 .notice-title2 {
    position: relative;
    width: 100%;
    font-size: 15px;
    padding: 10px 10px 10px 90px;
  }
  .notice-wrap2 .notice-title2:after {
    content: "";
    background-image: url(../images/angle-black.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 8px;
    height: 15px;
    position: absolute;
    right: 14px;
    top: calc(50% - 7.5px);
  }
}
.notice-wrap2 .notice-body2 {
  padding-left: 20px;
  padding-right: 20px;
  font-size: 20px;
  font-weight: var(--common-fontweight-medium);
  color: #fff;
}
@media screen and (max-width: 960px) {
  .notice-wrap2 .notice-body2 {
    font-size: 12.5px;
    padding: 10px 10px 10px 90px;
  }
}

.dyas td{background:#ff8989!important;}

.cmidashi {
  color:red;font-size:20px;font-weight:bold;
}

@media screen and (max-width: 960px) {
  .cmidashi {
    font-size:20px;
  }
} 
