@charset "UTF-8";
/****************************
FAQブロック（details + JSアコーディオン）
****************************/
.faq {
  /* レイアウト */
  max-width: 1100px;
  margin: 0 auto;
  font-size: 17px;
  /* ===== item ===== */
  /* ===== question (summary) ===== */
  /* 開いたときに矢印回転 */
  /* ===== answer wrap (height animation target) ===== */
  /* ===== answer ===== */
  /* ===== 「問い合わせの書き方」ブロック（FAQ内限定） ===== */ }
  .faq__item {
    border-bottom: 1px solid #e5e5e5; }
  .faq__q {
    cursor: pointer;
    list-style: none;
    padding: 16px 36px 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    /* detailsの三角を消す（Chrome/Safari） */
    /* 矢印 */ }
    .faq__q::-webkit-details-marker {
      display: none; }
    .faq__q::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 6px;
      width: 8px;
      height: 8px;
      border-right: 2px solid #333;
      border-bottom: 2px solid #333;
      transform: translateY(-50%) rotate(45deg);
      transition: transform 300ms ease; }
  .faq__qText {
    font-weight: 500;
    line-height: 1.6;
    display: flex; }
    .faq__qText img {
      width: 25px;
      height: 25px;
      margin-right: 10px; }
  details[open] > .faq__q::after {
    transform: translateY(-50%) rotate(-135deg); }
  .faq__aWrap {
    overflow: hidden;
    height: 0;
    transition: height 360ms ease;
    will-change: height; }
  .faq__a {
    padding: 0 0 16px;
    line-height: 1.9; }
    .faq__a p {
      margin: 12px 0; }
  .faq .contact-note__heading {
    margin: 18px 0 12px;
    padding-left: 12px;
    border-left: 4px solid #222;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4; }
  .faq .contact-note__list {
    margin: 0 0 18px;
    padding: 0;
    list-style: none; }
    .faq .contact-note__list li {
      margin: 0 0 12px;
      padding: 14px 16px;
      border: 1px solid #e6e6e6;
      border-radius: 10px;
      background: #fafafa;
      line-height: 1.8; }
      .faq .contact-note__list li strong {
        display: inline-block;
        margin-bottom: 6px;
        font-weight: 700; }
  .faq__usageList {
    margin: 0 0 16px;
    padding: 0;
    list-style: none; }
    .faq__usageList li {
      margin-bottom: 12px;
      padding: 14px 16px;
      border: 1px solid #e6e6e6;
      border-radius: 10px;
      background: #fafafa;
      line-height: 1.8; }
      .faq__usageList li strong {
        display: inline-block;
        margin-bottom: 6px;
        font-weight: 700; }

/* SP微調整 */
@media (max-width: 768px) {
  .faq__q {
    padding: 14px 36px 14px 0; }
  .faq__a {
    padding-bottom: 14px; }
  .faq .contact-note__list li {
    padding: 12px 14px; } }
/* シングルページ（お知らせ） */
.l-main {
  padding: calc(48px + 104px) 0 48px; }

/* ===== NEWS single（simple） ===== */
.news-hero {
  padding: 72px 0 40px;
  text-align: center;
  position: relative;
  background-color: #fafafa;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 6px); }
  .news-hero__title {
    margin: 0;
    font-size: 56px;
    font-weight: 800;
    letter-spacing: .06em;
    line-height: 1; }
  .news-hero__sub {
    margin-top: 12px;
    font-size: 15px;
    letter-spacing: .08em;
    color: #555; }

.news-head {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 24px 24px; }
  .news-head__meta {
    display: flex;
    gap: 12px;
    align-items: center; }
  .news-head__date {
    font-size: 14px;
    font-weight: 700;
    color: #111; }
  .news-head__badge {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 6px;
    background: #0068b7;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none; }
  .news-head__title {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.5;
    font-weight: 800; }
  .news-head__rule {
    margin-top: 20px;
    height: 2px;
    background: #0068b7; }

.news-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 24px 80px;
  line-height: 2;
  font-size: 15px; }
  .news-body p {
    margin-bottom: 16px; }
  .news-body a {
    color: #0068b7;
    text-decoration: underline; }

/* SP */
@media (max-width: 768px) {
  .news-hero {
    padding: 56px 0 28px; }
    .news-hero__title {
      font-size: 40px; } }
/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 0 18px 24px 0;
  margin: 0 auto;
  max-width: 1100px; }
  .breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    color: #666;
    font-size: 12px;
    letter-spacing: .5em;
    justify-content: flex-start; }
  .breadcrumb__item a {
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, color .2s ease; }
    .breadcrumb__item a:hover {
      color: #0068b7;
      border-bottom-color: #0068b7; }
  .breadcrumb__item[aria-current="page"] {
    color: #111;
    font-weight: 700; }
  .breadcrumb__sep {
    color: #aaa;
    user-select: none; }

/* ===== NEWS Archive ===== */
.news-hero {
  text-align: center;
  padding: 64px 0 40px; }
  .news-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: .12em;
    margin: 0; }
  .news-hero__sub {
    margin: 12px 0 0;
    color: #666;
    letter-spacing: .12em; }

.news-archive {
  padding: 6.25rem 0.9375rem 3.125rem;
  max-width: 1100px;
  margin: 0 auto;
  /* aで全体を囲まない前提の行ラッパ */
  /* ホバーは「行」全体に効かせる */
  /* タイトル */
  /* タイトルリンク（ここが記事へのリンク） */ }
  .news-archive__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e9e9e9; }
  .news-archive__item {
    border-bottom: 1px solid #e9e9e9; }
  .news-archive__row {
    display: block;
    padding: 28px 0; }
  .news-archive__item:hover .news-archive__row {
    transform: translateY(-1px); }
  .news-archive__row {
    transition: transform .15s ease; }
  .news-archive__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px; }
  .news-archive__date {
    font-weight: 700;
    letter-spacing: .08em;
    color: #111;
    font-size: 13px; }
  .news-archive__title {
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.6;
    margin: 0;
    font-weight: 400; }
  .news-archive__titleLink {
    color: inherit;
    text-decoration: none;
    display: inline;
    /* “動いてる感”は下線アニメにするのが上品 */
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .25s ease; }
    .news-archive__titleLink:hover {
      background-size: 100% 2px; }
  .news-archive__pager {
    margin-top: 28px; }
    .news-archive__pager .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      align-items: center; }
    .news-archive__pager .page-numbers {
      display: inline-flex;
      min-width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid #e3e3e3;
      color: #111;
      text-decoration: none;
      font-weight: 700;
      transition: background .2s ease, border-color .2s ease; }
      .news-archive__pager .page-numbers.current {
        background: #111;
        color: #fff;
        border-color: #111; }
      .news-archive__pager .page-numbers:hover {
        border-color: #111; }
  .news-archive__empty {
    padding: 24px 0;
    color: #666; }

/* カテゴリ（a入れ子しないため single__cat をこっちで整える） */
.single__cat {
  display: inline-flex;
  align-items: center;
  height: 26px; }

/* SP */
@media (max-width: 768px) {
  .news-hero {
    padding: 48px 0 16px; }

  .news-archive__row {
    padding: 18px 0; }
  .news-archive__meta {
    margin-bottom: 10px; } }
.news-single__pager {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e9e9e9; }
  .news-single__pager a {
    display: block;
    text-decoration: none;
    color: inherit;
    font-weight: 700;
    border: 1px solid #e3e3e3;
    border-radius: 12px;
    padding: 14px 16px;
    transition: border-color .2s ease, transform .15s ease; }
    .news-single__pager a:hover {
      border-color: #111;
      transform: translateY(-1px); }

.news-single__pagerPrev {
  justify-self: start; }

.news-single__pagerNext {
  justify-self: end;
  text-align: right; }

@media (max-width: 768px) {
  .news-single__pager {
    grid-template-columns: 1fr; }

  .news-single__pagerNext {
    text-align: left;
    justify-self: start; } }
/* ===== LANDING (水揚げ情報) ===== */
.landing-hero {
  text-align: center;
  padding: 64px 0 40px; }
  .landing-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: .12em;
    margin: 0; }
  .landing-hero__sub {
    margin: 12px 0 0;
    color: #666;
    letter-spacing: .12em; }

/* Archive */
.landing-archive {
  padding: 6.25rem 0.9375rem 3.125rem;
  max-width: 1100px;
  margin: 0 auto; }
  .landing-archive__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e9e9e9; }
  .landing-archive__item {
    border-bottom: 1px solid #e9e9e9; }
  .landing-archive__link {
    display: block;
    padding: 28px 0;
    text-decoration: none;
    color: inherit;
    transition: transform .15s ease; }
    .landing-archive__link:hover {
      transform: translateY(-1px); }
  .landing-archive__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px; }
  .landing-archive__date {
    font-weight: 700;
    letter-spacing: .08em;
    color: #111;
    font-size: 13px; }
  .landing-archive__title {
    font-size: clamp(18px, 2.2vw, 28px);
    line-height: 1.6;
    margin: 0; }
  .landing-archive__pager {
    margin-top: 28px; }
    .landing-archive__pager .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      align-items: center; }
    .landing-archive__pager .page-numbers {
      display: inline-flex;
      min-width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid #e3e3e3;
      color: #111;
      text-decoration: none;
      font-weight: 700;
      transition: background .2s ease, border-color .2s ease; }
      .landing-archive__pager .page-numbers.current {
        background: #111;
        color: #fff;
        border-color: #111; }
      .landing-archive__pager .page-numbers:hover {
        border-color: #111; }
  .landing-archive__empty {
    padding: 24px 0;
    color: #666; }

/* Single */
.landing-head {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 0 0; }
  .landing-head__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px; }
  .landing-head__date {
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 13px; }
  .landing-head__title {
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.5;
    margin: 0; }
  .landing-head__rule {
    margin-top: 18px;
    height: 1px;
    background: #e9e9e9; }

.landing-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 0 60px;
  line-height: 1.9; }
  .landing-body p {
    margin: 14px 0; }
  .landing-body h2, .landing-body h3 {
    margin: 28px 0 12px; }

.landing-nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 0 70px;
  display: flex;
  justify-content: space-between;
  gap: 16px; }
  .landing-nav a {
    text-decoration: none;
    font-weight: 700; }

/* SP */
@media (max-width: 768px) {
  .landing-hero {
    padding: 48px 0 16px; }

  .landing-archive__link {
    padding: 18px 0; }

  .landing-archive__meta {
    margin-bottom: 10px; }

  .landing-head {
    padding-top: 34px; }

  .landing-body {
    padding-bottom: 48px; }

  .landing-nav {
    padding-bottom: 54px;
    flex-direction: column; } }
/* ===== LANDING Archive（NEWS archiveと同型） ===== */
.landing-hero {
  text-align: center;
  padding: 64px 0 40px; }
  .landing-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: .12em;
    margin: 0; }
  .landing-hero__sub {
    margin: 12px 0 0;
    color: #666;
    letter-spacing: .12em; }

.landing-archive {
  padding: 6.25rem 0.9375rem 3.125rem;
  max-width: 1100px;
  margin: 0 auto;
  /* 行ラッパ（NEWSと同じ） */
  /* 記事リンク（NEWSと同じ下線アニメ） */ }
  .landing-archive__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e9e9e9; }
  .landing-archive__item {
    border-bottom: 1px solid #e9e9e9; }
  .landing-archive__row {
    display: block;
    padding: 28px 0;
    transition: transform .15s ease; }
  .landing-archive__item:hover .landing-archive__row {
    transform: translateY(-1px); }
  .landing-archive__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px; }
  .landing-archive__date {
    font-weight: 700;
    letter-spacing: .08em;
    color: #111;
    font-size: 13px; }
  .landing-archive__title {
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.6;
    margin: 0;
    font-weight: 400; }
  .landing-archive__titleLink {
    color: inherit;
    text-decoration: none;
    display: inline;
    background-image: linear-gradient(currentColor, currentColor);
    background-size: 0 2px;
    background-position: 0 100%;
    background-repeat: no-repeat;
    transition: background-size .25s ease; }
    .landing-archive__titleLink:hover {
      background-size: 100% 2px; }
  .landing-archive__pager {
    margin-top: 28px; }
    .landing-archive__pager .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      align-items: center; }
    .landing-archive__pager .page-numbers {
      display: inline-flex;
      min-width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid #e3e3e3;
      color: #111;
      text-decoration: none;
      font-weight: 700;
      transition: background .2s ease, border-color .2s ease; }
      .landing-archive__pager .page-numbers.current {
        background: #111;
        color: #fff;
        border-color: #111; }
      .landing-archive__pager .page-numbers:hover {
        border-color: #111; }
  .landing-archive__empty {
    padding: 24px 0;
    color: #666; }

/* SP */
@media (max-width: 768px) {
  .landing-hero {
    padding: 48px 0 16px; }

  .landing-archive__row {
    padding: 18px 0; }
  .landing-archive__meta {
    margin-bottom: 10px; } }
.landing-hero {
  text-align: center;
  padding: 64px 0 40px;
  position: relative;
  background-color: #fafafa;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 6px); }
  .landing-hero__title {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: .12em;
    margin: 0; }
  .landing-hero__sub {
    margin-top: 12px;
    color: #666;
    letter-spacing: .12em; }

.news-hero__title {
  display: inline-flex;
  align-items: center;
  gap: 14px; }

/*固定ページ*/
.page-hero {
  padding: 50px 0 50px; }

.page-hero__inner {
  margin-inline: auto;
  padding-inline: 1.25rem;
  width: min(100%, 111.25rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px; }

.page-hero__en {
  margin: 0 0 8px;
  font-size: 1.375rem;
  letter-spacing: .12em;
  color: #777; }

.page-hero__title {
  margin: 0;
  font-size: clamp(22px, 3vw, 50px);
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 1.2; }

.page-hero__rule {
  display: inline-block;
  width: 4.375rem;
  height: 2px;
  margin-top: 12px;
  background: #960000; }

/* パンくず（右下） */
.breadcrumbs__list {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  font-size: 12px;
  color: #777; }

@media (min-width: 768px) {
  .page-hero__crumb {
    transform: translateY(50px); }

  .breadcrumbs__list li {
    margin: 0 15px; } }
.breadcrumbs__item a {
  color: #777;
  text-decoration: none; }

.breadcrumbs__item a:hover {
  color: #0068b7;
  border-bottom: 1px solid transparent;
  border-bottom-color: #0068b7; }

.breadcrumbs__item[aria-current="page"] {
  color: #111;
  font-weight: 700; }

.breadcrumbs__sep {
  color: #bbb; }

@media (max-width: 768px) {
  .page-hero {
    padding: 0; }

  .page-hero__inner {
    flex-direction: column;
    align-items: flex-start; } }
.pagecontent {
  max-width: 1300px;
  margin: 0 auto;
  padding: 100px 24px 24px; }

.page-block {
  padding: 80px 20px 0 20px;
  /* 1セクション = 1行（左タイトル + 右本文） */
  /* 左 */
  /* 右 */
  /* SP：見出しを上に（左→上へ移動） */ }
  .page-block__inner {
    max-width: 1300px;
    margin: 0 auto; }
  .page-block__row {
    /*display: grid;
    grid-template-columns: 260px 1fr;*/
    gap: 80px;
    align-items: start;
    padding: 56px 0; }
    .page-block__row:first-child {
      border-top: 0;
      padding-top: 0; }
  .page-block .company_center {
    text-align: center;
    margin-bottom: 50px; }
  .page-block__left {
    align-self: start;
    margin-bottom: 50px; }
  .page-block__en {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 5px;
    line-height: 1.1;
    color: #666; }
  .page-block__jp {
    margin: 8px 0 0;
    font-size: 13px;
    color: #666;
    letter-spacing: .06em; }
  .page-block__right {
    align-self: start; }
  .page-block__content {
    font-size: 15px;
    line-height: 2; }
    .page-block__content p {
      margin: 0 0 18px;
      font-size: 17px; }
    .page-block__content p:last-child {
      margin-bottom: 0; }
    .page-block__content .profile-table {
      margin: 0;
      border-top: 1px solid #e9e9e9; }
      .page-block__content .profile-table__row {
        display: grid;
        grid-template-columns: 220px 1fr;
        gap: 24px;
        padding: 22px 0;
        border-bottom: 1px solid #e9e9e9;
        align-items: start; }
      .page-block__content .profile-table__th {
        margin: 0;
        font-weight: 700;
        letter-spacing: .04em;
        font-size: 17px; }
      .page-block__content .profile-table__td {
        margin: 0;
        line-height: 1.9;
        font-size: 17px; }
      .page-block__content .profile-table__list {
        margin: 0; }
        .page-block__content .profile-table__list li {
          margin: 0 0 8px; }
        .page-block__content .profile-table__list li:last-child {
          margin-bottom: 0; }
      @media (max-width: 768px) {
        .page-block__content .profile-table__row {
          grid-template-columns: 1fr;
          gap: 10px;
          padding: 18px 0; }
        .page-block__content .profile-table__th {
          font-size: 14px;
          color: #111; }
        .page-block__content .profile-table__td {
          font-size: 14px;
          color: #333; } }
  @media (max-width: 768px) {
    .page-block {
      padding: 56px 16px 0 16px; }
      .page-block__row {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 36px 0; }
      .page-block__en {
        font-size: 26px; }
      .page-block__rule {
        margin-top: 12px; } }

/* ============================
  Statement Block
============================ */
.statement {
  padding: 0 0 96px 0; }
  .statement__top {
    margin-bottom: 80px; }
  .statement__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px; }
  .statement__title {
    margin: 0;
    font-size: clamp(34px, 3.6vw, 56px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: .02em;
    color: #111; }

.statement__wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px; }

.statement__text {
  width: 50%; }

.statement__video {
  width: 50%; }

.statement__text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #111; }

/* YouTubeレスポンシブ：16:9 */
.statement__videoInner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden; }

.statement__videoInner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block; }

/* aspect-ratio 非対応ブラウザ保険（古い環境用） */
@supports not (aspect-ratio: 16/9) {
  .statement__videoInner {
    height: 0;
    padding-top: 56.25%; } }
/* SP：縦並び */
@media (max-width: 767px) {
  .statement__wrap {
    flex-direction: column; }

  .statement__video,
  .statement__text {
    width: 100%; } }
/* ============================
  Feature Block
============================ */
.service {
  padding: 80px 0;
  /* 画像 */ }
  .service__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px; }
  .service__media {
    max-width: 1300px;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1; }
    .service__media .service__back {
      width: 55%;
      height: 200px;
      position: absolute;
      bottom: -150px;
      left: -200px;
      background: #005393;
      z-index: -3; }
  .service__media img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    position: relative;
    margin: 0 auto; }

/* 左タイトル＋右本文 */
.service-row {
  max-width: 1300px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: 430px 1fr;
  column-gap: 80px;
  position: relative;
  z-index: 2; }
  .service-row__title {
    font-size: clamp(18px, 2vw, 32px);
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.6;
    color: #fff; }
  .service-row__body {
    font-size: 1.3rem;
    line-height: 1.8; }
    .service-row__body p {
      margin: 0 0 18px; }
  .service-row__lead {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.7rem;
    line-height: 1.4; }

/* SP */
@media (max-width: 768px) {
  .service {
    padding: 56px 0 0 0; }
    .service__inner {
      padding: 0 16px; }
    .service__media {
      margin-bottom: 1px; }

  .service-row {
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin: 20px auto; }
    .service-row__body {
      font-size: 17px;
      line-height: 1.8; }
    .service-row__title {
      font-size: 20px;
      background: #005393;
      padding: 10px; }
    .service-row .service-row__lead {
      font-size: 17px; }

  .service__back {
    display: none; } }
/* =========================
  Works Single
========================= */
.works-head {
  max-width: 1100px;
  margin: 100px auto 48px;
  padding: 0 20px; }

/* meta（日付・カテゴリ） */
.works-head__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #777; }
  @media (max-width: 767px) {
    .works-head__meta {
      flex-wrap: wrap;
      gap: 8px; } }

.works-head__date {
  letter-spacing: 0.05em; }

/* カテゴリー */
.single__cat {
  display: inline-block; }

/* タイトル */
.works-head__title {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 24px;
  color: #111; }
  @media (max-width: 767px) {
    .works-head__title {
      font-size: 22px; } }

/* 区切り線 */
.works-head__rule {
  width: 100%;
  height: 1px;
  background-color: #e5e5e5; }

/* 本文 */
.works-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px 80px;
  font-size: 16px;
  line-height: 1.9;
  color: #222;
  /* 見出し */
  /* 段落 */
  /* 画像 */
  /* リスト */
  /* 引用 */ }
  @media (max-width: 767px) {
    .works-body {
      font-size: 15px;
      padding-bottom: 60px; } }
  .works-body h2 {
    margin: 60px 0 24px;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    border-bottom: 2px solid #e5e5e5;
    padding-bottom: 8px; }
    @media (max-width: 767px) {
      .works-body h2 {
        font-size: 20px;
        margin-top: 48px; } }
  .works-body h3 {
    margin: 40px 0 16px;
    font-size: 20px;
    font-weight: 600; }
    @media (max-width: 767px) {
      .works-body h3 {
        font-size: 18px; } }
  .works-body p {
    margin: 0 0 1.6em; }
  .works-body img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 32px auto; }
  .works-body ul,
  .works-body ol {
    margin: 24px 0 24px 1.5em; }
  .works-body li {
    margin-bottom: 0.6em; }
  .works-body blockquote {
    margin: 40px 0;
    padding: 20px 24px;
    background: #f7f7f7;
    border-left: 4px solid #ccc;
    font-style: normal; }

/* =========================
  Pager
========================= */
.works-single__pager {
  max-width: 1000px;
  margin: 0 auto 100px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px; }
  @media (max-width: 767px) {
    .works-single__pager {
      flex-direction: column;
      gap: 12px;
      margin-bottom: 80px; } }
  .works-single__pager a {
    display: block;
    padding: 16px 20px;
    border: 1px solid #ddd;
    color: #222;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
    line-height: 1.4; }
    .works-single__pager a:hover {
      background-color: #222;
      color: #fff; }

.works-single__pagerPrev,
.works-single__pagerNext {
  flex: 1; }

.works-single__pagerPrev {
  text-align: left; }

.works-single__pagerNext {
  text-align: right; }
  @media (max-width: 767px) {
    .works-single__pagerNext {
      text-align: left; } }

/* ==========================
  WORKS Archive
========================== */
.works-hero {
  text-align: center;
  padding: 15px 30px 40px 30px;
  position: relative;
  background-color: #fafafa;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02) 1px, transparent 1px, transparent 6px); }

.works-archive {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: 0.9375rem; }

.works-hero {
  text-align: center; }
  .works-hero__title {
    margin: 0;
    font-size: clamp(36px, 5vw, 56px);
    letter-spacing: .12em; }
  .works-hero__sub {
    margin-top: 12px;
    color: #666;
    letter-spacing: .12em;
    font-size: 14px; }

.works-archive__list--cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; }

.works-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform .2s ease, box-shadow .2s ease; }

.works-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1); }

.works-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #f3f3f3; }

.works-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; }

.works-card__body {
  padding: 18px 18px 20px;
  flex: 1; }

.works-card__date {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .04em;
  opacity: .7;
  margin-bottom: 8px; }

.works-card__title {
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 10px; }

.works-card__excerpt {
  margin: 0;
  line-height: 1.8;
  opacity: .9;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; }

/* ===== SP ===== */
@media (max-width: 767px) {
  .works-nav {
    margin: 32px auto 15px;
    padding: 0 16px; }

  .works-archive__list--cards {
    grid-template-columns: 1fr;
    gap: 18px; }

  .works-card__title {
    font-size: 16px; }

  .works-card__body {
    padding: 16px; } }
/* ===== WORKS category nav ===== */
.works-nav {
  margin: 30px auto 30px;
  max-width: 1100px; }

.works-nav__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0; }

.works-nav__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 24px;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }

.works-nav__item a:hover {
  transform: translateY(-2px);
  border-color: #111;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08); }

.works-nav__en {
  font-size: 13px;
  letter-spacing: .18em;
  font-weight: 700;
  color: #777; }

.works-nav__jp {
  font-size: clamp(15px, 2.2vw, 20px);
  font-weight: 500;
  letter-spacing: .08em; }

/****************************
Products Single
****************************/
@media (max-width: 768px) {
  .productswrap {
    padding: 30px 0 40px; } }
.single__cat {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.1em;
  min-width: 5.625rem;
  padding: 0.34375rem 0.625rem;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content; }
  .single__cat--initiatives {
    background: #e6f2ff; }
  .single__cat--achievements {
    background: #fff1e6; }

.product {
  padding: 0px 16px 20px;
  /* パンくず：既存 breadcrumb を流用 */
  /* ============ GRID ============ */
  /* タイトル（PCは左カラムの上、SPは一番上） */
  /* 詳細本文（the_content想定） */
  /* ============ Gallery ============ */
  /* ============ CTA buttons ============ */
  /* ============ NOTE ============ */
  /* ============ RELATED ============ */ }
  .product__inner {
    max-width: 1300px;
    margin: 0 auto 50px auto; }
  .product__crumb {
    margin-bottom: 22px; }
  .product__grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 20px 30px;
    align-items: start; }
  .product__head {
    grid-column: 1 / -1;
    margin-bottom: 8px; }
  .product__title {
    margin: 0;
    font-size: clamp(22px, 2.4vw, 34px);
    line-height: 1.3;
    letter-spacing: .02em;
    border-bottom: 1px solid #a0a0a0;
    padding-bottom: 10px; }
  .product__gallery {
    grid-column: 1; }
  .product__detail {
    grid-column: 2;
    padding-top: 6px;
    /* 画像上端と気持ち揃える */ }
  .product__spec {
    line-height: 1.95;
    font-size: 15px; }
    .product__spec p {
      margin: 0 0 14px; }
    .product__spec h2, .product__spec h3 {
      margin: 26px 0 10px;
      line-height: 1.4; }
    .product__spec ul, .product__spec ol {
      margin: 0 0 14px 1.2em; }
    .product__spec a {
      text-decoration: underline; }
  .product .gallery__main {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #f3f3f3; }
  .product .gallery__mainImg {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover; }
  .product .gallery__thumbs {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; }
  .product .gallery__thumb {
    margin: 0; }
  .product .gallery__thumbBtn {
    width: 100%;
    border: 1px solid #a0a0a0;
    border-radius: 12px;
    padding: 0;
    background: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform .15s ease, border-color .2s ease; }
    .product .gallery__thumbBtn:hover {
      transform: translateY(-1px);
      border-color: #111; }
    .product .gallery__thumbBtn.is-active {
      border-color: #111; }
    .product .gallery__thumbBtn img {
      width: 100%;
      height: auto;
      display: block;
      aspect-ratio: 1 / 1;
      object-fit: cover; }
  .product .product-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 24px;
    max-width: 500px; }
    .product .product-actions__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 44px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 10px;
      text-align: center;
      white-space: nowrap;
      background: #717171;
      color: #fff;
      transition: 0.3s; }
      .product .product-actions__btn:hover {
        transform: translateY(-1px);
        background: #fff;
        color: #717171;
        border: 1px solid #717171; }
      .product .product-actions__btn.is-tel {
        min-width: 120px; }
      .product .product-actions__btn.is-quote {
        min-width: 220px; }
  .product__note {
    margin-top: 44px; }
  .product .note-box {
    border-top: 1px solid #a0a0a0;
    padding: 15px; }
    .product .note-box__title {
      margin: 0 0 10px;
      font-size: 16px;
      letter-spacing: .06em; }
    .product .note-box__body {
      line-height: 1.9;
      font-size: 14px; }
      .product .note-box__body p {
        margin: 0 0 12px; }
  .product__related {
    margin-top: 46px; }
  .product .product-related__title {
    margin: 0 0 16px;
    font-size: 18px;
    letter-spacing: .06em;
    padding: 10px 15px;
    border-bottom: 1px solid #a0a0a0; }
  .product .product-related__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px; }
  .product .product-related__item {
    margin: 0; }
  .product .product-related__link {
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    background: #fff;
    transition: transform .15s ease, border-color .2s ease; }
    .product .product-related__link:hover {
      transform: translateY(-1px);
      border-color: #111; }
  .product .product-related__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden; }
    .product .product-related__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }
  .product .product-related__name {
    display: block;
    padding: 10px 12px 12px;
    font-weight: 500;
    line-height: 1.5;
    font-size: 15px; }

/* =========================
SP layout
商品タイトル → 画像 → 詳細 → 特記 → 関連
========================= */
@media (max-width: 900px) {
  .product {
    padding: 28px 16px 70px; }
    .product__grid {
      grid-template-columns: 1fr;
      gap: 22px; }
    .product__head {
      grid-column: auto;
      margin-bottom: 0; }
    .product__gallery, .product__detail {
      grid-column: auto; }
    .product .gallery__mainImg {
      aspect-ratio: 4 / 3; }
    .product .product-related__list {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px; } }
@media (max-width: 480px) {
  .product .product-actions__btn {
    width: 100%;
    min-width: auto; } }
.product__crumb {
  margin-bottom: 12px; }
  .product__crumb .breadcrumb__list {
    justify-content: flex-start;
    padding: 0; }

.product__crumb {
  margin-left: 0;
  padding-left: 0; }

/* ===== PRODUCTS taxonomy ===== */
.p-ptax {
  /* サムネだけ正方形 */ }
  .p-ptax__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px; }
  .p-ptax__hero {
    text-align: center;
    padding: 64px 0 18px; }
  .p-ptax__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 48px);
    letter-spacing: .08em;
    font-weight: 800;
    line-height: 1.1; }
  .p-ptax__sub {
    margin: 12px 0 0;
    color: #666;
    letter-spacing: .12em; }
  .p-ptax__crumb {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 0 0; }
    .p-ptax__crumb .breadcrumb__list {
      justify-content: flex-start; }
  .p-ptax__listWrap {
    padding: 40px 0 60px; }
  .p-ptax__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .p-ptax__link {
    display: grid;
    grid-template-columns: 96px 1fr;
    gap: 14px;
    align-items: start;
    text-decoration: none;
    color: inherit;
    padding: 14px;
    border: 1px solid #e9e9e9;
    border-radius: 14px;
    transition: transform .15s ease, border-color .2s ease; }
    .p-ptax__link:hover {
      transform: translateY(-1px);
      border-color: #111; }
  .p-ptax__thumb {
    width: 96px;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    background: #f4f4f4; }
    .p-ptax__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .p-ptax__name {
    display: block;
    font-weight: 700;
    line-height: 1.6;
    font-size: 15px; }
  .p-ptax__pager {
    margin-top: 28px; }
    .p-ptax__pager .pagination {
      display: flex;
      justify-content: center;
      gap: 10px;
      align-items: center; }
    .p-ptax__pager .page-numbers {
      display: inline-flex;
      min-width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      border: 1px solid #e3e3e3;
      color: #111;
      text-decoration: none;
      font-weight: 700;
      transition: background .2s ease, border-color .2s ease; }
      .p-ptax__pager .page-numbers.current {
        background: #111;
        color: #fff;
        border-color: #111; }
      .p-ptax__pager .page-numbers:hover {
        border-color: #111; }
  .p-ptax__empty {
    padding: 24px 0;
    color: #666; }

/* SP */
@media (max-width: 768px) {
  .p-ptax__inner {
    padding: 0 18px; }
  .p-ptax__hero {
    padding: 48px 0 12px; }
  .p-ptax__list {
    grid-template-columns: 1fr;
    gap: 12px; }
  .p-ptax__link {
    grid-template-columns: 88px 1fr;
    padding: 12px; }
  .p-ptax__thumb {
    width: 88px; } }
/* =========================
  PRODUCTS Archive
========================= */
.products-archive {
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 0 80px;
  /* サムネ（正方形） */
  /* タイトル */ }
  .products-archive__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
    list-style: none;
    padding: 0;
    margin: 0; }
  .products-archive__item {
    width: 100%; }
  .products-archive__link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease; }
    .products-archive__link:hover {
      transform: translateY(-4px); }
  .products-archive__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 8px;
    margin-bottom: 10px; }
    .products-archive__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block; }
  .products-archive__body {
    margin-top: 10px; }
  .products-archive__title {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: .04em; }
  .products-archive__empty {
    text-align: center;
    color: #666;
    padding: 40px 0; }

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .products-archive__list {
    grid-template-columns: repeat(3, 1fr); } }
/* ===== SP ===== */
@media (max-width: 768px) {
  .products-archive {
    padding: 40px 0 60px; }
    .products-archive__list {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px 16px; }
    .products-archive__title {
      font-size: 13px; } }
/* ===== Small SP ===== */
@media (max-width: 480px) {
  .products-archive__list {
    grid-template-columns: 1fr; } }
/* ===== PRODUCTS Hero ===== */
.products-hero {
  text-align: center;
  padding: 64px 0 24px; }
  .products-hero__title {
    margin: 0;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1; }
  .products-hero__sub {
    margin: 12px 0 0;
    font-size: 14px;
    letter-spacing: .12em;
    color: #666; }

/* SP */
@media (max-width: 768px) {
  .products-hero {
    padding: 48px 0 16px; }
    .products-hero__title {
      font-size: 36px;
      letter-spacing: .1em; }
    .products-hero__sub {
      font-size: 12px; } }
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  margin-top: 50px; }

.page-numbers {
  display: inline-flex;
  min-width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #e3e3e3;
  font-weight: 700; }
  .page-numbers.current {
    background: #111;
    color: #fff; }

/* ===== Contact Form 7 ===== */
.cf7-form {
  max-width: 1000px;
  margin: 0 auto; }

.cf7-row {
  margin-bottom: 20px; }

.cf7-row label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px; }

.cf7-row.is-required label::after {
  content: "必須";
  margin-left: 8px;
  font-size: 11px;
  color: #fff;
  background: #d60000;
  padding: 2px 6px;
  border-radius: 4px; }

.cf7-row input,
.cf7-row textarea,
.cf7-row select {
  width: 100%;
  padding: 14px 16px;
  font-size: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: border-color .2s ease; }

.cf7-row input:focus,
.cf7-row textarea:focus,
.cf7-row select:focus {
  border-color: #0068b7;
  outline: none; }

.cf7-row textarea {
  min-height: 140px;
  resize: vertical; }

.cf7-note {
  font-size: 12px;
  color: #666;
  margin-top: 6px; }

/* 送信ボタン */
.cf7-submit {
  margin-top: 40px;
  text-align: center; }

.cf7-submit input[type="submit"] {
  width: 260px;
  max-width: 100%;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: #0068b7;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, transform .15s ease; }

.cf7-submit input[type="submit"]:hover {
  background: #004f8f;
  transform: translateY(-1px); }

/* エラーメッセージ */
.wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 6px; }

.wpcf7-response-output {
  margin-top: 30px;
  padding: 16px;
  border-radius: 8px; }

/* SP */
@media (max-width: 768px) {
  .cf7-row {
    margin-bottom: 16px; } }
/* 確認画面だけ（.is-confirm）で見た目をテキスト化 */
.cf7-form.is-confirm .wpcf7-form-control {
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: none;
  /* 触れない */ }

/* textarea も高さ固定しないなら */
.cf7-form.is-confirm textarea.wpcf7-form-control {
  resize: none;
  overflow: visible; }

/* selectの▼を消したい場合 */
.cf7-form.is-confirm select.wpcf7-form-control {
  background-image: none; }

/* 添付だけは触れる必要あるので例外で戻す */
.cf7-form.is-confirm input[type="file"].wpcf7-form-control {
  pointer-events: auto;
  border: 1px solid #e6e6e6;
  background: #fff;
  padding: 10px; }

.cf7-confirm {
  max-width: 900px;
  margin: 24px auto 0; }

.cf7-confirm__list {
  border-top: 1px solid #e9e9e9; }

.cf7-confirm__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid #e9e9e9;
  margin: 0; }

.cf7-confirm__row dt {
  font-weight: 700;
  color: #111; }

.cf7-confirm__row dd {
  margin: 0;
  color: #333;
  line-height: 1.8;
  white-space: pre-wrap; }

.cf7-confirm__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 22px; }

.cf7-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-weight: 700;
  cursor: pointer; }

.cf7-btn.is-ghost {
  background: #fff;
  color: #111; }

@media (max-width: 768px) {
  .cf7-confirm__row {
    grid-template-columns: 1fr;
    gap: 8px; }

  .cf7-confirm__actions {
    flex-direction: column; } }
.cf7-confirm [data-confirm="your-message"] {
  white-space: pre-wrap; }

/* =========================
  CF7 共通ボタン
========================= */
.cf7-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .08em;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, transform .2s ease, box-shadow .2s ease; }
  .cf7-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); }
  .cf7-btn:active {
    transform: translateY(0);
    box-shadow: none; }

/* =========================
  確認へボタン
========================= */
.cf7-btn.js-to-confirm {
  background: #111;
  color: #fff; }
  .cf7-btn.js-to-confirm:hover {
    background: #000; }

/* =========================
  戻る（ゴースト）
========================= */
.cf7-btn.is-ghost {
  background: transparent;
  color: #111;
  border: 1px solid #ccc; }
  .cf7-btn.is-ghost:hover {
    background: #f5f5f5; }

/* =========================
  送信ボタン（本送信）
========================= */
.cf7-confirm__submit {
  display: inline-block; }
  .cf7-confirm__submit input[type="submit"] {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .1em;
    border-radius: 9999px;
    background: linear-gradient(135deg, #003a8f, #005fd1);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .25s ease, transform .2s ease, box-shadow .2s ease; }
    .cf7-confirm__submit input[type="submit"]:hover {
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
      background: linear-gradient(135deg, #002f73, #004fb1); }
    .cf7-confirm__submit input[type="submit"]:active {
      transform: translateY(0);
      box-shadow: none; }

/* =========================
  ボタン並び（確認画面）
========================= */
.cf7-confirm__actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px; }
  @media (max-width: 768px) {
    .cf7-confirm__actions {
      flex-direction: column;
      gap: 16px; }
      .cf7-confirm__actions .cf7-btn,
      .cf7-confirm__actions input[type="submit"] {
        width: 100%; } }

/* =========================
  Contact Thanks
========================= */
.thanks {
  padding: 0 24px; }

.thanks__inner {
  max-width: 1100px;
  margin: 0 auto; }

.thanks__head {
  text-align: center;
  margin-bottom: 28px; }

.thanks__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #e6e6e6;
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  margin: 0 0 14px; }

.thanks__title {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: .04em;
  font-weight: 800; }

.thanks__lead {
  margin: 30px auto;
  max-width: 46rem;
  color: #555;
  line-height: 1.9;
  font-size: 15px; }

.thanks__box {
  margin: 28px auto 0;
  max-width: 900px;
  border-radius: 16px;
  background: #fff;
  padding: 0 24px 24px; }

.thanks__boxTitle {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .04em; }

.thanks__list {
  margin: 0;
  padding-left: 1.25em;
  color: #333;
  line-height: 1.9; }
  .thanks__list li {
    margin: 8px 0; }
  .thanks__list strong {
    font-weight: 800; }

.thanks__cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap; }

.thanks__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid #e3e3e3;
  transition: transform .15s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
  cursor: pointer; }
  .thanks__btn:hover {
    transform: translateY(-1px);
    border-color: #111; }
  .thanks__btn.is-primary {
    background: #111;
    color: #fff;
    border-color: #111; }
    .thanks__btn.is-primary:hover {
      opacity: .92; }
  .thanks__btn.is-ghost {
    background: #fff;
    color: #111; }

.thanks__note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 12px;
  color: #777;
  letter-spacing: .02em; }

/* SP */
@media (max-width: 768px) {
  .thanks {
    padding: 56px 18px 72px; }

  .thanks__box {
    padding: 22px 18px 18px; }

  .thanks__cta {
    margin-top: 16px; }

  .thanks__btn {
    min-width: 100%;
    height: 44px; } }
.contact-note {
  margin-bottom: 24px;
  padding: 0 16px 50px 16px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
  max-width: 1000px;
  margin: 0 auto; }
  .contact-note a {
    color: #0068b7;
    font-weight: 700;
    text-decoration: underline; }
    .contact-note a:hover {
      opacity: .85; }

.is-conditional-ready .js-conditional {
  display: none; }

.recruit-lead {
  padding: 0 0 72px 0; }

.recruit-lead__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px 0 24px; }

.recruit-lead__title {
  font-size: clamp(34px, 3.6vw, 45px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0 0 150px; }

.recruit-lead__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
  grid-template-areas: "content media"; }

.recruit-lead__content {
  grid-area: content;
  min-width: 0; }

.recruit-lead__catch {
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 30px; }

.recruit-lead__text {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: 0.02em; }
  .recruit-lead__text p {
    margin: 0 0 14px;
    font-size: 17px; }
    .recruit-lead__text p:last-child {
      margin-bottom: 0; }

.recruit-lead__media {
  grid-area: media;
  margin: 0; }

.recruit-lead__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  object-fit: cover; }

@media (max-width: 768px) {
  .recruit-lead__inner {
    padding: 0; }

  .recruit-lead__title {
    margin-bottom: 18px; }

  .recruit-lead__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    grid-template-areas: "catch" "media" "text"; }

  .recruit-lead__content {
    display: contents; }

  .recruit-lead__catch {
    grid-area: catch;
    margin: 0 0 8px; }

  .recruit-lead__media {
    grid-area: media; }

  .recruit-lead__text {
    grid-area: text;
    font-size: 13px;
    line-height: 2.05; }
    .recruit-lead__text p {
      font-size: 15px; }

  .recruit-lead__media img {
    border-radius: 14px; } }
/* ---------------------------------
  画像を2枚（is-pc / is-sp）で出し分ける場合のみ必要
  ※ <picture> を使ってるなら下は全部消してOK
---------------------------------- */
img.is-pc {
  display: block; }

img.is-sp {
  display: none; }

@media (max-width: 768px) {
  img.is-pc {
    display: none; }

  img.is-sp {
    display: block; } }
.recruit-fit {
  padding: 72px 0; }

.recruit-fit__inner {
  max-width: 1300px;
  margin: 0 auto; }

.recruit-fit__top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 100px; }

.recruit-fit__head {
  min-width: 0; }

.recruit-fit__title {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 900;
  margin: 0 0 18px; }

.recruit-fit__sub {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin: 0 0 14px; }

.recruit-fit__rule {
  display: block;
  width: 200px;
  height: 1px;
  background: rgba(0, 0, 0, 0.18); }

.recruit-fit__body {
  min-width: 0;
  font-size: 17px;
  line-height: 2.1;
  letter-spacing: 0.02em; }
  .recruit-fit__body p {
    margin: 0 0 16px; }
    .recruit-fit__body p:last-child {
      margin-bottom: 0; }

.recruit-fit__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px; }

.recruit-fit__point {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  align-items: center; }

.recruit-fit__icon {
  display: grid;
  place-items: center; }
  .recruit-fit__icon img {
    width: 44px;
    height: auto;
    display: block; }

.recruit-fit__pointText {
  margin: 0;
  font-size: 20px;
  line-height: 1.7;
  font-weight: 500; }

@media (min-width: 768px) {
  /*.recruit-fit__body{
      margin-top: 250px;
  }*/
  .recruit-fit {
    position: relative;
    z-index: 1; }
    .recruit-fit .recruit-back {
      position: absolute;
      background: #FAFAFA;
      width: 100%;
      height: 65%;
      z-index: -1;
      top: 0;
      left: -30%; } }
@media (max-width: 768px) {
  .recruit-fit {
    padding: 44px 0 52px; }

  .recruit-fit__top {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px; }

  .recruit-fit__title {
    margin-bottom: 14px; }

  .recruit-fit__sub {
    font-size: 15px;
    margin-bottom: 12px; }

  .recruit-fit__rule {
    width: 110px; }

  .recruit-fit__body {
    line-height: 2.05; }

  .recruit-fit__points {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px 16px; }

  .recruit-fit__point {
    grid-template-columns: 42px 1fr;
    gap: 10px; }

  .recruit-fit__icon img {
    width: 38px; }

  .recruit-fit__pointText {
    font-size: 18px; } }
.ship-parallax {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 420px;
  overflow: hidden; }

.ship-parallax__img {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 120%;
  height: 140%;
  object-fit: cover;
  transform: translateX(-50%);
  will-change: transform; }

/* ==============================
// SP
// ============================== */
@media (max-width: 768px) {
  .ship-parallax {
    height: 260px; }

  .ship-parallax__img {
    width: 160%;
    height: 160%;
    top: -20%; } }
.workfuture {
  position: relative; }
  .workfuture__bg {
    position: relative;
    background: #134a86;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 0;
    overflow: hidden; }
  .workfuture__overlay {
    position: absolute;
    inset: 0;
    background-image: url("../image/overray.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: 100% auto;
    opacity: 0.2;
    pointer-events: none; }
  .workfuture__inner {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 56px 24px 64px; }
    @media (max-width: 768px) {
      .workfuture__inner {
        padding: 40px 18px 56px; } }
  .workfuture__head {
    text-align: center;
    margin: 30px 0 64px; }
    @media (max-width: 768px) {
      .workfuture__head {
        margin: 10px 0 28px; } }
  .workfuture__title {
    position: relative;
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    font-size: clamp(20px, 2.5vw, 43px); }
    .workfuture__title::after {
      content: "";
      display: block;
      width: 56px;
      height: 2px;
      margin: 14px auto 0;
      background: rgba(255, 255, 255, 0.7); }
  .workfuture__en {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.2em; }
    @media (max-width: 768px) {
      .workfuture__en {
        font-size: 13px;
        letter-spacing: 0.18em; } }
  .workfuture__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px; }
    @media (max-width: 768px) {
      .workfuture__grid {
        grid-template-columns: 1fr;
        gap: 16px; } }
  .workfuture__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
    padding: 30px;
    min-width: 0; }
    @media (max-width: 768px) {
      .workfuture__card {
        padding: 16px 16px 18px; } }
  .workfuture__cardTitle {
    margin: 0 0 12px;
    color: #5575bf;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-size: 25px;
    line-height: 1.4; }
    @media (max-width: 768px) {
      .workfuture__cardTitle {
        font-size: 16px;
        margin-bottom: 10px; } }
  .workfuture__cardBody {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 14px;
    align-items: start; }
    @media (max-width: 768px) {
      .workfuture__cardBody {
        display: flex;
        flex-direction: column;
        gap: 12px; } }
  .workfuture__thumb {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f5f8; }
    .workfuture__thumb img {
      width: 100%;
      display: block;
      object-fit: cover;
      height: 200px; }
    @media (max-width: 768px) {
      .workfuture__thumb {
        width: 100%; }
        .workfuture__thumb img {
          height: 200px; } }
  .workfuture__text {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.02em; }
    .workfuture__text p {
      margin: 0 0 10px; }
      .workfuture__text p:last-child {
        margin-bottom: 0; }
    @media (max-width: 768px) {
      .workfuture__text {
        font-size: 14px;
        line-height: 1.4; } }
  .workfuture__wave {
    position: relative;
    height: 0; }
    .workfuture__wave::after {
      content: "";
      position: absolute;
      left: 50%;
      top: -50px;
      transform: translateX(-50%);
      width: 0;
      height: 0;
      border-left: 50vw solid transparent;
      border-right: 50vw solid transparent;
      border-top: 100px solid #134a86; }
    @media (max-width: 768px) {
      .workfuture__wave::after {
        top: -15px;
        border-top-width: 40px; } }

.workfuture-bottom {
  background: #fff;
  padding: 100px 0 70px; }
  @media (max-width: 768px) {
    .workfuture-bottom {
      padding: 32px 0 54px; } }
  .workfuture-bottom__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center; }
    @media (max-width: 768px) {
      .workfuture-bottom__inner {
        padding: 0 18px; } }
  .workfuture-bottom__title {
    margin: 0 0 8px;
    font-weight: 900;
    letter-spacing: 0.06em;
    font-size: clamp(30px, 2.5vw, 43px);
    color: #2c2c2c; }
  .workfuture-bottom__en {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.3em;
    color: #777; }

.pcbr {
  display: none; }
  @media (max-width: 768px) {
    .pcbr {
      display: block; } }

.recruit-cards {
  padding: 100px 0 60px; }
  @media (max-width: 768px) {
    .recruit-cards {
      padding: 28px 0 44px; } }
  .recruit-cards__inner {
    max-width: 1300px;
    margin: 0 auto; }
  .recruit-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px; }
    @media (max-width: 768px) {
      .recruit-cards__grid {
        grid-template-columns: 1fr;
        gap: 18px; } }

.recruit-card {
  min-width: 0; }
  .recruit-card__link {
    display: block;
    text-decoration: none;
    color: inherit; }
  .recruit-card__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #eee;
    aspect-ratio: 3 / 4; }
    @media (max-width: 768px) {
      .recruit-card__media {
        aspect-ratio: 16 / 14; } }
    .recruit-card__media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transform: scale(1);
      transition: transform .35s ease; }
  .recruit-card__vlabel {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 10px 10px;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .06em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 2px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12); }
    @media (max-width: 768px) {
      .recruit-card__vlabel {
        top: 10px;
        right: 10px;
        padding: 8px 8px;
        font-size: 12px; } }
  .recruit-card__job {
    background: #4a60d8;
    padding: 16px 18px;
    text-align: center;
    color: #fff; }
    @media (max-width: 768px) {
      .recruit-card__job {
        padding: 14px 14px; } }
  .recruit-card__jobTitle {
    margin: 0 0 8px;
    font-weight: 800;
    letter-spacing: .04em;
    font-size: 20px; }
  .recruit-card__jobText {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: .02em;
    opacity: .95; }
  @media (hover: hover) and (pointer: fine) {
    .recruit-card__link:hover .recruit-card__media img {
      transform: scale(1.04); }
    .recruit-card__link:hover .recruit-card__job {
      filter: brightness(1.02); } }

/* ===== サムネイル ===== */
.youtube-trigger {
  position: relative;
  cursor: pointer;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15); }
  .youtube-trigger img {
    width: 100%;
    display: block; }

/* 再生ボタン */
.youtube-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center; }

.youtube-play::before {
  content: "";
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  position: absolute; }

.youtube-play::after {
  content: "";
  border-left: 22px solid #fff;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
  position: relative; }

/* ===== モーダル ===== */
.youtube-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999; }

.youtube-modal.is-open {
  display: block; }

.youtube-modal__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8); }

