@charset "UTF-8";
:root {
  --main-color: var(--main-import);
  --accent-color: var(--accent-import);
  --hover-color: var(--hover-import);
  --background-color: var(--background-import);
  --success-color: var(--success-import);
  --caution-color: var(--caution-import);
  --caution-background-color: var(--caution-background-import);
  --black: var(--black-import);
  --white: var(--white-import);
  --gray-01: var(--gray-01-import);
  --gray-02: var(--gray-02-import);
  --gray-03: var(--gray-03-import);
  --gray-text: var(--gray-text-import);
}

.c-footer {
  padding: 30px 30px 62px;
  color: var(--white);
  background-color: var(--black);
}
@media screen and (max-width: 350px) {
  .c-footer {
    padding: 30px 20px 62px;
  }
}

.c-footer__nav {
  max-width: 660px;
  margin: 0 auto;
}
@media screen and (min-width: 767px) {
  .c-footer__nav {
    text-align: center;
  }
}
.c-footer__nav li {
  font-size: 1.3rem;
  line-height: 1.5;
}
.c-footer__nav li + li {
  margin-top: 12px;
}
.c-footer__nav li a {
  opacity: 0.6;
}
.c-footer__nav li a:hover {
  text-decoration: underline;
}
.c-footer__nav li a[target] {
  position: relative;
}
.c-footer__nav li a[target]::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 4px;
  background-image: url(../image/icon/external-links.svg);
  background-repeat: no-repeat;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.c-form {
  max-width: 660px;
  margin: 0 auto;
  padding: 35px 20px;
  background-color: var(--white);
}
@media screen and (max-width: 350px) {
  .c-form {
    padding: 35px 15px;
  }
}
.c-form .c-button {
  margin-top: 25px;
}

.c-wrapper__small .c-form {
  padding: 25px;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 350px) {
  .c-wrapper__small .c-form {
    padding: 25px 15px;
  }
}

.c-form__error {
  margin-bottom: 30px;
  font-weight: bold;
  color: var(--caution-color);
}
@media screen and (min-width: 767px) {
  .c-form__error {
    display: grid;
    place-items: center;
  }
}

.c-form__bottom {
  margin-top: 30px;
}
.c-form__bottom label {
  margin: 0 auto 35px;
}

.c-content .c-form__unit {
  margin-top: 12px;
}

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

.c-form__unit-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 8px;
}
.c-form__unit-label label,
.c-form__unit-label span:not(.c-form__unit-label-required) {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-form__unit-label label,
  .c-form__unit-label span:not(.c-form__unit-label-required) {
    font-size: 1.5rem;
  }
}

.c-form__unit-label-required {
  display: inline-block;
  margin-left: 6px;
  padding: 3px 5px 4px;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--white);
  background-color: var(--caution-color);
  border-radius: 1px;
}

.c-form__unit-text {
  margin-bottom: 8px;
  line-height: 1.75;
  color: var(--gray-text);
}

.c-form__unit-select {
  position: relative;
}
.c-form__unit-select::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}
@media screen and (max-width: 350px) {
  .c-form__unit-select::after {
    right: 15px;
  }
}
.c-form__unit-select select {
  width: 100%;
  padding: 13px 13px 17px;
  border: 1px solid var(--gray-02);
  border-radius: 2px;
  color: var(--gray-03);
}
@media screen and (max-width: 350px) {
  .c-form__unit-select select {
    padding: 13px 13px 15px;
  }
}

.c-form__unit-select[data-width=medium] {
  width: 96px;
}
@media screen and (max-width: 350px) {
  .c-form__unit-select[data-width=medium] {
    width: 85px;
  }
}

.c-form__unit-select[data-width=small] {
  width: 74px;
}
@media screen and (max-width: 350px) {
  .c-form__unit-select[data-width=small] {
    width: 65px;
  }
}

.c-form__unit-radio {
  margin-top: 14px;
}
.c-form__unit-radio label {
  display: block;
  width: 100%;
}
.c-form__unit-radio label + label {
  margin-top: 8px;
}
.c-form__unit-radio label > input[type=radio] {
  display: block;
  opacity: 0;
  position: absolute;
}
.c-form__unit-radio label > input[type=radio]:checked + span::after {
  display: block;
}
.c-form__unit-radio label > input[type=radio]:focus + span {
  color: var(--black);
}
.c-form__unit-radio label > input[type=radio]:focus + span::before {
  border: solid 1px var(--accent-color);
}
.c-form__unit-radio label > span {
  position: relative;
  padding-left: 27px;
  color: var(--gray-text);
  cursor: pointer;
}
.c-form__unit-radio label > span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gray-02);
  border-radius: 50%;
  background-color: var(--white);
}
.c-form__unit-radio label > span::after {
  display: none;
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.c-form__unit-radio[data-row=single] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-form__unit-radio[data-row=single] label {
  display: inline-block;
  width: auto;
}
.c-form__unit-radio[data-row=single] label:not(:last-child) {
  margin-right: 20px;
}
.c-form__unit-radio[data-row=single] label + label {
  margin-top: 0;
}

.c-form__unit-check {
  margin-top: 15px;
}
.c-form__unit-check label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}
.c-form__unit-check label + label {
  margin-top: 12px;
}
.c-form__unit-check label > input[type=checkbox] {
  display: block;
  opacity: 0;
  position: absolute;
}
.c-form__unit-check label > input[type=checkbox]:checked + span::after {
  display: block;
}
.c-form__unit-check label > input[type=checkbox]:focus + span {
  color: var(--black);
}
.c-form__unit-check label > input[type=checkbox]:focus + span::before {
  border: solid 1px var(--accent-color);
}
.c-form__unit-check label > span {
  position: relative;
  padding-left: 27px;
  color: var(--gray-text);
}
.c-form__unit-check label > span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--gray-02);
  border-radius: 1px;
  background-color: var(--white);
}
.c-form__unit-check label > span::after {
  display: none;
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid var(--accent-color);
  border-left: 2px solid var(--accent-color);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-form__unit-check[data-check=small] {
  margin-top: 10px;
}
.c-form__unit-check[data-check=small] label > span {
  padding-left: 25px;
  font-size: 1.3rem;
}
.c-form__unit-check[data-check=small] label > span::before {
  top: 1px;
  width: 18px;
  height: 18px;
}
.c-form__unit-check[data-check=small] label > span:after {
  width: 11px;
  height: 6px;
}

.c-form__unit-check[data-check=medium] {
  margin: 0 0 10px;
}
.c-form__unit-check[data-check=medium] label > span {
  padding-left: 32px;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--black);
}
.c-form__unit-check[data-check=medium] label > span a {
  color: var(--accent-color);
  text-decoration: underline;
}
.c-form__unit-check[data-check=medium] label > span a:hover {
  text-decoration: none;
}
.c-form__unit-check[data-check=medium] label > span::before {
  top: 1px;
}
.c-form__unit-check[data-check=medium] label > span::after {
  top: 7px;
}

.c-form__unit-check[data-check=large] {
  margin: 0 0 10px;
}
.c-form__unit-check[data-check=large] label {
  padding-left: 27px;
  text-indent: -27px;
}
.c-form__unit-check[data-check=large] label > span {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
  color: var(--black);
}
@media screen and (max-width: 350px) {
  .c-form__unit-check[data-check=large] label > span {
    font-size: 1.5rem;
  }
}
.c-form__unit-check[data-check=large] label > span::before {
  top: 2px;
}
.c-form__unit-check[data-check=large] label > span::after {
  top: 8px;
}

.c-form__unit textarea {
  width: 100%;
  min-height: 120px;
  padding: 15px;
  background-color: var(--white);
  border: 1px solid var(--gray-02);
  border-radius: 2px;
  resize: vertical;
}
.c-form__unit textarea::-webkit-input-placeholder {
  color: var(--gray-03);
}
.c-form__unit textarea::-moz-placeholder {
  color: var(--gray-03);
}
.c-form__unit textarea:-ms-input-placeholder {
  color: var(--gray-03);
}
.c-form__unit textarea::-ms-input-placeholder {
  color: var(--gray-03);
}
.c-form__unit textarea::placeholder {
  color: var(--gray-03);
}

.c-form__unit-input input:not([type=checkbox]) {
  width: 100%;
  padding: 15px 14px 17px;
  font-size: 1.5rem;
  line-height: 1.4;
  background-color: var(--white);
  border: 1px solid var(--gray-02);
  border-radius: 2px;
}
@media screen and (max-width: 350px) {
  .c-form__unit-input input:not([type=checkbox]) {
    padding: 15px 12px 17px;
  }
}
.c-form__unit-input input:not([type=checkbox])::-webkit-input-placeholder {
  color: var(--gray-03);
}
.c-form__unit-input input:not([type=checkbox])::-moz-placeholder {
  color: var(--gray-03);
}
.c-form__unit-input input:not([type=checkbox]):-ms-input-placeholder {
  color: var(--gray-03);
}
.c-form__unit-input input:not([type=checkbox])::-ms-input-placeholder {
  color: var(--gray-03);
}
.c-form__unit-input input:not([type=checkbox])::placeholder {
  color: var(--gray-03);
}

.c-form__unit-input[data-width=medium] {
  width: 167px;
}

.c-form__unit-input[data-tupe=postal-code] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__unit-input[data-tupe=postal-code] > span {
  margin-right: 8px;
  font-size: 1.5rem;
}
.c-form__unit-input[data-tupe=postal-code] input {
  width: 158px;
}

.c-form__unit-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
.c-form__unit-wrap > * {
  width: 50%;
}
.c-form__unit-wrap label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--gray-text);
}

.c-form__unit-error {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: bold;
  color: var(--caution-color);
}

.c-form__heading {
  position: relative;
  margin: 32px 0 25px;
  padding-top: 34px;
  text-align: center;
}
.c-form__heading::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 1px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background-color: var(--gray-02);
}
.c-form__heading h2, .c-form__heading h3 {
  font-size: 1.8rem;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-form__heading h2, .c-form__heading h3 {
    font-size: 1.7rem;
  }
}
.c-form__heading p {
  margin-top: 10px;
  line-height: 1.75;
  color: var(--gray-text);
}

