@charset "UTF-8";
/*#007eb4;*/
.p-table-service {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem;
  width: 100%;
}
.p-table-service__head {
  padding: 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: center;
  background: #006d9c;
}
.p-table-service__grid {
  display: grid;
  gap: 0.5rem;
}
.p-table-service__grid.--column4 {
  grid-template-columns: repeat(4, 1fr);
}
.p-table-service__grid.--column3 {
  grid-template-columns: repeat(3, 1fr);
}
.p-table-service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 8.125rem;
  padding: 1.125rem 0.5rem 0.75rem;
  background: #f0f0f0;
}
.p-table-service__item.is-active {
  background: #d8ecf5;
}
.p-table-service__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 3.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
.p-table-service__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  font-size: 0;
}
.p-table-service__mark::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}
.p-table-service__mark.--ok::after {
  width: 1.875rem;
  height: 1.875rem;
  border: 0.1875rem solid #006d9c;
  border-radius: 50%;
}
.p-table-service__mark.--ng::after {
  width: 2rem;
  height: 0.1875rem;
  background: #272727;
}

.p-table-a11y {
  width: 100%;
  min-width: 43.75rem;
  color: var(--color-text, #272727);
  border-top: 0.0625rem solid var(--color-text, #666);
}
.p-table-a11y__th {
  padding: 1rem 0 1rem 1.5rem;
  font-weight: bold;
  vertical-align: middle;
  border-bottom: 0.0625rem solid var(--color-text, #666);
}
.p-table-a11y__td {
  padding: 1rem 1.5rem 1rem 1rem;
  border-bottom: 0.0625rem solid var(--color-text, #666);
}

@media only screen and (max-width: 767px) {
  .p-table-service {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .p-table-service__head {
    margin-bottom: 1rem;
  }
  .p-table-service__grid {
    display: grid;
    gap: 1rem;
  }
  .p-table-service__grid.--column4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-table-service__grid.--column3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-table-service__item {
    height: 6.25rem;
    padding: 1rem 0.5rem 0.75rem;
  }
  .p-table-service__label {
    font-size: 0.75rem;
  }
  .p-table-service__mark {
    width: 2rem;
    height: 2rem;
  }
  .p-table-service__mark.--ok::after {
    width: 1.25rem;
    height: 1.25rem;
    border-width: 0.125rem;
  }
  .p-table-service__mark.--ng::after {
    width: 1.5rem;
    height: 0.125rem;
  }
  .p-table-a11y__th {
    font-size: 0.75rem;
    padding: 0.5rem 0 0.5rem 0.5rem;
  }
  .p-table-a11y__td {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem 0.5rem 0.5rem;
  }
}
.js-bg-blue .p-table-service__head {
  background-color: #fff;
  color: #00f;
}
.js-bg-blue .p-table-service__item {
  background-color: #fff;
  color: #00f;
}
.js-bg-blue .p-table-service__mark.--ok::after {
  border: 0.1875rem solid #00f;
}
.js-bg-blue .p-table-service__mark.--ng::after {
  background: #00f;
}

.js-bg-black .p-table-service__head {
  background-color: #fff;
  color: #000;
}
.js-bg-black .p-table-service__item {
  background-color: #fff;
  color: #000;
}
.js-bg-black .p-table-service__mark.--ok::after {
  border: 0.1875rem solid #000;
}
.js-bg-black .p-table-service__mark.--ng::after {
  background: #000;
}

.js-bg-yellow .p-table-service__head {
  background-color: #000;
  color: #ff0;
}
.js-bg-yellow .p-table-service__item {
  background-color: #000;
  color: #ff0;
}
.js-bg-yellow .p-table-service__mark.--ok::after {
  border: 0.1875rem solid #ff0;
}
.js-bg-yellow .p-table-service__mark.--ng::after {
  background: #ff0;
}

.p-editor__content {
  overflow: hidden;
}
.p-editor__content h1:not([class*=p-], [class*=c-]) {
  position: relative;
  padding-left: 4.5rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text, #272727);
  letter-spacing: 0.24rem;
}
.p-editor__content h1:not([class*=p-], [class*=c-])::before {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 3.5rem;
  height: 4.8125rem;
  content: "";
  background: transparent url("../images/common/icon_title.png") no-repeat center/contain;
}
.p-editor__content h1:not([class*=p-], [class*=c-]).--color-white {
  color: var(--color-text, #fff);
}
@media only screen and (max-width: 767px) {
  .p-editor__content h1:not([class*=p-], [class*=c-]) {
    padding-left: 2.25rem;
    font-size: 1.75rem;
    letter-spacing: 0.14rem;
  }
  .p-editor__content h1:not([class*=p-], [class*=c-])::before {
    min-width: 2rem;
    height: 2.8125rem;
  }
}
.p-editor__content h2:not([class*=p-], [class*=c-]) {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text, #272727);
  letter-spacing: 0.2rem;
}
.p-editor__content h2:not([class*=p-], [class*=c-]).--marche {
  display: flex;
  gap: 1rem;
  align-items: center;
  color: var(--color-text, #ca4a00);
}
@media only screen and (max-width: 767px) {
  .p-editor__content h2:not([class*=p-], [class*=c-]) {
    font-size: 1.625rem;
    letter-spacing: 0.13rem;
  }
  .p-editor__content h2:not([class*=p-], [class*=c-]).--marche {
    gap: 0.5rem;
  }
}
.p-editor__content h3:not([class*=p-], [class*=c-]) {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text, #272727);
  letter-spacing: 0.09rem;
}
@media only screen and (max-width: 767px) {
  .p-editor__content h3:not([class*=p-], [class*=c-]) {
    font-size: 1.5rem;
    letter-spacing: 0.06rem;
  }
}
.p-editor__content h4:not([class*=p-], [class*=c-]) {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text, #272727);
  letter-spacing: 0.075rem;
}
@media only screen and (max-width: 767px) {
  .p-editor__content h4:not([class*=p-], [class*=c-]) {
    font-size: 1.375rem;
    letter-spacing: 0.055rem;
  }
}
.p-editor__content h5:not([class*=p-], [class*=c-]) {
  font-size: 1.625rem;
  font-weight: 700;
  line-height: normal;
  color: var(--color-text, #272727);
  letter-spacing: 0.065rem;
}
@media only screen and (max-width: 767px) {
  .p-editor__content h5:not([class*=p-], [class*=c-]) {
    font-size: 1.25rem;
    letter-spacing: 0.05rem;
  }
}
.p-editor__content h6:not([class*=p-], [class*=c-]) {
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text, #272727);
  letter-spacing: 0.055rem;
}
@media only screen and (max-width: 767px) {
  .p-editor__content h6:not([class*=p-], [class*=c-]) {
    font-size: 1.125rem;
    letter-spacing: 0.045rem;
  }
}
.p-editor__content p:not([class*=p-], [class*=c-]) {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text, #272727);
  letter-spacing: 0.045rem;
}
.p-editor__content p:not([class*=p-], [class*=c-]).--xlg {
  font-size: 1.375rem;
  line-height: 1.6;
  letter-spacing: 0.055rem;
}
.p-editor__content p:not([class*=p-], [class*=c-]).--lg {
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.05rem;
}
.p-editor__content p:not([class*=p-], [class*=c-]).--sm {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04rem;
}
.p-editor__content p:not([class*=p-], [class*=c-]).--xsm {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.035rem;
}
.p-editor__content p:not([class*=p-], [class*=c-]).--bold {
  font-weight: 700;
}
.p-editor__content p:not([class*=p-], [class*=c-]).--gray {
  color: var(--color-text, #666);
}
@media only screen and (max-width: 767px) {
  .p-editor__content p:not([class*=p-], [class*=c-]) {
    font-size: 0.875rem;
    line-height: 1.65;
    letter-spacing: 0.035rem;
  }
  .p-editor__content p:not([class*=p-], [class*=c-]).--xlg {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.045rem;
  }
  .p-editor__content p:not([class*=p-], [class*=c-]).--lg {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.04rem;
  }
  .p-editor__content p:not([class*=p-], [class*=c-]).--sm {
    font-size: 0.8125rem;
    letter-spacing: 0.0325rem;
  }
  .p-editor__content p:not([class*=p-], [class*=c-]).--xsm {
    font-size: 0.75rem;
    letter-spacing: 0.03rem;
  }
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]) {
  position: relative;
  display: inline-block;
  font-weight: 700;
  line-height: 2;
  color: var(--color-text, #006d9c);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 50%;
  letter-spacing: 0.045rem;
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--xlg {
  font-size: 1.375rem;
  line-height: 2;
  letter-spacing: 0.055rem;
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--lg {
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.05rem;
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--sm {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04rem;
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--xsm {
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.035rem;
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]):focus-visible {
  outline: 0.375rem solid #ffa600;
  outline-offset: 0.375rem;
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-])[target=_blank]::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: middle;
  content: "";
  background: transparent url("../images/common/icon_link_blank.svg") no-repeat center/contain;
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-])[href$=".pdf" i]::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  margin-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  content: "PDF";
  border: 1px solid currentColor;
  background: none;
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--return {
  position: relative;
  padding-left: 1.75rem;
  color: var(--color-text, #006d9c);
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--return::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background: transparent url("../images/common/icon_arrow.svg") no-repeat center/contain;
  transition: 0.3s linear all;
  transform: translateY(-50%) rotate(180deg);
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--map {
  position: relative;
  padding-left: 1.625rem;
  color: var(--color-text, #006d9c);
}
.p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--map::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 0.25rem;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background: transparent url("../images/common/icon_map_blue.svg") no-repeat center/contain;
  transition: 0.3s linear all;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]) {
    transition: 0.3s linear opacity;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]):hover {
    opacity: 0.7;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--return:hover {
    opacity: 1;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--return:hover::before {
    left: 0;
  }
}
@media all and (min-width: 768px), print {
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--tel {
    font-weight: 500;
    color: #272727;
    color: var(--color-text, #272727);
    text-decoration: none;
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]) {
    line-height: 1.8;
    letter-spacing: 0.035rem;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--xlg {
    font-size: 1.125rem;
    line-height: 1.8;
    letter-spacing: 0.045rem;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--lg {
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.04rem;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--sm {
    font-size: 0.8125rem;
    line-height: 1.6;
    letter-spacing: 0.0325rem;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--xsm {
    font-size: 0.625rem;
    line-height: 1.6;
    letter-spacing: normal;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--return {
    padding-left: 1.375rem;
  }
  .p-editor__content a:not([class*=p-], [class*=c-], [class*=e-]).--return::before {
    left: 0;
    width: 1.125rem;
    height: 1.125rem;
  }
}
.p-editor__content .js-bg-black a:not([class*=p-], [class*=c-], [class*=e-]).--map::before,
.p-editor__content .js-bg-blue a:not([class*=p-], [class*=c-], [class*=e-]).--map::before {
  background-image: url("../images/common/icon_map_white.svg");
}
.p-editor__content ul:not([class*=p-], [class*=c-]) li {
  position: relative;
  padding-left: 1rem;
  font-size: 1.125rem;
  line-height: 1.5;
  line-height: 1.8;
  color: var(--color-text, #272727);
  letter-spacing: 0.045rem;
}
.p-editor__content ul:not([class*=p-], [class*=c-]) li + li {
  margin-top: 0.5rem;
}
.p-editor__content ul:not([class*=p-], [class*=c-]) li::before {
  position: absolute;
  top: 0.625em;
  left: 0.0625rem;
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  background: #ffa600;
  border-radius: 50%;
}
.p-editor__content ul:not([class*=p-], [class*=c-]) li.--lg {
  padding-left: 1.25rem;
  font-size: 1.25rem;
  line-height: 2;
  letter-spacing: 0.05rem;
}
.p-editor__content ul:not([class*=p-], [class*=c-]) li.--lg + li {
  margin-top: 0;
}
.p-editor__content ul:not([class*=p-], [class*=c-]) li.--lg::before {
  top: 0.75em;
}
.p-editor__content ul:not([class*=p-], [class*=c-]) li.--bold {
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .p-editor__content ul:not([class*=p-], [class*=c-]) li {
    font-size: 0.875rem;
    line-height: 1.65;
    letter-spacing: 0.035rem;
  }
  .p-editor__content ul:not([class*=p-], [class*=c-]) li::before {
    top: 0.575em;
    width: 0.5rem;
    height: 0.5rem;
  }
  .p-editor__content ul:not([class*=p-], [class*=c-]) li.--lg {
    padding-left: 0.875rem;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.04rem;
  }
  .p-editor__content ul:not([class*=p-], [class*=c-]) li.--lg + li {
    margin-top: 0.125rem;
  }
  .p-editor__content ul:not([class*=p-], [class*=c-]) li.--lg::before {
    top: 0.5em;
  }
}
.p-editor__content ol:not([class*=p-], [class*=c-]) {
  list-style: decimal-leading-zero;
  list-style-position: inside;
}
.p-editor__content ol:not([class*=p-], [class*=c-]) li {
  font-size: 1.125rem;
  line-height: 1.5;
  line-height: 1.8;
  color: var(--color-text, #272727);
  letter-spacing: 0.045rem;
}
.p-editor__content ol:not([class*=p-], [class*=c-]) li + li {
  margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
  .p-editor__content ol:not([class*=p-], [class*=c-]) li {
    font-size: 0.875rem;
    line-height: 1.65;
    letter-spacing: 0.035rem;
  }
}
.p-editor__content dl:not([class*=p-], [class*=c-]) dt {
  font-weight: bold;
  color: var(--color-text, #272727);
}
.p-editor__content dl:not([class*=p-], [class*=c-]) dd {
  padding-left: 1em;
  color: var(--color-text, #272727);
}
.p-editor__content table:not([class*=p-], [class*=c-]) {
  width: 100%;
  color: var(--color-text, #272727);
  border-top: 0.0625rem solid var(--color-text, #666);
}
.p-editor__content table:not([class*=p-], [class*=c-]) th {
  padding: 1rem 0 1rem 1.5rem;
  font-weight: bold;
  vertical-align: middle;
  border-bottom: 0.0625rem solid var(--color-text, #666);
}
.p-editor__content table:not([class*=p-], [class*=c-]) th.--w-percent15 {
  width: 15%;
}
.p-editor__content table:not([class*=p-], [class*=c-]) th.--w-percent25 {
  width: 25%;
}
.p-editor__content table:not([class*=p-], [class*=c-]) th.--w-percent30 {
  width: 30%;
}
.p-editor__content table:not([class*=p-], [class*=c-]) th.--w-200 {
  width: 12.5rem;
}
.p-editor__content table:not([class*=p-], [class*=c-]) td {
  padding: 1rem 1.5rem 1rem 1rem;
  border-bottom: 0.0625rem solid var(--color-text, #666);
}
.p-editor__content table:not([class*=p-], [class*=c-]) td-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-editor__content table:not([class*=p-], [class*=c-]) th {
    display: block;
    width: 100% !important;
    padding: 1rem 1.5rem 0;
    border: none;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .p-editor__content table:not([class*=p-], [class*=c-]) td {
    display: block;
    width: 100% !important;
    padding: 0 1.5rem 1rem;
  }
}
.p-editor__content .e-button {
  position: relative;
  min-width: 18.125rem;
  min-height: 3.75rem;
  padding: 0.75rem 3rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  color: var(--color-text, #fff);
  text-align: center;
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-underline-offset: 50%;
  letter-spacing: 0.045rem;
  cursor: pointer;
  background-color: var(--color-bg, #006d9c);
  border: 0.0625rem solid var(--color-text, #006d9c);
  border-radius: 999rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-editor__content .e-button__text {
  transition: 0.3s linear opacity;
}
.p-editor__content .e-button__icon {
  top: 50%;
  right: 1rem;
  transition: transform 0.15s ease-out;
  transform: translateY(-50%);
}
.p-editor__content .e-button[target=_blank]::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  content: "";
  background: #fff url("../images/common/icon_blank.svg") no-repeat center/contain;
  transition: 0.3s linear all;
  transform: translateY(-50%);
}
.p-editor__content .e-button[href$=".pdf" i]::after {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  content: "PDF";
}
.p-editor__content .e-button.--sub {
  min-height: 4rem;
  color: var(--color-text, #006d9c);
  background-color: var(--color-bg, #fff);
  border-color: var(--color-text, #fff);
  box-shadow: 4px 4px 16px 0 rgba(0, 126, 180, 0.4);
}
.p-editor__content .e-button.--order {
  color: var(--color-text, #fff);
  background-color: var(--color-bg, #ca4a00);
  border-color: var(--color-text, #ca4a00);
}
.p-editor__content .e-button.--header {
  justify-content: flex-start;
  min-width: 27.5rem;
  min-height: 5rem;
  padding: 1rem 2.5rem;
  color: var(--color-text, #006d9c);
  background-color: var(--color-bg, #fff);
  border-color: var(--color-text, #fff);
  box-shadow: 4px 4px 16px 0 rgba(0, 126, 180, 0.4);
}
.p-editor__content .e-button.--header .c-button__header-icon {
  margin: 0 1.25rem 0 0.25rem;
  transition: 0.3s linear all;
}
.p-editor__content .e-button.--order-sub {
  gap: 0.5rem;
  width: 100%;
  min-width: inherit;
  min-height: 4rem;
  color: #ca4a00;
  background-color: #fff;
  border: 0.125rem solid #ca4a00;
}
.p-editor__content .e-button.--order-sub::after {
  background-image: url("../images/common/icon_arrow.svg");
}
@media (hover: hover) {
  .p-editor__content .e-button:hover .c-button__text {
    opacity: 0.7;
  }
  .p-editor__content .e-button:hover .c-button__icon::before {
    transform: scale(1.5);
    animation: bounce-scale 0.3s ease-in-out 1;
  }
  .p-editor__content .e-button:hover.--header .c-button__header-icon {
    transform: scale(1.2);
    animation: bounce-scale2 0.3s ease-in-out 1;
  }
}
@media only screen and (max-width: 767px) {
  .p-editor__content .e-button {
    min-height: 3.125rem;
    padding: 0.75rem 2.875rem 0.75rem 2.5rem;
    font-size: 0.875rem;
    line-height: 1.8;
    letter-spacing: 0.035rem;
  }
  .p-editor__content .e-button::after {
    width: 1.5rem;
    height: 1.5rem;
  }
  .p-editor__content .e-button.--sub {
    min-height: 3.125rem;
  }
  .p-editor__content .e-button.--header {
    min-width: 17.5rem;
    min-height: 3.5rem;
    padding: 0.5rem 1.5rem;
  }
  .p-editor__content .e-button.--header .c-button__header-icon {
    width: 1.75rem;
    height: 1.75rem;
    margin: 0 0.75rem 0 0;
  }
  .p-editor__content .e-button.--order {
    min-height: 3.3125rem;
  }
  .p-editor__content .e-button.--order-sub {
    min-height: 3.3125rem;
  }
  .p-editor__content .e-button.--sp {
    width: auto;
    min-width: 10rem;
    padding-left: 1.5rem;
    margin-left: auto;
  }
}
.p-editor__content .e-box {
  padding: 1.5rem 2.5rem;
  background-color: var(--color-bg, #fff);
  border: 1px solid var(--color-text, #006d9c);
  border-radius: 1.25rem;
}
.p-editor__content .e-box.--sub {
  background-color: var(--color-bg, #d8ecf5);
  border-color: var(--color-text, transparent);
}
.p-editor__content .e-box__title.--icon-check {
  position: relative;
  padding-left: 2.5rem;
}
.p-editor__content .e-box__title.--icon-check::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  min-width: 2rem;
  height: 2rem;
  content: "";
  background: transparent url("../images/common/icon_check.svg") no-repeat center/contain;
}
.p-editor__content .e-box__text {
  margin-top: 0.5rem;
}
.p-editor__content .e-box__text + .p-box__text {
  margin-top: 1.5rem;
}
.p-editor__content .e-box__text:first-child {
  margin-top: 0;
}
@media only screen and (max-width: 767px) {
  .p-editor__content .e-box {
    padding: 1.25rem 1.5rem;
  }
  .p-editor__content .e-box__title.--icon-check {
    padding-left: 1.875rem;
  }
  .p-editor__content .e-box__title.--icon-check::before {
    top: 0;
    left: 0;
    min-width: 1.75rem;
    height: 1.75rem;
  }
  .p-editor__content .e-box__text + .p-box__text {
    margin-top: 0.75rem;
  }
}
.p-editor__content .e-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
.p-editor__content .e-grid.--repeat-2 {
  grid-template-columns: repeat(2, 1fr);
}
.p-editor__content .e-grid.--repeat-3 {
  grid-template-columns: repeat(3, 1fr);
}
.p-editor__content .e-grid__texts {
  margin-top: 1rem;
}
.p-editor__content .e-grid__col {
  /* CMSエディタ―のみで適応 */
  /* border: dashed 1px #c2c2c2; */
}