@charset "UTF-8";
:root {
  --var-html-font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", system-ui, sans-serif;
  --var-html-font-size: 16px;
  --var-html-line-height: 1.8;
  --var-html-letter-spacing: 0;
  --var-html-text-color: #111111;
  --var-html-bg-color: #ffffff;
}

header *,
footer * {
  font-family: inherit;
  margin: 0;
  padding: 0;
  color: inherit;
  border: 0 solid;
  overflow-wrap: break-word;
}

:where(html) {
  scrollbar-gutter: stable;
  font-family: var(--var-html-font-family);
  font-size: calc(var(--var-html-font-size) / 16 * 100%);
  font-weight: 400;
  line-height: var(--var-html-line-height);
  color: var(--var-html-text-color);
  background-color: var(--var-html-bg-color);
  letter-spacing: var(--var-html-letter-spacing);
  min-width: 320px;
  text-align: left;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  min-height: 100svh;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  overscroll-behavior-y: none;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  scroll-behavior: smooth;
}
@media screen and (max-width: 374px) {
  :where(html) {
    font-size: 87.5%;
  }
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  overflow-x: hidden;
  position: relative;
  margin: 0 auto;
}

/* @  Link Reset
* ------------------------------------------------------------ */
:where(a) {
  text-decoration: underline;
  color: #111111;
  text-underline-offset: 0.2ex;
}

@media (any-hover: hover) {
  :where(a:hover) {
    text-decoration: none;
    color: #585858;
  }
}
@media (any-hover: none) {
  :where(a:active) {
    text-decoration: none;
    color: #585858;
  }
}
:where([tabindex="-1"]:focus) {
  outline: none;
}

/* @  Element Reset
/* ------------------------------------------------------------ */
:where(article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section) {
  display: block;
}

:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd,
table,
figure,
blockquote)[class] {
  margin: 0;
}

:where(h1) {
  font-size: 20px;
}

:where(hr)[class] {
  overflow: visible;
  height: 0;
}

:where(ul, ol):not([class]) {
  padding-left: 1.3em;
}

:where(ul, ol)[class] {
  padding-left: 0;
  list-style-type: none;
}

:where(table) {
  border-collapse: collapse;
}

:where(output) {
  display: inline-block;
}

:where(iframe) {
  border: 0;
}

:where(summary) {
  display: list-item;
  cursor: pointer;
}

:where(details) {
  display: block;
}

:where(template) {
  display: none;
}

:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  border-bottom: none;
}

:where([hidden]) {
  display: none;
}

:where([hidden] + *) {
  margin-top: 0;
}

/* @  Text Reset
* ------------------------------------------------------------ */
:where(b, strong) {
  font-weight: bolder;
}

:where(small) {
  font-size: 80%;
}

