:root {
  --red: #cb2e2e;
  --deep-red: #911b16;
  --ink: #000;
  --muted: #565656;
  --line: #d5d5d5;
  --paper: #fff;
  --beige: #e4e3e0;
  --content: 1070px;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  --sans: "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  margin: 0;
  min-width: 1180px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
figure {
  margin: 0;
}

.content {
  width: var(--content);
  margin: 0 auto;
}

.flex {
  display: flex;
}

.flexB {
  display: flex;
  justify-content: space-between;
}

.sp {
  display: none;
}

section,
.site-footer {
  scroll-margin-top: 140px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 330px 1fr;
  align-items: center;
  width: 100%;
  min-height: 130px;
  padding-left: 38px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.brand img {
  width: 278px;
}

.menu-toggle,
.menu-button {
  display: none;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  gap: 28px;
  height: 130px;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.nav-links a {
  display: flex;
  align-items: center;
  height: 100%;
  transition: opacity 0.25s ease;
}

.nav-links a:hover {
  opacity: 0.65;
}

.nav-links .movie-link {
  position: relative;
  flex-direction: column;
  justify-content: flex-start;
  width: 110px;
  padding-top: 64px;
  color: #fff;
  background: var(--red);
  font-family: var(--sans);
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.4;
}

.nav-links .movie-link::before {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 40px;
  height: 28px;
  content: "";
  background: #fff;
  border-radius: 8px;
  transform: translateX(-50%);
}

.nav-links .movie-link::after {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--red);
  transform: translateX(-35%);
}

.lang-switch {
  position: relative;
  z-index: 1100;
  padding: 0 18px;
  font-family: var(--sans);
}

.lang-switch summary {
  display: grid;
  place-items: center;
  width: 42px;
  height: 34px;
  color: #777;
  font-size: 1.2rem;
  cursor: pointer;
  border: 1px solid #ddd;
  list-style: none;
}

.lang-switch summary::-webkit-details-marker {
  display: none;
}

.lang-switch summary::after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 2px;
  border-top: 4px solid #777;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 18px;
  z-index: 1101;
  display: grid;
  min-width: 156px;
  padding: 8px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}

.language-menu a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px 9px;
  color: #333;
  font-size: 1.25rem;
  line-height: 1.2;
}

.language-menu a span {
  color: var(--red);
  font-weight: 700;
  font-size: 1.1rem;
}

.lang-switch .is-active {
  background: #f7f7f7;
}

.fixed-actions {
  position: fixed;
  top: 220px;
  right: 0;
  z-index: 900;
  width: 60px;
  transform: none;
}

.fixed-actions li {
  height: 132px;
}

.fixed-actions li:first-child {
  background: #5e8089;
}

.fixed-actions li:nth-child(2) {
  background: #937343;
}

.fixed-actions .sp-only-action {
  display: none;
}

.fixed-actions a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 1.58rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
}

.fixed-actions a::after {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.fixed-actions a:hover::after {
  opacity: 0.28;
}

.main-visual {
  display: flex;
  align-items: center;
  min-height: 546px;
  margin-top: 130px;
  padding-top: 50px;
  background: url("../img/main_visual_bg.jpg") no-repeat center center / cover;
}

.main-visual .content {
  width: 1136px;
}

.main-visual h1,
.hero-copy {
  animation: floatIn 0.9s ease both;
}

.hero-copy {
  max-width: 1110px;
  margin-left: 18px;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.22);
}

.hero-service-name {
  margin: 0 0 24px 0;
  font-family: var(--serif);
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
}

.hero-wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 25px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  line-height: 0.86;
}

.hero-wordmark span {
  font-size: 4.6rem;
}

.hero-wordmark strong {
  font-size: 8.8rem;
  letter-spacing: -0.05em;
}

.hero-wordmark em {
  font-size: 3.2rem;
  font-style: normal;
  line-height: 0.88;
}

