@charset "UTF-8";
/* =========================================================
   Minimal Reset + Base
========================================================= */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /* font-weight: normal; */
  vertical-align: baseline;
}

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

audio,
canvas,
video {
  display: inline-block;
}

ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
}

img {
  border: 0;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  background: none;
  border: none;
  border-radius: 0;
  font: inherit;
}
button {
  cursor: pointer;
}
input,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
}
input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
}

a {
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus {
  outline: none;
}
:focus-visible {
  outline: 2px solid #0455b8;
  outline-offset: 2px;
  border-radius: 4px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a,
button,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

/* WP table reset */

/* =========================================================
   Base settings
========================================================= */
:root {
  /* 1rem = 10px にする */
  font-size: 62.5%; /* 16px * 0.625 = 10px */

  --header-h: 7.2rem;
  --s1: 1.6rem; /* =16px */
  --s-2: calc(var(--s1) / 2);
  --s2: calc(var(--s1) * 2);
  --s3: calc(var(--s1) * 3);
  --s4: calc(var(--s1) * 4);
  --s5: calc(var(--s1) * 5);
  --s6: calc(var(--s1) * 6);
  --s7: calc(var(--s1) * 7);
  --s8: calc(var(--s1) * 8);
  --s9: calc(var(--s1) * 9);
  --s10: calc(var(--s1) * 10);

  --hb-w: min(7.051vw, 55px);
  --hb-thk: min(0.573vw, 4.47px);
  --hb-box: min(3.846vw, 30px);
  --hb-color: #0455b8;
  --text-color: #111;
  --hb-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --font-en: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}
html,
body {
  overflow-x: hidden;
}

body {
  padding: 0;
  background: #fff;
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.pc {
  display: none;
}
.sp {
  display: block;
}

.ta-r {
  text-align: right;
}
.ta-l {
  text-align: left;
}
.ta-c {
  text-align: center;
}

/* =========================================================
   Layout
========================================================= */
.container {
  width: 100%;
  margin: 0 auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  background-color: #ffffff;
}
header h1 {
  width: 100%;
  height: 7.2rem;
  margin: 0 auto 0 0;
  padding: 0;
  display: block;
  border-bottom: 0.2rem solid #0455b8;
  position: relative;
  z-index: 10;
}
header h1 img {
  width: 7.2rem;
  height: auto;
}
header h1 img:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
main {
  margin-top: var(--header-h);
}

/* =========================================================
   Hamburger Button
========================================================= */
/* .hamburger {
  position: absolute;
  top: 2.87rem;
  right: var(--s2);
  width: var(--hb-w);
  height: var(--hb-box);
  z-index: 1100;
} */
.hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  z-index: 1100;
}
.hamburger__bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 26px;
  height: 2px;
  background: var(--hb-color);
  border-radius: 2px;
  transform-origin: 50% 50%;
  --offset: calc((var(--hb-box) - var(--hb-thk)) / 2);
  transition: transform 0.28s var(--hb-ease), opacity 0.2s var(--hb-ease);
  will-change: transform;
  backface-visibility: hidden;
}
.hamburger__bar:nth-child(1) {
  transform: translate(-50%, -6px);
}
.hamburger__bar:nth-child(2) {
  transform: translate(-50%, 6px);
}
.menu-open .hamburger__bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.menu-open .hamburger__bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
/* =========================================================
   Global Nav Overlay（SP）
   - ヘッダー直下から開始
   - 100dvhでアドレスバー出し入れに追従
   - 内側のみスクロール
========================================================= */
#global-nav {
  position: fixed;
  top: calc(var(--header-h, 56px)); /* ← めり込み防止 */
  left: 0;
  right: 0;
  height: calc(100dvh - (var(--header-h, 56px)));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  background: rgba(255, 255, 255, 0.9);
  padding: 16px clamp(16px, 4vw, 24px) max(16px, env(safe-area-inset-bottom));
  text-align: center;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.35s ease, visibility 0.35s ease;
  pointer-events: none;
  visibility: hidden;
  z-index: 9;
}
.menu-open #global-nav {
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
  visibility: visible;
}
#global-nav ul {
  display: grid;
  /* gap: 2.2rem; */
}
#global-nav li,
#global-nav .dr-menu > a {
  /* padding-right: var(--s1); */
  border-bottom: 1px solid #0455b8;
}
#global-nav .dr-menu li:last-of-type {
  border: none;
}
#global-nav a {
  display: block;
  position: relative;
  width: 100%;
  padding: var(--s2) var(--s2);
  text-align: center;
  color: #000000;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
}
#global-nav li a::after {
  content: "";
  position: absolute;
  right: 0.8em;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  border: solid #0455b8;
  border-width: 0 0.2rem 0.2rem 0;
  padding: 0.25em;
}
#global-nav a.pc {
  display: none;
}

#global-nav .nav-company-logo {
  width: 6rem;
  height: auto;
  margin: var(--s2) auto var(--s2) auto;
}
#global-nav .nav-company-text {
  font-size: 1.4rem;
  font-weight: 500;
  color: #000000;
  line-height: 1.4;
}
body.menu-open {
  overflow: hidden;
}