.youtube-modal__body {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px; }

.youtube-modal__video {
  width: min(960px, 92vw);
  aspect-ratio: 16/9; }

.youtube-modal__video iframe {
  width: 100%;
  height: 100%;
  border: none; }

/* 閉じる */
.youtube-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer; }

.recruit-entry {
  padding: 72px 0;
  background: #fff;
  text-align: center; }

.recruit-entry__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px; }

.recruit-entry__title {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 36px; }

.recruit-entry__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 500px;
  height: 56px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 1px solid #a91212; }
  .recruit-entry__btn.is-primary {
    background: #c51717;
    color: #fff; }
    .recruit-entry__btn.is-primary:hover {
      background: #fff;
      color: #a91212; }
  .recruit-entry__btn.is-secondary {
    background: #fff;
    color: #333;
    border: 1px solid #bbb; }
    .recruit-entry__btn.is-secondary:hover {
      background: #f5f5f5; }

@media (max-width: 768px) {
  .recruit-entry {
    padding: 48px 0; }

  .recruit-entry__title {
    margin-bottom: 28px; }

  .recruit-entry__btn {
    width: 100%;
    min-width: 0;
    height: 52px;
    font-size: 15px; } }
/* CF7フォーム内だけ、ラジオ/チェックをブラウザ標準に戻す */
.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  display: inline-block;
  opacity: 1;
  position: static;
  width: auto;
  height: auto; }

.requidbutton {
  margin-left: 8px;
  font-size: 11px;
  color: #fff;
  background: #d60000;
  padding: 2px 6px;
  border-radius: 4px; }

/* =========================================================
   MultiLine files for CF7：決定版（余白消し + ボタン生かす）
   ========================================================= */
/* ① まず「入力を殺してるCSS」があるなら無効化（最重要） */
.zl-form-control-wrap input[type="file"],
.zl-form-control-wrap input[type="button"],
.zl-form-control-wrap .mfcf7_zl_delete_file {
  display: inline-block !important; }

/* ② “謎のテキストエリア/テキスト入力” を消す（見た目の余白の主犯） */
.zl-form-control-wrap textarea,
.zl-form-control-wrap input[type="text"] {
  display: none !important; }

/* ③ upld-btnのp（謎余白）を詰める：消さない（ボタンが入ってるから） */
.wpcf7 p:has(.wpcf7-form-control-wrap[data-name$="-zl-mfcf7-upld-btn"]) {
  margin: 0 !important;
  padding: 0 !important; }

/* has() が効かない環境向け保険：wrap自体の余白を詰める */
.wpcf7-form-control-wrap[data-name$="-zl-mfcf7-upld-btn"] {
  margin: 0 !important;
  padding: 0 !important; }

/* ④ 追加ボタン（空っぽvalueでも見えるように） */
.zl-form-control-wrap input[type="button"]#mfcf7_zl_add_file {
  width: 100%;
  max-width: 320px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
  font-weight: 700;
  cursor: pointer; }

/* ボタンのラベルをCSSで作る（value=""でもOK） */
.zl-form-control-wrap input[type="button"]#mfcf7_zl_add_file::before {
  content: "ファイルを追加"; }

/* ⑤ ❌ボタンを押しやすく */
.mfcf7_zl_delete_file {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #fff;
  margin-left: 10px; }

/* ===============================
   MultiLine files for CF7
   謎の“テキストエリア枠”を見た目だけ潰す（値は残す）
   =============================== */
/* pluginが作る“保持用textarea/入力”を画面から退避 */
.wpcf7 .zl-form-control-wrap textarea,
.wpcf7 .zl-form-control-wrap input[type="text"] {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important; }

/* もし空白が“ラッパーの余白”由来ならそれも潰す */
.wpcf7 .zl-form-control-wrap {
  margin: 0 !important;
  padding: 0 !important; }

/* 以前出てた “追加ボタン用wrap” は余白ごと消す */
.wpcf7 .wpcf7-form-control-wrap[data-name$="-zl-mfcf7-upld-btn"] {
  display: none !important; }

.wpcf7 p:has(.wpcf7-form-control-wrap[data-name$="-zl-mfcf7-upld-btn"]) {
  display: none !important; }

/* ===============================
   privacypolicy
   =============================== */
.privacy {
  --max: 1100px;
  --pad: 24px;
  --radius: 14px;
  --border: rgba(0, 0, 0, 0.08); }

.privacy__header,
.privacy__body {
  max-width: var(--max);
  margin: 0 auto; }

.privacy__lead {
  margin: 0;
  line-height: 1.9;
  font-size: 17px; }

.privacy__body {
  margin-top: clamp(20px, 3vw, 32px); }

.privacy__section + .privacy__section {
  margin-top: 25px; }

.privacy__heading {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.35;
  margin: 0 0 12px;
  padding-left: 12px;
  position: relative; }
  .privacy__heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: .2em;
    width: 4px;
    height: 1.2em;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.28); }