.hero-wordmark b {
  font-size: 7.2rem;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 1100px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.hero-lead-text {
  max-width: 1120px;
  margin: 30px 0 0;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.08em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.main-visual .hero-kicker {
  margin-bottom: 16px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.12em;
}

.main-visual p {
  max-width: 710px;
  margin-top: 24px;
  font-size: 2rem;
  line-height: 1.9;
}

.news-section {
  padding: 69px 0 83px;
  background: #fff;
}

.news {
  padding: 70px 0;
  background: #fff;
}

.news .content {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 1100px;
}

.news .headLine02 {
  width: 200px;
  margin: 41px 0 0;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.2em;
}

.news .headLine02 .en {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.news .comNewsBox {
  width: 836px;
  min-height: 288px;
}

.news .comLink {
  position: absolute;
  left: 15px;
  bottom: 50px;
  width: 182px;
}

.news .comLink a,
.comLink a {
  position: relative;
  display: block;
  padding: 9px 16px 10px;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 24px;
  font-size: 1.8rem;
  text-align: center;
  letter-spacing: 0.08em;
}

.news .comLink a::after,
.comLink a::after {
  content: ">";
  margin-left: 28px;
}

.comNewsBox .tabUl {
  border-bottom: 1px solid #d5d5d5;
}

.comNewsBox .tabUl li {
  width: 138px;
  margin: 0 31px -1px 0;
}

.comNewsBox .tabUl a {
  display: block;
  padding: 9px 0 7px;
  background-color: #ececec;
  border: 1px solid #ececec;
  border-bottom-color: #d5d5d5;
  border-radius: 5px 5px 0 0;
  font-size: 1.4rem;
  text-align: center;
}

.comNewsBox .tabUl .on a {
  background-color: transparent;
  border-color: #d5d5d5;
  border-bottom-color: #fff;
}

.comNewsBox .tabBox {
  padding: 9px 0 0;
}

.comNewsBox .tabBox + .tabBox {
  display: none;
}

.comNewsBox .tabBox a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 33px 5px 22px 20px;
  border-bottom: 1px solid #d5d5d5;
}

.comNewsBox .tabBox .sort {
  width: 85px;
  margin-right: 23px;
}

.comNewsBox .tabBox .sort span {
  display: block;
  padding: 2px 0 1px;
  color: #fff;
  background-color: #758aa7;
  font-size: 1.2rem;
  text-align: center;
}

.category-badge.category-newscat {
  background-color: #758aa7;
}

.category-badge.category-service {
  background-color: #6f8f62;
}

.comNewsBox .tabBox .sort .category-service {
  background-color: #6f8f62;
}

.comNewsBox .tabBox .time {
  width: 90px;
  margin-right: 29px;
  color: #808080;
  font-size: 1.5rem;
}

.comNewsBox .tabBox .txt {
  width: 550px;
}

.news-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
}

.headline {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
}

.news-title {
  display: grid;
  gap: 45px;
  justify-items: center;
}

.outline-link {
  display: block;
  width: 184px;
  padding: 9px 16px 10px;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 0.08em;
}

.outline-link::after {
  content: ">";
  margin-left: 28px;
}

.headline span {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
}

.topics {
  position: relative;
  border-top: 1px solid var(--line);
}

.topic-tabs {
  display: grid;
  grid-template-columns: repeat(3, 138px);
  gap: 31px;
  margin: -39px 0 8px;
}

.topic-tabs li {
  padding: 10px 0 8px;
  text-align: center;
  background: #ececec;
  border: 1px solid #ececec;
  border-bottom-color: var(--line);
  border-radius: 5px 5px 0 0;
  font-size: 1.4rem;
}

.topic-tabs li:first-child {
  background: #fff;
  border-color: var(--line);
  border-bottom-color: #fff;
}

.topics article {
  display: grid;
  grid-template-columns: 112px 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.topics time {
  color: #808080;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.topics b {
  display: inline-flex;
  justify-content: center;
  padding: 4px 8px;
  color: #fff;
  background: #758aa7;
  font-size: 1.2rem;
}

.topics p {
  overflow-wrap: anywhere;
}

.service-intro {
  padding: 103px 0 116px;
  background: url("../img/service_bg.jpg") no-repeat center center / cover;
}

.service-intro .headline {
  margin-bottom: 84px;
}

.service-intro h3 {
  margin-bottom: 42px;
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 1.62;
  text-align: center;
  letter-spacing: 0.08em;
}

.service-intro p {
  width: 765px;
  margin: 0 auto;
  line-height: 2.01;
}

.support-section {
  padding: 134px 0 126px;
  background: var(--beige) url("../img/servise_box_bg.png") no-repeat left top / 100% auto;
}

.support-section h2 {
  margin-bottom: 104px;
  color: #fff;
  font-family: var(--serif);
  font-size: 5.2rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}

.support-section h2 span {
  display: block;
  margin-bottom: 34px;
  font-size: 3rem;
}

.support-list {
  display: grid;
  grid-template-columns: repeat(3, 290px);
  gap: 65px;
  margin-bottom: 95px;
}

.support-list li {
  min-height: 500px;
  padding-bottom: 24px;
  background: #fff url("../img/service_photo04.jpg") no-repeat left bottom / 291px 24px;
  box-shadow: 3px 0 8px 1px rgba(0, 0, 0, 0.3);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.support-list li:hover {
  transform: translateY(-8px);
  box-shadow: 10px 14px 26px rgba(0, 0, 0, 0.24);
}

.support-list figure {
  position: relative;
}

.support-list figure span {
  position: absolute;
  right: 18px;
  bottom: -8px;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
}

.support-list figure small {
  margin-right: 5px;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  vertical-align: 5px;
}

.support-list h3 {
  min-height: 92px;
  padding: 22px 12px 10px;
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1.45;
  text-align: center;
  letter-spacing: 0.06em;
}

.support-list p {
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 1.45rem;
  line-height: 1.75;
}

.support-copy {
  width: 850px;
  margin: 0 auto;
  line-height: 1.94;
  text-align: center;
}

.scan-banners {
  padding: 96px 0 130px;
  background: var(--beige);
}

.scan-banners .content {
  display: grid;
  gap: 24px;
  justify-items: center;
}

.com-scan h2 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
}

.com-scan .scan-heading {
  margin-top: 92px;
}

.com-scan .scan-heading span {
  color: var(--red);
}

.com-scan .scan-heading small {
  margin-left: 4px;
  color: var(--ink);
  font-size: 0.55em;
}

.scan-text {
  width: 800px;
  color: #222;
  font-size: 1.65rem;
  line-height: 2;
}

.scan-text span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 1.35rem;
}

.scan-banner {
  width: 800px;
}

.scan-banner a {
  display: block;
  transition: opacity 0.25s ease;
}

.scan-banner a:hover {
  opacity: 0.72;
}

.scan-banners img {
  width: 800px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.video-frame,
.news-embed {
  position: relative;
  width: min(800px, 100%);
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.video-frame iframe,
.news-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.merit-section {
  padding: 126px 0 140px;
  color: #fff;
  background: url("../img/merit_bg.jpg") no-repeat center center / cover;
}

.merit-section .headline {
  margin-bottom: 72px;
  color: #000;
  letter-spacing: 0.2em;
}

.merit-section .headline span {
  color: #fff;
}

.merit-section h3 {
  margin-bottom: 72px;
  font-family: var(--serif);
  font-size: 4.4rem;
  line-height: 1.61;
  text-align: center;
  letter-spacing: 0.05em;
}

.merit-circles {
  display: grid;
  grid-template-columns: repeat(4, 191px);
  gap: 45px;
  justify-content: center;
  margin-bottom: 82px;
}

.merit-circles li {
  display: grid;
  place-items: center;
  width: 191px;
  height: 191px;
  color: var(--red);
  background: #fff;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  animation: pulseSoft 4s ease-in-out infinite;
}

.merit-section p {
  width: 900px;
  margin: 0 auto;
  line-height: 2.01;
  text-align: center;
}

.case-section {
  padding: 126px 0 140px;
  background: url("../img/case_bg.jpg") no-repeat center center / cover;
}

.case-section .headline {
  margin-bottom: 86px;
  letter-spacing: 0.2em;
}

.case-section h3 {
  margin-bottom: 135px;
  font-family: var(--serif);
  font-size: 4.2rem;
  text-align: center;
  letter-spacing: 0.1em;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(3, 306px);
  gap: 121px 41px;
}

.case-list li {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.case-list li:hover {
  transform: translateY(-7px);
  filter: brightness(1.04);
}

.case-list p {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  column-gap: 8px;
  align-items: center;
  padding-right: 10px;
  min-height: 50px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(to right, #c42c2c, var(--deep-red));
  font-family: var(--serif);
  text-align: center;
  letter-spacing: 0.045em;
}

.case-list p::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 115px;
  height: 50px;
  content: "";
  background: url("../img/case_img.png") no-repeat left top / 115px 50px;
}

.case-list span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.case-list small {
  margin-right: 8px;
  font-size: 1.2rem;
  vertical-align: 2px;
}

.case-list strong {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 1.28vw, 1.95rem);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: clip;
}

.contents-section {
  margin-bottom: 140px;
  padding: 125px 0 190px;
  color: #fff;
  background: url("../img/contents_bg.jpg") no-repeat center center / cover;
}

.contents-section .headline {
  margin-bottom: 120px;
  color: #fff;
}

.contents-section .headline span {
  color: #fff;
}

.contents-list {
  display: grid;
  grid-template-columns: repeat(3, 306px);
  gap: 40px;
}

.contents-list a {
  position: relative;
  display: grid;
  min-height: 210px;
  padding: 32px 24px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(0, 0, 0, 0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}

.contents-list a:hover {
  background: rgba(203, 46, 46, 0.78);
  transform: translateY(-6px);
}

.contents-list h3 {
  font-family: var(--serif);
  font-size: 2.8rem;
}

.contents-list h3 span {
  display: block;
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.contents-list b {
  align-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.contents-list p {
  margin-top: 28px;
  color: #fff;
  line-height: 1.85;
}

.contact-section {
  background: url("../img/com_box_bg.jpg") no-repeat center center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-panel > div {
  min-height: 500px;
  padding: 150px 60px 136px;
  color: #fff;
  text-align: center;
}

.contact-panel > div:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.contact-panel .headline {
  margin-bottom: 58px;
  color: #fff;
}

.contact-panel .headline span {
  color: #fff;
}

.contact-panel p {
  margin-bottom: 48px;
  font-weight: 700;
  line-height: 1.9;
}

.white-button {
  display: block;
  width: 300px;
  margin: 0 auto 42px;
  padding: 15px 10px;
  color: #505050;
  background: #fff;
  border: 1px solid #fff;
  font-family: var(--serif);
  font-size: 2rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.white-button:hover {
  color: #fff;
  background: transparent;
}

.tel {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.tel span {
  margin-right: 5px;
  font-size: 3rem;
  vertical-align: 3px;
}

.site-footer {
  padding: 107px 0 115px;
  color: #fff;
  background: url("../img/f_bg.jpg") no-repeat center center / cover;
}

.site-footer .content {
  width: var(--content);
}

.footer-logo {
  width: 364px;
  margin-bottom: 47px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: start;
}

.footer-address p {
  margin-bottom: 26px;
  font-weight: 700;
  line-height: 1.875;
}

.footer-address a {
  color: #fff;
}

.footer-address small {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: 260px 170px;
  gap: 34px;
}

.footer-nav a {
  display: block;
  padding: 5px 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.25s ease;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.pageTitle {
  margin: 130px 0 160px;
  padding: 74px 0 82px;
  color: #000;
  text-align: center;
  background: url("../img/page_title_bg.jpg") no-repeat center center / cover;
}

#news .pageTitle,
#news_detail .pageTitle {
  margin-bottom: 56px;
  color: #fff;
  background:
    linear-gradient(rgba(18, 28, 30, 0.52), rgba(18, 28, 30, 0.52)),
    url("../img/page_title_bg.jpg") no-repeat center center / cover;
}

#news .pageTitle .headLine01,
#news_detail .pageTitle .headLine01 {
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 24px;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.58);
}

#news .pageTitle .headLine01 .en,
#news_detail .pageTitle .headLine01 .en {
  color: #fff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.58);
}

.headLine01 {
  font-family: var(--serif);
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.45;
}

.headLine01 .en {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.05;
}

.headLine04 {
  font-family: var(--serif);
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.headLine04 .en {
  display: block;
  color: var(--red);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.sub-hero {
  margin-top: 130px;
  padding: 106px 0 96px;
  color: #fff;
  background: linear-gradient(rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.28)), url("../img/main_visual_bg.jpg") no-repeat center center / cover;
}

.sub-hero p {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.sub-hero h1 {
  font-family: var(--serif);
  font-size: 4.8rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.sub-section {
  padding: 96px 0 112px;
}

#news .sub-section,
#news_detail .sub-section {
  padding-top: 0;
}

.narrow-content {
  max-width: 900px;
}

.lead-text {
  margin: 0 auto 58px;
  line-height: 2;
  text-align: center;
}

.sub-card-list {
  margin-top: 60px;
}

.sub-merit-circles {
  margin-top: 50px;
}

.text-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.text-grid article,
.step-list li,
.faq-list details,
.company-table,
.news-list article,
.news-detail,
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
}

.text-grid article {
  padding: 32px;
}

.text-grid h3,
.step-list h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 2.2rem;
}

.step-list {
  display: grid;
  gap: 18px;
}

.step-list li {
  position: relative;
  padding: 28px 32px 28px 100px;
}

.step-list span {
  position: absolute;
  top: 25px;
  left: 30px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 700;
}

.faq-list p {
  padding: 0 0 22px;
  line-height: 1.9;
}

.estimate-panel {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: center;
  padding: 48px;
  color: #fff;
  background: linear-gradient(120deg, rgba(94, 128, 137, 0.92), rgba(203, 46, 46, 0.92)), url("../img/com_box_bg.jpg") no-repeat center center / cover;
}

.estimate-panel h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 3rem;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.company-table th {
  width: 220px;
  font-family: var(--serif);
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 36px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.contact-form label span {
  color: var(--red);
  font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  font: inherit;
}

.contact-form button {
  width: min(100%, 320px);
  padding: 16px;
  color: #fff;
  background: var(--red);
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-message {
  margin-bottom: 24px;
  padding: 16px 18px;
  font-weight: 700;
}

.form-message.is-success {
  color: #176233;
  background: #e7f5ec;
}

.form-message.is-error {
  color: #8a1515;
  background: #fae9e9;
}

#case .pageTitle {
  margin-bottom: 147px;
  background-image: url("../img/case_page_title_bg.jpg");
}

#case .pageTitle .headLine01,
#case .pageTitle .headLine01 .en {
  color: #fff;
}

#case .sub-section {
  padding: 0;
}

#case .headLine04 {
  margin-bottom: 39px;
}

#case .headLine04 .en {
  margin-top: 18px;
}

#case .topText {
  margin-bottom: 73px;
  line-height: 1.93;
  text-align: center;
}

#case .topText span {
  display: block;
}

#case .caseBox {
  margin-bottom: 196px;
}