.c-form__unit-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media screen and (max-width: 350px) {
  .c-form__unit-date {
    gap: 10px;
  }
}

.c-form__unit-date-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-form__unit-date-item label {
  margin-left: 5px;
  font-size: 1.5rem;
  color: var(--gray-text);
}

.c-form__unit-credit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.c-form__unit-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 1.3rem;
  text-decoration: underline;
}
.c-form__unit-link:hover {
  text-decoration: none;
}

.c-header {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--header-height);
  padding: 10px 13px 9px 10px;
  background-color: var(--white);
  border-top: 1px solid var(--gray-01);
  border-bottom: 1px solid var(--gray-01);
}

.c-header__logo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-header__logo a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-header__logo a p,
.c-header__logo a h1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: calc(100vw - 176px);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.4;
}

.c-header__logo-image {
  width: 38px;
  height: 38px;
  margin-right: 10px;
}
.c-header__logo-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-header__nav {
  --header-nav-width: 325px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  visibility: hidden;
  position: fixed;
  z-index: 13;
  top: 60px;
  right: calc(-1 * var(--header-nav-width));
  bottom: 0;
  width: 0;
  padding: 45px 15px;
  background-color: var(--background-color);
  opacity: 0;
  overflow: auto;
  -webkit-transition: right 300ms, opacity 100ms, visibility 100ms;
  transition: right 300ms, opacity 100ms, visibility 100ms;
}
.c-header__nav[aria-hidden=false] {
  visibility: visible;
  right: 0;
  opacity: 1;
  max-width: var(--header-nav-width);
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

.c-header__nav-name {
  margin-bottom: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.c-header__nav-name span {
  font-size: 1.3rem;
}

.c-header__nav-logout {
  margin-top: 27px;
  padding-left: 4px;
}
.c-header__nav-logout a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.35;
  color: var(--gray-text);
}
.c-header__nav-logout a svg {
  margin-right: 12px;
}

.c-header__button {
  position: relative;
  width: 100px;
  padding: 11px 13px 12px;
  text-align: left;
  background-color: var(--main-color);
  border-radius: 2px;
}
.c-header__button::before, .c-header__button::after {
  content: "";
  position: absolute;
  right: 13px;
  display: block;
  width: 12px;
  height: 1px;
  background-color: var(--white);
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-header__button::before {
  top: calc(50% - 2px);
}
.c-header__button::after {
  top: calc(50% + 2px);
}
.c-header__button[aria-expanded=true]::before {
  top: calc(50% - 1px);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-header__button[aria-expanded=true]::after {
  top: calc(50% - 1px);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-header__button span {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.c-header__background {
  display: block;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black);
  z-index: 1;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.c-header__background[aria-hidden=false] {
  visibility: visible;
  opacity: 0.85;
  z-index: 10;
}
.c-header__background[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
}

.c-layer {
  position: relative;
  z-index: 1;
  padding: 30px 0 60px;
}
@media screen and (min-width: 767px) {
  .c-layer {
    max-width: 660px;
    margin: 0 auto;
    padding: 45px 0 60px;
  }
}

.c-modal,
.c-modal__load {
  position: fixed;
  z-index: 5;
  top: 50%;
  left: 50%;
}
.c-modal::after,
.c-modal__load::after {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: #222222;
  opacity: 0.85;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.c-modal__load::after {
  background-color: #222222;
  opacity: 0.98;
}
.c-modal__load .c-modal__load-wrapper {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 280px;
}

div[data-dialog-modal=close] {
  display: none;
}

div[data-dialog-modal=open] {
  display: block;
}

.c-modal__wrapper {
  position: relative;
  padding: 30px 25px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90vw;
}
@media screen and (min-width: 767px) {
  .c-modal__wrapper {
    width: auto;
  }
}
@media screen and (max-width: 350px) {
  .c-modal__wrapper {
    padding: 30px 15px;
  }
}

.c-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 14px;
  height: 14px;
  padding: 10px;
}
@media screen and (max-width: 350px) {
  .c-modal__close {
    top: 12px;
    right: 12px;
  }
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  display: inline-block;
  width: 19px;
  height: 1px;
  background-color: black;
  border-radius: 1px;
}
.c-modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-modal__close span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.c-modal__content {
  text-align: center;
}
.c-modal__content h2 {
  margin-bottom: 14px;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 350px) {
  .c-modal__content h2 {
    font-size: 1.7rem;
  }
}
.c-modal__content em {
  font-weight: bold;
  color: var(--caution-color);
}
.c-modal__content p {
  line-height: 1.75;
  text-align: left;
}
.c-modal__content .c-button {
  margin-top: 20px;
}
.c-modal__content button {
  display: inline-block;
  margin-top: 20px;
  text-decoration: underline;
}
.c-modal__content button:hover {
  text-decoration: none;
}

.c-modal__list {
  margin-top: 15px;
}
.c-modal__list li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
  text-align: left;
  line-height: 1.6;
}
.c-modal__list li::before {
  content: "・";
}
.c-modal__list li + li {
  margin-top: 10px;
}

.c-modal__load-img {
  text-align: center;
}
.c-modal__load-img img {
  display: block;
  margin: 0 auto;
}

.c-modal__load-message {
  margin-top: 22px;
}
.c-modal__load-message p {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.75;
  color: var(--white);
}

.c-particulars {
  padding: 30px 0 33px 20px;
  background-color: var(--white);
  border-top: 1px solid var(--gray-02);
}
@media screen and (min-width: 767px) {
  .c-particulars {
    max-width: 690px;
    margin: 30px auto 0;
  }
}
.c-particulars > *:not(.c-particulars__table) {
  padding-right: 20px;
}

.c-particulars__lead {
  margin: 30px 0;
}

.c-particulars__info {
  margin-bottom: 8px;
}
.c-particulars__info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.4;
}
.c-particulars__info > div dt {
  margin-right: 6px;
  color: var(--gray-text);
}

.c-particulars__name {
  font-size: 1.6rem;
  line-height: 1.4;
}
@media screen and (max-width: 350px) {
  .c-particulars__name {
    font-size: 1.5rem;
  }
}

.c-particulars__table {
  margin-top: 20px;
  overflow-x: scroll;
}
.c-particulars__table table {
  margin-right: 20px;
  border-collapse: collapse;
  line-height: 1.65;
  border-top: 1px solid var(--gray-02);
  border-left: 1px solid var(--gray-02);
}
.c-particulars__table table th,
.c-particulars__table table td {
  border-right: 1px solid var(--gray-02);
  border-bottom: 1px solid var(--gray-02);
}
.c-particulars__table table th {
  padding: 3px 5px 4px;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gray-text);
  background-color: var(--gray-01);
  white-space: nowrap;
}
.c-particulars__table table th:first-child,
.c-particulars__table table th:nth-child(5) {
  width: 200px;
  min-width: 200px;
}
.c-particulars__table table td:not(:first-child, :nth-child(5)) {
  white-space: nowrap;
  text-align: center;
}
.c-particulars__table table td {
  min-width: 45px;
  padding: 8px 10px 11px;
  margin-inline: auto;
  background-color: var(--white);
}

.c-particulars__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}
.c-particulars__price h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-text);
}
.c-particulars__price span {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-particulars__price span {
    font-size: 2rem;
  }
}
.c-particulars__price span small {
  display: inline-block;
  margin-left: 2px;
  font-size: 1.1rem;
}

.c-particulars__bottom {
  margin-bottom: 60px;
}

.c-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 25px;
}
@media screen and (max-width: 350px) {
  .c-wrapper {
    padding: 0 15px;
  }
}

.c-wrapper__large {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 30px;
}
@media screen and (max-width: 350px) {
  .c-wrapper__large {
    padding: 0 15px;
  }
}

.c-wrapper__small {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 15px;
}
.c-wrapper__small p[data-align=center] {
  text-align: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 767px) {
  .c-layer :is(.c-wrapper, .c-wrapper__small) {
    padding: 0;
  }
}