.privacy__subheading {
  font-size: 18px;
  margin: 18px 0 10px;
  letter-spacing: .01em; }

.privacy__text {
  margin: 0 0 10px;
  line-height: 1.7;
  font-size: 16px; }

.privacy__list {
  margin: 10px 0 0;
  padding-left: 1.2em;
  line-height: 1.7;
  font-size: 16px; }
  .privacy__list li {
    margin: 6px 0; }

.privacy__note {
  margin: 10px 0 0;
  font-size: 14px;
  opacity: .85; }

.privacy__contact {
  margin-top: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.02); }

.privacy__contactLine {
  margin: 6px 0;
  line-height: 1.4;
  font-size: 15px; }
  .privacy__contactLine span {
    display: inline-block; }

.privacy__meta {
  margin: 12px 0 0;
  font-size: 13px;
  opacity: .75; }

@media (prefers-color-scheme: dark) {
  .privacy__section {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none; }

  .privacy__contact {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12); }

  .privacy__heading::before {
    background: rgba(255, 255, 255, 0.35); } }
.card01__label--initiatives {
  background: #e6f2ff; }
.card01__label--achievements {
  background: #fff1e6; }

.headline01__main_mission, .headline01__sub_mission {
  color: #fff; }

.top-news__list-head {
  margin-bottom: 16px; }

.top-news__title {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.3404255319; }

.top-news__sub {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.3636363636;
  margin-top: 0.5rem;
  position: relative; }
  .top-news__sub:after {
    background: #960000;
    bottom: -15px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 4.375rem; }

@media (max-width: 768px) {
  .top-news__list01 {
    margin-bottom: 20px; } }
.btn {
  /* ===== theme ===== */
  --btn-accent: #0b5ed7;
  --btn-text: #ffffff;
  --btn-border: rgba(255, 255, 255, 0.35);
  --btn-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  --btn-shadow-hover: 0 14px 34px rgba(0, 0, 0, 0.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 70px;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  position: relative;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
  -webkit-tap-highlight-color: transparent; }
  .btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.25); }
  .btn:active {
    transform: translateY(1px); }
  .btn .btn__text {
    font-size: 14px; }
  .btn .btn__icon {
    font-size: 16px;
    transform: translateX(0);
    transition: transform .18s ease; }
  .btn:hover .btn__icon {
    transform: translateX(3px); }

/* 背景あり：メインボタン */
.btn--primary {
  color: var(--btn-text);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)), var(--btn-accent);
  box-shadow: var(--btn-shadow); }
  .btn--primary::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(120% 120% at 30% 0%, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0) 50%);
    opacity: .9;
    z-index: -1; }
  .btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--btn-shadow-hover); }