#case .caseBox .content {
  width: 950px;
}

#case .case:not(:last-child) {
  margin-bottom: 137px;
}

#case .case h3 {
  position: relative;
  margin: 0 0 54px 12px;
}

#case .case h3::before {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  content: "";
}

#case .case h3 .num {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding-right: 34px;
  color: var(--red);
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
}

#case .case h3 .en {
  display: inline-block;
  margin-right: 14px;
  font-size: 2.8rem;
  letter-spacing: 0.05em;
  vertical-align: 3px;
}

#case .case .imgBox {
  flex-direction: row-reverse;
  width: 898px;
  margin: 0 auto;
}

#case .case .imgBox .textBox {
  width: 422px;
}

#case .case .imgBox h4 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: 3.6rem;
  letter-spacing: 0.1em;
}

#case .case .imgBox .ttlList {
  margin-bottom: 31px;
}

#case .case .imgBox .ttlList li {
  min-width: 188px;
  margin-right: 32px;
  padding: 10px 12px 8px;
  color: #fff;
  background-color: var(--red);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

#case .case .imgBox .ttlList li:nth-child(2n) {
  margin-right: 0;
}

#case .case .imgBox .photoBox {
  width: 405px;
  margin: 22px 0 0 17px;
}

#case .case .imgBox .pho {
  margin-bottom: 58px;
}

