@import url("//fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers
*/
article, aside, main, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --color-site-primary: #1D4390;
  --color-site-secondary: #F4F8FF;
  --color-site-tertiary: #00E3EB;
  --color-site-quaternary: #EFF5FF;
  --color-site-quinary: #D0DAEE;
  --color-site-senary: #10347C;
  --color-site-septenary:#1950BE;
  --color-site-octonary: #FAFCFF;
  --color-site-nonary: #F2F6FF;
  --color-site-denary: #F5F9FF;
  --color-txt-primary: #000;
  --color-txt-secondary: #1D4390;
  --color-txt-tertiary: #FF7A71;
  --color-txt-quaternary: #333;
  --color-txt-quinary: #10347C;
  --color-border-primary: #D0DFFF;
  --color-border-secondary: #CBDCFF;
  --color-border-tertiary: #E5E5E5;
  --color-border-quaternary: #C8D9FF;
  --color-border-quinary: #3697F8;
  --color-border-senary:#1950BE;
  --color-border-septenary:#DCE8FF;
  --color-link-default: #1950BE;
  --color-link-hover: #3C82F7;
  --color-link-active: #001EFF;
  --color-link-visted: #1950BE;
  --color-category-update: #FFECE7;
  --color-category-news: #FFECE7;
  --color-category-society: #DBF2FA;
  --color-category-event: #ECF4AD;
  --color-category-workshop: #E7E7FF;
  --color-category-lecture: #DEF3D7;
  --color-category-seminar: #FFEABE;
  --color-category-renkeikai: #ECECEC;
  --column02-even: 42.93%;
  --column02-0101: 37.56%;
  --column02-0102: 48.3%;
  --column02-0201: 35.77%;
  --column02-0202: 50.08%;
  --column02-0301: 32.2%;
  --column02-0302: 53.66%;
  --column02-0401: 25.04%;
  --column02-0402: 60.82%;
  --column03: 28.62%;
  --img-small: 28.62%;
  --img-middle: 42.93%;
  --img-file: 7.15%;
}

::selection {
  color: #fff;
  background-color: var(--color-site-primary);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.085em;
  font-feature-settings: "palt";
  text-decoration-skip: none;
  -webkit-text-size-adjust: 100%;
  position: relative;
  margin: 0;
  color: var(--color-txt-quaternary);
  background-color: #fff;
}
@media print, screen and (width > 1024px) {
  body {
    min-width: 1040px;
    font-size: 17px;
    line-height: 2;
  }
}
body * {
  scroll-margin-top: 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Zen Old Mincho", serif;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

img {
  vertical-align: bottom;
}

button, input {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: inherit;
}

textarea {
  field-sizing: content;
}

@media only screen and (width <= 1024px) {
  .u-use--pc {
    display: none !important;
  }
}

@media print, screen and (width > 1024px) {
  .u-use--sp {
    display: none !important;
  }
}

.l-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-left: 10px;
  width: 100%;
  height: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transition: translate 0.3s;
}
@media print, screen and (width > 1024px) {
  .l-header {
    padding-left: 20px;
    height: 85px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(12.45px);
  }
}
.is_hide .l-header {
  translate: 0 -100%;
}

.is_show .l-header {
  translate: 0;
}

.l-main {
  padding: 60px 0 100px;
}
@media only screen and (width <= 1024px) {
  .l-main {
    position: relative;
    overflow: hidden;
  }
}
@media print, screen and (width > 1024px) {
  .l-main {
    padding: 85px 0 150px;
  }
}
.l-main__bg {
  width: 250px;
  height: 250px;
  position: absolute;
  z-index: 1;
  background: conic-gradient(from 228.38deg at 39.89% 46.9%, #E8FFB7 0deg, rgba(169, 255, 255, 0.931485) 67.48deg, rgba(255, 237, 231, 0.8) 230.77deg, rgba(255, 230, 227, 0.835375) 360deg);
  filter: blur(66px);
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .l-main__bg {
    width: 435px;
    height: 435px;
    filter: blur(90px);
  }
}
.l-main__bg--01 {
  top: -110px;
  right: -150px;
}
@media print, screen and (width > 1024px) {
  .l-main__bg--01 {
    top: -60px;
    right: 60px;
  }
}
.l-main__bg--02 {
  top: 900px;
  left: -90;
  rotate: 250deg;
}
@media print, screen and (width > 1024px) {
  .l-main__bg--02 {
    top: 393px;
    left: -180px;
  }
}

.l-article {
  width: 89.333vw;
  padding-top: 40px;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .l-article {
    width: min(96.77vw, 1200px);
    padding-top: 80px;
  }
}
.l-article .acms-container {
  max-width: 100%;
}

.l-footer {
  position: sticky;
  left: 0;
  top: 100vh;
  z-index: 4;
}
.l-footer__top {
  padding: 70px 20px;
  background-color: var(--color-site-quaternary);
}
@media only screen and (width <= 1024px) {
  .l-footer__top {
    display: none;
  }
}
.l-footer__middle {
  padding: 20px;
  background-color: var(--color-site-primary);
}
@media print, screen and (width > 1024px) {
  .l-footer__middle {
    padding: 70px;
  }
}
.l-footer__bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px 10px 18px;
  background-color: var(--color-site-senary);
}
@media print, screen and (width > 1024px) {
  .l-footer__bottom {
    justify-content: space-between;
    flex-direction: row;
    padding: 33px 40px;
  }
}

.c-hd--ribbon, .c-hd--small02, .c-hd--small01, .c-hd--middle02, .c-hd--middle01, .c-hd--big02, .c-hd--big01 {
  margin-bottom: 20px;
  color: var(--color-txt-secondary);
  font-weight: 700;
  line-height: 1.5;
}

.c-hd--big01 {
  padding: 5px 0 0 26px;
  font-size: 20px;
  position: relative;
}
.c-hd--big01::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/common/img_hdline.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media print, screen and (width > 1024px) {
  .c-hd--big01 {
    padding: 9px 0 0 43px;
    margin-bottom: 30px;
    font-size: 33px;
  }
  .c-hd--big01::before {
    width: 33px;
    height: 33px;
  }
}
.c-hd--big02 {
  text-align: center;
}
@media print, screen and (width > 1024px) {
  .c-hd--big02 {
    margin-bottom: 30px;
  }
}
.c-hd--big02 .c-hd__inner {
  display: inline-block;
  padding: 5px 28px;
  font-size: 22px;
  position: relative;
}
.c-hd--big02 .c-hd__inner::before, .c-hd--big02 .c-hd__inner::after {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../images/common/img_hdline.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
}
.c-hd--big02 .c-hd__inner::before {
  top: 0;
  left: 0;
}
.c-hd--big02 .c-hd__inner::after {
  right: 0;
  bottom: 0;
  rotate: 180deg;
}
@media print, screen and (width > 1024px) {
  .c-hd--big02 .c-hd__inner {
    padding: 9px 55px;
    font-size: 33px;
  }
  .c-hd--big02 .c-hd__inner::before, .c-hd--big02 .c-hd__inner::after {
    width: 33px;
    height: 33px;
  }
}
.c-hd--middle01 {
  font-size: 19px;
}
@media print, screen and (width > 1024px) {
  .c-hd--middle01 {
    margin-bottom: 25px;
    font-size: 26px;
  }
}
.c-hd--middle02 {
  display: grid;
  grid-template-columns: minmax(15px, 1fr) auto minmax(15px, 1fr);
  column-gap: 10px;
  align-items: center;
  font-size: 19px;
}
.c-hd--middle02::before, .c-hd--middle02::after {
  content: "";
  height: 5px;
  border-top: 1px solid var(--color-border-quinary);
  border-bottom: 1px solid var(--color-border-senary);
}
@media print, screen and (width > 1024px) {
  .c-hd--middle02 {
    column-gap: 19px;
    margin-bottom: 25px;
    font-size: 26px;
  }
}
.c-hd--small01 {
  padding-left: 22px;
  font-size: 17px;
  position: relative;
}
.c-hd--small01::before, .c-hd--small01::after {
  content: "";
  position: absolute;
}
.c-hd--small01::before {
  width: 14px;
  height: 14px;
  border: 1px solid var(--color-border-quinary);
  border-radius: 2px;
  left: 0;
  top: 5px;
  z-index: 1;
}
.c-hd--small01::after {
  width: 8px;
  height: 8px;
  background: var(--color-site-septenary);
  top: 9px;
  left: 4px;
}
@media print, screen and (width > 1024px) {
  .c-hd--small01 {
    padding-left: 33px;
    font-size: 23px;
  }
  .c-hd--small01::before {
    width: 20px;
    height: 20px;
    top: 7px;
  }
  .c-hd--small01::after {
    width: 10px;
    height: 10px;
    top: 13px;
    left: 6px;
  }
}
.c-hd--small02 {
  padding-bottom: 20px;
  font-size: 17px;
  text-align: center;
  position: relative;
}
.c-hd--small02::before {
  content: "";
  width: 10px;
  height: 4px;
  background: var(--color-site-septenary);
  border-radius: 2px 2px 0 0;
  position: absolute;
  left: 50%;
  bottom: 0;
  translate: -50% 0;
}
@media print, screen and (width > 1024px) {
  .c-hd--small02 {
    padding-bottom: 30px;
    font-size: 23px;
  }
}
.c-hd--ribbon {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 36px;
  place-items: start;
}
@media print, screen and (width > 1024px) {
  .c-hd--ribbon {
    margin-bottom: 30px;
  }
}
.c-hd--ribbon__label {
  margin: 0 !important;
  padding: 8px 0 8px 15px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: var(--color-site-primary);
  border-radius: 3px 0 0 3px;
  position: relative;
}
.c-hd--ribbon__label::after {
  content: "";
  width: 25px;
  height: 100%;
  background: url(../images/common/img_ribbon.svg) no-repeat right top;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  right: -24px;
}
@media print, screen and (width > 1024px) {
  .c-hd--ribbon__label {
    top: 5px;
  }
}
.c-hd--ribbon__txt {
  margin: 0 !important;
  font-size: 19px;
  word-break: all;
}
@media print, screen and (width > 1024px) {
  .c-hd--ribbon__txt {
    font-size: 26px;
  }
}
.c-hd__time {
  font-size: 16px;
  display: block;
}
.c-hd--clock .c-hd--ribbon__label {
  padding: 2px 0 4px 40px;
}
@media only screen and (width <= 1024px) {
  .c-hd--clock .c-hd--ribbon__label {
    top: 3px;
  }
}
@media print, screen and (width > 1024px) {
  .c-hd--clock .c-hd--ribbon__label {
    padding: 4px 0 6px 40px;
    font-size: 20px;
  }
}
.c-hd--clock .c-hd--ribbon__label::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url(../images/common/icon_clock.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  left: 6px;
  top: 50%;
  translate: 0 -50%;
}