/* 小さめ（カード内、一覧など） */
.btn--sm {
  padding: 10px 14px;
  min-height: 38px; }
  .btn--sm .btn__text {
    font-size: 13px; }
  .btn--sm .btn__icon {
    font-size: 14px; }

/* 横幅100%にしたい時 */
.btn--block {
  width: 100%; }

/* =========================
  items layout
========================= */
.items01__item {
  margin-bottom: 80px; }

.item01 {
  display: flex;
  flex-wrap: wrap; }

/* 5:5 */
.item01__head,
.item01__body,
.item01__img {
  width: 50%; }

/* head / body */
.item01__head,
.item01__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px; }

/* image */
.item01__img {
  margin: 0; }
  .item01__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }

/* =========================
  交互レイアウト（PC）
========================= */
.items01__item:nth-child(even) .item01 {
  flex-direction: row-reverse; }

/* =========================
  スマホ
========================= */
@media (max-width: 767px) {
  .items01__item {
    margin-bottom: 48px; }

  .item01 {
    flex-direction: column; }

  .item01__head,
  .item01__img,
  .item01__body {
    width: 100%;
    padding: 24px; }

  .item01__head {
    order: 1; }

  .item01__img {
    order: 2; }

  .item01__body {
    order: 3; } }
.pagebuttons {
  display: flex;
  justify-content: center;
  gap: 16px; }