#case .case .imgBox .textList {
  margin: 0 -10px;
}

#case .case .imgBox .textList li {
  width: 192px;
  margin-right: 26px;
  padding: 0 10px 6px 5px;
  border-bottom: 1px solid #000;
  font-size: 1.8rem;
  font-weight: 700;
}

#case .case .imgBox .textList li:nth-child(2n) {
  margin-right: 0;
}

#case .case .imgBox .textList li .sml {
  display: inline-block;
  margin-right: 21px;
  font-size: 1.4rem;
  font-weight: 500;
}

#case .case .imgBox .text {
  line-height: 2.01;
  text-align: justify;
}

#case .case .imgBox .text01 {
  margin-top: 31px;
}

#case .case .imgBox .photoBox .text {
  margin-top: 14px;
  font-size: 1.8rem;
  text-align: left;
}

#case .case .imgBox .banner {
  width: 377px;
  margin: -7px 0 0 20px;
}

#case .case .imgBox .banner a:hover {
  opacity: 0.5;
}

#faq .pageTitle {
  margin-bottom: 0;
  background-image: url("../img/faq_page_title_bg.jpg");
}

#faq .sub-section {
  padding: 0;
}

#faq .faq-lead {
  padding: 42px 0 38px;
  text-align: center;
}

#faq .faqBox {
  padding: 86px 0 200px;
  background-color: #ebeae7;
}

#faq .faqBox dl {
  padding: 62px 150px 57px 225px;
  background-color: #fff;
}

#faq .faqBox dl:not(:last-child) {
  margin-bottom: 80px;
}

#faq .faqBox dt {
  position: relative;
  margin-bottom: 43px;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

#faq .faqBox dt::before {
  position: absolute;
  top: -13px;
  left: -61px;
  width: 40px;
  height: 40px;
  color: var(--red);
  content: "Q";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

#faq .faqBox dd {
  position: relative;
  margin: 0 42px 0 6px;
  line-height: 2.01;
  text-align: justify;
}

#faq .faqBox dd::before {
  position: absolute;
  top: -11px;
  left: -63px;
  width: 40px;
  height: 40px;
  color: #808080;
  content: "A";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-list article {
  display: grid;
  grid-template-columns: 110px 90px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
}

.news-list time,
.news-detail time {
  color: #777;
  font-family: Georgia, "Times New Roman", serif;
}

.news-list b,
.news-detail b {
  display: inline-flex;
  justify-content: center;
  padding: 4px 8px;
  color: #fff;
  background: #758aa7;
  font-size: 1.2rem;
}

.news-detail time {
  display: inline-block;
  margin-right: 18px;
}

.news-detail {
  padding: 36px;
}

.news-detail p {
  margin: 26px 0 30px;
  line-height: 2;
}

