@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  height: auto;
  border: none;
  vertical-align: middle;
  max-width: 100%;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}

picture,
img,
a {
  display: inline-block;
}

main video,
main img,
main svg {
  width: 100%;
  height: 100%;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}
@media screen and (min-width: 840px) {
  html {
    scroll-padding-top: 104px;
  }
}

body {
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: #333;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.06em;
}
body.is-open {
  overflow: hidden;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1440px;
  height: inherit;
  padding: 0 15px;
  margin: 0 auto;
}
@media screen and (min-width: 840px) {
  .inner {
    width: 100%;
    padding: 0 50px;
  }
}

.main {
  overflow-x: hidden;
  min-height: 100vh;
  margin-top: 104px;
}
@media screen and (max-width: 840px) {
  .main {
    margin-top: 60px;
  }
}

.hidden--sp {
  display: none;
}
@media screen and (min-width: 840px) {
  .hidden--sp {
    display: block;
  }
}
@media screen and (min-width: 840px) {
  .hidden--pc {
    display: none;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}

.dib {
  display: inline-block;
}

/* fv */
.page-fv {
  position: relative;
  background: #e50035;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 50px;
}

.page-fv__inner {
  padding-right: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* 左の赤パネル（PC） */
.page-fv__panel {
  width: 32%;
  height: 330px;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "Noto Serif JP", serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 縦書き寄せ */
.page-fv__title {
  font-size: 30px;
  line-height: 1.4;
}

.page-fv__lead {
  font-size: 18px;
  line-height: 1.66;
  margin-top: 35px;
}

/* 右の画像（PC） */
.page-fv__media {
  margin-top: 40px;
  margin-bottom: -40px;
  margin-right: -40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  background: #f2f2f2;
}
.page-fv__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.page-fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 40% center;
     object-position: 40% center;
  display: block;
}

/* SP用の赤帯（PCでは非表示） */
.page-fv__overlay {
  display: none;
}

@media screen and (max-width: 1100px) {
  .page-fv {
    margin-bottom: 75px;
  }
  .page-fv__slides {
    height: 700px;
  }
}
/* ===== SP（オーバーレイ型に切り替え） ===== */
@media screen and (max-width: 839px) {
  .page-fv__inner {
    display: block;
    padding: 0;
  }
  .page-fv__panel {
    display: none;
  }
  .page-fv__media {
    height: 100%;
    margin: 0;
  }
  .page-fv__overlay {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 15px);
    translate: 0 -50%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 90%;
    padding: 16px 15px;
    background: #e50035;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    z-index: 2;
  }
  .page-fv__overlay-title {
    text-align: center;
    font-size: 30px;
    letter-spacing: 0;
    line-height: 1.45;
  }
  .page-fv__overlay-lead {
    text-align: center;
    margin: 0;
    font-size: 18px;
    line-height: 1.37;
    margin-top: 6px;
  }
}
@media screen and (max-width: 640px) {
  .page-fv__media {
    height: 181px;
  }
  .page-fv__overlay-title {
    font-size: 22px;
  }
  .page-fv__overlay-lead {
    font-size: 16px;
    text-align: left;
  }
}
.breadcrumb {
  padding: 15px 0px;
  font-size: 13px;
  line-height: 1.5;
}
.breadcrumb a span {
  text-decoration: underline;
}
.breadcrumb span {
  display: inline-block;
}
.page-content {
  padding-top: 35px;
  padding-bottom: 120px;
}
.page-content p {
  font-size: 18px;
  line-height: 2.1;
  margin: 0px 0px 50px 0px;
}
.page-content ul, .page-content ol {
  margin: 0px 0px 50px 0px;
  margin-left: 1.5rem;
}
.page-content li {
  font-size: 18px;
  line-height: 2.1;
}
.page-content a {
  font-size: 18px;
  line-height: 2.1;
  color: #1558d6;
}
.page-content h2 {
  color: #000;
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 1.75;
  padding: 9px 0px 9px 20px;
  border-left: 2px solid #B07D04;
  margin-bottom: 20px;
}
.page-content h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 2.1;
}
.page-content .wp-block-tableberg-wrapper,
.page-content .wp-block-table {
  margin-bottom: 20px;
  overflow-x: auto;
}
.page-content .tableberg-table-wrapper table,
.page-content table {
  min-width: 810px;
}
.page-content .tableberg-table-wrapper table thead,
.page-content table thead {
  border: none !important;
}
.page-content .tableberg-table-wrapper table th,
.page-content table th {
  background: #B07D04;
  border: 1px solid #fff !important;
  border-top: none !important;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.5;
  padding: 20px;
}
.page-content .tableberg-table-wrapper table td,
.page-content table td {
  border: none !important;
  border: 1px solid #cccccc !important;
  font-size: 18px;
  padding: 30px;
}
.page-content .tableberg-table-wrapper table li,
.page-content table li {
  list-style: disc;
  margin-left: 1rem;
}
.page-content .tableberg-table-wrapper table .has-inner-border,
.page-content table .has-inner-border {
  border: 1px solid #cccccc;
}

@media screen and (max-width: 840px) {
  .page-content {
    padding: 25px 0px 30px 0px;
  }
  .page-content h2 {
    font-size: 20px;
    line-height: 1.5;
    padding: 0px 0px 0px 17px;
  }
  .page-content h3 {
    font-size: 16px;
    line-height: 1.75;
  }
  .page-content p,
  .page-content li,
  .page-content a,
  .page-content th,
  .page-content td {
    font-size: 16px;
    line-height: 1.75;
  }
  .page-content .tableberg-table-wrapper table,
  .page-content table {
    min-width: 600px;
  }
  .page-content .tableberg-table-wrapper table th,
  .page-content table th {
    padding: 15px;
  }
  .page-content .tableberg-table-wrapper table td,
  .page-content table td {
    padding: 20px;
  }
}
/* (1) (2) ... のOL */
ol.ol-paren {
  counter-reset: sub;
  margin-left: 0;
  padding-left: 0;
  display: block; /* flexやめる */
}

ol.ol-paren > li {
  counter-increment: sub;
  list-style: none;
  position: relative;
  padding-left: 2rem; /* (1) 分の左余白 */
  line-height: 1.8;
  display: block; /* flexやめる */
  margin: 0 0 20px;
}

ol.ol-paren > li::before {
  content: "(" counter(sub, decimal) ")"; /* ←数字にする */
  position: absolute;
  left: 0;
  top: 0;
}

/* 入れ子の ol は下に自然に落とす */
ol.ol-paren > li > ol,
ol.ol-paren > li > ul {
  margin-top: 10px;
}

/* 1) 2) ... のOL */
ol.ol-paren-2 {
  counter-reset: sub;
  margin-left: 0;
  padding-left: 0;
  display: block; /* flexやめる */
}

ol.ol-paren-2 > li {
  counter-increment: sub;
  list-style: none;
  position: relative;
  padding-left: 1.5rem; /* (1) 分の左余白 */
  line-height: 1.8;
  display: block; /* flexやめる */
  margin: 0 0 20px;
}

ol.ol-paren-2 > li::before {
  content: counter(sub, decimal) ")"; /* ←数字にする */
  position: absolute;
  left: 0;
  top: 0;
}

/* 入れ子の ol は下に自然に落とす */
ol.ol-paren-2 > li > ol,
ol.ol-paren-2 > li > ul {
  margin-top: 10px;
}

/* ① ② ... のOL */
ol.ol-circle {
  counter-reset: c;
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

ol.ol-circle > li {
  counter-increment: c;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.8;
  margin: 0 0 10px;
}

ol.ol-circle > li::before {
  position: absolute;
  left: 0;
  top: 0;
}

ol.ol-circle li:nth-child(1)::before {
  content: "①";
}

ol.ol-circle li:nth-child(2)::before {
  content: "②";
}

ol.ol-circle li:nth-child(3)::before {
  content: "③";
}

/* counter(c) → 丸数字にしたい場合はCSSだけだと変換が弱いので、
   ①②③…を使うなら「手動でクラス別にcontent」か、JS変換が現実的です */
.followBanner {
  display: none;
}

/* fv */
.fv {
  position: relative;
  background: #e50035;
  margin: 0 calc(50% - 50vw);
}

.fv__inner {
  padding-right: 0;
}

.fv__slides {
  position: relative;
  height: 780px;
}

.fv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.9s ease;
  transition: opacity 0.9s ease;
  will-change: opacity;
}
.fv__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.fv__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* 左の赤パネル（PC） */
.fv__panel {
  width: 20%;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  color: #fff;
  padding: 87px 40px 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  font-family: "Noto Serif JP", serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* 縦書き寄せ */
.fv__title {
  margin: 0;
  font-size: 44px;
  letter-spacing: 12px;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
}

.fv__title--indent {
  display: inline-block;
  margin-top: 56px;
}

.fv__lead {
  font-size: 22px;
  letter-spacing: 3px;
  line-height: 2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 140px;
}

/* 右の画像（PC） */
.fv__media {
  margin-top: 50px;
  margin-bottom: -50px;
  margin-right: -40px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  background: #f2f2f2;
}
.fv__media picture {
  width: 100%;
  height: 100%;
  display: block;
}

.fv__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 40% center;
     object-position: 40% center;
  display: block;
}

/* SP用の赤帯（PCでは非表示） */
.fv__overlay {
  display: none;
}

@media screen and (max-width: 1100px) {
  .fv__slides {
    height: 700px;
  }
}
/* ===== SP（オーバーレイ型に切り替え） ===== */
@media screen and (max-width: 839px) {
  .fv__slides {
    height: calc(78.019vw + 20px);
  }
  .fv__inner {
    display: block;
    padding: 0;
  }
  .fv__panel {
    display: none;
  }
  .fv__media {
    height: 100%;
    margin: 0;
  }
  .fv__overlay {
    display: block;
    position: absolute;
    left: 0;
    bottom: -20px;
    width: 92%;
    padding: 14px 14px 12px;
    padding: 3.382vw 4.831vw 3.14vw 3.623vw;
    background: #e50035;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    z-index: 2;
  }
  .fv__overlay-title {
    font-size: min(5.314vw, 32px);
    letter-spacing: 0;
    line-height: 1.45;
  }
  .fv__overlay-lead {
    margin: 0;
    font-size: min(3.865vw, 22px);
    letter-spacing: 0;
    line-height: 1.38;
    margin-top: 6px;
  }
}
/* =====================================
  intro
===================================== */
.intro {
  padding: 150px 0 90px;
}

.intro__head {
  text-align: center;
}

.intro__title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.63;
}

.intro__title-break--sp {
  display: none;
}

.intro__text {
  margin-top: 25px;
  font-size: 18px;
  line-height: 2.1;
}