.c-txt--block, .c-txt--right, .c-txt--center, .c-txt {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
@media print, screen and (width > 1024px) {
  .c-txt--block, .c-txt--right, .c-txt--center, .c-txt {
    font-size: 17px;
    line-height: 2;
  }
}

.c-txt--small {
  font-size: 88.23%;
  font-weight: 400;
}
.c-txt--center {
  text-align: center;
}
.c-txt--right {
  text-align: right;
}
.c-txt--block {
  padding: 20px;
  background: #FFF9F7;
  border: 1px solid #F8D4D4;
  border-radius: 10px;
}
@media print, screen and (width > 1024px) {
  .c-txt--block {
    padding: 60px;
  }
}

.c-list--normal > li, .c-list--normal__item {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}
.c-list--normal > li:not(:last-child), .c-list--normal__item:not(:last-child) {
  margin-bottom: 15px;
}
.c-list--normal > li::before, .c-list--normal__item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-site-septenary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 8px;
}
@media print, screen and (width > 1024px) {
  .c-list--normal > li, .c-list--normal__item {
    font-size: 17px;
  }
  .c-list--normal > li::before, .c-list--normal__item::before {
    top: 10px;
  }
}
.c-list--number {
  counter-reset: my-counter;
}
.c-list--number > li, .c-list--number__item {
  padding-left: 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
}
.c-list--number > li:not(:last-child), .c-list--number__item:not(:last-child) {
  margin-bottom: 15px;
}
.c-list--number > li::before, .c-list--number__item::before {
  counter-increment: my-counter;
  content: counter(my-counter);
  font-weight: 900;
  color: var(--color-txt-quinary);
  position: absolute;
  left: 0;
  top: 0;
}
@media print, screen and (width > 1024px) {
  .c-list--number > li, .c-list--number__item {
    padding-left: 17px;
    font-size: 17px;
  }
}

.c-dl__dt {
  width: fit-content;
  padding: 2px 10px;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-txt-quinary);
  border: 1px solid var(--color-border-quaternary);
  background-color: var(--color-site-quaternary);
}
@media print, screen and (width > 1024px) {
  .c-dl__dt {
    font-size: 17px;
  }
}
.c-dl__dd,
.c-dl dd {
  margin-left: 10px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}
.c-dl__dd:not(:last-child),
.c-dl dd:not(:last-child) {
  margin-bottom: 15px;
}
.c-dl__dd::before,
.c-dl dd::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--color-site-septenary);
  border-radius: 2px;
  position: absolute;
  left: 0;
  top: 8px;
}
@media print, screen and (width > 1024px) {
  .c-dl__dd,
  .c-dl dd {
    margin-left: 14px;
    font-size: 17px;
  }
  .c-dl__dd::before,
  .c-dl dd::before {
    top: 10px;
  }
}

.c-blockquote {
  padding: 20px;
  background: var(--color-site-octonary);
  border: 1px solid var(--color-border-quaternary);
  border-radius: 10px;
  position: relative;
}
.c-blockquote::before {
  content: "";
  width: 40px;
  height: 29px;
  background: url(../images/common/icon_quote.svg) no-repeat left top;
  background-size: 100%;
  position: absolute;
  left: 10px;
  top: -10px;
}
@media print, screen and (width > 1024px) {
  .c-blockquote {
    padding: 60px;
  }
  .c-blockquote::before {
    width: 64px;
    height: 47px;
    top: -15px;
    left: 40px;
  }
}
.c-blockquote__inner {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
@media print, screen and (width > 1024px) {
  .c-blockquote__inner {
    font-size: 17px;
    line-height: 2;
  }
}

.c-link {
  font-weight: 500;
  color: var(--color-link-default);
}
.c-link:link {
  color: var(--color-link-default);
  text-decoration: underline;
}
.c-link:visited {
  color: var(--color-link-visted);
  text-decoration: none !important;
}
.c-link:hover {
  color: var(--color-link-hover);
  text-decoration: underline;
}
.c-link:active {
  color: var(--color-link-active);
  text-decoration: none !important;
}

.c-btn:is(button, input) {
  appearance: none;
  cursor: pointer;
}
.c-btn--primary {
  width: fit-content;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  color: #fff;
  background-color: var(--color-site-senary);
  border-radius: 5px;
  padding: 4px 40px 4px 18px;
  position: relative;
}
.c-btn--primary::after {
  content: "";
  width: 9px;
  height: 13px;
  -webkit-mask-image: url(../images/common/icon_arrow.svg);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow.svg);
  mask-size: 100%;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: #fff;
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
  transition: translate 0.2s;
}
@media print, screen and (width > 1024px) {
  .c-btn--primary {
    font-size: 17px;
    padding: 6px 44px 6px 20px;
  }
}
@media (hover: hover) {
  .c-btn--primary:where(:any-link, :enabled, summary):hover::after {
    translate: 4px -50%;
    transition: translate 0.3s;
  }
}
.c-btn--submit {
  display: grid;
  place-items: center;
  width: 300px;
  height: 60px;
  margin: auto;
  background-color: var(--color-site-senary);
  border: 1px solid var(--color-site-senary);
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.c-btn--submit .c-btn__inner {
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .c-btn--submit {
    position: relative;
    overflow: hidden;
    transition: color 0.2s;
  }
  .c-btn--submit::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .c-btn--submit:hover {
    color: var(--color-txt-quinary);
    transition: color 0.3s;
  }
  .c-btn--submit:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}
.c-btn--revision {
  display: grid;
  place-items: center;
  width: 300px;
  height: 60px;
  margin: auto;
  background-color: #fff;
  border: 1px solid var(--color-site-senary);
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-txt-quinary);
}
.c-btn--revision .c-btn__inner {
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .c-btn--revision {
    position: relative;
    overflow: hidden;
    transition: color 0.2s;
  }
  .c-btn--revision::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--color-site-senary);
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center left;
  }
  .c-btn--revision:hover {
    color: #fff;
    transition: color 0.3s;
  }
  .c-btn--revision:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center right;
    transition: transform 0.3s;
  }
}
.c-btn--more {
  display: grid;
  place-items: center;
  width: 300px;
  height: 60px;
  margin: auto;
  background-color: var(--color-site-senary);
  border: 1px solid var(--color-site-senary);
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}
.c-btn--more .c-btn__inner {
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .c-btn--more {
    position: relative;
    overflow: hidden;
    transition: color 0.2s;
  }
  .c-btn--more::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .c-btn--more:hover {
    color: var(--color-txt-quinary);
    transition: color 0.3s;
  }
  .c-btn--more:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}

.c-img {
  max-width: 100%;
}
.c-img--auto {
  max-width: 100% !important;
}
.c-img--small {
  width: 100%;
}
@media print, screen and (width > 1024px) {
  .c-img--small {
    width: var(--img-small) !important;
  }
}
.c-img--middle {
  width: 100%;
}
@media print, screen and (width > 1024px) {
  .c-img--middle {
    width: var(--img-middle) !important;
  }
}
.c-img--large {
  width: 100%;
}
@media print, screen and (width > 1024px) {
  .c-img--large {
    width: var(--img-large) !important;
  }
}
.c-img--file {
  max-width: 50px !important;
}
@media print, screen and (width > 1024px) {
  .c-img--file {
    max-width: var(--img-file) !important;
  }
}

