:root {
  --color-black: rgba(0, 0, 0, 1);
  --color-white: rgba(255, 255, 255, 1);
  --txt-color-default: rgba(46, 69, 122, 1);
  --bg-color: rgba(240, 240, 240, 1);
  --color-bg-blue: rgba(235, 240, 251, 1);
  --color-lblue: rgba(77, 115, 204, 1);
  --color-txt-blue: rgba(46, 69, 122, 1);
  --color-txt-dblue: rgba(31, 46, 82, 1);
  --color-icon-active-color: rgba(46, 69, 122, 1);
  --color-hover-gray: rgba(245, 245, 245, 1);
  --color-bdr: rgba(220, 220, 220, 1);
  --color-bdr2: rgba(202, 202, 202, 1);
  --color-nav-active: rgba(164, 185, 233, 1);
  --header-width: 280px;
  --header-height: 80px;
  --fs-12: 1.2rem;
  --fs-14: 1.4rem;
  --fs-16: 1.6rem;
  --fs-18: 1.8rem;
  --fs-19: 1.9rem;
  --fs-ttl-page: 2.4rem;
  --post-width: 100%;
  --column-margin: 40px;
  --font-letter-spacing-medium: 0.03px;
  --font-letter-spacing-fourExtraLarge: 0.02px;
}

@media all and (min-width: 768px) {
  :root {
    --post-width: calc( (100% - 16px)/2 );
  }
}
@media all and (min-width: 1024px) {
  :root {
    --post-width: calc( (100% - 32px)/3 );
  }
}
@media all and (min-width: 1440px) {
  :root {
    --post-width: calc( (100% - 32px)/3 );
  }
}
@media all and (min-width: 1560px) {
  :root {
    --post-width: calc( (100% - 48px)/4 );
  }
}
@media all and (min-width: 1920px) {
  :root {
    --post-width: calc( (100% - 64px)/5 );
  }
}
@media all and (min-width: 2560px) {
  :root {
    --post-width: calc( (100% - 80px)/6 );
  }
}
.b-policy_modal {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
  top: 0px;
  left: 0px;
  background: rgba(0, 0, 0, 0.2);
}
.b-policy_modal.disable {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0s ease;
}
.b-policy_modal .policy_modal_inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: auto;
}
.b-policy_modal .c-content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.b-policy_modal .content_inner {
  width: 880px;
  background: #fff;
  border-radius: 8px;
  filter: drop-shadow(0 8px 24px rgba(31, 46, 82, 0.2));
  padding: 20px 24px;
}
.b-policy_modal .b-policy:nth-of-type(1) {
  margin-bottom: 32px;
}
.b-policy_modal p, .b-policy_modal li {
  color: var(--txt-color-default);
  letter-spacing: var(--font-letter-spacing-medium);
}
.b-policy_modal .policy_ttl {
  margin-bottom: 1.3em;
}
.b-policy_modal .policy_ttl p {
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.8;
}
.b-policy_modal .policy_content {
  width: 600px;
  margin-inline: auto;
  padding: 16px 16px 16px 16px;
  border-radius: 8px;
  background: #F0F5FF;
}
.b-policy_modal .c-time p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 1em;
}
.b-policy_modal .opening_hour {
  display: flex;
  justify-content: center;
  column-gap: 66px;
  position: relative;
}
.b-policy_modal .opening_hour dl {
  width: 194px;
  position: relative;
}
.b-policy_modal .opening_hour dl:nth-of-type(1) dd {
  position: relative;
}
.b-policy_modal .opening_hour dl:nth-of-type(1) dd:before {
  content: "-";
  font-size: 3.7rem;
  position: absolute;
  right: -39px;
  top: 50%;
  transform: translate3d(0%, -50%, 0);
  color: var(--color-txt-blue);
}
.b-policy_modal .opening_hour dl dt {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 4px;
  letter-spacing: var(--font-letter-spacing-medium);
  color: var(--color-txt-blue);
}
.b-policy_modal .opening_hour dl dd {
  width: 100%;
  height: 67px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.b-policy_modal .opening_hour dl dd span {
  display: block;
  color: var(--color-txt-blue);
  font-size: 3.7rem;
  letter-spacing: var(--font-letter-spacing-fourExtraLarge);
}
.b-policy_modal .policy_lists p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 1em;
}
.b-policy_modal .policy_lists ol {
  padding-left: 1.5em;
}
.b-policy_modal .policy_lists ol li {
  font-size: 1.4rem;
  line-height: 1.8;
  list-style-type: decimal;
}
.b-policy_modal .c-btns {
  margin-top: 32px;
}
.b-policy_modal .c-btns ul {
  display: flex;
  justify-content: flex-end;
  column-gap: 16px;
}
.b-policy_modal .c-btns ul button {
  height: 48px;
  display: block;
  border-radius: 8px;
}
.b-policy_modal .c-btns ul button.blue {
  background: var(--color-lblue);
}
.b-policy_modal .c-btns ul button.blue span.txt {
  color: var(--color-white);
}
.b-policy_modal .c-btns ul button span.inr {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 4px;
  height: 48px;
  padding: 0 24px;
}
.b-policy_modal .c-btns ul button span.txt {
  font-size: var(--fs-14);
  color: var(--color-txt-blue);
  letter-spacing: var(--font-letter-spacing-medium);
}

@media (any-hover: hover) {
  .b-policy_modal .c-btns ul button {
    transition: background 0.15s linear;
  }
  .b-policy_modal .c-btns ul button:hover {
    background: var(--color-hover-gray);
  }
  .b-policy_modal .c-btns ul button.blue {
    transition: background 0.15s linear;
  }
  .b-policy_modal .c-btns ul button.blue:hover {
    background: var(--color-txt-blue);
  }
}

/*# sourceMappingURL=policy.css.map */