/* service */
.intro__service-grid {
  margin-top: 53px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.intro__service-card {
  overflow: hidden;
  height: 460px;
  position: relative;
  background: url(../../assets/img/intro__service1.webp) no-repeat center center/cover;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.intro__service-card::after {
  content: "";
  position: absolute;
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 54px;
  height: 54px;
  background: url(../../assets/img/intro__service-arrow.webp) no-repeat center center/contain;
}
@media (any-hover: hover) {
  .intro__service-card:hover {
    opacity: 0.6;
  }
}

.intro__service-card:nth-child(2) {
  background: url(../../assets/img/intro__service2.webp) no-repeat center center/cover;
}

.intro__service-card:nth-child(3) {
  background: url(../../assets/img/intro__service3.webp) no-repeat center center/cover;
}

.intro__service-card:nth-child(4) {
  background: url(../../assets/img/intro__service4.webp) no-repeat center center/cover;
}

.intro__service-link {
  height: 100%;
  display: block;
}

.intro__service-media {
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
}

.intro__service-body {
  padding: 42px 15px 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(255, 255, 255, 0.9);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
  height: 200px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 230px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}

.intro__service-body::before,
.intro__service-body::after {
  content: "";
  position: absolute;
  inset: -6px;
  pointer-events: none;
}

/* 左上・右上 */
.intro__service-body::before {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left top/30px 1px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left top/1px 30px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right top/30px 1px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right top/1px 30px no-repeat;
  background: linear-gradient(#fff, #fff) left top/30px 1px no-repeat, linear-gradient(#fff, #fff) left top/1px 30px no-repeat, linear-gradient(#fff, #fff) right top/30px 1px no-repeat, linear-gradient(#fff, #fff) right top/1px 30px no-repeat;
}

/* 左下・右下 */
.intro__service-body::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left bottom/30px 1px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) left bottom/1px 30px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right bottom/30px 1px no-repeat, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) right bottom/1px 30px no-repeat;
  background: linear-gradient(#fff, #fff) left bottom/30px 1px no-repeat, linear-gradient(#fff, #fff) left bottom/1px 30px no-repeat, linear-gradient(#fff, #fff) right bottom/30px 1px no-repeat, linear-gradient(#fff, #fff) right bottom/1px 30px no-repeat;
}

.intro__service-title {
  color: #000000;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0em;
}

.intro__service-line {
  background: #000000;
  height: 1px;
  margin: 22px 0px 20px 0px;
  width: 54px;
  max-width: 100%;
}

.intro__service-lead {
  text-align: center;
  color: #000000;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0em;
  line-height: 1.61;
}

/* more */
.intro__more {
  margin-top: 80px;
}

@media screen and (min-width: 1500px) {
  .intro__service-card {
    height: 600px;
  }
}
@media screen and (max-width: 1140px) {
  .intro__service-grid {
    margin-top: 53px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 615px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 840px) {
  .intro__title {
    font-size: 24px;
  }
  .intro__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 670px) {
  .intro {
    padding: 80px 0 60px;
  }
  .intro__title {
    font-size: 22px;
  }
  .intro__text {
    line-height: 1.75;
    text-align: left;
  }
  .intro__service-grid {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }
  .intro__service-card {
    height: auto;
    background: none !important;
    position: static;
    border-top: 1px solid #eee;
  }
  .intro__service-card::after {
    content: none;
  }
  .intro__service-card:last-child {
    border-bottom: 1px solid #eee;
  }
  .intro__service-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 22px;
    padding: 30px 0;
    height: auto;
    position: relative;
  }
  .intro__service-media {
    display: block;
    width: 92px;
    height: 64px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 92px;
            flex: 0 0 92px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
  }
  .intro__service-body {
    position: static;
    translate: none;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    display: block;
  }
  .intro__service-title {
    font-size: 18px;
    line-height: 1.6;
  }
  .intro__service-line {
    display: none;
  }
  .intro__service-lead {
    text-align: left;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.6;
  }
  /* 右端の矢印（CSSで作る） */
  .intro__service-link::after {
    content: "";
    width: 14px;
    height: 14px;
    border-top: 3px solid #cfcfcf;
    border-right: 3px solid #cfcfcf;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-left: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 3px;
  }
  .intro__service-card .intro__service-link::before {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    content: "";
  }
  .intro__service-card:nth-child(1) .intro__service-link::before {
    background-image: url(../../assets/img/intro__service1.webp);
  }
  .intro__service-card:nth-child(2) .intro__service-link::before {
    background-image: url(../../assets/img/intro__service2.webp);
  }
  .intro__service-card:nth-child(3) .intro__service-link::before {
    background-image: url(../../assets/img/intro__service3.webp);
  }
  .intro__service-card:nth-child(4) .intro__service-link::before {
    background-image: url(../../assets/img/intro__service4.webp);
  }
  .intro__more {
    margin-top: 60px;
  }
}
/* =====================================
  voice
===================================== */
.voice {
  padding: 80px 0px 80px 0px;
  background: url(../../assets/img/voice-bg.webp) no-repeat center center/cover;
}

.voice__head {
  margin-bottom: 50px;
}

.voice__eyebrow {
  margin: 0 0 8px 0;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.voice__title {
  margin: 0;
  font-size: 28px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

/* list */
.voice__list {
  max-width: 900px;
  margin-inline: auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 50px;
  margin-top: 75px;
}

.voice__link {
  display: block;
}

.voice__media {
  overflow: hidden;
  margin-bottom: 16px;
}
.voice__media img {
  display: block;
  width: 100%;
  height: auto;
}

.voice__item-title {
  margin: 0 0 11px 0;
  font-size: 18px;
  line-height: 1.5;
}

.voice__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.voice__name {
  font-size: 14px;
  line-height: 1;
}
.voice__name span {
  margin-left: 5px;
}

/* ===============================
  Responsive
=============================== */
@media screen and (max-width: 670px) {
  .voice__list {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .voice__media {
    aspect-ratio: 4/3;
  }
}
/* =====================================
  news
===================================== */
.top-news {
  padding: 80px 0 150px;
}

.top-news__head {
  text-align: center;
}

.top-news__list {
  list-style: none;
  margin-top: 45px;
}

.top-news__item {
  border-bottom: 1px solid #ddd;
}

.top-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px 50px;
  padding: 30px;
  color: inherit;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, opacity 0.3s;
  transition: background-color 0.3s, opacity 0.3s;
}
@media (any-hover: hover) {
  .top-news__link:hover .top-news__title {
    text-decoration: none;
  }
}

.top-news__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 20px 40px;
  min-width: 253px;
}

.top-news__date {
  font-size: 18px;
}

.top-news__cat {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 9px 21px;
  background: #f4f4f4;
  font-size: 18px;
  line-height: 1.2;
  white-space: nowrap;
}

.top-news__title {
  line-height: 1.7;
  text-decoration: underline;
  font-size: 18px;
  line-height: 1.6;
}

.top-news__more {
  margin-top: 75px;
}

/* SP */
@media screen and (max-width: 840px) {
  .top-news__meta {
    min-width: 215px;
  }
  .top-news__date {
    font-size: 16px;
  }
  .top-news__cat {
    font-size: 14px;
    padding: 8px 15px;
  }
  .top-news__title {
    font-size: 16px;
    gap: 7px 19px;
  }
}
@media screen and (max-width: 670px) {
  .top-news__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 25px 0;
    gap: 7px 19px;
  }
  .top-news__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7px 19px;
    min-width: auto;
  }
}
.service-top {
  padding: 35px 0px 50px 0px;
}

.service-top__text {
  font-size: 18px;
  line-height: 2.1;
  text-align: center;
}

@media (max-width: 670px) {
  .service-top {
    padding: 15px 0px 30px 0px;
  }
  .service-top__text {
    line-height: 1.75;
    text-align: left;
  }
}
.service-problem {
  padding: 80px 0px;
  background: url(../../assets/img/service-problem-bg.webp) no-repeat center center/cover;
}

.service-problem__content {
  margin-top: 70px;
  width: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.service-problem__before {
  background: rgba(240, 249, 255, 0.9200000167);
  gap: 15px;
  margin: 0px 0px 0px 0px;
  padding: 40px;
}

.service-problem__before-item {
  font-size: 18px;
  line-height: 1.62;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.service-problem__before-item::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../../assets/img/service-check.svg) no-repeat center center/contain;
  margin-top: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-problem__before-item + .service-problem__before-item {
  margin-top: 22px;
}

.service-problem__arrow {
  width: 35px;
}

.service-problem__after {
  background: #b07d04;
  padding: 40px;
}

.service-problem__after-title {
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.4px;
  text-align: center;
}

.service-problem__after-text {
  color: #FFFFFF;
  height: auto;
  line-height: 2;
  margin-top: 10px;
}

@media (max-width: 840px) {
  .service-problem__content {
    width: 575px;
  }
  .service-problem__before {
    gap: 11px;
  }
  .service-problem__before-item {
    font-size: 16px;
  }
  .service-problem__after-title {
    font-variant: 20px;
  }
}
@media (max-width: 670px) {
  .service-problem {
    padding: 60px 0px 50px 0px;
    background: url(../../assets/img/service-problem-bg-sp.webp) no-repeat center center/cover;
  }
  .service-problem__content {
    margin-top: 56px;
    width: 100%;
  }
  .service-problem__before {
    padding: 25px 32px 25px 15px;
  }
  .service-problem__before-item + .service-problem__before-item {
    margin-top: 19px;
  }
  .service-problem__arrow {
    width: 35px;
  }
  .service-problem__after {
    padding: 17px 20px;
  }
  .service-problem__after-text {
    line-height: 1.75;
  }
}
@media (max-width: 410px) {
  .service-problem__after-title .hidden--pc {
    display: none;
  }
}
.service-list {
  padding: 80px 0px;
}

.service-list__items {
  margin-top: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.service-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}

.service-list__img {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.service-list__title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1.4;
}

.service-list__text {
  font-size: 18px;
  line-height: 2;
  margin-top: 25px;
}

.btn.service-list__more {
  margin-top: 40px;
  text-align: left;
}

@media screen and (max-width: 1140px) {
  .service-list__item {
    gap: 40px;
  }
}
@media screen and (max-width: 840px) {
  .service-list__items {
    gap: 60px;
  }
  .service-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    gap: 20px;
    margin-inline: auto;
  }
  .service-list__img {
    width: 100%;
  }
  .service-list__title {
    font-size: 22px;
  }
  .service-list__text {
    font-size: 16px;
    margin-top: 12px;
  }
  .btn.service-list__more {
    margin-top: 40px;
    text-align: center;
    margin-top: 15px;
  }
}
@media screen and (max-width: 670px) {
  .service-list {
    padding: 60px 0px;
  }
  .service-list__items {
    margin-top: 56px;
  }
}
.service-strengths {
  padding: 80px 0px;
  background: url(../../assets/img/service-strengths-bg.webp) no-repeat center center/cover;
}

.service-strengths__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 50px;
  margin-top: 66px;
}

.service-strengths__item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 50px 30px 35px 30px;
  width: 380px;
}

.service-strengths__item-img {
  height: 104px;
  padding: 0px;
  width: 140px;
  margin-inline: auto;
}
.service-strengths__item-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.service-strengths__item-title {
  font-size: 20px;
  height: 60px;
  line-height: 1.4;
  margin: 0px 0px 6px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 19px;
}

.service-strengths__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 6px;
}