/* ===== ボタン ===== */
.btnbusi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 100px;
  min-width: 200px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: #0b3a5b;
  background-color: #ffffff;
  border: 2px solid #0b3a5b;
  border-radius: 9999px;
  transition: background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
  /* 通常時 */
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  /* hover */ }
  .btnbusi:hover {
    background-color: #0b3a5b;
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-2px); }
  .btnbusi:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14); }

/* 矢印 */
.btnbusi__arrow {
  transition: transform 0.25s ease; }

.btnbusi:hover .btnbusi__arrow {
  transform: translateX(6px); }

/* ===== SP ===== */
@media (max-width: 767px) {
  .btnbusi {
    padding: 12px 50px;
    min-width: auto;
    font-size: 14px; } }
/* =========================
   Mega menu (PC only) - FIXED
   - hover切れ対策（ブリッジ）
========================= */
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .header__item.has-mega {
    position: relative; }

  /* ▼ 初期状態：非表示 */
  .header__item.has-mega .mega-menu {
    position: fixed;
    left: 0;
    top: 7.4375rem;
    /* ヘッダー高さに合わせる */
    width: 100vw;
    background: #fff;
    z-index: 5000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    /* ▼ “hover切れ”を潰すブリッジ（透明の当たり判定） */ }
    .header__item.has-mega .mega-menu::before {
      content: "";
      position: absolute;
      left: 0;
      top: -18px;
      /* ヘッダーとメニューの隙間を埋める */
      width: 100%;
      height: 18px;
      /* ←隙間が大きいなら増やす */
      background: transparent; }

  /* ▼ 表示条件：親hover / 親is_active / メニューhover */
  .header__item.has-mega:hover .mega-menu,
  .header__item.has-mega.is_active .mega-menu,
  .header__item.has-mega .mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0); }

  /* ▼ 中身レイアウト */
  .mega-menu__inner {
    margin: 0 auto;
    width: min(100%, 120rem);
    padding: 1.25rem 25px 1.5rem; }

  .mega-menu__list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem; }

  .mega-menu__link {
    display: block;
    border-radius: .5rem;
    overflow: hidden;
    transition: .2s ease;
    background: #fff; }

  /* ▼ サムネ比率（ここを縦長にもできる） */
  .mega-menu__thumb {
    background: #f3f3f3;
    aspect-ratio: 4 / 2;
    overflow: hidden; }

  .mega-menu__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease; }

  .mega-menu__name {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    padding: .6rem .75rem .75rem; }

  /* hover演出 */
  .mega-menu__link:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px); }

  .mega-menu__link:hover .mega-menu__thumb img {
    transform: scale(1.05); } }