/* =========================================================
   Sections & Components
========================================================= */
section {
  margin: 0 var(--s1) 8rem;
}
h2 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--hb-color);
  margin-bottom: 4rem;
}
h2 span {
  display: block;
  font-size: var(--s1);
  color: var(--text-color);
}
#main-image {
  margin-bottom: var(--s3);
  position: relative;
  overflow: hidden;
}
#main-image img {
  display: block;
  width: 100%;
  height: auto;
}
#main-text {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.9) 1px 0 10px;
}
#main-text .main-copy {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
#sub-text {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 300;
}
#news {
  scroll-margin-top: var(--header-h);
}
#news h2 {
  font-family: var(--font-en);
  margin: 0 0 2rem 2rem;
}
.news-list {
  margin-bottom: 4rem;
}
.news-item {
  list-style: none;
  border-bottom: 0.128rem solid #888888;
  padding: 2rem;
}
.news-item:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
/* ▼クリック無効の記事(liに.no-click)はhover効果をキャンセル */
.news-item.no-click:hover {
  opacity: 1 !important;
  transition: none !important;
}
/* ▼クリック無効記事のaタグを操作不能にする */
.news-item.no-click a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: #888; /* 任意で区別 */
}
.news-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.538rem;
}
.news-date {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 1.4rem;
  color: #8e8e8e;
}
.news-label {
  display: inline-block;
  width: 100%;
  max-width: 12rem;
  background-color: #6c6c6c;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap; /* 改行しない */
  overflow: hidden; /* はみ出したら隠す */
  text-overflow: ellipsis; /* 省略記号 (…) 表示 */
}
.news-title {
  width: 100%;
}

/* btn */
.btn-type1 {
  position: relative;
  display: block;
  width: 90%;
  padding: 1.8rem 4rem;
  color: #fff;
  background-color: var(--hb-color);
  border-radius: 9999px;
  margin: 0 auto;
}

.btn-type1::after {
  position: absolute;
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
  transition: opacity 0.3s ease;
}
.btn-type1:hover,
.main-menu-list li a:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.news-more .btn-type1,
.to-site-top .btn-type1,
button {
  color: #fff;
  max-width: 24rem;
}
.contact-btn .btn-type1 {
  padding: 1.2rem 4rem;
  text-align: center;
  max-width: 468px;
}

/* top main menu */
#main-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* thumb */
.thumb-img {
  width: 100%;
  height: 22rem;
  background: var(--bg) center/cover no-repeat;
}

.thumb-img1 {
  --bg: url("../images/img-core-01-sp.png");
}
.thumb-img2 {
  --bg: url("../images/img-core-02-sp.png");
}
.thumb-img3 {
  --bg: url("../images/img-core-03-sp.png");
}
.thumb-img4 {
  --bg: url("../images/img-core-04-sp.png");
}

.thumb-title {
  position: relative;
  display: block;
  color: #fff;
  padding: 3rem;
  background-color: var(--hb-color);
}
.thumb-title h4 {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: var(--s1);
}
.thumb-title p {
  margin-bottom: calc(var(--s1) + 4px);
}
.align-r {
  position: absolute;
  width: 42px;
  height: 42px;
  bottom: 30px;
  right: 30px;
}

/* footer */
footer {
  width: 100%;
  padding: var(--s1);
  border-top: 0.2rem solid #0455b8;
  background-color: #ffffff;
  text-align: center;
}
footer .logo {
  width: 7.2rem;
  height: auto;
  margin: 0 auto var(--s1) auto;
}
footer .logo:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
footer .company-name {
  font-size: var(--s1);
  font-weight: 500;
  margin-bottom: var(--s1);
}

footer .privacy-link,
footer .copyright {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: var(--s1);
}
footer .privacy-link a {
  color: #111;
  transition: all 0.5s;
}
footer .privacy-link a:hover {
  opacity: 0.6;
}
.to-top {
  position: fixed;
  right: calc(var(--s1) + 4px);
  bottom: max(var(--s2), calc(env(safe-area-inset-bottom) + 12px));
  width: var(--s3);
  height: var(--s3);
  z-index: 20;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.to-top.show {
  opacity: 1;
  pointer-events: auto;
}
.to-top:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

/* ニュースページ */
/* パンくずリスト */
.sub-mv {
  width: 100%;
  min-height: 18rem;
  margin: 0 0 4rem 0;
  padding: 4rem 2rem 2rem;
  background: var(--bg) center/cover no-repeat;
}
.sub-mv-news {
  --bg: url("../images/sub-mv-news-sp.png");
}
.sub-mv-company {
  --bg: url("../images/sub-mv-company-sp.png");
}
.sub-mv-solution {
  --bg: url("../images/sub-mv-solution-sp.png");
}
.sub-mv-partner {
  --bg: url("../images/sub-mv-partner-sp.png");
}
.sub-mv-contact {
  --bg: url("../images/sub-mv-contact-sp.png");
}
.sub-mv-privacy {
  --bg: url("../images/sub-mv-privacy-sp.png");
}

.sub-mv h2 {
  font-size: 3.8rem;
  color: #fff;
  margin-bottom: 2rem;
}
.sub-mv span {
  color: #fff;
  font-weight: 400;
}
.breadcrumb {
  display: block;
  width: 100%;
  text-align: right;
}
.breadcrumb ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  flex-wrap: nowrap;
}
.breadcrumb li {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
}
.breadcrumb li:last-of-type {
  opacity: 0.6;
}
.breadcrumb li a {
  color: #fff;
  text-decoration: underline;
  font-weight: 300;
}
.breadcrumb li:last-of-type a {
  text-decoration: none;
}
.breadcrumb li a:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.breadcrumb li + li::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  margin: 0 1rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/* pagination */
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  padding: 0;
  list-style: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
}