@media screen and (max-width: 1140px) {
  .service-strengths__items {
    gap: 30px;
  }
}
@media (max-width: 670px) {
  .service-strengths {
    padding: 60px 0px 15px 0px;
    background: url(../../assets/img/service-strengths-bg-sp.webp) no-repeat center center/cover;
  }
  .service-strengths__items {
    gap: 15px 30px;
    margin-top: 56px;
  }
  .service-strengths__item {
    padding: 34px 15px 24px 15px;
  }
  .service-strengths__item-title {
    margin-top: 20px;
    height: auto;
  }
  .service-strengths__item-text {
    font-size: 15px;
    margin-top: 16px;
  }
}
.service-flow {
  padding: 80px 0px;
  background: url(../../assets/img/voice-bg.webp) no-repeat center center/cover;
}

.service-flow__list {
  margin-top: 66px;
  padding: 0;
  list-style: none;
  display: grid;
  margin-inline: auto;
  gap: 28px;
  max-width: 800px;
}

/* 1枚のカード */
.service-flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr; /* 左：STEP帯 / 右：本文 */
  background: #fff;
}

/* 左のSTEP帯 */
.service-flow__step {
  background: #b07d04; /* ゴールド */
  color: #fff;
  display: grid;
  place-content: center;
  gap: 10px;
  text-align: center;
}

.last .service-flow__step {
  background: #e50035;
}

.service-flow__step-label {
  font-size: 14px;
  line-height: 1.4;
}

.service-flow__step-num {
  font-size: 28px;
  line-height: 1.4;
  margin-top: 4px;
}

/* 右本文 */
.service-flow__body {
  padding: 30px 35px 30px 30px;
  display: grid;
  gap: 12px;
  -ms-flex-line-pack: center;
      align-content: center;
}

.service-flow__item-title {
  color: #a57b00;
  font-size: 20px;
  line-height: 1.4;
}
.service-flow__item-title span {
  font-size: 16px;
}

.last .service-flow__item-title {
  color: #e50035;
}

.service-flow__item-text {
  font-size: 16px;
  font-weight: 400;
  height: auto;
  line-height: 1.75;
}

/* 下向き矢印（三角）※最後以外 */
.service-flow__arrow {
  position: absolute;
  left: 50%;
  bottom: -20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 13px solid #a57b00;
  z-index: 2;
}

/* ===== SP ===== */
@media (max-width: 768px) {
  .service-flow {
    padding: 60px 0px 15px 0px;
  }
  .service-flow__item {
    grid-template-columns: 1fr; /* 縦積み */
  }
  /* SPは上に帯（STEP 1） */
  .service-flow__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 3px;
    padding: 6px;
  }
  .service-flow__step-num {
    font-size: 24px;
  }
  .service-flow__body {
    padding: 20px 15px 18px 15px;
    gap: 7px;
  }
  .service-flow__item-title {
    font-size: 20px;
  }
  .service-flow__item-text {
    font-size: 15px;
  }
}
.s-service-top {
  padding: 35px 0px 35px 0px;
}

.s-service-top__text {
  font-size: 18px;
  line-height: 2.1;
  text-align: center;
}

@media (max-width: 670px) {
  .s-service-top__text {
    font-size: 16px;
  }
}
@media (max-width: 670px) {
  .s-service-top {
    padding: 15px 0px 30px 0px;
  }
  .s-service-top__text {
    line-height: 1.75;
    text-align: left;
  }
}
.s-service-intro {
  padding: 25px 0px 50px 0px;
}

.s-service-intro__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  margin-top: 66px;
}

.s-service-intro__img {
  width: 42%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.s-service-intro__list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-bottom: 30px;
}

.s-service-intro__body {
  width: 100%;
}

.s-service-intro__body-text {
  font-size: 18px;
  line-height: 1.75;
  padding-bottom: 15px;
}

.s-service-intro__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  font-size: 18px;
  line-height: 1.75;
}
.s-service-intro__list-item::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #B07D04;
  height: 1px;
  width: 20px;
}

.s-service-intro__list-2col .s-service-intro__list-item {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.s-service-intro__list-2col .s-service-intro__list-item span {
  font-size: 16px;
  font-weight: 400;
  height: auto;
  line-height: 1.75;
}
.s-service-intro__list-2col .s-service-intro__list-item::before {
  margin-top: 1rem;
}

.s-service-intro__caution {
  margin: 0px 0px 0px 33px;
  font-size: 16px;
  line-height: 1.7;
}

.s-service-intro__text {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 22px 28px;
  background: #fefaf2;
  font-size: 16px;
  line-height: 1.87;
}

@media screen and (max-width: 840px) {
  .s-service-intro__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .s-service-intro__img {
    display: none;
  }
  .s-service-intro__list-item {
    font-size: 16px;
  }
  .s-service-intro__list-2col .s-service-intro__list-item span {
    font-size: 14px;
  }
  .s-service-intro__list-2col .s-service-intro__list-item::before {
    margin-top: 0.8rem;
  }
  .s-service-intro__caution {
    font-size: 14px;
  }
  .s-service-intro__text {
    margin-top: 12px;
    padding: 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 670px) {
  .s-service-intro {
    padding: 0px 0px 30px 0px;
  }
  .s-service-intro__item {
    margin-top: 56px;
  }
  .s-service-intro__list {
    margin-top: 0;
    gap: 22px;
    margin-bottom: 15px;
  }
  .s-service-intro__caution {
    margin-left: 0;
  }
}
.s-service-merit {
  padding: 50px 0px 100px 0px;
}

.s-service-merit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  margin-top: 66px;
}

.s-service-merit__item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  max-width: 382px;
  width: calc(33% - 32.16px);
}

.s-service-merit__item-title {
  font-size: 20px;
  font-weight: 400;
  height: auto;
  line-height: 1.4;
  margin-top: 22px;
}

.s-service-merit__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 6px;
}