.mori-cf7-8 .js-conditional.is-hidden {
  display: none !important; }

.formriquid {
  margin-left: 8px;
  font-size: 11px;
  color: #fff;
  background: #d60000;
  padding: 2px 6px;
  border-radius: 4px; }

.top-products {
  position: relative;
  overflow: hidden;
  padding: 115px 0 140px; }
  .top-products .inner {
    position: relative;
    z-index: 2; }
  .top-products .productsinner {
    background: #024f8a; }
  .top-products .headline01__main,
  .top-products .headline01__sub {
    color: #fff; }
  .top-products::before {
    content: "";
    position: absolute;
    left: -2px;
    top: 0;
    width: calc(100% + 3px);
    height: 220px;
    background-image: url("http://localhost:8888/morikounet/wp-content/themes/morikou_gulp/image/top-products-bgtop.svg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% auto;
    z-index: 1;
    pointer-events: none; }
  .top-products::after {
    content: "";
    position: absolute;
    left: -2px;
    bottom: 0;
    width: calc(100% + 3px);
    height: 220px;
    background-image: url("http://localhost:8888/morikounet/wp-content/themes/morikou_gulp/image/top-products-bgbottom.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    z-index: 1;
    pointer-events: none; }
  .top-products .productswrap {
    width: 100%;
    background: #024f8a; }
    .top-products .productswrap .productsinner {
      max-width: 1300px;
      width: 100%;
      margin: 0 auto;
      /* =========================
         SP
      ========================= */ }
      .top-products .productswrap .productsinner .reason-blocks {
        max-width: 1300px;
        margin: 0 auto;
        padding: 20px; }
      .top-products .productswrap .productsinner .reason-block {
        display: flex;
        gap: 60px;
        margin-bottom: 50px; }
        .top-products .productswrap .productsinner .reason-block:last-child {
          margin-bottom: 0; }
      .top-products .productswrap .productsinner .reason-block--reverse {
        flex-direction: row-reverse; }
      .top-products .productswrap .productsinner .reason-block__text {
        flex: 1;
        color: #fff; }
      .top-products .productswrap .productsinner .reason-block__num {
        font-size: 2.8rem;
        font-weight: 900;
        color: #fff;
        margin-bottom: 20px;
        position: relative; }
        .top-products .productswrap .productsinner .reason-block__num span {
          font-size: 2rem; }
        .top-products .productswrap .productsinner .reason-block__num:after {
          background: #960000;
          bottom: 0;
          content: "";
          height: 2px;
          left: 0;
          position: absolute;
          width: 3.5rem; }
      .top-products .productswrap .productsinner .reason-block__title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.4;
        color: #fff; }
      .top-products .productswrap .productsinner .reason-block__desc {
        font-size: 1.3rem;
        line-height: 1.8;
        color: #fff; }
      .top-products .productswrap .productsinner .reason-block__image {
        flex: 1; }
      .top-products .productswrap .productsinner .reason-block__image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 6px; }
      @media (max-width: 767px) {
        .top-products .productswrap .productsinner .reason-block {
          flex-direction: column;
          gap: 20px;
          margin-bottom: 60px; }
        .top-products .productswrap .productsinner .reason-block--reverse {
          flex-direction: column; }
        .top-products .productswrap .productsinner .reason-block__title {
          font-size: 1.25rem; }
        .top-products .productswrap .productsinner .reason-block__desc {
          font-size: 0.95rem; } }

/* SPは高さだけ少し縮める（任意） */
@media (max-width: 767px) {
  .top-products {
    padding: 80px 0 100px; }
    .top-products::before, .top-products::after {
      height: 140px; } }
.spbanner {
  text-align: center; }
  .spbanner a {
    display: block;
    margin: 20px auto;
    border: 1px solid #666;
    padding: 10px 0;
    width: 50%;
    transition: 0.3s; }
    .spbanner a:hover {
      background: #666;
      color: #fff; }

@media (min-width: 767px) {
  .spbanner {
    display: none; } }
.snsarea {
  position: relative;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start; }
  .snsarea .snsinner .recruit-entry__line img {
    border-radius: 14px; }
  .snsarea .snsinner h3 {
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 700;
    letter-spacing: .04em;
    position: relative;
    display: inline-block;
    margin-bottom: 20px; }
    .snsarea .snsinner h3::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 70px;
      height: 3px;
      background: #960000;
      border-radius: 2px; }
  .snsarea .snsinner .sns-lead {
    margin: 5px 0 10px 0; }

.instagramarea h3 {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 700;
  letter-spacing: .04em;
  position: relative;
  display: inline-block;
  margin-bottom: 20px; }
  .instagramarea h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 70px;
    height: 3px;
    background: #960000;
    border-radius: 2px; }

@media (max-width: 768px) {
  .snsarea {
    grid-template-columns: 1fr;
    gap: 30px; }

  /* 中央ライン消す */
  .snsarea::before {
    display: none; } }
/* ===== 中央ライン ===== */
.snsarea::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(0, 0, 0, 0.5); }

/* =========================
   Sustainability Page
========================= */
.sus {
  padding: clamp(20px, 6vw, 20px) 0; }

/* ===== Head (EN + JP) ===== */
.sus-head {
  text-align: left;
  margin-bottom: 24px; }
  .sus-head--mt {
    margin-top: clamp(44px, 6vw, 72px); }
  .sus-head__en {
    margin: 0 0 6px;
    font-size: 12px;
    letter-spacing: .28em;
    opacity: .55; }
  .sus-head__jp {
    margin: 0;
    font-size: clamp(26px, 2.6vw, 40px);
    line-height: 1.25;
    letter-spacing: .04em;
    font-weight: 800;
    position: relative;
    padding-bottom: 10px; }
    .sus-head__jp::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 84px;
      height: 3px;
      background: #AD224D;
      border-radius: 4px; }
  .sus-head__sub {
    margin: 10px 0 0;
    color: #555;
    line-height: 1.8; }

/* ===== split (text + photo) ===== */
.sus-split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
  margin-bottom: 70px; }
  .sus-split__text p {
    margin: 0 0 14px;
    line-height: 2.0;
    color: #222;
    font-size: 17px; }
  .sus-split__media {
    margin: 0; }
    .sus-split__media img {
      width: 100%;
      height: auto;
      display: block;
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08); }

/* ===== KPI ===== */
.sus-kpi {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 100px; }
  .sus-kpi-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px;
    background: #faf7f2;
    border-radius: 16px; }
    .sus-kpi-card__text {
      flex: 1; }
    .sus-kpi-card__label {
      margin: 0 0 8px;
      font-size: 25px;
      font-weight: 600;
      color: #333;
      letter-spacing: .04em; }
    .sus-kpi-card__value {
      margin: 0 0 10px;
      font-size: 70px;
      font-weight: 900;
      line-height: 1; }
      .sus-kpi-card__value span {
        margin-left: 4px; }
    .sus-kpi-card__desc {
      margin: 0;
      font-size: 17px;
      color: #555;
      line-height: 1.6; }
    .sus-kpi-card__icon {
      opacity: .25;
      margin-left: 20px; }
      .sus-kpi-card__icon img {
        width: 120px;
        height: auto;
        display: block; }