.c-table, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.c-table tr:last-of-type th, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) tr:last-of-type th,
.c-table tr:last-of-type td,
.acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) tr:last-of-type td {
  border-bottom: 0;
}
.c-table__th, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) th, .c-table__td, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td {
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  vertical-align: top;
  background-color: var(--color-site-octonary);
  border-bottom: 1px solid var(--color-border-quaternary);
  padding: 10px 8px;
}
@media print, screen and (width > 1024px) {
  .c-table__th, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) th, .c-table__td, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td {
    font-size: 17px;
    line-height: 1.823;
    padding: 20px 15px;
  }
}
.c-table__th, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) th {
  font-weight: 700;
  padding-left: 10px;
  padding-right: 10px;
  white-space: nowrap;
  width: min-content;
  background-color: var(--color-site-nonary);
}
@media print, screen and (width > 1024px) {
  .c-table__th, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) th {
    padding-right: 20px;
    padding-left: 30px;
  }
}
.c-table__td, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td {
  font-weight: 400;
}
.c-table__td:first-of-type, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td:first-of-type {
  padding-left: 20px;
}
@media print, screen and (width > 1024px) {
  .c-table__td:first-of-type, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td:first-of-type {
    padding-left: 30px;
  }
}
.c-table__td--right {
  text-align: right;
}
.c-table__td--desc {
  border-bottom: 0;
}
.c-table__caution {
  font-size: 13px;
  line-height: 1.2;
  display: inline-block;
}
@media print, screen and (width > 1024px) {
  .c-table__caution {
    font-size: 15px;
  }
}
.c-table__require {
  font-size: 14px;
  line-height: 2;
  color: var(--color-txt-tertiary);
  line-height: 1;
  display: inline-block;
  border: 1px solid var(--color-txt-tertiary);
  border-radius: 4px;
  padding: 2px 4px;
  margin-left: 13px;
  position: relative;
  top: -1px;
}
.c-table--contact {
  margin-bottom: 60px;
}
.c-table--contact input[type=text],
.c-table--contact input[type=email],
.c-table--contact input[type=number],
.c-table--contact textarea {
  max-width: 100%;
  width: 100%;
  height: 40px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-txt-quaternary);
  padding: 5px;
  border: 1px solid var(--color-border-secondary);
  border-radius: 5px;
}
@media print, screen and (width > 1024px) {
  .c-table--contact input[type=text].acms-form-width-middle,
  .c-table--contact input[type=email].acms-form-width-middle,
  .c-table--contact input[type=number].acms-form-width-middle {
    width: 33%;
  }
}
@media print, screen and (width > 1024px) {
  .c-table--contact input[type=text].acms-form-width-half,
  .c-table--contact input[type=email].acms-form-width-half,
  .c-table--contact input[type=number].acms-form-width-half {
    width: 50%;
  }
}
.c-table--contact textarea {
  height: auto;
  min-height: 180px;
}
@media print, screen and (width > 1024px) {
  .c-table--contact .c-table__th, .c-table--contact .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) th, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) .c-table--contact th {
    width: fit-content;
  }
}
@media only screen and (width <= 1024px) {
  .c-table--contact {
    margin-bottom: 30px;
    display: block;
  }
  .c-table--contact .c-table__tr, .c-table--contact .c-table__th, .c-table--contact .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) th, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) .c-table--contact th, .c-table--contact .c-table__td, .c-table--contact .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) .c-table--contact td {
    display: block;
    width: 100%;
  }
  .c-table--contact .c-table__th, .c-table--contact .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) th, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) .c-table--contact th {
    border-bottom: 0;
  }
  .c-table--contact .c-table__td, .c-table--contact .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) .c-table--contact td {
    padding-left: 8px !important;
  }
  .c-table--contact .c-table__tr:last-child .c-table__td, .c-table--contact .c-table__tr:last-child .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td, .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) .c-table--contact .c-table__tr:last-child td {
    border-bottom: 0;
  }
}

.c-line {
  height: 1px;
  border: 0;
  background: var(--color-border-quaternary);
  clear: both;
}