.c-accordion {
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.c-accordion__trigger {
  display: block;
  width: 100%;
  padding: 22px 25px 26px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
@media screen and (max-width: 350px) {
  .c-accordion__trigger {
    padding: 22px 15px 26px;
    font-size: 1.5rem;
  }
}
.c-accordion__trigger:hover {
  background-color: var(--gray-02);
}
.c-accordion__trigger[aria-expanded=true] {
  background-color: var(--gray-02);
}
.c-accordion__trigger[aria-expanded=true] svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-accordion__trigger svg {
  position: relative;
  top: 2px;
  width: 8px;
  height: 14px;
  margin-right: 11px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-accordion__trigger svg path {
  stroke: var(--accent-color);
}

.c-accordion__content {
  margin-bottom: 45px;
}

.c-accrodion__content-box {
  padding: 20px 25px;
  border-top: 1px solid var(--gray-02);
}
@media screen and (max-width: 350px) {
  .c-accrodion__content-box {
    padding: 20px 15px;
  }
}
.c-accrodion__content-box p[data-text=label] {
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.35;
}
.c-accrodion__content-box span[data-text=e-mail] {
  display: block;
  line-height: 1.75;
}
.c-accrodion__content-box a {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--accent-color);
  text-decoration: underline;
}
.c-accrodion__content-box a:hover {
  text-decoration: none;
}
.c-accrodion__content-box ul {
  line-height: 1.75;
}
.c-accrodion__content-box ul li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.c-accrodion__content-box ul li::before {
  content: "・";
}

.c-button a,
.c-button button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 325px;
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 23px 12px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
  color: var(--white);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.c-button a:hover,
.c-button button:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}
@media screen and (max-width: 350px) {
  .c-button a,
  .c-button button {
    max-width: 290px;
  }
}
.c-button a svg,
.c-button button svg {
  margin-right: 10px;
}
.c-button[data-disabled=true] a,
.c-button[data-disabled=true] button {
  background-color: var(--gray-03);
  border: 2px solid var(--gray-03);
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
}
.c-button[data-disabled=true] a:hover,
.c-button[data-disabled=true] button:hover {
  -webkit-filter: none;
          filter: none;
}
.c-button[data-disabled=true] a svg path,
.c-button[data-disabled=true] button svg path {
  fill: var(--white);
}
.c-button[data-disabled=true] a svg g rect,
.c-button[data-disabled=true] button svg g rect {
  fill: var(--white);
}
.c-button[data-color=light] a,
.c-button[data-color=light] button {
  color: var(--accent-color);
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-button[data-color=light] a:hover,
.c-button[data-color=light] button:hover {
  background-color: var(--gray-01);
}
.c-button[data-color=light] a svg path,
.c-button[data-color=light] button svg path {
  fill: var(--accent-color);
}
.c-button[data-color=light] a svg g rect,
.c-button[data-color=light] button svg g rect {
  fill: var(--accent-color);
}
.c-button[data-color=all-white] a,
.c-button[data-color=all-white] button {
  color: var(--black);
  background-color: var(--white);
  border-color: var(--white);
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.c-button[data-color=all-white] a:hover,
.c-button[data-color=all-white] button:hover {
  background-color: var(--gray-02);
  border-color: var(--gray-02);
}
.c-button[data-size=medium] a,
.c-button[data-size=medium] button {
  max-width: 295px;
  padding: 0 15px;
}
.c-button[data-color=caution] a,
.c-button[data-color=caution] button {
  border-color: var(--caution-color);
  background-color: var(--caution-color);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.c-button[data-color=caution] a:hover,
.c-button[data-color=caution] button:hover {
  -webkit-filter: brightness(85%);
          filter: brightness(85%);
}
.c-button[data-btn-status=bg-white] a {
  color: var(--accent-color);
  background-color: var(--white);
  border: 2px solid var(--accent-color);
}

.c-button + .c-button {
  margin-top: 15px;
}

.c-button__choice a,
.c-button__choice button {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 28px 14px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  background-color: var(--accent-color);
  border-radius: 4px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.c-button__choice a:hover,
.c-button__choice button:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}
@media screen and (max-width: 350px) {
  .c-button__choice a,
  .c-button__choice button {
    padding: 8px 15px 12px;
    font-size: 1.5rem;
  }
}
.c-button__choice[data-size=medium] a {
  width: 100px;
  padding: 8px 10px 11px;
  font-size: 1.5rem;
}
@media screen and (max-width: 350px) {
  .c-button__choice[data-size=medium] a {
    width: auto;
    white-space: nowrap;
  }
}
.c-button__choice[data-btn-status=not-accepted] a {
  background-color: transparent;
  color: #666;
  -webkit-box-shadow: none;
          box-shadow: none;
  pointer-events: none;
}

.c-table + .c-button__choice {
  margin-top: 15px;
}

.c-button__prev {
  margin-top: 35px;
}
.c-button__prev a {
  font-size: 1.4rem;
  line-height: 1.35;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .c-button__prev a:hover {
    text-decoration: none;
  }
}
.c-button__prev a svg {
  width: 8px;
  height: 14px;
  margin-right: 10px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.c-button__prev a svg path {
  stroke: var(--main-color);
}

.c-lead + .c-button__prev {
  margin-top: 75px;
}

.c-button__text {
  margin-top: 20px;
  text-align: center;
}
.c-button__text a,
.c-button__text button {
  text-decoration: underline;
}
.c-button__text a:hover,
.c-button__text button:hover {
  text-decoration: none;
}

.c-calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-calendar table {
  width: 100%;
  max-width: 660px;
  margin: 20px auto 0;
  background-color: var(--white);
  border-collapse: collapse;
  border-top: 1px solid var(--gray-02);
  border-left: 1px solid var(--gray-02);
}
.c-calendar table th,
.c-calendar table td {
  border-right: 1px solid var(--gray-02);
  border-bottom: 1px solid var(--gray-02);
}
.c-calendar table th:not(:first-child) {
  padding: 8px 0 11px;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  background-color: var(--black);
}
.c-calendar table th:not(:first-child)[data-day=sat] {
  background-color: #0C99FF;
}
.c-calendar table th:not(:first-child)[data-day=sun] {
  background-color: #EF5385;
}
.c-calendar table th:not(:first-child) small {
  display: block;
  margin-top: 3px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.1rem;
}
.c-calendar table td:first-child {
  width: 20%;
  padding: 14px 0 15px;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .c-calendar table td:first-child {
    width: 23%;
    padding: 14px 14px 15px;
    text-align: left;
  }
}
.c-calendar table td:not(:first-child) {
  position: relative;
  width: 11.4285714286%;
  text-align: center;
}
@media screen and (min-width: 767px) {
  .c-calendar table td:not(:first-child) {
    width: 11%;
  }
}
.c-calendar table td:not(:first-child):empty {
  padding: 7px 0 5px;
  color: var(--gray-03);
  background-color: var(--gray-01);
}
.c-calendar table td:not(:first-child):empty::before {
  display: none;
}
.c-calendar table td:not(:first-child):empty::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  display: inline-block;
  width: 8px;
  height: 2px;
  background-color: var(--gray-03);
}
.c-calendar table td:not(:first-child):empty[data-reserve=true] {
  background-color: var(--caution-background-color);
}
.c-calendar table td:not(:first-child) button {
  position: relative;
  width: 100%;
  padding: 7px 0 5px;
}
.c-calendar table td:not(:first-child) button::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
}
.c-calendar table td:not(:first-child) button span {
  position: relative;
  display: block;
  margin-top: 5px;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}
.c-calendar table td:not(:first-child) button span::before {
  content: "";
  display: inline-block;
  width: 9px;
  aspect-ratio: 1/1;
  margin-right: 3px;
  background-image: url(../image/icon/human_02.svg);
  background-size: contain;
}
.c-calendar table td:not(:first-child) button span:empty {
  margin-top: 0;
}
.c-calendar table td[data-reserve=true] {
  background-color: var(--caution-background-color);
}

.c-calendar table[data-reservation=private] td:not(:first-child) span::before {
  display: none;
}

.c-reservation__annotation + .c-calendar table {
  margin: 20px auto 0;
}

.c-card-coupon__price {
  margin: 3px 0 6px;
  font-size: 1.3rem;
  line-height: 1.65;
  font-weight: bold;
  color: var(--accent-color);
}
.c-card-coupon__price em {
  margin: 0 2px;
  font-size: 1.8rem;
  line-height: 1.35;
}

.c-card-coupon__expiration {
  display: block;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--gray-text);
}
.c-card-coupon__expiration + .c-card__bottom {
  margin-top: 10px;
}
.c-card-coupon__expiration + .c-card-coupon__expiration {
  margin-top: -2px;
}

.c-card-facility__name {
  font-size: 1.8rem;
  line-height: 1.35;
}

.c-card-facility__image {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.c-card-facility__image > * {
  aspect-ratio: 1/1;
  border-radius: 2px;
  overflow: hidden;
}
.c-card-facility__image > * img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card-facility__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}
.c-card-facility__bottom p {
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--gray-text);
}
.c-card-facility__bottom .c-button__choice {
  margin-left: auto;
}

.c-card-lead {
  margin: 30px 0 10px;
  line-height: 1.75;
}
.c-card-lead strong {
  color: var(--caution-color);
}
.c-card-lead a,
.c-card-lead button {
  color: var(--accent-color);
  text-decoration: underline;
}
.c-card-lead a:hover,
.c-card-lead button:hover {
  text-decoration: none;
}

.c-card-news {
  display: block;
  padding: 18px 20px 20px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
@media (any-hover: hover) {
  .c-card-news:hover p {
    text-decoration: none;
  }
}
.c-card-news + .c-card-news {
  margin-top: 15px;
}
.c-card-news time {
  display: inline-block;
  margin-bottom: 5px;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
  color: var(--gray-text);
}
.c-card-news p {
  line-height: 1.45;
  text-decoration: underline;
}

.c-card-note {
  margin: 15px 0 30px;
  line-height: 1.4;
}
.c-card-note p + p {
  margin-top: 5px;
}

.c-card-participatory__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-card-participatory__time[data-color=gray] {
  color: var(--gray-03);
}
.c-card-participatory__time p {
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.35;
}
.c-card-participatory__time p[data-text=small] {
  margin: 0 3px 0 1px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
}

.c-content .c-card-participatory__time p:not([data-text=small]) {
  font-size: 1.6rem;
}

.c-card-participatory__staff {
  margin-top: 7px;
}
.c-card-participatory__staff dt {
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--gray-text);
}
.c-card-participatory__staff dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7px;
}

.c-card-participatory__staff-image {
  width: 65px;
  aspect-ratio: 1/1;
  margin-right: 20px;
  border-radius: 2px;
  overflow: hidden;
}
.c-card-participatory__staff-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 350px) {
  .c-card-participatory__staff-image {
    width: 60px;
    margin-right: 10px;
  }
}

.c-card-participatory__staff-name {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-card-participatory__staff-name {
    font-size: 1.5rem;
  }
}

.c-card-participatory__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-top: 10px;
}
.c-card-participatory__bottom .c-button__choice {
  margin-left: auto;
}

.c-card-participatory__bottom-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  line-height: 1.75;
}
.c-card-participatory__bottom-status > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-card-participatory__bottom-status dt {
  position: relative;
}
.c-card-participatory__bottom-status dt::before {
  content: "";
  display: inline-block;
  width: 20px;
  aspect-ratio: 1/1;
  margin-right: 2px;
  background-image: url(../image/icon/human_03.svg);
}
.c-card-participatory__bottom-status dd em {
  display: inline-block;
  font-weight: bold;
  color: var(--accent-color);
}

.c-card-participatory__bottom-text {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.65;
  color: var(--caution-color);
}