.pagination a,
.pagination .dots {
  color: #111;
  text-decoration: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
  font-family: var(--font-en);
  font-weight: 400;
}

.pagination a:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.1);
}

.pagination .active {
  background-color: var(--hb-color);
  color: #fff;
}

.pagination .dots {
  pointer-events: none;
}

/* ← → arrows */
.pagination .arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 中央の横棒 */
.pagination .arrow::before {
  content: "";
  width: 16px;
  height: 1px;
  background: #111;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 共通の矢印パーツ */
.pagination .arrow::after {
  content: "";
  width: 10px;
  height: 10px;
  border-bottom: 1px solid #111;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* ←（左矢印） */
.pagination .prev::after {
  left: 10px;
  border-left: 1px solid #111;
  transform: translateY(-50%) rotate(45deg);
}

/* →（右矢印） */
.pagination .next::after {
  right: 10px;
  border-right: 1px solid #111;
  transform: translateY(-50%) rotate(-45deg);
}

/* ニュース詳細 */
.sub-mv-title .article-title {
  font-size: 2.4rem;
  font-weight: 400;
}
.news-tag {
  margin-bottom: 2rem;
}
.news-tag .news-label {
  background-color: #fff;
  color: #111;
  padding: 0.4rem 1rem;
  margin-right: 1rem;
}

section#newsdetail {
  margin: 0;
}
#newsdetail {
  margin-bottom: 13.46rem;
  scroll-margin-top: var(--header-h);
}

#newsdetail .news-box {
  padding: calc(var(--s1) + 4px);
  background-color: #ffffff;
}

#newsdetail .news-content {
  line-height: 1.8;
}
#newsdetail .news-content p {
  margin-bottom: var(--s2);
}
#newsdetail .news-img {
  margin: 0 auto var(--s2) auto;
  text-align: center;
}

/* Philosophy */
.sub-mv-title .sub-title {
  font-size: 3.2rem;
  font-weight: 500;
}
.sub-title span {
  font-family: var(--font-en);
  letter-spacing: 0.1em;
}

/* contents */
#contents h3 {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--hb-color);
  text-align: center;
  margin-bottom: 2rem;
}
.contents-list > * {
  margin-bottom: 6rem;
}
.contents-item {
  display: flex;
  flex-direction: column;
}
.item-img {
  width: 100%;
  height: 35rem;
  background: var(--bg) center/cover no-repeat;
}

.item-img1 {
  --bg: url("../images/contents-img-01.png");
}
.item-img2 {
  --bg: url("../images/contents-img-02.png");
}
.item-img3 {
  --bg: url("../images/contents-img-03.png");
}

.item-box {
  width: 90%;
  background-color: #f1f4f9;
  padding: 2rem;
  margin: -10rem auto 0;
  text-align: center;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}
.item-box h4 {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
.item-box h4 span {
  display: block;
  width: fit-content;
  font-size: 4.8rem;
  font-family: var(--font-en);
  color: var(--hb-color);
  font-weight: 600;
  border-bottom: 2px solid var(--hb-color);
  margin: 0 auto 2rem;
  line-height: 1.2;
}

/* company data */
.data-list ul {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.data-list li {
  background-color: #f1f4f9;
  text-align: center;
  padding: 2rem;
}

.data-list h4 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--hb-color);
}
.data-list h4 span {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
.column-list li .data-total {
  width: 100%;
  font-family: var(--font-en);
  font-size: var(--s4);
  font-weight: 600;
  color: var(--hb-color);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.column-list li .data-total .data-icon {
  margin-top: 20px;
}
.data-total p {
  height: 80px;
  margin-left: 1rem;
  /* background-color: burlywood; */
}
.data-total .data-unit {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
}

/* company data table */
.stats-table table {
  width: 100%;
  margin-top: 2rem;
}
.stats-table th {
  font-size: 2.2rem;
  color: #111;
  vertical-align: middle;
  white-space: nowrap;
}
.stats-table th[scope="row"] {
  width: 30%;
  line-height: 1.2;
}
.stats-table th[scope="col"] {
  font-size: 1.8rem;
  font-weight: 600;
}
.stats-table td {
  width: 33%;
  font-family: var(--font-en);
  font-size: var(--s4);
  text-align: center;
  font-weight: 600;
  color: var(--hb-color);
}

/* contact */
.sub-descript {
  text-align: center;
  margin-bottom: 6rem;
  font-size: 18px;
}
.contact-form {
  max-width: 620px;
  margin: 0 auto 4rem;
  border-radius: 12px;
}

.form-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}

label {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #000;
}
.form-label {
  display: flex;
  flex-direction: row;
  align-items: end;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 16px;
  color: #000;
}

.required {
  background-color: #f44336;
  color: white;
  font-size: 14px;
  padding: 0.2rem 1rem 0.3rem;
  margin-left: 0.4em;
  border-radius: 999px;
}

select {
  -webkit-appearance: none;
  appearance: none;
  position: relative;
}
.select-box {
  position: relative;
}
.select-box::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 38%;
  right: 16px;
  transform: rotate(-135deg);
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  pointer-events: none;
}
.region-select .select-box {
  width: 30%;
}
input,
select,
textarea {
  width: 100%;
  font-size: 16px;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: white;
  transition: border 0.2s ease;
  resize: vertical;
}

input:focus,
/* select:focus, */
textarea:focus {
  border-color: #2a65cc;
  outline: none;
}