.news-detail p a {
  color: var(--red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.news-detail p a:hover {
  color: #9d161c;
}

.news-embed {
  margin: 34px 0;
}

.news-neighbor-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.news-neighbor,
.news-back-link {
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.news-neighbor {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 10px;
  align-content: start;
  min-height: 132px;
  padding: 18px 20px;
}

.news-neighbor:hover {
  border-color: var(--red);
  color: var(--red);
}

.news-neighbor > span {
  grid-column: 1 / -1;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.news-neighbor time {
  color: #777;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.news-neighbor b {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  padding: 3px 8px;
  color: #fff;
  background: #758aa7;
  font-size: 1.15rem;
}

.news-list b.category-service,
.news-detail b.category-service,
.news-neighbor b.category-service {
  background: #6f8f62;
}

#column .column-content {
  max-width: 1120px;
}

#column .pageTitle {
  margin-bottom: 48px;
}

#column .sub-section {
  padding-top: 0;
  padding-bottom: 96px;
}

.column-index {
  display: grid;
  gap: 42px;
}

.column-index__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: 34px 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
}

.column-index__eyebrow,
.column-group__head p {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  letter-spacing: 0.12em;
}

.column-index__intro h2 {
  margin: 8px 0 14px;
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
}

.column-index__intro p:last-child {
  max-width: 720px;
  line-height: 2;
}

.column-index__stats {
  display: grid;
  grid-template-columns: repeat(2, 112px);
  gap: 12px;
  margin: 0;
}

.column-index__stats div {
  padding: 18px 10px;
  text-align: center;
  background: #f7f7f3;
  border: 1px solid #e8e4dc;
}

.column-index__stats dt {
  color: #777;
  font-size: 1.2rem;
}

.column-index__stats dd {
  margin: 4px 0 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
}

.column-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.column-featured article,
.column-list article {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.column-featured article {
  min-height: 230px;
  padding: 28px;
}

.column-featured article.is-primary {
  grid-row: span 2;
  min-height: 478px;
  padding: 38px;
  color: #fff;
  background:
    linear-gradient(rgba(20, 34, 45, 0.82), rgba(20, 34, 45, 0.86)),
    url("../img/scan-hero.jpg") center / cover;
  border-color: transparent;
}

.column-featured article:hover,
.column-list article:hover {
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(15, 24, 34, 0.08);
  transform: translateY(-2px);
}

.column-featured span {
  display: inline-flex;
  width: fit-content;
  padding: 5px 11px;
  color: #fff;
  background: #6f8f62;
  font-size: 1.2rem;
}

.column-featured .is-primary span {
  background: var(--red);
}

.column-featured h3 {
  margin: 20px 0 14px;
  font-family: var(--serif);
  font-size: 2.25rem;
  line-height: 1.55;
}

.column-featured .is-primary h3 {
  margin-top: 32px;
  font-size: 3.4rem;
}

.column-featured p {
  line-height: 1.9;
}

.column-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.column-category-nav a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.column-category-nav a:hover {
  color: var(--red);
  border-color: var(--red);
}

.column-category-nav span {
  min-width: 26px;
  padding: 1px 8px;
  color: #fff;
  text-align: center;
  background: #3c4b58;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.column-groups {
  display: grid;
  gap: 54px;
}

.column-group__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: end;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #243746;
}

.column-group__head p {
  grid-column: 1 / -1;
}

.column-group__head h3 {
  font-family: var(--serif);
  font-size: 2.8rem;
  line-height: 1.35;
}

.column-group__head span {
  color: #777;
  font-size: 1.35rem;
}

.column-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.column-list article {
  display: flex;
  flex-direction: column;
  min-height: 238px;
  padding: 22px;
}

.column-list b {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 5px 9px;
  color: #fff;
  background: #6f8f62;
  font-size: 1.15rem;
  line-height: 1.5;
}

.column-list a {
  margin: 16px 0 12px;
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1.55;
  font-weight: 700;
}

.column-list p {
  margin-top: auto;
  color: #555;
  font-size: 1.35rem;
  line-height: 1.85;
}

.column-service-bridge {
  margin: 42px 0 46px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 6px solid var(--red);
  box-shadow: 0 18px 44px rgba(36, 55, 70, 0.08);
}

.column-service-bridge__label {
  margin: 0 0 8px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.news-detail .column-service-bridge h2 {
  margin: 0 0 18px;
  color: #243746;
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1.45;
}

.news-detail .column-service-bridge p {
  margin: 0 0 18px;
}

.column-service-bridge ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 18px 20px 18px 36px;
  background: #f7f7f3;
  border: 1px solid #e8e4dc;
}

.column-service-bridge li {
  line-height: 1.8;
}

.column-service-bridge__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.column-service-bridge__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  color: #fff;
  font-weight: 700;
}

.column-service-bridge__button--primary {
  background: var(--red);
}

.column-service-bridge__button--secondary {
  background: #243746;
}

.column-service-bridge__text-link {
  color: var(--red);
  font-weight: 700;
}

.column-context {
  display: grid;
  gap: 22px;
  margin-top: 36px;
}

.column-context h2 {
  margin: 6px 0 14px;
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1.45;
}

.column-context__case,
.column-context__faq,
.column-context__related {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
}

.column-context__case {
  border-left: 6px solid var(--red);
}

.column-context__eyebrow {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.column-context__case p:last-of-type {
  line-height: 1.95;
}

.column-context__case a,
.column-context__link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 16px;
  color: #fff;
  background: #243746;
  font-weight: 700;
}

.column-context__faq ul {
  display: grid;
  gap: 10px;
}

.column-context__faq li a {
  display: block;
  padding: 13px 16px;
  background: #f7f7f3;
  border: 1px solid #e8e4dc;
  font-weight: 700;
  line-height: 1.65;
}

