@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;
}

.format-area {
  font-weight: 500;
}
.format-area .format-wrap {
  max-width: 100%;
  margin-inline: auto;
}
.format-area .format-img-box {
  max-width: 100%;
  margin-inline: auto;
  width: auto;
}
@media screen and (max-width: 576px) {
  .format-area .wrapW-P,
  .format-area .wrapW,
  .format-area .wrap-inner {
    width: 100%;
    padding: 0;
  }
  .format-area .wrapW-P p,
  .format-area .wrapW p,
  .format-area .wrap-inner p {
    padding: 0 5vw;
  }
}
.format-area .format-heading {
  text-align: left;
  font-size: clamp(2rem, 2.0833333333vw, 4rem);
}
@media screen and (max-width: 767px) {
  .format-area .format-heading {
    font-size: clamp(2rem, 5.2151238592vw, 4rem);
  }
}
.format-area .article-mainimg {
  margin: 60px auto;
  text-align: center;
}
@media screen and (max-width: 576px) {
  .format-area .article-mainimg {
    margin: 40px auto;
  }
}
.format-area .format-txt {
  font-size: 1.6rem;
  line-height: 30px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .format-area .format-txt {
    letter-spacing: 0em;
  }
}
.format-area .format-txt a {
  color: blue;
  text-decoration: underline !important;
}
.format-area .format-txt a img {
  transition: 0.3s;
}
.format-area .format-txt a:hover {
  text-decoration: underline !important;
  opacity: 0.5;
}
.format-area .format-txt a:hover img {
  opacity: 0.5;
}
.format-area .format-txt p:not(:last-child) {
  margin-bottom: 1em;
}
.format-area .format-txt strong {
  font-weight: bold;
}
.format-area .format-txt em {
  font-style: italic;
}
.format-area .format-txt img {
  height: auto;
}
.format-area .format-txt ul {
  margin: 1em 0;
}
.format-area .format-txt ul li {
  position: relative;
  padding: 0 0 0 1em;
}
.format-area .format-txt ul li:not(:last-child) {
  margin-bottom: 0.7em;
}
.format-area .format-txt ul li::before {
  top: 0.6em;
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
  position: absolute;
}
.format-area .format-txt ol {
  list-style-type: decimal;
  margin: 1em 0 1em 1em;
}
.format-area .format-txt ol li {
  padding: 0;
}
.format-area .format-txt ol li:not(:last-child) {
  margin-bottom: 0.7em;
}
.format-area .format-img {
  font-size: 0;
  text-align: center;
  position: relative;
}
.format-area .format-img img {
  object-fit: cover;
  width: 100%;
  height: auto;
  max-height: max-content;
}
.format-area .img-title {
  font-size: 2rem;
  text-align: left;
  padding-bottom: 10px;
  margin-block: 10px;
}
.format-area .img-caption {
  font-size: 1.6rem;
  line-height: 2;
  margin-top: 10px;
  text-align: justify;
}
.format-area .format-row {
  display: flex;
  justify-content: space-between;
}
.format-area .format01 {
  margin: 60px auto;
}
.format-area .format02 {
  margin: 60px auto;
}
.format-area .format03 {
  margin: 60px auto;
}
.format-area .format04 {
  margin: 60px auto;
}
.format-area .format05 {
  margin: 60px auto;
}
.format-area .format06 {
  margin: 60px auto;
}
.format-area .format07 {
  margin: 60px auto;
}
.format-area .format08 {
  margin: 60px auto;
}
.format-area .format09 {
  margin: 60px auto;
}
.format-area .format10 {
  margin: 60px auto;
}
.format-area .format20 {
  margin: 60px auto;
}
.format-area .format30 {
  margin: 60px auto;
}
.format-area .format40 {
  margin: 60px auto;
}
.format-area .format50 {
  margin: 60px auto;
}
.format-area .format60 {
  margin: 60px auto;
}
.format-area .format70 {
  margin: 60px auto;
}
.format-area .format80 {
  margin: 60px auto;
}
.format-area .format90 {
  margin: 60px auto;
}
.format-area .format01 .ttl-lrg {
  text-align: left;
  font-size: 2.4rem;
  position: relative;
}
.format-area .format01 .ttl-lrg.border_none::after {
  content: none;
}
.format-area .format01 .ttl-lrg::after {
  content: "";
  width: 100%;
  display: block;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: -20px;
}
.format-area .format01 .format-heading {
  text-align: left;
}
@media screen and (max-width: 960px) {
  .format-area .format01 .format-heading {
    font-size: clamp(2rem, 3.125vw, 3rem);
  }
}
.format-area .format02 {
  margin-bottom: 60px;
}
@media screen and (max-width: 960px) {
  .format-area .format02 {
    margin-bottom: 60px;
  }
}
.format-area .format02 .ttl-mid {
  text-align: left;
  font-size: 2.1rem;
  position: relative;
  margin-left: 30px;
}
.format-area .format02 .ttl-mid.before_none::before {
  content: none;
}
.format-area .format02 .ttl-mid:before {
  content: "";
  position: absolute;
  width: 14.5px;
  border-top: 1px solid #000;
  top: 50%;
  transform: translateY(-50%);
  left: -30px;
}
.format-area .format05 .format-img img {
  width: auto;
  max-height: max-content;
  object-fit: contain;
  aspect-ratio: auto;
}
.format-area .format06 .format-img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.format-area .format07 .format-img img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  max-height: 100%;
}
@media screen and (min-width: 577px) {
  .format-area .format09 .format-img {
    width: 48%;
  }
}
.format-area .format09 .format-img img {
  object-fit: cover;
  max-height: max-content;
}
@media screen and (min-width: 577px) {
  .format-area .format09 .format-txt {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .format-area .format09 .format-txt {
    margin-top: 40px;
  }
}
@media screen and (min-width: 577px) {
  .format-area .format10 .format-img {
    width: 48%;
  }
}
.format-area .format10 .format-img img {
  object-fit: cover;
  max-height: max-content;
}
@media screen and (min-width: 577px) {
  .format-area .format10 .format-txt {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .format-area .format10 .format-txt {
    margin-top: 40px;
  }
}
.format-area .format11 .format-movie {
  width: 100%;
}
.format-area .format11 .format-movie iframe {
  width: 100%;
  height: auto;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1.772972973;
}
@media screen and (max-width: 767px) {
  .format-area .format11 .format-movie iframe {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.6666666667;
  }
}
@media screen and (max-width: 576px) {
  .format-area .format11 .format-movie iframe {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1.1111111111;
  }
}
@media screen and (min-width: 768px) {
  .format-area .format12 {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  .format-area .format12 .format-movie {
    width: 30%;
  }
  .format-area .format12 .format-movie:nth-of-type(n+2) {
    margin-left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .format-area .format12 .format-movie {
    max-width: 420px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
  .format-area .format12 .format-movie:nth-of-type(n+2) {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .format-area .format-rowPC {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .format-area .format-rowPC .head,
  .format-area .format-rowPC .body {
    width: 48%;
  }
  .format-area .format04 .format-txt {
    width: 48%;
  }
  .format-area .format04 .format-txt-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 68.78%;
  }
  .format-area .format04 .format-txt-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format06 .format-img {
    width: 48%;
  }
  .format-area .format06 .format-img-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 68.78%;
  }
  .format-area .format06 .format-img-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format07 .format-img {
    width: 48%;
  }
  .format-area .format07 .format-img-wrap {
    position: relative;
    overflow: hidden;
    padding-top: 68.78%;
  }
  .format-area .format07 .format-img-wrap img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format08 .format-img {
    width: 31.3333333333%;
    margin: 0 1%;
    position: relative;
    overflow: hidden;
    padding-top: 22.2%;
  }
  .format-area .format08 .format-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format08 .format-img {
    padding-top: 0%;
  }
  .format-area .format08 .format-img img {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    margin: auto;
    height: auto;
    width: auto;
    max-width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format11 .format-img {
    width: 31.3333333333%;
    margin: 0 1%;
    position: relative;
    overflow: hidden;
    padding-top: 22.2%;
  }
  .format-area .format11 .format-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    max-width: inherit;
  }
  .format-area .format11 .format-img {
    padding-top: 0%;
    margin-bottom: 60px;
  }
  .format-area .format11 .format-img img {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    margin: auto;
    height: auto;
    width: auto;
    max-width: 100%;
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format10 .format-rowPC {
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 767px) {
  .format-area .format-rowPC .head {
    margin-bottom: 25px;
  }
  .format-area .format01 .ttl-lrg {
    font-size: 2.4rem;
  }
  .format-area .format02 .ttl-mid {
    font-size: 2rem;
  }
  .format-area .format04 .format-row {
    display: block;
    margin-bottom: 60px;
  }
  .format-area .format04 .format-txt {
    width: 100%;
  }
  .format-area .format04 .format-txt:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format06 .format-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .format-area .format06 .format-img {
    width: 100%;
  }
  .format-area .format06 .format-img:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format07 .format-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .format-area .format07 .format-img {
    width: 100%;
  }
  .format-area .format07 .format-img:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format08 .format-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 60px;
  }
  .format-area .format08 .format-img img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format08 .format-img:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format08 .format-img:nth-of-type(1) {
    width: 100%;
  }
  .format-area .format08 .format-img:nth-of-type(1) img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format08 .format-img:nth-of-type(2) {
    width: 100%;
  }
  .format-area .format08 .format-img:nth-of-type(2) img {
    aspect-ratio: 3/2;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format08 .format-img:nth-of-type(3) {
    width: 100%;
  }
  .format-area .format08 .format-img:nth-of-type(3) img {
    width: 100%;
  }
  .format-area .format11 .format-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .format-area .format11 .format-img img {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format11 .format-img:not(:first-child) {
    margin-top: 60px;
  }
  .format-area .format11 .format-img:nth-of-type(1) {
    width: 100%;
  }
  .format-area .format11 .format-img:nth-of-type(1) img {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format11 .format-img:nth-of-type(2) {
    width: 100%;
  }
  .format-area .format11 .format-img:nth-of-type(2) img {
    aspect-ratio: 2/3;
    object-fit: cover;
    object-position: center;
  }
  .format-area .format11 .format-img:nth-of-type(3) {
    width: 100%;
  }
  .format-area .format11 .format-img:nth-of-type(3) img {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .format-area .format01 {
    margin: 40px auto;
  }
  .format-area .format02 {
    margin: 40px auto;
  }
  .format-area .format03 {
    margin: 40px auto;
  }
  .format-area .format04 {
    margin: 40px auto;
  }
  .format-area .format05 {
    margin: 40px auto;
  }
  .format-area .format06 {
    margin: 40px auto;
  }
  .format-area .format07 {
    margin: 40px auto;
  }
  .format-area .format08 {
    margin: 40px auto;
  }
  .format-area .format09 {
    margin: 40px auto;
  }
  .format-area .format10 {
    margin: 40px auto;
  }
  .format-area .format20 {
    margin: 40px auto;
  }
  .format-area .format30 {
    margin: 40px auto;
  }
  .format-area .format40 {
    margin: 40px auto;
  }
  .format-area .format50 {
    margin: 40px auto;
  }
  .format-area .format60 {
    margin: 40px auto;
  }
  .format-area .format70 {
    margin: 40px auto;
  }
  .format-area .format80 {
    margin: 40px auto;
  }
  .format-area .format90 {
    margin: 40px auto;
  }
  .format-area .format01 .ttl-lrg {
    font-size: 2.2rem;
  }
  .format-area .format02 .ttl-mid {
    font-size: 1.8rem;
  }
  .format-area .format06 .format-row {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 60px;
  }
  .format-area .format06 .format-img {
    width: 100%;
  }
  .format-area .format06 .format-img:not(:first-child) {
    margin-top: 60px;
  }
}
/*==========================================
  一覧：archive-voice
===========================================*/
.archive-voice .breadcrumbs_area {
  margin-bottom: 0;
}
.archive-voice .breadcrumbs_area .wrapW {
  max-width: 1660px;
  padding-inline: 4%;
}
.archive-voice .sec-voice {
  padding-top: clamp(50px, 7vw, 110px);
}
.archive-voice .sec-voice .wrapW_pc {
  width: 100%;
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 4%;
}
.archive-voice .sec-voice .cts-wrap {
  position: relative;
}
.archive-voice .sec-voice .cts-head {
  position: relative;
  margin-bottom: clamp(34px, 5vw, 72px);
}
.archive-voice .sec-voice .cts-body {
  position: relative;
  z-index: 2;
}
.archive-voice .sec-voice .cts-ttl-en {
  margin: 0;
  font-size: clamp(2.8rem, 3.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000;
  text-transform: lowercase;
}
.archive-voice .sec-voice .cts-ttl-ja {
  margin-top: 0.8em;
  font-size: clamp(1.1rem, 0.85vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: #000;
}
.archive-voice .sec-voice .body-wrap {
  gap: clamp(40px, 5vw, 80px);
}
@media screen and (min-width: 961px) {
  .archive-voice .sec-voice .body-wrap {
    display: grid;
    grid-template-columns: 460px minmax(0, 1fr);
    align-items: start;
  }
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .body-wrap {
    gap: 48px;
    grid-template-columns: 280px minmax(0, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .body-wrap {
    display: block;
    gap: 0;
  }
}
.archive-voice .sec-voice .body-left {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .body-left {
    margin-bottom: 30px;
  }
}
.archive-voice .sec-voice .sticky {
  position: sticky;
  top: 130px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100%;
  height: auto;
  overflow: visible;
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .sticky {
    top: 110px;
  }
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .sticky {
    position: static;
    top: auto;
  }
}
.archive-voice .sec-voice .body-right {
  min-width: 0;
}
.archive-voice .sec-voice .voice-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.95em;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: clamp(1.1rem, 0.72vw, 1.3rem);
  letter-spacing: 0.12em;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-nav-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.archive-voice .sec-voice .voice-nav-item .item-link {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (hover: hover) {
  .archive-voice .sec-voice .voice-nav-item .item-link:hover:hover {
    color: #202b51;
  }
}
.archive-voice .sec-voice .voice-filter-block {
  width: 100%;
  color: #000;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-block {
    margin-bottom: 8px;
  }
}
.archive-voice .sec-voice .voice-filter-group-static {
  padding-bottom: 22px;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-group-static {
    padding-bottom: 12px;
  }
}
.archive-voice .sec-voice .voice-filter-group-static .voice-filter-body {
  display: block;
}
.archive-voice .sec-voice .voice-filter-group-static .voice-filter-list {
  padding-bottom: 0;
}
.archive-voice .sec-voice .voice-filter-head-static {
  display: flex;
  align-items: center;
  min-height: 54px;
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .voice-filter-head-static {
    min-height: 50px;
  }
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-head-static {
    min-height: 46px;
  }
}
.archive-voice .sec-voice .voice-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 34px;
  padding: 0;
  padding-bottom: 0.5em;
  margin-bottom: 1.5em;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.75);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .voice-filter-head {
    min-height: 50px;
  }
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-head {
    min-height: 46px;
  }
}
.archive-voice .sec-voice .voice-filter-title {
  margin: 0;
  font-size: clamp(1.4rem, 0.9vw, 1.7rem);
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-weight: 400;
  color: #000;
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .voice-filter-title {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-title {
    font-size: 1.3rem;
  }
}
.archive-voice .sec-voice .voice-filter-toggle {
  position: relative;
  display: block;
  width: 32px;
  aspect-ratio: 1/1;
  border: 1px solid rgba(0, 0, 0, 0.75);
  border-radius: 50%;
  flex: 0 0 auto;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .voice-filter-toggle {
    width: 28px;
  }
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-toggle {
    width: 24px;
  }
}
.archive-voice .sec-voice .voice-filter-toggle::before, .archive-voice .sec-voice .voice-filter-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #000;
  transform-origin: center;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-toggle::before, .archive-voice .sec-voice .voice-filter-toggle::after {
    width: 9px;
  }
}
.archive-voice .sec-voice .voice-filter-toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.archive-voice .sec-voice .voice-filter-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleX(1);
  opacity: 1;
}
.archive-voice .sec-voice .js-voice-filter-accordion.is-open .voice-filter-toggle::before {
  transform: translate(-50%, -50%) rotate(180deg);
}
.archive-voice .sec-voice .js-voice-filter-accordion.is-open .voice-filter-toggle::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(270deg) scaleX(0);
}
.archive-voice .sec-voice .js-voice-filter-accordion:not(.is-open) .voice-filter-toggle::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.archive-voice .sec-voice .js-voice-filter-accordion:not(.is-open) .voice-filter-toggle::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(1);
}
.archive-voice .sec-voice .voice-filter-body {
  padding-bottom: 26px;
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .voice-filter-body {
    padding-bottom: 22px;
  }
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-body {
    padding-bottom: 18px;
  }
}
.archive-voice .sec-voice .voice-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.archive-voice .sec-voice .voice-filter-list .voice-filter-item {
  margin-right: 10px;
  margin-bottom: 10px;
}
.archive-voice .sec-voice .voice-filter-list .voice-filter-item label {
  cursor: pointer;
}
.archive-voice .sec-voice .voice-filter-list .voice-filter-item input[type=checkbox] {
  display: none;
}
.archive-voice .sec-voice .voice-filter-list .voice-filter-item .txt {
  color: #000;
  transition: color 0.3s;
}
.archive-voice .sec-voice .voice-filter-list .voice-filter-item .txt::before {
  content: "・";
}
.archive-voice .sec-voice .voice-filter-list:has(input:checked) .txt {
  color: #999;
}
.archive-voice .sec-voice .voice-filter-list:has(input:checked) input:checked + .txt {
  color: #000;
}
.archive-voice .sec-voice .voice-filter-item {
  line-height: 1;
}
.archive-voice .sec-voice .voice-filter-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0;
  border: 0;
  background: transparent;
  color: #000;
  font-size: clamp(1.1rem, 0.72vw, 1.3rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .voice-filter-btn {
    font-size: 1.15rem;
  }
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-voice .voice-filter-btn {
    font-size: 1.1rem;
  }
}
.archive-voice .sec-voice .voice-filter-btn::before {
  content: "▪";
  display: inline-block;
  font-size: 0.75em;
  line-height: 1;
  color: currentColor;
}
.archive-voice .sec-voice .voice-filter-btn.is-active {
  color: rgba(0, 0, 0, 0.35);
}
@media (hover: hover) {
  .archive-voice .sec-voice .voice-filter-btn:hover:hover {
    opacity: 0.6;
  }
}
.archive-voice .sec-voice .voice-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 70px) clamp(22px, 2.6vw, 46px);
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .archive-voice .sec-voice .voice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 375px) {
  .archive-voice .sec-voice .voice-list {
    grid-template-columns: 1fr;
  }
}
.archive-voice .sec-voice .voice-item .item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .archive-voice .sec-voice .voice-item .item-link:hover:hover .item-img img {
    scale: 1.1;
  }
}
.archive-voice .sec-voice .voice-item .item-img {
  overflow: hidden;
  background: #f5f5f5;
}
.archive-voice .sec-voice .voice-item .item-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  transition: all 640ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.archive-voice .sec-voice .voice-item .item-body {
  padding-top: 13px;
}
.archive-voice .sec-voice .voice-item .item-ttl {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.1rem);
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
}
.archive-voice .sec-voice .voice-item .item-data-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 5px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
.archive-voice .sec-voice .voice-item .new-area {
  color: #202b51;
}
.archive-voice .sec-voice .voice-item .item-data {
  margin: 0;
}
.archive-voice .sec-voice .voice-item .item-cate-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
}
.archive-voice .sec-faq {
  background-color: #fff;
  color: #000;
}
.archive-voice .sec-faq .cts-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-faq .cts-wrap {
    flex-direction: column;
  }
}
.archive-voice .sec-faq .cts-ttl-en {
  margin: 0;
  font-size: clamp(2rem, 1.875vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-faq .cts-ttl-en {
    font-size: clamp(2rem, 3.75vw, 3.6rem);
  }
}
.archive-voice .sec-faq .cts-ttl-ja {
  margin-top: 0.8em;
  font-size: clamp(1.6rem, 0.9375vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: #000;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-faq .cts-ttl-ja {
    font-size: clamp(1.6rem, 1.875vw, 1.8rem);
  }
}
.archive-voice .sec-faq .faq-head {
  text-align: center;
  margin-bottom: clamp(80px, 9vw, 130px);
}
.archive-voice .sec-faq .faq-lead-ttl {
  margin: 0 0 clamp(28px, 3vw, 42px);
  font-size: clamp(2.2rem, 1.6666666667vw, 3.2rem);
  line-height: 1.8;
  letter-spacing: 0.12em;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-faq .faq-lead-ttl {
    font-size: clamp(2.2rem, 3.125vw, 3rem);
  }
}
@media screen and (max-width: 576px) {
  .archive-voice .sec-faq .faq-lead-ttl {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }
}
.archive-voice .sec-faq .faq-lead-text {
  margin: 0;
  font-size: clamp(1.2rem, 0.7291666667vw, 1.4rem);
  line-height: 2.2;
  letter-spacing: 0.08em;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-faq .faq-lead-text {
    font-size: clamp(1.2rem, 1.4583333333vw, 1.4rem);
  }
}
@media screen and (max-width: 576px) {
  .archive-voice .sec-faq .faq-lead-text {
    text-align: left;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .archive-voice .sec-faq .faq-lead-text br {
    display: none;
  }
}
.archive-voice .sec-faq .faq-body {
  max-width: 980px;
  margin: 0 auto;
}
.archive-voice .sec-faq .faq-ttl {
  margin: 0 0 clamp(48px, 6vw, 76px);
  text-align: center;
  font-size: clamp(2.2rem, 1.6666666667vw, 3.2rem);
  line-height: 1.8;
  letter-spacing: 0.12em;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-faq .faq-ttl {
    font-size: clamp(2.2rem, 3.125vw, 3rem);
  }
}
@media screen and (max-width: 576px) {
  .archive-voice .sec-faq .faq-ttl {
    font-size: 20px;
    line-height: 1.75;
    letter-spacing: 0.08em;
  }
}
.archive-voice .sec-faq .faq-list .faq-item {
  border-top: 1px solid rgba(0, 0, 0, 0.45);
  color: #000;
}
@media screen and (min-width: 961px) {
  .archive-voice .sec-faq .faq-list .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.45);
  }
}
.archive-voice .sec-faq .faq-list .faq-item:nth-of-type(n+2) {
  margin-top: -1px;
}
.archive-voice .sec-faq .faq-list .faq-item a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.archive-voice .sec-faq .faq-list .item-wrap {
  display: block;
}
.archive-voice .sec-faq .faq-list .item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2vw, 32px);
  padding: clamp(22px, 2.2vw, 34px) 0;
  transition: 0.3s ease-in-out;
}
.archive-voice .sec-faq .faq-list .item-icon {
  margin-top: 0;
  width: 32px;
  min-width: 32px;
  height: 32px;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  background: #202b51;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0;
}
.archive-voice .sec-faq .faq-list .item-ttlBlock {
  width: 100%;
  padding: 0;
}
.archive-voice .sec-faq .faq-list .item-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin: 0 0 8px;
  padding: 0;
  list-style: none;
  color: #828282;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.archive-voice .sec-faq .faq-list .item-ttl {
  margin: 0;
  font-size: clamp(1.3rem, 0.78125vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-faq .faq-list .item-ttl {
    font-size: clamp(1.3rem, 1.5625vw, 1.5rem);
  }
}
@media screen and (max-width: 576px) {
  .archive-voice .sec-faq .faq-list .item-ttl {
    font-size: 13px;
    line-height: 1.7;
    letter-spacing: 0.05em;
  }
}
.archive-voice .sec-faq .faq-list .item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-voice .sec-faq .faq-list .item-btn::before, .archive-voice .sec-faq .faq-list .item-btn::after {
  content: none;
}
.archive-voice .sec-faq .faq-list .item-btn .btn-more-block,
.archive-voice .sec-faq .faq-list .item-btn .btn-more-wrap {
  margin: 0;
}
.archive-voice .sec-faq .faq-list .item-btn .btn-more-flex {
  display: flex;
  align-items: center;
  justify-content: center;
}
.archive-voice .sec-faq .faq-list .item-btn .btn-more-txt {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
}
.archive-voice .sec-faq .faq-list .item-body {
  padding: 0 56px clamp(28px, 3vw, 42px) 64px;
  border-top: none;
}
.archive-voice .sec-faq .faq-list .item-body .editor-style {
  font-size: clamp(1.2rem, 0.7291666667vw, 1.4rem);
  line-height: 2.1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 960px) {
  .archive-voice .sec-faq .faq-list .item-body .editor-style {
    font-size: clamp(1.2rem, 1.4583333333vw, 1.4rem);
  }
}
@media screen and (max-width: 576px) {
  .archive-voice .sec-faq .faq-list .item-body .editor-style {
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}
.archive-voice .sec-faq .faq-list .item-body .editor-style p {
  margin: 0;
}
.archive-voice .sec-faq .faq-list .item-closeBtn {
  display: none;
}
@media screen and (max-width: 576px) {
  .archive-voice .sec-faq .faq-list .item-head {
    align-items: flex-start;
    gap: 14px;
    padding: 22px 0;
  }
  .archive-voice .sec-faq .faq-list .item-icon {
    width: 28px;
    min-width: 28px;
    height: 28px;
    font-size: 13px;
    margin-top: 4px;
  }
  .archive-voice .sec-faq .faq-list .item-btn {
    width: 28px;
    min-width: 28px;
    height: 28px;
    margin-top: 4px;
  }
  .archive-voice .sec-faq .faq-list .item-body {
    padding: 0 0 28px 42px;
  }
}

/*==========================================
  詳細：single-voice（差分だけ残す）
===========================================*/
.single .side-ttl .side-ttl-en {
  letter-spacing: 0.1em;
}

@media screen and (max-width: 960px) {
  .single-voice .sp_order1 {
    order: 1;
  }
}
@media screen and (max-width: 960px) {
  .single-voice .sp_order2 {
    order: 2;
  }
}
@media screen and (max-width: 960px) {
  .single-voice .sp_order3 {
    order: 3;
  }
}
@media screen and (max-width: 960px) {
  .single-voice .sp_order4 {
    order: 4;
  }
}
@media screen and (max-width: 960px) {
  .single-voice .sp_order5 {
    order: 5;
  }
}
.single-voice .sec-voice .wrapW_pc {
  width: 100%;
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 4%;
}
.single-voice .sec-voice .cts-wrap {
  position: relative;
}
.single-voice .sec-voice .cts-head {
  position: relative;
  margin-bottom: clamp(34px, 5vw, 72px);
}
.single-voice .sec-voice .cts-body {
  position: relative;
  z-index: 2;
}
.single-voice .sec-voice .cts-ttl-en {
  margin: 0;
  font-size: clamp(2.8rem, 3.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000;
  text-transform: lowercase;
}
.single-voice .sec-voice .cts-ttl-ja {
  margin-top: 0.8em;
  font-size: clamp(1.1rem, 0.85vw, 1.4rem);
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: #000;
}
.single-voice .sec-voice .body-wrap {
  gap: clamp(40px, 5vw, 80px);
}
@media screen and (min-width: 961px) {
  .single-voice .sec-voice .body-wrap {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
  }
}
@media screen and (max-width: 1200px) {
  .single-voice .sec-voice .body-wrap {
    gap: 48px;
    grid-template-columns: 280px minmax(0, 1fr);
  }
}
@media screen and (max-width: 960px) {
  .single-voice .sec-voice .body-wrap {
    display: block;
    gap: 0;
  }
}
.single-voice .sec-voice .body-left {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .single-voice .sec-voice .body-left {
    margin-bottom: 30px;
  }
}
.single-voice .sec-voice .body-right {
  min-width: 0;
}
.single-voice .sec-voice .voice-item .item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .single-voice .sec-voice .voice-item .item-link:hover:hover .item-img img {
    scale: 1.1;
  }
}
.single-voice .sec-voice .voice-item .item-img {
  overflow: hidden;
  background: #f5f5f5;
}
.single-voice .sec-voice .voice-item .item-img img {
  display: block;
  width: 100%;
  object-fit: contain;
  transition: all 640ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.single-voice .sec-voice .voice-item .item-body {
  padding-top: 13px;
}
.single-voice .sec-voice .voice-item .item-ttl {
  margin: 0;
  font-size: clamp(2rem, 1.875vw, 3.6rem);
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
}
@media screen and (max-width: 960px) {
  .single-voice .sec-voice .voice-item .item-ttl {
    font-size: clamp(2rem, 3.75vw, 3.6rem);
  }
}
.single-voice .sec-voice .voice-item .item-data-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-block: 2em;
  font-size: 0.7em;
  letter-spacing: 0.1em;
}
.single-voice .sec-voice .voice-item .new-area {
  color: #202b51;
}
.single-voice .sec-voice .voice-item .item-data {
  margin: 0;
}
.single-voice .sec-voice .voice-item .item-cate-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 3em;
}
.single-voice .sec-staff {
  padding-block: clamp(50px, 6vw, 90px);
}
.single-voice .sec-staff .wrap {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding-inline: 4%;
}
.single-voice .sec-staff .staff-block {
  border-top: 1px solid rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(0, 0, 0, 0.55);
  display: grid;
  grid-template-columns: 240px minmax(180px, 280px) 1fr;
  align-items: center;
  gap: clamp(28px, 4vw, 70px);
  padding-block: clamp(28px, 4vw, 54px);
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 960px) {
  .single-voice .sec-staff .staff-block {
    grid-template-columns: 150px 1fr;
    gap: 22px;
  }
}
@media screen and (max-width: 375px) {
  .single-voice .sec-staff .staff-block {
    display: block;
  }
}
.single-voice .sec-staff .staff-img {
  overflow: hidden;
  background: #f5f5f5;
}
@media screen and (max-width: 375px) {
  .single-voice .sec-staff .staff-img {
    width: 58%;
    margin-inline: auto;
    margin-bottom: 24px;
  }
}
.single-voice .sec-staff .staff-img picture {
  display: block;
}
.single-voice .sec-staff .staff-img img {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 640ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (max-width: 960px) {
  .single-voice .sec-staff .staff-profile {
    align-self: center;
  }
}
@media screen and (max-width: 375px) {
  .single-voice .sec-staff .staff-profile {
    text-align: center;
  }
}
.single-voice .sec-staff .staff-label {
  margin: 0 0 1.8em;
  font-size: clamp(1.2rem, 0.8vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: 0.14em;
  color: #000;
}
@media screen and (max-width: 960px) {
  .single-voice .sec-staff .staff-label {
    margin-bottom: 1.2em;
  }
}
.single-voice .sec-staff .staff-info {
  font-size: clamp(1.2rem, 0.8vw, 1.5rem);
  line-height: 1.9;
  letter-spacing: 0.12em;
  color: #000;
}
.single-voice .sec-staff .staff-info p {
  margin: 0;
}
.single-voice .sec-staff .staff-name {
  margin-top: 0.35em !important;
  font-size: clamp(1.6rem, 1vw, 2rem);
  letter-spacing: 0.18em;
}
.single-voice .sec-staff .staff-comment {
  position: relative;
  min-height: 190px;
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 960px) {
  .single-voice .sec-staff .staff-comment {
    grid-column: 1/-1;
    min-height: auto;
    padding-top: 24px;
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.25);
  }
}
.single-voice .sec-staff .staff-comment p {
  margin: 0;
  font-size: clamp(1.2rem, 0.8vw, 1.5rem);
  line-height: 2.2;
  letter-spacing: 0.12em;
  color: #000;
}
.single-voice .sec-staff .staff-more {
  display: inline-flex;
  align-items: center;
  gap: 0.85em;
  margin-top: clamp(28px, 4vw, 46px);
  margin-left: auto;
  font-size: clamp(1.2rem, 0.8vw, 1.5rem);
  line-height: 1;
  letter-spacing: 0.14em;
  color: #000;
}
@media screen and (max-width: 960px) {
  .single-voice .sec-staff .staff-more {
    justify-content: flex-end;
  }
}
.single-voice .sec-staff .staff-more::after {
  content: "";
  display: block;
  width: 34px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #000;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 375px) {
  .single-voice .sec-staff .staff-more::after {
    width: 28px;
  }
}
@media (hover: hover) {
  .single-voice .sec-staff:hover .staff-link:hover .staff-img img {
    scale: 1.1;
  }
  .single-voice .sec-staff:hover .staff-link:hover .staff-more::after {
    transform: translateX(4px);
  }
}

/*==========================================
  詳細下：sec-other（一覧と同じ構造なので共通化）
===========================================*/
.sec-other {
  padding-top: clamp(50px, 7vw, 110px);
}
.sec-other .wrapW_pc {
  width: 100%;
  max-width: 1660px;
  margin-inline: auto;
  padding-inline: 4%;
}
.sec-other .cts-wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 960px) {
  .sec-other .cts-wrap {
    flex-direction: column;
  }
}
.sec-other .cts-head {
  position: relative;
  margin-bottom: clamp(34px, 5vw, 72px);
  width: 50%;
}
.sec-other .cts-body {
  position: relative;
  z-index: 2;
  width: 100%;
}
.sec-other .cts-ttl-en {
  margin: 0;
  font-size: clamp(2.8rem, 3.2vw, 5.4rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: #000;
  text-transform: lowercase;
}
.sec-other .cts-ttl-ja {
  margin-top: 0.8em;
  font-size: clamp(2rem, 1.875vw, 3.6rem);
  line-height: 1.8;
  letter-spacing: 0.16em;
  color: #000;
  margin-inline: auto;
  margin-block: auto;
}
@media screen and (min-width: 961px) {
  .sec-other .cts-ttl-ja {
    -webkit-writing-mode: vertical-lr;
    -ms-writing-mode: tb-lr;
    writing-mode: vertical-lr;
  }
}
@media screen and (max-width: 960px) {
  .sec-other .cts-ttl-ja {
    font-size: clamp(2rem, 3.75vw, 3.6rem);
  }
}
.sec-other .other-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 70px) clamp(22px, 2.6vw, 46px);
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .sec-other .other-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 375px) {
  .sec-other .other-list {
    grid-template-columns: 1fr;
  }
}
.sec-other .other-item .item-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
@media (hover: hover) {
  .sec-other .other-item .item-link:hover:hover .item-img img {
    scale: 1.1;
  }
}
.sec-other .other-item .item-img {
  overflow: hidden;
  background: #f5f5f5;
}
.sec-other .other-item .item-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  transition: all 640ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sec-other .other-item .item-body {
  padding-top: 13px;
}
.sec-other .other-item .item-ttl {
  margin: 0;
  font-size: clamp(1.2rem, 0.82vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: #000;
}
.sec-other .other-item .item-data-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 5px;
  font-size: 0.7em;
  letter-spacing: 0.1em;
}
.sec-other .other-item .new-area {
  color: #202b51;
}
.sec-other .other-item .item-data {
  margin: 0;
}
.sec-other .other-item .item-cate-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5em;
}

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