/*************************************************
style.css
**************************************************/
/* 共通スタイル */
:where(:root) {
  font-family: Noto sans JP, Helvetica Neue, arial, Hiragino Kaku Gothic ProN, Hiragino Sans, BIZ UDPGothic, meiryo, sans-serif;
  font-style: unset;
  font-weight: 400;
  line-height: 1.5;
  text-align: start;
  word-break: initial;
  line-break: strict;
  hyphens: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

:where(body) {
  min-block-size: 100svb;
  margin: unset;
  padding: unset;
  background: var(--color-background-default);
  color: var(--color-text-default);
}

:where(h1, h2, h3, h4, h5, h6) {
  margin-block: unset;
  font-size: unset;
}

ul {
  margin-block: unset;
  padding-inline-start: unset;
}

ul > li {
  list-style-type: '';
}

*:focus-visible {
  /* style */
  outline: 4px solid var(--border-focus);
  outline-offset: 2px;
  /* transition */
  transition: outline 0.3s ease-in-out;
}

.visually-hidden {
  position: fixed !important;
  /* keep it on viewport */
  top: 0px !important;
  left: 0px !important;
  /* give it non-zero size, VoiceOver on Safari requires at least 2 pixels
		 before allowing buttons to be activated. */
  width: 4px !important;
  height: 4px !important;
  /* visually hide it with overflow and opacity */
  opacity: 0 !important;
  overflow: hidden !important;
  /* remove any margin or padding */
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  /* ensure no other style sets display to none */
  display: block !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after,
  ::backdrop {
    background-attachment: scroll !important;
    transition-delay: 0s !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.global_wrap {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.main_wrap {
  flex: 1;
}

.content {
  max-width: var(--container-content);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--space-16);
}
/***********************
header
************************/
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  width: 100svw;
  z-index: var(--stack-head);
  /* style */
  background: var(--color-background-main);
  box-shadow: var(--elevation-01);
}

.site-header__container {
  /* layout */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container-content);
  height: auto;
  margin-inline: auto;
  padding-inline: var(--space-16, 16px);
  /* style */
}

.site-header__title {
  /* layout */
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-12, 12px);
  width: fit-content;
  height: fit-content;
}

.site-header__title a {
  text-decoration: none;
  color: var(--color-text-default);
}

.site-header__title-logo {
  /* layout */
  display: grid;
  place-items: center;
  width: var(--branding-logo-size);
  height: auto;
}

.site-header__title-logo img {
  /* layout */
  display: block;
  width: 100%;
  height: auto;
}

.site-header__title-text {
  /* layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.site-header__title-text--jp {
  /* layout */
  margin: 0;
  /* style */
  color: var(--color-text-bold);
  /* typography */
  font-size: var(--branding-title-font-size);
  font-weight: var(--branding-title-font-weight);
  line-height: var(--branding-title-line-height);
  letter-spacing: var(--branding-title-letter-spacing);
}

.site-header__title-text--en {
  /* style */
  color: var(--color-text-bold);
  /* typography */
  font-size: var(--branding-span-font-size);
  font-weight: var(--branding-span-font-weight);
  line-height: var(--branding-span-line-height);
  letter-spacing: var(--branding-span-letter-spacing);
  text-transform: uppercase;
}

.toggle {
  --toggle-color: var(--color-text-default);
  --toggle-background-default: var(--color-background-subtler);
  --toggle-background-hover: var(--color-background-accent);
  --toggle-size: 80px;
  --toggle-size-mobile: 54px;
  --toggle-line-width: 48px;
  --toggle-line-width-mobile: 32px;
  --toggle-line-height: 3px;
  --toggle-padding: 8px;
  --toggle-padding-mobile: 4px;
  /* layout */
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  row-gap: var(--space-8, 8px);
  width: var(--toggle-size);
  aspect-ratio: 1;
  padding: var(--space-8, 8px);
  z-index: calc(var(--stack-drawer) + 1);
  /* style */
  background-color: var(--toggle-background-default);
  border: 1px solid var(--border-bold);
  outline: 4px solid transparent;
  border-radius: var(--rounded-8);
  color: var(--color-text-default);
  /* transiton */
  transition: background-color 0.3s ease-in-out, outline-color 0.3s ease-in-out;
  cursor: pointer;
}

.toggle:hover,
.toggle:focus-within {
  /* style */
  background-color: var(--toggle-background-hover);
  outline-color: var(--border-bold);
}

.toggle-icon {
  /* layout */
  position: relative;
  display: inline-grid;
  place-items: center;
  width: var(--toggle-line-width);
  /* style */
  background: transparent;
  border: none;
  /* transiton */
  transition: all 0.3s ease-in-out;
}

.toggle-icon::before,
.toggle-icon::after,
.toggle-icon span {
  content: '';
  position: absolute;
  grid-area: 1 / 1;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: var(--toggle-line-height);
  background-color: var(--toggle-color);
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transform-origin: center;
}

.toggle-icon::before {
  transform: translateY(calc(var(--toggle-padding) * -2));
}

.toggle-icon::after {
  transform: translateY(calc(var(--toggle-padding) * 2));
}

.toggle-icon span {
  width: 100%;
  left: 0;
}

.toggle[aria-expanded='true'] .toggle-icon {
  span {
    width: 0;
    left: 50%;
    opacity: 0;
  }

  &::before {
    transform: translateY(0) rotate(135deg);
  }

  &::after {
    transform: translateY(0) rotate(-135deg);
  }
}

.toggle-text {
  --toggle-font-size: 16px;
  --toggle-font-size-mobile: 12px;
  --toggle-font-weight: var(--fontweight-medium);
  --toggle-letter-spacing: var(--tracking-10);
  place-self: center;
  /* typography */
  font-size: var(--toggle-font-size);
  font-weight: var(--toggle-font-weight);
  line-height: 1;
  letter-spacing: var(--toggle-letter-spacing);
  text-transform: capitalize;
  /* transiton */
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
}

