@charset "UTF-8";
.grecaptcha-badge { visibility: hidden; }
:root {
  --theme-main-color: #1A1A1C;
  --theme-blue:#002CB6;
  --theme-red:#FF3C1E;  
  --theme-gra: radial-gradient(49.25% 212.68% at 49.25% 44.53%, #00ABFD 0%, #002CB6 100%) ;
  --theme-gray-bg:#F6F9FD;
  --svg-theme-blue: brightness(0) saturate(100%) invert(9%) sepia(91%) saturate(4673%) hue-rotate(216deg) brightness(118%) contrast(127%);
  --svg-white: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(6%) hue-rotate(150deg) brightness(103%) contrast(102%);



  --text-normal: #1A1A1C;
  --border-gray: #D5D8DA;
  --background-gray: #F3F5F6;
  --text-gray: #606163;
  --text-light-gray: #9EA3A7;

}

body,
h1,
h2,
h3,
p,
pre,
li,
code {
  font-family: "Noto Sans JP", sans-serif !important;
  margin: 0;
}

/* body {
  background-color: #f5f5f5;
} */

body.customize-support {
  background-color: #fff;
  margin-top: 72px;
}

header,
footer {
  display: flex !important;
}

img {
  height: auto;
  max-width: 100%;
}

time {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-normal);
  display: block;
}

#breadcrumbs {
  font-weight: 700;
  font-size: 12px;
  margin: 0;
}

.c-f-page__header #breadcrumbs {
  padding-top: 20px;
  margin: 0 !important;
}

#breadcrumbs a {
  color: var(--theme-main-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: var(--theme-main-color);
}

a:hover {
  color: var(--theme-blue);
}

.arrow-right {
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
}
/* 
.arrow-right-blue {
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--theme-main-color);
  border-right: 2px solid var(--theme-main-color);
  transform: rotate(45deg);
} */

.arrow-right-blue {
  position: absolute;
  right: 26px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--theme-main-color);
  border-right: 2px solid var(--theme-main-color);
  transform: rotate(45deg);
}

.fa-solid.fa-angle-left,
.fa-solid.fa-angle-right {
  color: #1A1A1C;
}
a .arrow-right-blue,
a:hover .arrow-right-blue{
  border-color: var(--theme-blue);
}

.inquiry-button-wrapper {
  background: #ffffff;
  margin-right: 32px;
  display: flex;
  border-radius: 4px;
}

/**/

.document-button {
  border-radius: 4px;
  padding: 14px 18px;
  font-weight: 700;
  font-size: 15px;
  margin-right: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  z-index: 1;
  /* background: #fff;
  color: var(--theme-blue);
  border: 2px solid;
  border-image-source: radial-gradient(49.25% 212.68% at 49.25% 44.53%, #00ABFD 0%, #002CB6 100%);
  border-image-slice: 1; */
}
.document-button:hover {
  opacity: .8;
}

.document-button .arrow-right,
.document-button .arrow-right-blue{
  border-color: var(--theme-blue);
}
.document-button img {
  width: 20px;
  height: 20px;
  filter: var(--svg-theme-blue);
}
.document-button,
.download-button {
  color: var(--theme-blue);
}

.document-button::before,
.document-button::after,
.download-button::before,
.download-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  z-index: -1;
}

.document-button::before,
.download-button::before {
  background-image: var(--theme-gra);
}
.document-button:hover,
.download-button:hover{
  opacity: .8;
}

.document-button::after,
.download-button::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  margin: 1px auto auto 1px;
  background-color: #fff;
}




.inquiry-button {
  border-radius: 4px;
  color: #FFFFFF;
  text-decoration: none;
  position: relative;
  font-size: 15px;
  text-align: center;
  font-weight: 700;
  padding: 18px 32px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--theme-gra);
}

.inquiry-button:hover {
  color: #FFFFFF;
  opacity: 0.8;
}


.list-link {
   /*background: #FFFFFF;
  border: 1px solid var(--theme-main-color); */
  border-radius: 5px;
  width: 320px;
  height: 72px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-weight: 700;
  font-size: 16px;
  /* color: var(--theme-main-color); */
  color: #fff;
  background: var(--theme-gra);
}

.list-link:hover {
  opacity: 0.8;
  color: #fff;
  /* color: var(--theme-main-color); */
}

.list-link:after {
  position: absolute;
  content: url(../images/icon-arrow-right.svg);
  filter: var(--svg-white);
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  width: 24px;
}
.footer-inquiry .list-link {
  background: #FFFFFF;
  color: var(--theme-blue);
}
.footer-inquiry .list-link:after {
  content: url(../images/icon-arrow-right.svg);
  filter: var(--svg-theme-blue);
}
@media screen and (max-width: 800px) {
  .list-link {
    height: 56px;
    /* width: 164px; */
  }
}