.c-card-plan {
  position: relative;
  display: block;
  margin-top: 15px;
  padding: 15px 47px 18px 15px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.c-card-plan[data-card=current] {
  padding: 13px 47px 16px 13px;
  border: 2px solid var(--accent-color);
}

a.c-card-plan {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
a.c-card-plan:hover {
  background-color: var(--gray-01);
}
a.c-card-plan::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 32px;
  border-left: 1px solid var(--gray-01);
}
a.c-card-plan > svg {
  position: absolute;
  top: calc(50% - 9px);
  right: 12px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
a.c-card-plan > svg path {
  stroke: var(--accent-color);
}

.c-card-plan[data-card=no-link] {
  padding: 15px 20px 18px 15px;
}
.c-card-plan[data-card=no-link] .c-card-plan__price {
  font-size: 1.4rem;
  color: var(--black);
}
.c-card-plan[data-card=no-link] .c-card-plan__price em {
  font-size: 1.8rem;
}
.c-card-plan[data-card=no-link] .c-card-plan__price em span {
  font-size: 1.1rem;
}

.c-card-plan__name {
  margin: 0 0 6px;
  font-size: 1.6rem;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-card-plan__name {
    font-size: 1.5rem;
  }
}

.c-card__label + .c-card-plan__name {
  margin-top: 15px;
}

.c-card-plan__price {
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--gray-text);
}
.c-card-plan__price em {
  margin: 0 6px;
  font-weight: bold;
  color: var(--accent-color);
}
.c-card-plan__price del {
  display: inline-block;
  line-height: 1;
}

.c-card-plan__discount {
  margin-top: 15px;
}

.c-card-plan__discount-label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 5px 6px;
  font-size: 1.2rem;
  line-height: 1;
  background-color: var(--background-color);
  border-radius: 1px 1px 0 0;
}
.c-card-plan__discount-label span {
  color: var(--accent-color);
}