.sus-kpi-card__value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: #005393; }
  .sus-kpi-card__value .js-count {
    display: inline-block;
    min-width: 2ch; }
  .sus-kpi-card__value small {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.2; }

.kpi-num {
  display: inline-block; }

.js-fade-num {
  opacity: 0;
  transform: translateY(16px); }
  .js-fade-num.is-show {
    opacity: 1;
    transform: translateY(0);
    transition: .7s ease; }

/* =========================
   Sustainability Efforts
========================= */
.sus-efforts {
  margin-top: 20px; }

.sus-efforts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px; }

/* 共通 */
.sus-effort {
  display: block; }

/* 上段 */
.sus-effort--wide {
  grid-column: 1 / 3;
  align-items: start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* ★50% / 50% */
  gap: 40px; }

/* 画像 */
.sus-effort__media {
  margin: 0; }
  .sus-effort__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; }

/* テキスト */
.sus-effort__content {
  padding: 10px 0; }

.sus-effort__en {
  font-size: 12px;
  letter-spacing: .22em;
  color: #777;
  margin-bottom: 8px; }

.sus-effort__title {
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.4;
  position: relative;
  display: inline-block; }
  .sus-effort__title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 17px;
    background: #e5e5e5;
    z-index: -1; }

.sus-effort__text {
  font-size: 15px;
  line-height: 1.9;
  color: #333; }
  .sus-effort__text p {
    margin-bottom: 12px; }

/* 下段 */
.sus-efforts__grid > .sus-effort:not(.sus-effort--wide) .sus-effort__media {
  margin-bottom: 14px; }
.sus-efforts__grid > .sus-effort:not(.sus-effort--wide) .sus-effort__title {
  font-size: clamp(20px, 1.6vw, 26px); }

/* SP */
@media (max-width: 768px) {
  .sus-efforts__grid {
    grid-template-columns: 1fr;
    gap: 28px; }

  .sus-effort--wide {
    grid-column: auto;
    grid-template-columns: 1fr; } }
/* ===== “Timeline-ish” panels ===== */
.sus-timeline {
  margin-top: 18px; }

.sus-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; }