@media (max-width: 911px) {
  .s-service-merit__item {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 840px) {
  .s-service-merit__item-title {
    margin-top: 18px;
  }
  .s-service-merit__item-text {
    font-size: 15px;
  }
}
@media (max-width: 670px) {
  .s-service-merit {
    padding: 30px 0px 60px 0px;
    background: url(../../assets/img/s-service-merit-bg-sp.webp) no-repeat center center/cover;
  }
  .s-service-merit__list {
    gap: 30px 40px;
    margin-top: 56px;
  }
}
.s-service-strength {
  padding: 80px 0px;
  background: url(../../assets/img/service-strengths-bg.webp) no-repeat center center/cover;
}

.s-service-strength__items {
  margin-top: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.s-service-strength__item {
  padding: 38px 42px 38px 27px;
  background: #fff;
  width: calc((100% - 40px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.s-service-strength__item-img {
  width: 99px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.s-service-strength__item-title {
  font-size: 20px;
  line-height: 1.4;
}
.s-service-strength__item-title span {
  display: inline-block;
}

.s-service-strength__item-text {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.75;
}

@media screen and (max-width: 1140px) {
  .s-service-strength__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
  .s-service-strength__item {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (max-width: 840px) {
  .s-service-strength__items {
    gap: 30px;
  }
}
@media screen and (max-width: 670px) {
  .s-service-strength {
    padding: 60px 0px 15px 0px;
    background: url(../../assets/img/service-strengths-bg-sp.webp) no-repeat center center/cover;
  }
  .s-service-strength__items {
    gap: 15px;
  }
  .s-service-strength__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 32px 15px 21px 15px;
    gap: 15px;
  }
  .s-service-strength__item-title {
    line-height: 1.6;
    text-align: center;
  }
  .s-service-strength__item-text {
    font-size: 15px;
  }
}
.s-service-model {
  padding: 80px 0px;
  background: url(../../assets/img/voice-bg.webp) no-repeat center center/cover;
}

.s-service-model__head-text {
  text-align: center;
  margin-top: 66px;
  font-size: 18px;
  line-height: 2.1;
}

.s-service-model__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 35px;
}

.s-service-model__item {
  max-width: 1200px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 100px;
  background: #FFFFFF;
  padding: 42px 92px;
}

.s-service-model__name {
  font-size: 20px;
  line-height: 1.4;
}

.s-service-model__content {
  display: grid;
  grid-template-columns: 80px 300px auto;
  gap: 100px;
}

.s-service-model__label {
  color: #b07d04;
  font-size: 14px;
  line-height: 1.4;
}

.s-service-model__text {
  margin-top: 9px;
  font-size: 18px;
  line-height: 1.5;
}

.s-service-model__value {
  margin-top: 9px;
  font-size: 22px;
  line-height: 1;
}
.s-service-model__value span {
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 1200px) {
  .s-service-model__item {
    padding: 42px 15px;
    gap: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .s-service-model__content {
    gap: 60px;
    grid-template-columns: 80px 270px auto;
  }
}
@media (max-width: 900px) {
  .s-service-model__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px 80px;
  }
}
@media (max-width: 840px) {
  .s-service-model__head-text {
    font-size: 16px;
    margin-top: 56px;
  }
}
@media (max-width: 670px) {
  .s-service-model {
    padding: 60px 0px 15px 0px;
  }
  .s-service-model__head-text {
    text-align: left;
  }
  .s-service-model__list {
    margin-top: 20px;
  }
  .s-service-model__item {
    padding: 20px 15px 25px 15px;
    gap: 10px;
    max-width: 500px;
  }
  .s-service-model__content {
    grid-template-columns: 1fr;
    gap: 25px;
    width: 100%;
  }
}
.s-service-list {
  padding: 90px 0px 150px 0px;
}
.s-service-list .intro__service-grid {
  margin-top: 66px;
}

@media (max-width: 670px) {
  .s-service-list {
    padding: 60px 0px 0px 0px;
  }
  .s-service-list .intro__service-grid {
    margin-top: 26px;
  }
  .s-service-list .intro__service-card:first-of-type {
    border-top: none;
  }
}
@media screen and (max-width: 670px) {
  .service-list--others {
    padding: 10px 0px 0px 0px;
  }
}
.archive-voice .voice {
  background: #fff;
  padding: 45px 0px 150px 0px;
}
.archive-voice .voice-content__lead {
  text-align: center;
  font-size: 18px;
  line-height: 2;
}
.archive-voice .voice__list {
  margin-top: 50px;
}

@media screen and (max-width: 840px) {
  .archive-voice .voice {
    padding: 25px 0px 60px 0px;
  }
  .archive-voice .voice-content__lead {
    text-align: left;
    font-size: 16px;
    line-height: 1.75;
  }
  .archive-voice .voice__list {
    margin-top: 40px;
  }
}
.voice-content .voice-intro__page-title {
  font-size: 28px;
  line-height: 1.6;
}
.voice-content .voice-intro__meta {
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 15px;
  margin-top: 20px;
  margin-bottom: 0;
}
.voice-content .voice-intro__card {
  background: #fefaf2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  padding: 25px 50px 25px 39px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.voice-content .voice-intro__figure {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 90px;
}
.voice-content .voice-intro__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.voice-content .voice-intro__name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.voice-content .voice-intro__name {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
}
.voice-content .voice-intro__name span {
  font-size: 16px;
}
.voice-content .voice-intro__position {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}
.voice-content .voice-intro__career {
  margin-top: 10px;
}
.voice-content .voice-intro__career p {
  font-size: 14px;
  line-height: 1.7;
}
.voice-content .voice-intro__career p:last-child {
  margin-bottom: 0;
}
.voice-content {
  /* SP */
}
@media (max-width: 767px) {
  .voice-content .voice-intro__page-title {
    font-size: 20px;
  }
  .voice-content .voice-intro__card {
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 30px;
  }
  .voice-content .voice-intro__figure {
    display: none;
  }
  .voice-content .voice-intro__name-wrap {
    gap: 0px 16px;
  }
}

.voice-content {
  padding: 55px 0px 100px 0px;
}
.voice-content p {
  font-size: 18px;
  line-height: 2.1;
  margin: 0px 0px 50px 0px;
}
.voice-content ul, .voice-content ol {
  margin: 0px 0px 50px 0px;
  margin-left: 1.5rem;
}
.voice-content li {
  font-size: 18px;
  line-height: 2.1;
}
.voice-content a {
  font-size: 18px;
  line-height: 2.1;
  color: #1558d6;
}
.voice-content h2.wp-block-heading {
  color: #333;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0px 0px 30px 0px;
}
.voice-content h3 {
  color: #b07d04;
  font-size: 20px;
  line-height: 1.56;
  margin-bottom: 8px;
}
.voice-content .wp-block-tableberg-wrapper,
.voice-content .wp-block-table {
  margin-bottom: 20px;
  overflow-x: auto;
}
.voice-content .tableberg-table-wrapper table,
.voice-content table {
  min-width: 810px;
}
.voice-content .tableberg-table-wrapper table thead,
.voice-content table thead {
  border: none !important;
}
.voice-content .tableberg-table-wrapper table th,
.voice-content table th {
  background: #B07D04;
  border: 1px solid #fff !important;
  border-top: none !important;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1.5;
  padding: 20px;
}
.voice-content .tableberg-table-wrapper table td,
.voice-content table td {
  border: none !important;
  border: 1px solid #cccccc !important;
  font-size: 18px;
  padding: 30px;
}
.voice-content .tableberg-table-wrapper table li,
.voice-content table li {
  list-style: disc;
  margin-left: 1rem;
}
.voice-content .tableberg-table-wrapper table .has-inner-border,
.voice-content table .has-inner-border {
  border: 1px solid #cccccc;
}
.voice-content .wp-block-media-text {
  display: block !important;
  grid-template-columns: none !important;
}
.voice-content .wp-block-media-text__content {
  font-size: 16px;
  line-height: 1.9;
  padding: 0;
}
.voice-content .wp-block-media-text__media {
  float: right;
  max-width: 500px;
  margin-left: clamp(20px, 3.4722222222vw, 50px);
  margin-bottom: 20px;
}
.voice-content .single-voice__more {
  margin-top: 110px;
}

@media screen and (max-width: 840px) {
  .voice-content {
    padding: 15px 0px 100px 0px;
  }
  .voice-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .voice-content h2.wp-block-heading {
    font-size: 24px;
  }
  .voice-content h3 {
    font-size: 18px;
  }
  .voice-content p,
  .voice-content li,
  .voice-content a,
  .voice-content th,
  .voice-content td {
    font-size: 16px;
    line-height: 1.75;
  }
  .voice-content .tableberg-table-wrapper table,
  .voice-content table {
    min-width: 600px;
  }
  .voice-content .tableberg-table-wrapper table th,
  .voice-content table th {
    padding: 15px;
  }
  .voice-content .tableberg-table-wrapper table td,
  .voice-content table td {
    padding: 20px;
  }
  .voice-content .wp-block-media-text {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .voice-content .wp-block-media-text__media {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .voice-content .wp-block-media-text__content p {
    margin-bottom: 25px;
  }
  .voice-content .single-voice__more {
    margin-top: 70px;
  }
}
.postid-75 .voice-content h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.postid-75 .voice-content h3::before {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #b07d04;
}

@media screen and (max-width: 670px) {
  .voice-content h2.wp-block-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.company {
  padding: 65px 0px 150px 0px;
}
.company .intro__text {
  max-width: 855px;
  margin-inline: auto;
}
.company .intro__service-card:nth-child(1) {
  background: url(../../assets/img/company__service1.webp) no-repeat center center/cover;
}
.company .intro__service-card:nth-child(2) {
  background: url(../../assets/img/company__service2.webp) no-repeat center center/cover;
}
.company .intro__service-card:nth-child(3) {
  background: url(../../assets/img/company__service3.webp) no-repeat center center/cover;
}
.company .intro__service-card:nth-child(4) {
  background: url(../../assets/img/company__service4.webp) no-repeat center center/cover;
}

@media screen and (max-width: 670px) {
  .company {
    padding: 40px 0px 0px 0px;
  }
  .company .intro__service-card:nth-child(1) .intro__service-link::before {
    background-image: url(../../assets/img/company__service1.webp);
  }
  .company .intro__service-card:nth-child(2) .intro__service-link::before {
    background-image: url(../../assets/img/company__service2.webp);
  }
  .company .intro__service-card:nth-child(3) .intro__service-link::before {
    background-image: url(../../assets/img/company__service3.webp);
  }
  .company .intro__service-card:nth-child(4) .intro__service-link::before {
    background-image: url(../../assets/img/company__service4.webp);
  }
  .company .intro__service-card:first-of-type {
    border-top: none;
  }
}
.profile {
  padding: 85px 0px 40px 0px;
}

.profile__table {
  max-width: 1240px;
  margin-inline: auto;
  font-size: 18px;
  line-height: 1.56;
  border-collapse: collapse;
}
.profile__table tr {
  border-bottom: 1px solid #ddd;
}
.profile__table tr:first-child {
  border-top: 1px solid #ddd;
}
.profile__table th {
  padding: 60px 40px;
  width: 238px;
  vertical-align: middle;
}
.profile__table td {
  padding: 60px 0px 60px 40px;
}
.profile__table a {
  color: #1558d6;
  text-decoration: underline;
}

.profile__table-text {
  line-height: 1.75;
  margin: 5px 0px 0px 0px;
  font-size: 16px;
}

.profile__table-position-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}

.profile__table-position {
  display: inline-block;
  width: 200px;
}

.profile__table-map {
  margin-top: 20px;
}
.profile__table-map .iframe {
  width: 100%;
  height: 320px;
  border: none;
}

@media (max-width: 840px) {
  .profile__table {
    width: 100%;
  }
  .profile__table tr {
    display: block;
  }
  .profile__table th,
  .profile__table td {
    display: block;
    width: 100%;
  }
  .profile__table th {
    padding: 30px 16px 20px;
    text-align: left;
  }
  .profile__table td {
    padding: 0 16px 30px;
  }
  .profile__table-position-wrap {
    gap: 8px;
  }
}
.philosophy {
  padding: 85px 0px 110px 0px;
}

.philosophy__logo {
  width: 186px;
  margin-inline: auto;
}

.philosophy__text {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 2.5;
  margin-top: 47px;
}

.philosophy__items {
  margin-top: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.philosophy__item {
  width: 50%;
}

.philosophy__item-title {
  text-align: center;
  font-family: "Noto Serif JP", serif;
  color: #B07D04;
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}
.philosophy__item-title::before, .philosophy__item-title::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #B07D04;
  margin-top: 5px;
}

.philosophy__item-text {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  line-height: 2.25;
  text-align: center;
  margin-top: 40px;
}
.philosophy__item-text span {
  font-size: 20px;
}

@media screen and (max-width: 1140px) {
  .philosophy__text {
    font-size: 22px;
  }
  .philosophy__item-title {
    font-size: 22px;
  }
  .philosophy__item-text {
    font-size: 18px;
  }
  .philosophy__item-text span {
    font-size: 16px;
  }
}
@media screen and (max-width: 840px) {
  .philosophy {
    padding: 40px 0px 110px 0px;
  }
  .philosophy__text {
    font-size: 20px;
    line-height: 2;
  }
  .philosophy__text span {
    font-size: 16px;
    line-height: 1.87;
    margin-top: 20px;
  }
  .philosophy__items {
    margin-top: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 80px;
  }
  .philosophy__item {
    width: 100%;
  }
  .philosophy__item-title {
    font-size: 20px;
  }
  .philosophy__item-title::before, .philosophy__item-title::after {
    margin-top: 30px;
  }
  .philosophy__item-text {
    margin-top: 25px;
  }
}
@media screen and (max-width: 670px) {
  .philosophy {
    padding: 30px 0px 40px 0px;
  }
  .philosophy__logo {
    width: 148px;
  }
  .philosophy__text {
    margin-inline: auto;
    font-size: 18px;
    margin-top: 45px;
    max-width: 395px;
  }
  .philosophy__text span {
    max-width: 323px;
    display: block;
    margin-inline: auto;
  }
  .philosophy__item-text span {
    font-size: 14px;
  }
}
.message {
  padding: 100px 0px 40px 0px;
  font-family: "Kosugi Maru", sans-serif;
}

.message__title {
  font-size: 26px;
  line-height: 1.7;
  letter-spacing: -0.3px;
}

.message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

.message__text {
  margin-top: 58px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0;
}

.message__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 332px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.message__img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.message__img-text {
  margin-top: 10px;
}

.message__img-position {
  font-size: 16px;
  line-height: 2;
}

.message__img-name {
  font-size: 20px;
  line-height: 1.6;
}

@media screen and (max-width: 1140px) {
  .message__content {
    gap: 40px;
  }
}
@media screen and (max-width: 840px) {
  .message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
  }
  .message__text {
    font-size: 18px;
  }
  .message__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
  }
  .message__img img {
    width: 300px;
  }
}
@media screen and (max-width: 670px) {
  .message {
    padding: 15px 0px 40px 0px;
  }
  .message__title {
    font-size: 20px;
  }
  .message__text {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 30px;
    gap: 30px;
  }
  .message__img {
    gap: 23px;
  }
  .message__img img {
    width: 192px;
  }
  .message__img-text {
    width: 100%;
  }
  .message__img-text p {
    display: block;
    width: 100%;
  }
  .message__img-name {
    font-size: 16px;
  }
}
.history {
  padding: 55px 0px 60px 0px;
}

.history__items {
  list-style: none;
}

.history__item {
  padding-top: 25px;
  position: relative;
  padding-left: 60px;
}

.history__item::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 20px; /* 左の丸位置 */
  width: 6px;
  height: 100%;
  background: #EEEEEE;
  border-radius: 10px;
}

.history__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  color: #b07d04;
  font-size: 24px;
  line-height: 1.2;
  position: relative;
}
.history__year span {
  font-size: 16px;
}

.history__year::before {
  content: "";
  position: absolute;
  top: 6px;
  left: -46px;
  background: #FFFFFF;
  border-bottom: 3px solid #B07D04;
  border-left: 3px solid #B07D04;
  border-radius: 50%;
  border-right: 3px solid #B07D04;
  border-top: 3px solid #B07D04;
  -webkit-box-flex: 0;
      -ms-flex: none;
          flex: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px;
  width: 18px;
}

.history__events {
  margin-left: 15px;
  list-style: none;
}

.history__event {
  padding-top: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #dddddd;
}

.history__eventBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.history__month {
  font-size: 18px;
  letter-spacing: 0em;
  line-height: 1.55;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.history__text {
  font-size: 18px;
  letter-spacing: 0em;
  line-height: 1.55;
}

.history__text a {
  color: #1558d6;
  text-decoration: underline;
  display: inline;
}

.history__media {
  margin-left: 78px;
  margin-top: 25px;
  max-width: 540px;
  max-height: 420px;
}

.history__img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0;
}

.history__media--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 840px) {
  .history {
    padding: 40px 0px 40px 0px;
  }
  .history__events {
    margin: 0;
  }
  .history__item {
    padding-left: 40px;
  }
  .history__item::before {
    left: 10px;
  }
  .history__eventBody {
    gap: 25px;
  }
  .history__year {
    font-size: 20px;
  }
  .history__year span {
    font-size: 14px;
    line-height: 1.4;
  }
  .history__year::before {
    top: 3px;
    left: -36px;
  }
  .history__text {
    font-size: 15px;
  }
  .history__media {
    margin-top: 20px;
    margin-left: 60px;
  }
}
@media screen and (max-width: 670px) {
  .history {
    padding: 15px 0px 40px 0px;
  }
  .history__item::before,
  .history__year::before {
    display: none;
  }
  .history__event {
    padding: 30px 0;
  }
  .history__item {
    padding-left: 0;
  }
  .history__media {
    margin-left: 0;
  }
}
.siteMap {
  padding: 65px 0 150px;
}

.siteMap__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.siteMap__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 100px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.siteMap__heading {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  height: auto;
  line-height: 2.1;
  text-decoration: none;
  margin-bottom: 10px;
}
.siteMap__heading:hover {
  color: #e50035;
}

.siteMap__list {
  list-style: none;
  font-size: 18px;
  font-weight: 400;
  height: auto;
  line-height: 2.7;
}

.siteMap__link {
  text-decoration: none;
}
.siteMap__link:hover {
  color: #e50035;
}

.siteMap__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}

/* SP */
@media screen and (max-width: 670px) {
  .siteMap {
    padding: 25px 0 80px;
  }
  .siteMap__inner {
    gap: 50px;
  }
  .siteMap__grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.recruit-top {
  padding: 65px 0px 32px 0px;
}

.recruit-top__title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.63;
  text-align: center;
}

.recruit-top__text {
  text-align: center;
  margin-top: 25px;
  font-size: 18px;
  line-height: 2.1;
}

.recruit-top__text + .recruit-top__text {
  margin-top: 2rem;
}

.recruit-top__btn-wrap {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.recruit-top__logo {
  width: 250px;
  margin: 90px auto 0 auto;
}

.recruit-top__speakerdeck {
  max-width: 800px;
  margin: 40px auto 0 auto;
  margin-top: 100px;
}

.recruit-top__speakerdeck iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}

@media screen and (max-width: 840px) {
  .recruit-top__title {
    font-size: 24px;
  }
  .recruit-top__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 670px) {
  .recruit-top {
    padding: 15px 0px 0px 0px;
  }
  .recruit-top__title {
    font-size: 22px;
  }
  .recruit-top__text {
    margin-top: 20px;
    line-height: 1.75;
    text-align: left;
  }
  .recruit-top__logo {
    width: 180px;
    margin-top: 80px;
  }
}
.recruit-service {
  padding: 80px 0px;
}

.recruit-service__items {
  margin-top: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
}

.recruit-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}

.recruit-service__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.recruit-service__img {
  width: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.recruit-service__title {
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1.4;
}

.recruit-service__text {
  font-size: 18px;
  line-height: 2;
  margin-top: 25px;
}

.btn.recruit-service__more {
  margin-top: 40px;
  text-align: left;
}

@media screen and (min-width: 1500px) {
  .recruit-service__img {
    width: 40%;
  }
}
@media screen and (max-width: 1140px) {
  .recruit-service__item {
    gap: 40px;
  }
}
@media screen and (max-width: 840px) {
  .recruit-service__items {
    gap: 120px;
  }
  .recruit-service__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    gap: 20px;
    margin-inline: auto;
  }
  .recruit-service__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit-service__img {
    width: 100%;
  }
  .recruit-service__title {
    font-size: 22px;
  }
  .recruit-service__text {
    font-size: 16px;
    margin-top: 12px;
  }
  .btn.recruit-service__more {
    margin-top: 40px;
    text-align: center;
    margin-top: 15px;
  }
}
@media screen and (max-width: 670px) {
  .recruit-service {
    padding: 60px 0px;
  }
  .recruit-service__items {
    margin-top: 56px;
  }
}
.recruit-culture {
  padding: 80px 0px;
  background: url(../../assets/img/service-strengths-bg.webp) no-repeat center center/cover;
}

.recruit-culture__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 66px;
}