::placeholder {
  color: #aaa;
}

/* MW WP Form エラーメッセージ */
.mwform-error {
  display: block;
  color: #f44336;
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 0.8rem;
  padding: 0.8rem 1.2rem;
  background-color: #ffebee;
  border: 1px solid #ffcdd2;
  border-radius: 0.4rem;
  line-height: 1.4;
}

/* フォームフィールドのエラー状態 */
.form-input.error,
.form-textarea.error,
input.error,
textarea.error,
select.error {
  border-color: #f44336 !important;
  background-color: #ffebee;
}

.form-input.error:focus,
.form-textarea.error:focus,
input.error:focus,
textarea.error:focus,
select.error:focus {
  border-color: #d32f2f !important;
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2);
}

/* エラー状態のラベル */
.form-block.error label {
  color: #f44336;
}

/* チェックボックス */
.checkbox-block {
  text-align: center;
}
.checkbox-block > .checkbox-text {
  margin-bottom: 1.6rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.checkbox-label.haserror .checkbox-text {
  color: inherit;
}
.checkbox-text a {
  text-decoration: underline;
}

.checkbox-input {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  cursor: pointer;
  appearance: none;
  border: 1px solid #adadad;
  border-radius: 0.4rem;
  background-color: #fff;
  transition: all 0.3s ease;
}
.checkbox-input:checked {
  background-color: #333;
  border-color: #333;
}
.checkbox-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%) rotate(-45deg);
  width: 1rem;
  height: 0.6rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.checkbox-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.checkbox-text {
  font-size: 16px;
  color: #333;
}

.checkbox-block {
  text-align: left;
}
.checkbox-block legend {
  font-weight: 700;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
}
.required {
  display: inline-block;
  margin-left: 6px;
  padding: 5px 8px;
  border-radius: 1em;
  background: #ff4d4f;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}
.checkbox-grid {
  display: grid;
  gap: 1.6rem 2.4rem;
  grid-template-columns: repeat(2, 1fr);
}
/* プラグイン既定の「隣接マージン」を無効化（競合回避） */
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.checkbox-grid > :last-child {
  grid-column: 1 / -1; /* 1列目から最終列まで */
}
.checkbox-grid > :last-child {
  grid-column: 1 / -1; /* 1列目から最終列まで */
}

.checkbox-label {
  justify-content: flex-start;
}
.title-area p {
  text-align: center;
  margin-bottom: 4rem;
}
.confirm-value {
  font-size: 1.6rem;
}
.inq_read {
  line-height: 1.8;
}

.mwform-tel-field input[type="text"],
.mwform-zip-field input[type="text"] {
  display: inline-block;
  width: auto;
}

/* btn */
.btn-item p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3rem;
}
input[type="submit"] {
  display: block;
  width: 90%;
  max-width: 24rem;
  padding: 1.8rem 4rem;
  color: #fff;
  background-color: #f74e00;
  border-radius: 9999px;
  margin: 0 auto;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/*--hover--*/
input[type="submit"]:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.btn-item .checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, auto));
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* partner */
.menu-tab {
  width: 100%;
  padding: 0;
  margin: 0 auto 4rem;
}
.menu-tab ul {
  display: flex;
  list-style: none;
  justify-content: space-around;
  gap: 1rem;
}
.menu-tab li {
  /* width: 33%; */
}
.menu-tab li a {
  position: relative;
  display: block;
  padding: 1rem 0 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  color: var(--hb-color);
  transition: all 0.3s ease;
}

.menu-tab li a::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  bottom: 4px;
  left: 50%;
  border-right: 3px solid var(--hb-color);
  border-bottom: 3px solid var(--hb-color);
  transform: translateX(-50%) rotate(45deg);
}

.menu-tab li:hover a {
  opacity: 0.6;
}

/* privacy */
#contents h3.line-title {
  position: relative;
  font-size: 2.4rem;
  margin-bottom: 4rem;
  text-align: center;
  font-weight: 600;
  color: #111;
  padding: 1rem;
}
.line-title:after {
  position: absolute;
  display: block;
  content: "";
  width: 12rem;
  height: 4px;
  bottom: 0;
  left: 50%;
  background-color: #7cb4f7;
  transform: translateX(-50%);
}

.list-lead {
  margin-bottom: 3rem;
}
.list-section {
  margin-bottom: 4rem;
}
.enact-info > p {
  text-align: right;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.table-wrapper > p {
  margin-bottom: 2rem;
}
.numbered-list {
  counter-reset: section;
  padding-left: 0;
}
.numbered-list > li {
  margin-bottom: 4rem;
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.6;
}

.numbered-list > li > * {
  margin-bottom: 2rem;
}

.numbered-list li h4 {
  font-size: 1.8rem;
  font-weight: 500;
}
.numbered-list > li .list-number {
  counter-increment: section;
  content: counter(section) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 500;
  color: var(--hb-color);
  font-size: 1.8rem;
}
.num-list2 {
  margin-bottom: 4rem;
}
.num-list2 > li {
  margin-bottom: 1rem;
}
.num-list2 > li > * {
  margin-bottom: 0;
}
.num-list2 > li .list-number {
  color: #000;
  font-size: 1.6rem;
  font-weight: 500;
}

/* ドットリスト（子） */
.sub-list {
  margin-top: 1rem;
  margin-left: 2.4rem;
  list-style: disc;
}
.sub-list li {
  line-height: 1.6;
  margin-bottom: 0;
}

/* デフォルト：スマホ（縦並び） */
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  border: 1px solid #ccc;
}