.column-context__faq li a:hover,
.column-context__related a:hover strong {
  color: var(--red);
}

.column-context__related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.column-context__related a {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: #f7f7f3;
  border: 1px solid #e8e4dc;
}

.column-context__related span {
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  color: #fff;
  background: #6f8f62;
  font-size: 1.1rem;
  line-height: 1.45;
}

.column-context__related strong {
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.55;
}

.news-neighbor strong {
  grid-column: 1 / -1;
  margin-top: 4px;
  font-size: 1.55rem;
  line-height: 1.6;
}

.news-neighbor.is-empty {
  color: #999;
  background: #f7f7f7;
}

.news-neighbor.is-empty em {
  grid-column: 1 / -1;
  font-style: normal;
  font-size: 1.35rem;
}

.news-back-link {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 220px;
  padding: 13px 24px;
  color: var(--red);
  border-color: var(--red);
  border-radius: 999px;
  text-align: center;
}

.news-back-link:hover {
  color: #fff;
  background: var(--red);
}

.news-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.news-pagination a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  color: #333;
  font-family: Georgia, "Times New Roman", serif;
}

.news-pagination a.is-current,
.news-pagination a:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

@keyframes floatIn {
  from {
    transform: translateY(24px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  body {
    min-width: 0;
    padding-bottom: 61px;
    overflow-x: hidden;
  }

  section,
  .site-footer {
    scroll-margin-top: 76px;
  }

  .content,
  .main-visual .content,
  .site-footer .content {
    width: auto;
    margin-right: 40px;
    margin-left: 40px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    min-height: 67px;
    padding: 11px 19px 0;
    align-items: start;
  }

  .brand img {
    width: 186px;
  }

  .menu-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 24px;
    height: 44px;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    height: auto;
    gap: 0;
    overflow: hidden;
    padding: 0;
    font-size: 1.34rem;
    text-align: left;
    visibility: hidden;
    border-top: 1px solid #eee;
    pointer-events: none;
    transition: max-height 0.28s ease, padding 0.28s ease, visibility 0.28s ease;
  }

  .menu-toggle:checked ~ .nav-links {
    max-height: 560px;
    padding: 10px 0 12px;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: flex-start;
    height: 42px;
    padding: 0 4px;
    border-bottom: 1px solid #eee;
  }

  .nav-links .movie-link {
    flex-direction: row;
    width: 100%;
    height: 52px;
    margin-top: 10px;
    gap: 10px;
    padding: 0 12px 0 46px;
    align-items: center;
    justify-content: center;
    border-bottom: 0;
    font-size: 1.25rem;
  }

  .nav-links .movie-link::before {
    top: 16px;
    left: calc(50% - 38px);
    width: 30px;
    height: 20px;
    border-radius: 5px;
    transform: translateX(-50%);
  }

  .nav-links .movie-link::after {
    top: 22px;
    left: calc(50% - 38px);
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 7px;
  }

  .lang-switch {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    justify-content: center;
    padding: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.28s ease, padding 0.28s ease, visibility 0.28s ease;
  }

  .menu-toggle:checked ~ .lang-switch {
    max-height: 230px;
    padding: 0 0 12px;
    visibility: visible;
    pointer-events: auto;
  }

  .lang-switch summary {
    width: 58px;
    margin: 0 auto 8px;
  }

  .language-menu {
    position: static;
    width: min(100%, 250px);
    margin: 0 auto;
    box-shadow: none;
  }

  .fixed-actions {
    top: auto;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    transform: none;
  }

  .fixed-actions .sp-only-action {
    display: block;
    background: #a8bf89;
  }

  .fixed-actions li {
    height: 61px;
  }

  .fixed-actions a {
    writing-mode: horizontal-tb;
    font-size: 1.32rem;
    letter-spacing: 0.04em;
  }

  .main-visual {
    margin-top: 0;
  }

  .sub-hero {
    margin-top: 0;
  }

  .support-list,
  .case-list,
  .contents-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .support-list {
    gap: 28px;
  }

  .support-list li {
    min-width: 0;
  }

  .support-list figure img,
  .case-list img {
    width: 100%;
  }

  .case-list {
    gap: 72px 24px;
  }

  .contents-list {
    gap: 28px;
  }

  .scan-banners img,
  .scan-banner,
  .scan-text,
  .service-intro p,
  .support-copy,
  .merit-section p {
    width: 100%;
    max-width: 900px;
  }

  .merit-circles {
    gap: 25px;
  }

  .footer-layout {
    grid-template-columns: minmax(320px, 400px) 1fr;
    gap: 54px;
  }

  .footer-nav {
    grid-template-columns: minmax(210px, 1fr) minmax(140px, 0.8fr);
    gap: 24px;
  }
}

@media (max-width: 896px) {
  body {
    min-width: 0;
    padding-bottom: 60px;
    font-size: 1.6rem;
    overflow-x: hidden;
  }

  .content {
    width: auto;
    margin: 0 30px;
  }

  .site-header {
    position: sticky;
    grid-template-columns: 1fr auto;
    min-height: 67px;
    padding: 11px 19px 0;
    align-items: start;
  }

  .brand img {
    width: 186px;
  }

  .menu-toggle {
    position: absolute;
    display: block;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 24px;
    height: 44px;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .menu-toggle:checked + .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle:checked + .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    max-height: 0;
    height: auto;
    gap: 0;
    overflow: hidden;
    padding: 0;
    font-size: 1.34rem;
    text-align: left;
    border-top: 1px solid #eee;
    transition: max-height 0.28s ease, padding 0.28s ease;
  }

  .menu-toggle:checked ~ .nav-links {
    max-height: 560px;
    padding: 10px 0 12px;
  }

  .nav-links a {
    justify-content: flex-start;
    height: 42px;
    padding: 0 4px;
    border-bottom: 1px solid #eee;
  }

  .nav-links .movie-link {
    flex-direction: row;
    width: 100%;
    height: 52px;
    margin-top: 10px;
    gap: 10px;
    padding: 0 12px 0 46px;
    align-items: center;
    justify-content: center;
    border-bottom: 0;
    font-size: 1.25rem;
  }

  .nav-links .movie-link::before {
    top: 16px;
    left: calc(50% - 38px);
    width: 30px;
    height: 20px;
    border-radius: 5px;
    transform: translateX(-50%);
  }

  .nav-links .movie-link::after {
    top: 22px;
    left: calc(50% - 38px);
    border-top-width: 4px;
    border-bottom-width: 4px;
    border-left-width: 7px;
  }

  .lang-switch {
    grid-column: 1 / -1;
    max-height: 0;
    overflow: hidden;
    justify-content: center;
    padding: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.28s ease, padding 0.28s ease;
  }

  .menu-toggle:checked ~ .lang-switch {
    max-height: 230px;
    padding: 0 0 12px;
    visibility: visible;
    pointer-events: auto;
  }

  .lang-switch summary {
    width: 58px;
    margin: 0 auto 8px;
  }

  .language-menu {
    position: static;
    width: min(100%, 250px);
    margin: 0 auto;
    box-shadow: none;
  }

  .fixed-actions {
    top: auto;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    transform: none;
  }

  .fixed-actions .sp-only-action {
    display: block;
    background: #a8bf89;
  }

  .fixed-actions li {
    height: 61px;
  }

  .fixed-actions a {
    writing-mode: horizontal-tb;
    font-size: 1.32rem;
    letter-spacing: 0.04em;
  }

  .main-visual {
    min-height: 420px;
    margin-top: 0;
    padding: 26px 0;
    background-image: url("../img/sp_main_visual_bg.jpg");
    background-position: center center;
  }

  .hero-service-name {
    margin: 0 0 14px;
    font-size: 2rem;
  }

  .hero-wordmark {
    gap: 7px;
    margin-bottom: 16px;
  }

  .hero-wordmark span {
    font-size: 2.4rem;
  }

  .hero-wordmark strong {
    font-size: 4.8rem;
  }

  .hero-wordmark em {
    font-size: 1.7rem;
  }

  .hero-wordmark b {
    font-size: 4rem;
  }

  .hero-copy h1 {
    max-width: 300px;
    font-size: 1.45rem;
    line-height: 1.75;
    letter-spacing: 0.03em;
  }

  .hero-lead-text {
    max-width: 315px;
    margin-top: 18px;
    font-size: 1.18rem;
    line-height: 1.72;
    letter-spacing: 0.02em;
  }

  .topic-tabs {
    display: none;
  }

  .news {
    padding: 56px 0 68px;
  }

  .news .content {
    display: block;
    width: auto;
  }

  .news .headLine02 {
    width: auto;
    margin: 0 0 32px;
    font-size: 1.6rem;
  }

  .news .headLine02 .en {
    font-size: 4rem;
  }

  .news .comNewsBox {
    width: auto;
    min-height: 0;
  }

  .news .comLink {
    position: static;
    width: 182px;
    margin: 34px auto 0;
  }

  .comNewsBox .tabUl li {
    width: 29.5%;
    margin: 0 4.5% -1px 0;
  }

  .comNewsBox .tabUl li:last-child {
    margin-right: 0;
  }

  .comNewsBox .tabUl a {
    padding: 9px 0 6px;
    font-size: 1.1rem;
  }

  .comNewsBox .tabBox {
    padding: 0;
  }

  .comNewsBox .tabBox a {
    padding: 24px 20px 17px 18px;
  }

  .comNewsBox .tabBox .sort {
    width: 100px;
    margin-right: 14px;
  }

  .comNewsBox .tabBox .sort span {
    padding: 1px 0 0;
    font-size: 1.4rem;
  }

  .comNewsBox .tabBox .time {
    width: 90px;
    margin-right: 0;
    font-size: 1.4rem;
  }

  .comNewsBox .tabBox .txt {
    width: 100%;
    margin-top: 13px;
    line-height: 1.68;
  }

  .main-visual .content {
    width: auto;
  }

  .news-layout,
  .contact-panel,
  .support-list,
  .case-list,
  .contents-list,
  .merit-circles {
    grid-template-columns: 1fr;
  }

  .news-title {
    gap: 0;
  }

  .outline-link {
    display: none;
  }

  .headline {
    margin-bottom: 42px;
  }

  .headline span {
    font-size: 4rem;
  }

  .topics article {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-intro,
  .support-section,
  .merit-section,
  .case-section {
    padding: 76px 0;
  }

  .service-intro h3,
  .merit-section h3,
  .case-section h3 {
    font-size: 3rem;
  }

  .scan-banner,
  .scan-text,
  .service-intro p,
  .support-copy,
  .merit-section p {
    width: auto;
  }

  .scan-banners {
    padding: 64px 0 86px;
  }

  .com-scan h2 {
    font-size: 2.25rem;
    line-height: 1.6;
  }

  .com-scan .scan-heading {
    margin-top: 54px;
  }

  .support-section h2 {
    font-size: 3.4rem;
  }

  .support-section h2 span {
    font-size: 2rem;
  }

  .support-list {
    gap: 42px;
  }

  .support-list li,
  .case-list li {
    width: min(100%, 360px);
    margin: 0 auto;
  }

  .case-list {
    gap: 44px;
  }

  .merit-circles {
    justify-items: center;
    gap: 22px;
  }

  .contents-section {
    margin-bottom: 0;
    padding: 76px 0;
  }

  .contact-panel > div {
    min-height: auto;
    padding: 76px 30px;
  }

  .site-footer {
    padding: 61px 0 77px;
  }

  .site-footer .content {
    width: auto;
    margin: 0 39px;
  }

  .footer-logo {
    width: min(292px, 100%);
    margin-bottom: 57px;
  }

  .footer-layout {
    display: block;
  }

  .footer-nav {
    display: none;
  }

  .sub-hero {
    padding: 72px 0 68px;
  }

  .sub-hero h1 {
    font-size: 3.2rem;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .pageTitle {
    margin: 65px 0 10px;
    padding: 60px 20px 64px;
    background-image: url("../img/sp_page_title_bg.jpg");
  }

  .headLine01 {
    font-size: 2.6rem;
  }

  .headLine01 .en {
    font-size: 3.8rem;
  }

  .headLine04 {
    font-size: 3rem;
  }

  .sub-section {
    padding: 72px 0;
  }

  #case .pageTitle {
    margin-bottom: 91px;
    background-image: url("../img/case_sp_page_title_bg.jpg");
  }

  #case .headLine04 {
    margin-bottom: 29px;
    line-height: 1.67;
  }

  #case .headLine04 .en {
    margin-top: 8px;
  }

  #case .topText {
    margin: 0 20px 65px;
    text-align: left;
  }

  #case .topText span {
    margin-top: 30px;
  }

  #case .caseBox {
    margin-bottom: 96px;
  }

  #case .caseBox .content {
    width: auto;
    margin: 0;
  }

  #case .case:not(:last-child) {
    margin-bottom: 65px;
  }

  #case .case h3 {
    margin: 0 0 42px 12px;
  }

  #case .case h3 .num {
    padding-right: 22px;
  }

  #case .case .imgBox {
    display: block;
    width: auto;
    margin: 0 16px;
  }

  #case .case .imgBox .textBox {
    width: auto;
    margin-bottom: 39px;
  }

  #case .case .imgBox h4 {
    margin: 0 0 28px;
    letter-spacing: 0;
    text-align: center;
  }

  #case .case .imgBox .ttlList {
    display: block;
    margin-bottom: 33px;
  }

  #case .case .imgBox .ttlList li {
    width: 250px;
    margin: 0 auto 12px;
    padding: 8px 4px;
  }

  #case .case .imgBox .ttlList li:nth-child(2n),
  #case .case .imgBox .ttlList li:last-child {
    margin: 0 auto;
  }

  #case .case .imgBox .photoBox {
    width: auto;
    margin: 0 5px;
  }

  #case .case .imgBox .pho {
    margin-bottom: 56px;
  }

  #case .case .imgBox .textList {
    display: block;
    margin: 0;
  }

  #case .case .imgBox .textList li {
    position: relative;
    width: 220px;
    margin: 0 auto 32px;
    text-align: right;
  }

  #case .case .imgBox .textList li:nth-child(2n) {
    margin: 0 auto;
  }

  #case .case .imgBox .textList li .sml {
    position: absolute;
    top: 3px;
    left: 3px;
    margin: 0;
  }

  #case .case .imgBox .photoBox .text {
    font-size: 1.6rem;
    text-align: center;
  }

  #case .case .imgBox .banner {
    width: auto;
    max-width: 289px;
    margin: 0 auto;
  }

  #faq .pageTitle {
    margin-bottom: 0;
    background-image: url("../img/faq_sp_page_title_bg.jpg");
  }

  #faq .faqBox {
    padding: 80px 0 100px;
  }

  #faq .faqBox .content {
    width: auto;
    margin: 0 20px;
  }

  #faq .faqBox dl {
    padding: 120px 30px 54px 36px;
  }

  #faq .faqBox dt {
    margin-bottom: 114px;
    font-size: 2.2rem;
    line-height: 1.55;
  }

  #faq .faqBox dt::before {
    top: -72px;
    left: -1px;
  }

  #faq .faqBox dd {
    margin: 0;
  }

  #faq .faqBox dd::before {
    top: -70px;
    left: 0;
  }

  .text-grid,
  .estimate-panel,
  .news-list article {
    grid-template-columns: 1fr;
  }

  .step-list li {
    padding: 26px;
  }

  .step-list span {
    position: static;
    display: block;
    margin-bottom: 8px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
  }

  .contact-form {
    padding: 24px;
  }

  .news-neighbor-nav {
    grid-template-columns: 1fr;
  }

  .news-back-link {
    width: 100%;
  }
}