.recruit-culture__item {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  padding: 38px 42px 38px 27px;
  width: 380px;
}

.recruit-culture__item-img {
  padding: 0px;
  width: 200px;
  max-width: calc(100% - 24px);
  margin-inline: auto;
}
.recruit-culture__item-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.recruit-culture__item-title {
  font-size: 20px;
  line-height: 1.4;
  margin-top: 19px;
}

.recruit-culture__item-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 15px;
}

.recruit-culture__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  max-width: 1200px;
  gap: 35px;
  margin-top: 60px;
}
.recruit-culture__btn-wrap .recruit-culture__more-link {
  width: 340px;
  height: 66px;
  padding: 16px 56px 16px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  place-items: center;
  gap: 5px;
}
.recruit-culture__btn-wrap .recruit-culture__more-link span {
  font-size: 11px;
}

@media screen and (max-width: 1140px) {
  .recruit-culture__list {
    gap: 30px;
  }
}
@media (max-width: 840px) {
  .recruit-culture__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
  }
}
@media (max-width: 670px) {
  .recruit-culture {
    padding: 60px 0px 15px 0px;
    background: url(../../assets/img/service-strengths-bg-sp.webp) no-repeat center center/cover;
  }
  .recruit-culture__list {
    gap: 15px 30px;
    margin-top: 56px;
  }
  .recruit-culture__item {
    padding: 34px 15px 24px 15px;
  }
  .recruit-culture__item-title {
    margin-top: 20px;
    height: auto;
  }
  .recruit-culture__item-text {
    font-size: 15px;
    margin-top: 16px;
  }
}
.structure {
  padding: 40px 0px;
}

.structure__img-wrap {
  margin-top: 66px;
}

.structure__img {
  max-width: 972px;
  margin-inline: auto;
}

.structure__img-caution {
  display: none;
}

@media (max-width: 670px) {
  .structure__img-wrap {
    overflow: auto;
    margin-top: 56px;
  }
  .structure__img {
    width: 200%;
  }
  .structure__img-caution {
    display: block;
    text-align: center;
    font-size: 10px;
    margin-top: 5px;
  }
}
.story {
  margin-top: 60px;
}

.story__service-grid--member .swiper-wrapper {
  margin-top: 66px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

/* カード土台 */
.story__service-grid--member {
  position: relative;
}

.story__service-card {
  position: relative;
  overflow: hidden;
  width: 250px;
  height: 450px;
}
.story__service-card::after {
  content: "";
  position: absolute;
  right: 0px;
  bottom: 0;
  width: 54px;
  height: 54px;
  background: url(../../assets/img/intro__service-arrow.webp) no-repeat center center/contain;
  z-index: 5;
}

/* 背景サムネ（アイキャッチ） */
.story__service-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  -webkit-filter: none;
          filter: none;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 文字の白板 */
.story__service-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  padding: 18px 15px 15px 15px;
  width: 230px;
}

/* テキスト */
.story__service-title {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
}

.story__service-affiliation {
  margin-top: 6px;
  text-align: center;
}

.story__service-line {
  display: block;
  width: 54px;
  height: 1px;
  background: #000;
  margin: 22px auto;
}

.story__service-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1.61;
}

.story__service-x {
  display: inline-block;
  margin: 0 10px;
}

.story__service-link {
  display: block;
  height: 100%;
}

.story__slider-controls {
  display: none;
}

/* ===== SP：スライダー表示 ===== */
@media (max-width: 670px) {
  .story__service-grid {
    margin-top: 55px;
    width: 300px;
  }
  .story__service-grid--member .swiper-wrapper {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
  .story__service-card {
    height: 300px;
  }
  .story__service-body {
    width: 234px;
    padding: 18px 15px 5px 15px;
  }
  .story__service-title {
    font-size: 18px;
    line-height: 1.6;
  }
  .story__service-affiliation {
    font-size: 15px;
  }
  .story__service-line {
    margin: 10px auto;
  }
  .story__service-meta {
    font-size: 15px;
    line-height: 1.2;
  }
  .story__slider-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 18px;
    margin-top: 14px;
  }
  .story__slider-btn {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  .story__slider-btn span img {
    width: 16px;
    height: 16px;
    margin: auto;
  }
}
.recruit-message {
  padding: 100px 0px 40px 0px;
}

.recruit-message__title {
  font-size: 26px;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
  margin-top: 66px;
}

.recruit-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-top: 30px;
}

.recruit-message__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0;
}
.recruit-message__text p + p {
  margin-top: 2rem;
}

.recruit-message__text-read {
  font-size: 20px;
  line-height: 2;
}

.recruit-message__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 332px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.recruit-message__img img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.recruit-message__img-text {
  margin-top: 10px;
}

.recruit-message__img-position {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
}

.recruit-message__img-name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.btn.recruit__more {
  margin-top: 80px;
}

.btn__link.recruit__more-link {
  max-width: 80% !important;
  font-size: 36px !important;
  padding: 16px 56px 16px 56px;
}
.btn__link.recruit__more-link span {
  font-size: 18px;
}
.btn__link.recruit__more-link::before {
  top: 46%;
}

@media screen and (max-width: 1140px) {
  .recruit-message__content {
    gap: 40px;
  }
}
@media screen and (max-width: 840px) {
  .recruit-message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 0;
  }
  .recruit-message__text {
    font-size: 18px;
  }
  .recruit-message__text-read {
    font-size: 18px;
  }
  .recruit-message__img {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 25px;
  }
  .recruit-message__img img {
    width: 300px;
  }
}
@media screen and (max-width: 670px) {
  .recruit-message {
    padding: 15px 0px 40px 0px;
  }
  .recruit-message__title {
    margin-top: 56px;
    font-size: 20px;
  }
  .recruit-message__text {
    font-size: 16px;
    line-height: 1.75;
    margin-top: 30px;
  }
  .recruit-message__text-read {
    font-size: 16px;
  }
  .recruit-message__img {
    gap: 23px;
  }
  .recruit-message__img img {
    width: 192px;
  }
  .recruit-message__img-text {
    width: 100%;
  }
  .recruit-message__img-text p {
    display: block;
    width: 100%;
  }
  .recruit-message__img-name {
    font-size: 16px;
  }
  .btn__link.recruit__more-link {
    max-width: 340px !important;
    font-size: 18px !important;
    padding: 16px 56px 16px 15px;
  }
  .btn__link.recruit__more-link span {
    font-size: 11px;
  }
  .btn__link.recruit__more-link::before {
    top: 46%;
  }
}
.faq {
  padding: 60px 0;
}

.faq__content {
  margin-top: 66px;
}