.data-table tr {
  display: table-row;
  border: none;
}
.data-table th {
  text-align: center;
  font-weight: 500;
  padding: 0.8em;
  background-color: #f1f4f9;
}
.data-table td {
  display: table-cell;
  width: 50%;
  box-sizing: border-box;
  padding: 0.8em;
  border-top: 1px solid #ccc;
  border-left: none;
  border-right: none;
  border-bottom: none;
  text-align: left;
}

/* ラベル側のセルスタイル */
.data-table th:first-child,
.data-table td:first-child {
  border-right: 1px solid #ccc;
}

/* 最初の行の1列目だけ border-top を消す */
.data-table tr:first-child td:first-child {
  border-top: none;
}
.note-text {
  font-size: 14px;
}
.num-list > li {
  margin-bottom: 2rem;
}
.num-list li span {
  display: block;
  margin-bottom: 1rem;
}

.info-box {
  background-color: #f1f4f9;
  padding: 2rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 4rem;
}

.info-label {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0 3rem;
  margin-bottom: 1rem;
}

/* 両側の横線風 */
.info-label::before,
.info-label::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  left: 0;
  width: 1.5rem;
  height: 1px;
  background-color: #000;
  transform: translateY(-50%);
}
.info-label::after {
  left: auto;
  right: 0;
}
.info-box-text {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-style: normal;
}
.info-title {
  font-weight: bold;
  font-size: 1.5rem;
}
.info-phone {
  font-weight: bold;
  word-break: break-all;
}
.text-box p:first-of-type {
  margin-bottom: 1rem;
}

/* profile */
/* company-profile */
.company-profile {
  max-width: 880px;
  margin: 0 auto 4rem;
  padding: 0 1rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #111;
}
.profile-block {
  margin-top: 3rem;
}
.profile-label {
  font-weight: 500;
  color: #2861ca;
  margin-bottom: 1.6rem;
}
.profile-item {
  border-bottom: 1px solid #9eb7ed;
  padding: 2rem 0;
}
.profile-item:last-of-type {
  border: none;
}
.profile-item:nth-of-type(2n) {
  background-color: #f7feff;
}

/* ========== 役員：テーブル表示 ========== */
.executives-table {
  width: 100%;
  /* border-collapse: collapse; */
  border-collapse: separate;
  border-spacing: 0 2rem;
}
.executives-table tr {
  margin-bottom: 2rem;
}
.executives-table th,
.executives-table td {
  display: block;
  vertical-align: top;
}
.executives-table th {
  text-align: left;
  width: 200px;
}
.executives-table td {
  text-align: left;
  white-space: normal;
}
.executives-table small {
  font-size: 0.85em;
  display: block;
  color: #666;
}

/* ========== グループ会社・リンクリスト ========== */
.group-list,
.business-list,
.certification-list {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}
.group-list li,
.business-list li,
.certification-list li {
  padding: 0.3rem 0;
  margin-bottom: 1.8rem;
}
.profile-item a {
  display: inline-block;
  color: #000dff;
  text-decoration: underline;
}
.business-list a:hover {
  text-decoration: underline;
}
.business-list li span {
  font-weight: 500;
}

/* ========== MAP iframe ========== */
.map-frame {
  margin: 1rem auto;
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}
.map-frame iframe {
  display: block;
}

/* edu-list */
.edu-list {
  list-style: decimal;
  padding-left: 1.5em; /* 番号用の余白 */
  margin: 0 0 2rem;
}

/* profile-img-list */
.profile-img-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-img-list li {
  text-align: center;
}

.no-border {
  border: none;
  padding-bottom: 0;
}

/* partner */
.sub-mid-title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 3rem;
}

.item-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background-image: linear-gradient(77deg, #3d96daa0 0%, #cde9ffb3 80%);
  padding: 4rem 2rem 2rem;
  margin-bottom: 4rem;
}
.item-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.img-box {
  margin-bottom: 2rem;
}
.partner-item .item-text > p {
  font-size: 1.6rem;
  font-weight: 500;
}

/* item table */
.item-table {
  width: 100%;
  border-collapse: separate;
}

.item-table tbody {
  display: block;
}
.item-table tr {
  display: block;
  margin-bottom: 12px;
}
.item-table tr:last-child {
  margin-bottom: 0;
}
.item-table th,
.item-table td {
  display: block;
  padding: 12px 16px;
}
.item-table th {
  background: var(--hb-color);
  color: #fff;
  font-weight: 500;
  border-radius: 6px 6px 0 0;
}
.item-table td {
  background: #f3f4f6;
  border-radius: 0 0 6px 6px;
  line-height: 1.7;
}

/* solution */
.solution-item .sub-item {
  margin-bottom: 4rem;
}
.solution-item .item-bg {
  padding-top: 0;
  background-image: linear-gradient(180deg, #ffffff 0%, #ffffff 32%, #3d96daa0 30%, #cde9ffb3 80%);
}
.item-text h4 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--hb-color);
}
.item-text p {
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.list-icon ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.list-icon li {
  text-align: center;
  border: 1px solid var(--hb-color);
  padding: 1rem;
}
.list-icon h5 {
  font-size: 18px;
  color: var(--hb-color);
  font-weight: 600;
  margin-bottom: 1rem;
}
.list-icon p {
  font-size: 16px;
  font-feature-settings: "palt";
}

.list-case ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
.list-case li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f6f6f6;
  height: 78px;
  padding: 1rem 1rem 1rem 4rem;
  font-feature-settings: "palt";
}
.list-case li::before {
  position: absolute;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/icon-check.svg) center/cover no-repeat;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
}