:where(sub, sup) {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

:where(sub) {
  bottom: -0.25em;
}

:where(sup) {
  top: -0.5em;
}

/* @  Form Reset
* ------------------------------------------------------------ */
:where(label) {
  display: inline-block;
}

:where(button) {
  border-radius: 0;
}

:where(button:focus:not(:focus-visible)) {
  outline: 0;
}

:where(input, button, select, optgroup, textarea) {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

:where(button, select) {
  text-transform: none;
  border-style: solid;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

@supports (field-sizing: content) {
  :where(textarea, select) {
    field-sizing: content;
  }
}
:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(select) {
  word-wrap: normal;
}

:where(select:disabled) {
  opacity: 1;
}

:where([list]::-webkit-calendar-picker-indicator) {
  display: none;
}

:where(button, [type=button i], [type=reset i], [type=submit i]) {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
}

:where(progress) {
  vertical-align: baseline;
}

:where(textarea) {
  resize: block;
}

:where(fieldset) {
  min-width: 0;
  border: 0;
}

@supports selector(::-webkit-datetime-edit-fields-wrap) {
  ::-webkit-datetime-edit-fields-wrap,
  ::-webkit-datetime-edit-text,
  ::-webkit-datetime-edit-minute,
  ::-webkit-datetime-edit-hour-field,
  ::-webkit-datetime-edit-day-field,
  ::-webkit-datetime-edit-month-field,
  ::-webkit-datetime-edit-year-field {
    padding: 0;
  }
}
::-webkit-inner-spin-button {
  height: auto;
}

:where([type=search i]) {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

/* Interactive
 * ========================================================================== */
:where(dialog) {
  background-color: white;
  border: none;
  color: black;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
}

:where(dialog:not([open])) {
  display: none;
}

:where(details > summary:first-of-type) {
  display: list-item;
}

/* Accessibility
 * ========================================================================== */
:where([aria-busy=true i]) {
  cursor: progress;
}

:where([aria-disabled=true i], [disabled]) {
  cursor: not-allowed;
}

:where([aria-hidden=false i][hidden]) {
  display: initial;
}

:where([aria-hidden=false i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/* @  Media Reset
* ------------------------------------------------------------ */
:where(img, picture, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: middle;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, video) {
  max-width: 100%;
  height: auto;
}

:where(img) {
  border-style: none;
  -webkit-touch-callout: none;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

:where(svg:not([fill])) {
  fill: currentColor;
}

:where(svg:not(:root)) {
  overflow: hidden;
}

:where(audio:not([controls])) {
  display: none;
  height: 0;
}

/* @ Code Reset
 * ------------------------------------------------------------ */
:where(blockquote) {
  border-left: solid 5px rgba(33, 33, 33, 0.3);
  color: rgba(33, 33, 33, 0.8);
  padding: 4px 10px;
  margin-left: 1em;
  opacity: 0.8;
}

:where(code, kbd, pre, samp) {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

:where(code) {
  font-size: 90%;
  padding: 6px;
  color: var(--var-html-text-color);
  border-radius: 3px;
  background-color: #efefef;
}

:where(kbd) {
  font-size: 90%;
  padding: 2px 4px;
  color: #c7254e;
  border-radius: 3px;
  background-color: #f9f2f4;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
          box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);
}

:where(kbd kbd) {
  font-size: 100%;
  font-weight: bold;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

:where(pre) {
  font-size: 14px;
  display: block;
  margin: 0;
  padding: 10px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  color: #ffffff;
  border: 1px solid rgba(33, 33, 33, 0.8);
  border-radius: 3px;
  background-color: rgba(33, 33, 33, 0.8);
}

:where(pre code) {
  font-size: inherit;
  padding: 0;
  white-space: pre-wrap;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
}

/* @  Print Reset
* ------------------------------------------------------------ */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }
  *,
  *::before,
  *::after {
    color: #000000;
    background: #ffffff;
    -webkit-box-shadow: none;
            box-shadow: none;
    text-shadow: none;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  pre {
    white-space: pre-wrap;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  header,
  footer {
    display: none;
  }
}
.l-footer {
  margin-top: 60px;
  margin-right: auto;
  margin-left: auto;
  height: auto;
  color: #111111;
  border-top: solid 2px #BBBBBB;
}

.l-footer__inner {
  font-size: var(--var-font-2);
  padding: 40px 30px 17px 30px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media (width > 769px) {
  .l-footer__inner {
    padding: 43px 30px 37px 30px;
  }
}
.l-footer__title {
  text-align: center;
  margin-bottom: 18px;
}
.l-footer__title img {
  margin: 0 auto;
  max-width: 119px;
}

@media (width > 769px) {
  .l-footer__title {
    margin-bottom: 38px;
  }
  .l-footer__title img {
    max-width: initial;
  }
}
.l-footer__copy {
  text-align: center;
  font-size: 12px;
}

@media (width > 769px) {
  .l-footer__copy {
    font-size: 14px;
  }
}
.l-header {
  position: relative;
  background: #ffffff;
  z-index: 30;
  border-bottom: solid 1px #44986B;
  overflow: hidden;
}
@media (width > 769px) {
  .l-header {
    overflow: visible;
  }
}

.is-body-drawer-active .l-header {
  overflow: visible;
}

.l-header__primary {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 18px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 18px;
}
@media (width > 769px) {
  .l-header__primary {
    padding-top: 18px;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 15px;
  }
}

.l-header__logo a {
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -ms-grid;
  display: grid;
  gap: 14px;
  grid-auto-flow: column;
}
.l-header__logo img {
  width: 100px;
  height: auto;
}
@media (width > 769px) {
  .l-header__logo a {
    font-size: 20px;
    gap: 18px;
  }
  .l-header__logo img {
    width: auto;
  }
}

@media (any-hover: hover) {
  .l-header__logo a:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
.l-header__barcode a {
  border: solid 2px #44986B;
  padding: 10px;
  border-radius: 4px;
  color: #44986B;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (width > 769px) {
  .l-header__barcode a {
    font-size: 20px;
  }
}

@media (any-hover: hover) {
  .l-header__barcode a:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
.l-header__secondary {
  background: #44986B;
  display: none;
}
@media (width > 769px) {
  .l-header__secondary {
    display: block;
  }
}

.l-header__secondary-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.l-header__nav {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-header__nav > li > a,
.l-header__nav > li > button {
  text-align: center;
  display: block;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #FFFFFF;
  background: transparent;
  border: none;
}

@media (any-hover: hover) {
  .l-header__nav a:hover,
  .l-header__nav button:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
@media (any-hover: hover) {
  .l-header__mega-menu:hover .l-header__mega-menu-inner {
    overflow: visible;
    height: auto;
    opacity: 1;
    -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
}
.l-header__mega-menu-inner {
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.l-header:has(.l-header__mega-menu:hover) + .is-header-mega-menu-bg {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  opacity: 1;
  background-color: rgba(17, 17, 17, 0.4);
  -webkit-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.l-header__mega-menu-inner {
  background-position: left top;
  background-repeat: repeat-x;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  background: #ffffff;
}
@media (width > 1280px) {
  .l-header__mega-menu-inner {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
}

.l-header__mega-menu-body {
  padding: 36px 40px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__mega-menu-body > * + * {
  margin-top: 20px;
}

.l-header__mega-menu-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}
@media (width > 1100px) {
  .l-header__mega-menu-unit {
    gap: 36px;
  }
}

.l-header__mega-menu-title {
  font-weight: 700;
  border-left: solid 4px #44986B;
  padding-left: 16px;
  display: -ms-grid;
  display: grid;
  line-height: 1.4;
  gap: 6px;
  width: 30%;
}
.l-header__mega-menu-title .is-mega-en {
  font-size: 30px;
  color: #44986B;
  text-transform: uppercase;
}
@media (width > 1100px) {
  .l-header__mega-menu-title .is-mega-en {
    font-size: 40px;
  }
}
.l-header__mega-menu-title .is-mega-ja {
  font-size: 16px;
}
@media (width > 1100px) {
  .l-header__mega-menu-title .is-mega-ja {
    font-size: 18px;
  }
}

.l-header__mega-menu-nav {
  width: 65%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 10px;
  gap: 16px;
}
.l-header__mega-menu-nav li a {
  font-size: 16px;
  font-weight: 700;
  display: block;
  position: relative;
  padding-right: 24px;
  text-decoration: none;
}
.l-header__mega-menu-nav li a::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #BBBBBB;
  border-left: 2px solid #BBBBBB;
  content: "";
  vertical-align: middle;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.l-header__mega-menu-nav li.is-current {
  color: #44986B;
  font-weight: 700;
}

@media (width < 800px) {
  .l-header__secondary {
    zoom: 0.8;
  }
}
.l-header__nav-control {
  position: absolute;
  right: 10px;
  top: 10px;
  display: block;
}
@media (width > 769px) {
  .l-header__nav-control {
    display: none;
  }
}
.l-header__nav-control a,
.l-header__nav-control button {
  display: block;
  text-align: center;
  padding: 0;
  margin: 0 auto;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  background-color: #44986B;
  width: 50px;
  height: 50px;
  border-radius: 6px;
}
.l-header__nav-control-icon {
  display: block;
  width: 20px;
  height: 16px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  margin: 0 auto;
  position: relative;
}
.l-header__nav-control-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: inherit;
  background: #ffffff;
  border-radius: 10px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.l-header__nav-control-icon span:nth-child(1) {
  top: 0;
}
.l-header__nav-control-icon span:nth-child(2) {
  top: 8px;
}
.l-header__nav-control-icon span:nth-child(3) {
  top: 16px;
}
[aria-expanded=true] .l-header__nav-control-icon span:nth-child(1) {
  top: 6px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  width: 28px;
  left: -4px;
}
[aria-expanded=true] .l-header__nav-control-icon span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
[aria-expanded=true] .l-header__nav-control-icon span:nth-child(3) {
  top: 6px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  width: 28px;
  left: -4px;
}

.l-main {
  width: 100%;
}

.l-container {
  overflow: hidden;
}

.l-container__inner {
  display: block;
  clear: both;
  width: auto;
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  max-width: 1000px;
}

.is-container-max800 .l-container__inner {
  max-width: 800px;
}

.l-section-medium {
  margin-top: 30px;
  margin-bottom: 30px;
}
@media (width > 769px) {
  .l-section-medium {
    margin-top: 66px;
    margin-bottom: 66px;
  }
}

.l-section-bg-medium {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #E2F3E9;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
@media (width > 769px) {
  .l-section-bg-medium {
    padding-top: 66px;
    padding-bottom: 66px;
  }
}

body {
  position: relative;
}

.c-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
}
.c-to-top a {
  background: #44986B;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  display: -ms-grid;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (any-hover: hover) {
  .c-to-top a:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
@media (width > 769px) {
  .c-to-top a {
    width: 60px;
    height: 60px;
  }
}
.c-button-to-top {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  max-width: 280px;
}
.c-button-to-top a {
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  color: #44986B;
  background-color: transparent;
  text-decoration: inherit;
  font-weight: 700;
  border: solid 2px #44986B;
  border-radius: 4px;
  padding: 12px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 18px;
}
@media (width > 769px) {
  .c-button-to-top a {
    padding: 3px 16px 3px 16px;
  }
}

@media print {
  .c-button-to-top {
    display: none;
  }
}
@media (any-hover: hover) {
  .c-button-to-top a:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
.is-button-to-top-green {
  max-width: 200px;
}
.is-button-to-top-green a {
  background-color: #44986B;
  color: #fff;
}
.is-button-to-top-green .is-button-to-top-icon {
  position: relative;
  padding-right: 16px;
}
.is-button-to-top-green .is-button-to-top-icon::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  vertical-align: middle;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.acms-admin-block-editor-link-button-link span,
.c-button-acms a,
.c-button {
  line-height: 1.38;
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  text-align: center;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #EEEEEE;
  text-decoration: inherit;
  font-weight: 700;
  border: solid 2px transparent;
  padding: 6px 16px 6px 16px;
  font-size: 18px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
}
.acms-admin-block-editor-link-button-link span:disabled, .acms-admin-block-editor-link-button-link span.is-button-disabled, .acms-admin-block-editor-link-button-link span[aria-disabled=true],
.c-button-acms a:disabled,
.c-button-acms a.is-button-disabled,
.c-button-acms a[aria-disabled=true],
.c-button:disabled,
.c-button.is-button-disabled,
.c-button[aria-disabled=true] {
  color: var(--var-color-text);
  background-color: #EEEEEE;
  cursor: not-allowed;
}

.c-button-acms a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

a.c-button.is-button-disabled {
  pointer-events: none;
}

@media (any-hover: hover) {
  .c-button-acms a:hover,
  .c-button:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
.is-button-acms-style1 a,
.is-button-style1 {
  border-color: transparent;
  background-color: #44986B;
  color: #ffffff !important;
}

.is-button-acms-style2 a,
.is-button-style2 {
  border-color: #44986B;
  background-color: #ffffff;
  color: #44986B !important;
}

.is-button-fixed {
  max-width: 240px;
}

.is-button-fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: initial;
}

.is-button-full {
  max-width: initial;
}

.is-button-center {
  margin-left: auto;
  margin-right: auto;
}

.is-button-right {
  margin-left: auto;
}

.c-page-title-container {
  margin-inline: auto;
  max-width: 1032px;
}
@media (width > 769px) {
  .c-page-title-container {
    position: relative;
  }
}

.c-page-title-container__inner {
  padding: 15px 16px;
  background-color: #E2F3E9;
}
@media (width > 769px) {
  .c-page-title-container__inner {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 25px calc(50vw - 50%);
  }
}

.c-page-title {
  font-size: 14px;
  font-weight: 700;
  color: #44986B;
  line-height: 1;
  display: -ms-grid;
  display: grid;
  gap: 9px;
}
.c-page-title span {
  font-size: 28px;
  text-transform: uppercase;
}
@media (width > 769px) {
  .c-page-title {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
  .c-page-title span {
    font-size: 50px;
  }
}

@media print {
  .c-page-title-container__inner {
    background: none;
  }
  .c-page-title {
    color: #000000;
  }
}
.c-breadcrumb {
  margin-left: auto;
  margin-right: auto;
  max-width: 1000px;
  margin-top: 10px;
  line-height: 1.4;
  padding: 0 16px;
}
.c-breadcrumb__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.c-breadcrumb__inner span {
  font-weight: normal;
  display: inline-block;
  font-size: 16px;
  color: #666666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}
.c-breadcrumb__inner span a {
  display: inline-block;
  position: relative;
  color: #111111;
  padding-right: 22px;
  margin-right: 10px;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 180px;
}
.c-breadcrumb__inner span a::after {
  content: ">";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  right: -4px;
  color: #666666;
}

@media (any-hover: hover) {
  .c-breadcrumb__inner span a:hover {
    opacity: 0.7;
  }
}
.c-breadcrumb__inner span:first-child {
  padding-left: 0;
}

.c-breadcrumb__inner span:first-child::before {
  display: none;
}

.c-headline__item {
  border-bottom: 1px solid #BBBBBB;
}
.c-headline__item a {
  padding-top: 20px;
  display: block;
  padding-bottom: 16px;
  color: #111111;
  text-decoration: none;
}

.c-headline__body {
  display: -ms-grid;
  display: grid;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width > 769px) {
  .c-headline__body {
    -ms-grid-columns: 8em 16px 1fr;
    grid-template-columns: 8em 1fr;
    gap: 16px;
  }
}

.c-headline__title {
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.c-headline__info {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media (any-hover: hover) {
  .c-headline__item:hover .c-headline__title {
    text-decoration: none;
    opacity: 0.7;
  }
}
.c-headline-search {
  border-top: 1px solid #BBBBBB;
}

.c-headline-search__item {
  border-bottom: 1px solid #BBBBBB;
}
.c-headline-search__item a {
  padding-top: 23px;
  display: block;
  padding-bottom: 19px;
  color: #111111;
  text-decoration: none;
}

.c-headline-search__body {
  display: -ms-grid;
  display: grid;
}

.c-headline-search__title {
  text-decoration: underline;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  font-size: 20px;
  font-weight: 700;
}
@media (width > 769px) {
  .c-headline-search__title {
    font-size: 24px;
  }
}

.c-headline-search__text {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  line-height: 2;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-headline-search__path {
  color: #666666;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media (width > 769px) {
  .c-headline-search__path {
    font-size: 16px;
  }
}
.c-headline-search__path li {
  position: relative;
  padding-right: 26px;
  margin-right: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
@media (width > 769px) {
  .c-headline-search__path li {
    max-width: 200px;
  }
}
.c-headline-search__path li::after {
  content: ">";
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 0;
  right: 0em;
  color: #666666;
}
.c-headline-search__path li:last-child::after {
  display: none;
}

@media (any-hover: hover) {
  .c-headline-search__item:hover .c-headline-search__title {
    text-decoration: none;
  }
}
.c-pagination {
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (width > 769px) {
  .c-pagination {
    max-width: 500px;
  }
}

.c-pagination__nav {
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 50px;
  padding-right: 50px;
}
@media (width > 769px) {
  .c-pagination__nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
    padding-left: 60px;
    padding-right: 60px;
  }
}

.c-pagination__item {
  padding-left: 0;
  background-image: none;
  font-weight: 700;
}

.is-pagination__item-prev {
  position: absolute;
  left: 0;
}

.is-pagination__item-next {
  position: absolute;
  right: 0;
}

.c-pagination__prev,
.c-pagination__next {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #44986B;
  min-width: 40px;
  min-height: 50px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  border-radius: 4px;
}
@media (width > 769px) {
  .c-pagination__prev,
  .c-pagination__next {
    min-width: 40px;
    min-height: 40px;
  }
}

.c-pagination__prev {
  position: relative;
}
.c-pagination__prev::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  vertical-align: middle;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  left: 3px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(320deg);
          transform: rotate(320deg);
}

.c-pagination__next {
  position: relative;
}
.c-pagination__next::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  vertical-align: middle;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  left: -3px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.c-pagination__numbers {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: var(--var-size-2);
  background: #44986B;
  padding: var(--var-size-1);
  text-decoration: none;
  min-width: 30px;
  min-height: 50px;
  display: -ms-grid;
  display: grid;
  place-items: center;
  line-height: 1;
  border-radius: 4px;
  color: #ffffff;
  box-sizing: border-box;
}
@media (width > 769px) {
  .c-pagination__numbers {
    min-width: 40px;
    min-height: 40px;
    font-size: 16px;
  }
}

.c-pagination__numbers.dots {
  background: none;
  color: #44986B;
}

@media (width > 769px) {
  .c-pagination__numbers {
    min-width: 40px;
    min-height: 40px;
    font-size: 16px;
  }
}
.is-pagination-current {
  color: #44986B;
  background: transparent;
}

.c-pagination__numbers:visited {
  color: #ffffff;
}

.is-pagination-current:visited {
  color: #ffffff;
}

@media (any-hover: hover) {
  .c-pagination__prev:hover,
  .c-pagination__next:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
  .c-pagination__numbers:not(.dots):hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
  .is-pagination-current:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
.entry-title-wrap {
  display: -ms-grid;
  display: grid;
}
.entry-title-wrap > * + * {
  margin-top: 20px;
}

.entry-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (width > 769px) {
  .entry-title {
    font-size: 32px;
  }
}

.entry-title__category {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  color: #44986B;
  font-size: 18px;
  font-weight: 700;
}
@media (width > 769px) {
  .entry-title__category {
    font-size: 20px;
  }
}

.entry-title__info {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: -ms-grid;
  display: grid;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width > 769px) {
  .entry-title__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.entry-title__date {
  font-size: 16px;
}
.entry-title__date span::after {
  content: "｜";
  margin-left: 10px;
  margin-right: 10px;
  width: 1em;
  height: 1em;
  display: inline-block;
}
.entry-title__date span:last-child::after {
  display: none;
}

.entry-title__print {
  max-width: 200px;
}
.entry-title__print a, .entry-title__print span {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  color: #ffffff;
  background-color: #44986B;
  text-decoration: inherit;
  font-weight: bold;
  border-radius: 4px;
  padding: 9px 16px 9px 16px;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 16px;
}
@media (width > 769px) {
  .entry-title__print a, .entry-title__print span {
    padding: 3px 10px 3px 10px;
  }
}

@media (any-hover: hover) {
  .entry-title__print a:hover,
  .entry-title__print span:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
@media print {
  .entry-title__print {
    display: none;
  }
}
.category-title-wrap {
  display: -ms-grid;
  display: grid;
}
.category-title-wrap > * + * {
  margin-top: 20px;
}

.category-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
@media (width > 769px) {
  .category-title {
    font-size: 40px;
  }
}

.c-fukidashi {
  background: #F8D681;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  padding: 4px 20px;
  border-radius: 50px;
  margin-left: auto;
  margin-right: auto;
  max-width: 540px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.c-fukidashi::before {
  position: absolute;
  bottom: -10px;
  margin: auto;
  left: 0;
  right: 0;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background: #F8D681;
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
@media (width > 769px) {
  .c-fukidashi {
    font-size: 20px;
  }
}

.c-fukidashi-media {
  gap: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (width > 769px) {
  .c-fukidashi-media {
    gap: 32px;
  }
}

.c-fukidashi-media__img {
  min-width: 50px;
  width: 50px;
}
@media (width > 769px) {
  .c-fukidashi-media__img {
    min-width: 100px;
    width: 100px;
  }
}
.c-fukidashi-media__img img {
  border-radius: 50%;
  margin-top: 0;
  margin-bottom: 0;
}

.c-fukidashi-media__body {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #E2F3E9;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-fukidashi-media__body::before {
  position: absolute;
  top: 20px;
  left: -10px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #E2F3E9;
  clip-path: polygon(100% 0%, 0% 50%, 100% 100%);
}
@media (width > 769px) {
  .c-fukidashi-media__body {
    border-radius: 20px;
    padding: 20px 30px;
  }
  .c-fukidashi-media__body::before {
    top: 40px;
    left: -20px;
    width: 20px;
    height: 20px;
  }
}

.is-fukidashi-media-gray .c-fukidashi-media__body {
  background-color: #F1F1F1;
}
.is-fukidashi-media-gray .c-fukidashi-media__body::before {
  background-color: #F1F1F1;
}

.c-box {
  overflow: hidden;
  border-radius: 10px;
  border: 4px solid #E2F3E9;
}
@media (width > 769px) {
  .c-box {
    border-radius: 20px;
  }
}

.c-box__title {
  display: -ms-grid;
  display: grid;
  padding: 2px 6px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
  background: #E2F3E9;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (width > 769px) {
  .c-box__title {
    min-width: 8em;
    padding: 10px 10px;
  }
}
@media print {
  .c-box__title {
    min-width: 8em;
  }
}

.c-box__body {
  padding: 10px 16px;
}
@media (width > 769px) {
  .c-box__body {
    padding: 20px 30px;
    width: 100%;
  }
}

@media (width > 769px) {
  .c-box:has(.c-box__title) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media print {
  .c-box:has(.c-box__title) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.is-box-yellow {
  border-color: #F8D681;
}
.is-box-yellow .c-box__title {
  background: #F8D681;
}

.is-box-green {
  border-color: #84CAA0;
}
.is-box-green .c-box__title {
  background: #84CAA0;
}

.is-box-red {
  border-color: #F995A7;
}
.is-box-red .c-box__title {
  background: #F995A7;
}

.c-box-border {
  border: 2px solid #44986B;
  border-radius: 6px;
  position: relative;
}

.c-box-border__title {
  font-size: 20px;
  color: #44986B;
  font-weight: 700;
  background: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  position: absolute;
  top: -1.5em;
  left: 0.8em;
}
@media (width > 769px) {
  .c-box-border__title {
    font-size: 24px;
  }
}

.c-box-border__body {
  padding: 20px;
}
@media (width > 769px) {
  .c-box-border__body {
    padding: 30px;
  }
}

.c-box-border-less__body {
  padding: 20px;
}
@media (width > 769px) {
  .c-box-border-less__body {
    padding: 30px;
  }
}

.c-box-grid2-warp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: none;
  grid-template-columns: none;
  gap: 16px;
}
@media (width > 769px) {
  .c-box-grid2-warp {
    gap: 20px 40px;
    -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.c-box-grid2 {
  background: #fff;
  border-radius: 6px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-box-grid2__body {
  padding: 30px 40px 30px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.c-box-grid2__title-wrap {
  margin-bottom: 10px;
}

.c-box-grid2__title {
  font-size: 28px;
  font-weight: 700;
}

.c-box-grid2__lead {
  color: #44986B;
  font-weight: 700;
  font-size: 24px;
}

.c-box-grid2__button {
  padding-top: 30px;
  margin-top: auto;
  line-height: 1.38;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
  text-decoration: inherit;
  font-weight: 700;
}
.c-box-grid2__button a {
  display: block;
  background-color: #44986B;
  text-decoration: none;
  color: #ffffff;
  border: solid 2px transparent;
  padding: 12px 10px 12px 10px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 4px;
}
@media (width > 769px) {
  .c-box-grid2__button a {
    padding: 7px 10px 6px 10px;
  }
}

.is-box-grid2-button-icon {
  position: relative;
  padding-right: 16px;
}
.is-box-grid2-button-icon::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  vertical-align: middle;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media (any-hover: hover) {
  .c-box-grid2__button a:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
.c-box-grid3-warp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: none;
  grid-template-columns: none;
  gap: 14px;
}
@media (width > 769px) {
  .c-box-grid3-warp {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.c-box-grid3 {
  background: #fff;
  border-radius: 4px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (width > 769px) {
  .c-box-grid3 {
    border-radius: 6px;
  }
}
.c-box-grid3 a {
  text-decoration: none;
}

.c-box-grid3__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 10px 25px 10px 25px;
  position: relative;
}
.c-box-grid3__body::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #44986B;
  border-left: 2px solid #44986B;
  content: "";
  vertical-align: middle;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (width > 769px) {
  .c-box-grid3__body {
    padding: 24px 10px 14px 10px;
  }
  .c-box-grid3__body::after {
    display: none;
  }
}

.c-box-grid3__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width > 769px) {
  .c-box-grid3__title-wrap {
    margin-bottom: 10px;
    display: block;
  }
}

.c-box-grid3__title {
  font-size: 18px;
}
@media (width > 769px) {
  .c-box-grid3__title {
    font-size: 24px;
    text-align: center;
  }
}

@media (width > 769px) {
  .c-box-grid3__icon {
    margin-bottom: 8px;
  }
}

.c-box-grid3__icon img {
  margin: 0 auto;
  width: 28px;
  height: auto;
}
@media (width > 769px) {
  .c-box-grid3__icon img {
    width: 60px;
  }
}

.c-box-grid3__button {
  display: none;
}
@media (width > 769px) {
  .c-box-grid3__button {
    margin-top: auto;
    line-height: 1.38;
    position: relative;
    overflow: hidden;
    width: 100%;
    text-align: center;
    text-decoration: inherit;
    font-weight: 700;
    display: block;
    background-color: #44986B;
    text-decoration: none;
    color: #ffffff;
    border: solid 2px transparent;
    padding: 12px 10px 12px 10px;
    font-size: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-radius: 4px;
    padding: 7px 10px 6px 10px;
  }
}
.c-box-grid3__button span {
  position: relative;
  padding-right: 16px;
}
.c-box-grid3__button span::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  vertical-align: middle;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media (any-hover: hover) {
  .c-box-grid3 a:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
.c-search-keyword {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.c-search-keyword__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media (width > 769px) {
  .c-search-keyword__body {
    gap: 20px;
  }
}

.c-search-keyword__input {
  padding: 10px;
  border: 1px solid #BBBBBB;
  background-color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  min-height: 50px;
}
@media (width > 769px) {
  .c-search-keyword__input {
    min-height: 60px;
    border-radius: 6px;
  }
}
.c-search-keyword__input:focus {
  outline: none;
}

.c-search-keyword__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 700;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin: 0;
  right: 0;
  white-space: nowrap;
  background-color: #44986B;
  font-size: 16px;
  border-radius: 4px;
  padding: 6px 16px;
  border: transparent;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-height: 50px;
}
@media (width > 769px) {
  .c-search-keyword__button {
    font-size: 20px;
    padding: 6px 26px;
    gap: 10px;
    min-height: 60px;
  }
}
.c-search-keyword__button::before {
  content: "";
  background: url(../img/common/icon-search.svg) no-repeat center center;
  background-size: 100%;
  width: 15px;
  height: 15px;
  display: block;
}
@media (width > 769px) {
  .c-search-keyword__button::before {
    width: 19px;
    height: 19px;
  }
}

@media (any-hover: hover) {
  .c-search-keyword__button:hover {
    -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
  }
}
[data-toggle-switch] {
  border: none;
  background: transparent;
  text-align: left;
}

[data-body-switch] {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

[data-body-switch][aria-hidden=false] {
  overflow: visible;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-bg-switch=true] {
  height: 100%;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: rgba(17, 17, 17, 0.4);
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-body-drawer-active {
  /* ドロワー表示中に背景がタッチ操作で動くのを防ぎます */
  -ms-touch-action: none;
      touch-action: none;
  /* ドロワー内のスクロールが背景に伝わるのを防ぎます */
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  overflow: hidden;
}

body {
  height: 100vh;
}

.c-drawer {
  -webkit-transform: translateX(100vw);
          transform: translateX(100vw);
  display: block;
  opacity: 0;
  position: absolute;
  width: 85%;
  right: 0;
  height: var(--js-html-height, 100dvh);
  margin-top: 1px;
  background: #ffffff;
}
.c-drawer[aria-hidden=false] {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
  -webkit-transition-property: left, opacity, -webkit-transform;
  transition-property: left, opacity, -webkit-transform;
  transition-property: transform, left, opacity;
  transition-property: transform, left, opacity, -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.c-drawer__inner {
  width: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  height: 90%;
  overflow-x: hidden;
  overflow-y: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: var(--var-zindex-drawer);
}
.c-drawer__inner::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.c-drawer__inner::-webkit-scrollbar-track {
  background: var(--var-color-gray-dark);
}
.c-drawer__inner::-webkit-scrollbar-thumb {
  background: var(--var-color-gray-dark);
}

.c-drawer__unit {
  margin: 30px;
}

.c-drawer__nav {
  border-top: solid 1px #BBBBBB;
}
.c-drawer__nav a.stay,
.c-drawer__nav .stay .c-drawer__nav-summary-link,
.c-drawer__nav .is-current {
  color: #44986B;
}
.c-drawer__nav .c-drawer__nav-item {
  font-weight: 700;
  font-size: 16px;
  border-bottom: solid 1px #BBBBBB;
}
.c-drawer__nav .c-drawer__nav-item a {
  border: none;
  font-size: 16px;
  font-weight: 700;
  display: block;
  position: relative;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-decoration: none;
  background: #fff;
  width: 100%;
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-drawer__nav .c-drawer__nav-item a:not(.c-drawer__nav-summary-link)::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #BBBBBB;
  border-left: 2px solid #BBBBBB;
  content: "";
  vertical-align: middle;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.c-drawer__nav .c-drawer__sub-nav {
  padding-top: 5px;
  padding-bottom: 2px;
  padding-left: 26px;
}
.c-drawer__nav .c-drawer__sub-nav li a {
  font-size: 14px;
  padding-top: 7px;
  padding-bottom: 7px;
}

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

.c-drawer__nav-summary-headline {
  border: none;
  background: transparent;
  text-align: left;
  position: relative;
}

.c-drawer__close button {
  text-align: center;
  padding: 0;
  margin: 0 auto;
  white-space: nowrap;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  vertical-align: middle;
  background-color: #fff;
  font-size: 16px;
  font-weight: 700;
  color: #44986B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

[data-bg-drawer=true] {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(17, 17, 17, 0.4);
  z-index: 10;
}

[data-ac-marks] {
  border: none;
  background: transparent;
  text-align: left;
  position: relative;
  min-width: 30px;
}
[data-ac-marks]::before, [data-ac-marks]::after {
  content: "";
  width: 14px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  background-color: currentColor;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #BBBBBB;
}
[data-ac-marks]::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.is-ac-active [data-ac-marks]::after {
  -webkit-transform: rotate(0deg) scale(0);
          transform: rotate(0deg) scale(0);
}

[data-ac-body] {
  opacity: 0;
  height: 0;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

[data-ac-body][aria-hidden=false] {
  position: relative;
  height: auto;
  opacity: 1;
  -webkit-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-h1 {
  font-size: var(--var-font-5);
  font-weight: bold;
  margin-bottom: calc(var(--var-size-1) * -1);
}
@media (width > 769px) {
  .c-h1 {
    font-size: var(--var-font-6);
  }
}

.acms-admin-block-editor-content h2,
.is-base-component-editor h2,
.c-h2 {
  font-size: 20px;
  display: block;
  font-weight: 700;
  position: relative;
  padding-bottom: 4px;
  color: #44986B;
  border-bottom: 2px solid #44986B;
}
@media (width > 769px) {
  .acms-admin-block-editor-content h2,
  .is-base-component-editor h2,
  .c-h2 {
    font-size: 30px;
    padding-bottom: 5px;
  }
}

.c-h2-type2 {
  font-weight: 700;
  border-left: solid 4px #44986B;
  padding-left: 16px;
  display: -ms-grid;
  display: grid;
  line-height: 1.4;
}
.c-h2-type2 .is-h2-en {
  font-size: 30px;
  color: #44986B;
}
@media (width > 769px) {
  .c-h2-type2 .is-h2-en {
    font-size: 50px;
  }
}
.c-h2-type2 .is-h2-ja {
  font-size: 16px;
}
@media (width > 769px) {
  .c-h2-type2 .is-h2-ja {
    font-size: 18px;
  }
}

.acms-admin-block-editor-content h3,
.is-base-component-editor h3,
.c-h3 {
  font-size: 19px;
  line-height: 1.6;
  font-weight: 700;
  position: relative;
  padding: 4px 10px;
  background: #E3F3E9;
  color: #44986B;
}
@media (width > 769px) {
  .acms-admin-block-editor-content h3,
  .is-base-component-editor h3,
  .c-h3 {
    font-size: 24px;
    padding: 10px 16px;
  }
}

.acms-admin-block-editor-content h4,
.is-base-component-editor h4,
.c-h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: #44986B;
}
@media (width > 769px) {
  .acms-admin-block-editor-content h4,
  .is-base-component-editor h4,
  .c-h4 {
    font-size: 20px;
  }
}

.acms-admin-block-editor-content h5,
.is-base-component-editor h5,
.c-h5 {
  font-weight: 700;
  font-size: 16px;
}

.acms-admin-block-editor-content h6,
.is-base-component-editor h6,
.c-h6 {
  font-weight: 700;
  font-size: 16px;
}

.c-styleguide1 {
  padding: 5px 10px;
  background-color: #EEEEEE;
  color: #111111;
  text-align: center;
  font-size: 30px;
}

.c-styleguide2 {
  padding-bottom: 6px;
  border-bottom: 1px solid #DDDDDD;
  font-size: 1rem;
}

.acms-admin-block-editor-content p,
.is-base-component-editor p,
.c-p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 2;
  background: transparent;
}

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

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

@media (width > 769px) {
  .is-p-left-to-center {
    text-align: center;
  }
}

.acms-admin-block-editor-content ul,
.is-base-component-editor ul,
.c-ul {
  list-style-type: none;
  font-size: 16px;
  padding-left: 0;
}
.acms-admin-block-editor-content ul p,
.is-base-component-editor ul p,
.c-ul p {
  margin-top: 0;
  margin-bottom: 0;
}
@media (width > 769px) {
  .acms-admin-block-editor-content ul,
  .is-base-component-editor ul,
  .c-ul {
    font-size: 16px;
  }
}
.acms-admin-block-editor-content ul > li,
.is-base-component-editor ul > li,
.c-ul > li {
  position: relative;
}
.acms-admin-block-editor-content ul > li,
.is-base-component-editor ul > li,
.c-ul > li {
  padding-left: 1.4em;
  position: relative;
  margin-top: 10px;
}
@media (width > 769px) {
  .acms-admin-block-editor-content ul > li,
  .is-base-component-editor ul > li,
  .c-ul > li {
    margin-top: 14px;
  }
}
.acms-admin-block-editor-content ul > li:first-child,
.is-base-component-editor ul > li:first-child,
.c-ul > li:first-child {
  margin-top: 0;
}
.acms-admin-block-editor-content ul > li:before,
.is-base-component-editor ul > li:before,
.c-ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.7em;
  left: 0.3em;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background-color: #44986B;
}
.acms-admin-block-editor-content ul ul,
.acms-admin-block-editor-content ul ol,
.is-base-component-editor ul ul,
.is-base-component-editor ul ol,
.c-ul ul,
.c-ul ol {
  margin-top: 8px;
}

.acms-admin-block-editor-content ol,
.is-base-component-editor ol,
.c-ol {
  font-size: 16px;
  padding-left: 1.3em;
  list-style-type: decimal;
}
.acms-admin-block-editor-content ol p,
.is-base-component-editor ol p,
.c-ol p {
  margin-top: 0;
  margin-bottom: 0;
}
@media (width > 769px) {
  .acms-admin-block-editor-content ol,
  .is-base-component-editor ol,
  .c-ol {
    font-size: 16px;
  }
}
.acms-admin-block-editor-content ol li,
.is-base-component-editor ol li,
.c-ol li {
  margin-top: 10px;
}
@media (width > 769px) {
  .acms-admin-block-editor-content ol li,
  .is-base-component-editor ol li,
  .c-ol li {
    margin-top: 14px;
  }
}
.acms-admin-block-editor-content ol li:first-child,
.is-base-component-editor ol li:first-child,
.c-ol li:first-child {
  margin-top: 0;
}
.acms-admin-block-editor-content ol ul,
.acms-admin-block-editor-content ol ol,
.is-base-component-editor ol ul,
.is-base-component-editor ol ol,
.c-ol ul,
.c-ol ol {
  margin-top: 8px;
}

.c-list-arrow {
  list-style-type: none;
  font-size: 16px;
}
@media (width > 769px) {
  .c-list-arrow {
    font-size: 16px;
  }
}
.c-list-arrow li {
  position: relative;
}
.c-list-arrow li {
  padding-left: 1.8em;
  position: relative;
  margin-top: 10px;
}
@media (width > 769px) {
  .c-list-arrow li {
    margin-top: 14px;
  }
}
.c-list-arrow li:first-child {
  margin-top: 0;
}
.c-list-arrow li:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.3em;
  left: 0em;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/icon-circle-right.svg);
}
.c-list-arrow ul,
.c-list-arrow ol {
  margin-top: 8px;
}

:where(table):not([class]) {
  border-left: solid 1px #BBBBBB;
  border-top: solid 1px #BBBBBB;
  width: 100%;
}
:where(table):not([class]) th {
  border-right: solid 1px #BBBBBB;
  border-bottom: solid 1px #BBBBBB;
  background: #E2F3E9;
  padding: 14px 10px;
}
:where(table):not([class]) td {
  border-right: solid 1px #BBBBBB;
  border-bottom: solid 1px #BBBBBB;
  padding: 14px 10px;
}

.acms-admin-block-editor-content table,
.is-base-component-editor table,
.c-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.acms-admin-block-editor-content table caption,
.is-base-component-editor table caption,
.c-table caption {
  padding: 14px 0;
  text-align: left;
  color: #44986B;
  margin-bottom: -1px;
  font-weight: bold;
}
.acms-admin-block-editor-content table tr,
.acms-admin-block-editor-content table td,
.acms-admin-block-editor-content table th,
.is-base-component-editor table tr,
.is-base-component-editor table td,
.is-base-component-editor table th,
.c-table tr,
.c-table td,
.c-table th {
  text-align: left;
  vertical-align: top;
  word-break: normal;
  font-size: 16px;
}
.acms-admin-block-editor-content table th,
.is-base-component-editor table th,
.c-table th {
  font-weight: bold;
  color: var(--var-color-text);
  vertical-align: middle;
  text-align: left;
}

.acms-admin-block-editor-content table:not([class*=is-table-style]),
.is-base-component-editor table:not([class*=is-table-style]),
.is-table-style1 {
  border-right: solid 1px #BBBBBB;
  border-bottom: solid 1px #BBBBBB;
}
.acms-admin-block-editor-content table:not([class*=is-table-style]) thead th,
.is-base-component-editor table:not([class*=is-table-style]) thead th,
.is-table-style1 thead th {
  border-bottom-width: 1px;
}
.acms-admin-block-editor-content table:not([class*=is-table-style]) thead td,
.is-base-component-editor table:not([class*=is-table-style]) thead td,
.is-table-style1 thead td {
  border-bottom-width: 1px;
}
.acms-admin-block-editor-content table:not([class*=is-table-style]) .is-table-cell-th,
.acms-admin-block-editor-content table:not([class*=is-table-style]) th,
.is-base-component-editor table:not([class*=is-table-style]) .is-table-cell-th,
.is-base-component-editor table:not([class*=is-table-style]) th,
.is-table-style1 .is-table-cell-th,
.is-table-style1 th {
  border-left: solid 1px #BBBBBB;
  border-top: solid 1px #BBBBBB;
  background-color: #E2F3E9;
  padding: 14px 10px;
  font-size: 16px;
  font-weight: 700;
}
.acms-admin-block-editor-content table:not([class*=is-table-style]) .is-table-cell-td,
.acms-admin-block-editor-content table:not([class*=is-table-style]) td,
.is-base-component-editor table:not([class*=is-table-style]) .is-table-cell-td,
.is-base-component-editor table:not([class*=is-table-style]) td,
.is-table-style1 .is-table-cell-td,
.is-table-style1 td {
  border-left: solid 1px #BBBBBB;
  border-top: solid 1px #BBBBBB;
  background-color: #ffffff;
  padding: 14px 10px;
  font-size: 16px;
}

.is-table-style2 {
  border-top: solid 1px #BBBBBB;
}
.is-table-style2 .is-table-cell-th,
.is-table-style2 th {
  border-bottom: solid 1px #BBBBBB;
  background-color: #ffffff;
  padding: 14px 10px;
  font-weight: 700;
}
.is-table-style2 .is-table-cell-td,
.is-table-style2 td {
  border-bottom: solid 1px #BBBBBB;
  background-color: #ffffff;
  padding: 14px 10px;
}

.c-table-wrap > * + * {
  margin-top: var(--var-size-2);
}

@media (width < 769px) {
  .is-table-wrap-sp-block th,
  .is-table-wrap-sp-block td {
    width: 100%;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .is-table-wrap-sp-block .is-table-style2 th {
    border-bottom-width: 0;
    padding-bottom: 0;
  }
  .is-table-wrap-sp-block .is-table-style2 td {
    padding-top: 0;
  }
}

@media (width > 769px) {
  .is-table-wrap-sp-small {
    zoom: 0.8;
  }
}

.is-table-wrap-responsive {
  position: relative;
  width: auto;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.is-table-wrap-responsive table {
  width: auto;
  min-width: 100%;
}
.is-table-wrap-responsive th, .is-table-wrap-responsive td {
  white-space: nowrap;
}
.is-table-wrap-responsive::before, .is-table-wrap-responsive::after {
  padding: 0.1em;
  margin-bottom: 10px;
  text-align: center;
  white-space: nowrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  content: " <　左右にスクロールできます　>";
  position: sticky;
  color: #44986B;
  font-size: 0.7rem;
  display: none;
  left: 0;
}
.is-table-wrap-responsive::before {
  top: 0;
}
.is-table-wrap-responsive::after {
  margin-top: 10px;
  bottom: -1px;
}
.is-table-wrap-responsive::-webkit-scrollbar {
  height: 0;
}
.is-table-wrap-responsive::-webkit-scrollbar-track {
  background: #BBBBBB;
}
.is-table-wrap-responsive::-webkit-scrollbar-thumb {
  background: #BBBBBB;
}

@media print {
  .is-table-wrap-fixed {
    height: auto !important;
  }
  .is-table-wrap-responsive th,
  .is-table-wrap-responsive td {
    white-space: wrap !important;
  }
}
/* stylelint-enable no-irregular-whitespace */
.is-table-scroll-active::before,
.is-table-scroll-active::after {
  display: block;
}

@supports (-webkit-touch-callout: none) {
  .is-table-scroll-active::before,
  .is-table-scroll-active::after {
    display: none;
  }
}
.is-base-component-editor hr,
.c-divider {
  border-top: solid 1px #BBBBBB;
}

.acms-admin-block-editor-content figure,
.is-base-component-editor figure,
.c-figure {
  display: block;
}
.acms-admin-block-editor-content figure img,
.is-base-component-editor figure img,
.c-figure img {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.acms-admin-block-editor-content figure a,
.is-base-component-editor figure a,
.c-figure a {
  display: block;
}

.acms-admin-block-editor-content figcaption,
.is-base-component-editor figcaption,
.c-figcaption {
  text-align: center;
  font-size: 16px;
  margin-top: 6px;
  color: #666666;
}

.is-figure-center img {
  margin-inline: auto;
}
.is-figure-center figcaption {
  text-align: center;
}

.is-figure-frame img {
  background: #fff;
  padding: 0.2em;
  border: solid 1px #BBBBBB;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.c-video {
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
.c-video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.visually-hidden {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  position: absolute;
}

.is-hidden-sp {
  display: none;
}
@media (width > 769px) {
  .is-hidden-sp {
    display: initial;
  }
}

.is-stack-small > * + * {
  margin-top: 16px !important;
}
@media (width > 769px) {
  .is-stack-small > * + * {
    margin-top: 16px !important;
  }
}

.is-stack-medium > * + * {
  margin-top: 30px !important;
}
@media (width > 769px) {
  .is-stack-medium > * + * {
    margin-top: 30px !important;
  }
}

.is-color-critical {
  color: #F5476F;
}

[class*=is-grid-] {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: none;
  grid-template-columns: none;
  gap: 16px;
}
@media (width > 769px) {
  [class*=is-grid-] {
    gap: 20px;
  }
}

@media (width > 769px) {
  .is-grid-cols-1to2 {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width > 769px) {
  .is-grid-cols-1to3 {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.is-mt0 {
  margin-top: 0;
}

.is-mt-small {
  margin-top: 20px;
  min-height: 1px;
}

.is-mt-medium {
  margin-top: 40px;
  min-height: 1px;
}

.is-mt-large {
  margin-top: 80px;
  min-height: 1px;
}

.is-mb0 {
  margin-bottom: 0;
}

.is-mb-small {
  margin-bottom: 20px;
  min-height: 1px;
}

.is-mb-medium {
  margin-bottom: 40px;
  min-height: 1px;
}

.is-mb-large {
  margin-bottom: 80px;
  min-height: 1px;
}

.is-text-highlight,
.highlight1 {
  display: inline;
  background: #F8D681;
  border-radius: 6px;
  padding-bottom: 0.2em;
  padding-left: 0.3em;
  padding-right: 0.3em;
}

#js-edit_inplace-control button {
  line-height: 1 !important;
}

.acms-admin-block-editor-content :where(a) {
  text-decoration: underline;
  color: #111111;
  text-underline-offset: 0.2ex;
}
@media (any-hover: hover) {
  .acms-admin-block-editor-content :where(a:hover) {
    text-decoration: none;
    color: #585858;
  }
}
@media (any-hover: none) {
  .acms-admin-block-editor-content :where(a:active) {
    text-decoration: none;
    color: #585858;
  }
}

.acms-admin-block-editor-content blockquote {
  border-left: solid 5px rgba(33, 33, 33, 0.3);
  color: rgba(33, 33, 33, 0.8);
  padding: 4px 10px;
  margin-left: 1em;
  opacity: 0.7;
}

.acms-admin-block-editor-content pre {
  font-size: 14px;
  display: block;
  margin: 0;
  padding: 10px;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  color: #ffffff;
  border: 1px solid rgba(33, 33, 33, 0.8);
  border-radius: 3px;
  background-color: rgba(33, 33, 33, 0.8);
}

.acms-admin-block-editor-content pre code {
  font-size: inherit;
  padding: 0;
  white-space: pre-wrap;
  color: inherit;
  border-radius: 0;
  background-color: transparent;
}

.acms-admin-block-editor .ProseMirror div:has(> table) {
  overflow-x: scroll;
}

.acms-admin-block-editor .acms-admin-block-editor-link-button-link {
  color: inherit;
  background-color: transparent;
}

:where(.acms-admin-block-editor) th,
:where(.acms-admin-block-editor) td {
  border: revert;
}

.acms-admin-block-editor-content .ProseMirror > * + *,
.is-base-component-editor > * + *,
.column-block-editor > * + * {
  margin-top: 30px !important;
}
@media (width > 769px) {
  .acms-admin-block-editor-content .ProseMirror > * + *,
  .is-base-component-editor > * + *,
  .column-block-editor > * + * {
    margin-top: 30px !important;
  }
}

.layout-two-column,
.layout-three-column {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: none;
  grid-template-columns: none;
  gap: 16px;
}
@media (width > 769px) {
  .layout-two-column,
  .layout-three-column {
    gap: 20px;
  }
}

@media (width > 769px) {
  .layout-two-column {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media print {
  .layout-two-column {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (width > 769px) {
  .layout-three-column {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media print {
  .layout-three-column {
    -ms-grid-columns: (minmax(0, 1fr))[3];
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

[data-type=column] > * + * {
  margin-top: 16px;
}
@media (width > 769px) {
  [data-type=column] > * + * {
    margin-top: 16px;
  }
}

.is-base-component-editor .column-video,
.is-base-component-editor .column-file,
.is-base-component-editor [class*=column-map], [class*=column-street-view],
.is-base-component-editor .column-media,
.is-base-component-editor .media-image-block {
  margin-bottom: 0 !important;
  z-index: 0;
  position: relative;
}

@media print {
  .scroll-hint-icon-wrap {
    display: none;
  }
  .acms-table-scrollable {
    overflow: visible !important;
  }
  .acms-table-scrollable th, .acms-table-scrollable td {
    white-space: normal !important;
  }
}