@charset "utf-8";



/* 背景カラー */
.editor-styles-wrapper {}


.is-root-container {
  line-height: 2;
  letter-spacing: normal;
}



.is-root-container h2 {
  font-size: 26px;
  margin: 1em 0;
}

.is-root-container h3 {
  font-size: 20px;
  margin: 1em 0;
}

.is-root-container h4 {
  font-size: 18px;
  margin: 1em 0;
}



.is-root-container a {
  text-decoration: underline;
}

.is-root-container a[target="_blank"]:after {
  content: "";
  z-index: 1;
  position: relative;
  background: url(../img/common/ico_blank_b.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 19px;
  height: 13px;
  top: 2px;
  right: 0;
  margin: 0 4px 0 4px;
  display: inline-block;
}

.is-root-container a[href$=".pdf" i]::after {
  content: "";
  z-index: 1;
  position: relative;
  background: url(../img/common/ico_pdf_b.png) 0 0 no-repeat;
  background-size: 100% auto;
  width: 36px;
  height: 18px;
  top: 3px;
  right: 0;
  margin: 0 4px 0 4px;
  display: inline-block;
}

.is-root-container p {
  margin: 1em 0;
}

.is-root-container p:after {
  display: block;
  content: "";
  clear: both;
}

.is-root-container p .note,
.is-root-container p small {
  font-size: 11px;
}

.is-root-container ul,
.is-root-container ol {
  margin-bottom: 3.125em;
}

.is-root-container ul {
  padding-left: 0;
}

.is-root-container ul li {
  position: relative;
  margin-bottom: 0.4em;
  padding-left: 1em;
}

.is-root-container ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 1000px;
  top: 0.5em;
  left: 0;
}

.is-root-container ul li::marker {
  content: none;
}



.is-root-container ol li {
  list-style-type: decimal;
  margin-left: 1.2em;
}

.is-root-container ol li::marker {
  font-family: "Helvetica", "Arial", sans-serif;
}

.is-root-container .post-table {
  margin-top: 1em;
  margin-bottom: 3.125em;
}


.is-root-container .post-table table {
  width: auto;
  height: auto;
  border-spacing: 0px;
  border: 1px solid #e1e1e1;
  border-color: #e1e1e1;
  border-bottom: none;
  table-layout: fixed;
}

.is-root-container .post-table tr th {
  background: #e1e1e1;
  border-bottom: 1px solid #fff;
}

.is-root-container .post-table .bg {
  background: #e1e1e1;
  border-bottom: 1px solid #fff;
}

.is-root-container table th,
.is-root-container table td {
  vertical-align: middle;
  text-align: center;
  padding: 1.866em 0;
  font-size: 15px;
  border-spacing: 0px;
  border-bottom: 1px solid #e1e1e1;
  word-break: break-word;
}

.is-root-container .post-table table th {
  border-bottom: 1px solid #fff;
}

.is-root-container .post-table table th:not(:first-of-type) {
  border-left: 1px solid #ffffff;
}

.is-root-container .post-table table td:not(:first-of-type) {
  border-left: 1px solid #e1e1e1;
}


.is-root-container .aligncenter {
  text-align: center;
}

.is-root-container .alignleft {
  text-align: left;
}

.is-root-container .alignright {
  text-align: right;
}

.is-root-container .has-text-align-left {
  text-align: left;
}

.is-root-container .has-text-align-center {
  text-align: center;
}

.is-root-container .has-text-align-right {
  text-align: right;
}



.is-root-container *:first-child {
  margin-top: 0 !important;
}

.is-root-container *:last-child {
  margin-bottom: 0 !important;
}

.is-root-container h1+*,
.is-root-container h2+*,
.is-root-container h3+*,
.is-root-container h4+*,
.is-root-container h5+*,
.is-root-container h6+* {
  margin-top: 0 !important;
}

@media screen and (max-width: 768.8px) {

  .is-root-container h2 {
    font-size: 22px;
  }

  .is-root-container h3 {
    font-size: 18px;
  }

  .is-root-container h4 {
    font-size: 14px;
  }
}










.clm {
  margin-bottom: 3.125em;
}

.clm figcaption {
  font-size: 11px;
}

.clm.col-1 figure {
  width: 100%;
}

/* col- */
.clm.col-2,
.clm.col-3,
.clm.col-4,
.clm.col-5 {
  width: 100%;
  display: grid;
}

.clm.col-left {
  flex-direction: row-reverse;
}

.clm.col-box p:not(:last-of-type) {
  margin-bottom: 1.5em;
}


/* col-2 */
.clm.col-2 {
  gap: 48px;
  grid-template-columns: 1fr 1fr;
}

.clm.col-2.clm .col-box img {
  width: 100%;
  aspect-ratio: 650 / 400;
  overflow: hidden;
  object-fit: cover;
}

/* col-3 */
.clm.col-3 {
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}


.clm.col-3.clm .col-box img {
  width: 100%;
  aspect-ratio: 430 / 280;
  overflow: hidden;
  object-fit: cover;
}

/* col-4 */
.clm.col-4 {
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}


.clm.col-4 .col-box img {
  width: 100%;
  aspect-ratio: 320 / 210;
  overflow: hidden;
  object-fit: cover;
}

/* col-5 */
.clm.col-5 {
  gap: 13px;
  grid-template-columns: repeat(5, 1fr);
}

.clm.col-5 .col-box img {
  width: 100%;
  aspect-ratio: 260 / 170;
  overflow: hidden;
  object-fit: cover;
}


/* ====== c-border_block====== */
.border_block {
  padding: 41px 3.6%;
  border: 1px solid #000;
}

.border_block:not(:last-of-type) {
  margin-bottom: 30px;
}

.border_block .border_ttl {
  margin-bottom: 1.66em;
  font-size: 18px;
}

.border_block .border_box {
  line-height: 1.6;
}

.border_block .border_box a {
  text-decoration: underline;
}

@media screen and (max-width: 768.8px) {

  /* col- */

  /* col-2 */
  .clm.col-2 {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }


  .clm.col-2 .col-box.u-img {
    width: 100%;
    min-width: unset;
  }

  /* col-3 */
  .clm.col-3 {
    gap: 12px;
    grid-template-columns: repeat(1, 1fr);
  }


  /* col-4  */
  .clm.col-4 {
    gap: 13px;
    grid-template-columns: repeat(2, 1fr);
  }

  /* col-5 */
  .clm.col-5 {
    gap: 13px;
    grid-template-columns: repeat(2, 1fr);
  }


  .border_block .border_ttl {
    font-size: 14px;
  }
}