/* 404 */
.notice-text {
  text-align: center;
  margin-bottom: 4rem;
}
.big-text {
  font-family: "Poppins", sans-serif;
  font-size: 10rem;
  font-weight: 600;
  color: rgba(129, 129, 129, 1);
  line-height: 1;
}
.small-text {
  color: #e90000;
  font-weight: 500;
  margin-bottom: 2rem;
}
.notice-detail {
  margin: 2rem auto;
}
/* =========================================================
   Breakpoints
========================================================= */
@media (min-width: 1024px) {
  :root {
    /* PC では流行りの clamp を使用 */
    font-size: clamp(10px, 0.694vw, 20px);
    /* ↑ 1440px幅の時に14px相当（=0.694vw）、範囲を10〜20pxに制御 */
  }
  body {
    overflow: auto !important;
  }
  html,
  body,
  .container {
    overflow: initial;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  header {
    height: 70px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 20;
    background: #ffffff;
    border-bottom: 3px solid #0455b8;
  }
  header h1 {
    width: 70px;
    display: flex;
    align-items: center;
    border-bottom: none;
    margin: 0;
    padding: 0;
    z-index: 40;
  }
  .hamburger {
    display: none;
  }
  header .nav-company-logo,
  header .nav-company-text {
    display: none;
  }
  .header-inner {
    height: 70px;
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header h1 img {
    width: 70px;
    height: auto;
    display: block;
  }
  #global-nav {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    height: auto;
    padding: 0 50px 0 0;
    background: transparent;
    clip-path: none !important;
    visibility: visible !important;
    pointer-events: auto !important;
    overflow: visible;
    text-align: center;
    z-index: 20;
  }
  #global-nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
  }
  #global-nav li {
    padding-right: 0;
    border-bottom: 0;
  }
  #global-nav a {
    display: inline-block;
    width: auto;
    padding: 0.8rem 0;
    font-size: 16px;
    color: #000000;
  }
  #global-nav a.pc {
    display: inline-block;
    pointer-events: none;
    cursor: none;
  }
  #global-nav li a::after {
    content: none;
  }
  #global-nav li:hover a {
    opacity: 0.6;
    transition: opacity 0.3s ease;
  }

  #global-nav li,
  #global-nav .dr-menu > a {
    border: none;
  }

  /* drop-menu */
  #global-nav .dr-menu {
    position: relative;
  }
  #global-nav .dr-menu > ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 0; /* ul初期値をリセット */
    margin: 0;
    transform: translateX(-50%);
    transition: all 0.5s;
  }

  #global-nav .dr-menu > ul > li > a {
    display: block;
    padding: 1.4rem 0.6rem;
    white-space: nowrap;
    transition: all 0.5s;
    opacity: 1 !important;
  }
  #global-nav .dr-menu > ul > li > a:hover {
    background: #3088d6;
    color: #fff;
  }

  /* PCのみ hoverでサブメニュー表示 */
  @media (hover: hover) and (pointer: fine) {
    #global-nav .dr-menu:hover > ul,
    #global-nav .dr-menu:focus-within > ul {
      display: block;
    }
  }

  main {
    margin-top: 0;
  }
  #main-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #main-image {
    margin-bottom: 66px;
  }
  #main-text .main-copy {
    font-size: 5rem;
    margin-bottom: 2.6rem;
  }
  #sub-text {
    font-size: 2.2rem;
  }

  #news,
  #contact {
    width: 960px;
    margin: 0 auto 70px auto;
  }
  h2 {
    font-size: 56px;
    margin-bottom: 2rem;
  }
  #news .news-box {
    display: flex;
    justify-content: space-between;
  }
  .news-list {
    width: 100%;
    max-width: 720px;
    margin: 40px 0;
  }
  .news-item {
    list-style: none;
    border-bottom: 1px solid #888888;
    margin-bottom: 30px;
    padding: 0 25px 20px 25px;
  }
  .news-date {
    font-size: 16px;
  }
  .news-label {
    font-size: 13px;
    border-radius: 20px;

    max-width: 134px;
    padding: 6px 14px;
  }
  .news-title {
    display: block;
    width: 100%;
    margin: 0 0 0 150px;
    font-size: 16px;
  }

  /* btn */
  .btn-type1 {
    padding: 1.4rem 4rem;
    font-size: 18px;
    text-align: left;
  }
  .contact-btn .btn-type1 {
    padding: 1.6rem 4rem;
    text-align: left;
  }

  /* top main menu */
  #main-menu {
    width: 100%;
    max-width: 1350px;
    margin-left: auto;
    margin-right: auto;
  }
  #main-menu ul {
    flex-direction: row;
    width: 98%;
    margin: 0 auto;
  }
  #main-menu ul li {
    width: 100%;
  }

  /* thumb */
  .thumb-img {
    width: 100%;
    height: 420px;
    background: var(--bg) center/cover no-repeat;
  }

  .thumb-img1 {
    --bg: url("../images/img-core-01-pc.png");
  }
  .thumb-img2 {
    --bg: url("../images/img-core-02-pc.png");
  }
  .thumb-img3 {
    --bg: url("../images/img-core-03-pc.png");
  }
  .thumb-img4 {
    --bg: url("../images/img-core-04-pc.png");
  }
  .thumb-title {
    padding: 20px;
    height: 22rem;
  }
  .thumb-title h4 {
    font-size: 24px;
  }
  .thumb-title p {
    font-size: 16px;
  }

  /* footer */
  footer {
    display: flex;
    height: 72px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 0;
    border-top: 3px solid #0455b8;
    background-color: #ffffff;
  }
  footer .logo,
  footer .company-name {
    display: inline-block;
  }
  footer .logo {
    width: 72px;
    height: 72px;
    margin: 0;
  }
  footer .logo img {
    display: block;
    width: 100%;
    height: auto;
  }
  footer .company-name {
    margin-left: 12px;
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 500;
    vertical-align: middle;
  }
  footer .privacy-link {
    margin-left: auto;
    margin-right: 4rem;
    margin-bottom: 0;
    font-size: 14px;
    vertical-align: middle;
  }
  footer .copyright {
    /* margin-left: auto; */
    margin-bottom: 0;
    font-size: 14px;
    vertical-align: middle;
  }
  .to-top {
    right: 50px;
    bottom: 86px;
    width: 50px;
    height: 50px;
  }
  /* ニュースページ */
  /* パンくずリスト */
  .sub-mv {
    height: 260px;
    padding-top: 70px;
    padding-bottom: 30px;
    min-height: auto;
  }
  .sub-mv-news {
    --bg: url("../images/sub-mv-news-pc.png");
  }
  .sub-mv-company {
    --bg: url("../images/sub-mv-company-pc.png");
  }
  .sub-mv-solution {
    --bg: url("../images/sub-mv-solution-pc.png");
  }
  .sub-mv-partner {
    --bg: url("../images/sub-mv-partner-pc.png");
  }
  .sub-mv-contact {
    --bg: url("../images/sub-mv-contact-pc.png");
  }
  .sub-mv-privacy {
    --bg: url("../images/sub-mv-privacy-pc.png");
  }

  .sub-mv-title {
    position: relative;
    max-width: 980px;
    height: 170px;
    margin: 0 auto;
  }
  .sub-mv h2 {
    font-size: 56px;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .sub-mv h2 span {
    font-size: 22px;
  }
  .sub-mv-title .sub-title {
    font-size: 40px;
    font-weight: 700;
    padding-top: 10px;
  }
  .sub-mv-title .sub-title span {
    margin-top: 10px;
    font-size: 20px;
  }
  #sub-page #news .news-box {
    justify-content: center;
  }
  #sub-page .news-list {
    max-width: 920px;
  }
  /* breadcrumb */
  .breadcrumb {
    position: absolute;
    bottom: 0;
  }

  .breadcrumb li {
    font-size: 14px;
  }

  /* pagination */
  /* ニュース詳細 */
  .sub-mv-title .article-title {
    font-size: 3.4rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  .news-tag {
    margin-bottom: 0;

    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .news-tag .news-label {
    padding: 6px 14px;
  }

  section#newsdetail {
    width: 960px;
    margin: 0 auto 70px auto;
    scroll-margin-top: var(--header-h);
  }
  #newsdetail h2 {
    margin: 0 auto 26px auto;
    font-size: 40px;
  }
  #newsdetail .news-box {
    padding: 30px 50px;
  }
  #newsdetail h3 {
    border-bottom: 1px solid #888888;
    margin-bottom: 20px;
    padding: 0 0 24px 0;
    font-size: 23px;
    font-weight: 500;
  }
  #newsdetail .news-info {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.8em;
  }
  #newsdetail .news-date {
    font-size: 16px;
  }
  #newsdetail .news-label {
    font-size: 13px;
    padding: 2px 30px;
    border-radius: 20px;
  }
  #newsdetail .news-content {
    font-size: 16px;
    line-height: 1.8;
  }
  #newsdetail .news-content p {
    margin-bottom: 40px;
  }
  #newsdetail .news-img {
    margin: 0 auto 40px auto;
    text-align: center;
  }

  /* contents */
  #contents {
    max-width: 960px;
    margin: 0 auto;
    font-size: 16px;
  }
  #contents h3 {
    font-size: 34px;
    margin-bottom: 4rem;
  }
  .contents-item {
    flex-direction: row;
    align-items: center;
  }

  .item-box h4 {
    font-size: 26px;
  }
  .item-box h4 span {
    font-size: 46px;
    margin: 0 auto 20px 0;
  }
  .item-box p {
    font-size: 16px;
  }
  .item-img {
    width: 640px;
    height: 420px;
  }
  .item-box {
    width: 500px;
    height: max-content;
    margin: 0 0 0 -18rem;
    text-align: left;
    padding: 40px;
  }
  .flex-row-reverse {
    flex-direction: row-reverse;
  }
  .flex-row-reverse .item-box {
    flex-direction: row-reverse;
    margin: 0 -17rem 0 0;
  }

  /* company */
  .data-list h4 {
    height: 84px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 28px;
  }

  .data-list ul.column-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
  }

  .column-list > li {
    width: 46rem;
    max-width: 460px;
  }
  .data-total {
    font-size: 76px;
  }

  /* company data table */
  .data-list .stats-table h4 {
    display: inline-block;
    height: auto;
  }
  .stats-table table {
    width: 80%;
    margin-top: 3rem;
  }
  .stats-table th {
    font-size: 32px;
  }
  .stats-table th[scope="col"] {
    font-size: 24px;
  }
  .stats-table td {
    width: 12%;
  }

  /* contact */
  .checkbox-input {
    width: 2.8rem;
    height: 2.8rem;
    margin-right: 1.2rem;
    border-radius: 0.6rem;
  }

  .checkbox-grid {
    gap: 1rem 2.4rem;
    grid-template-columns: repeat(3, 1fr);
  }

  /* 文字折り返しを安定させる（任意） */
  .checkbox-label {
    justify-content: flex-start;
  }
  .checkbox-text {
    word-break: keep-all;
    overflow-wrap: anywhere; /* 長い語でも崩れにくい */
  }
  input[type="submit"] {
    padding: 1.8rem 4rem;
  }

  /* privacy */
  #contents h3.line-title {
    font-size: 34px;
    margin-bottom: 5rem;
  }
  #policy .bg-box {
    padding-left: 12rem;
    padding-right: 12rem;
  }
  .data-table tr {
    display: table-row;
    margin-bottom: 0;
    border: none;
  }
  .data-table td {
    display: table-cell;
    width: auto;
    border: 1px solid #ccc;
    padding: 0.8em;
    vertical-align: top;
  }
  .data-table td:first-child {
    width: 28rem;
    font-weight: normal;
  }
  .note-text {
    text-align: right;
  }
  .info-phone {
    margin-left: 1.4rem;
  }
  .num-list2 > li .list-number {
    font-size: 16px;
  }
  .enact-info > p {
    font-size: 15px;
  }
  .info-title,
  .info-box-text {
    font-size: 16px;
  }

  #contents.agree-box {
    max-width: 760px;
  }

  /* profile */
  .company-profile {
    padding: 0;
  }
  .profile-item {
    display: flex;
    align-items: baseline;
    gap: 2rem;
    font-size: 16px;
  }
  .pro-grid {
    display: grid;
    grid-template-columns: 200px 1fr; /* 左: ラベル固定幅, 右: リスト可変 */
    grid-template-rows: auto auto; /* 上: ラベル+リスト, 下: マップ */
    gap: 1rem 0; /* 行間1rem, 列間2rem */
  }

  .pro-grid .profile-label {
    grid-column: 1; /* 左列 */
    grid-row: 1; /* 1行目 */
  }

  .pro-grid .business-list {
    grid-column: 2; /* 右列 */
    grid-row: 1; /* 1行目 */
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .pro-grid .map-frame {
    grid-column: 1 / -1; /* 全幅（両列をまたぐ） */
    grid-row: 2; /* 2行目 */
  }

  .profile-item .profile-label {
    width: 18rem;
    max-width: 180px;
    padding-left: 2rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .profile-item .profile-value {
    flex: 1;
  }
  .executives-table th,
  .executives-table td {
    display: inline-block;
  }
  .executives-table th {
    width: 36%;
  }
  .executives-table td {
    width: 64%;
  }

  .history-list th {
    width: 24%;
  }
  .history-list td {
    width: 73%;
  }
  .executives-table small {
    display: inline-block;
  }
  .map-frame {
    width: 100%;
  }

  /* edu-list */
  .edu-list {
    column-count: 2; /* 2列に分割 */
    column-gap: 3rem; /* 列の間隔 */
  }
  .edu-list li {
    break-inside: avoid; /* 項目が列の途中で分割されないように */
  }

  /* partner */
  /* tab menu */
  .menu-tab ul {
    justify-content: center;
  }
  .menu-tab li {
    width: 264px;
  }
  .menu-tab li a {
    font-size: 20px;
  }

  .item-block {
    max-width: 960px;
    flex-direction: row;
    margin: 0 auto;
    justify-content: space-between;
  }
  .img-box,
  .item-text {
    width: 48%;
  }

  .item-block p {
    font-size: 16px;
    line-height: 2;
  }

  .item-table {
    width: 100%;
    max-width: 760px;
    border-collapse: separate;
    border-spacing: 10px;
    margin: 0 auto 60px;
  }

  .item-table tbody {
    display: table-row-group;
  }
  .item-table tr {
    display: table-row;
    margin: 0;
  }

  .item-table th,
  .item-table td {
    display: table-cell;
    vertical-align: top;
    padding: 14px 16px;
  }

  .item-table th {
    width: 160px;
    white-space: nowrap;
    background: #0068b8;
    color: #fff;
    border-radius: 6px 0 0 6px;
  }

  .item-table td {
    background: #f3f4f6;
    border-radius: 0 6px 6px 0;
    line-height: 1.8;
  }

  /* solution */
  .solution-item .sub-item {
    margin-bottom: 8rem;
  }
  .solution-item .item-bg {
    padding-top: 4rem;
    background-image: linear-gradient(90deg, #ffffff 0%, #ffffff 36%, #3d96daa0 30%, #cde9ffb3 80%);
  }

  .item-bg.item-reverse {
    background-image: linear-gradient(270deg, /* ← 90deg + 180 = 270deg */ #ffffff 0%, #ffffff 36%, #3d96daa0 30%, #cde9ffb3 80%);
  }
  .item-reverse .item-block {
    flex-direction: row-reverse;
  }

  .list-icon ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .list-icon li {
    padding-bottom: 2rem;
  }

  .list-case {
    position: relative;
    width: 1070px;
    left: 50%;
    transform: translateX(-50%);
  }
  .list-case ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