.faq__categoryHead {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.faq__categoryIcon {
  width: 50px;
  text-align: center;
  margin-top: 4px;
}
.faq__categoryIcon img {
  width: 50%;
  margin-inline: auto;
}

.faq__categoryTitle {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  line-height: 1.4;
}

.faq__list {
  margin-left: 54px;
  margin-top: 30px;
}

.faq__item {
  margin-bottom: 50px;
}

.faq__q {
  font-size: 20px;
  font-weight: 700;
}

.faq__a {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.4;
  margin-left: 30px;
}

@media (max-width: 670px) {
  .faq__content {
    margin-top: 56px;
  }
  .faq__list {
    margin-left: 0;
  }
}
.gallery {
  margin-bottom: 60px;
}

.gallery__img-wrap {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
  width: 73%;
  margin-inline: auto;
}

.gallery__img img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 320/240;
}

@media (max-width: 840px) {
  .gallery__img-wrap {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    width: 64%;
  }
  .gallery__img img {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 483/200;
  }
}
@media (max-width: 768px) {
  .gallery__img-wrap {
    width: 100%;
  }
}
.s-story-content .s-story-intro__page-title {
  font-size: 28px;
  line-height: 1.6;
}
.s-story-content .s-story-content__inner {
  max-width: 1200px;
  margin-inline: auto;
}
.s-story-content .s-story-intro__card {
  background: #fefaf2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding: 25px 50px 25px 39px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.s-story-content .s-story-intro__figure {
  margin: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 150px;
}
.s-story-content .s-story-intro__img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.s-story-content .s-story-intro__name-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.s-story-content .s-story-intro__name {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
}
.s-story-content .s-story-intro__name span {
  font-size: 20px;
}
.s-story-content .s-story-intro__career-wrap {
  margin-top: 20px;
}
.s-story-content .s-story-intro__career {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  line-height: 1.7;
  white-space: nowrap;
}
.s-story-content .s-story-intro__career p {
  font-size: 15px;
  line-height: 1.7;
  white-space: wrap;
}
.s-story-content .s-story-intro__career p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1140px) {
  .s-story-content .s-story-intro__name {
    font-size: 22px;
  }
  .s-story-content .s-story-intro__name span {
    font-size: 16px;
  }
  .s-story-content .s-story-intro__career,
  .s-story-content .s-story-intro__career p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .s-story-content .s-story-intro__page-title {
    font-size: 20px;
  }
  .s-story-content .s-story-intro__name {
    font-size: 20px;
  }
  .s-story-content .s-story-intro__card {
    padding: 15px;
    margin-top: 15px;
    margin-bottom: 30px;
    gap: 10px;
  }
  .s-story-content .s-story-intro__figure {
    width: 37%;
  }
  .s-story-content .s-story-intro__name-wrap {
    gap: 0px 16px;
  }
}

.story-wrap {
  max-width: 1000px;
  margin-inline: auto;
}

.s-story-content {
  padding: 55px 0px 100px 0px;
}
.s-story-content p {
  font-size: 18px;
  line-height: 2.1;
  margin: 0px 0px 30px 0px;
}
.s-story-content ul, .s-story-content ol {
  margin: 0px 0px 50px 0px;
  margin-left: 1.5rem;
}
.s-story-content li {
  font-size: 18px;
  line-height: 2.1;
}
.s-story-content a {
  font-size: 18px;
  line-height: 2.1;
  color: #1558d6;
}
.s-story-content h3 {
  font-size: 28px;
  line-height: 1.6;
  margin: 0px 0px 30px 0px;
  margin-top: 80px;
}
.s-story-content h4 {
  color: #b07d04;
  font-family: var(--s-font-21a59615);
  font-size: 18px;
  font-weight: 400;
  height: auto;
  line-height: 2.1;
  margin-bottom: 20px;
}
.s-story-content figure {
  width: 70%;
  margin: 40px auto 30px auto;
}
.s-story-content .wp-block-media-text {
  display: block !important;
  grid-template-columns: none !important;
}
.s-story-content .wp-block-media-text__content {
  font-size: 16px;
  line-height: 1.9;
  padding: 0;
}
.s-story-content .wp-block-media-text__media {
  float: right;
  max-width: 500px;
  margin-left: clamp(20px, 3.4722222222vw, 50px);
  margin-bottom: 20px;
}
.s-story-content .s-story__more.btn {
  margin-top: 60px;
}

@media screen and (max-width: 840px) {
  .s-story-content {
    padding: 15px 0px 100px 0px;
  }
  .s-story-content h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .s-story-content h3 {
    font-size: 24px;
  }
  .s-story-content h4 {
    font-size: 16px;
    line-height: 1.75;
  }
  .s-story-content p,
  .s-story-content li,
  .s-story-content a,
  .s-story-content th,
  .s-story-content td {
    font-size: 16px;
    line-height: 1.75;
  }
  .s-story-content .single-s-story__more {
    margin-top: 70px;
  }
}
@media screen and (max-width: 670px) {
  .s-story-content h3 {
    font-size: 20px;
    margin: 40px 0px 20px 0px;
  }
}
.news-archive {
  padding: 65px 0px 150px 0px;
}

.news-archive__lead {
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 2.1;
}

.news-archive__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin: 0 0 10px;
}

.news-archive__tab {
  border: 0;
  background: #bdbdbd;
  color: #fff;
  height: 40px;
  width: 100px;
  font-size: 18px;
  line-height: 1.4;
  cursor: pointer;
}

.news-archive__tab.is-active {
  background: #d8002a;
}

.news-yearToggle {
  display: none;
  margin: 0 0 28px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  right: 0;
}

.news-yearToggle__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px 8px;
  border-bottom: 1px solid #000;
}

.news-yearToggle__label {
  font-size: 18px;
}

.news-yearToggle__icon {
  font-size: 10px;
  color: #777;
}

.news-yearToggle__content {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 124px;
  background: #fff;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
  display: none;
}

.news-yearToggle__inner {
  padding: 18px 18px;
}

.news-yearToggle__all,
.news-yearToggle__link {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.6;
}

.news-yearToggle__list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.news-yearToggle__item + .news-yearToggle__item {
  margin-top: 10px;
}

/* open時 */
.news-yearToggle.is-open .news-yearToggle__content {
  display: block;
}

.news-yearToggle.is-open .news-yearToggle__icon {
  -webkit-transform: translateY(1px) rotate(180deg);
          transform: translateY(1px) rotate(180deg);
}

.news-archive__selectLabel {
  font-size: 14px;
}

.news-archive__select {
  padding: 12px 14px;
}

.news-archive__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 50px;
  padding: 30px;
  border-bottom: 1px solid #ddd;
}

.news-archive__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 20px;
  flex-shrink: 0;
}

.news-archive__date {
  width: 120px;
  font-size: 18px;
  line-height: 1.4;
}

.news-archive__cat-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.news-archive__cat {
  background: #f4f4f4;
  font-size: 18px;
  line-height: 1.2;
  padding: 10px;
  text-align: center;
  width: 150px;
}

.news-archive__title {
  font-size: 18px;
  line-height: 1.6;
}
.news-archive__title a {
  text-decoration: underline;
}
@media (any-hover: hover) {
  .news-archive__title a:hover {
    text-decoration: none;
  }
}

.news-archive__link {
  text-decoration: underline;
}

@media (max-width: 840px) {
  .news-archive {
    padding: 25px 0px 150px 0px;
  }
  .news-archive__lead {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .news-archive__tabs {
    display: none;
  }
  .news-yearToggle {
    display: block;
    margin-bottom: 0;
  }
  .news-archive__item {
    gap: 20px;
  }
  .news-archive__meta {
    gap: 10px;
  }
  .news-archive__date {
    font-size: 16px;
    width: 100px;
  }
  .news-archive__cat {
    width: 120px;
    font-size: 14px;
  }
  .news-archive__title {
    font-size: 16px;
  }
}
@media screen and (max-width: 670px) {
  .news-archive__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7px;
    padding: 25px 0px;
  }
}
.newsSingle {
  padding: 65px 0px 160px 0px;
}

.newsSingle__title {
  color: #000000;
  font-size: 24px;
  letter-spacing: 0em;
  line-height: 1.75;
  padding: 9px 0px 9px 20px;
  border-left: 1px solid #B07D04;
}

.newsSingle__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
  margin-top: 30px;
}

.newsSingle__date {
  font-size: 18px;
  line-height: 1.4;
}

.newsSingle__cats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

.newsSingle__cat {
  background: #EEEEEE;
  padding: 6px 20px;
  font-size: 18px;
  line-height: 1.4;
}

.newsSingle__content {
  margin-top: 30px;
  font-size: 18px;
  line-height: 2;
}
.newsSingle__content p {
  margin-block: 10px;
}
.newsSingle__content a {
  color: #1558d6;
  text-decoration: underline;
}

@media screen and (max-width: 840px) {
  .newsSingle__title {
    font-size: 20px;
    line-height: 1.5;
    padding: 0px 0px 0px 17px;
  }
  .newsSingle__date {
    font-size: 16px;
  }
  .newsSingle__cat {
    font-size: 16px;
    padding: 7px 23px;
  }
  .newsSingle__content {
    font-size: 16px;
    line-height: 1.87;
  }
}
@media screen and (max-width: 670px) {
  .newsSingle {
    padding: 25px 0px 100px 0px;
  }
  .newsSingle__meta {
    margin-top: 20px;
  }
  .newsSingle__content {
    margin-top: 20px;
  }
}
.column__section {
  margin-top: 60px;
  margin-bottom: 40px;
}

.column__section-header {
  background: #e50035;
  padding: 55px 0;
}

.column__title {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
}

.column__main .breadcrumb {
  padding-block: 25px 0;
}

.column__section-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.column__list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.column__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(229, 0, 53, 0.3);
  padding: 0 0 30px 0;
  margin-bottom: 30px;
}
@media (any-hover: hover) {
  .column__item:hover {
    opacity: 0.7;
  }
}

.column__thumb {
  max-width: 305px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.column__thumb img {
  background: #eee;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 305/205;
}

.column__body {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}

.column__cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}

.column__cat {
  white-space: nowrap;
  display: inline-block;
  font-size: 14px;
  line-height: 2;
  padding-inline: 18px;
  background: #F4F4F4;
}

.column__item-title {
  margin-top: 15px;
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 180%; /* 36px */
}

.column__meta {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 21px;
  margin-top: 15px;
}

.column__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.column__date img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

.column__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.column__pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.column__pagination-list img {
  width: 7px;
  height: 15px;
}

.column__pagination-list img {
  width: 14px;
  height: 15px;
}

.column__pagination-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 20px;
  font-weight: 500;
  line-height: 180%;
  font-family: "Noto Serif JP", serif;
  text-decoration: none;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}
.column__pagination-btn.current {
  background: #e50035;
  color: #fff;
  border-radius: 0;
}
.column__pagination-btn:hover:not(.is-disabled):not(.current) {
  background: #f5f5f5;
  color: #e50035;
}

.column__pagination-btn.is-disabled {
  pointer-events: none;
  opacity: 0.4;
  background: #f5f5f5;
  color: #bbb;
}

.column__sidebar {
  width: clamp(270px, 25.6944444444vw, 370px);
}