.c-card-plan__discount-content {
  padding: 10px 15px 12px;
  line-height: 1.4;
  background-color: var(--gray-01);
  border-radius: 0 3px 3px 3px;
}
.c-card-plan__discount-content *[data-text=title] {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
.c-card-plan__discount-content *[data-text=info] {
  display: block;
  font-size: 1.3rem;
  color: var(--gray-text);
}
.c-card-plan__discount-content *[data-text=info] + * {
  margin-top: 2px;
}
.c-card-plan__discount-content[data-card=ticket] {
  margin-top: 17px;
  border-radius: 3px;
}

.c-card-plan__note {
  margin-top: 10px;
  line-height: 1.4;
  color: var(--gray-text);
}

.c-card-plan__link {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  color: var(--accent-color);
}
.c-card-plan__link:hover {
  text-decoration: none;
}

.c-card-product {
  margin-top: 15px;
  padding: 18px 20px 20px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.c-card-product__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-card-product__heading-image {
  width: 65px;
  aspect-ratio: 1/1;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
}
.c-card-product__heading-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card-product__heading-image + div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-card-product__heading-name {
  margin-bottom: 5px;
  font-size: 1.6rem;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-card-product__heading-name {
    font-size: 1.5rem;
  }
}

.c-card-product__heading-info > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-card-product__heading-info > div + div {
  margin-top: 4px;
}
.c-card-product__heading-info > div dt {
  margin-right: 6px;
  font-size: 1.3rem;
  line-height: 1.35;
  color: var(--gray-text);
}
.c-card-product__heading-info > div dd {
  font-weight: bold;
  line-height: 1.4;
}
.c-card-product__heading-info > div dd em {
  font-size: 1.8rem;
  color: var(--accent-color);
}
.c-card-product__heading-info > div dd em span {
  margin-left: 3px;
  font-size: 1.1rem;
}

.c-card-program__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-card-program__heading-image {
  width: 100px;
  aspect-ratio: 1/1;
  margin-right: 15px;
  border-radius: 2px;
  overflow: hidden;
}
.c-card-program__heading-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 350px) {
  .c-card-program__heading-image {
    width: 80px;
  }
}

.c-card-program__heading-label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-card-program__heading-label h2,
.c-card-program__heading-label h3,
.c-card-program__heading-label h4,
.c-card-program__heading-label h5,
.c-card-program__heading-label h6 {
  font-size: 1.8rem;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-card-program__heading-label h2,
  .c-card-program__heading-label h3,
  .c-card-program__heading-label h4,
  .c-card-program__heading-label h5,
  .c-card-program__heading-label h6 {
    font-size: 1.6rem;
  }
}
.c-card-program__heading-label h2 img,
.c-card-program__heading-label h3 img,
.c-card-program__heading-label h4 img,
.c-card-program__heading-label h5 img,
.c-card-program__heading-label h6 img {
  position: relative;
  top: -1px;
  margin-right: 7px;
}
.c-card-program__heading-label span {
  position: relative;
  display: inline-block;
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.2;
}
.c-card-program__heading-label span::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  margin-right: 5px;
  background-image: url(../image/icon/clock_01.svg);
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.c-card-program__text {
  line-height: 1.65;
  color: var(--gray-text);
}

.c-card-program__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.c-card-program__bottom-ticket {
  font-size: 1.1rem;
  line-height: 1.4;
  color: var(--gray-text);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}
.c-card-program__bottom-ticket em {
  display: inline-block;
  margin-left: 6px;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--accent-color);
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.c-card-program__bottom-ticket em[data-color=gray] {
  color: var(--gray-text);
}

.c-card-reservation {
  display: block;
  margin-top: 15px;
  padding: 15px 15px 19px 15px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.c-card-reservation[data-card=visited] {
  padding: 0;
}
.c-card-reservation[data-card=visited] .c-card-reservation__heading {
  padding: 15px 15px 0;
}
.c-card-reservation[data-card=visited] .c-card__detail {
  padding: 0 15px 18px;
}
.c-card-reservation[data-card=visited] .c-card-reservation__trigger {
  width: 100%;
  padding: 11px 16px 14px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.35;
  text-align: left;
  border-top: 1px solid var(--gray-02);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-card-reservation[data-card=visited] .c-card-reservation__trigger:hover {
  background-color: var(--gray-01);
}
.c-card-reservation[data-card=visited] .c-card-reservation__trigger[aria-expanded=true] {
  background-color: var(--gray-01);
}
.c-card-reservation[data-card=visited] .c-card-reservation__trigger[aria-expanded=true] svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-card-reservation[data-card=visited] .c-card-reservation__trigger svg {
  position: relative;
  top: 2px;
  left: 5px;
  width: 8px;
  height: 14px;
  margin-right: 14px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.c-card-reservation[data-card=visited] .c-card-reservation__trigger svg path {
  stroke: var(--accent-color);
}
.c-card-reservation[data-card=visited] .c-c-card-reservation__accordion > div {
  padding: 18px 20px 20px;
  border-top: 1px solid var(--gray-02);
}
@media screen and (max-width: 350px) {
  .c-card-reservation[data-card=visited] .c-c-card-reservation__accordion > div {
    padding: 18px 15px 20px;
  }
}
.c-card-reservation[data-card=visited] .c-c-card-reservation__accordion-label {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.65;
}
@media screen and (max-width: 350px) {
  .c-card-reservation[data-card=visited] .c-c-card-reservation__accordion-label {
    font-size: 1.5rem;
  }
}
.c-card-reservation[data-card=visited] .c-c-card-reservation__accordion-info {
  width: 100%;
  max-width: 320px;
  margin-top: 12px;
  line-height: 1.65;
  border-collapse: collapse;
  border-top: 1px solid var(--gray-02);
  border-left: 1px solid var(--gray-02);
}
.c-card-reservation[data-card=visited] .c-c-card-reservation__accordion-info th,
.c-card-reservation[data-card=visited] .c-c-card-reservation__accordion-info td {
  padding: 3px 8px 6px;
  border-right: 1px solid var(--gray-02);
  border-bottom: 1px solid var(--gray-02);
}
.c-card-reservation[data-card=visited] .c-c-card-reservation__accordion-info th {
  width: 35%;
  font-weight: 400;
  font-size: 1.4rem;
  text-align: left;
  background-color: var(--gray-01);
}
.c-card-reservation[data-check=true] {
  padding: 13px 13px 17px 13px;
  border: 2px solid var(--accent-color);
}

a.c-card-reservation {
  position: relative;
  padding: 15px 35px 19px 15px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
a.c-card-reservation:hover {
  background-color: var(--gray-01);
}
a.c-card-reservation::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  width: 32px;
  border-left: 1px solid var(--gray-01);
}
a.c-card-reservation > svg {
  position: absolute;
  top: calc(50% - 9px);
  right: 12px;
  width: 7px;
  height: 14px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
a.c-card-reservation > svg path {
  stroke: var(--accent-color);
}

.c-card-reservation__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.c-card__label + .c-card-reservation__heading {
  margin-top: 15px;
}

.c-card__label + .c-content__heading {
  margin-top: 10px;
}

.c-card-reservation__heading-image {
  width: 65px;
  aspect-ratio: 1/1;
  margin-right: 15px;
  border-radius: 4px;
  overflow: hidden;
}
.c-card-reservation__heading-image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 350px) {
  .c-card-reservation__heading-image {
    width: 60px;
    margin-right: 10px;
  }
}
.c-card-reservation__heading-image + div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.c-card-reservation__heading-date {
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.6rem;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-card-reservation__heading-date {
    font-size: 1.5rem;
  }
}
.c-card-reservation__heading-date small {
  margin: 0 3px 0 1px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
}

.c-card-reservation__heading-title {
  margin-top: 2px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-card-reservation__heading-title {
    font-size: 1.5rem;
  }
}
.c-card-reservation__heading-title svg {
  margin-right: 4px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.c-card-reservation__heading-time {
  position: relative;
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.2;
}
.c-card-reservation__heading-time::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  margin-right: 5px;
  background-image: url(../image/icon/clock_01.svg);
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.c-card-reservation__cancel {
  text-align: right;
  margin-top: 15px;
}
.c-card-reservation__cancel span {
  position: relative;
  padding-bottom: 2px;
  font-weight: bold;
  line-height: 1.4;
  cursor: pointer;
}
.c-card-reservation__cancel span::before {
  content: "";
  position: relative;
  top: 5px;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  border: 1px solid var(--gray-02);
  border-radius: 1px;
}
.c-card-reservation__cancel span::after {
  display: none;
  content: "";
  position: absolute;
  top: 2px;
  left: 7px;
  width: 7px;
  height: 14px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-card-reservation__cancel input {
  display: block;
  opacity: 0;
  position: absolute;
}
.c-card-reservation__cancel input:disabled {
  pointer-events: none;
}
.c-card-reservation__cancel input:disabled + span {
  color: var(--gray-03);
  pointer-events: none;
}
.c-card-reservation__cancel input:disabled + span::before {
  background-color: var(--gray-01);
}
.c-card-reservation__cancel input:checked + span {
  color: var(--accent-color);
}
.c-card-reservation__cancel input:checked + span::after {
  display: block;
}
.c-card-reservation__cancel input:focus + span {
  color: var(--accent-color);
}
.c-card-reservation__cancel input:focus + span::before {
  border: solid 1px var(--accent-color);
}
@media (any-hover: hover) {
  .c-card-reservation__cancel input:hover + span {
    color: var(--accent-color);
  }
}

.c-card-settlement-history {
  position: relative;
  display: block;
  margin-top: 15px;
  padding: 17px 35px 18px 15px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-card-settlement-history:hover {
  background-color: var(--gray-01);
}
.c-card-settlement-history::after {
  content: "";
  position: absolute;
  top: 0;
  right: 33px;
  bottom: 0;
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: var(--gray-01);
}
.c-card-settlement-history svg {
  position: absolute;
  right: 0;
  top: calc(50% - 9px);
  right: 12px;
  width: 8px;
  height: 14px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-card-settlement-history svg path {
  stroke: var(--accent-color);
}

.c-card-settlement-history__label {
  margin-bottom: 11px;
}
.c-card-settlement-history__label span {
  display: inline-block;
  margin-right: 5px;
  padding: 3px 5px 4px;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--white);
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  border-radius: 1px;
}
.c-card-settlement-history__label span[data-background=light] {
  color: var(--accent-color);
  background-color: var(--white);
}
.c-card-settlement-history__label span[data-background=dark] {
  background-color: var(--black);
  border: 1px solid var(--black);
}
.c-card-settlement-history__label span[data-background=caution] {
  background-color: var(--caution-color);
  border: 1px solid var(--caution-color);
}
.c-card-settlement-history__label time {
  display: inline-block;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.35;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.c-card-settlement-history__text {
  margin-top: 12px;
  font-size: 1.3rem;
  line-height: 1.4;
}
.c-card-settlement-history__text p {
  display: inline;
}
.c-card-settlement-history__text p:not(:last-child) {
  position: relative;
}
.c-card-settlement-history__text p:not(:last-child)::after {
  content: "/";
  margin: 0 3px 0 4px;
}

.c-card-settlement__heading {
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.35;
  font-weight: bold;
}

.c-card-settlement__price + .c-card-settlement__heading {
  margin-top: 15px;
}

.c-card-settlement__lead {
  margin-bottom: 15px;
  font-size: 1.3rem;
  line-height: 1.65;
}

.c-card-settlement__price {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-02);
}
.c-card-settlement__price div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  line-height: 1.65;
}
.c-card-settlement__price div + div {
  margin-top: 4px;
}
.c-card-settlement__price div dt {
  font-size: 1.5rem;
  color: var(--gray-text);
}
@media screen and (max-width: 350px) {
  .c-card-settlement__price div dt {
    font-size: 1.4rem;
  }
}
.c-card-settlement__price div dd {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-card-settlement__price div dd {
    font-size: 1.6rem;
  }
}
.c-card-settlement__price div dd[data-color=accent] {
  color: var(--accent-color);
}
.c-card-settlement__price div dd span {
  margin-left: 2px;
  font-size: 1.1rem;
}

.c-card-settlement__price[data-price=total] {
  margin-top: 13px;
}
.c-card-settlement__price[data-price=total] div dd {
  font-size: 2.2rem;
}

.c-card-settlement__price:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.c-card-settlement__annotation {
  margin-top: 15px;
  padding-left: 1.2em;
  text-indent: -1.3em;
}
.c-card-settlement__annotation li {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.65;
}
.c-card-settlement__annotation li[data-list=caution] {
  font-weight: bold;
  color: var(--caution-color);
}
.c-card-settlement__annotation li[data-list=caution]::before {
  color: var(--caution-color);
}
.c-card-settlement__annotation li::before {
  content: "・";
  margin-right: 2px;
  font-size: 1.6rem;
}

.c-card-ticket__info {
  width: 100%;
  margin: 12px 0 15px;
  line-height: 1.65;
  border-collapse: collapse;
  border-color: var(--gray-02);
}
.c-card-ticket__info th,
.c-card-ticket__info td {
  padding: 3px 8px 5px;
}
.c-card-ticket__info th {
  width: 37.7%;
  font-weight: 400;
  text-align: left;
  background-color: var(--gray-01);
}

.c-card-ticket__price {
  margin-top: 5px;
}
.c-card-ticket__price > span {
  margin-right: 6px;
  font-size: 1.3rem;
  line-height: 1.35;
}
.c-card-ticket__price em {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--accent-color);
}
@media screen and (max-width: 350px) {
  .c-card-ticket__price em {
    font-size: 1.6rem;
  }
}
.c-card-ticket__price em span {
  margin-left: 2px;
  font-size: 1.1rem;
}
.c-card-ticket__price del {
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--gray-text);
}
@media screen and (max-width: 350px) {
  .c-card-ticket__price del {
    font-size: 1.6rem;
  }
}
.c-card-ticket__price del + span {
  font-size: 1.1rem;
  color: var(--gray-text);
}

.c-card-ticket__text {
  margin: 12px 0 0;
  line-height: 1.4;
  color: var(--gray-text);
}

.c-card-ticket__select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 15px;
}
.c-card-ticket__select::after {
  content: "";
  position: absolute;
  top: 13px;
  right: 35px;
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}
.c-card-ticket__select label,
.c-card-ticket__select span,
.c-card-ticket__select select {
  font-size: 1.3rem;
  line-height: 1.35;
}
.c-card-ticket__select select {
  width: 80px;
  height: 40px;
  padding: 9px 20px 13px;
  margin: 0 6px 0 10px;
  border: 1px solid var(--gray-02);
  border-radius: 2px;
}
.c-card-ticket__head {
  padding: 20px;
}

.c-card-ticket__coupon {
  padding: 15px 20px 20px;
  border-top: 1px solid var(--gray-01);
}

.c-card-ticket__number {
  margin-top: 3px;
  font-size: 1.3rem;
  line-height: 1.35;
}
.c-card-ticket__number b {
  margin-left: 6px;
  font-weight: bold;
  font-size: 1.4rem;
}

.c-card-ticket__note {
  display: block;
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--gray-text);
}

.c-table + .c-card-ticket__note {
  margin-top: 7px;
}

.c-card {
  margin-top: 15px;
  padding: 20px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.c-card[data-card=program] > * + * {
  margin-top: 15px;
}
.c-card[data-card=period] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.c-card[data-card=padding-none] {
  padding: 0;
  overflow: hidden;
}
.c-card[data-card=padding-none] + .c-card[data-card=padding-none][data-card=padding-none] {
  margin-top: 30px;
}
.c-card[data-card=settlement] {
  margin-top: 30px;
}
@media screen and (max-width: 350px) {
  .c-card[data-card=settlement] {
    padding: 20px 15px;
  }
}

.c-card-lead + .c-card {
  margin-top: 0;
}

.c-card__heading {
  font-size: 1.6rem;
  line-height: 1.65;
}
@media screen and (max-width: 350px) {
  .c-card__heading {
    font-size: 1.5rem;
  }
}
.c-card__heading[data-size=small] {
  font-size: 1.4rem;
}
.c-card__heading svg {
  margin-right: 4px;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.c-card__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 15px;
}

.c-card__label {
  display: block;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
}
.c-card__label + .c-card__label {
  margin-top: 5px;
}
.c-card__label b {
  color: var(--accent-color);
}

.c-card__detail {
  margin-top: 10px;
}
.c-card__detail div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  line-height: 1.4;
}
.c-card__detail div dt {
  margin-right: 6px;
  color: var(--gray-text);
}
.c-card__detail div dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-card__detail div dd em {
  font-weight: bold;
  color: var(--accent-color);
}
.c-card__detail div dd del {
  margin-left: 5px;
  color: var(--gray-text);
}
.c-card__detail div dd span:not(:last-child) {
  position: relative;
}
.c-card__detail div dd span:not(:last-child)::after {
  content: "/";
  margin: 0 2px 0 4px;
}

.c-caution {
  position: relative;
  padding: 10px 0 0;
  line-height: 1.65;
  background-color: var(--white);
}

.c-caution__label {
  position: absolute;
  inset: 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 5px 1px;
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--white);
  background-color: var(--caution-color);
}

.c-caution__text {
  padding: 24px 20px 26px;
  font-weight: bold;
  color: var(--caution-color);
  background-color: var(--caution-background-color);
}
@media screen and (max-width: 350px) {
  .c-caution__text {
    padding: 22px 15px 24px;
  }
}

.c-caution__fix {
  position: fixed;
  z-index: 1;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 13px 20px 15px;
  font-size: 1.3rem;
  line-height: 1.4;
  text-align: center;
  color: var(--caution-color);
  background-color: var(--caution-background-color);
}
@media screen and (max-width: 350px) {
  .c-caution__fix {
    padding: 13px 15px 15px;
  }
}
.c-caution__fix strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.4rem;
  font-weight: bold;
}

.c-caution__bar {
  padding: 14px 15px 17px;
  line-height: 1.35;
  color: var(--caution-color);
  background-color: var(--caution-background-color);
}
.c-caution__bar strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1.4rem;
  font-weight: bold;
}
.c-caution__bar a,
.c-caution__bar button {
  font-weight: bold;
  text-decoration: underline;
}
.c-caution__bar a:hover,
.c-caution__bar button:hover {
  text-decoration: none;
}

.c-complete {
  text-align: center;
}
.c-complete svg {
  width: 45px;
  height: 45px;
}
.c-complete svg circle {
  fill: var(--success-color);
  stroke: var(--success-color);
}
.c-complete p[data-text=main] {
  margin: 20px 0 33px;
  font-size: 1.6rem;
  font-weight: bold;
}
.c-complete p[data-text=sub] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.75;
  text-align: left;
}