.download-button {
  /* background: #FFFFFF;
  color: var(--theme-main-color);
  border: 1px solid var(--theme-main-color); */
  border-radius: 5px;
  padding: 18px 32px;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  display: block;
  position: relative;
  min-height: 66px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.copy-rights {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  background: #f5f5f5;
  padding: 26px 0;
  width: 100%;
  bottom: 0;
}

input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 8px 15px;
  margin-right: 10px;
  margin-top: 10px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 200px;
}

select.wpcf7-form-control.wpcf7-select {
  width: 100%;
  padding: 8px 15px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
}

.wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}

.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin: 0;
}

.wpcf7-list-item-label {
  font-weight: 400;
  font-size: 16px;
}

/* 「送信する」ボタン */
.wpcf7-submit {
  display: block;
  padding: 22px 36px;
  background: var(--theme-gra);
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  border-radius: 4px;
  margin: 0 auto;
  border: none;
}

.wpcf7-submit:disabled {
  opacity: .5;
}

.required {
  font-size: 12px;
  padding: 2.5px 4px;
  background: var(--theme-red);
  color: #ffffff;
  margin-left: 12px;
  border-radius: 2px;
}

.inquiry-footer {
  text-align: center;
  font-weight: 700;
  font-size: 12px;
}

.base__header {
  padding: 24px 40px 12px;
  /* background: #f5f5f5; */
  background: var(--theme-gray-bg);
  margin-top: 80px;
}

.base__header__title {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
  margin: 36px 0 16px;
}

.base__header__description {
  font-weight: 400;
  font-size: 16px;
  text-align: center;
}

.contents {
  margin: 120px 160px;
}

.contents p,
.contents h1,
.contents h2,
.contents h3,
.contents h4 {
  margin: revert;
}
#logo-img{
  filter: brightness(0) saturate(100%) invert(9%) sepia(8%) saturate(335%) hue-rotate(201deg) brightness(96%) contrast(97%);
}
.logo-img {
  margin: 0 32px;
  width: 131px;
  height: 31px;
}

.pagination {
  margin: 80px 0 120px;
  justify-content: center;
}

.prev.page-numbers,
.next.page-numbers {
  background: none;
  border: none;
}

.page-numbers {
  text-align: center;
  list-style-position: inside;
  list-style-type: none;
  padding: 0;
  font-size: 14px;
}

.page-numbers li {
  display: inline-block;
}

.page-numbers a {
  display: inline-block;
  width: 32px;
  height: 32px;
  color: #1A1A1C;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-numbers span {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: #002CB6;
  color: #ffffff;
  border-radius: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.post-categories {
  margin-top: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-wrap: wrap;
  font-weight: 700;
  font-size: 12px;
  margin: auto 0 0;
  padding: 0;
  bottom: 0;
}

.post-categories li {
  white-space: nowrap;
  background: #F4F5F7;
  border-radius: 2px;
  color: var(--text-light-gray);
  font-weight: 700;
  font-size: 12px;
  margin: 4px 8px 4px 0;
  padding: 8px 34px;
}

.text-blue span{
  background: var(--theme-gra);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#ez-toc-container {
  border: 1px solid var(--border-gray);
  border-radius: 2px;
}

a.ez-toc-link {
  color: var(--theme-main-color);
}
a.ez-toc-link:hover{
  color: var(--theme-blue);
}
#ez-toc-container .ez-toc-title {
  color: var(--text-gray);
  font-weight: 700;
  font-size: 20px;
  margin: 0;
}

#ez-toc-container .ez-toc-title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-gray);
  padding: 16px 40px;
}

#ez-toc-container #item {
  display: none;
}

#ez-toc-container label {
  margin: 0;
  font-size: 20px;
}

#ez-toc-container label:before {
  content: "\f077";
  font-family: FontAwesome;
}

#ez-toc-container.toc_close label:before {
  content: "\f078";
  font-family: FontAwesome;
}

#ez-toc-container .ez-toc-list {
  padding: 0;
}

#ez-toc-container .ez-toc-list ul li {
  content: "";
}

#ez-toc-container .ez-toc-list .ez-toc-heading-level-2 {
  counter-increment: section;
  color: var(--theme-main-color) !important;
  font-weight: 700;
  font-size: 16px;
  margin: 20px 40px;
}

#ez-toc-container .ez-toc-list .ez-toc-heading-level-2:not(:last-child) {
  border-bottom: 1px solid var(--border-gray);
  padding-bottom: 20px;
}

#ez-toc-container .ez-toc-list .ez-toc-heading-level-2:before {
  content: counter(section, decimal-leading-zero) ". " !important;
}

#ez-toc-container .ez-toc-list .ez-toc-heading-level-3 {
  font-weight: 500;
  font-size: 16px;
  margin-top: 8px;
}

#ez-toc-container .ez-toc-list .ez-toc-heading-level-3 a {
  color: var(--text-gray);
}

#ez-toc-container .ez-toc-list .ez-toc-list-level-3 {
  padding-top: 4px;
  padding-left: 32px;
}