@media (max-width: 840px) {
  .column__section-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column__list {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .column__sidebar {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .column__sidebar-banner {
    max-width: 370px;
    margin-inline: auto;
  }
}
@media (max-width: 670px) {
  .column__item {
    gap: 10px;
    padding: 0 0 24px 0;
    margin-bottom: 24px;
  }
  .column__cat {
    font-size: 12px;
    padding-inline: 8px;
  }
  .column__item-title {
    font-size: 18px;
    line-height: 1.4;
  }
  .column__meta {
    font-size: 14px;
    gap: 12px;
  }
  .column__date img {
    width: 12px;
    height: 12px;
  }
}
.column__sidebar-block {
  margin-bottom: 45px;
}

.column__sidebar-title {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  font-weight: 500;
  padding: 10px 20px;
  background: #B07D04;
  margin-bottom: 20px;
}

.column__sidebar-list--cat {
  list-style: disc;
  font-size: 16px;
  line-height: 2;
  margin-left: 1rem;
}
@media (any-hover: hover) {
  .column__sidebar-list--cat a:hover {
    opacity: 0.7;
  }
}

.column__sidebar-list--recent {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.column__sidebar-recent-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  text-decoration: none;
}
@media (any-hover: hover) {
  .column__sidebar-recent-link:hover {
    opacity: 0.7;
  }
}

.column__sidebar-recent-thumb {
  width: 137px;
  height: 92px;
  background: #D4D4D4;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
}
.column__sidebar-recent-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.column__sidebar-cat--recent {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 10px;
  font-size: 11px;
  line-height: 2;
  background: #F4F4F4;
}

.column__sidebar-recent-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.column__sidebar-title--recent {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #000;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}

.column__sidebar-date--recent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 8px;
  font-size: 16px;
  line-height: 2;
}
.column__sidebar-date--recent img {
  width: 18px;
  height: 18px;
}

.column__sidebar-banner {
  background: #e50035;
  padding: 4px 4px 0;
  background-size: cover;
  background-position: center;
  text-align: left;
}
.column__sidebar-banner .column__sidebar-top {
  padding: 26px 10px;
  background-image: url("../../assets/img/column/column-side-cta.png");
  background-size: cover;
  background-position: center;
}
.column__sidebar-banner .column__sidebar-top p {
  color: #000;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(16px, 1.5277777778vw, 22px);
  font-weight: 500;
  line-height: 160%; /* 35.2px */
}
.column__sidebar-banner ul {
  margin-top: 13px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.column__sidebar-banner li + li {
  margin-top: 12px;
}
.column__sidebar-banner li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(14px, 1.1111111111vw, 16px);
}
.column__sidebar-banner li img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.column__sidebar-banner .side-btn__link-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  padding: 18px 16px 25px;
}
.column__sidebar-banner .side-btn__link {
  font-size: 16px !important;
  border: 1px solid #fff;
  padding: 20px clamp(40px, 3.8194444444vw, 55px) 20px clamp(16px, 2.0833333333vw, 30px);
  text-align: left;
}
.column__sidebar-banner .side-btn__link::before {
  width: 13px;
  top: 44%;
  right: 23px;
}
.column__sidebar-banner .side-btn__link::after {
  width: 27px;
}
.column__sidebar-banner .side-btn__link--white {
  background: #fff;
  color: #e50035 !important;
}
.column__sidebar-banner .side-btn__link--white::before {
  background: #e50035;
}
.column__sidebar-banner .side-btn__link--white::after {
  background: #e50035;
  width: 27px;
}

@media (max-width: 840px) {
  .column__sidebar-banner .column__sidebar-top p {
    font-size: 19px;
  }
  .column__sidebar-banner .column__sidebar-top li {
    font-size: 16px;
  }
  .column__sidebar-banner .side-btn__link {
    font-size: 14px !important;
    padding: 16px 40px 16px 20px;
  }
  .column__sidebar-banner .side-btn__link::before {
    width: 10px;
  }
}
.s-column-content {
  padding: 60px 0 100px;
  margin: 0 auto;
}

.s-column-inner {
  max-width: 900px;
  margin: 0 auto;
}

.s-column-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
}

.s-column__cat-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px 10px;
}

.s-column-title {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 180%; /* 50.4px */
  letter-spacing: 0.28px;
  padding-bottom: 10px;
  border-bottom: 1px solid #B07D04;
}

.s-column-thumb {
  width: 100%;
  margin-top: 40px;
}
.s-column-thumb img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 80/44;
}

.s-column-author-credit {
  font-size: 12px;
  color: #000;
  margin: 10px 0 0 0;
}
.s-column-author-credit a {
  color: #2179CC;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .s-column-author-credit a:hover {
    opacity: 0.5;
  }
}

.s-column-body {
  margin-top: 40px;
}
.s-column-body h2 {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 180%; /* 46.8px */
  letter-spacing: 0.26px;
  padding-bottom: 8px;
  border-bottom: 1px solid #B07D04;
  margin-bottom: 20px;
  margin-top: 40px;
}
.s-column-body h3 {
  font-family: "Noto Serif JP", serif;
  color: #000;
  font-size: 22px;
  font-weight: 400;
  line-height: 180%; /* 39.6px */
  letter-spacing: 0.22px;
  padding: 4px 20px;
  background: rgba(176, 125, 4, 0.2);
  margin-top: 40px;
  margin-bottom: 20px;
}
.s-column-body h4 {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%; /* 32.4px */
  letter-spacing: 0.18px;
  padding-bottom: 5px;
  border-bottom: 1px solid #B07D04;
  margin-top: 40px;
  margin-bottom: 20px;
}
.s-column-body p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.16px;
  margin-bottom: 1rem;
}
.s-column-body a {
  color: #2179CC;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .s-column-body a:hover {
    opacity: 0.5;
  }
}
.s-column-body ul, .s-column-body ol {
  list-style: revert;
  margin-bottom: 1rem;
}
.s-column-body ul li, .s-column-body ol li {
  color: #000;
  margin-bottom: 5px;
  line-height: 1.3;
}
.s-column-body ul {
  margin-left: 1.1rem;
}
.s-column-body ul li::marker {
  color: #e50035;
  width: 10px;
  height: 10px;
}
.s-column-body ol {
  margin-left: 1.5rem;
}
.s-column-body ol li::marker {
  color: #B07D04;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 180%; /* 36px */
  letter-spacing: 0.26px;
}
.s-column-body table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
}
.s-column-body table thead {
  border: none;
}
.s-column-body table th {
  background: #b07d04;
  color: #fff;
  padding: 20px;
  text-align: left;
}
.s-column-body table td {
  border: 1px solid #f0e6cc;
  padding: 20px;
}
.s-column-body blockquote {
  background: #f5f5f5;
  padding: 34px 40px 18px 60px;
  margin: 32px 0 1rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.s-column-body blockquote::before {
  content: "“";
  position: absolute;
  left: 16px;
  top: 20px;
  color: #B07D04;
  opacity: 0.5;
  font-family: "Noto Serif JP", serif;
  font-size: 5rem;
  font-weight: 600;
  line-height: 1;
}
.s-column-body img {
  max-width: 100%;
  height: auto;
  margin: 24px 0;
}
.s-column-body .wp-block-button__link {
  width: 330px;
  max-width: 100%;
}

.wp-block-button__link {
  position: relative;
  text-align: center;
  padding: 24px 56px 24px 15px !important;
  background: #e50035 !important;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1 !important;
  text-decoration: none !important;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
  border-radius: 0 !important;
  width: 330px;
  max-width: 100%;
  margin-bottom: 1rem;
}
.wp-block-button__link::before {
  content: "";
  background: #FFFFFF;
  height: 1px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  width: 16px;
  position: absolute;
  top: 43%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 25px;
}
.wp-block-button__link::after {
  content: "";
  background: #FFFFFF;
  height: 1px;
  width: 32px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: 50%;
  right: 10px;
  translate: -50% -50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wp-block-button__link:hover {
  opacity: 0.6;
}
.wp-block-button__link:hover::after, .wp-block-button__link:hover::before {
  margin-right: -4px;
}

@media (max-width: 640px) {
  .s-column-content {
    padding: 40px 0 60px;
  }
  .s-column-title {
    font-size: 24px;
  }
  .s-column-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 8px;
  }
  .s-column-body h2 {
    font-size: 22px;
  }
  .s-column-body h3 {
    font-size: 20px;
  }
  .s-column-body blockquote {
    padding: 30px 24px 18px 45px;
  }
  .s-column-body blockquote::before {
    font-size: 4rem;
    left: 11px;
  }
}
.s-column-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 60px;
  margin-bottom: 30px;
}

.s-column-nav-prev,
.s-column-nav-next {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.s-column-nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 0;
  border: none;
  text-decoration: none;
  border-radius: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #333;
}
.s-column-nav-link:hover {
  opacity: 0.7;
}

.s-column-nav-link--prev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: reverse;
          flex-direction: reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.s-column-nav-link--next {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.s-column-nav-arrow {
  width: 12px;
  height: 12px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.s-column-nav-link--prev .s-column-nav-arrow {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.s-column-nav-title {
  text-align: justify;
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.18px;
  text-decoration: underline;
}

.s-column-author {
  background: #F6F6F6;
  padding: 44px 40px 23px 50px;
  margin: 80px 0 0 20px;
  position: relative;
}

.s-column-author-label {
  background: #000;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  padding: 10px 50px;
  font-size: 20px;
  position: absolute;
  top: -20px;
  left: -20px;
}

.s-column-author-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.s-column-author-thumb {
  width: 174px;
  height: 200px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #eee;
  overflow: hidden;
}
.s-column-author-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.s-column-author-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.s-column-author-name {
  font-family: "Noto Serif JP", serif;
  font-size: 22px;
  color: #000;
  margin-top: 4px;
}

.s-column-author-title {
  color: #000;
  font-size: 14px;
  margin-top: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid #B07D04;
}

.s-column-author-description {
  margin-top: 11px;
  color: #000;
  font-size: 16px;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.16px;
}

@media (max-width: 670px) {
  .s-column-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 20px 20px;
  }
  .s-column-author-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .s-column-author-thumb {
    margin-inline: auto;
  }
  .s-column-author-name {
    text-align: center;
  }
  .s-column-author-title {
    text-align: center;
  }
  .s-column-author-description {
    font-size: 14px;
  }
}
.s-column-related {
  background: #F6F6F6;
  padding-block: 100px;
}

.s-column-related-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1005px;
  margin: 65px auto 50px;
}

@media (max-width: 670px) {
  .s-column-related {
    padding-block: 60px;
  }
  .s-column-related-list {
    grid-template-columns: 1fr;
  }
}
#ez-toc-container {
  border: 1px solid #e50035;
  background: #fff;
  margin: 40px 0;
  padding: 0;
  width: 100%;
  border-radius: 0;
}

#ez-toc-container .ez-toc-title-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #e50035;
  padding: 12px 56px 12px 40px;
  position: relative;
  cursor: pointer;
}

#ez-toc-container .ez-toc-title {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

#ez-toc-container .ez-toc-js-icon-con {
  border: none;
}

#ez-toc-container .ez-toc-title-toggle {
  position: absolute;
  inset: 0;
}

#ez-toc-container .ez-toc-title-toggle a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
}

#ez-toc-container .ez-toc-title-toggle svg {
  display: none;
}

#ez-toc-container .ez-toc-toggle-label {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#ez-toc-container .ez-toc-toggle-label span {
  font-size: 25px;
  font-weight: 300;
}