@media (max-width: 1180px) {
  .column-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .column-featured article.is-primary {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 360px;
  }

  .column-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  #column .pageTitle {
    margin-bottom: 36px;
  }

  #column .sub-section {
    padding-top: 0;
  }

  #column .column-content {
    width: auto;
    margin: 0 20px;
  }

  .column-index {
    gap: 34px;
  }

  .column-index__intro {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 22px;
  }

  .column-index__intro h2 {
    font-size: 2.35rem;
    letter-spacing: 0;
  }

  .column-index__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .column-featured,
  .column-list {
    grid-template-columns: 1fr;
  }

  .column-featured article,
  .column-featured article.is-primary {
    min-height: auto;
    padding: 24px;
  }

  .column-featured .is-primary h3 {
    font-size: 2.55rem;
  }

  .column-category-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .column-category-nav a {
    justify-content: space-between;
    padding: 10px 12px;
    font-size: 1.3rem;
  }

  .column-group__head h3 {
    font-size: 2.25rem;
  }

  .column-list article {
    min-height: auto;
  }

  .column-context {
    gap: 18px;
    margin-top: 28px;
  }

  .column-service-bridge {
    margin: 34px 0 38px;
    padding: 24px 20px;
  }

  .news-detail .column-service-bridge h2 {
    font-size: 2.05rem;
  }

  .column-service-bridge__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .column-service-bridge__button {
    width: 100%;
  }

  .column-context__case,
  .column-context__faq,
  .column-context__related {
    padding: 22px;
  }

  .column-context h2 {
    font-size: 2.05rem;
  }

  .column-context__related > div {
    grid-template-columns: 1fr;
  }
}
