@charset "UTF-8";
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer reset, base, components, pages, utilities;
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer utilities {
  .m-0 {
    margin: 0;
  }
  .m-1 {
    margin: 8px;
  }
  .m-2 {
    margin: 16px;
  }
  .m-3 {
    margin: 24px;
  }
  .m-4 {
    margin: 32px;
  }
  .m-5 {
    margin: 48px;
  }
  .p-0 {
    padding: 0;
  }
  .p-1 {
    padding: 8px;
  }
  .p-2 {
    padding: 16px;
  }
  .p-3 {
    padding: 24px;
  }
  .p-4 {
    padding: 32px;
  }
  .p-5 {
    padding: 48px;
  }
  .text-center {
    text-align: center;
  }
  .text-left {
    text-align: left;
  }
  .text-right {
    text-align: right;
  }
  .d-flex {
    display: flex;
  }
  .flex-column {
    flex-direction: column;
  }
  .justify-center {
    justify-content: center;
  }
  .justify-between {
    justify-content: space-between;
  }
  .align-center {
    align-items: center;
  }
  .d-grid {
    display: grid;
  }
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .d-none {
    display: none;
  }
  .d-block {
    display: block;
  }
  .d-inline {
    display: inline;
  }
  .d-inline-block {
    display: inline-block;
  }
  .position-relative {
    position: relative;
  }
  .position-absolute {
    position: absolute;
  }
  .position-fixed {
    position: fixed;
  }
  @media (max-width: 767px) {
    .d-md-none {
      display: none;
    }
    .d-md-block {
      display: block;
    }
    .grid-md-1 {
      grid-template-columns: 1fr;
    }
  }
}
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer base {
  .page-content {
    position: relative;
  }
  .page-content section {
    padding: 80px 0 0;
  }
  .page-content .torque-container > *:not(h2) {
    margin-left: 60px;
  }
  @media (width <= 768px) {
    .page-content .torque-container > *:not(h2) {
      margin-left: 0px;
    }
  }
  .page-content h3,
  .page-content h4,
  .page-content h5,
  .page-content h6 {
    color: #000;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .page-content h3 {
    font-size: var(--text-base);
    font-weight: 400;
    letter-spacing: 1.837px;
    position: relative;
    padding-left: 40px;
  }
  .page-content h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: #0083b3;
    border-radius: 50%;
  }
  .page-content h4 {
    font-size: var(--text-sm);
    font-weight: 400;
    letter-spacing: 1.4288px;
    position: relative;
    padding-left: 40px;
  }
  .page-content h4::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 19.322px;
    height: 37.934px;
    background-color: #0083b3;
  }
  .page-content h5 {
    font-size: var(--text-xs);
    font-weight: 600;
  }
  .page-content p {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: var(--text-xs);
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  .page-content b,
  .page-content em {
    font-weight: 600;
    font-size: var(--text-lg);
  }
  .page-content ul {
    margin: 0 0 40px 9px;
  }
  .page-content ul li {
    font-size: var(--text-xs);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    list-style: none;
  }
  .page-content ul li::before {
    content: "";
    width: 18.568px;
    height: 18.568px;
    background: var(--torque-primary) 0 0 no-repeat;
    border-radius: 50%;
    opacity: 0.6;
    display: inline-block;
    margin-right: 10px;
    flex: 0 0 18.568px;
  }
  .page-content ul li > ul {
    margin-bottom: 0;
  }
  .page-content ul li > ul > li {
    margin-left: 30px;
  }
  .page-content ul li > ul > li::before {
    content: "";
    width: 9.2842px;
    height: 9.2842px;
  }
  .page-content ol {
    margin-bottom: 40px;
    counter-reset: list-counter;
  }
  .page-content ol li {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: var(--text-xs);
    line-height: 1.6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 50px;
    counter-increment: list-counter;
    list-style: none;
  }
  .page-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 38.409px;
    height: 38.409px;
    background: var(--torque-primary) 0 0 no-repeat;
    border-radius: 50%;
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-size: 28.575px;
    font-weight: 400;
    color: #fff;
  }
  .page-content a {
    color: #0083b3;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    transition: color 0.3s ease;
  }
  .page-content a:hover {
    color: #be4b3c;
  }
  .page-content a:visited {
    color: #5f508b;
  }
  .page-content img {
    max-width: 100%;
    height: auto;
  }
  .page-content .table-responsive {
    width: fit-content;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 40px 0;
  }
  @media (width <= 768px) {
    .page-content .table-responsive {
      width: 100%;
    }
  }
  .page-content table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    color: #000;
    min-width: 720px;
    border: 1px solid #707070;
  }
  .page-content table th {
    background: #E4E4E5;
    font-weight: 600;
    text-align: center;
    padding: 16px 20px;
    white-space: nowrap;
  }
  .page-content table th,
  .page-content table td {
    padding: 16px 20px;
    vertical-align: top;
    border: 1px solid #707070;
  }
  .page-content dl {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 16px 32px;
    margin: 40px 0;
  }
  @media (width <= 768px) {
    .page-content dl {
      grid-template-columns: 1fr;
      gap: 10px;
    }
  }
  .page-content dl dt {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--torque-primary);
    white-space: nowrap;
  }
  @media (width <= 768px) {
    .page-content dl dt {
      font-size: 18px;
    }
  }
  .page-content dl dd {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: var(--text-xs);
    margin: 0;
  }
  @media (width <= 768px) {
    .page-content dl dd {
      font-size: 18px;
    }
  }
  .page-content dl.tight {
    gap: 8px 24px;
  }
  .page-content .image-grid {
    margin: 40px 0;
    display: grid;
    gap: 20px;
  }
  .page-content .image-grid.grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-content .image-grid.grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-content .image-grid figure {
    margin: 0;
    text-align: center;
  }
  .page-content .image-grid figcaption {
    margin-top: 8px;
    font-size: 16.329px;
    color: #898989;
    text-align: center;
  }
  .page-content .alignleft {
    float: left;
    margin: 0 20px 20px 0;
  }
  .page-content .alignright {
    float: right;
    margin: 0 0 20px 20px;
  }
  .page-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .page-content .columns {
    display: grid;
    gap: 24px;
  }
  .page-content .columns.cols-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-content .columns.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-content .file-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 20.411px;
    color: #0083b3;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    transition: color 0.3s ease;
  }
  .page-content .file-link:hover {
    color: #be4b3c;
  }
  .page-content .file-link::after {
    content: "";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43.369px;
    height: 30.513px;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 26.534px;
    font-weight: 400;
    color: #fff;
    flex-shrink: 0;
  }
  .page-content .file-link.file-type-pdf::after {
    background: url("./assets/images/icon-pdf.svg") 0 0 no-repeat;
  }
  .page-content .file-link.file-type-excel::after {
    background: url("./assets/images/icon-xls.svg") 0 0 no-repeat;
  }
  .page-content .file-link.file-type-word::after {
    background: url("./assets/images/icon-doc.svg") 0 0 no-repeat;
  }
  .page-content .parent-page-title {
    font-size: var(--text-xl);
    font-weight: 400;
    color: var(--torque-white);
    background: var(--torque-primary);
    letter-spacing: 0;
    padding: 25px 0;
  }
  .page-content .child-page-title {
    font-size: var(--text-4xl);
    font-weight: 400;
    color: var(--torque-white);
    background: var(--torque-primary-light);
    letter-spacing: 0;
    padding: 55px 0;
  }
  .page-content .back-button {
    bottom: 64px;
    left: 50%;
    background: var(--torque-primary);
    color: var(--torque-white) !important;
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-size: var(--text-base);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    z-index: 20;
    min-width: 358px;
    justify-content: center;
  }
  @media (width <= 1200px) {
    .page-content .back-button {
      min-width: 280px;
    }
  }
  @media (width <= 768px) {
    .page-content .back-button {
      min-width: 240px;
      padding: 12px 24px;
      font-size: var(--text-sm);
    }
  }
  .page-content .back-button:hover {
    background: var(--torque-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 131, 179, 0.3);
  }
  .page-content .back-button::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url("./assets/images/icon-arrow-round-left.svg") 0 0 no-repeat;
    background-size: 100%;
    flex-shrink: 0;
    transform: translate(-65px, 0%);
  }
  @media (max-width: 768px) {
    .page-header {
      padding: 60px 0 40px 0;
    }
    .page-header .page-title {
      font-size: 36px;
      letter-spacing: 3px;
    }
    .page-content .parent-page-title {
      font-size: var(--text-xs);
    }
    .page-content .child-page-title {
      font-size: var(--text-base);
      padding: 35px 0;
    }
    .page-child .page-content > .torque-container > *:not(h2) {
      margin-left: 20px !important;
    }
    .page-content h1 {
      font-size: 28px;
      letter-spacing: 1px;
      padding-left: 40px;
    }
    .page-content h1::before {
      width: 40px;
      height: 40px;
    }
    .page-content h1::after {
      left: 20px;
      height: 30px;
    }
    .page-content h3 {
      font-size: 20px;
      letter-spacing: 1px;
      padding-left: 30px;
    }
    .page-content h3::before {
      width: 20px;
      height: 20px;
    }
    .page-content h3::after {
      left: 15px;
      width: 15px;
      height: 25px;
    }
    .page-content h4 {
      font-size: 18px;
      letter-spacing: 1px;
      padding-left: 30px;
    }
    .page-content h4::before {
      width: 12px;
      height: 24px;
      left: 4px;
    }
    .page-content ul li {
      padding-left: 0;
    }
    .page-content ul li::before {
      width: 15px;
      height: 15px;
      flex: 0 0 15px;
    }
    .page-content ol li {
      padding-left: 40px;
    }
    .page-content ol li::before {
      width: 30px;
      height: 30px;
    }
    .page-content .file-link .file-icon {
      width: 35px;
      height: 25px;
    }
    .page-content .desc-list {
      grid-template-columns: 1fr;
    }
    .page-content .image-grid.grid-2, .page-content .image-grid.grid-3 {
      grid-template-columns: 1fr;
    }
    .page-content .columns.cols-2, .page-content .columns.cols-3 {
      grid-template-columns: 1fr;
    }
  }
  .page-header {
    background-color: rgba(0, 131, 179, 0.2);
    padding: 100px 0 80px 0;
    position: relative;
  }
  .page-header .torque-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .page-header .page-title {
    font-size: 60.975px;
    font-weight: 400;
    color: #000;
    letter-spacing: 6.0975px;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
  }
  @media (width <= 768px) {
    .page-header .page-title {
      font-size: 40px;
      letter-spacing: 4px;
      margin: 0;
    }
  }
  .page-header .page-subtitle {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 25.425px;
    font-weight: 400;
    color: #0083b3;
    letter-spacing: 1.2713px;
    margin: 0 0 0 20px;
    line-height: 1.4;
    display: inline-block;
    vertical-align: -15px;
  }
  @media (width <= 768px) {
    .page-header .page-subtitle {
      font-size: 18px;
      letter-spacing: 1.1px;
      margin: 0;
      display: block;
    }
  }
  .section-title {
    font-size: var(--text-xl);
    font-weight: 500;
    color: #000;
    letter-spacing: 0;
    margin: 0 0 40px 0;
    width: 100%;
    position: relative;
    padding-left: 50px;
  }
  @media (width <= 768px) {
    .section-title {
      font-size: var(--text-base);
    }
  }
  .section-title::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 57px;
    height: 60px;
    background: url("./assets/images/icon-headline.svg") 0 0 no-repeat;
    z-index: 2;
  }
  @media (width <= 768px) {
    .section-title::before {
      width: 48px;
      height: 51px;
      left: -5px;
    }
  }
  .section-title span {
    text-decoration: underline;
    text-decoration-color: #CCE6F0;
    text-decoration-thickness: 30px;
    text-underline-offset: -17px;
    display: inline;
    width: 100%;
    text-align: left;
    position: relative;
    z-index: 1;
    line-height: 40px;
    left: 40px;
    box-decoration-break: clone;
  }
  @media (width <= 1024px) {
    .section-title span {
      left: 20px;
    }
  }
  @media (width <= 768px) {
    .section-title span {
      left: 0;
      padding-left: 0;
      text-decoration-thickness: 20px;
      text-underline-offset: -7px;
    }
  }
  .section-title::after {
    content: "";
    position: absolute;
    left: 60px;
    top: 15px;
    width: calc(100% - 60px);
    height: 30px;
    background: #CCE6F0;
    z-index: 0;
  }
  @media (width <= 768px) {
    .section-title::after {
      bottom: auto;
      top: 21px;
      left: 37px;
      width: calc(100% - 38px);
      height: 20px;
    }
  }
  .torque-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
  }
  .torque-container-contact {
    max-width: var(--container-width-contact);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
  }
  @media (width <= 1024px) {
    .torque-container {
      padding: 0 20px;
    }
  }
  @media (width <= 768px) {
    .torque-container {
      padding: 0 16px;
    }
  }
  .mark-text {
    padding: 0 10px;
    font-weight: 700;
    display: inline;
    background-image: linear-gradient(transparent 20%, rgb(250, 189, 0) 0%);
    background-size: 0% 50%;
    background-position: left bottom;
    background-repeat: no-repeat;
    transition: background-size 1s ease-out;
  }
  .mark-text.animated {
    background-size: 100% 50%;
  }
}
@layer components {
  /* ヘッダー - Figmaデザイン精密再現 */
  .torque-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 0;
  }
  .torque-header .torque-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  .torque-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
  .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 380px;
  }
  .torque-nav ul {
    display: flex;
    list-style: none;
    gap: 48px;
    align-items: center;
  }
  .torque-nav a {
    color: var(--torque-neutral-900);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
  }
  .torque-nav a:hover,
  .torque-nav a.active {
    color: var(--torque-accent-light);
  }
  .torque-nav .nav-item > a:hover::after,
  .torque-nav .nav-item > a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--torque-accent-light);
  }
  @media (width > 1024px) {
    .torque-nav .nav-item:first-child {
      display: none;
    }
  }
  /* サブメニュー */
  .nav-item,
  .submenu-item {
    position: relative;
  }
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #eeeeef;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 30px 0 0;
    flex-direction: column;
    min-width: 300px;
  }
  .nav-item:last-child .submenu {
    right: 0;
    left: auto;
  }
  .torque-nav .submenu {
    gap: 0;
    padding: 0;
  }
  @media (width <= 768px) {
    .submenu {
      flex-direction: row;
    }
  }
  .nav-item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .submenu-item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  .submenu li {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .submenu a {
    display: grid;
    grid-template-columns: 1fr 30px;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    color: #231815;
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 1.0205px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
  }
  @media (width <= 768px) {
    .submenu a {
      padding: 12px 24px;
    }
  }
  .submenu a:hover {
    background: rgba(0, 131, 179, 0.1);
    color: #0083b3;
  }
  .submenu a::after {
    content: "";
    margin-left: 10px;
    width: 26px;
    height: 21px;
    background: url("./assets/images/icon-arrow-right.svg") 0 0 no-repeat;
  }
  .submenu .submenu {
    top: 0;
    left: 100%;
    margin: 0;
    transform: translateX(16px);
    min-width: 280px;
  }
  .submenu--depth-2 {
    max-width: 200px;
    background: var(--torque-primary-light);
  }
  .submenu--depth-2 a {
    white-space: normal;
    font-size: 12px;
    color: var(--torque-white);
    grid-template-columns: 1fr;
  }
  .submenu--depth-2 a:hover {
    background: var(--torque-primary);
    color: var(--torque-white);
  }
  .submenu--depth-2 a::after {
    display: none;
  }
  /* ハンバーガーメニュー */
  .hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: transform 0.3s ease;
  }
  .hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--torque-neutral-900);
    transition: all 0.3s ease;
    border-radius: 2px;
  }
  .hamburger-menu.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  .hamburger-menu.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .hamburger-menu.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  /* メニュー開閉時のbody固定 */
  body.menu-open {
    overflow: hidden;
  }
  @media (width <= 1024px) {
    .torque-nav ul {
      gap: 32px;
    }
  }
  @media (width <= 1024px) {
    .torque-header {
      padding: 12px 0;
    }
    .torque-header .torque-container {
      height: auto;
      flex-direction: row;
      gap: 0;
      position: relative;
    }
    .logo-img {
      height: 45px;
      max-width: 280px;
    }
    /* ハンバーガーメニュー表示 */
    .hamburger-menu {
      display: flex;
    }
    /* モバイルナビゲーション */
    .torque-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 320px;
      height: 100vh;
      background: var(--torque-white);
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
      z-index: 1000;
      transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow-y: auto;
      padding-top: 80px;
    }
    .torque-nav.active {
      right: 0;
    }
    .torque-nav ul {
      flex-direction: column;
      gap: 0;
      width: 100%;
    }
    .torque-nav li {
      width: 100%;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .torque-nav a {
      padding: 20px 24px;
      font-size: 16px;
      display: block;
      width: 100%;
      position: relative;
      transition: all 0.3s ease;
    }
    .torque-nav a:hover {
      background: var(--torque-primary);
      color: var(--torque-white);
      padding-left: 32px;
    }
    .torque-nav a:hover::after {
      display: none;
    }
    /* モバイル版サブメニュー */
    .submenu {
      position: static;
      opacity: 1;
      visibility: visible;
      transform: none;
      background: rgba(0, 131, 179, 0.05);
      margin: 0;
      padding: 0;
      box-shadow: none;
      border-radius: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .nav-item:hover > .submenu,
    .nav-item.active > .submenu {
      max-height: 1100px;
    }
    .submenu .submenu {
      background: rgba(0, 131, 179, 0.05);
      padding-left: 0;
      margin: 0;
    }
    .submenu-item.active > .submenu {
      max-height: 1100px;
      min-width: 100%;
    }
    .submenu-item > a {
      padding-left: 64px;
    }
    .submenu .submenu .submenu-item > a {
      padding-left: 88px;
    }
    .submenu a {
      padding: 16px 48px;
      font-size: 16px;
      color: #666;
      border-left: 3px solid transparent;
      white-space: normal;
    }
    .submenu a:hover {
      background: rgba(0, 131, 179, 0.1);
      color: #0083b3;
      border-left-color: #0083b3;
      padding-left: 48px;
    }
    /* メニューオーバーレイ */
    .torque-header::before {
      content: "";
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
      z-index: 1;
      pointer-events: none;
    }
    .torque-header:has(.torque-nav.active)::before {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    /* メニューアイテムのアニメーション */
    .torque-nav.active li {
      animation: slideInRight 0.4s ease forwards;
      opacity: 0;
    }
    .torque-nav.active li:nth-child(1) {
      animation-delay: 0.1s;
    }
    .torque-nav.active li:nth-child(2) {
      animation-delay: 0.15s;
    }
    .torque-nav.active li:nth-child(3) {
      animation-delay: 0.2s;
    }
    .torque-nav.active li:nth-child(4) {
      animation-delay: 0.25s;
    }
    .torque-nav.active li:nth-child(5) {
      animation-delay: 0.3s;
    }
    .torque-nav.active li:nth-child(6) {
      animation-delay: 0.35s;
    }
  }
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
}
@layer components {
  /* フッター */
  .torque-footer {
    background: var(--torque-accent-light);
    padding: var(--space-8) 0 var(--space-5);
    color: var(--torque-neutral-900);
  }
  .footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-20);
  }
  .footer-logo {
    width: 220px;
    height: 65px;
    margin: 0 auto var(--space-12);
  }
  .footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .footer-info {
    display: grid;
    /* grid-template-columns: auto 1fr; */
    gap: var(--space-16);
  }
  .footer-address {
    font-size: var(--text-xs);
    line-height: 1.6;
  }
  .footer-address p {
    margin-bottom: var(--space-2);
  }
  .footer-address p:last-child {
    margin-bottom: 0;
  }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(4, auto);
    grid-template-rows: repeat(2, auto);
    gap: var(--space-8);
  }
  .footer-nav a {
    color: var(--torque-neutral-900);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-nav-column h4 {
    font-size: var(--text-lg);
    font-weight: 400;
    margin-bottom: var(--space-4);
  }
  .footer-nav-column .footer-nav-list {
    list-style: none;
  }
  .footer-nav-column .footer-nav-item {
    font-size: 12px;
    margin-bottom: var(--space-2);
    line-height: 1.4;
  }
  .footer-nav-column .footer-nav-list-sub {
    list-style: none;
    margin-top: var(--space-2);
    margin-left: var(--space-4);
  }
  .footer-nav-column .footer-nav-list-sub li {
    margin-bottom: var(--space-2);
  }
  .footer-nav-column li:last-child {
    margin-bottom: 0;
  }
  .footer-bottom {
    text-align: center;
    padding-top: var(--space-16);
  }
  .footer-bottom p {
    font-size: var(--text-xs);
    opacity: 0.8;
  }
  /* ページトップボタン */
  .page-top {
    position: sticky;
    left: 100%;
    bottom: 0;
    width: 100px;
    height: 170px;
    background: var(--torque-primary);
    border: none;
    border-radius: 26px 0 0 0;
    color: var(--torque-white);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(100%);
  }
  .page-top.active {
    opacity: 1;
    transform: translateX(0%);
  }
  .page-top:focus {
    outline: none;
  }
  .page-top img {
    width: 58px;
    height: 54px;
    object-fit: contain;
  }
  .page-top span {
    font-size: var(--text-sm);
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
  /* レスポンシブ対応 - 改善版 */
  @media (width >= 1200px) {
    .footer-nav-column:nth-child(1) {
      grid-row: 1/-1;
    }
    .footer-nav-column:nth-child(2) {
      grid-row: 1/-1;
      grid-column: 2;
    }
    .footer-nav-column:nth-child(4) {
      grid-row: 2;
      grid-column: 3;
    }
    .footer-nav-column:nth-child(6) {
      grid-row: 2;
      grid-column: 4;
    }
  }
  @media (width <= 1200px) {
    .footer-content,
    .footer-info {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 40px;
    }
    .footer-nav {
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      text-align: left;
    }
    .page-top {
      width: 100px;
      height: 160px;
    }
  }
  @media (width < 1024px) {
    .footer-nav {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .page-top {
      width: 80px;
      height: 120px;
    }
    .page-top img {
      width: 40px;
      height: 40px;
    }
    .page-top span {
      font-size: var(--text-xs);
    }
  }
}
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer pages {
  /* ヒーローセクション - Figmaデザイン精密再現 */
  .torque-hero {
    display: flex;
    align-items: center;
    position: relative;
    background: var(--torque-white);
    overflow: hidden;
  }
  .torque-hero::before {
    content: "";
    position: absolute;
    top: 979px;
    left: 0;
    right: 0;
    height: 1078px;
    background: rgba(246, 171, 0, 0.12);
    z-index: 1;
  }
  .torque-hero .torque-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
    min-height: 800px;
  }
  .hero-content {
    z-index: 10;
    padding-right: 40px;
  }
  .hero-title {
    font-size: var(--text-6xl);
    font-weight: 400;
    line-height: 97.971px;
    margin-bottom: 32px;
    color: var(--torque-neutral-900);
    letter-spacing: -0.02em;
    white-space: nowrap;
  }
  .hero-title .highlight {
    color: var(--torque-primary);
  }
  .hero-subtitle {
    font-size: var(--text-2xl);
    line-height: 50.084px;
    color: var(--torque-neutral-900);
    letter-spacing: 0.01em;
    margin-bottom: 32px;
  }
  .hero-graphics {
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .graphic-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--torque-primary);
    opacity: 0;
    animation-duration: 14s;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
  }
  .circle-1 {
    width: 184px;
    height: 184px;
    top: 20px;
    right: 40px;
    animation-name: gatherFromOutside1;
    animation-delay: 0s;
    background: rgb(250, 189, 0);
  }
  .circle-2 {
    width: 91px;
    height: 91px;
    top: 200px;
    right: 10px;
    animation-name: gatherFromOutside2;
    animation-delay: 0.2s;
  }
  .circle-3 {
    width: 163px;
    height: 163px;
    top: 120px;
    right: 80px;
    animation-name: gatherFromOutside3;
    animation-delay: 0.4s;
  }
  .circle-4 {
    width: 241px;
    height: 241px;
    top: 180px;
    right: 20px;
    animation-name: gatherFromOutside4;
    animation-delay: 0.6s;
    background: rgb(137, 137, 137);
  }
  .circle-5 {
    width: 353px;
    height: 353px;
    top: 80px;
    right: 120px;
    animation-name: gatherFromOutside5;
    animation-delay: 0.8s;
    background: rgb(250, 189, 0);
  }
  .circle-6 {
    width: 279px;
    height: 279px;
    top: 60px;
    right: 60px;
    animation-name: gatherFromOutside6;
    animation-delay: 1s;
    background: rgb(137, 137, 137);
  }
  .circle-7 {
    width: 198px;
    height: 198px;
    top: 40px;
    right: 100px;
    animation-name: gatherFromOutside7;
    animation-delay: 1.2s;
  }
  .circle-8 {
    width: 99px;
    height: 99px;
    top: 140px;
    right: 50px;
    animation-name: gatherFromOutside8;
    animation-delay: 1.4s;
    background: rgb(250, 189, 0);
  }
  .circle-9 {
    width: 368px;
    height: 368px;
    top: 200px;
    right: 140px;
    animation-name: gatherFromOutside9;
    animation-delay: 1.6s;
  }
  /* 外側から集まってくるアニメーション - 右上から（柔らかく有機的） */
  @keyframes gatherFromOutside1 {
    0% {
      transform: translate(200px, -200px) scale(0.3);
      opacity: 0;
    }
    20% {
      transform: translate(60px, -60px) scale(1);
      opacity: 0.1;
    }
    30% {
      transform: translate(55px, -55px) scale(1.02);
      opacity: 0.09;
    }
    45% {
      transform: translate(65px, -65px) scale(0.98);
      opacity: 0.5;
    }
    60% {
      transform: translate(58px, -58px) scale(1.01);
      opacity: 0.5;
    }
    75% {
      transform: translate(62px, -62px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(60px, -60px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(200px, -200px) scale(0.3);
      opacity: 0;
    }
  }
  /* 外側から集まってくるアニメーション - 右下から（柔らかく有機的） */
  @keyframes gatherFromOutside2 {
    0% {
      transform: translate(250px, 250px) scale(0.2);
      opacity: 0;
    }
    20% {
      transform: translate(70px, 70px) scale(1);
      opacity: 0.1;
    }
    32% {
      transform: translate(65px, 65px) scale(1.02);
      opacity: 0.11;
    }
    47% {
      transform: translate(75px, 75px) scale(0.98);
      opacity: 0.5;
    }
    62% {
      transform: translate(68px, 68px) scale(1.01);
      opacity: 0.5;
    }
    77% {
      transform: translate(72px, 72px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(70px, 70px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(250px, 250px) scale(0.2);
      opacity: 0;
    }
  }
  /* 外側から集まってくるアニメーション - 右から（柔らかく有機的） */
  @keyframes gatherFromOutside3 {
    0% {
      transform: translate(300px, -50px) scale(0.4);
      opacity: 0;
    }
    20% {
      transform: translate(80px, -15px) scale(1);
      opacity: 0.1;
    }
    33% {
      transform: translate(75px, -10px) scale(1.02);
      opacity: 0.11;
    }
    48% {
      transform: translate(85px, -20px) scale(0.98);
      opacity: 0.5;
    }
    63% {
      transform: translate(78px, -13px) scale(1.01);
      opacity: 0.5;
    }
    78% {
      transform: translate(82px, -17px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(80px, -15px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(300px, -50px) scale(0.4);
      opacity: 0;
    }
  }
  /* 外側から集まってくるアニメーション - 下から（柔らかく有機的） */
  @keyframes gatherFromOutside4 {
    0% {
      transform: translate(100px, 300px) scale(0.35);
      opacity: 0;
    }
    20% {
      transform: translate(25px, 90px) scale(1);
      opacity: 0.1;
    }
    34% {
      transform: translate(20px, 85px) scale(1.02);
      opacity: 0.11;
    }
    49% {
      transform: translate(30px, 95px) scale(0.98);
      opacity: 0.5;
    }
    64% {
      transform: translate(23px, 88px) scale(1.01);
      opacity: 0.5;
    }
    79% {
      transform: translate(27px, 92px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(25px, 90px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(100px, 300px) scale(0.35);
      opacity: 0;
    }
  }
  /* 外側から集まってくるアニメーション - 左上から（柔らかく有機的） */
  @keyframes gatherFromOutside5 {
    0% {
      transform: translate(-280px, -280px) scale(0.25);
      opacity: 0;
    }
    20% {
      transform: translate(-90px, -90px) scale(1);
      opacity: 0.1;
    }
    31% {
      transform: translate(-85px, -85px) scale(1.02);
      opacity: 0.11;
    }
    46% {
      transform: translate(-95px, -95px) scale(0.98);
      opacity: 0.5;
    }
    61% {
      transform: translate(-88px, -88px) scale(1.01);
      opacity: 0.5;
    }
    76% {
      transform: translate(-92px, -92px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(-90px, -90px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(-280px, -280px) scale(0.25);
      opacity: 0;
    }
  }
  /* 外側から集まってくるアニメーション - 上から（柔らかく有機的） */
  @keyframes gatherFromOutside6 {
    0% {
      transform: translate(-80px, -320px) scale(0.3);
      opacity: 0;
    }
    20% {
      transform: translate(-20px, -100px) scale(1);
      opacity: 0.1;
    }
    32% {
      transform: translate(-15px, -95px) scale(1.02);
      opacity: 0.11;
    }
    47% {
      transform: translate(-25px, -105px) scale(0.98);
      opacity: 0.5;
    }
    62% {
      transform: translate(-18px, -98px) scale(1.01);
      opacity: 0.5;
    }
    77% {
      transform: translate(-22px, -102px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(-20px, -100px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(-80px, -320px) scale(0.3);
      opacity: 0;
    }
  }
  /* 外側から集まってくるアニメーション - 左から（柔らかく有機的） */
  @keyframes gatherFromOutside7 {
    0% {
      transform: translate(-350px, 100px) scale(0.28);
      opacity: 0;
    }
    20% {
      transform: translate(-110px, 30px) scale(1);
      opacity: 0.1;
    }
    33% {
      transform: translate(-105px, 25px) scale(1.02);
      opacity: 0.11;
    }
    48% {
      transform: translate(-115px, 35px) scale(0.98);
      opacity: 0.5;
    }
    63% {
      transform: translate(-108px, 28px) scale(1.01);
      opacity: 0.5;
    }
    78% {
      transform: translate(-112px, 32px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(-110px, 30px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(-350px, 100px) scale(0.28);
      opacity: 0;
    }
  }
  /* 外側から集まってくるアニメーション - 右下から（柔らかく有機的） */
  @keyframes gatherFromOutside8 {
    0% {
      transform: translate(220px, 180px) scale(0.32);
      opacity: 0;
    }
    20% {
      transform: translate(60px, 50px) scale(1);
      opacity: 0.1;
    }
    34% {
      transform: translate(55px, 45px) scale(1.02);
      opacity: 0.11;
    }
    49% {
      transform: translate(65px, 55px) scale(0.98);
      opacity: 0.5;
    }
    64% {
      transform: translate(58px, 48px) scale(1.01);
      opacity: 0.5;
    }
    79% {
      transform: translate(62px, 52px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(60px, 50px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(220px, 180px) scale(0.32);
      opacity: 0;
    }
  }
  /* 外側から集まってくるアニメーション - 下から大きく（柔らかく有機的） */
  @keyframes gatherFromOutside9 {
    0% {
      transform: translate(150px, 350px) scale(0.2);
      opacity: 0;
    }
    20% {
      transform: translate(45px, 120px) scale(1);
      opacity: 0.1;
    }
    32% {
      transform: translate(40px, 115px) scale(1.03);
      opacity: 0.11;
    }
    47% {
      transform: translate(50px, 125px) scale(0.97);
      opacity: 0.5;
    }
    62% {
      transform: translate(43px, 118px) scale(1.01);
      opacity: 0.5;
    }
    77% {
      transform: translate(47px, 122px) scale(0.99);
      opacity: 0.5;
    }
    98% {
      transform: translate(45px, 120px) scale(1);
      opacity: 0;
    }
    100% {
      transform: translate(150px, 350px) scale(0.2);
      opacity: 0;
    }
  }
  .cta-button {
    bottom: 64px;
    left: 50%;
    background: var(--torque-primary);
    color: var(--torque-white);
    padding: 16px 32px;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    font-size: var(--text-sm);
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    z-index: 20;
    min-width: 358px;
    justify-content: center;
  }
  .cta-button:hover {
    background: var(--torque-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 131, 179, 0.3);
  }
  .cta-button::after {
    content: "";
    display: inline-block;
    width: 36px;
    height: 36px;
    background: url("./assets/images/icon-arrow-round-right.svg") 0 0 no-repeat;
    background-size: 100%;
    margin-left: 25px;
    flex: 0 0 36px;
  }
  @media (width <= 1024px) {
    .torque-hero .torque-container {
      grid-template-columns: 1fr;
      gap: 60px;
      text-align: center;
    }
    .hero-content {
      padding-right: 0;
    }
    .hero-graphics {
      height: 400px;
    }
    .cta-button {
      min-width: 280px;
    }
  }
  @media (width <= 768px) {
    .torque-hero {
      padding-top: 100px;
    }
    .torque-hero .torque-container {
      gap: 40px;
    }
    .hero-title {
      font-size: var(--text-4xl);
      line-height: 1.3;
      margin-bottom: 24px;
    }
    .hero-subtitle {
      font-size: var(--text-lg);
      line-height: 1.6;
    }
    .hero-graphics {
      height: 300px;
    }
    .cta-button {
      min-width: 240px;
      padding: 12px 24px;
      font-size: var(--text-sm);
    }
    .cta-button .arrow {
      width: 28px;
      height: 28px;
      font-size: 14px;
    }
  }
  /* サービスセクション - Figmaデザイン高精度再現 */
  .torque-service {
    padding: 120px 0;
    background: rgba(246, 171, 0, 0.12);
    position: relative;
  }
  .service-content {
    position: relative;
    z-index: 10;
  }
  .service-title {
    font-size: var(--text-4xl);
    color: var(--torque-neutral-900);
    text-align: left;
    margin-bottom: 32px;
    line-height: 60.521px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .service-subtitle {
    font-size: var(--text-2xl);
    color: var(--torque-primary);
    text-align: center;
    margin-bottom: 80px;
    line-height: 36.739px;
    font-weight: 400;
  }
  .before-after-diagram {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .diagram-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
  }
  .service-description {
    margin: 0 0 75px;
    max-width: 900px;
  }
  .service-description span {
    display: inline;
    background: var(--torque-white);
    font-size: var(--text-lg);
    color: var(--torque-primary);
    line-height: 40.575px;
    font-weight: 400;
    letter-spacing: 0.05em;
    padding: 5px 10px;
  }
  .service-description p:last-child {
    margin-bottom: 0;
  }
  .service-cta {
    text-align: center;
  }
  .service-cta .cta-button {
    position: static;
    transform: none;
    display: inline-flex;
    margin: 0 auto;
  }
  .service-cta .cta-button:hover {
    transform: translateY(-2px);
  }
  @media (width <= 1200px) {
    .before-after-diagram {
      max-width: 100%;
      margin-bottom: 60px;
    }
    .service-description {
      padding: 32px 40px;
      margin-bottom: 60px;
    }
  }
  @media (width <= 768px) {
    .torque-service {
      padding: 80px 0;
    }
    .service-title {
      font-size: var(--text-3xl);
      margin-bottom: 24px;
      text-align: center;
    }
    .service-subtitle {
      font-size: var(--text-xl);
      margin-bottom: 48px;
    }
    .before-after-diagram {
      margin-bottom: 40px;
    }
    .service-description {
      padding: 24px 32px;
      margin-bottom: 40px;
    }
    .service-description p {
      font-size: var(--text-base);
      margin-bottom: 8px;
    }
  }
  /* お悩みセクション - Figmaデザイン高精度再現 */
  .torque-problem {
    padding: 120px 0;
    background: rgba(137, 137, 137, 0.15);
    position: relative;
  }
  .problem-title {
    font-size: var(--text-2xl);
    color: var(--torque-primary);
    text-align: center;
    margin-bottom: 80px;
    line-height: 40.821px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .problem-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
  }
  .problem-card {
    display: flex;
    flex: 0 0 calc(33.333% - 40px);
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
  }
  @media (width <= 1024px) {
    .problem-card {
      flex: 0 0 40%;
    }
  }
  .problem-card::before {
    content: "";
    position: absolute;
    right: 40px;
    bottom: 2px;
    width: 50px;
    height: 50px;
    background: url("./assets/images/icon-arrow-round.svg");
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
  }
  .problem-card:hover::before {
    transform: translateX(10px);
  }
  .problem-card:hover {
    transform: translateY(-8px);
  }
  .card-circle {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    max-width: 100%;
    max-height: 100%;
    border-radius: 50%;
    background: var(--torque-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
  }
  .problem-card:hover .card-circle {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    transform: scale(1.05);
  }
  .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transform: scale(0.8);
  }
  .card-icon img {
    object-fit: contain;
  }
  .card-title {
    font-size: var(--text-sm);
    color: var(--torque-neutral-900);
    line-height: 36.739px;
    font-weight: 400;
    letter-spacing: -0.05em;
    text-align: center;
  }
  @media (width <= 1200px) {
    .card-circle {
      width: 100%;
      height: auto;
      padding: 32px;
      aspect-ratio: 1/1;
      max-width: 100%;
      max-height: 100%;
    }
    .card-icon {
      transform: scale(0.7);
    }
    .card-title {
      font-size: 20px;
      line-height: 1.5;
    }
  }
  @media (width <= 768px) {
    .torque-problem {
      padding: 80px 0;
    }
    .problem-title {
      font-size: var(--text-xl);
      margin-bottom: 48px;
    }
    .card-circle {
      width: 280px;
      height: 280px;
      padding: 28px;
    }
    .card-icon {
      transform: scale(0.6);
    }
    .card-title {
      font-size: 18px;
      line-height: 1.4;
    }
  }
  /* 代表メッセージ - Figmaデザイン高精度再現 */
  .torque-message {
    padding: 20px 0 0;
    /* background: var(--torque-white); */
    position: relative;
    overflow: hidden;
  }
  .torque-message .torque-container {
    max-width: 1500px;
    padding: 20px 0 0 0;
  }
  .torque-message .torque-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("./assets/images/bg-message.png");
    background-size: cover;
    background-position: 70%;
    background-repeat: no-repeat;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  @media (width <= 768px) {
    .torque-message .torque-container::before {
      display: block;
      opacity: 0.5;
    }
  }
  .message-content {
    position: relative;
    z-index: 10;
    max-width: 50%;
    margin-right: auto;
    align-items: center;
    padding: 120px 0 120px 60px;
  }
  .message-title {
    font-size: var(--text-3xl);
    color: var(--torque-neutral-900);
    margin-bottom: 0;
    line-height: 56.992px;
    font-weight: 400;
    letter-spacing: 0.05em;
    grid-column: 1;
  }
  .message-text {
    font-size: var(--text-sm);
    color: var(--torque-neutral-900);
    line-height: 40.821px;
    font-weight: 400;
    letter-spacing: 0.02em;
    grid-column: 2;
    grid-row: 1;
  }
  .message-cta {
    grid-column: 1/-1;
    text-align: left;
    margin-top: 60px;
  }
  .message-cta .cta-button {
    left: 10px;
    transform: none;
    display: inline-flex;
  }
  .message-cta .cta-button:hover {
    transform: translateY(-2px);
  }
  @media (width <= 1024px) {
    .message-content {
      grid-template-columns: 1fr;
      gap: 40px;
      text-align: center;
    }
    .message-title {
      grid-column: 1;
    }
    .message-text {
      grid-column: 1;
      grid-row: 2;
    }
    .message-cta {
      grid-column: 1;
      margin-top: 40px;
    }
  }
  @media (width <= 768px) {
    .message-content {
      gap: 32px;
      margin: 0 auto;
      max-width: 100%;
      padding: 30px 30px 120px 30px;
    }
    .message-title {
      font-size: var(--text-2xl);
      line-height: 1.4;
    }
    .message-text {
      font-size: 18px;
      line-height: 1.6;
    }
    .message-cta {
      margin-top: 32px;
      text-align: center;
    }
  }
  /* ニュースセクション - Figmaデザイン高精度再現 */
  .torque-news {
    padding: 120px 0;
    background: var(--torque-white);
    position: relative;
    overflow: hidden;
  }
  .news-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
  }
  .news-title {
    font-size: var(--text-4xl);
    color: var(--torque-neutral-900);
    text-align: center;
    margin-bottom: 64px;
    line-height: 60.521px;
    font-weight: 400;
    letter-spacing: 0.05em;
  }
  .news-list {
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
  }
  .news-item {
    display: grid;
    grid-template-columns: 105px 180px 1fr;
    gap: 48px;
    align-items: start;
    padding: 24px 0;
    text-decoration: none;
  }
  .news-item:last-child {
    border-bottom: none;
  }
  .news-date {
    font-size: var(--text-sm);
    color: var(--torque-neutral-900);
    font-weight: 400;
    line-height: 40.821px;
    letter-spacing: 0.02em;
  }
  .news-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .news-category a {
    color: var(--torque-white);
    text-decoration: none;
    font-size: var(--text-xs);
    background: var(--torque-primary);
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 400;
    line-height: 40.821px;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }
  .news-text {
    font-size: var(--text-sm);
    color: var(--torque-neutral-900);
    line-height: 40.821px;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
  }
  .news-cta {
    text-align: center;
  }
  .news-cta .cta-button {
    position: static;
    transform: none;
    display: inline-flex;
    margin: 0 auto;
  }
  .news-cta .cta-button:hover {
    transform: translateY(-2px);
  }
  .news-graphics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  :not(.animated) .news-graphics .graphic-circle {
    animation-play-state: paused;
  }
  .animated .news-graphics .graphic-circle {
    animation-play-state: running;
  }
  .news-graphics .circle-1 {
    width: 360px;
    height: 360px;
    background: rgba(0, 131, 179, 0.3);
    border-radius: 50%;
    top: 100%;
    right: 0;
  }
  .news-graphics .circle-2 {
    width: 550px;
    height: 550px;
    background: rgba(250, 189, 0, 0.3);
    border-radius: 50%;
    top: -15%;
    left: -50%;
  }
  .news-graphics .circle-3 {
    width: 360px;
    height: 360px;
    background: rgba(137, 137, 137, 0.3);
    border-radius: 50%;
    top: -200px;
    right: -148px;
  }
  @media (width <= 768px) {
    .torque-news {
      padding: 80px 0;
    }
    .news-title {
      font-size: var(--text-3xl);
      margin-bottom: 48px;
    }
    .news-list {
      margin-bottom: 48px;
      gap: 16px;
    }
    .news-item {
      grid-template-columns: 105px 1fr;
      gap: 12px;
      padding: 20px 0;
    }
    .news-date {
      font-size: 16px;
    }
    .news-text {
      line-height: 1.6;
      grid-column: 1/-1;
    }
  }
  /* お問い合わせセクション */
  .torque-contact {
    padding: var(--space-20) 0;
    background: var(--torque-neutral-600);
    margin-bottom: -120px;
  }
  .contact-title {
    font-size: var(--text-5xl);
    font-weight: 400;
    color: var(--torque-primary);
    text-align: center;
    margin-bottom: var(--space-16);
    line-height: 1.4;
  }
  .contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    margin-bottom: var(--space-8);
  }
  .contact-btn {
    background: var(--torque-primary-light);
    color: var(--torque-white);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--border-radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: all 0.3s ease;
  }
  .contact-btn:hover {
    background: var(--torque-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 157, 195, 0.3);
  }
  .btn-icon {
    width: 42px;
    height: 28px;
    flex-shrink: 0;
  }
  .btn-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .btn-text {
    flex: 1;
  }
  .btn-main {
    display: block;
    font-size: var(--text-lg);
    font-weight: 400;
    margin-bottom: var(--space-1);
  }
  @media (width <= 768px) {
    .btn-main {
      font-size: var(--text-sm);
    }
  }
  .btn-sub {
    display: block;
    font-size: var(--text-sm);
    opacity: 0.9;
  }
  @media (width <= 768px) {
    .btn-sub {
      font-size: var(--text-xs);
    }
  }
  .contact-phone {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
  }
  .phone-btn {
    background: var(--torque-accent);
    color: var(--torque-white);
    padding: var(--space-2) var(--space-6);
    border-radius: var(--border-radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-4);
    transition: all 0.3s ease;
  }
  .phone-btn:hover {
    background: var(--torque-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 171, 0, 0.3);
  }
  .phone-icon {
    width: 41px;
    height: 54px;
    flex-shrink: 0;
  }
  .phone-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .phone-number {
    font-size: var(--text-xl);
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  .cafe-btn {
    background: var(--torque-white);
    color: var(--torque-primary);
    padding: var(--space-6);
    border-radius: var(--border-radius);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: var(--space-1);
    transition: all 0.3s ease;
  }
  .cafe-btn:hover {
    background: var(--torque-neutral-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 131, 179, 0.2);
  }
  .cafe-icon {
    width: 40px;
    height: 35px;
    flex-shrink: 0;
  }
  .cafe-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .cafe-text {
    font-size: var(--text-xl);
    font-weight: 400;
    letter-spacing: -0.05em;
  }
  @media (width <= 768px) {
    .cafe-text {
      font-size: var(--text-sm);
    }
  }
  /* レスポンシブ対応 - 改善版 */
  @media (width <= 1200px) {
    .contact-buttons,
    .contact-phone {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  /* アニメーション */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .torque-hero,
  .torque-service,
  .torque-problem,
  .torque-message,
  .torque-news,
  .torque-contact {
    animation: fadeInUp 0.8s ease-out;
  }
  /* パルス効果 - 人が集まる印象 */
  @keyframes pulse {
    0%, 100% {
      opacity: 0.15;
      transform: scale(1);
    }
    50% {
      opacity: 0.25;
      transform: scale(1.05);
    }
  }
  /* スクロールフェードアップアニメーション */
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .fade-up {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-up.animated {
    opacity: 1;
    animation: fadeUp 0.8s ease-out forwards;
  }
  /* アクセシビリティ - モーション削減 */
  @media (prefers-reduced-motion: reduce) {
    .graphic-circle {
      animation: none !important;
      transition: none !important;
    }
    .torque-hero,
    .torque-service,
    .torque-problem,
    .torque-message,
    .torque-news,
    .torque-contact {
      animation: none !important;
    }
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }
}
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer pages {
  .child-page-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .child-page-nav a {
    padding: 30px 80px;
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--torque-white);
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    background: #339cc2;
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 12.273px;
    transition: all 0.3s ease;
    position: relative;
  }
  @media (width <= 768px) {
    .child-page-nav a {
      font-size: var(--text-xs);
      padding: 10px 30px;
    }
  }
  .child-page-nav a:hover {
    background: #006699;
  }
  .child-page-nav a::after {
    content: "";
    width: 30px;
    height: 30px;
    background: #fff url("./assets/images/icon-arrow-right.svg") 50% 50%/contain no-repeat;
    background-size: 15px;
    border-radius: 50%;
    flex: 0 0 30px;
  }
}
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer pages {
  .torque-philosophy .philosophy-highlight {
    margin-bottom: 40px;
    margin-left: 60px;
  }
  @media (width <= 768px) {
    .torque-philosophy .philosophy-highlight {
      margin-left: 0;
    }
  }
  .torque-philosophy .philosophy-highlight .philosophy-subtitle {
    font-weight: 400;
    color: #000;
    letter-spacing: 1.4288px;
    margin: 0;
    position: relative;
    padding-left: 30px;
  }
  .torque-philosophy .philosophy-highlight .philosophy-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 19.322px;
    height: 37.934px;
    background-color: #0083b3;
    border-radius: 0;
  }
  .torque-philosophy .philosophy-description {
    margin-left: 60px;
  }
  @media (width <= 768px) {
    .torque-philosophy .philosophy-description {
      margin-left: 0;
    }
  }
  .torque-top-message {
    padding: 80px 0 0;
  }
  .torque-top-message .top-message-content {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto 1fr;
    gap: 0 60px;
    align-items: start;
  }
  .torque-top-message .section-title {
    grid-column: 1/-1;
  }
  .torque-top-message .message-text {
    grid-row: 2;
  }
  .torque-top-message .message-image {
    padding-left: 70px;
  }
  .torque-top-message .message-image img {
    width: 100% !important;
    height: 400px;
    object-fit: contain;
  }
  .torque-office {
    padding: 80px 0;
  }
  .torque-office .office-content {
    max-width: 1240px;
    margin: 0 auto;
  }
  .torque-office .office-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
  }
  .torque-office .office-info .office-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
  }
  @media (width <= 768px) {
    .torque-office .office-info .office-map {
      padding-left: 0;
    }
  }
  .torque-office .office-info .office-map .office-map-item {
    width: 100%;
    height: 100%;
  }
  .torque-office .office-info .office-map .office-map-item iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
  .torque-office .office-info .office-details .detail-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 30px;
    margin-bottom: 24px;
  }
  .torque-office .office-info .office-details .detail-item .detail-label {
    color: #0083b3;
    letter-spacing: 1.0206px;
  }
  .torque-office .office-info .office-details .detail-item .detail-value {
    color: #040000;
    line-height: 1.6;
  }
  @media (width <= 768px) {
    .page-header {
      padding: 80px 0 60px 0;
    }
    .page-header .torque-container {
      padding: 0 15px;
    }
    .torque-philosophy .philosophy-content,
    .torque-philosophy .message-content,
    .torque-philosophy .office-content,
    .torque-top-message .philosophy-content,
    .torque-top-message .message-content,
    .torque-top-message .office-content,
    .torque-office .philosophy-content,
    .torque-office .message-content,
    .torque-office .office-content {
      padding: 0;
    }
    .torque-philosophy .philosophy-subtitle::before,
    .torque-top-message .philosophy-subtitle::before,
    .torque-office .philosophy-subtitle::before {
      left: -15px;
      width: 15px;
      height: 30px;
    }
    .torque-top-message .message-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .torque-top-message .message-image {
      padding-left: 0;
      grid-column: 1/-1;
      grid-row: 2;
    }
    .torque-top-message .message-text {
      grid-column: 1/-1;
      grid-row: 3;
    }
    .torque-office .office-info {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .torque-office .office-info .office-map {
      height: 300px;
    }
  }
}
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer pages {
  .torque-mission-intro {
    padding: 80px 0;
  }
  .torque-mission-intro .mission-intro-text {
    margin-left: 60px;
  }
  .torque-mission-intro .mission-intro-text p {
    margin: 0 0 20px 0;
  }
  .torque-mission-intro .mission-intro-text p:last-child {
    margin-bottom: 0;
  }
  .torque-mission-intro .approach-roles {
    margin-left: 60px;
    margin-bottom: 40px;
    display: grid;
    gap: 20px;
  }
  .torque-mission-intro .approach-roles .role-item .role-badge {
    border: 3.84px solid #0083b3;
    border-radius: 24.318px;
    color: #000;
    font-size: var(--text-sm);
    font-weight: 400;
    padding: 20px;
    text-align: center;
    line-height: 1.4;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 0;
  }
  @media (width <= 768px) {
    .torque-mission-intro .approach-roles .role-item .role-badge {
      display: inline-block;
    }
  }
  .torque-mission-intro .approach-roles .role-item .role-badge::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 14px;
    right: 14px;
    bottom: 10px;
    background-color: rgba(0, 131, 179, 0.2);
    border-radius: 24.318px;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
  }
  .torque-mission-purpose .mission-purpose-text {
    margin-left: 60px;
  }
  .torque-mission-purpose .mission-purpose-text p {
    margin: 0 0 20px 0;
  }
  .torque-mission-purpose .mission-purpose-text p:last-child {
    margin-bottom: 0;
  }
  .torque-mission-approach .mission-approach-text {
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .torque-mission-approach .approach-features {
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .torque-mission-approach .approach-features .feature-item {
    margin-bottom: 40px;
  }
  .torque-mission-approach .approach-features .feature-item:last-child {
    margin-bottom: 0;
  }
  .torque-mission-approach .approach-features .feature-item .feature-title {
    font-weight: 400;
    color: #000;
    letter-spacing: 1.4288px;
    margin: 0 0 20px 0;
    position: relative;
    padding-left: 30px;
  }
  .torque-mission-approach .approach-features .feature-item .feature-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 19.322px;
    height: 37.934px;
    background-color: #0083b3;
    border-radius: 0;
  }
  .torque-mission-approach .approach-features .feature-item .feature-description {
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0;
  }
  .torque-mission-approach .mission-essence {
    margin-left: 60px;
  }
  .torque-mission-support {
    padding: 80px 0;
  }
  .torque-mission-support .support-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-left: 60px;
    margin-bottom: 40px;
  }
  @media (width <= 1024px) {
    .torque-mission-support .support-stages {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-left: 0;
    }
  }
  @media (width <= 576px) {
    .torque-mission-support .support-stages {
      grid-template-columns: 1fr;
    }
  }
  .torque-mission-support .support-stages .stage-item {
    text-align: center;
  }
  .torque-mission-support .support-stages .stage-item .stage-icon {
    aspect-ratio: 1/1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 4.082px solid #FCD86B;
  }
  .torque-mission-support .support-stages .stage-item .stage-icon .stage-number {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 20.411px;
    font-weight: 400;
    color: #000;
    margin-bottom: 8px;
  }
  .torque-mission-support .support-stages .stage-item .stage-icon .stage-label {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 20.411px;
    font-weight: 400;
    color: #000;
    margin-bottom: 4px;
  }
  .torque-mission-support .support-stages .stage-item .stage-icon .stage-label-en {
    font-family: "Inter", sans-serif;
    font-size: 20.411px;
    font-weight: 400;
    color: #0083b3;
  }
  .torque-mission-support .support-stages .stage-item .stage-icon .stage-icon-image {
    width: 130px;
    height: 150px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media (width <= 768px) {
    .torque-mission-support .support-stages .stage-item .stage-icon .stage-icon-image {
      width: 68px;
      height: 76px;
    }
  }
  .torque-mission-support .support-stages .stage-item .stage-icon .stage-icon-image > svg {
    width: 100%;
  }
  .torque-mission-support .support-stages .stage-item .stage-description {
    margin: 0;
    max-width: 300px;
    margin: 0 auto;
  }
  .torque-mission-support .support-description,
  .torque-mission-support .support-phases {
    margin-left: 60px;
    margin-bottom: 20px;
  }
  .torque-mission-values {
    padding: 80px 0;
  }
  .torque-mission-values .value-image {
    max-width: 400px;
    margin: 0 auto 40px auto;
  }
  .torque-mission-values .values-description {
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .torque-mission-values .values-description p {
    margin: 0 0 20px 0;
  }
  .torque-mission-values .values-description p:last-child {
    margin-bottom: 0;
  }
  .torque-mission-values .values-list {
    margin-left: 60px;
    margin-bottom: 40px;
  }
  .torque-mission-values .values-list .value-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  .torque-mission-values .values-list .value-item:last-child {
    margin-bottom: 0;
  }
  .torque-mission-values .values-list .value-item .value-bullet {
    width: 18.568px;
    height: 18.568px;
    background-color: rgba(0, 131, 179, 0.6);
    border-radius: 50%;
    margin-right: 20px;
    margin-top: 12px;
    flex-shrink: 0;
  }
  .torque-mission-values .values-conclusion {
    margin-left: 60px;
  }
  @media (width <= 768px) {
    .page-header {
      padding: 80px 0 60px 0;
    }
    .page-header .torque-container {
      padding: 0 15px;
    }
    .torque-mission-intro .mission-intro-content,
    .torque-mission-intro .mission-purpose-content,
    .torque-mission-intro .mission-approach-content,
    .torque-mission-intro .mission-support-content,
    .torque-mission-intro .mission-values-content,
    .torque-mission-purpose .mission-intro-content,
    .torque-mission-purpose .mission-purpose-content,
    .torque-mission-purpose .mission-approach-content,
    .torque-mission-purpose .mission-support-content,
    .torque-mission-purpose .mission-values-content,
    .torque-mission-approach .mission-intro-content,
    .torque-mission-approach .mission-purpose-content,
    .torque-mission-approach .mission-approach-content,
    .torque-mission-approach .mission-support-content,
    .torque-mission-approach .mission-values-content,
    .torque-mission-support .mission-intro-content,
    .torque-mission-support .mission-purpose-content,
    .torque-mission-support .mission-approach-content,
    .torque-mission-support .mission-support-content,
    .torque-mission-support .mission-values-content,
    .torque-mission-values .mission-intro-content,
    .torque-mission-values .mission-purpose-content,
    .torque-mission-values .mission-approach-content,
    .torque-mission-values .mission-support-content,
    .torque-mission-values .mission-values-content {
      padding: 0;
    }
    .torque-mission-intro .mission-intro-text,
    .torque-mission-intro .mission-purpose-text,
    .torque-mission-intro .mission-approach-text,
    .torque-mission-intro .approach-features,
    .torque-mission-intro .approach-roles,
    .torque-mission-intro .mission-essence,
    .torque-mission-intro .support-stages,
    .torque-mission-intro .support-description,
    .torque-mission-intro .support-phases,
    .torque-mission-intro .values-description,
    .torque-mission-intro .values-list,
    .torque-mission-intro .values-conclusion,
    .torque-mission-purpose .mission-intro-text,
    .torque-mission-purpose .mission-purpose-text,
    .torque-mission-purpose .mission-approach-text,
    .torque-mission-purpose .approach-features,
    .torque-mission-purpose .approach-roles,
    .torque-mission-purpose .mission-essence,
    .torque-mission-purpose .support-stages,
    .torque-mission-purpose .support-description,
    .torque-mission-purpose .support-phases,
    .torque-mission-purpose .values-description,
    .torque-mission-purpose .values-list,
    .torque-mission-purpose .values-conclusion,
    .torque-mission-approach .mission-intro-text,
    .torque-mission-approach .mission-purpose-text,
    .torque-mission-approach .mission-approach-text,
    .torque-mission-approach .approach-features,
    .torque-mission-approach .approach-roles,
    .torque-mission-approach .mission-essence,
    .torque-mission-approach .support-stages,
    .torque-mission-approach .support-description,
    .torque-mission-approach .support-phases,
    .torque-mission-approach .values-description,
    .torque-mission-approach .values-list,
    .torque-mission-approach .values-conclusion,
    .torque-mission-support .mission-intro-text,
    .torque-mission-support .mission-purpose-text,
    .torque-mission-support .mission-approach-text,
    .torque-mission-support .approach-features,
    .torque-mission-support .approach-roles,
    .torque-mission-support .mission-essence,
    .torque-mission-support .support-stages,
    .torque-mission-support .support-description,
    .torque-mission-support .support-phases,
    .torque-mission-support .values-description,
    .torque-mission-support .values-list,
    .torque-mission-support .values-conclusion,
    .torque-mission-values .mission-intro-text,
    .torque-mission-values .mission-purpose-text,
    .torque-mission-values .mission-approach-text,
    .torque-mission-values .approach-features,
    .torque-mission-values .approach-roles,
    .torque-mission-values .mission-essence,
    .torque-mission-values .support-stages,
    .torque-mission-values .support-description,
    .torque-mission-values .support-phases,
    .torque-mission-values .values-description,
    .torque-mission-values .values-list,
    .torque-mission-values .values-conclusion {
      margin-left: 0;
    }
    .torque-mission-intro .torque-mission-intro .approach-roles,
    .torque-mission-purpose .torque-mission-intro .approach-roles,
    .torque-mission-approach .torque-mission-intro .approach-roles,
    .torque-mission-support .torque-mission-intro .approach-roles,
    .torque-mission-values .torque-mission-intro .approach-roles {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .torque-mission-intro .torque-mission-intro .approach-roles .role-item .role-badge,
    .torque-mission-purpose .torque-mission-intro .approach-roles .role-item .role-badge,
    .torque-mission-approach .torque-mission-intro .approach-roles .role-item .role-badge,
    .torque-mission-support .torque-mission-intro .approach-roles .role-item .role-badge,
    .torque-mission-values .torque-mission-intro .approach-roles .role-item .role-badge {
      min-height: 80px;
      font-size: 20px;
      padding: 15px;
    }
    .torque-mission-support .support-stages .stage-item .stage-icon {
      width: 200px;
      height: 200px;
    }
  }
}
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer pages {
  .contact-form-section .contact-intro {
    margin-bottom: 60px;
    margin-left: 60px;
  }
  .contact-form-section .contact-intro p {
    color: #000;
    line-height: 1.6;
    margin: 0 0 8px 0;
  }
  .contact-form-section .contact-intro p:last-child {
    margin-bottom: 0;
  }
  .contact-form-section:has(#wpcf7cpcnf) .contact-intro {
    display: none;
  }
  .contact-form-section .wp-block-contact-form-7-contact-form-selector {
    padding-left: 60px;
  }
  @media (width <= 768px) {
    .contact-form-section .wp-block-contact-form-7-contact-form-selector {
      padding-left: 0;
    }
  }
  .contact-form-section .contact-privacy {
    margin-top: 60px;
    padding: 40px;
    background-color: #f4f4f4;
    border-radius: 8px;
    grid-column: 1/-1;
    height: 225px;
    overflow-y: scroll;
  }
  .contact-form-section .contact-privacy h1 {
    font-size: 20.411px;
    font-weight: 600;
    color: #000;
    line-height: 1.6;
    margin: 0 0 10px 0;
    text-align: center;
    padding-left: 0;
  }
  .contact-form-section .contact-privacy p {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 16.329px;
    font-weight: 400;
    color: #898989 !important;
    line-height: 1.6;
    margin: 0 0 10px 0;
    text-align: left;
  }
  .contact-form-section .contact-privacy p:last-child {
    margin-bottom: 0;
  }
  .contact-form-section .wpcf7 {
    max-width: calc(100% - 140px);
    margin: 0 auto;
  }
  @media (width <= 768px) {
    .contact-form-section .wpcf7 {
      max-width: 100%;
    }
  }
  .contact-form-section .wpcf7 .wpcf7-form {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px 20px;
    align-items: center;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
    grid-column: 2;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=text],
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=email],
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=tel],
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap select {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 20.411px;
    font-weight: 400;
    color: #000;
    padding: 10px;
    border: 4.082px solid #e1e1e2;
    border-radius: 4px;
    width: 100%;
    background-color: #fff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=text]:focus,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=email]:focus,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=tel]:focus,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea:focus,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap select:focus {
    outline: none;
    border-color: #0083b3;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=text]::placeholder,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=email]::placeholder,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=tel]::placeholder,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea::placeholder,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap select::placeholder {
    color: #898989;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea {
    min-height: 300px;
    resize: vertical;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%230083b3"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
    padding-right: 40px;
  }
  .contact-form-section .wpcf7 .wpcf7-form label {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 20.411px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
  }
  .contact-form-section .wpcf7 .wpcf7-form label.required-label[for=inquiry-type], .contact-form-section .wpcf7 .wpcf7-form label.required-label[for=company-size], .contact-form-section .wpcf7 .wpcf7-form label.required-label[for=your-message] {
    margin-bottom: auto;
  }
  .contact-form-section .wpcf7 .wpcf7-form .required-label {
    position: relative;
  }
  .contact-form-section .wpcf7 .wpcf7-form .required-label .required-badge {
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #0083b3;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-list-item {
    display: flex !important;
    gap: 10px;
    margin-left: 0 !important;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-list-item input[type=radio] {
    width: 20px;
    height: 20px;
    margin-bottom: 10px;
    flex: 0 0 20px;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-list-item input[type=checkbox] {
    width: 24px;
    height: 24px;
    margin-bottom: 10px;
    flex: 0 0 24px;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-submit {
    grid-column: 1/-1;
    justify-self: center;
    background-color: #0083b3;
    color: #fff;
    border: none;
    padding: 16px 48px;
    border-radius: 32.607px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 23.16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-submit:hover {
    background-color: #006a8f;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-spinner {
    display: none;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-mail-sent-ok,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-mail-sent-ng,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-validation-errors {
    grid-column: 1/-1;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-mail-sent-ok.wpcf7-mail-sent-ok,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-mail-sent-ng.wpcf7-mail-sent-ok,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-validation-errors.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-mail-sent-ok.wpcf7-mail-sent-ng, .contact-form-section .wpcf7 .wpcf7-form .wpcf7-mail-sent-ok.wpcf7-validation-errors,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-mail-sent-ng.wpcf7-mail-sent-ng,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-mail-sent-ng.wpcf7-validation-errors,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-validation-errors.wpcf7-mail-sent-ng,
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-validation-errors.wpcf7-validation-errors {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
  .contact-form-section .wpcf7 .wpcf7-form .submit-wrapper {
    text-align: center;
    grid-column: 1/-1;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-response-output {
    grid-column: 1/-1;
    padding: 15px;
    margin-bottom: 20px;
  }
  .contact-form-section .wpcf7 .wpcf7-form .wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    color: #155724;
  }
  #wpcf7cpcnf th,
  #wpcf7cpcnf td {
    padding: 15px;
  }
  #wpcf7cpcnf .wpcf7cp-cfm-edit-btn,
  #wpcf7cpcnf .wpcf7cp-cfm-submit-btn {
    grid-column: 1/-1;
    justify-self: center;
    background-color: #0083b3;
    color: #fff;
    border: none;
    padding: 16px 48px;
    border-radius: 32.607px;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 23.16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  #wpcf7cpcnf .wpcf7cp-cfm-edit-btn:hover,
  #wpcf7cpcnf .wpcf7cp-cfm-submit-btn:hover {
    background-color: #006a8f;
  }
  @media (width <= 768px) {
    .contact-form-section .torque-container {
      padding: 0 15px;
    }
    .contact-form-section .contact-intro {
      margin-left: 0;
    }
    .contact-form-section .contact-intro p {
      font-size: 18px;
    }
    .contact-form-section .contact-privacy {
      padding: 30px 20px;
    }
    .contact-form-section .contact-privacy p {
      font-size: 14px;
    }
    .contact-form-section .wpcf7 .wpcf7-form {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
      grid-column: 1;
    }
    .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=text],
    .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=email],
    .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap input[type=tel],
    .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea,
    .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap select {
      font-size: 18px;
      padding: 8px;
    }
    .contact-form-section .wpcf7 .wpcf7-form .wpcf7-form-control-wrap textarea {
      min-height: 200px;
    }
    .contact-form-section .wpcf7 .wpcf7-form label {
      font-size: 18px;
    }
    .contact-form-section .wpcf7 .wpcf7-form .required-label .required-badge {
      position: static;
      transform: none;
      display: inline-block;
      margin-right: 10px;
      font-size: 12px;
    }
    .contact-form-section .wpcf7 .wpcf7-form .wpcf7-submit {
      font-size: 20px;
      padding: 14px 40px;
      width: 100%;
    }
  }
}
/*
Theme Name: TORQUE2025
Author: ZIGZAG inc.
Description: TORQUE2025
Version: 1.0
*/
@layer pages {
  .torque-news-section {
    padding: 80px 0;
  }
  .torque-news-list {
    padding: 0 100px;
    margin-bottom: 60px;
  }
  .torque-news-item {
    list-style: none;
    padding: 20px 0;
    display: grid;
    grid-template-columns: 105px 180px 1fr;
    gap: 48px;
    align-items: center;
    text-decoration: none;
  }
  .torque-news-item > a {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .torque-news-item > a:hover {
    opacity: 0.7;
  }
  .torque-news-item time {
    font-weight: 400;
    color: #000;
  }
  .torque-news-item .torque-news-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .torque-news-item .torque-news-category a {
    color: var(--torque-white);
    text-decoration: none;
    font-size: 12px;
    background: var(--torque-primary);
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 400;
    line-height: 40.821px;
    letter-spacing: 0.02em;
  }
  .torque-news-item .torque-news-title a {
    font-weight: 400;
    color: #000;
    margin: 0;
  }
  .pagination-wrapper {
    margin-top: 60px;
    text-align: center;
  }
  .pagination-wrapper ul.page-numbers {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .pagination-wrapper ul.page-numbers li {
    margin: 0;
  }
  .pagination-wrapper ul.page-numbers a.page-numbers,
  .pagination-wrapper ul.page-numbers span.page-numbers {
    display: inline-block;
    font-weight: 400;
    padding: 12px 18px;
    border: 1px solid #e1e1e2;
    border-radius: 4px;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 44px;
    text-align: center;
  }
  .pagination-wrapper ul.page-numbers a.page-numbers:hover:not(.current):not(.dots),
  .pagination-wrapper ul.page-numbers span.page-numbers:hover:not(.current):not(.dots) {
    background-color: rgba(0, 131, 179, 0.1);
    border-color: #0083b3;
    color: #0083b3;
  }
  .pagination-wrapper ul.page-numbers a.page-numbers.current,
  .pagination-wrapper ul.page-numbers span.page-numbers.current {
    background-color: #0083b3;
    border-color: #0083b3;
    color: #fff;
    font-weight: 600;
    cursor: default;
  }
  .pagination-wrapper ul.page-numbers a.page-numbers.dots,
  .pagination-wrapper ul.page-numbers span.page-numbers.dots {
    border: none;
    padding: 12px 8px;
    cursor: default;
  }
  .pagination-wrapper ul.page-numbers a.page-numbers.dots:hover,
  .pagination-wrapper ul.page-numbers span.page-numbers.dots:hover {
    background-color: transparent;
  }
  .pagination-wrapper ul.page-numbers a.page-numbers.prev, .pagination-wrapper ul.page-numbers a.page-numbers.next,
  .pagination-wrapper ul.page-numbers span.page-numbers.prev,
  .pagination-wrapper ul.page-numbers span.page-numbers.next {
    font-weight: 500;
  }
  @media (width <= 768px) {
    .torque-news-section {
      padding: 60px 0;
    }
    .torque-news-list {
      padding: 0 20px;
      margin-bottom: 40px;
    }
    .torque-news-item {
      grid-template-columns: 100px 1fr;
      align-items: center;
      gap: 10px;
    }
    .torque-news-item time {
      font-size: 16px;
    }
    .torque-news-item .torque-news-title {
      grid-column: 1/-1;
    }
    .torque-news-item .torque-news-title a {
      font-size: var(--text-sm);
    }
    .pagination-wrapper {
      margin-top: 40px;
    }
    .pagination-wrapper ul.page-numbers a.page-numbers,
    .pagination-wrapper ul.page-numbers span.page-numbers {
      font-size: 16px;
      padding: 10px 14px;
      min-width: 40px;
    }
  }
  .torque-news-single {
    padding: 80px 0 120px 0;
    position: relative;
  }
  .torque-news-single .news-single-header {
    margin-bottom: 60px;
  }
  .torque-news-single .news-single-header .news-single-meta {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 48px;
  }
  .torque-news-single .news-single-header .news-single-meta .news-date {
    font-size: var(--text-xs);
    font-weight: 400;
    color: #000;
    line-height: 1.4;
  }
  .torque-news-single .news-single-header .news-single-title {
    font-size: var(--text-lg);
    font-weight: 400;
    color: #0083b3;
    letter-spacing: 1.837px;
    line-height: 1.4;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid var(--torque-primary);
    border-bottom: 1px solid var(--torque-primary);
  }
  .torque-news-single .news-single-content {
    max-width: 1083.585px;
    margin: 0 auto;
  }
  .torque-news-single .news-single-content p {
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0 0 20px 0;
  }
  .torque-news-single .news-single-content p:last-child {
    margin-bottom: 0;
  }
  .torque-news-single .news-single-content h1,
  .torque-news-single .news-single-content h2,
  .torque-news-single .news-single-content h3,
  .torque-news-single .news-single-content h4,
  .torque-news-single .news-single-content h5,
  .torque-news-single .news-single-content h6 {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .torque-news-single .news-single-content h1 {
    font-size: 32px;
    font-weight: 700;
  }
  .torque-news-single .news-single-content h2 {
    font-size: 28px;
    font-weight: 600;
  }
  .torque-news-single .news-single-content h3 {
    font-size: 24px;
    font-weight: 600;
  }
  .torque-news-single .news-single-content ul,
  .torque-news-single .news-single-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
  }
  .torque-news-single .news-single-content ul li,
  .torque-news-single .news-single-content ol li {
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 20.411px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .torque-news-single .news-single-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px 0;
  }
  .torque-news-single .news-single-content a {
    color: #0083b3;
    text-decoration: underline;
    transition: color 0.3s ease;
  }
  .torque-news-single .news-single-content a:hover {
    color: #006a8f;
  }
  .torque-news-single .news-single-content blockquote {
    border-left: 4px solid #0083b3;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #898989;
  }
  .torque-news-single .news-single-back {
    margin-top: 80px;
    text-align: center;
  }
  .torque-news-single .news-single-back .btn-back-to-list {
    display: inline-block;
    background-color: #0083b3;
    color: #fff;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: var(--text-sm);
    font-weight: 400;
    padding: 20px 60px;
    border-radius: 32.607px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .torque-news-single .news-single-back .btn-back-to-list:hover {
    background-color: #006a8f;
  }
  @media (width <= 768px) {
    .torque-news-single {
      padding: 60px 0 100px 0;
    }
    .torque-news-single .news-single-header {
      margin-bottom: 40px;
    }
    .torque-news-single .news-single-header .news-single-meta {
      margin-bottom: 30px;
    }
    .torque-news-single .news-single-header .news-single-meta .news-date {
      font-size: 18px;
    }
    .torque-news-single .news-single-header .news-single-title {
      font-size: 28px;
      letter-spacing: 1px;
      padding: 15px 0;
    }
    .torque-news-single .news-single-content p {
      font-size: 18px;
    }
    .torque-news-single .news-single-content h1 {
      font-size: 28px;
    }
    .torque-news-single .news-single-content h2 {
      font-size: 24px;
    }
    .torque-news-single .news-single-content h3 {
      font-size: 22px;
    }
    .torque-news-single .news-single-content ul,
    .torque-news-single .news-single-content ol {
      margin-left: 20px;
    }
    .torque-news-single .news-single-content ul li,
    .torque-news-single .news-single-content ol li {
      font-size: 18px;
    }
    .torque-news-single .news-single-back {
      margin-top: 60px;
    }
    .torque-news-single .news-single-back .btn-back-to-list {
      font-size: 20px;
      padding: 16px 50px;
    }
  }
}
/* Figma Design System - 高精度実装 */
:root {
  /* カラーパレット - Figmaから精密抽出 */
  --torque-primary: #0083b3;
  --torque-primary-light: #369dc3;
  --torque-accent: #f6ab00;
  --torque-accent-light: #fabd00;
  --torque-neutral-900: #231815;
  --torque-neutral-800: #040000;
  --torque-neutral-700: #898989;
  --torque-neutral-600: #d9ecf4;
  --torque-white: #ffffff;
  --torque-black: #000000;
  /* フォントサイズ - Figmaから精密抽出 */
  --text-xs: 16.329px;
  --text-sm: 20.411px;
  --text-base: 23.16px;
  --text-lg: 24.493px;
  --text-xl: 27.792px;
  --text-2xl: 28.504px;
  --text-3xl: 32px;
  --text-4xl: 34.584px;
  --text-5xl: 35.644px;
  --text-6xl: 62.637px;
  /* スペーシング - Figmaから精密抽出 */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  --space-40: 160px;
  --space-48: 192px;
  --space-64: 256px;
  --space-80: 320px;
  --space-96: 384px;
  /* レイアウト - レスポンシブ対応 */
  --container-width: 1240px;
  --container-width-contact: 812px;
  --container-padding: 24px;
  --border-radius: 12.273px;
  --border-radius-lg: 32.607px;
  /* ブレークポイント */
  --bp-mobile: 768px;
  --bp-tablet: 1024px;
  --bp-desktop: 1200px;
}

/* リセット */
@layer reset {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  html,
  body {
    font-family: "Jost", "Inter", "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--torque-neutral-900);
    background: var(--torque-white);
  }
  body {
    overflow-x: hidden;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  a,
  a * {
    text-decoration: none;
  }
  /* スクロール動作 */
  html {
    scroll-behavior: smooth;
  }
  /* フォーカススタイル */
  a:focus,
  button:focus {
    outline: 2px solid var(--torque-primary);
    outline-offset: 2px;
  }
}
/* プリントスタイル */
@media print {
  .torque-header,
  .page-top {
    display: none;
  }
  .torque-hero,
  .torque-service,
  .torque-problem,
  .torque-message,
  .torque-news,
  .torque-contact {
    break-inside: avoid;
  }
}

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