@charset "UTF-8";
/*==========================================
変数 inc.scss
===========================================*/
/*==========================================
変数 fonts.scss
===========================================*/
/*===================================
userSS 追加
=====================================*/
.sec-article {
  position: relative;
}
.sec-article.border {
  border-top: 1px solid #000;
}
.sec-article.border::before {
  content: none;
  width: 10em;
  display: inline-block;
  height: 1px;
  background: #000;
  position: absolute;
  top: 2em;
  left: 2em;
  transform: translate(-50%, 50%) rotate(-45deg);
}
.sec-article.border::after {
  content: "";
  width: 1px;
  display: inline-block;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  left: 0%;
  transform: translate(0%, 0);
}
@media screen and (max-width: 960px) {
  .sec-article.border::after {
    height: 90%;
  }
}
.sec-article.border h2 {
  position: relative;
}
.sec-article.border h2::after {
  content: "";
  width: 150%;
  left: -30%;
}
.sec-article .article-inner {
  overflow-x: hidden;
}

.editor-style {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
@media all and (-ms-high-contrast: none) {
  .editor-style {
    word-break: break-all;
  }
}
.editor-style p {
  line-height: 2;
}
.editor-style p:not(:last-child) {
  margin-bottom: 1em;
}
.editor-style mark {
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.editor-style mark::after {
  content: "";
  width: 100%;
  display: inline-block;
  background: #ff0;
  z-index: -1;
}
.editor-style a {
  color: #005096;
  text-decoration: underline;
}
.editor-style a img {
  transition: 0.3s;
}
.editor-style a:hover {
  text-decoration: underline !important;
}
.editor-style a:hover img {
  opacity: 0.5;
}
.editor-style img {
  height: auto;
}
.editor-style h3 {
  line-height: 1.4;
  font-size: clamp(2rem, 2.8vw, 3.2rem);
  font-weight: bold;
  padding: 0 0 1em;
  margin: 1em 0 2em;
  position: relative;
}
.editor-style h3::after {
  content: "";
  width: 110%;
  display: inline-block;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 0;
  left: -5%;
  transform: translate(0%, 0);
}
.editor-style h4 {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: bold;
  padding: 0 0 0 1em;
  margin: 1em 0 1.5em;
  line-height: 1.5;
  position: relative;
}
.editor-style h4::after {
  content: "";
  width: 9px;
  display: inline-block;
  height: 70%;
  background: #333;
  position: absolute;
  bottom: 50%;
  left: 0%;
  transform: translate(0%, 50%);
}
.editor-style h5 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 500;
  margin: 1em 0 1.5em;
}
.editor-style h6 {
  border-block: 3px solid #333;
  padding: 0.5em 0;
  margin: 2em 0 2em;
}
.editor-style strong {
  font-weight: bold;
}
.editor-style em {
  font-style: italic;
}
.editor-style ul {
  margin: 2em 0;
  border-left: 1px solid #000;
  padding: 1em 2em;
}
@media screen and (max-width: 767px) {
  .editor-style ul {
    padding: 1em;
  }
}
.editor-style ul li {
  position: relative;
  padding: 0 0 0 1.5em;
}
.editor-style ul li:not(:last-child) {
  margin-bottom: 0.7em;
}
.editor-style ul li::before {
  content: "\f192";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  top: 0;
  left: 0;
  position: absolute;
}
.editor-style ol {
  margin: 4em 0;
  border-left: 1px solid #000;
  padding: 1em 2em;
  counter-reset: number;
}
@media screen and (max-width: 767px) {
  .editor-style ol {
    padding: 1em;
  }
}
.editor-style ol li {
  padding: 0 0 0 2.5em;
  position: relative;
}
.editor-style ol li::before {
  position: absolute;
  font-family: "Libre Baskerville", serif;
  content: counter(number);
  counter-increment: number;
  left: 0;
  top: 0.35em;
  width: 1.5em;
  height: 1.5em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #202b51;
  color: white;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
}
.editor-style ol li:not(:last-child) {
  margin-bottom: 1em;
}
.editor-style .blocks-gallery-grid,
.editor-style .wp-block-gallery {
  margin: 0;
}
.editor-style li.blocks-gallery-item {
  padding-left: 0;
}
.editor-style li.blocks-gallery-item::before {
  display: none;
}
.editor-style .wp-block-table {
  margin-block: 4em;
}
.editor-style .wp-block-image {
  margin-block: 4em;
}
.editor-style .wp-block-buttons {
  margin-block: 4em;
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button:last-of-type {
    margin-top: 2em;
  }
}
.editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-50 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-50 {
    width: 100%;
  }
}
.editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-75 {
  width: calc(50% - var(--wp--style--block-gap, 0.5em) * 0.5);
}
@media screen and (max-width: 767px) {
  .editor-style .wp-block-buttons .wp-block-button.wp-block-button__width-75 {
    width: 100%;
  }
}
.editor-style .wp-block-columns {
  margin-block: 2em;
}
.editor-style .wp-block-table thead {
  border-bottom: 0px solid;
  background: #202b51;
  color: #fff;
  border: 1px solid #202b51;
}
.editor-style hr {
  border-top: 3px solid #000;
  width: 70%;
  margin: clamp(30px, 6vw, 60px) auto;
}
.editor-style table {
  width: 100%;
}
.editor-style table th, .editor-style table td {
  border: 1px solid #202b51;
  padding: 1em;
}
.editor-style table th {
  text-align: center;
}
.editor-style table th:not(:first-of-type) {
  border-left: 2px solid #fff;
}

/*==========================================
 動的一覧共通
===========================================*/
.cts-head {
  position: relative;
}
.cts-head:before {
  content: "";
  position: absolute;
  width: clamp(220px, 60vw, 900px);
  aspect-ratio: 1/1;
  background: url(../img/blog/line_ttl.png) no-repeat bottom left/contain;
  left: 0;
  bottom: -96%;
}
@media screen and (max-width: 960px) {
  .cts-head:before {
    bottom: -60%;
  }
}

.cts-ttl span {
  display: block;
}
.cts-ttl-en {
  font-size: clamp(3rem, 9vw, 14rem);
  line-height: 1;
}
.cts-ttl-ja {
  letter-spacing: 0.5em;
}

.cms-ctsNavR {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
@media screen and (max-width: 960px) {
  .cms-ctsNavR {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.cms-ctsNavR .article:before {
  content: "- (";
  padding-right: 2px;
  padding-left: 5px;
}
.cms-ctsNavR .article:after {
  content: ")";
  padding-left: 2px;
}

.blog-list {
  --gap: clamp(20px, 4vw, 65px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}
.blog-list .blog-item {
  width: calc((100% - var(--gap) * 2) / 3);
}
@media screen and (max-width: 960px) {
  .blog-list .blog-item {
    width: calc((100% - var(--gap)) / 2);
  }
}
.blog-list .blog-item .more-arrow {
  min-width: 10px;
  left: 0px;
  transition: 0.3s ease-in-out;
  position: relative;
  fill: #000;
  max-width: 2em;
  transition: all 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
@media screen and (max-width: 960px) {
  .blog-list .blog-item .more-arrow {
    display: none;
  }
}
.blog-list .blog-item .more-arrow .st0 {
  fill: none;
  stroke: #000;
  stroke-miterlimit: 10;
  transition: all 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.blog-list .blog-item a {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 1.6em 0 1.6em;
  margin: 0 0 0em;
}
@media screen and (max-width: 960px) {
  .blog-list .blog-item a {
    margin: 1.6em 0 0;
    padding-block: 0 1.6em;
  }
}
@media (hover: hover) {
  .blog-list .blog-item a:hover:hover {
    padding-inline: 2%;
    background-color: rgba(32, 43, 81, 0.1);
  }
  .blog-list .blog-item a:hover:hover .item-cate {
    border-color: #fff;
  }
  .blog-list .blog-item a:hover:hover .item-cate.web {
    background: #fff;
    color: #000;
  }
  .blog-list .blog-item a:hover:hover .item-writer {
    color: #202b51;
  }
}
.blog-list .blog-item .item-head {
  line-height: 1;
}
.blog-list .blog-item .item-date {
  display: flex;
  align-items: baseline;
  letter-spacing: 0.1em;
  padding: 0 1em;
}
@media screen and (max-width: 960px) {
  .blog-list .blog-item .item-date {
    padding: 1em 0.5em 0;
  }
}
.blog-list .blog-item .item-date .new:before {
  content: "●";
  color: #9c0000;
  padding-right: 5px;
}
.blog-list .blog-item .item-date .date {
  margin-left: auto;
}
.blog-list .blog-item .item-date .date .day {
  font-size: clamp(3rem, 9vw, 8rem);
  position: relative;
  top: 40px;
}
@media screen and (max-width: 960px) {
  .blog-list .blog-item .item-date .date .day {
    top: 20px;
    margin-left: auto;
  }
}
.blog-list .blog-item .item-body {
  width: 100%;
}
.blog-list .blog-item .item-body .item-img {
  width: 100%;
  margin-bottom: 1em;
}
.blog-list .blog-item .item-body .item-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .blog-list .blog-item .item-body {
    margin-top: 0.3em;
  }
}
.blog-list .blog-item .item-cate {
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 960px) {
  .blog-list .blog-item .item-cate {
    font-size: clamp(1.2rem, 2.0833333333vw, 1.6rem);
    min-width: clamp(6rem, 14.4097222222vw, 8.3rem);
    position: absolute;
    top: 0;
    right: 0;
  }
}
.blog-list .blog-item .item-cate.web {
  background: #202b51;
  color: #fff;
}
.blog-list .blog-item .item-ttl {
  transition: 0s;
  letter-spacing: 0.1em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: clamp(1.8rem, 0.9375vw, 1.8rem);
}
@media screen and (min-width: 768px) {
  .blog-list .blog-item .item-ttl {
    width: calc(100% - 2px);
  }
}
@media screen and (max-width: 767px) {
  .blog-list .blog-item .item-ttl {
    font-size: clamp(1.6rem, 2.7777777778vw, 1.6rem);
    -webkit-line-clamp: 2;
  }
}
.blog-list .blog-item .item-cate {
  padding: 0.5em 0;
}
.blog-list .blog-item .item-writer {
  margin-top: 10px;
  background-color: #f2f2f2;
  padding: 0.5em;
  letter-spacing: 0.1em;
  position: relative;
}
.blog-list .blog-item .item-writer .writer-img {
  position: absolute;
  right: 2%;
  bottom: 10%;
  width: 70px;
  border: 5px solid rgba(255, 255, 255, 0.5);
}

/*==========================================
 詳細
===========================================*/
.single-blog .cts-head:before {
  width: clamp(220px, 60vw, 1000px);
  bottom: -67%;
}
.single-blog .blogdetail-fv {
  display: flex;
}
@media screen and (max-width: 960px) {
  .single-blog .blogdetail-fv {
    flex-direction: column;
  }
}
.single-blog .blogdetail-fv .left .ttl {
  width: 60%;
  margin: 0 auto;
  padding-right: clamp(0.5em, 2vw, 3em);
  border-bottom: 1px solid #000;
  /* padding-bottom: 5em;*/
}
@media screen and (max-width: 960px) {
  .single-blog .blogdetail-fv .left .ttl {
    width: 100%;
    padding-bottom: 1em;
  }
}
.single-blog .blogdetail-fv .left .item-date {
  position: relative;
  letter-spacing: 0.1em;
  padding: 0;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .single-blog .blogdetail-fv .left .item-date {
    padding: 1em 0.5em 0;
  }
}
.single-blog .blogdetail-fv .left .item-date .new {
  position: absolute;
  top: 50%;
}
.single-blog .blogdetail-fv .left .item-date .new:before {
  content: "●";
  color: #9c0000;
  padding-right: 5px;
}
@media screen and (max-width: 960px) {
  .single-blog .blogdetail-fv .left .item-date .new {
    position: relative;
  }
}
.single-blog .blogdetail-fv .left .item-date .date {
  font-size: clamp(1.8rem, 5vw, 3rem);
}
.single-blog .blogdetail-fv .left .item-date .date .day {
  font-size: clamp(3rem, 9vw, 15rem);
  position: relative;
  top: 0;
}
@media screen and (max-width: 960px) {
  .single-blog .blogdetail-fv .left .item-date .date .day {
    top: 0;
  }
}
.single-blog .blogdetail-fv .left .item-ttl {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-top: 1em;
  letter-spacing: 0.1em;
}
.single-blog .blogdetail-fv .left .item-cate {
  font-size: 1.6rem;
  padding-top: 10px;
  margin-bottom: clamp(2em, 5vw, 5em);
}
.single-blog .blogdetail-fv .left .modified_date {
  margin-top: clamp(2em, 5vw, 5em);
  font-size: 1.4rem;
  text-align: right;
  padding-bottom: 1em;
}
.single-blog .blogdetail-fv .right {
  flex: 1 1 0;
  margin-left: 3em;
}
@media screen and (max-width: 960px) {
  .single-blog .blogdetail-fv .right {
    margin-left: 0;
    margin-top: 20px;
  }
}
.single-blog .blogdetail-fv .right .item-img {
  width: 80%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-width: 960px) {
  .single-blog .blogdetail-fv .right .item-img {
    width: 100%;
  }
}
.single-blog .blogdetail-fv .right .item-img img {
  width: 100%;
}
.single-blog .blogdetail {
  max-width: 1360px;
  margin: clamp(50px, 10vw, 100px) auto clamp(50px, 10vw, 100px);
}
.single-blog .writer_detail {
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
}
.single-blog .writer_detail .writer_detail_inner {
  position: relative;
  z-index: 0;
}
.single-blog .writer_detail .writer-ttl {
  text-align: center;
  letter-spacing: 0.2em;
  font-size: clamp(2rem, 5vw, 4rem);
}
.single-blog .writer_detail .name {
  text-align: center;
  font-size: clamp(2.4rem, 8vw, 10rem);
  letter-spacing: 0.1em;
}
.single-blog .writer_detail .writer_inner {
  background-color: #f2f2f2;
  display: flex;
  align-items: center;
  position: relative;
  top: -4em;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .single-blog .writer_detail .writer_inner {
    top: 0;
    flex-direction: column;
  }
}
.single-blog .writer_detail .writer_inner:before {
  content: "";
  position: absolute;
  width: clamp(220px, 60vw, 900px);
  aspect-ratio: 1/1;
  background: url(../img/blog/line_ttl.png) no-repeat center center/contain;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .single-blog .writer_detail .writer_inner:before {
    content: "";
    background: none;
  }
}
.single-blog .writer_detail .writer-img {
  aspect-ratio: 2/3;
  height: auto;
  flex-shrink: 0;
  width: 320px;
}
.single-blog .writer_detail .writer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.single-blog .writer_detail .writer-info {
  width: 60%;
  margin: clamp(30px, 5vw, 80px) auto 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .single-blog .writer_detail .writer-info {
    width: 90%;
  }
}
.single-blog .writer_detail .writer-info {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.1em;
}
.single-blog .writer_detail .writer-name {
  font-size: clamp(1.8rem, 5vw, 4rem);
  letter-spacing: 0.2em;
}
.single-blog .writer_detail .separator {
  margin: 0 0.5em;
  font-size: clamp(1.4rem, 3vw, 1.6rem);
}
.single-blog .writer_detail .affiliation {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
}
.single-blog .writer_detail .writer-comment {
  font-size: clamp(1.4rem, 3vw, 1.6rem);
}
@media screen and (max-width: 960px) {
  .single-blog .writer_detail .writer-comment {
    position: relative;
  }
  .single-blog .writer_detail .writer-comment::before {
    content: "";
    position: absolute;
    background: url(../img/blog/line_ttl.png) no-repeat center center/contain;
    top: -67%;
    width: 100%;
    height: 50px;
  }
}
.single-blog .writer_detail .btn-more-block {
  margin-top: clamp(20px, 4vw, 40px);
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 960px) {
  .single-blog .writer_detail .btn-more-block {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 960px) {
  .single-blog .writer_detail .btn-more-block .btn-more-wrap .left {
    justify-content: center;
  }
}
.single-blog .other_ttl {
  text-align: center;
  margin-bottom: clamp(20px, 4vw, 40px);
}
.single-blog .other_ttl .ttl_en {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.2em;
}
.single-blog .other_ttl h2 {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}

/*# sourceMappingURL=blog.css.map */