.c-column {
  max-width: 100%;
  clear: both;
}
@media print, screen and (width > 1024px) {
  .c-column--02 {
    width: var(--column02-even);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--02_0101 {
    width: var(--column02-0101);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--02_0102 {
    width: var(--column02-0102);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--02_0201 {
    width: var(--column02-0201);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--02_0202 {
    width: var(--column02-0202);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--02_0301 {
    width: var(--column02-0301);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--02_0302 {
    width: var(--column02-0302);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--02_0401 {
    width: var(--column02-0401);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--02_0402 {
    width: var(--column02-0402);
  }
}
@media print, screen and (width > 1024px) {
  .c-column--03 {
    width: var(--column03);
  }
}

.c-map {
  width: 100%;
  height: 300px;
  position: relative;
}
@media print, screen and (width > 1024px) {
  .c-map {
    height: 450px;
  }
}
.c-map iframe {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.c-continue {
  width: calc(100% + 2px);
  height: 60px;
  margin-bottom: -1px;
  margin-left: -1px;
}
.c-continue__btn {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 5px;
  width: 100%;
  height: 100%;
  background-color: var(--color-site-denary);
  border: 1px solid var(--color-border-quaternary);
  border-radius: 0 0 10px 10px;
}
@media print, screen and (width > 1024px) {
  .c-continue__btn:hover .c-continue__icon {
    right: -5px;
    transition: right 0.3s;
  }
}
.c-continue__txt {
  width: 80px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.c-continue__icon {
  width: 30px;
  height: 30px;
  background-color: var(--color-border-septenary);
  border-radius: 50%;
  position: relative;
}
.c-continue__icon::before {
  content: "";
  width: 8px;
  height: 15px;
  -webkit-mask-image: url(../images/common/icon_arrow.svg);
  -webkit-mask-size: 8px 15px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow.svg);
  mask-size: 8px 15px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-site-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media print, screen and (width > 1024px) {
  .c-continue__icon {
    width: 38px;
    height: 38px;
    right: 0;
    transition: right 0.2s;
  }
}

.p-logo {
  width: fit-content;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.p-logo__inner {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 7px;
  align-items: center;
}
@media print, screen and (width > 1024px) {
  .p-logo__inner {
    column-gap: 13px;
  }
}
.p-logo__img {
  width: 51px;
  height: auto;
}
@media print, screen and (width > 1024px) {
  .p-logo__img {
    width: 70px;
  }
}
.p-logo__sitetitle {
  letter-spacing: 0;
  color: var(--color-txt-quaternary);
}
.p-logo__sitetitle__sub {
  font-size: 11px;
  line-height: 1.45;
  font-weight: 500;
}
@media print, screen and (width > 1024px) {
  .p-logo__sitetitle__sub {
    font-size: 15px;
  }
}
.p-logo__sitetitle__main {
  font-size: 14px;
  line-height: 1.3;
  font-weight: 900;
}
@media print, screen and (width > 1024px) {
  .p-logo__sitetitle__main {
    font-size: 19px;
  }
}
@media print, screen and (width > 1024px) {
  .p-logo--header .p-logo__img {
    width: min(4.86vw, 70px);
  }
}
@media print, screen and (width > 1024px) {
  .p-logo--header .p-logo__sitetitle__sub {
    font-size: min(1.04vw, 15px);
  }
}
@media print, screen and (width > 1024px) {
  .p-logo--header .p-logo__sitetitle__main {
    font-size: min(1.31vw, 19px);
  }
}
.p-logo--footer {
  margin-bottom: 19px;
}
@media print, screen and (width > 1024px) {
  .p-logo--footer {
    margin: 0 30px 0 0;
  }
}
.p-logo--footer .p-logo__inner {
  column-gap: 12px;
}
@media print, screen and (width > 1024px) {
  .p-logo--footer .p-logo__inner {
    column-gap: 10px;
  }
}
.p-logo--footer .p-logo__img {
  width: 43px;
}
@media print, screen and (width > 1024px) {
  .p-logo--footer .p-logo__img {
    width: 57px;
  }
}
.p-logo--footer .p-logo__sitetitle {
  color: #fff;
}
.p-logo--footer .p-logo__sitetitle__sub {
  font-size: 10px;
}
@media print, screen and (width > 1024px) {
  .p-logo--footer .p-logo__sitetitle__sub {
    font-size: 14px;
  }
}
.p-logo--footer .p-logo__sitetitle__main {
  font-size: 12px;
}
@media print, screen and (width > 1024px) {
  .p-logo--footer .p-logo__sitetitle__main {
    font-size: 17px;
  }
}

.is_menuopen .p-gmenu__inner {
  width: 100svw;
  height: 100svh;
  background: var(--color-site-primary);
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
  transition: opacity 0.3s;
  overflow-y: scroll;
}
.is_menuopen .p-gmenu__btn__line:nth-last-of-type(1) {
  top: 22px;
  rotate: 20deg;
}
.is_menuopen .p-gmenu__btn__line:nth-last-of-type(2) {
  top: 22px;
  rotate: -20deg;
}
.is_menuopen .p-gmenu__btn__txt::before {
  content: "Close";
  background-color: var(--color-site-primary);
}

@media print, screen and (width > 1024px) {
  .p-gmenu__inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media only screen and (width <= 1024px) {
  .p-gmenu__inner {
    padding: 120px 20px 70px;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
.p-gmenu__btn {
  width: 60px;
  height: 60px;
  padding: 38px 0 10px 0;
  border: 0;
  background: var(--color-site-primary);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 50;
}
@media print, screen and (width > 1024px) {
  .p-gmenu__btn {
    display: none;
  }
}
.p-gmenu__btn__line {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  translate: -50% 0;
}
.p-gmenu__btn__line:nth-of-type(1) {
  top: 18px;
}
.p-gmenu__btn__line:nth-of-type(2) {
  top: 28px;
}
.p-gmenu__btn__txt {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
  position: relative;
}
.p-gmenu__btn__txt::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

@media only screen and (width <= 1024px) {
  .p-gnav {
    border: 1px solid #fff;
    border-radius: 5px;
  }
}
@media print, screen and (width > 1024px) {
  .p-gnav {
    height: 85px;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media only screen and (width <= 1024px) {
  .p-gnav__group:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
}
@media print, screen and (width > 1024px) {
  .p-gnav__group {
    height: 100%;
    display: grid;
    place-items: center;
    padding: 0 min(1.1vw, 16px);
    cursor: pointer;
  }
  .p-gnav__group:hover {
    position: relative;
  }
  .p-gnav__group:hover::before {
    content: "";
    width: 60svw;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    z-index: 1;
    translate: -50% 0;
  }
  .p-gnav__group:hover .p-gnav__category::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
  .p-gnav__group:hover .p-gnav__inner {
    height: 60px;
    transition: height 0.3s;
  }
}
.p-gnav__category {
  padding: 20px 16px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
@media print, screen and (width > 1024px) {
  .p-gnav__category {
    padding: 0;
    color: var(--color-txt-quaternary);
    font-size: clamp(13px, 1.1vw, 16px);
    position: relative;
  }
  .p-gnav__category::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-txt-quaternary);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
}
@media only screen and (width <= 1024px) {
  .p-gnav__category::before, .p-gnav__category::after {
    content: "";
    width: 14px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    right: 24px;
    top: 50%;
    translate: 0 -50%;
  }
  .p-gnav__category::after {
    rotate: 90deg;
    transition: rotate 0.2s;
  }
  .p-gnav__category.is_open::after {
    rotate: 0deg;
    transition: rotate 0.3s;
  }
  .p-gnav__category.is_open ~ .p-gnav__inner {
    padding: 12px 0 30px 30px;
    display: block;
  }
}
.p-gnav__inner {
  display: none;
}
@media print, screen and (width > 1024px) {
  .p-gnav__inner {
    display: block;
    width: 100%;
    height: 0;
    overflow: hidden;
    background: rgba(12, 63, 178, 0.8);
    position: fixed;
    left: 0;
    top: 85px;
    transition: height 0.2s;
  }
}
.p-gnav__list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 23px;
}
@media print, screen and (width > 1024px) {
  .p-gnav__list {
    height: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0 min(2.777vw, 40px);
  }
}
.p-gnav__item {
  font-size: 15px;
  line-height: 1;
  font-weight: 400;
  color: #fff;
}
@media print, screen and (width > 1024px) {
  .p-gnav__item {
    font-size: min(1.04vw, 15px);
    line-height: 2.13;
    font-weight: 500;
  }
}
.p-gnav__link {
  color: inherit;
  text-decoration: none;
}
@media print, screen and (width > 1024px) {
  .p-gnav__link {
    position: relative;
  }
  .p-gnav__link::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -3px;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .p-gnav__link:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}
.p-gnav--sub {
  height: 50px;
  margin-top: 25px;
}
@media only screen and (width <= 1024px) {
  .p-gnav--sub {
    border: 1px solid #fff;
    border-radius: 5px;
  }
}
@media print, screen and (width > 1024px) {
  .p-gnav--sub {
    height: 85px;
    margin: 0 0 0 10px;
  }
}
.p-gnav--sub__list {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media print, screen and (width > 1024px) {
  .p-gnav--sub__list {
    flex-direction: column;
  }
}
.p-gnav--sub__item {
  width: calc((100% - 2px) / 3);
  height: 100%;
}
@media print, screen and (width > 1024px) {
  .p-gnav--sub__item {
    width: min(8.33vw, 120px);
    height: calc((100% - 1px) / 2);
  }
  .p-gnav--sub__item:nth-child(1) {
    display: none;
  }
  .p-gnav--sub__item:nth-child(2) {
    margin-bottom: 1px;
  }
}
@media only screen and (width <= 1024px) {
  .p-gnav--sub__item:nth-child(1), .p-gnav--sub__item:nth-child(2) {
    border-right: 1px solid #fff;
  }
}
.p-gnav--sub__link {
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none !important;
  border: 1px solid var(--color-site-primary);
  background-color: var(--color-site-primary);
}
@media print, screen and (width > 1024px) {
  .p-gnav--sub__link {
    font-size: min(0.97vw, 14px);
    position: relative;
    z-index: 2;
    transition: color 0.2s;
  }
  .p-gnav--sub__link::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .p-gnav--sub__link:hover {
    color: var(--color-site-primary);
    transition: color 0.3s;
  }
  .p-gnav--sub__link:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}

.p-jumbotron__inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 20px;
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__inner {
    margin-bottom: 30px;
    align-items: flex-end;
    flex-direction: row;
  }
}
.p-jumbotron__category {
  padding-left: 15px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.42;
  position: relative;
  text-transform: uppercase;
}
.p-jumbotron__category::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--color-site-tertiary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__category {
    margin-bottom: 10px;
    font-size: 14px;
  }
}
.p-jumbotron__title {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.44;
  color: var(--color-site-primary);
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__title {
    font-size: 38px;
  }
}
.p-jumbotron__topicpath {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 27px;
}
.p-jumbotron__topicpath__item:not(:last-child) {
  position: relative;
}
.p-jumbotron__topicpath__item:not(:last-child)::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: -9px;
  translate: 100% -50%;
}
.p-jumbotron__topicpath__item:last-child .p-jumbotron__topicpath__link {
  pointer-events: none;
}
.p-jumbotron__topicpath__link {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.42;
  color: var(--color-txt-quaternary);
  text-decoration: none;
}
@media (hover: hover) {
  .p-jumbotron__topicpath__link:where(:any-link, :enabled, summary):hover {
    text-decoration: underline;
  }
}
.p-jumbotron__mv {
  display: block;
  width: 100%;
  margin-bottom: 60px;
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .p-jumbotron__mv {
    margin-bottom: 120px;
    border-radius: 10px;
  }
}
.p-jumbotron__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-update:not(.p-update--home) .p-update__list {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #C8D9FF;
  border-radius: 10px;
  padding: 20px 20px 40px;
}
@media print, screen and (width > 1024px) {
  .p-update:not(.p-update--home) .p-update__list {
    padding: 80px;
  }
}
.p-update__link {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 16px 50px 16px 16px;
  border-bottom: 1px solid var(--color-border-tertiary);
  color: var(--color-txt-quaternary);
  text-decoration: none;
  position: relative;
}
.p-update__link::after {
  content: "";
  width: 8px;
  height: 13px;
  background: url(../images/common/icon_arrow.svg) no-repeat left top;
  background-size: 8px 13px;
  position: absolute;
  right: 22px;
  top: 50%;
  translate: 0 -50%;
}
@media print, screen and (width > 1024px) {
  .p-update__link {
    flex-wrap: nowrap;
    padding: 25px 50px 25px 16px;
  }
  .p-update__link::after {
    right: 35px;
    transition: right 0.2s;
  }
  .p-update__link::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #B4B4B4;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: -1px;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .p-update__link:hover::after {
    right: 32px;
    transition: right 0.3s;
  }
  .p-update__link:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}
.p-update__time {
  margin-right: 11px;
  font-size: 14px;
  font-weight: 700;
}
@media print, screen and (width > 1024px) {
  .p-update__time {
    margin-right: 25px;
    font-size: 15px;
  }
}
.p-update__category {
  width: fit-content;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  border-radius: 3px;
}
.p-update__category--update {
  background-color: var(--color-category-update);
}
.p-update__category--news {
  background-color: var(--color-category-news);
}
.p-update__category--society {
  background-color: var(--color-category-society);
}
.p-update__category--event {
  background-color: var(--color-category-event);
}
.p-update__category--workshop {
  background-color: var(--color-category-workshop);
}
.p-update__category--lecture {
  background-color: var(--color-category-lecture);
}
.p-update__category--seminar {
  background-color: var(--color-category-seminar);
}
.p-update__category--renkeikai {
  background-color: var(--color-category-renkeikai);
}
@media print, screen and (width > 1024px) {
  .p-update__category {
    margin-right: 22px;
    font-size: 13px;
  }
}
.p-update__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.008em;
}
@media only screen and (width <= 1024px) {
  .p-update__txt {
    width: 100%;
    margin-top: 3px;
  }
}
@media print, screen and (width > 1024px) {
  .p-update__txt {
    flex: 1 0 1%;
    font-size: 17px;
  }
}

.p-pager {
  width: 89.333vw;
  margin: 40px auto 0;
  padding: 5px;
  background-color: var(--color-site-secondary);
  border: 1px solid var(--color-border-primary);
  border-radius: 10px;
  position: relative;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .p-pager {
    width: min(96.77vw, 1200px);
    padding: 10px;
    margin-top: 70px;
  }
}
.p-pager__list {
  height: 36px;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 12px;
}
@media print, screen and (width > 1024px) {
  .p-pager__list {
    height: 43px;
  }
}
.p-pager__item {
  width: 30px;
  height: 36px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  position: relative;
  transition: background-color 0.2s;
  overflow: hidden;
}
.p-pager__item--current {
  display: grid;
  place-items: center;
  color: var(--color-site-primary);
  border: 1px solid var(--color-site-primary);
  border-radius: 5px;
  text-align: center;
  pointer-events: none;
  background-color: #fff;
}
.p-pager__item:not(.p-pager__item--current):hover .p-pager__link {
  color: var(--color-site-primary);
  border-color: var(--color-site-primary);
  background-color: #fff;
  transition: all 0.3s;
}
@media print, screen and (width > 1024px) {
  .p-pager__item {
    width: 30px;
    height: 43px;
    font-size: 17px;
  }
}
@media only screen and (width <= 1024px) {
  .p-pager__item:nth-child(n+5) {
    display: none;
  }
}
.p-pager__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #5C80C8;
  border: 1px solid #5C80C8;
  border-radius: 5px;
  position: relative;
  z-index: 2;
  transition: all 0.2s;
}
.p-pager__index {
  display: grid;
  place-items: center;
  width: fit-content;
  height: 36px;
  margin: auto;
  padding: 5px 20px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background-color: var(--color-site-primary);
  border: 1px solid var(--color-site-senary);
  border-radius: 5px;
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .p-pager__index {
    min-width: 157px;
    height: 43px;
    padding: 8px 39px;
    font-size: 17px;
    position: relative;
  }
  .p-pager__index::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .p-pager__index:hover {
    color: var(--color-site-senary);
    transition: color 0.3s;
  }
  .p-pager__index:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}
.p-pager__index__inner {
  position: relative;
  z-index: 2;
}
.p-pager__arrow {
  display: grid;
  place-items: center;
  position: absolute;
  width: 36px;
  height: 36px;
  background-color: var(--color-site-senary);
  border-radius: 5px;
  top: 50%;
  translate: 0 -50%;
}
.p-pager__arrow::before {
  content: "";
  width: 8px;
  height: 17px;
  -webkit-mask-image: url(../images/common/icon_arrow.svg);
  -webkit-mask-size: 8px 17px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow.svg);
  mask-size: 8px 17px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: white;
  transition: translate 0.2s;
}
@media print, screen and (width > 1024px) {
  .p-pager__arrow {
    width: 43px;
    height: 43px;
  }
  .p-pager__arrow::before {
    width: 12px;
    height: 20px;
    -webkit-mask-size: 12px 20px;
    mask-size: 12px 20px;
  }
  .p-pager__arrow:hover::before {
    translate: 5px 0;
    transition: translate 0.3s;
  }
}
.p-pager__arrow--prev {
  left: 5px;
  scale: -1 1;
}
@media print, screen and (width > 1024px) {
  .p-pager__arrow--prev {
    left: 10px;
  }
}
.p-pager__arrow--next {
  right: 5px;
}
@media print, screen and (width > 1024px) {
  .p-pager__arrow--next {
    right: 10px;
  }
}
.p-tab__nav {
  display: grid;
  place-items: end center;
  margin: 0 auto 40px;
  padding: 20px 14px 0;
  background-color: var(--color-site-denary);
  border: 2px solid var(--color-border-quaternary);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  overflow-x: auto;
  position: relative;
  outline: none;
}
.p-tab__nav::after {
  content: "";
  grid-column: 1/2;
  grid-row: 1/2;
  width: calc(100% + 32px);
  height: 2px;
  background-color: var(--color-border-quaternary);
  position: sticky;
  left: -16px;
  bottom: 0;
  z-index: 1;
}
@media print, screen and (width > 1024px) {
  .p-tab__nav {
    margin-bottom: 70px;
    padding: 24px 20px 0;
  }
  .p-tab__nav::after {
    width: calc(100% + 44px);
    left: -22px;
  }
}
.p-tab__list {
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  column-gap: 8px;
  grid-column: 1/2;
  grid-row: 1/2;
  width: fit-content;
  margin: auto;
  position: relative;
  z-index: 2;
}
.p-tab__list__item {
  width: fit-content;
  overflow: hidden;
  position: relative;
}
.p-tab__list__item::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-border-quaternary);
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-tab__list__item.stay {
  border-bottom-color: #fff;
}
.p-tab__list__item.stay::before {
  width: calc(100% - 4px);
  background-color: #fff;
  left: 2px;
}
.p-tab__list__item.stay .p-tab__list__link {
  background-color: #fff;
  border-color: var(--color-border-quaternary);
  pointer-events: none;
}
@media print, screen and (width > 1024px) {
  .p-tab__list__item:hover::before {
    width: calc(100% - 4px);
    background-color: #fff;
    left: 2px;
  }
  .p-tab__list__item:hover .p-tab__list__link {
    background-color: #fff;
    border-color: var(--color-border-quaternary);
    transition: all 0.3s;
  }
}
.p-tab__list__link {
  display: grid;
  place-items: center;
  padding: 8px 18px;
  font-size: 17px;
  font-weight: 700;
  color: var(--color-txt-quaternary);
  white-space: nowrap;
  background-color: var(--color-border-septenary);
  border: 2px solid var(--color-border-septenary);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  transition: all 0.2s;
}
.p-tab--history, .p-tab--flow {
  padding-top: 42px;
  margin-top: -42px;
}
@media print, screen and (width > 1024px) {
  .p-tab--history, .p-tab--flow {
    padding-top: 65px;
    margin-top: -65px;
  }
}
@media print, screen and (width > 1024px) {
  .p-tab--history .p-tab__nav, .p-tab--flow .p-tab__nav {
    margin-bottom: 80px;
  }
}
.p-tab--historycat .p-tab__list__item:first-child::before, .p-tab--flowcat .p-tab__list__item:first-child::before {
  width: calc(100% - 4px);
  background-color: #fff;
  left: 2px;
}
.p-tab--historycat .p-tab__list__item:first-child .p-tab__list__link, .p-tab--flowcat .p-tab__list__item:first-child .p-tab__list__link {
  background-color: #fff;
  border-color: var(--color-border-quaternary);
  pointer-events: none;
}

.p-workflow {
  display: grid;
  row-gap: 20px;
}
@media print, screen and (width > 1024px) {
  .p-workflow {
    grid-template-columns: 40.38% 1fr;
    gap: 0 7.69%;
  }
}
.p-workflow__photo {
  aspect-ratio: 7/6;
}
@media only screen and (width <= 1024px) {
  .p-workflow__photo {
    max-width: 100%;
  }
}
@media print, screen and (width > 1024px) {
  .p-workflow__photo {
    grid-column: 1/2;
  }
}
.p-workflow__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media print, screen and (width > 1024px) {
  .p-workflow__box {
    grid-column: 2/3;
  }
}
.p-workflow__title {
  margin-bottom: 10px !important;
}
.p-workflow__lead {
  margin-bottom: 30px !important;
}
@media print, screen and (width > 1024px) {
  .p-workflow__lead {
    margin-bottom: 75px !important;
  }
}
.p-workflow__info {
  display: grid;
  gap: 6px 18%;
}
@media print, screen and (width > 1024px) {
  .p-workflow__info {
    grid-template-columns: auto 1fr;
  }
}
.p-workflow__position {
  width: fit-content;
  margin: 0 !important;
  padding: 8px 0 8px 15px;
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  background: var(--color-site-primary);
  border-radius: 3px 0 0 3px;
  position: relative;
}
.p-workflow__position::after {
  content: "";
  width: 25px;
  height: 100%;
  background: url(../images/common/img_ribbon.svg) no-repeat right top;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  right: -24px;
}
@media print, screen and (width > 1024px) {
  .p-workflow__position {
    grid-column: 1/2;
    grid-row: 1/2;
  }
}
.p-workflow__name {
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media print, screen and (width > 1024px) {
  .p-workflow__name {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
.p-workflow__name__main {
  display: block;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.18;
}
.p-workflow__name__sub {
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}
.p-workflow__dl {
  display: grid;
  grid-template-columns: 62px auto;
  gap: 10px;
  align-items: center;
}
@media print, screen and (width > 1024px) {
  .p-workflow__dl {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.p-workflow__dl__dt, .p-workflow__dl__dd {
  font-size: 15px;
  font-weight: 500;
}
.p-workflow__dl__dt {
  padding: 5px;
  line-height: 1;
  text-align: center;
  border: 1px solid #D9D9D9;
}
.p-workflow__dl__dd {
  line-height: 1.3;
}
.p-workflow__hd {
  font-family: "Zen Old Mincho", serif;
  margin: 20px auto;
  font-size: 17.9cqw;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.09em;
  white-space: nowrap;
  color: rgba(29, 67, 144, 0.06);
}
@media print, screen and (width > 1024px) {
  .p-workflow__hd {
    grid-column: 1/3;
    margin-top: 45px;
    margin-bottom: 0;
    font-size: 9.9cqw;
    line-height: 1.5;
  }
}

@media print, screen and (width > 1024px) {
  .p-message .acms-box-medium {
    width: calc(100% + 120px);
    margin-left: -60px;
  }
}
.p-message__inner {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  row-gap: 20px;
}
@media only screen and (width <= 1024px) {
  .p-message__inner {
    padding-bottom: 20px;
  }
}
@media print, screen and (width > 1024px) {
  .p-message__inner {
    width: calc(100% + 80px);
    margin-top: -40px;
    margin-left: -40px;
    align-items: flex-end;
    flex-direction: row;
  }
}
.p-message__box {
  order: 1;
}
@media print, screen and (width > 1024px) {
  .p-message__box {
    flex: 1 0 1%;
  }
}
.p-message__category {
  width: fit-content;
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 20px auto;
  column-gap: 10px;
  place-items: center start;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  color: var(--color-txt-secondary);
}
.p-message__category::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-site-primary);
}
@media print, screen and (width > 1024px) {
  .p-message__category {
    grid-template-columns: 33px auto;
  }
}
.p-message__title {
  margin-bottom: 8px !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-txt-secondary);
}
@media print, screen and (width > 1024px) {
  .p-message__title {
    font-size: 26px;
  }
}
.p-message__lead {
  margin-bottom: 0 !important;
}
.p-message__info {
  order: 3;
}
@media print, screen and (width > 1024px) {
  .p-message__info {
    order: 2;
    width: 16.07%;
    margin-left: 6.25%;
  }
}
.p-message__position {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  margin-bottom: 8px !important;
}
.p-message__name {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-txt-secondary);
}
.p-message__name__main {
  font-size: 20px;
}
@media print, screen and (width > 1024px) {
  .p-message__name__main {
    font-size: 22px;
  }
}
.p-message__name__sub {
  margin-left: 6px;
  font-size: 15px;
}
@media print, screen and (width > 1024px) {
  .p-message__name__sub {
    font-size: 17px;
  }
}
.p-message__enter {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.p-message__photo {
  order: 2;
  aspect-ratio: 170/190;
}
@media print, screen and (width > 1024px) {
  .p-message__photo {
    order: 3;
    width: 15.17%;
    margin-left: 4.01%;
  }
}
.p-message__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.p-message__more {
  display: grid;
  width: calc(100% + 42px);
  margin-bottom: -41px;
  margin-left: -21px;
}
@media print, screen and (width > 1024px) {
  .p-message__more {
    width: calc(100% + 160px);
    margin-top: 40px;
    margin-bottom: -81px;
    margin-left: -80px;
  }
}
.p-message__more[open] .p-message__more__content {
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s;
}
.p-message__more[open] .p-message__more__icon::before {
  rotate: 0deg;
  transition: rotate 0.3s;
}
.p-message__more[open] .p-message__more__open {
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s;
}
.p-message__more[open] .p-message__more__close {
  opacity: 1;
  z-index: 1;
  transition: opacity 0.3s;
}
.p-message__more__content {
  padding: 20px;
  grid-row: 1/2;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
}
@media print, screen and (width > 1024px) {
  .p-message__more__content {
    padding: 20px 40px;
  }
}
.p-message__more__content .acms-ebody__content {
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .p-message__more__content .acms-ebody__content {
    margin-right: -40px;
  }
  .p-message__more__content .acms-ebody__content > * {
    margin-right: 40px;
  }
}
.p-message__more__btn {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  grid-row: 2/3;
  width: 100%;
  height: 60px;
  background-color: var(--color-site-denary);
  border: 1px solid var(--color-border-quaternary);
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}
.p-message__more__btn::-webkit-details-marker {
  display: none;
}
.p-message__more__txt {
  display: grid;
  place-items: center;
  width: 80px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}
.p-message__more__open, .p-message__more__close {
  grid-column: 1/2;
  grid-row: 1/2;
}
.p-message__more__open {
  position: relative;
  z-index: 1;
}
.p-message__more__close {
  opacity: 0;
  position: relative;
  z-index: 0;
}
.p-message__more__icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-border-septenary);
  position: relative;
  border-radius: 50%;
}
.p-message__more__icon::before, .p-message__more__icon::after {
  content: "";
  width: 14px;
  height: 2px;
  background-color: var(--color-site-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50%;
}
.p-message__more__icon::before {
  rotate: 90deg;
}

.p-staff {
  display: grid;
  gap: 20px;
}
.p-staff:not(:last-child) {
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .p-staff {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
  }
  .p-staff:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-staff__item {
  padding-bottom: 90px;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border-quaternary);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .p-staff__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    row-gap: 0;
  }
}
.p-staff__photo {
  height: 48px;
  position: relative;
  overflow: hidden;
  background-color: var(--color-site-denary);
}
.p-staff__photo:has(img) {
  height: auto;
  aspect-ratio: 268/298;
}
.p-staff__photo .p-staff__category {
  width: fit-content;
  padding: 10px 15px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: var(--color-txt-secondary);
  background-color: #fff;
  border-radius: 0px 8px 0px 0px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.p-staff__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.p-staff__position {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--color-txt-secondary);
}
.p-staff__name {
  padding: 0 20px;
  line-height: 1;
}
.p-staff__name__main {
  margin-bottom: 5px;
  display: block;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--color-txt-secondary);
}
.p-staff__name__assignment {
  font-size: 13px;
}
.p-staff__name__sub {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 13px;
  font-weight: 500;
}
.p-staff__btn {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  width: calc(100% + 2px);
  height: 66px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-txt-quaternary);
  background-color: var(--color-site-denary);
  border: 1px solid var(--color-border-quaternary);
  border-radius: 0 0 10px 10px;
  position: absolute;
  left: -1px;
  bottom: -1px;
}
.p-staff__plus {
  width: 38px;
  height: 38px;
  background-color: var(--color-border-septenary);
  border-radius: 50%;
  position: relative;
}
.p-staff__plus::before, .p-staff__plus::after {
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--color-site-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50%;
}
.p-staff__plus::before {
  rotate: 90deg;
}
.p-staff__close {
  width: fit-content;
  height: 90px;
  grid-row: 1/2;
  grid-column: 1/2;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  background: none;
  border: 0;
  position: sticky;
  top: 10px;
  right: 10px;
  z-index: 2;
}
@media print, screen and (width > 1024px) {
  .p-staff__close {
    top: 25px;
    right: 25px;
  }
}
.p-staff__cross {
  display: block;
  width: 40px;
  height: 40px;
  background-color: var(--color-border-septenary);
  border-radius: 50%;
  position: relative;
}
.p-staff__cross::before, .p-staff__cross::after {
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--color-site-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50%;
}
.p-staff__cross::before {
  rotate: 45deg;
}
.p-staff__cross::after {
  rotate: -45deg;
}
@media print, screen and (width > 1024px) {
  .p-staff__cross {
    width: 55px;
    height: 55px;
  }
}
@media print, screen and (width > 1024px) {
  .p-staff__info {
    flex: 1 0 1%;
  }
}
.p-staff__txt {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}
@media print, screen and (width > 1024px) {
  .p-staff__txt {
    margin-top: 30px;
    font-size: 17px;
    line-height: 2;
  }
}
.p-staff__expertise {
  margin-top: 20px;
}
@media print, screen and (width > 1024px) {
  .p-staff__expertise {
    margin-top: 30px;
  }
}
.p-staff__expertise__hd {
  font-family: "Zen Kaku Gothic New", sans-serif;
  width: fit-content;
  padding: 6px 12px;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  background: var(--color-site-quaternary);
  color: var(--color-txt-secondary);
  border: 1px solid var(--color-border-quaternary);
}
.p-staff__expertise .c-list--normal {
  padding-left: 5px;
}
@media print, screen and (width > 1024px) {
  .p-staff__expertise .c-list--normal {
    padding-left: 20px;
  }
}
.p-staff__modal {
  width: min(90svw, 1200px);
  height: 90svh;
  padding: 0;
  border: 0;
  border-radius: 10px;
}
.p-staff__modal[open] {
  display: grid;
  place-items: start end;
}
.p-staff__modal::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
.p-staff__modal__inner {
  width: 100%;
  grid-row: 1/2;
  grid-column: 1/2;
  background-color: #fff;
  padding: 90px 15px 15px;
}
@media print, screen and (width > 1024px) {
  .p-staff__modal__inner {
    display: flex;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 80px;
    padding: 130px 80px 90px;
  }
}
.p-staff__modal__inner .acms-box-medium {
  width: 100%;
}
.p-staff__modal .p-staff__photo {
  aspect-ratio: 400/445;
  border-radius: 10px;
  overflow: hidden;
}
@media print, screen and (width > 1024px) {
  .p-staff__modal .p-staff__photo {
    width: 38.36%;
  }
}
.p-staff__modal .p-staff__category {
  width: fit-content;
  padding: 8px 16px;
  margin-bottom: 15px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  background-color: var(--color-site-primary);
}
.p-staff__modal .p-staff__position {
  min-height: initial;
  padding: 0 0 15px;
}
.p-staff__modal .p-staff__name {
  padding: 0;
}
.p-staff__modal .p-staff__name__main {
  font-size: 36px;
}
.p-staff__modal .p-staff__name__assignment {
  font-size: 16px;
}
.p-staff__modal .c-line {
  width: 100%;
  margin-top: 40px;
}
@media print, screen and (width > 1024px) {
  .p-staff__modal .c-line {
    margin-top: 80px;
  }
}
.p-staff__modal .c-table {
  width: 100%;
  margin-top: 55px;
}
@media only screen and (width <= 1024px) {
  .p-staff__modal .c-table {
    display: block;
    margin-top: 35px;
  }
  .p-staff__modal .c-table__tbody, .p-staff__modal .c-table__tr, .p-staff__modal .c-table__th, .p-staff__modal .c-table__td {
    display: block;
    width: 100%;
  }
  .p-staff__modal .c-table__td:first-child {
    padding: 10px 8px 0;
    font-weight: 700;
    border-bottom: 0;
  }
}

.p-paper {
  display: grid;
  gap: 20px;
}
.p-paper:not(:last-child) {
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .p-paper {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
  }
  .p-paper:not(:last-child) {
    margin-bottom: 30px;
  }
}
.p-paper__item {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--color-border-quaternary);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.p-paper__title {
  display: grid;
  place-items: center;
  height: 100px;
  color: var(--color-txt-secondary);
  font-size: 28px;
  font-weight: 700;
}
@media print, screen and (width > 1024px) {
  .p-paper__title {
    height: 158px;
    font-size: 32px;
  }
}
.p-paper__btn {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 10px;
  width: calc(100% + 2px);
  height: 66px;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-txt-quaternary);
  background-color: var(--color-site-denary);
  border: 1px solid var(--color-border-quaternary);
  border-radius: 0 0 10px 10px;
  position: relative;
  left: -1px;
  bottom: -1px;
}
.p-paper__plus {
  width: 38px;
  height: 38px;
  background-color: var(--color-border-septenary);
  border-radius: 50%;
  position: relative;
}
.p-paper__plus::before, .p-paper__plus::after {
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--color-site-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50%;
}
.p-paper__plus::before {
  rotate: 90deg;
}

.p-contact__bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media print, screen and (width > 1024px) {
  .p-contact__bottom {
    flex-direction: row;
  }
}

.p-pagetop {
  width: 45px;
  height: 45px;
  background-color: var(--color-site-quinary);
  position: absolute;
  top: -45px;
  right: 0;
}
@media print, screen and (width > 1024px) {
  .p-pagetop {
    width: 73px;
    height: 73px;
    top: 0;
  }
}
.p-pagetop__link {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .p-pagetop__link:where(:any-link, :enabled, summary):hover .p-pagetop__icon {
    translate: 0 -5px;
    transition: translate 0.3s;
  }
}
.p-pagetop__icon {
  height: 8px;
  width: 14px;
}
@media print, screen and (width > 1024px) {
  .p-pagetop__icon {
    height: 12px;
    width: 20px;
    transition: translate 0.2s;
  }
}

.p-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
@media print, screen and (width > 1024px) {
  .p-banner {
    width: 790px;
    margin: auto;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (hover: hover) {
  .p-banner__link:where(:any-link, :enabled, summary):hover {
    opacity: 0.7;
    transition: opacity 0.3s;
  }
}
.p-banner__img {
  width: 100%;
  height: auto;
}

.p-fnav {
  width: min(83.333vw, 1200px);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, auto);
  column-gap: 9%;
}
.p-fnav__category {
  margin-bottom: 13px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0;
  color: var(--color-txt-secondary);
}
.p-fnav__list {
  display: grid;
  row-gap: 5px;
}
.p-fnav__item {
  font-size: 15px;
  font-weight: 400;
  line-height: 2.13;
  letter-spacing: 0;
  color: var(--color-txt-quaternary);
}
.p-fnav__link {
  color: inherit;
}
@media print, screen and (width > 1024px) {
  .p-fnav__link {
    position: relative;
  }
  .p-fnav__link::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-txt-quaternary);
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .p-fnav__link:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}
.p-fnav--sub {
  margin-bottom: 33px;
  display: flex;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
}
@media print, screen and (width > 1024px) {
  .p-fnav--sub {
    margin: 0 auto 0 0;
    justify-content: flex-start;
    align-self: flex-end;
  }
}
.p-fnav--sub__item {
  line-height: 1;
}
.p-fnav--sub__link {
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 500;
  color: #fff;
}
@media print, screen and (width > 1024px) {
  .p-fnav--sub__link {
    font-size: 15px;
    position: relative;
  }
  .p-fnav--sub__link::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: transform 0.2s;
    transform: translate(0, 0) scale(0, 1);
    transform-origin: center right;
  }
  .p-fnav--sub__link:hover::before {
    transform: translate(0, 0) scale(1);
    transform-origin: center left;
    transition: transform 0.3s;
  }
}

.p-copyright {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.23em;
  color: #fff;
}
@media print, screen and (width > 1024px) {
  .p-copyright {
    font-size: 12px;
  }
}

.u-color--primary {
  color: var(--color-site-primary);
}

.u-color--secondary {
  color: var(--color-site-secondary);
}

.u-color--teriary {
  color: var(--color-site-teriary);
}

.acms-container {
  max-width: initial;
  padding: 0;
  margin-bottom: 40px;
}
.acms-container #adminBox {
  margin-bottom: 0;
}

@media print, screen and (width > 1024px) {
  .titleWrapper h2 {
    font-size: 21px;
    margin-bottom: 20px;
  }
}

.acms-admin-box input,
.acms-admin-box textarea,
.acms-box-medium input,
.acms-box-medium textarea {
  font-size: 16px;
}
.acms-admin-box select,
.acms-admin-box button,
.acms-box-medium select,
.acms-box-medium button {
  font-size: 16px;
}

.entryFormColumn .entryFormColumnHead select {
  font-size: 14px;
}

.acms-admin-form .entryFormLiteEditor,
.acms-admin-form textarea {
  font-size: 16px;
}

.titleWrapper {
  max-width: 1280px;
  margin: 0 auto 20px;
}

.acms-ebody {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #C8D9FF;
  border-radius: 10px;
}
.acms-ebody:not(:last-child) {
  margin-bottom: 40px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody:not(:last-child) {
    margin-bottom: 60px;
  }
}
.acms-ebody .acms-box-medium {
  margin-top: 0;
  position: sticky;
  left: 0;
  bottom: 0;
  z-index: 5;
}
.acms-ebody__link {
  position: relative;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__link:hover .acms-ebody__continue__icon {
    right: 15px;
    transition: right 0.3s;
  }
}
.acms-ebody__continue {
  width: 160px;
  height: 60px;
  padding: 15px 0 0 20px;
  font-size: 17px;
  font-weight: 700;
  line-height: 2;
  background-color: var(--color-site-denary);
  border: 1px solid var(--color-border-quaternary);
  border-radius: 10px 0 10px 0;
  position: absolute;
  right: -1px;
  bottom: -1px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__continue {
    width: 185px;
    height: 70px;
    padding-top: 19px;
    padding-left: 25px;
  }
}
.acms-ebody__continue__icon {
  width: 30px;
  height: 30px;
  background-color: var(--color-border-septenary);
  border-radius: 50%;
  position: absolute;
}
.acms-ebody__continue__icon::before {
  content: "";
  width: 8px;
  height: 15px;
  -webkit-mask-image: url(../images/common/icon_arrow.svg);
  -webkit-mask-size: 8px 15px;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow.svg);
  mask-size: 8px 15px;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--color-site-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__continue__icon {
    width: 38px;
    height: 38px;
    right: 18px;
    top: 17px;
    transition: right 0.2s;
  }
}
.acms-ebody__entry {
  padding: 20px;
  container-name: ebody;
  container-type: inline-size;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__entry {
    width: calc(100% + 2px);
    margin-left: -1px;
    padding: 80px 80px 40px;
  }
}
.acms-ebody__entry + .p-pager::before {
  content: "";
  background-color: #BEBEBE;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  top: -50px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content {
    margin-right: -80px;
  }
}
.acms-ebody__content .p-staff__modal {
  width: 100%;
  height: auto;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .p-staff__modal {
    width: calc(100% - 80px);
  }
}
.acms-ebody__content .p-staff__modal__inner {
  padding: 0;
  width: 100%;
}
.acms-ebody__content > * strong {
  font-weight: 700;
}
.acms-ebody__content > * strong.--bigger {
  font-size: 111.764%;
}
.acms-ebody__content > * strong.--redbigger {
  color: #FF0000;
}
.acms-ebody__content > * strong.--bluebigger {
  font-size: 111.764%;
  color: var(--color-txt-secondary);
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content > * {
    margin-right: 80px;
  }
  .acms-ebody__content > *[class*=c-column--02] {
    margin-right: 7.06%;
  }
  .acms-ebody__content > *.c-column--03 {
    margin-right: 3.48%;
  }
}
.acms-ebody__content > *.clearHidden:last-child {
  display: none !important;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content > *.c-map {
    width: calc(100% - 80px);
  }
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content > .c-img--auto {
    max-width: calc(100% - 80px) !important;
  }
}
.acms-ebody__content > .clearHidden {
  display: none;
}
.acms-ebody__content [class*=c-hd]:not(:first-child) {
  margin-top: 40px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=c-hd]:not(:first-child) {
    margin-top: 80px;
  }
}
.acms-ebody__content [class*=c-txt]:not(:last-child) {
  margin-bottom: 50px;
}
.acms-ebody__content [class*=c-txt] + [class*=c-txt] {
  margin-top: -30px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=c-txt]:not(:last-child) {
    margin-bottom: 80px;
  }
  .acms-ebody__content [class*=c-txt] + [class*=c-txt] {
    margin-top: -60px;
  }
}
.acms-ebody__content [class*=column-table]:not(:last-child) {
  margin-bottom: 40px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=column-table]:not(:last-child) {
    margin-bottom: 80px;
  }
  .acms-ebody__content [class*=column-table] .entry-container {
    overflow: initial !important;
  }
}
.acms-ebody__content .c-blockquote:not(:last-child) {
  margin-bottom: 50px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .c-blockquote:not(:last-child) {
    margin-bottom: 80px;
  }
}
.acms-ebody__content .c-dl:not(:last-child),
.acms-ebody__content [class*=c-list]:not(:last-child) {
  margin-bottom: 40px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .c-dl:not(:last-child),
  .acms-ebody__content [class*=c-list]:not(:last-child) {
    margin-bottom: 80px;
  }
}
.acms-ebody__content [class*=c-column] *:first-child:is(hr) + [class*=c-hd]:first-of-type {
  margin-top: 0 !important;
}
.acms-ebody__content [class*=c-column]:not(:last-child) {
  margin-bottom: 40px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=c-column]:not(:last-child) {
    margin-bottom: 70px;
  }
}
.acms-ebody__content .c-line {
  margin-top: 0;
  margin-bottom: 50px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .c-line {
    margin-top: 0;
    margin-bottom: 80px;
  }
}
.acms-ebody__content [class*=column-media-],
.acms-ebody__content [class*=column-image-] {
  width: fit-content;
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=column-media-],
  .acms-ebody__content [class*=column-image-] {
    margin-bottom: 80px;
  }
  .acms-ebody__content [class*=column-media-].c-img--large,
  .acms-ebody__content [class*=column-image-].c-img--large {
    width: calc(100% - 80px) !important;
  }
}
.acms-ebody__content [class*=column-media-][class*=c-img] .columnImage,
.acms-ebody__content [class*=column-image-][class*=c-img] .columnImage {
  width: 100%;
}
.acms-ebody__content [class*=column-media-] .caption,
.acms-ebody__content [class*=column-image-] .caption {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
  margin-top: 10px;
  text-align: left !important;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=column-media-] .caption,
  .acms-ebody__content [class*=column-image-] .caption {
    font-size: 16px;
  }
}
.acms-ebody__content [class*=column-media-] img,
.acms-ebody__content [class*=column-image-] img {
  width: 100%;
}
@media only screen and (width <= 1024px) {
  .acms-ebody__content [class*=column-media-] .columnIcon,
  .acms-ebody__content [class*=column-image-] .columnIcon {
    width: 50px;
    height: auto;
  }
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=c-column] {
    float: left;
  }
  .acms-ebody__content [class*=c-column].c-column {
    width: 100%;
    margin-right: -80px;
  }
  .acms-ebody__content [class*=c-column].c-column .c-img--auto {
    max-width: calc(100% - 80px) !important;
  }
  .acms-ebody__content [class*=c-column].c-column .clearHidden {
    display: none;
  }
  .acms-ebody__content [class*=c-column].c-column > * {
    margin-right: 80px;
  }
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-txt],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-list],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-table] {
    margin-bottom: 0;
  }
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-txt]:not(:last-child),
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-list]:not(:last-child),
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-table]:not(:last-child) {
    margin-bottom: 40px;
  }
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-txt] + [class*=c-txt], .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-txt] + [class*=c-list], .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-txt] + [class*=column-table],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-list] + [class*=c-txt],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-list] + [class*=c-list],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-list] + [class*=column-table],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-table] + [class*=c-txt],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-table] + [class*=c-list],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-table] + [class*=column-table] {
    margin-top: -20px;
  }
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-hd] {
    margin-bottom: 0;
  }
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=c-hd]:not(:last-child) {
    margin-bottom: 40px;
  }
}
.acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-media-],
.acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-image-] {
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-media-],
  .acms-ebody__content [class*=c-column]:not(.c-column) [class*=column-image-] {
    margin-bottom: 30px;
  }
}
.acms-ebody__content [class*=c-column] .c-line:last-child {
  margin-bottom: 30px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content [class*=c-column] .c-line:last-child {
    margin-bottom: 50px;
  }
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .column-media-right,
  .acms-ebody__content .column-image-right {
    float: right;
  }
  .acms-ebody__content .column-media-right.c-img--middle,
  .acms-ebody__content .column-image-right.c-img--middle {
    margin-left: 7.06%;
  }
  .acms-ebody__content .column-media-right.c-img--small,
  .acms-ebody__content .column-image-right.c-img--small {
    margin-left: 3.48%;
  }
}
.acms-ebody__content .column-media-right:has(.columnIcon),
.acms-ebody__content .column-image-right:has(.columnIcon) {
  margin-left: 20px;
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .column-media-left,
  .acms-ebody__content .column-image-left {
    float: left;
  }
  .acms-ebody__content .column-media-left.c-img--middle,
  .acms-ebody__content .column-image-left.c-img--middle {
    margin-right: 7.06%;
  }
  .acms-ebody__content .column-media-left.c-img--small,
  .acms-ebody__content .column-image-left.c-img--small {
    margin-right: 3.48%;
  }
}
.acms-ebody__content .column-media-left:has(.columnIcon),
.acms-ebody__content .column-image-left:has(.columnIcon) {
  margin-right: 20px;
  margin-bottom: 20px;
}
.acms-ebody__content .column-media-center,
.acms-ebody__content .column-image-center {
  text-align: center;
}
.acms-ebody__content .column-media-center .caption,
.acms-ebody__content .column-image-center .caption {
  text-align: center !important;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .column-media-center,
  .acms-ebody__content .column-image-center {
    width: auto !important;
  }
  .acms-ebody__content .column-media-center .columnImage,
  .acms-ebody__content .column-image-center .columnImage {
    width: auto !important;
    max-width: 100%;
  }
}
.acms-ebody__content [class*=column-file] {
  width: fit-content;
  margin-bottom: 30px;
}
.acms-ebody__content .column-file-left {
  margin-right: 25px;
}
.acms-ebody__content .column-file-right {
  margin-left: 25px;
}
.acms-ebody__content .column-file-center {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.acms-ebody__content .column-file-center .caption {
  text-align: center !important;
}
.acms-ebody__content .entry-container {
  margin: 0;
}
@media only screen and (width <= 1024px) {
  .acms-ebody__content .entry-container.scroll-hint {
    overflow-x: scroll !important;
  }
}
.acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) {
  width: 100%;
}
@media only screen and (width <= 1024px) {
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) th {
    white-space: nowrap;
  }
}
@media only screen and (width <= 1024px) {
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) td {
    white-space: nowrap;
  }
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit) {
    table-layout: auto;
  }
}
@media only screen and (width <= 1024px) {
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit).c-table--spvertical {
    display: block;
    width: 100%;
  }
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit).c-table--spvertical tbody,
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit).c-table--spvertical thead,
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit).c-table--spvertical tr,
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit).c-table--spvertical th,
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit).c-table--spvertical td {
    display: block;
    width: 100%;
  }
  .acms-ebody__content .entry-container table:not(.acms-admin-table-admin-edit).c-table--spvertical th {
    padding-bottom: 0;
    padding-right: 0;
    border-bottom: 0;
  }
}
.acms-ebody__content .acms-googlemap {
  aspect-ratio: 2/3;
}
.acms-ebody__content .acms-googlemap:not(:last-child) {
  margin-bottom: 30px;
}
.acms-ebody__content .acms-googlemap iframe {
  aspect-ratio: 2/3;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .acms-googlemap {
    aspect-ratio: 5/6;
  }
  .acms-ebody__content .acms-googlemap iframe {
    aspect-ratio: 5/6;
  }
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .acms-form select,
  .acms-ebody__content .acms-form *[class*=acms-form-width] {
    font-size: 16px;
    min-height: 35px;
  }
}
@media only screen and (width <= 1024px) {
  .acms-ebody__content .acms-form select,
  .acms-ebody__content .acms-form *[class*=acms-form-width] {
    min-height: 45px;
  }
  .acms-ebody__content .acms-form select:not(:first-child),
  .acms-ebody__content .acms-form *[class*=acms-form-width]:not(:first-child) {
    margin-top: 15px;
  }
}
.acms-ebody__content .acms-form .form-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .acms-form .form-btn-box {
    margin: 60px 10px 0;
  }
}
@media only screen and (width <= 1024px) {
  .acms-ebody__content .acms-form .form-btn-box {
    margin: 30px 10px 0;
  }
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .acms-form .form-btn-return,
  .acms-ebody__content .acms-form .form-btn-send {
    margin: 0 30px;
  }
}
@media only screen and (width <= 1024px) {
  .acms-ebody__content .acms-form .form-btn-return,
  .acms-ebody__content .acms-form .form-btn-send {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .acms-form .acms-form-width-text {
    width: 140px;
    margin-right: 25px;
  }
}
.acms-ebody__content .acms-form .acms-form-width-amount {
  width: 35px;
  height: 35px;
  margin-right: 5px;
}
.acms-ebody__content .acms-form .acms-form-width-number {
  width: 65px;
  margin-right: 5px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody__content .acms-form .acms-form-width-middle {
    width: 308px;
  }
}
.acms-ebody--workflow:not(:last-child) {
  margin-bottom: 20px;
}
@media print, screen and (width > 1024px) {
  .acms-ebody--workflow:not(:last-child) {
    margin-bottom: 50px;
  }
}
@media only screen and (width <= 1024px) {
  .acms-ebody--workflow .acms-ebody__link {
    display: block;
    padding-bottom: 40px;
  }
}
.acms-ebody--message:not(:last-child) {
  margin-bottom: 30px;
}
.acms-ebody--message:not(:has(.p-message__more)) .acms-ebody__entry {
  padding-bottom: 40px;
}
@media only screen and (width <= 1024px) {
  .acms-ebody--message:not(:has(.p-message__more)) .acms-ebody__entry {
    padding-bottom: 10px;
  }
}
.acms-ebody--message .acms-ebody__entry {
  padding-bottom: 80px;
}
@media only screen and (width <= 1024px) {
  .acms-ebody--message .acms-ebody__entry {
    padding-bottom: 40px;
  }
}

.acms-admin-filter-group p,
.acms-admin-filter-group label {
  color: #404040;
}

.entryFormColumnBody * {
  color: #404040;
}

.acms-admin-media-list .adminTable {
  color: #404040;
}

.continue-link {
  clear: both;
  border-top: 1px solid #e6e1dc;
}
@media print, screen and (width > 1024px) {
  .continue-link {
    padding-top: 35px;
  }
}
@media only screen and (width <= 1024px) {
  .continue-link {
    padding-top: 20px;
  }
}

.lite-editor-tooltip-wrap {
  z-index: 1000000 !important;
}