.c-confirmation {
  display: grid;
  place-items: center;
  margin: 30px 0 25px;
  font-weight: bold;
  line-height: 1.65;
  text-align: left;
}
.c-confirmation[data-align=center] {
  margin: 15px 0 25px;
  text-align: center;
}
.c-confirmation[data-text=link] {
  display: block;
}
.c-confirmation[data-mt="30"] {
  margin-top: 30px;
}
.c-confirmation em {
  color: var(--caution-color);
}
.c-confirmation a {
  text-decoration: underline;
}
.c-confirmation a:hover {
  text-decoration: none;
}

.c-content {
  padding: 15px 20px 20px;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-02);
}
@media screen and (max-width: 350px) {
  .c-content {
    padding: 15px 15px 20px;
  }
}
@media screen and (min-width: 767px) {
  .c-content {
    max-width: 660px;
    margin: 0 auto;
  }
}

.c-content[data-content=price] + .c-content[data-content=price] {
  border-top: 1px solid var(--black);
}

.c-card .c-content {
  padding: 15px 15px 20px;
}

.c-content__heading {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.65;
}
@media screen and (max-width: 350px) {
  .c-content__heading {
    font-size: 1.5rem;
  }
}

.c-content__heading-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.35;
}
.c-content__heading-date p:not([data-text=small]) {
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.6rem;
}
.c-content__heading-date p[data-text=small] {
  margin: 0 3px 0 1px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1.6;
}

.c-content__info {
  margin-top: 6px;
}
.c-content__info[data-color=gray] {
  color: var(--gray-text);
}
.c-content__info p[data-text=small] {
  font-size: 1.2rem;
  line-height: 1.5;
}
.c-content__info p {
  line-height: 1.65;
}

.c-content__link {
  display: inline-block;
  margin-top: 10px;
  line-height: 1.75;
  color: var(--accent-color);
  text-decoration: underline;
}
.c-content__link:hover {
  text-decoration: none;
}

.c-content__staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-content__staff-img {
  width: 65px;
  aspect-ratio: 1/1;
  margin-right: 15px;
  border-radius: 2px;
  overflow: hidden;
}
.c-content__staff-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-content__staff-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-content__staff-info p[data-text=name] {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}
.c-content__staff-info p[data-text=price] {
  margin-top: 4px;
  line-height: 1.2;
  color: var(--gray-text);
}
.c-content__staff-info p[data-text=price] em {
  margin-left: 6px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--accent-color);
}
.c-content__staff-info p[data-text=price] del {
  margin-left: 5px;
}

.c-content__list {
  margin-top: 8px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.65;
}
.c-content__list[data-list=caution] li {
  font-weight: bold;
  color: var(--caution-color);
}
.c-content__list li {
  position: relative;
}
.c-content__list li::before {
  content: "・";
}
.c-content__list li + li {
  margin-top: 5px;
}

.c-content__alert {
  margin: 8px 0 10px;
  font-weight: bold;
  line-height: 1.65;
  color: var(--caution-color);
}

.c-content__note {
  margin-top: 8px;
  font-size: 1.3rem;
  line-height: 1.65;
}
.c-content__note b {
  font-size: 1.4rem;
}
.c-content__note strong {
  color: var(--caution-color);
}

.c-content__facility {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.c-content__facility > div {
  width: 65px;
  aspect-ratio: 1/1;
  border-radius: 2px;
  overflow: hidden;
}
.c-content__facility > div img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-content__form {
  padding: 10px 0 5px;
}

.c-content__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  line-height: 1.65;
}
.c-content__price dd {
  text-align: right;
}
.c-content__price dd em {
  display: block;
  color: var(--accent-color);
}

.c-content__table > p {
  margin: 15px 0 9px;
  font-weight: bold;
}

.c-content__info + .c-content__table {
  margin-top: 15px;
}

.c-content__lead {
  margin-bottom: 12px;
  line-height: 1.65;
}
.c-content__lead a {
  text-decoration: underline;
}
.c-content__lead a:hover {
  text-decoration: none;
}

.c-content .c-coupon {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--gray-01);
}
.c-content .c-coupon + .c-coupon {
  margin-top: 20px;
  padding-top: 0;
  border-top: none;
}

.c-coupon__label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--gray-text);
}
.c-coupon__label > input[type=radio] {
  display: block;
  opacity: 0;
  position: absolute;
}
.c-coupon__label > input[type=radio]:checked + span::after {
  display: block;
}
.c-coupon__label > input[type=radio]:focus + span {
  color: var(--black);
}
.c-coupon__label > input[type=radio]:focus + span::before {
  border: solid 1px var(--accent-color);
}
.c-coupon__label > span {
  position: relative;
  padding-left: 27px;
  cursor: pointer;
}
.c-coupon__label > span::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--gray-02);
  border-radius: 50%;
  background-color: var(--white);
}
.c-coupon__label > span::after {
  display: none;
  content: "";
  position: absolute;
  left: 4px;
  top: 5px;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.c-coupon__link a,
.c-coupon__link button:not(.c-coupon__cancel) {
  position: relative;
  display: block;
  width: 100%;
  padding: 11px 35px 15px 13px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.65;
  text-align: left;
  color: var(--accent-color);
  background-color: var(--white);
  border: 2px solid var(--accent-color);
  border-radius: 4px;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-coupon__link a:hover,
.c-coupon__link button:not(.c-coupon__cancel):hover {
  background-color: var(--gray-01);
}
.c-coupon__link a svg,
.c-coupon__link button:not(.c-coupon__cancel) svg {
  position: absolute;
  top: calc(50% - 2px);
  right: 18px;
  width: 8px;
  height: 14px;
  -webkit-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
}
.c-coupon__link a svg path,
.c-coupon__link button:not(.c-coupon__cancel) svg path {
  stroke: var(--accent-color);
}

.c-coupon__link button:disabled {
  color: var(--gray-03);
  border-color: var(--gray-03);
}
.c-coupon__link button:disabled:hover {
  background-color: var(--white);
}
.c-coupon__link button:disabled svg path {
  stroke: var(--gray-03);
}

.c-coupon__selected {
  margin-bottom: 8px;
  padding: 14px;
  background-color: var(--white);
  border: 1px solid var(--gray-02);
  border-radius: 4px;
}
.c-coupon__selected p[data-text=main] {
  font-weight: bold;
  line-height: 1.65;
}
.c-coupon__selected p[data-text=price] {
  margin: 3px 0 6px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.65;
  color: var(--accent-color);
}
.c-coupon__selected p[data-text=price] em {
  margin: 0 2px;
  font-size: 1.8rem;
  line-height: 1.2;
}
.c-coupon__selected p[data-text=sub] {
  font-size: 1.3rem;
  line-height: 1.65;
  color: var(--gray-text);
}

.c-coupon__cancel {
  position: relative;
  display: inline-block;
  color: var(--gray-text);
}
.c-coupon__cancel::before {
  content: "×";
  display: inline-block;
  margin-right: 6px;
  line-height: 1.5;
  color: var(--gray-03);
}

.c-coupon__code {
  --button-width: 70px;
  --center-padding: 10px;
}
.c-coupon__code input {
  display: inline-block;
  width: calc(98% - (var(--button-width) + var(--center-padding)));
  margin-right: var(--center-padding);
  padding: 10px 14px 12px;
  font-size: 1.5rem;
  line-height: 1.4;
  background-color: var(--white);
  border: 1px solid var(--gray-02);
  border-radius: 2px;
}
.c-coupon__code input::-webkit-input-placeholder {
  color: var(--gray-03);
}
.c-coupon__code input::-moz-placeholder {
  color: var(--gray-03);
}
.c-coupon__code input:-ms-input-placeholder {
  color: var(--gray-03);
}
.c-coupon__code input::-ms-input-placeholder {
  color: var(--gray-03);
}
.c-coupon__code input::placeholder {
  color: var(--gray-03);
}
.c-coupon__code button {
  width: var(--button-width);
  padding: 11px 10px 13px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  color: var(--white);
  background-color: var(--accent-color);
  border-radius: 4px;
  -webkit-box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
          box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15);
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
}
.c-coupon__code button:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}

.c-coupon__code[data-width=small] input {
  width: 225px;
}

.c-coupon__code button:disabled {
  background-color: var(--gray-03);
}

.c-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
  max-width: 375px;
  margin: 0 auto;
  padding: 0 15px;
}

.c-date__current {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 375px;
}

.c-date__current-link {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 52px;
  background-color: var(--accent-color);
  border-radius: 4px;
  -webkit-transition: background-color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, border-color 0.3s;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.c-date__current-link:hover {
  background-color: var(--hover-color);
  border-color: var(--hover-color);
}
@media screen and (max-width: 350px) {
  .c-date__current-link {
    width: 28px;
  }
}
.c-date__current-link::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  background-image: url(../image/icon/arrow_02.svg);
  background-size: contain;
}
.c-date__current-link[data-link=next]::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.c-date__current-link span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.c-date__current-label-parent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  position: relative;
  margin: 0 12px;
  z-index: 10;
}