#ez-toc-container .ez-toc-list .ez-toc-heading-level-4 {
  font-size: 14px;
  margin-top: 8px;
}

#ez-toc-container .ez-toc-list .ez-toc-list-level-4 {
  padding-left: 16px;
}

.nlink-card {
  display: flex;
  margin-bottom: 40px;
  border: 1px solid #EDEFF1;
  border-radius: 2px;
  padding: 20px;
}

.nlink-card__thumbnail {
  width: 30%;
  margin-right: 32px;
}

.nlink-card__thumbnail img {
  width: 100%;
  max-height: 132px;
  min-width: 30%;
  -o-object-fit: cover;
  object-fit: cover;
}

.nlink-card__content {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-normal);
  font-weight: 700;
  font-size: 20px;
}

.nlink-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  margin-bottom: 20px;
}

.nlink-card__meta {
  font-weight: 400;
  display: flex;
  align-items: center;
}

.nlink-card__date {
  color: #666666;
  font-size: 12px;
  line-height: 140%;
  margin-right: 20px;
}

.nlink-card__categories {
  font-size: 14px;
  line-height: 160%;
  color: #1A1A1C;
}

.wp-block-list {
  list-style-type: disc;
}

.wp-block-table {
  margin-bottom: 40px;
  border-right: 1px solid #DDDDDD;
  border-top: 1px solid #DDDDDD;
}

.wp-block-table thead {
  border-bottom: unset;
}

.wp-block-table th {
  background: #F4F5F7;
  font-weight: 700;
  color: var(--theme-main-color);
  border: unset;
  text-align: center;
}

.wp-block-table td {
  font-weight: 500;
  background-color: #fff;
}

.wp-block-table th,
.wp-block-table td {
  font-size: 16px;
  padding: 16px 20px;
  border: none;
  border-left: 1px solid #DDDDDD;
  border-bottom: 1px solid #DDDDDD;
}

.wp-block-table tr:not(:last-child) {
  border-bottom: 1px solid #DDDDDD;
}

.wp-block-code {
  background: #F7F7F7;
  font-weight: 500;
  font-size: 16px;
  padding: 20px;
  color: #333333;
  margin-bottom: 40px;
  line-height: 160%;
  border: 1px solid #DDDDDD;
  border-radius: 2px;
}

.inquiry-header {
  background: #FFFFFF;
}

.background-gray {
  /* background: #FAFBFD; */
  background-color: rgba(237, 242, 252, .5);
}

.background-white {
  background: #FFFFFF;
}

.sp-only {
  display: none;
}

/* SP */
@media screen and (max-width: 800px) {
  /* body {
    margin-top: 64px !important;
  } */

  .sp-only {
    display: block;
  }

  .wpcf7-form {
    margin: 0 20px;
  }

  .wpcf7-submit {
    padding: 24px 0;
    width: 100%;
  }

  time {
    font-size: 12px;
  }

  .base__header {
    padding: 20px 20px 10px;
    margin-top: 64px;
  }

  .contents {
    margin: 0 40px;
  }

  .inquiry-header {
    justify-content: center;
  }

  .post-categories {
    font-size: 10px;
  }

  .post-categories li {
    padding: 0 25px;
  }

  #ez-toc-container a {
    font-size: 14px;
  }

  #ez-toc-container .ez-toc-title-container {
    padding: 16px 12px;
  }

  #ez-toc-container .ez-toc-list .ez-toc-heading-level-2 {
    margin: 20px 12px 20px 24px;
  }

  #ez-toc-container .ez-toc-list .ez-toc-heading-level-2:before {
    font-size: 14px;
  }

  .nlink-card {
    margin-bottom: 32px;
  }

  .nlink-card__thumbnail img {
    max-height: 66px;
  }

  .nlink-card__content {
    font-size: 14px;
  }

  .nlink-card__content .post-categories {
    margin-top: 8px;
  }

  .nlink-card__content .post-categories li {
    font-size: 10px;
  }

  .wp-block-table {
    margin-bottom: 32px;
  }

  .wp-block-table th,
  .wp-block-table td {
    font-size: 14px;
    padding: 12px 18px;
  }

  .wp-block-code {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

/* イベントハブ対応
2024.01.22　対応
====================================================*/
#eh-root fieldset>div.heading .required {
  font-size: 12px !important;
  color: #ffffff !important;
  margin-left: 12px !important;
}

#eh-root fieldset>div.heading {
  flex-direction: column !important;
}

#eh-root legend {
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid #1A1A1C;
  padding-bottom: 8px !important;
}

#eh-root legend .title {
  margin-bottom: 0 !important;
  max-width: initial !important;
}

#eh-root .title::after {
  display: none !important;
}

#eh-root input[type="text"],
#eh-root select {
  height: auto !important;
}


.wpcf7-response-output {
  display: none !important;
}