.toggle-text.fade-out {
  opacity: 0;
}

/* search */
.search-form__inner {
  /* layout */
  display: flex;
  align-items: center;
  column-gap: var(--space-8, 8px);
  height: 42px;
  padding: var(--space-2, 2px);
  border: 1px solid var(--border-accent);
  border-radius: var(--rounded-4);
  /* transition */
  transition: background-color 0.3s ease-in-out;
}

.search-form__inner:hover,
.search-form__inner:focus-within {
  background-color: var(--ud--search-form-background);
}

.search-form__input {
  /* layout */
  flex: 1;
  padding-inline-start: 32px;
  height: 100%;
  /* style */
  background: var(--color-background-default);
  background-size: 18px;
  border: transparent;
  border-radius: var(--rounded-4);
  /* transition */
  transition: border-color 0.3s ease-in-out;
}

.search-form__input:focus-visible {
  /* style */
  border-color: var(--border-focus);
}

form input[type='text'] {
  border: none;
}

.blc_search .search_wrap_inner input[type='submit'] {
  /* layout */
  display: grid;
  place-items: center;
  padding: var(--space-6, 6px) var(--space-24, 24px);
  width: fit-content;
  height: auto;
  /* style */
  background: var(--button-color-default);
  border: 2px solid var(--border-default);
  border-radius: var(--rounded-4);
  color: var(--color-text-inverse);
  /* typography */
  font-size: calc(24 / 16 * 1rem);
  font-weight: var(--fontweight-medium);
  line-height: 1;
  letter-spacing: var(--tracking-10);
  /* transition */
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

form input[type='submit'].search_bt:hover,
form input[type='submit'].search_bt:focus-within {
  /* style */
  background-color: var(--color-background-subtle);
  color: var(--color-text-default);
}

/* --------------------
Drawer
--------------------*/
.drawer {
  --drawer-color-link-text: var(--color-text-default);
  --drawer-color-background: var(--color-background-subtle);
  --drawer-nav-color: var(--color-text-default);
  --drawer-nav-text: 22px;
  --drawer-nav-text-mobile: 22px;
  --drawer-nav-font-weight: var(--fontweight-medium);
  --drawer-nav-letter-spacing: var(--tracking-10);
  /* layout */
  display: grid;
  place-items: center;
  position: fixed;
  inset-block-start: var(--header-height);
  inset-inline-start: 0;
  z-index: calc(var(--stack-head) - 1);
  width: 100svw;
  height: auto;
  padding-block: var(--space-16, 16px);
  /* style */
  background: var(--color-background-subtler);
  border-bottom: 2px solid var(--border-subtler);
  box-shadow: var(--elevation-01);
  opacity: 0;
  visibility: hidden;
  /* transition */
  transition: opacity 0.3s, visibility 0.3s;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__container {
  /* layout */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-content);
  margin-inline: auto;
  padding-inline: var(--space-16, 16px);
}

.drawer-nav {
  /* layout */
  display: flex;
  width: 100%;
  height: auto;
}

.drawer-nav__list {
  /* layout */
  display: flex;
  width: 100%;
  height: auto;
}

.drawer-nav__item {
  /* layout */
  position: relative;
  width: 100%;
  height: auto;
  padding-inline-end: calc(var(--space-8, 8px) * 2 + 1px);
}

.drawer-nav__item:not(:last-child)::after {
  /* layout */
  content: '';
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: var(--space-8, 8px);
  transform: translateY(-50%);
  width: 1px;
  height: 80%;
  /* style */
  border-right: 1px dashed var(--border-default);
}

.drawer-nav__link {
  /* layout */
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: row;
  place-items: center;
  gap: var(--space-6, 6px);
  width: 100%;
  padding-block: var(--space-12, 12px);
  padding-inline: var(--space-24, 24px);
  gap: var(--space-6, 6px);

  /* style */
  border: 1px solid transparent;
  border-radius: var(--rounded-8, 8px);
  text-decoration: none;

  /* transition */
  transition: all 0.3s ease;
}

.drawer-nav__link:hover,
.drawer-nav__link:focus-within {
  /* style */
  background-color: var(--color-background-subtle);
  border-color: var(--border-subtle);
}

.drawer-nav__icon-wrap {
  /* layout */
  display: grid;
  place-items: center;
  max-width: 95px;
  aspect-ratio: 1;
  /* style */
  background: var(--color-background-default);
  border-radius: var(--rounded-full);
  border: 1px solid var(--border-subtle);
}

.drawer-nav__icon-wrap img {
  /* layout */
  display: block;
  width: 100%;
  height: auto;
}

.drawer-nav__label {
  /* layout */
  display: inline-grid;
  place-items: center;
  /* style */
  color: var(--color-text-default);
  /* typography */
  font-size: var(--font-size-22);
  font-weight: var(--fontweight-medium);
  line-height: 1.5;
  letter-spacing: var(--tracking-5);
  text-align: center;
}

/* ===========================
page control
=========================== */
.page_control {
  --ud--change-button: var(--button-size--min-mobile);
  /* layout */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: var(--space-32, 32px);
  margin-inline: auto;
  padding-block: var(--space-32, 32px);
  width: 100%;
  max-width: var(--device-width-md);
  height: auto;
}

.page_control .conf {
  margin: unset;
  padding: unset;
}

.page_control .UD {
  margin: 0;
  padding: 0;
}

.UD {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16, 16px);
}

.color_change,
.textsize_change {
  /* layout */
  display: grid;
  grid-template-columns: 6rem repeat(3, var(--ud--change-button));
  gap: var(--space-12, 12px);
  align-items: center;
}

dl.color_change,
.color_change > dd,
dl.textsize_change,
.textsize_change > dd {
  margin: 0;
}

.color_change > dt,
.textsize_change > dt {
  /* style */
  color: var(--color-text-default);
  /* typography */
  font-size: calc(18 / 16 * 1rem);
  font-weight: var(--fontweight-regular);
}