.c-date__current-label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 20px 15px;
  font-weight: bold;
  line-height: 1.35;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
}
@media screen and (max-width: 350px) {
  .c-date__current-label {
    padding: 13px 7px 15px;
  }
}
.c-date__current-label span[data-text=tilde] {
  display: inline-block;
  margin: 0 4px 0 5px;
  position: relative;
}
.c-date__current-label span[data-text=tilde]::before {
  content: "〜";
  font-size: 1.1rem;
}
.c-date__current-label span[data-text=tilde] small {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}
.c-date__current-label span span[data-text=large] {
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 350px) {
  .c-date__current-label span span[data-text=large] {
    font-size: 1.8rem;
  }
}
.c-date__current-label span span[data-text=small] {
  font-size: 1.1rem;
}
@media screen and (max-width: 350px) {
  .c-date__current-label span span[data-text=small] {
    font-size: 1rem;
  }
}
.c-date__current-label .item-arrow {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 14px;
  height: 8px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.c-date__current-label .item-arrow:after {
  content: "";
  display: block;
  width: 14px;
  height: 8px;
  background-image: url(../image/icon/arrow_under_blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-date__current-label[data-select-week=open] .item-arrow:after {
  -webkit-transform: translate(0, -10%) scaleY(-1);
          transform: translate(0, -10%) scaleY(-1);
}
.c-date__current-label[data-week-modal-status=current] {
  color: #9E9E9E;
}

.c-date__week-modal {
  position: absolute;
  top: 65px;
  left: 0px;
  z-index: 10;
  width: 100%;
  max-height: 250px;
  overflow-y: scroll;
  border-radius: 4px;
  background-color: #ddd;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 250ms;
  transition: all 250ms;
}
.c-date__week-modal .c-date__current-label {
  border-radius: 0px;
}
.c-date__week-modal li:not(:first-child) {
  margin-top: 1px;
}

.c-date__modalBg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(34, 34, 34, 0.85);
  z-index: 5;
}

.c-date__back {
  display: inline-block;
  width: 100px;
  padding: 16px 10px 20px;
  font-weight: bold;
  line-height: 1.35;
  text-align: center;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-date__back:hover {
  background-color: var(--gray-01);
}
@media screen and (max-width: 350px) {
  .c-date__back {
    width: 80px;
    padding: 16px 7px 20px;
  }
}

.c-fix-menu {
  position: fixed;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: var(--white);
  -webkit-box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 767px) {
  .c-fix-menu {
    background-color: var(--gray-01);
  }
}
.c-fix-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 767px) {
  .c-fix-menu ul {
    max-width: 660px;
    margin: 0 auto;
    background-color: var(--white);
  }
}
.c-fix-menu ul li {
  width: 33.3333333333%;
}
.c-fix-menu ul li a {
  display: grid;
  place-content: center;
  padding: 13px 11px 11px;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  color: var(--gray-text);
}
@media screen and (max-width: 350px) {
  .c-fix-menu ul li a {
    padding: 13px 7px 11px;
  }
}
.c-fix-menu ul li a svg {
  margin: 0 auto 5px;
}
.c-fix-menu ul li a svg path {
  fill: var(--accent-color);
}

.c-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 350px) {
  .c-heading {
    display: block;
  }
}
.c-heading:nth-of-type(n + 2) {
  margin-top: 30px;
}
.c-heading h2,
.c-heading h3 {
  margin-right: 15px;
  font-size: 1.8rem;
  line-height: 1.45;
}
.c-heading a {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1.75;
  text-decoration: underline;
}
.c-heading a:hover {
  text-decoration: none;
}
@media screen and (max-width: 350px) {
  .c-heading a {
    margin-top: 5px;
  }
}

.c-heading__sub {
  margin-bottom: 10px;
}
.c-heading__sub:nth-of-type(n + 2) {
  margin-top: 50px;
}
.c-heading__sub h2,
.c-heading__sub h3 {
  font-size: 1.6rem;
}

.c-heading__label {
  padding: 9px 20px 11px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--white);
  background-color: var(--black);
}
@media screen and (max-width: 350px) {
  .c-heading__label {
    padding: 9px 15px 11px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 767px) {
  .c-heading__label {
    max-width: 660px;
    margin: 0 auto;
  }
}
.c-heading__label span {
  display: block;
  font-size: 1.3rem;
}
.c-heading__label[data-size=small] {
  padding: 6px 20px 9px;
  font-size: 1.4rem;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-heading__label[data-size=small] {
    padding: 6px 15px 9px;
  }
}
.c-heading__label[data-color=gray] {
  background-color: var(--gray-text);
}
@media screen and (min-width: 767px) {
  .c-heading__label:first-of-type {
    margin-top: 45px;
  }
}

.c-card .c-heading__label {
  padding: 9px 15px 11px;
}
@media screen and (min-width: 767px) {
  .c-card .c-heading__label:first-of-type {
    margin-top: 0;
  }
}

.c-lead {
  margin-bottom: 30px;
}
@media screen and (min-width: 767px) {
  .c-lead {
    display: grid;
    place-items: center;
  }
}
.c-lead p {
  line-height: 1.75;
}
.c-lead p[data-font=small] {
  font-size: 1.3rem;
}
.c-lead p[data-font=large] {
  font-size: 1.6rem;
}
.c-lead p + p {
  margin-top: 15px;
}
.c-lead p a {
  color: var(--accent-color);
  text-decoration: underline;
}
.c-lead p a:hover {
  text-decoration: none;
}
.c-lead ul[data-list=credit] {
  margin-top: 10px;
  font-weight: bold;
  line-height: 1.75;
}
.c-lead ul[data-list=credit] li {
  display: inline;
  word-wrap: break-word;
}
.c-lead ul[data-list=credit] li:not(:last-child) {
  position: relative;
}
.c-lead ul[data-list=credit] li:not(:last-child)::after {
  content: "/";
  margin: 0 1px 0 4px;
}
.c-lead > a {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent-color);
  text-decoration: underline;
}
.c-lead > a:hover {
  text-decoration: none;
}

.c-lead[data-align=center] {
  text-align: center;
}

@media screen and (min-width: 767px) {
  .c-lead[data-align=left] {
    display: block;
  }
}

.c-lead__list li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
}
.c-lead__list li::before {
  content: "・";
}

.c-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 25px;
  background-color: var(--white);
  cursor: pointer;
}
.c-list li#item2 {
  color: var(--white);
  background-color: var(--main-color);
}
.c-list li#item3 {
  color: var(--white);
  background-color: var(--caution-color);
}
.c-list li#item4 {
  color: var(--white);
  background-color: var(--success-color);
}
.c-list li + li {
  border-top: 1px solid #000;
}
.c-list li img {
  width: 60px;
  aspect-ratio: 1/1;
}
.c-list li p {
  margin-right: 15px;
}

.c-nav-global li + li {
  margin-top: 15px;
}
.c-nav-global li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 19px 20px 22px;
  font-size: 1.5rem;
  font-weight: bold;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.c-nav-global li a svg {
  margin-right: 15px;
}
.c-nav-global li a svg path {
  fill: var(--accent-color);
}

.c-nav-reservation div {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-bottom: 1px solid var(--gray-02);
}
.c-nav-reservation div dt a,
.c-nav-reservation div dd {
  font-size: 1.1rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.c-nav-reservation div dt a {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 7px 10px 8px;
  color: var(--white);
  background-color: var(--gray-text);
}
.c-nav-reservation div dt a::before {
  content: "";
  display: inline-block;
  width: 6px;
  aspect-ratio: 1/1;
  margin-right: 4px;
  border-top: 1px solid var(--gray-02);
  border-left: 1px solid var(--gray-02);
  -webkit-transform: rotate(-45deg) translateY(-1px);
          transform: rotate(-45deg) translateY(-1px);
}
.c-nav-reservation div dd {
  padding: 7px 15px 8px;
  background-color: var(--white);
}

.c-news-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 8px 15px 12px;
  font-size: 1.3rem;
  background-color: var(--white);
}
.c-news-bar time {
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.3;
  color: var(--gray-text);
}
.c-news-bar a {
  line-height: 1.45;
  text-decoration: underline;
}
.c-news-bar a:hover {
  text-decoration: none;
}

.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.c-pagination li {
  margin: 0 5px;
}
.c-pagination li a {
  display: inline-grid;
  place-content: center;
  width: 38px;
  aspect-ratio: 1/1;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--accent-color);
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.c-pagination li a[href] {
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.c-pagination li a[href]:hover {
  background-color: var(--gray-01);
}
.c-pagination li a[aria-current=page] {
  color: var(--white);
  background-color: var(--accent-color);
}
.c-pagination li a svg {
  width: 8px;
  height: 14px;
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}
.c-pagination li a svg path {
  stroke: var(--accent-color);
}
.c-pagination li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 85%;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  color: var(--accent-color);
}

.c-period__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 5px;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 2.4rem;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-period__date {
    font-size: 2.2rem;
  }
}
.c-period__date span[data-text=small] {
  display: inline-block;
  margin: 0 6px 0 2px;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
}

.c-period__resereved {
  margin: 20px 0;
  padding: 14px 20px 19px;
  background-color: var(--caution-background-color);
  border: 1px solid var(--caution-color);
  border-radius: 4px;
}

.c-period__resereved-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-period__resereved-main .time {
  margin-right: 8px;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.35;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.c-period__resereved-main .name {
  font-size: 1.5rem;
  line-height: 1.5;
}

.c-period__resereved-sub {
  font-size: 1.3rem;
  color: var(--caution-color);
}

.c-period__list {
  margin-top: 20px;
}
.c-period__list > * + * {
  margin-top: 15px;
}

.c-period__list-card span[data-text=time] {
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.8rem;
  line-height: 1.35;
}
.c-period__list-card dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.3rem;
  line-height: 1.75;
}
.c-period__list-card dl dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-period__list-card dl dt::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  margin-right: 6px;
  background-image: url(../image/icon/human_02.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.c-period__list-card dl dd {
  color: var(--accent-color);
}

.c-period__create-account {
  text-align: center;
  margin-top: 30px;
  margin-inline: auto;
  padding-inline: 25px;
  max-width: 350px;
}

.c-period__create-account__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75em;
  color: #222;
}

.c-reservation__annotation {
  text-align: center;
}
.c-reservation__annotation[data-mt="20"] {
  margin-top: 20px;
}
.c-reservation__annotation[data-type=own] p::before {
  width: 13px;
  height: 13px;
  margin-right: 6px;
  background-color: var(--caution-background-color);
  border: 1px solid var(--white);
  background-image: none;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
.c-reservation__annotation p {
  position: relative;
  font-size: 1.3rem;
  line-height: 1.75;
}
.c-reservation__annotation p::before {
  content: "";
  display: inline-block;
  width: 12px;
  aspect-ratio: 1/1;
  margin-right: 7px;
  background-image: url(../image/icon/human_02.svg);
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.c-snackbar {
  padding: 15px 15px 17px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--white);
  background-color: var(--success-color);
}

.c-blackSnackbar {
  background-color: var(--black);
  color: var(--white);
  padding: 7px 10px 13px;
  font-size: 12px;
  line-height: 1.4em;
  letter-spacing: 0.02em;
}

.c-blackSnackbar__targetProgram {
  font-weight: 700;
}

.c-blackSnackbar__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  text-decoration: underline;
}

.c-sort {
  margin-bottom: 30px;
}
.c-sort label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  line-height: 1.65;
}