#ez-toc-container .ez-toc-toggle-label.is-plus {
  font-size: 43px;
  font-weight: 200;
  top: 46%;
}

#ez-toc-container .ez-toc-toggle-x {
  font-size: 14px;
  line-height: 1;
}

#ez-toc-container nav {
  padding: 16px 20px 20px;
}

#ez-toc-container .ez-toc-list[style*="display: none"] {
  padding-left: 0;
  margin: 0;
}

#ez-toc-container:has(.ez-toc-list[style*="display: none"]) nav {
  padding: 0 !important;
}

#ez-toc-container .ez-toc-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
}

#ez-toc-container .ez-toc-list li {
  margin: 6px 0;
  color: #000;
}

#ez-toc-container .ez-toc-link {
  color: #000;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.16px;
}

#ez-toc-container .ez-toc-link:hover {
  text-decoration: underline;
}

@media (max-width: 670px) {
  #ez-toc-container nav {
    padding: 16px 12px 20px 8px;
  }
}
.section__head {
  text-align: center;
  font-family: "Noto Serif JP", serif;
}

.section__head--en {
  color: #B07D04;
  font-size: 14px;
  font-weight: 400;
  height: auto;
  letter-spacing: 0em;
  margin: 0px 0px 0px 0px;
  text-align: center;
  width: auto;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.section__head--jp {
  color: #000000;
  font-size: 28px;
  letter-spacing: 0em;
  line-height: 1.5;
  margin: 15px 0px 0px 0px;
  text-align: center;
  width: auto;
  max-width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.section__head--jp::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #B07D04;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  max-width: 100%;
}

@media screen and (max-width: 840px) {
  .section__head--en {
    font-size: 12px;
  }
  .section__head--jp {
    font-size: 24px;
  }
}
.btn {
  text-align: center;
}

.btn__link {
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 340px;
  padding: 24px 56px 24px 15px;
  background: #e50035;
  color: #fff !important;
  font-size: 18px !important;
  line-height: 1 !important;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn__link::before {
  content: "";
  background: #FFFFFF;
  height: 1px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  width: 16px;
  position: absolute;
  top: 43%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 25px;
}
.btn__link::after {
  content: "";
  background: #FFFFFF;
  height: 1px;
  width: 32px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: 50%;
  right: 10px;
  translate: -50% -50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn__link:hover {
  opacity: 0.6;
}
.btn__link:hover::after, .btn__link:hover::before {
  margin-right: -4px;
}

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 104px;
  background: rgba(255, 255, 255, 0.7);
}

.header__inner {
  height: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

.header__logo {
  max-width: 260px;
}
.header__logo img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav {
  display: block;
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(16px, 2.7777777778vw, 40px);
}

.menu-item {
  font-size: clamp(13px, 1.0416666667vw, 15px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-item:hover {
  opacity: 0.7;
}

/* アクセシビリティ対策 */
.visuallyHidden {
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.drawer__icon-wrap {
  display: none;
}

.drawer__icon {
  display: none;
}

.drawer {
  display: none;
}

@media screen and (max-width: 1100px) {
  .header__logo {
    max-width: 200px;
  }
  .header__nav-list {
    gap: 16px;
  }
}
@media screen and (max-width: 840px) {
  .header {
    height: 60px;
  }
  .header__inner {
    height: 60px;
    max-width: none;
    padding: 0 15px;
  }
  .header__logo-wrap {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav {
    display: none;
  }
  .drawer__icon-wrap {
    display: block;
    height: 60px;
    width: 60px;
    margin-right: -16px;
  }
  .drawer__icon-wrap:has(.drawer__icon.js-show) {
    display: block;
    height: 60px;
    width: 60px;
    background: #e50035;
    margin-right: -16px;
    z-index: 103;
  }
  .drawer__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    z-index: 102;
    top: 12px;
    right: 20px;
    width: 26px;
    height: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .drawer__icon span {
    font-size: 10px;
    color: #000;
  }
  .drawer__icon--bar {
    width: 100%;
    height: 2px;
    background: #333;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .drawer__icon.js-show {
    background: #e50035;
  }
  .drawer__icon.js-show .drawer__icon--bar {
    background: #fff;
  }
  .drawer__icon.js-show span {
    color: #fff;
  }
  .drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
    rotate: 45deg;
    translate: 0 7.5px;
  }
  .drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
    display: none;
  }
  .drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
    rotate: -45deg;
    translate: 0 -4px;
  }
  .drawer {
    display: block;
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    width: 100%;
    max-height: -webkit-fit-content;
    max-height: -moz-fit-content;
    max-height: fit-content;
    height: 100svh;
    background: #fff;
    overflow-y: scroll;
    translate: 101%;
    -webkit-transition: translate 0.5s ease;
    transition: translate 0.5s ease;
  }
  .drawer.js-show {
    translate: 0;
  }
  .drawer__overlay {
    position: fixed;
    z-index: 100;
    inset: 0;
    height: 100svh;
    background: rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .drawer__overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .drawer__body {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .drawer__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .drawer__list li a {
    width: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    background: #e50035;
    padding: 40px 15px;
  }
  .drawer__list li + li {
    border-top: 1px solid #fff;
  }
}
/* =====================================
  bottom
===================================== */
.bottom {
  position: relative;
  padding: 94px 0px 89px 0px;
  color: #fff;
  text-align: center;
  background: rgb(0, 0, 0);
  z-index: 2;
}
.bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../../assets/img/bottom-bg.webp") center/cover no-repeat;
  z-index: -1;
}

.bottom__inner {
  position: relative;
  z-index: 1; /* 黒レイヤーより前 */
}

.bottom__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* 真ん中の線は擬似要素で */
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

/* 各カラム */
.bottom__item {
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.bottom__item:first-child {
  padding: 6px 51px 9px 10px;
}

.bottom__item:last-child {
  padding: 6px 10px 9px 51px;
}

/* 真ん中の縦線 */
.bottom__item + .bottom__item {
  position: relative;
}
.bottom__item + .bottom__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 1px;
  height: 100%; /* お好みで調整 */
  background: #fff;
}

.bottom__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.4;
}

.bottom__text {
  margin: 18px auto 22px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
}

.bottom__more {
  margin-top: auto;
}

/* ===============================
  SP
=============================== */
@media screen and (max-width: 670px) {
  .bottom {
    padding: 70px 0;
  }
  .bottom::before {
    background: url("../../assets/img/bottom-bg-sp.webp") center/cover no-repeat;
  }
  .bottom__items {
    grid-template-columns: 1fr;
    gap: 56px;
    max-width: 465px;
    margin-inline: auto;
  }
  .bottom__item:first-child {
    padding: 0;
  }
  .bottom__item:last-child {
    padding: 0;
  }
  /* 縦線 → 横線に切り替え */
  .bottom__item + .bottom__item::before {
    display: none;
  }
  .bottom__title {
    font-size: 22px;
  }
  .bottom__text {
    font-size: 15px;
    line-height: 1.9;
  }
  .bottom__more {
    margin-top: 26px;
  }
}
/* =====================================
  footer
===================================== */
.footer {
  padding: 19px 0 21px;
  background: #fff;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer__left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}

.footer__logo {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  max-width: 240px;
}
.footer__logo img {
  height: auto;
  display: block;
}

.footer__sns {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.footer__sns-item {
  width: 20px;
  height: 20px;
}

.footer__sns-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
@media (any-hover: hover) {
  .footer__sns-link:hover {
    opacity: 0.7;
  }
}
.footer__sns-link img {
  display: block;
  height: auto;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media (any-hover: hover) {
  .footer__nav-list a:hover {
    color: #e50035;
  }
}

.footer__nav-list--sub {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-top: 13px;
}

.footer__nav-link {
  display: inline-block;
  font-size: 10px;
  line-height: 1.2;
  padding: 5px;
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
@media (any-hover: hover) {
  .footer__nav-link:hover {
    color: #e50035;
  }
}

.footer__copy {
  font-size: 10px;
  line-height: 1.2;
  margin-top: 13px;
}

/* =====================================
  follow banner
===================================== */
.follow-banner {
  text-align: center;
  position: fixed;
  right: 20px;
  bottom: 10px;
  width: 100%;
  max-width: 210px;
  background: #e50035;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.6s, visibility 0.6s;
  transition: opacity 0.6s, visibility 0.6s;
}
.follow-banner a {
  width: 100%;
  padding: 6px 7px;
  -webkit-transition: opacity 0.25s;
  transition: opacity 0.25s;
}
@media (any-hover: hover) {
  .follow-banner a:hover {
    opacity: 0.7;
  }
}

.follow-banner--show {
  opacity: 1;
  visibility: visible;
}

.follow-banner__img {
  height: auto;
  margin: 0px 0px 10px 20px;
  width: 55px;
  max-width: calc(100% - 20px);
}

.follow-banner__text {
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  margin: 0px 0px 6px 0px;
}

.follow-banner__contact {
  background: #FFFFFF;
  color: #e50035;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  height: 38px;
  line-height: 1.4;
}

/* =====================================
  responsive
===================================== */
@media screen and (max-width: 1140px) {
  .footer__nav-list {
    gap: 10px 20px;
  }
}
@media screen and (max-width: 840px) {
  .footer__logo {
    display: none;
  }
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
  }
  .footer__nav-list {
    gap: 8px 12px;
  }
}
@media screen and (max-width: 670px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .footer__logo {
    display: none;
  }
  .footer__left {
    gap: 16px;
  }
  .footer__left-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__right {
    width: 100%;
  }
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .footer__nav-list .menu-item {
    width: 100%;
  }
  .footer__nav-list a {
    font-size: 16px;
    padding: 30px 15px 30px 15px;
    border-bottom: 1px solid #dddddd;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer__nav-list .menu-item a::after {
    content: "";
    width: 14px;
    height: 14px;
    border-top: 3px solid #cfcfcf;
    border-right: 3px solid #cfcfcf;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    margin-left: auto;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 3px;
  }
  .footer__nav-list--sub {
    gap: 5px 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 30px;
  }
  .footer__nav-list--sub a {
    font-size: 13px;
  }
  .footer__sns {
    gap: 30px;
  }
  .footer__sns-item {
    width: 30px;
    height: 30px;
  }
  .footer__copy {
    font-size: 13px;
    text-align: center;
  }
  .follow-banner {
    right: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    max-width: none;
  }
  .follow-banner a {
    padding: 10px 12px;
  }
  .follow-banner__img {
    display: none;
  }
  .follow-banner__text {
    display: none;
  }
  .follow-banner__contact {
    font-size: 18px;
    height: 60px;
  }
}
.hidden--sp {
  display: none;
}
@media screen and (min-width: 840px) {
  .hidden--sp {
    display: block;
  }
}
@media screen and (min-width: 840px) {
  .hidden--pc {
    display: none;
  }
}

.fade-in-up {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-up.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in-down {
  opacity: 0;
  -webkit-transform: translateY(-24px);
          transform: translateY(-24px);
  -webkit-transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, -webkit-transform 1s;
  transition: opacity 1s, transform 1s;
  transition: opacity 1s, transform 1s, -webkit-transform 1s;
}
.fade-in-down.is-in-view {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-in {
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}
.fade-in.is-in-view {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */