@charset "UTF-8";
/* 
基本設定
--------------------------------------------------*/
html {
  font: normal normal normal 62.5%/1 "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "Osaka", "MS PGothic",
    "ＭＳ Ｐゴシック", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background: #fff;
  /*position: relative;*/
  color: #333333;
  text-align: left;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased; /* Safari文字太さ調整 */
}

#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

/* 
画像設定
--------------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
}

/*#container{
width:100%;
}*/
/*
クリアフィックス
--------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

/*
リンク画像ロールオーバー半透明
--------------------------------
a:hover img{
	opacity:0.5;
	-moz-opacity:0.5;
	filter:alpha(opacity = 50);
}
*/
.detail {
  padding: 60px 10px 33px;
  box-sizing: border-box;
  word-break: break-word;
}
.detail__title {
  margin-bottom: 80px;
}
.detail__title-meta {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.detail__title-meta .date {
  flex-shrink: 0;
  margin-right: 20px;
  font-size: 16px;
  line-height: 1;
  color: var(--primary-color);
  font-family: var(--font-second);
}
.detail__title-meta .tag {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  width: 100%;
  padding-left: 21px;
  color: #988981;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: ls(50);
}
.detail__title-meta .tag:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1px;
  height: 17px;
  background-color: #e6e0d6;
}
.detail__title-tl,
.detail__title h1 {
  font-size: 33px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #ccc;
}
.detail__content {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.detail__content a {
  transition: opacity 0.3s ease;
}
.detail__content a:hover {
  opacity: 0.7;
}
.detail__content a:not([class]) {
  color: #551a8b;
  text-decoration: underline !important;
  text-underline-offset: 1px;
}
.detail__content strong {
  font-weight: bold !important;
  font-style: inherit;
}
.detail__content em {
  font-weight: inherit;
  font-style: italic !important;
}
.detail__content u {
  text-underline-offset: 1px !important;
}
.detail__content h2 {
  margin: 49px 0 34px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.detail__content h2:first-child {
  margin-top: 0;
}
.detail__content h2:last-child {
  margin-bottom: 0;
}
.detail__content h2 + * {
  margin-top: 32px;
}
.detail__content h2 + p,
.detail__content h2 + ul,
.detail__content h2 + ol {
  margin-top: -16px;
}
.detail__content h2 + .dst-block-image {
  margin: 39px 0 30px;
}
.detail__content h3 {
  margin: 32px 0 40px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding-left: 20px;
  position: relative;
}
.detail__content h3:before {
  content: "";
  width: 4px;
  border-radius: 10px;
  height: calc(100% - 3px);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #666666;
}
.detail__content h3:first-child {
  margin-top: 0;
}
.detail__content h3:last-child {
  margin-bottom: 0;
}
.detail__content h3 + p,
.detail__content h3 + ul,
.detail__content h3 + ol {
  margin-top: -16px;
}
.detail__content h4 {
  margin: 38px 0 22px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.detail__content h4:first-child {
  margin-top: 0;
}
.detail__content h4:last-child {
  margin-bottom: 0;
}
.detail__content h4 + p,
.detail__content h4 + ul,
.detail__content h4 + ol {
  margin-top: -10px;
}
.detail__content p {
  margin: 24px 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.detail__content p:first-child {
  margin-top: 0;
}
.detail__content p:last-child {
  margin-bottom: 0;
}
.detail__content ul {
  margin: 28px 0;
}
.detail__content ul:first-child {
  margin-top: 0;
}
.detail__content ul:last-child {
  margin-bottom: 0;
}
.detail__content ul li {
  position: relative;
  font-weight: 400;
  padding-left: 15px;
}
.detail__content ul li:before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b88a56;
  position: absolute;
  top: 7px;
  left: 0;
}
.detail__content ul li + li {
  margin-top: 9px;
}
.detail__content ol {
  list-style: number;
  padding-left: 18px;
  margin: 28px 0;
}
.detail__content ol:first-child {
  margin-top: 0;
}
.detail__content ol:last-child {
  margin-bottom: 0;
}
.detail__content ol > li {
  position: relative;
  font-weight: 400;
}
.detail__content ol > li::marker {
  color: #b88a56;
  font-weight: 500;
  font-size: 13px;
}
.detail__content ol > li + li {
  margin-top: 9px;
}
.detail__content blockquote {
  margin: 33px 0;
  padding: 35px 39px 32px;
  background-color: #f7f7f7;
  border-radius: 20px;
  border: 1px solid #cccccc;
}
.detail__content blockquote:first-child {
  margin-top: 0;
}
.detail__content blockquote:last-child {
  margin-bottom: 0;
}
.detail__content blockquote p,
.detail__content blockquote ul,
.detail__content blockquote ol {
  margin: 20px 0;
}
.detail__content blockquote .dst-block-buttons {
  margin: 30px 0;
}
.detail__content figure {
  margin: 0;
}
.detail__content .wp-block-columns.has-3-columns,
.detail__content .dst-block-columns.has-3-columns {
  gap: 30px;
}
.detail__content .wp-block-columns,
.detail__content .dst-block-columns {
  display: flex;
  gap: 64px;
  margin: 39px 0;
}
.detail__content .wp-block-columns:first-child,
.detail__content .dst-block-columns:first-child {
  margin-top: 0;
}
.detail__content .wp-block-columns:last-child,
.detail__content .dst-block-columns:last-child {
  margin-bottom: 0;
}
.detail__content .wp-block-columns .wp-block-column,
.detail__content .dst-block-columns .dst-block-column {
  flex: 1;
}
.detail__content .wp-block-columns .wp-block-column figure,
.detail__content .dst-block-columns .dst-block-column figure {
  margin: 39px 0 29px;
}
.detail__content .dst-block-image {
  margin: 67px 0;
}
.detail__content .dst-block-image:first-child {
  margin-top: 0;
}
.detail__content .dst-block-image:last-child {
  margin-bottom: 0;
}
.detail__content .dst-block-image.align-center {
  text-align: center;
}
.detail__content .dst-block-image.align-center img {
  margin: 0 auto;
}
.detail__content .dst-block-image.align-right {
  text-align: right;
}
.detail__content .dst-block-image.align-right img {
  margin-left: auto;
}
.detail__content .dst-block-image figcaption {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.4;
}
.detail__content .dst-block-image + h2 {
  margin-top: 0;
}
.detail__content .dst-block-file {
  margin: 48px 0 30px;
  line-height: 1.8;
}
.detail__content .dst-block-file:first-child {
  margin-top: 0;
}
.detail__content .dst-block-file:last-child {
  margin-bottom: 0;
}
.detail__content .dst-block-file a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 29px;
  color: #333;
  padding: 0 50px 22px 29px;
  text-decoration: none !important;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #e6e0d6;
}
.detail__content .dst-block-file a:before {
  position: absolute;
  top: calc(50% - 10px);
  left: 5px;
  content: "";
  width: 8px;
  height: 10px;
  background: url("../img/detail/ic_arr_file.svg") center/contain no-repeat;
  transform: translateY(-50%);
}
.detail__content .dst-block-file a:after {
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
  content: "";
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: translateY(-50%);
}
.detail__content .dst-block-file.is-pdf a:after {
  background-image: url("../img/detail/ic_pdf.svg");
}
.detail__content .dst-block-file.is-doc a:after {
  background-image: url("../img/detail/ic_doc.svg");
}
.detail__content .dst-block-file.is-xls a:after {
  background-image: url("../img/detail/ic_xls.svg");
}
.detail__content .dst-block-file.is-ppt a:after {
  background-image: url("../img/detail/ic_ppt.svg");
}
.detail__content .dst-block-file + .dst-block-file {
  margin-top: -12px;
}
.detail__content .dst-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 88px 0 78px;
}
.detail__content .dst-block-buttons:first-child {
  margin-top: 0;
}
.detail__content .dst-block-buttons:last-child {
  margin-bottom: 0;
}
.detail__content .dst-block-buttons > * {
  margin: 0 10px;
}
.detail__content .dst-block-buttons.is-flex-start {
  justify-content: flex-start;
}
.detail__content .dst-block-buttons.is-flex-end {
  justify-content: flex-end;
}
.detail__content .dst-block-buttons + h2 {
  margin-top: 78px;
}
.detail__content .dst-block-buttons .btn {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: #333;
  text-decoration: underline !important;
  text-underline-offset: 1px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-right: 58px;
}
.detail__content .dst-block-buttons .btn:after {
  content: "";
  width: 40px;
  height: 40px;
  background: url("../img/detail/ic_arr.svg") center/contain no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.detail__content .wp-block-flexible-table-block-table,
.detail__content .dst-block-table {
  margin: 40px 0;
  margin-top: 79px;
}
.detail__content
  .wp-block-flexible-table-block-table
  + .wp-block-flexible-table-block-table,
.detail__content .wp-block-flexible-table-block-table + .dst-block-table,
.detail__content .dst-block-table + .wp-block-flexible-table-block-table,
.detail__content .dst-block-table + .dst-block-table {
  margin-top: 40px;
}
.detail__content .wp-block-flexible-table-block-table:first-child,
.detail__content .dst-block-table:first-child {
  margin-top: 0;
}
.detail__content .wp-block-flexible-table-block-table:last-child,
.detail__content .dst-block-table:last-child {
  margin-bottom: 0;
}
.detail__content .wp-block-flexible-table-block-table table,
.detail__content .dst-block-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  overflow: hidden;
  border-style: hidden;
  border: 1px solid #cccccc;
}
.detail__content .wp-block-flexible-table-block-table table th,
.detail__content .wp-block-flexible-table-block-table table td,
.detail__content .dst-block-table table th,
.detail__content .dst-block-table table td {
  padding: 20px 24px 18px !important;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 400;
  border: 1px solid #ccc;
}
.detail__content .wp-block-flexible-table-block-table table td,
.detail__content .dst-block-table table td {
  background-color: #fff;
}
.detail__content .wp-block-flexible-table-block-table table td > *,
.detail__content .dst-block-table table td > * {
  margin: 0;
}
.detail__content .wp-block-flexible-table-block-table table tbody th,
.detail__content .dst-block-table table tbody th {
  background-color: #f8f8f8;
  font-weight: 500;
}
.detail__content .wp-block-flexible-table-block-table table thead th,
.detail__content .dst-block-table table thead th {
  background-color: #b88e62;
  color: #fff;
  font-weight: 500;
}
.detail__content .wp-block-flexible-table-block-table figcaption,
.detail__content .dst-block-table figcaption {
  font-size: 12px;
  margin-top: 10px;
  line-height: 1.4;
}
.detail__content .wp-block-flexible-table-block-table figcaption:first-child,
.detail__content .dst-block-table figcaption:first-child {
  margin-bottom: 10px;
  margin-top: 0;
}
.detail__content .dst-block-text-photo {
  margin: 46px 0;
  display: flex;
  align-items: center;
  gap: 64px;
}
.detail__content .dst-block-text-photo:first-child {
  margin-top: 0;
}
.detail__content .dst-block-text-photo:last-child {
  margin-bottom: 0;
}
.detail__content .dst-block-text-photo + .dst-block-text-photo {
  margin: 50px 0;
}
.detail__content .dst-block-text-photo .photo-box {
  width: 448px;
  flex-shrink: 0;
}
.detail__content .dst-block-text-photo .photo-box img {
  width: 100%;
}
.detail__content .dst-block-text-photo .content-box p {
  margin: 20px 0;
}
.detail__content .dst-block-text-photo .content-box p:first-child {
  margin-top: 0;
}
.detail__content .dst-block-text-photo .content-box p:last-child {
  margin-bottom: 0;
}
.detail__content .dst-block-text-photo.photo-is-right {
  flex-direction: row-reverse;
}
.detail__content .wp-block-dst-video {
  margin: 39px 0 35px;
  line-height: 0;
}
.detail__content .wp-block-dst-video:first-child {
  margin-top: 0;
}
.detail__content .wp-block-dst-video:last-child {
  margin-bottom: 0;
}
.detail__content .wp-block-dst-video video,
.detail__content .wp-block-dst-video iframe {
  width: 100% !important;
  height: 540px !important;
}
.detail .text-color {
  color: #551a8b;
}
.detail .has-text-align-right {
  text-align: right;
}
.detail .has-text-align-center {
  text-align: center;
}
.detail .has-tiny-font-size {
  font-size: 12px !important;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.detail .has-small-font-size {
  font-size: 13px !important;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.detail .has-medium-font-size {
  font-size: 16px !important;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
.detail .has-large-font-size {
  font-size: 18px !important;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.detail .has-x-large-font-size {
  font-size: 24px !important;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 640px) {
  .detail {
    padding: 41px 20px 0;
  }
  .detail__title {
    margin-bottom: 40px;
  }
  .detail__title-tl,
  .detail__title h1 {
    font-size: 24px;
    padding-bottom: 4px;
  }
  .detail__content {
    padding-bottom: 33px;
  }
  .detail__content h2 {
    margin: 31px 0 36px;
    font-size: 20px;
  }
  .detail__content h2 + * {
    margin-top: 32px;
  }
  .detail__content h2 + p,
  .detail__content h2 + ul,
  .detail__content h2 + ol {
    margin-top: -16px;
  }
  .detail__content h2 + .dst-block-image {
    margin: -21px 0 30px;
  }
  .detail__content h2 + .wp-block-dst-video {
    margin-top: -12px;
  }
  .detail__content h3 {
    margin: 30px 0 40px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
    padding-left: 20px;
    position: relative;
  }
  .detail__content h3:before {
    content: "";
    width: 4px;
    border-radius: 10px;
    height: calc(100% - 3px);
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #666666;
  }
  .detail__content h3:first-child {
    margin-top: 0;
  }
  .detail__content h3:last-child {
    margin-bottom: 0;
  }
  .detail__content h3 + p,
  .detail__content h3 + ul,
  .detail__content h3 + ol {
    margin-top: -16px;
  }
  .detail__content h4 {
    margin: 38px 0 22px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
  }
  .detail__content h4:first-child {
    margin-top: 0;
  }
  .detail__content h4:last-child {
    margin-bottom: 0;
  }
  .detail__content h4 + p,
  .detail__content h4 + ul,
  .detail__content h4 + ol {
    margin-top: -10px;
  }
  .detail__content p {
    margin: 25px 0;
    letter-spacing: 0.1em;
  }
  .detail__content p:first-child {
    margin-top: 0;
  }
  .detail__content p:last-child {
    margin-bottom: 0;
  }
  .detail__content ul {
    margin: 28px 0;
  }
  .detail__content ul:first-child {
    margin-top: 0;
  }
  .detail__content ul:last-child {
    margin-bottom: 0;
  }
  .detail__content ul li {
    position: relative;
    font-weight: 400;
    padding-left: 15px;
  }
  .detail__content ul li:before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b88a56;
    position: absolute;
    top: 7px;
    left: 0;
  }
  .detail__content ul li + li {
    margin-top: 9px;
  }
  .detail__content ol {
    list-style: number;
    padding-left: 18px;
    margin: 38px 0;
  }
  .detail__content ol:first-child {
    margin-top: 0;
  }
  .detail__content ol:last-child {
    margin-bottom: 0;
  }
  .detail__content ol > li {
    position: relative;
    counter-incnt: itepx;
    font-weight: 400;
  }
  .detail__content ol > li::marker {
    color: #b88a56;
    font-weight: 500;
  }
  .detail__content blockquote {
    padding: 26px 31px 23px;
  }
  .detail__content blockquote p,
  .detail__content blockquote ul,
  .detail__content blockquote ol {
    margin: 20px 0;
  }
  .detail__content blockquote + .dst-block-buttons {
    margin: 48px 0;
  }
  .detail__content figure {
    margin: 0;
  }
  .detail__content .wp-block-columns,
  .detail__content .dst-block-columns {
    flex-direction: column;
    gap: 22px;
    margin: 35px 0;
  }
  .detail__content .wp-block-columns .wp-block-column,
  .detail__content .wp-block-columns .dst-block-column {
    display: flex;
    flex-direction: column;
  }
  .detail__content .wp-block-columns .wp-block-column h2,
  .detail__content .wp-block-columns .dst-block-columns h2 {
    margin-top: 0;
    margin-bottom: -17px;
  }
  .detail__content .wp-block-columns .wp-block-column figure {
    order: -1;
    margin: 0 0 16px;
  }
  .detail__content .dst-block-image {
    margin: 27px 0;
  }
  .detail__content .dst-block-image + p {
    margin-top: -25px;
  }
  .detail__content .dst-block-file {
    margin: 35px 0 30px;
    line-height: 1.8;
  }
  .detail__content .dst-block-file a {
    padding: 0 50px 12px 21px;
  }
  .detail__content .dst-block-file a:before {
    top: 14px;
    left: 3px;
    width: 7px;
    height: 9px;
    background: url("../img/detail/ic_arr_file.svg") center/contain no-repeat;
  }
  .detail__content .dst-block-file a:after {
    top: calc(50% - 6px);
    right: 0;
    width: 23px;
    height: 23px;
  }
  .detail__content .dst-block-file + .dst-block-file {
    margin-top: -17px;
  }
  .detail__content .dst-block-buttons {
    margin: 48px 0;
  }
  .detail__content .dst-block-buttons + h2 {
    margin-top: -9px;
  }
  .detail__content .wp-block-flexible-table-block-table,
  .detail__content .dst-block-table {
    margin: 24px 0;
    margin-top: 40px;
    overflow: auto;
  }
  .detail__content .wp-block-flexible-table-block-table::-webkit-scrollbar,
  .detail__content .dst-block-table::-webkit-scrollbar {
    display: none;
  }
  .detail__content
    .wp-block-flexible-table-block-table
    + .wp-block-flexible-table-block-table,
  .detail__content .wp-block-flexible-table-block-table + .dst-block-table,
  .detail__content .dst-block-table + .wp-block-flexible-table-block-table,
  .detail__content .dst-block-table + .dst-block-table {
    margin-top: 24px;
  }
  .detail__content .wp-block-flexible-table-block-table table,
  .detail__content .dst-block-table table {
    width: -moz-max-content;
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    overflow: hidden;
    border-style: hidden;
    border: 1px solid #ccc;
  }
  .detail__content .wp-block-flexible-table-block-table table th,
  .detail__content .wp-block-flexible-table-block-table table td,
  .detail__content .dst-block-table table th,
  .detail__content .dst-block-table table td {
    padding: 12px 15px !important;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
    max-width: 60vw;
    border: 1px solid #cccccc;
  }
  .detail__content .wp-block-flexible-table-block-table table td,
  .detail__content .dst-block-table table td {
    background-color: #fff;
  }
  .detail__content .wp-block-flexible-table-block-table table td > *,
  .detail__content .dst-block-table table td > * {
    margin: 0;
  }
  .detail__content .wp-block-flexible-table-block-table table tbody th,
  .detail__content .dst-block-table table tbody th {
    background-color: #f8f8f8;
    font-weight: 500;
  }
  .detail__content .wp-block-flexible-table-block-table figcaption,
  .detail__content .dst-block-table figcaption {
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.4;
  }
  .detail__content .wp-block-flexible-table-block-table figcaption:first-child,
  .detail__content .dst-block-table figcaption:first-child {
    margin-bottom: 10px;
    margin-top: 0;
  }
  .detail__content .wp-block-flexible-table-block-table.is-scroll-on-mobile,
  .detail__content .dst-block-table.is-scroll-on-mobile {
    overflow-x: auto;
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px;
  }
  .detail__content .dst-block-text-photo {
    display: block;
    margin: 35px 0;
  }
  .detail__content .dst-block-text-photo .photo-box {
    width: 100%;
    margin-bottom: 13px;
  }
  .detail__content .dst-block-text-photo + .dst-block-text-photo {
    margin: 35px 0;
  }
  .detail__content .dst-block-text-photo + .dst-block-file {
    margin-top: -8px;
  }
  .detail__content .wp-block-dst-video {
    margin: 36px 0;
  }
  .detail__content .wp-block-dst-video video,
  .detail__content .wp-block-dst-video iframe {
    width: 100% !important;
    height: 197px !important;
  }
  .detail .has-tiny-font-size {
    line-height: 1.6;
  }
  .detail .has-small-font-size {
    line-height: 1.6;
  }
  .detail .has-medium-font-size {
    line-height: 1.6;
  }
  .detail .has-large-font-size {
    line-height: 1.6;
  }
  .detail .has-x-large-font-size {
    line-height: 1.6;
  }
}