.c-sort[data-select=large] .c-sort__select select {
  min-width: 172px;
}

.c-sort__select {
  position: relative;
}
.c-sort__select::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(50% - 7px);
  left: 18px;
  display: inline-block;
  width: 8px;
  aspect-ratio: 1/1;
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  pointer-events: none;
}
.c-sort__select select {
  padding: 10px 18px 15px 42px;
  line-height: 1.65;
  background-color: var(--white);
  border: 1px solid var(--gray-02);
  border-radius: 2px;
}

.c-staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
  border-radius: 4px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.c-staff__image {
  width: 85px;
  background-color: var(--gray-01);
  background-image: url(../image/icon/human_02.svg);
  background-size: 36px;
  background-position: center;
  background-repeat: no-repeat;
}
.c-staff__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-staff__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 15px 22px 18px;
  background-color: var(--white);
}
@media screen and (max-width: 350px) {
  .c-staff__content {
    display: block;
    padding: 15px 12px 17px 12px;
  }
}
@media screen and (max-width: 350px) {
  .c-staff__content .c-button__choice {
    text-align: right;
  }
}

.c-staff__content-info {
  margin-right: 10px;
}
@media screen and (max-width: 350px) {
  .c-staff__content-info {
    margin-bottom: 10px;
  }
}
.c-staff__content-info p[data-text=name] {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.35;
}
@media screen and (max-width: 350px) {
  .c-staff__content-info p[data-text=name] {
    font-size: 1.5rem;
  }
}
.c-staff__content-info p[data-text=price] {
  margin-top: 4px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--gray-text);
}
.c-staff__content-info p[data-text=price] em {
  margin-left: 5px;
  color: var(--accent-color);
}
.c-staff__content-info p[data-text=supplement] {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--gray-text);
}

.c-table table {
  width: 100%;
  line-height: 1.65;
  border-collapse: collapse;
  border-top: 1px solid var(--gray-02);
  border-left: 1px solid var(--gray-02);
}
.c-table table th,
.c-table table td {
  padding: 3px 8px 6px;
  text-align: left;
  font-weight: normal;
  border-right: 1px solid var(--gray-02);
  border-bottom: 1px solid var(--gray-02);
}
@media screen and (max-width: 350px) {
  .c-table table th,
  .c-table table td {
    padding: 3px 6px 6px;
  }
}
.c-table table th {
  width: 30%;
  min-width: 115px;
  background-color: var(--gray-01);
}
@media screen and (min-width: 767px) {
  .c-table table th {
    width: 25%;
  }
}
@media screen and (max-width: 350px) {
  .c-table table th {
    min-width: 105px;
  }
}
.c-table table td {
  background-color: var(--white);
}
@media screen and (min-width: 767px) {
  .c-table table td {
    width: calc(75% - 3px);
  }
}

.c-card .c-table,
.c-card-reservation .c-table {
  margin: 15px 0 0;
}

.c-title {
  position: relative;
  display: grid;
  place-content: center;
  text-align: left;
  padding: 19px 50px 25px;
  background-color: var(--white);
}
@media screen and (max-width: 350px) {
  .c-title {
    padding: 19px 35px 25px;
  }
}
.c-title h1 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 350px) {
  .c-title h1 {
    font-size: 1.7rem;
  }
}

.c-title__prev {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 55px;
  height: 100%;
}
@media screen and (max-width: 350px) {
  .c-title__prev {
    width: 35px;
  }
}
.c-title__prev svg {
  position: absolute;
  top: calc(50% - 9px);
  left: 30px;
  width: 10px;
  height: 17px;
}
@media screen and (max-width: 350px) {
  .c-title__prev svg {
    top: calc(50% - 10px);
    left: 17px;
  }
}
.c-title__prev svg path {
  stroke: var(--accent-color);
}

.js-accordion-trigger + * {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
}

.p-login {
  position: relative;
  margin-top: 60px;
  padding: 70px 25px 45px;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 350px) {
  .p-login {
    padding: 70px 15px 45px;
  }
}
.p-login h1 {
  margin-bottom: 5px;
  font-size: 2rem;
  line-height: 1.75;
  text-align: center;
}
.p-login form .c-button {
  margin-top: 30px;
}

.p-login__logo {
  position: absolute;
  inset: -50px 0 0 0;
  display: inline-block;
  width: 104px;
  aspect-ratio: 1/1;
  margin: 0 auto;
  background-color: var(--white);
  border: 2px solid var(--white);
  border-radius: 2px;
}

.p-login__text {
  margin-bottom: 30px;
}

.p-login__beginner {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}
.p-login__beginner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: -25px;
  width: calc(100% + 50px);
  height: 1px;
  background-color: var(--gray-01);
}
.p-login__beginner h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}

.p-login__availability {
  position: relative;
  padding-top: 30px;
}
.p-login__availability h2 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  line-height: 1.75;
  text-align: center;
}

.p-delete {
  max-width: 660px;
  margin: 0 auto 30px;
  padding: 35px 25px;
  background-color: var(--white);
  color: var(--caution-color);
}
@media screen and (max-width: 350px) {
  .p-delete {
    padding: 35px 15px;
  }
}
.p-delete ul li {
  position: relative;
  padding-left: 1em;
  text-indent: -1em;
  font-weight: bold;
}
.p-delete ul li + li {
  margin-top: 10px;
}
.p-delete ul li::before {
  content: "・";
}

.p-mypage__heading h1 {
  margin: 0 0 25px;
  font-size: 1.8rem;
}
.p-mypage__heading h1 span {
  margin-right: 3px;
  font-size: 1.3rem;
}

.p-mypage__main {
  display: grid;
  gap: 15px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "area1 area2" "area3 area3";
  margin-top: 15px;
}
@media screen and (max-width: 350px) {
  .p-mypage__main {
    gap: 10px;
  }
}
.p-mypage__main a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 17px 3% 20px 17px;
  font-size: 1.6rem;
  line-height: 1.45;
  font-weight: bold;
  background-color: var(--white);
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-mypage__main a:hover {
  background-color: var(--gray-01);
}
@media screen and (max-width: 350px) {
  .p-mypage__main a {
    padding: 17px 5px 20px 12px;
    font-size: 1.5rem;
  }
}
.p-mypage__main a:first-child {
  grid-area: area1;
}
.p-mypage__main a:nth-child(2) {
  grid-area: area2;
}
.p-mypage__main a:last-child {
  padding: 17px 17px 20px;
  grid-area: area3;
}
.p-mypage__main a:last-child svg:last-child {
  position: absolute;
  inset: 0 20px 0 auto;
  width: 8px;
  height: 14px;
  margin: auto 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-mypage__main a:last-child svg:last-child path {
  stroke: var(--accent-color);
}
.p-mypage__main a svg:first-child {
  margin-right: 10px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.p-mypage__main a svg:first-child path {
  fill: var(--accent-color);
}

.p-mypage__sub {
  margin: 30px 0;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}
.p-mypage__sub a {
  position: relative;
  display: block;
  padding: 18px 20px 20px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.45;
  background-color: var(--white);
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.p-mypage__sub a:hover {
  background-color: var(--gray-01);
}
@media screen and (max-width: 350px) {
  .p-mypage__sub a {
    font-size: 1.5rem;
  }
}
.p-mypage__sub a:first-child {
  border-radius: 4px 4px 0 0;
}
.p-mypage__sub a:last-child {
  border-radius: 0 0 4px 4px;
}
.p-mypage__sub a + a {
  border-top: 1px solid var(--gray-02);
}
.p-mypage__sub a svg {
  position: absolute;
  inset: 0 20px 0 auto;
  width: 8px;
  height: 14px;
  margin: auto 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-mypage__sub a svg path {
  stroke: var(--accent-color);
}

.p-news__heading time {
  display: inline-block;
  margin-bottom: 8px;
  font-family: "Poppins", "Montserrat", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--gray-text);
}
.p-news__heading h2 {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 350px) {
  .p-news__heading h2 {
    font-size: 1.6rem;
  }
}

.p-news__content {
  margin-top: 30px;
  padding: 35px 25px 25px;
  background-color: var(--white);
}
.p-news__content > * + * {
  margin-top: 10px;
}
.p-news__content p {
  line-height: 1.75;
}
.p-news__content p + p {
  margin-top: 10px;
}
.p-news__content a {
  color: var(--accent-color);
  text-decoration: underline;
}
.p-news__content a:hover {
  text-decoration: none;
}

.p-transaction {
  max-width: 660px;
  margin: 0 auto;
  padding: 30px 20px;
  line-height: 1.35;
  background-color: var(--white);
}
.p-transaction h2 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.p-transaction p + p {
  margin-top: 15px;
}
.p-transaction p a {
  text-decoration: underline;
}
.p-transaction p a:hover {
  text-decoration: none;
}
.p-transaction p + h2 {
  margin-top: 25px;
}

.p-transaction-text + .p-transaction-text {
  margin-top: 25px;
}

:root {
  --header-height: 66px;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  background-color: var(--background-color);
}
body[data-menu=show] {
  overflow: hidden;
}
body[data-fix=true] {
  padding-bottom: 65px;
}
@media screen and (max-width: 350px) {
  body {
    font-size: 1.3rem;
  }
}
body main {
  min-height: calc(100svh - 235px);
  margin-top: var(--header-height);
}
body a {
  text-decoration: none;
  color: inherit;
}
body h1 {
  margin: 0;
}
body ul,
body ol {
  list-style: none;
}
body img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
body input,
body button,
body textarea,
body select {
  font-size: inherit;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  appearance: none;
  cursor: pointer;
}
body input [type=submit],
body input [type=checkbox],
body button {
  cursor: pointer;
}
body em {
  font-style: normal;
}
body dialog {
  background: none;
  border: none;
}
body dialog:modal {
  max-width: 100%;
  max-height: 100%;
}
body *[data-mt="15"] {
  margin-top: 15px;
}
body *[data-mt="20"] {
  margin-top: 20px;
}
body *[data-mt="30"] {
  margin-top: 30px;
}
body *[data-mb="20"] {
  margin-bottom: 20px;
}
body *[data-mt="45"] {
  margin-top: 45px;
}
body *[data-align=right] {
  text-align: right;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}