.color_change > dd,
.textsize_change > dd {
  /* layout */
  display: grid;
  place-items: center;
  height: var(--ud--change-button);
  aspect-ratio: 1 / 1;
  /* style */
  border-radius: var(--rounded-4, 4px);
  outline: 4px solid transparent;
  /* typography */
  font-size: calc(18 / 16 * 1rem);
  font-weight: var(--fontweight-medium);
  /* transition */
  transition: outline-color 0.3s ease;
}

.color_change > dd > a,
.textsize_change > dd > a {
  /* layout */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  /* style */
  border-radius: var(--rounded-4, 4px);
  color: #000;
  text-decoration: none;
  overflow: hidden;
}

.color_change .high {
  /* style */
  background-color: #000;
  border: 1px solid #fff;
}

.color_change .high > a {
  /* style */
  color: #fff;
}

.color_change .default {
  /* style */
  background-color: #fff;
  border: 1px solid #333;
}

.color_change .low {
  /* style */
  background-color: #a3a3a2;
  border: 1px solid #333;
}

.textsize_change > dd {
  background-color: #fff;
  border: 1px solid #333;
}

.color_change > dd:hover,
.textsize_change > dd:hover,
.color_change > dd:focus-within,
.textsize_change > dd:focus-within {
  outline-color: var(--border-bold) !important;
}

/* ===========================
drawer search
=========================== */
.drawer-search__wrap {
  --ud--search-form-background: var(--color-background-default);
  --ud--search-form-background-focused: #eff4f5;
  /* layout */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: var(--space-8, 8px);
  width: 100%;
  min-width: 415px;
}

.drawer-search__title {
  /* layout */
  display: grid;
  place-items: center start;
  width: 100%;
  /* style */
  color: var(--color-text-default);
  /* typography */
  font-size: calc(18 / 16 * 1rem);
  font-weight: var(--fontweight-regular);
  text-align: start;
}

.drawer-search__inner {
  /* layout */
  display: flex;
  justify-content: flex-start;
}

.drawer-search__inner {
  /* layout */
  display: flex;
  justify-content: flex-start;
  column-gap: var(--space-6, 6px);
  width: 100%;
  height: 56px;
  padding: var(--space-2, 2px);
  /* transition */
  transition: background-color 0.3s ease-in-out;
}

.search_txt::placeholder {
  padding-inline-start: var(--space-6);
  /* style */
  color: var(--color-text-subtler);
  opacity: 1; /* Firefox用 */
  /* typography */
  font-size: calc(16 / 16 * 1rem);
}
/* ブラウザ互換性のため */
.search_txt::-webkit-input-placeholder {
  font-size: calc(16 / 16 * 1rem);
}

.search_txt::-moz-placeholder {
  font-size: calc(16 / 16 * 1rem);
}

.search_txt:-ms-input-placeholder {
  font-size: calc(16 / 16 * 1rem);
}

.blc_search .search_wrap_inner {
  width: 100%;
}

.blc_search .search_wrap_inner input[type='text'] {
  /* style */
  background: var(--color-background-default);
  border-radius: var(--rounded-4);
  border: 1px solid var(--border-default);
  outline: 4px solid transparent;
  border-radius: var(--rounded-4);
  /* transition */
  transition: outline-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.drawer-search__inner input[type='text']:focus-visible {
  outline: 4px solid var(--border-focus);
}

.drawer-search__inner input[type='text']:hover,
.drawer-search__inner input[type='text']:focus-within {
  /* style */
  outline-color: var(--border-bold);
  background-color: var(--ud--search-form-background-focused);
}

/* ===============================
Drawer Overlay
================================ */
.drawer-overlay {
  /* layout */
  position: fixed;
  inset: 0;
  top: var(--header-height);
  /* style */
  background-color: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--stack-head) - 2);
  opacity: 0;
  visibility: hidden;
  /* transition */
  transition: opacity 0.3s, visibility 0.3s;
}

.drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
/* ===============================
Footer
================================ */
.site-footer {
  /* layout */
  position: relative;
  width: 100%;
  height: auto;
  /* style */
  background: var(--color-background-subtler);
  border-top: 2px solid var(--border-subtler);
}

.site-footer__container {
  /* layout */
  position: relative;
  width: 100%;
  z-index: 2;
  overflow: hidden;
}