.sus-panel {
  background: #0b6a3a;
  color: #fff;
  padding: 30px 23px;
  position: relative;
  overflow: hidden; }
  .sus-panel::before {
    content: "";
    position: absolute;
    inset: -40px -60px auto auto;
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(15deg); }
  .sus-panel__title {
    margin: 0 0 15px;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: .05em;
    position: relative;
    z-index: 1; }
  .sus-panel__text {
    margin: 0;
    line-height: 1.6;
    opacity: .95;
    font-size: 16px;
    position: relative;
    z-index: 1; }

/* ===== CTA ===== */
.sus-cta {
  margin-top: 120px; }

/* タイトル */
.sus-cta__head {
  margin-bottom: 24px; }

.sus-cta__en {
  font-size: 12px;
  letter-spacing: .22em;
  color: #777;
  margin-bottom: 6px; }

.sus-cta__title {
  font-size: clamp(28px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.4; }

/* 画像 */
.sus-cta__media {
  margin: 0 0 26px; }
  .sus-cta__media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 14px;
    display: block; }

/* テキスト */
.sus-cta__text {
  font-size: 17px;
  line-height: 2;
  color: #333;
  margin-top: 30px; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .sus-split {
    grid-template-columns: 1fr; }

  .sus-kpi {
    grid-template-columns: 1fr; }

  .sus-cards {
    grid-template-columns: 1fr; }

  .sus-line {
    grid-template-columns: 1fr; }

  .sus-cta {
    grid-template-columns: 1fr; } }
.profile-table__td span {
  font-weight: 600;
  font-size: 19px; }

.insta {
  margin: 30px auto;display:flex;justify-content: center;
    gap: 20px; }
  .insta img {
    max-width: 400px;
    margin: 0 auto; }