.site-footer__container::after {
  /* layout */
  content: '';
  display: block;
  position: absolute;
  inset-block-end: 0;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  width: min(100%, 1492px);
  height: 100%;
  max-height: 262px;
  /* style */
  background: url(../img/bg-footer.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1492px 100%;
  aspect-ratio: 1492 / 262;
  z-index: var(--stack-background);
}

/* 1441px以上では画像全体を表示 */
@media (min-width: 1441px) {
  .site-footer__container::after {
    width: 100%;
    background-size: contain;
  }
}

.site-footer__wrap {
  /* layout */
  display: flex;
  justify-content: space-between;
  gap: var(--space-32, 32px);
  width: 100%;
  max-width: var(--container-content);
  padding-block: var(--space-32, 32px);
  padding-inline: var(--space-16, 16px);
}

/* ------- 
Footer Details
------- */
/* branding */
.site-footer__title {
  /* layout */
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: var(--space-12, 12px);
  width: fit-content;
  height: fit-content;
}

.site-footer__title-logo {
  /* layout */
  display: grid;
  place-items: center;
  width: 120px;
  height: auto;
}

.site-footer__title-logo img {
  /* layout */
  display: block;
  width: 100%;
  height: auto;
}

.site-footer__title-text {
  /* layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.site-footer__title-text--jp {
  /* layout */
  margin: 0;
  /* style */
  color: var(--color-text-bold);
  /* typography */
  font-size: var(--branding-title-font-size);
  font-weight: var(--branding-title-font-weight);
  line-height: var(--branding-title-line-height);
  letter-spacing: var(--branding-title-letter-spacing);
}

.site-footer__title-text--en {
  /* style */
  color: var(--color-text-bold);
  /* typography */
  font-size: var(--branding-span-font-size);
  font-weight: var(--branding-span-font-weight);
  line-height: var(--branding-span-line-height);
  letter-spacing: var(--branding-span-letter-spacing);
  text-transform: uppercase;
}

/* info */
.footer-info {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: var(--space-32, 32px);
}

.location-info > dl,
.contact-group {
  margin-block: 0;
}

.location-info__main,
.location-info__contact,
.contact-group__value {
  margin-inline-start: 0;
}

.contact-group__item {
  display: inline-flex;
  margin-block: 0;
}

.contact-group__value > a {
  color: var(--color-text-default);
  text-decoration: none;
}

.location-info__details {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
}

.location-info__address-group,
.location-info__contact-group {
  display: inline-flex;
  flex-wrap: wrap;
  margin-inline-start: 0;
}

.location-info__address-group > span,
.location-info__contact-group > span {
  /* style */
  color: var(--color-text-default);
  /* typography */
  font-size: calc(18 / 16 * 1rem);
  font-weight: var(--fontweight-regular);
  letter-spacing: var(--tracking-6);
  white-space: nowrap;
}

.location-info__zip {
  /* layout */
  padding-inline-end: var(--space-16);
  /* style */
  text-decoration: none;
  pointer-events: none;
  -webkit-text-fill-color: inherit;
  color: inherit;
}

/* ------- 
Footer Links
------- */
.site-footer-link {
  /* layout */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: var(--space-32, 32px);
}

.site-footer-links__text-link {
  /* layout */
  display: grid;
  place-items: center;
  padding: var(--space-8, 8px) var(--space-24, 24px);
  /* style */
  background: var(--color-background-default);
  border: 1px solid var(--border-inverse);
  border-radius: var(--rounded-full);
  color: var(--color-text-default);
  text-decoration: none;
  /* typography */
  font-size: calc(17 / 16 * 1rem);
  font-weight: var(--fontweight-medium);
  line-height: 1;
  letter-spacing: var(--tracking-5);
  white-space: nowrap;
}

.site-footer-links__text-link:hover,
.site-footer-links__text-link:focus-visible {
  text-decoration: underline;
}

.site-footer-links__banner-link {
  /* layout */
  display: block;
  width: 100%;
  max-width: 208px;
  height: auto;
  /* style */
  border-radius: var(--rounded-12);
  border: 1px solid var(--border-inverse);
  outline: 4px solid transparent;
  overflow: hidden;
  /* transition */
  transition: outline-color 0.3s ease-in-out;
}

.site-footer-links__banner-link img {
  /* layout */
  display: block;
  width: 100%;
  height: auto;
}

.site-footer-links__banner-link:hover,
.site-footer-links__banner-link:focus-visible {
  outline-color: var(--border-bold);
}

/*===========================
Copyright
=============================*/
.copyright {
  background: var(--color-background-main);
}

.copyright__container {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: var(--container-content);
  margin-inline: auto;
  padding-block: var(--space-24);
}

.copyright p {
  /* layout */
  margin: unset;
  /* typography */
  font-size: calc(16 / 16 * 1rem);
  font-weight: var(--fontweight-regular);
  letter-spacing: var(--tracking-6);
  text-align: end;
}

/*************************************************
 reread-link
**************************************************/
.reread-link {
  position: fixed;
  inset-block-end: 40px;
  inset-inline-end: 48px;
  width: 76px;
  height: 76px;
  background-color: var(--color-background-main);
  border: 1px solid var(--border-inverse);
  border-radius: var(--rounded-full);
  box-shadow: 0 0 0 0 var(--border-inverse);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: var(--stack-foot);
}

.reread-link a {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.reread-link img {
  width: 100%;
  max-width: 40px;
  height: auto;
  object-fit: contain;
}

.reread-link:hover,
.reread-link:focus-visible {
  background-color: var(--color-background-subtle);
  box-shadow: 0 0 0 2px var(--border-inverse);
  overflow: hidden;
}

.contents {
  margin-block-start: var(--header-height);
}
/*************************************************
 CMS用テンプレート  .txtbox内部
**************************************************/
div.locus {
  --locus--link: var(--color-text-bredcrumb-link);
  --locus--text: var(--color-text-bredcrumb);
  --locus--font-size: var(--font-size-18);
  --locus--font-weight: var(--fontweight-regular);
  --locus--letter-spacing: var(--tracking-6);

  width: 100%;
  background: var(--color-background-subtler);
  border-bottom: 1px solid var(--border-subtler);
}

.locus_wrap {
  /* layout */
  display: flex;
  max-width: var(--container-content);
  height: min-content;
  margin-inline: auto;
  padding: var(--space-8, 8px) var(--space-16, 16px);
}

p.locus {
  /* style */
  margin-block: unset;
  /* typography */
  font-size: var(--locus--font-size);
  font-weight: var(--locus--font-weight);
  line-height: 1;
  letter-spacing: var(--locus--letter-spacing);
}

.locus a {
  /* layout */
  margin: 0 0.1em;
  /* style */
  color: var(--locus--link);
}

.locus a:hover,
.locus a:focus-within {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.locus span {
  margin: 0 0.2em;
  color: var(--locus--text);
}

.page .contents {
  position: relative;
  overflow-x: clip;
}

.page .content-date {
  /* layout */
  display: flex;
  justify-content: end;
  margin-block-start: unset;
}

.contents_inside {
  /* layout */
  display: grid;
  grid-auto-flow: column;
  column-gap: var(--space-64);
  margin-block-start: var(--space-64, 64px);
  margin-inline: auto;
  padding-inline: var(--space-16, 16px);
  width: 100%;
  max-width: var(--container-content);
}

.contents_wrap {
  width: 100%;
}

.contents_main {
  min-width: 0;
}

/* ===============================
TxtBox(CMS用)
================================ */
.txtbox {
  --txtbox--font-size: var(--font-size-18);
  --txtbox--font-weight: var(--fontweight-regular);
  --txtbox--letter-spacing: var(--tracking-6);
  --txtbox--line-height: 1.6;
  --txtbox--text-link: var(--color-text-link);
  --txtbox--text-link--hover: var(--color-text-link);
  --txtbox--marker-color: var(--color-text-default);
  --txtbox--marker-size: 6px;
  width: 100%;
}

.txtbox > :not(h1, h2, h3, h4, h5, h6) {
     font-size: var(--txtbox--font-size);
}

/* heading h1 */
h1.page-title {
  --heading--border-color-h1: var(--border-main);
  --heading--color-h1: var(--color-text-default);
  --heading--font-size-h1: var(--font-size-30);
  --heading--font-weight-h1: var(--fontweight-medium);
  --heading--letter-spacing-h1: var(--tracking-4);
  --heading--line-height-h1: 1.5;
  /* layout */
  position: relative;
  display: block;
  width: 100%;
  margin-block-end: var(--space-32, 32px);
  padding-inline: var(--space-8, 8px);
  /* style */
  color: var(--heading--color-h1);
  /* typography */
  font-size: var(--heading--font-size-h1);
  font-weight: var(--heading--font-weight-h1);
  line-height: var(--heading--line-height-h1);
  letter-spacing: var(--heading--letter-spacing-h1);
}

h1.page-title::after {
  /* layout */
  content: '';
  position: absolute;
  inset-block-end: calc(-1 * var(--space-32, 32px));
  inset-inline-start: 0;
  width: 100%;
  height: 2px;
  /* style */
  background: var(--heading--border-color-h1);
}

h1.page-title + * {
  padding-block-start: var(--space-32, 32px);
}

.txtbox h2 {
  --heading--background-color-h2: var(--color-background-subtler);
  --heading--border-color-h2: var(--color-border-main);
  --heading--rounded-h2: var(--rounded-4);
  --heading--color-h2: var(--color-text-default);
  --heading--font-size-h2: var(--font-size-26);
  --heading--font-weight-h2: var(--fontweight-medium);
  --heading--line-height-h2: 1.5;
  --heading--letter-spacing-h2: var(--tracking-5);
  /* layout */
  position: relative;
  width: 100%;
  margin-block-end: var(--space-16, 16px);
  padding-inline: var(--space-16, 16px);
  padding-block: var(--space-12, 12px);
  /* style */
  background: var(--heading--background-color-h2);
  border: 1px solid var(--border-subtle);
  border-radius: var(--rounded-8, 8px);
  color: var(--heading--color-h2);
  /* typography */
  font-size: var(--heading--font-size-h2);
  font-weight: var(--heading--font-weight-h2);
  line-height: var(--heading--line-height-h2);
  letter-spacing: var(--heading--letter-spacing-h2);
}

.txtbox h3 {
  --heading--marker-color-h3: var(--border-main);
  --heading--border-color-h3: var(--border-default);
  --heading--color-h3: var(--color-text-default);
  --heading--font-size-h3: var(--font-size-24);
  --heading--font-weight-h3: var(--fontweight-medium);
  --heading--line-height-h3: 1.5;
  --heading--letter-spacing-h3: var(--tracking-5);
  /* layout */
  position: relative;
  margin-block-end: var(--space-16, 16px);
  padding-block-start: var(--space-8, 8px);
  padding-block-end: var(--space-8, 8px);
  padding-inline-start: calc(5px + var(--space-12, 12px));
  border-bottom: 1px dashed var(--border-default);
  /* style */
  color: var(--heading--color-h3);

  /* typography */
  font-size: var(--heading--font-size-h3);
  font-weight: var(--heading--font-weight-h3);
  line-height: var(--heading--line-height-h3);
  letter-spacing: var(--heading--letter-spacing-h3);
}

.txtbox h3::before {
  position: absolute;
  inset-block-start: 7px;
  inset-inline-start: 0;
  width: 5px;
  height: 90%;
  background: var(--heading--marker-color-h3);
  display: block;
  content: '';
}

.txtbox h4 {
  --heading--marker-color-h4: var(--border-bold);
  --heading--color-h4: var(--color-text-default);
  --heading--font-size-h4: var(--font-size-22);
  --heading--font-weight-h4: var(--fontweight-bold);
  --heading--line-height-h4: 1.5;
  --heading--letter-spacing-h4: var(--tracking-5);
  /* layout */
  position: relative;
  padding-inline-start: calc(23px + var(--space-6, 6px));
  /* style */
  color: var(--heading--color-h4);
  font-size: var(--heading--font-size-h4);
  font-weight: var(--heading--font-weight-h4);
  line-height: var(--heading--line-height-h4);
  letter-spacing: var(--heading--letter-spacing-h4);
}

.txtbox h4::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: calc(23 / 16 * 1rem);
  height: calc(23 / 16 * 1rem);
  background: none;
  border-radius: var(--rounded-full);
  box-shadow: inset 0 0 0 calc(5 / 16 * 1rem) var(--heading--marker-color-h4);
}

.txtbox h5 {
  --heading--marker-color-h5: var(--border-bold);
  --heading--rounded-h5: var(--rounded-4);
  --heading--color-h5: var(--color-text-default);
  --heading--font-size-h5: var(--font-size-20);
  --heading--font-weight-h5: var(--fontweight-medium);
  --heading--line-height-h5: 1.5;
  --heading--letter-spacing-h5: var(--tracking-5);
  /* layout */
  position: relative;
  padding-inline-start: calc(13px + var(--space-6, 6px));
  /* sytle */
  color: var(--heading--color-h5);
  font-size: var(--heading--font-size-h5);
  font-weight: var(--heading--font-weight-h5);
  letter-spacing: var(--heading--letter-spacing-h5);
}

.txtbox h5::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  inset-block-start: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 12px;
  background: var(--heading--marker-color-h5);
}

.txtbox h6 {
  --heading--marker-color-h6: none;
  --heading--color-h6: var(--color-text-default);
  --heading--font-size-h6: var(--font-size-18);
  --heading--font-weight-h6: var(--fontweight-medium);
  --heading--line-height-h6: 1.6;
  --heading--letter-spacing-h6: var(--tracking-6);
  position: relative;
  padding-inline-start: calc(4px + var(--space-12, 12px));
  font-size: var(--heading--font-size-h6);
  font-weight: var(--heading--font-weight-h6);
  letter-spacing: var(--heading--letter-spacing-h6);
}

.txtbox h6::before {
  content: '';
  position: absolute;
  display: block;
  inset-block-start: 2px;
  inset-inline-start: 2px;
  width: 4px;
  height: 24px;
  background: var(--heading--marker-color-h6);
}

.txtbox :is(ul, ol) + h2 {
  margin-block-start: var(--space-32, 32px);
}
.txtbox h4 {
  margin-block-end: var(--space-4, 4px);
}
.txtbox h5,
.txtbox h6 {
  margin-block-end: var(--space-6);
}

/*
article p,
.txtbox :is(p, table, dl) {
  font-size: var(--txtbox--font-size);
}

.txtbox > :is(ul, ol) > li {
  font-size: var(--txtbox--font-size);
}

.txtbox :is(table p, :is(ul, ol) :is(ul, ol) > li) {
  font-size: 1em;
}
*/

.txtbox :is(ul, ol) :is(ul, ol) li:first-child {
  margin-block-start: var(--space-4, 4px);
}

.txtbox i,
.txtbox em {
  padding-inline-end: 0.5em;
}

/* table */
.txtbox table {
  --table--stripes-border-color: var(--border-table);
  --table--th-background-color: var(--color-background-subtler);
  --table--td-background-color: var(--color-background-default);
  --table--has-background-text-color: var(--color-text-default);
  --table--th-font-color: var(--color-text-default);
}

.txtbox table th {
  border: 1px solid var(--table--stripes-border-color);
}

.txtbox table td {
  border: 1px solid var(--table--stripes-border-color);
}

.txtbox table th {
  color: var(--table--th-font-color);
  background: var(--table--th-background-color);
}

.txtbox table th[scope='col'] {
  background: var(--table--th-background-color);
}

.txtbox table th[scope='row'] {
  background: var(--table--th-background-color);
  border: 1px solid var(--table--stripes-border-color);
}

.txtbox table td {
  background: var(--table--td-background-color);
}

.txtbox li {
  margin-block-end: 0.5em;
}

.txtbox ul > li {
  position: relative;
  padding-inline-start: 1.2em;
}

.txtbox ul > li:before {
  /* layout */
  content: '';
  position: absolute;
  display: block;
  inset-inline-start: var(--space-8);
  inset-block-start: 0.6em;
  width: var(--txtbox--marker-size);
  height: var(--txtbox--marker-size);
  aspect-ratio: 1 / 1;
  /* style */
  background: var(--txtbox--marker-color);
  border-radius: var(--rounded-full);
}

.txtbox p {
  font-weight: var(--txtbox--font-weight);
  letter-spacing: var(--txtbox--letter-spacing);
  line-height: var(--txtbox--line-height);
}

.txtbox table.wide_table caption,
.txtbox table.widetable caption {
  text-align: center;
}

.list-style--hidden li::before {
  display: none;
}

a.outside,
a.sizeview {
  color: var(--txtbox--text-link);
}

.txtbox a:hover,
.txtbox a:focus-within {
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

/**************************
Menu
`W**************************/
.menu-header {
  /* layout */
  position: relative;
  width: 100%;
  height: auto;
  padding-block: var(--space-64, 64px);
  padding-inline: var(--space-16, 16px);
  /* style */
  background: var(--color-background-accent);
  /* typography */
  font-size: var(--font-size-24);
  font-weight: var(--fontweight-medium);
}

.menu-header__container {
  /* layout */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: var(--space-16, 16px);
  width: 100%;
  max-width: var(--container-content);
  margin-inline: auto;
}

.menu-header__title {
  /* layout */
  position: relative;
  padding-block-end: var(--space-8, 8px);
  /* typography */
  font-size: calc(30 / 24 * 1em);
  font-weight: var(--fontweight-medium);
  line-height: 1.5;
  letter-spacing: var(--tracking-4);
}

.menu-header__title::after {
  /* layout */
  content: '';
  position: absolute;
  inset-block-end: calc(var(--space-4, 4px) * -1);
  inset-inline-end: 0;
  width: 100%;
  height: 2px;
  background: var(--border-default);
}

.menu-nav {
  width: 100%;
  max-width: var(--max-content-width);
  margin-inline: auto;
  padding-block: var(--space-80, 80px);
  padding-inline: var(--space-32, 32px);
}

.menu-nav__list {
  /* layout */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, calc(var(--device-width-md)) + calc(var(--space-32, 32px) * 2)), 1fr));
  gap: var(--space-40, 40px) var(--space-64, 64px);
  width: 100%;
}

.menu-nav__item {
  /* layout */
  position: relative;
  /* style */
  list-style-type: '';
}

.menu-nav__link {
  /* layout */
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-16, 16px);
  padding-block: var(--space-8, 8px);
  padding-inline: var(--space-8, 8px) var(--space-16, 16px);
  width: 100%;
  height: 100%;
  min-height: 80px;
  /* style */
  background: var(--color-background-default);
  border-radius: var(--rounded-8, 8px);
  border: 4px solid var(--border-subtler);
  outline: 4px solid var(--border-main);
  color: var(--color-text-default);
  /* typography */
  font-size: var(--font-size-20);
  font-weight: var(--fontweight-medium);
  line-height: 1.2;
  letter-spacing: var(--tracking-6);
  text-decoration: none;
  /* transition */
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out, outline-color 0.3s ease-in-out;
}

.menu-nav__link:hover,
.menu-nav__link:focus-within {
  background-color: var(--color-background-subtler);
  border-color: var(--border-inverse);
  outline-color: var(--border-bold);
}

.menu-nav__link::before {
  /* layout */
  content: '';
  width: 6px;
  height: 60%;
  background: var(--border-bold);
  border-radius: var(--rounded-full);
  justify-self: start;
}

.menu-nav__link::after {
  /* layout */
  content: '';
  width: 22px;
  height: auto;
  aspect-ratio: 1;
  background: url(../img/linkarrow.png) no-repeat center center / contain;
  justify-self: end;
}

/**************************
Archive
**************************/
.news-section {
  padding-block: var(--space-80, 80px);
  padding-inline: var(--space-16, 16px);
}

.news-list__category--library {
  background: var(--category-library--background);
  border: 1px solid var(--category-library--border);
}

.news-list__category--main {
  background: var(--category-main--background);
  border: 1px solid var(--category-main--border);
}

.news-list__category--branch {
  background: var(--category-branch--background);
  border: 1px solid var(--category-branch--border);
}

.news-list__list {
  /* layout */
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin-inline: auto;
}

.news-list__item {
  /* layout */
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: var(--space-8);
  padding-block: var(--space-16, 16px);
  border-bottom: 1px dashed var(--border-default);
}

.news-list__meta {
  /* layout */
  display: flex;
  column-gap: var(--space-4, 4px);
}

.news-list__date {
  /* layout */
  display: inline;
  width: fit-content;
  /* style */
  color: var(--color-text-default);
  /* typography */
  font-size: var(--font-size-18);
  font-weight: var(--fontweight-regular);
  letter-spacing: var(--tracking-5);
  white-space: nowrap;
}

.news-list__category {
  /* layout */
  display: grid;
  place-items: center;
  width: fit-content;
  min-width: 100px;
  height: auto;
  padding: var(--space-8, 8px) var(--space-12, 12px);
  /* style */
  border: 1px solid var(--border-bold);
  border-radius: var(--rounded-full);
  color: var(--color-text-default);
  /* typography */
  font-size: var(--font-size-14);
  font-weight: var(--fontweight-regular);
  line-height: 1;
  letter-spacing: none;
}

.news-list__title {
  grid-column: 1 / -1;
}

.news-list__link {
  grid-row: 2;
  position: relative;
  min-width: 0;
  /* sytle */
  color: var(--color-text-default);
  font-size: var(--font-size-18);
  font-weight: var(--fontweight-regular);
  line-height: 1.3;
  letter-spacing: var(--tracking-6, 6px);
  text-decoration: none;
}

.news-list__link:hover,
.news-list__link:focus-within {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.pagination {
  margin-block: var(--space-24, 24px);
}

.pagination__list {
  display: flex;
  justify-content: space-between;
  gap: var(--space-32, 32px);
}

.pagination__link {
  /* layout */
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-8, 8px);
  padding-block: var(--space-8, 8px);
  padding-inline: var(--space-6, 6px);
  /* style */
  color: var(--color-text-default);
  background: var(--color-background-default);
  border: 1px solid var(--border-bold);
  outline: 4px solid transparent;
  border-radius: var(--rounded-8, 8px);
  text-decoration: none;
  /* typography */
  font-size: var(--font-size-16);
  font-weight: var(--fontweight-regular);
  text-box-trim: trim-both;
  letter-spacing: var(--tracking-5);
  /* transition */
  transition: outline-color 0.3s ease-in-out;
}

.pagination__link:hover,
.pagination__link:focus-within {
  outline-color: var(--border-bold);
}

.pagination__link--prev::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../img/pagination_chevron.png) no-repeat center center / contain;
  transform: rotate(180deg);
}

.pagination__link--next::after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(../img/pagination_chevron.png) no-repeat center center / contain;
}
/**************************
Responsive
**************************/
@media (width < 1080px) {
  .drawer {
    height: 60svh;
  }

  .drawer__container {
    flex-direction: row;
    gap: var(--space-40, 40px);
    align-items: start;
    max-width: 777px;
  }

  .drawer-nav__list {
    flex-direction: column;
  }

  .drawer-nav__item {
    padding-inline-end: unset;
    padding-block-end: calc(var(--space-8, 8px) * 2 + 1px);
  }

  .drawer-nav__item:not(:last-child)::after,
  .drawer-nav__item::after {
    /* layout */
    content: '';
    position: absolute;
    inset-block-start: unset;
    inset-block-end: var(--space-8, 8px); /* 下側の余白を確保 */
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    /* style */
    border-bottom: 1px dashed var(--border-default);
  }

  .drawer-nav__link {
    grid-template-columns: auto 1fr;
    place-items: center start;
  }

  .drawer-nav__icon-wrap {
    width: 54px;
  }

  .page_control {
    flex-direction: column;
  }

  .search_wrap {
    min-width: 300px;
    /* max-width: 362px; */
  }

  .search_wrap_inner {
    width: 100%;
  }

  .page_control {
    padding-block: unset;
  }

  .color_change,
  .textsize_change {
    grid-template-columns: 1fr repeat(3, var(--ud--change-button));
    gap: var(--space-12, 12px);
  }

  .color_change > dd {
    height: var(--ud--change-button);
  }

  .blc_search .search_wrap_inner input[type='submit'] {
    padding-inline: var(--space-12);
  }
}

@media (width < 768px) {
  .drawer {
    height: 80svh;
  }
  .toggle-text {
    /* typography */
    font-size: calc(16 / 16 * 1rem);
  }

  .drawer {
    overflow-y: auto;
  }

  .drawer::-webkit-scrollbar {
    width: 8px;
  }

  .drawer__container {
    flex-direction: column;
    justify-content: unset;
    row-gap: var(--space-24, 24px);
  }

  .drawer-nav {
    max-width: 375px;
    margin-inline: auto;
  }

  .drawer-nav__link {
    /* layout */
    padding-block: var(--space-8, 8px);
    padding-inline: var(--space-6, 6px) calc(var(--space-12, 12px) + 32px);
    /* typography */
    font-size: var(--font-size-16);
  }

  .page_control {
    max-width: 375px;
  }

  .color_change > dt,
  .textsize_change > dt,
  .drawer-search__title {
    font-size: calc(18 / 16 * 1rem);
  }
  .blc_search .search_wrap_inner input[type='submit'] {
    font-size: calc(20 / 16 * 1rem);
  }

  .site-footer__wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-info {
    row-gap: var(--space-16, 16px);
  }

  .location-info {
    place-self: center;
  }

  .location-info__address-group,
  .location-info__contact-group {
    justify-content: center;
  }

  .site-footer-link {
    /* layout */
    align-items: center;
  }
}

@media (width < 576px) {
  .site-header__title-logo {
    width: var(--branding-logo-size-mobile);
  }
  .site-header__title-text--jp,
  .site-footer__title-text--jp {
    font-size: var(--branding-title-font-size-mobile);
  }
  .site-header__title-text--en,
  .site-footer__title-text--en {
    font-size: var(--branding-span-font-size-mobile);
  }

  .toggle {
    row-gap: var(--space-6, 6px);
    padding: var(--space-6, 6px);
    width: var(--toggle-size-mobile);
  }
  .toggle-icon {
    width: var(--toggle-line-width-mobile);
  }

  .toggle-icon::before {
    transform: translateY(calc(var(--toggle-padding-mobile) * -2));
  }

  .toggle-icon::after {
    transform: translateY(calc(var(--toggle-padding-mobile) * 2));
  }

  .toggle-text {
    font-size: calc(14 / 16 * 1rem);
  }

  .drawer {
    height: calc(100svh - var(--header-height));
  }

  h1.content-title {
    margin-block-end: calc(var(--space-32) * 0.8);
    font-size: calc(var(--heading--font-size-h1) * 0.8);
  }
  h1.content-title + * {
    padding-block-start: var(--space-24);
  }
  h1.content-title::after {
    inset-block-end: calc(-0.7 * var(--space-32));
  }

  .txtbox h2 {
    font-size: calc(var(--heading--font-size-h2) * 0.84);
  }
  .txtbox h3 {
    font-size: calc(var(--heading--font-size-h3) * 0.84);
  }

  .txtbox h4 {
    font-size: calc(var(--heading--font-size-h4) * 0.84);
  }
  .txtbox h5 {
    font-size: calc(var(--heading--font-size-h5) * 0.84);
  }
  .txtbox h6 {
    font-size: calc(var(--heading--font-size-h6) * 0.84);
  }

  article p,
  .txtbox :is(p, table, dl) {
    font-size: calc(var(--txtbox--font-size) * 0.84);
  }

  /* 第一階層のリストアイテムのフォントサイズ設定 */
  .txtbox > :is(ul, ol) > li {
    font-size: calc(var(--txtbox--font-size) * 0.84);
  }

  /* 入れ子要素のフォントサイズ設定 */
  .txtbox :is(table p, :is(ul, ol) :is(ul, ol) > li) {
    font-size: 1em;
  }

  .reread-link {
    inset-block-end: 24px;
    inset-inline-end: 4px;
    width: 54px;
    height: 54px;
  }

  .reread-link a img {
    max-width: 32px;
  }

  .site-footer__title-logo {
    width: 100px;
  }

  .site-footer-links__list {
    /* layout */
    display: flex;
    flex-direction: column;
    column-gap: var(--space-16);
    background: none;
  }

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

  .site-footer-links__item:not(:first-child)::before {
    content: none;
  }

  .site-footer-links__link {
    /* layout */
    place-self: center;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    width: 100%;
    max-width: 240px;
    padding: var(--space-16, 16px) var(--space-24, 24px);
    border-radius: var(--rounded-full);
    background: var(--color-background-default);
  }

  .site-footer-links__link:hover::after {
    content: none;
  }

  .copyright span {
    font-size: calc(12 / 16 * 1rem);
    line-height: 1;
  }

  .menu-nav {
    padding-block: var(--space-64, 64px);
    padding-inline: unset;
  }

  .menu-nav__list {
    row-gap: var(--space-32, 32px);
  }
}

.txtbox :is(ul, ol) :is(ul, ol) li:first-child {
  margin-block-start: var(--space-4, 4px);
}

.sitemap_box h2 {font-size: 1.35em;}
.sitemap_box h2 a {font-size: 1em;}
.sitemap_box ul.menu { margin-bottom: 2em;}
.acrobat {
  margin-top: 2.5em;
  margin-bottom: 17px;
  padding: 15px 25px;
  background: #f0f0f0;
}
.acrobat_wrap {
  padding: 0;
}
.acrobat_comment {
  width: calc(100% - 13em);
  margin-left: 0;
}
.acrobat .file_link_icon {
  float: right;
  width: 11.3em;
  padding: 0;
}
.acrobat .file_link_icon a {
  display: block;
  padding: 5px;
  color: #000;
  text-decoration: none;
  text-align: center;
  background: #dfdddd;
}
.acrobat .file_link_icon .acrobat_wrap {
  display: block;
  padding: 13px 0 8px;
  border: 2px #fff solid;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    117deg,
    rgba(255, 255, 255, 1) 70%,
    rgba(243, 243, 243, 1) 70%
  );
}
.acrobat .file_link_icon .acrobat_wrap .str {
  display: block;
  font-size: 90%;
}
.acrobat .file_link_icon a:hover {
  background: #aaa;
}
.acrobat .file_link_icon a:hover img {
  opacity: 1;
}

@media screen and (max-width: 800px) {
  .menu_btn li { width:98%;}
  .acrobat_comment {
    float: none;
    width: 100%;
  }
  .acrobat .file_link_icon {
    float: none;
    margin: 20px auto 0;
  }
}
