@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:wght@100..900&display=swap');
html, body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", "Noto Sans JP", serif;
  background-color: #fff;
  color: #4d4d4d;
  overflow-x: hidden;
}
a:link {
  text-decoration: none;
  color: #000;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:visited, a:active, a:hover {
  text-decoration: none;
  color: #000;
}
p, ul li, ol li, table, dt, dd {
  font-size: 86%;
  line-height: 1.6em;
  letter-spacing: 0.1em;
  text-align: left;
}
hr {
  margin: 100px 0;
}
img {
  max-width: 100%;
  height: auto;
}
#loading {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: #000;
  text-align: center;
  color: #000;
}
#logo {
  position: absolute;
  width: 300px;
  height: 36px;
  display: block;
  background: url("../image/logo.png") center center/300px 36px no-repeat;
  top: 50%;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, -50%);
  margin-top: -40px;
}
#loadnig_num {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 300px;
  transform: translate(-50%, -50%);
  color: #c47154;
  font-size: 16px;
}
.main_visual {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #000;
  overflow: hidden;
}
/* ===== main_visual canvas foundation ===== */
.mv-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.mv-foreground {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.main_visual #mv-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(300px, 70vw);
  height: auto;
  transform-origin: 50% 50%;
  pointer-events: none;
  will-change: transform, opacity;
  z-index: 2;
  /* 通常時（定着） */
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.main_visual .text_banner {
  z-index: 3;
  position: absolute;
  color: #fff;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 36px;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media (max-width: 1000px) {
  .main_visual .text_banner {
    font-size: 20px;
    width: 94%;
    text-align: center;
    margin: 0px;
    padding: 0px;
  }
}
/* ===== mv intro ===== */
.text_banner p {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 900ms ease, transform 900ms ease;
  letter-spacing: 0em !important;
}
body.mv-text-in .text_banner p {
  opacity: 1;
}
/* ring intro */
body.mv-intro #mv-ring {
  opacity: 0;
  transform: translate(-50%, -50%) scale(2.4);
}
/* イントロ実行：自然にゆっくり縮みながら不透明へ */
body.mv-intro.mv-ring-in #mv-ring {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 1400ms ease, transform 2600ms cubic-bezier(.18, .85, .25, 1);
}
/* 定着：さらに小さくして 1.0 に落ち着く */
body.mv-intro.mv-ring-settle #mv-ring {
  transform: translate(-50%, -50%) scale(1) rotate(0deg);
  transition: transform 1200ms cubic-bezier(.22, 1, .36, 1);
}
/* ===== Text mask reveal ===== */
.text_banner p {
  position: relative;
  display: inline-block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms cubic-bezier(.4, 0, .2, 1);
}
/* 表示状態 */
body.mv-text-in .text_banner p {
  clip-path: inset(0 0 0 0);
}
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 50px;
  z-index: 3;
}
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 10px;
  height: 50px;
  z-index: 2
}
.scrolldown span {
  position: absolute;
  left: -15px;
  top: -15px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #eee;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
.wrapper {
  width: 100%;
  min-height: calc(100%);
  position: relative;
  background: #fff;
}
@media (min-width: 1000px) {
  .onlysp {
    display: none;
  }
  #navTgl, label.close, label.open {
    display: none;
  }
  ul.global {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 30px;
    z-index: 3;
    top: 30px;
  }
  ul.global li {
    text-align: center;
    margin: 0px;
    font-size: 96%;
    font-weight: bold;
    display: inline-block;
  }
  ul.global li a {
    text-decoration: none;
    height: 20px;
    padding: 25px;
    font-weight: normal;
    color: #fff;
  }
  .sub ul.global li a {
    color: #000;
  }
}
@media (max-width: 1500px) {
  br.onlypc {
    display: none;
  }
}
@media (max-width: 1300px) {
  ul.global li a {
    text-decoration: none;
    height: 20px;
    padding: 15px;
    font-weight: normal;
    color: #fff;
  }
}
@media (max-width: 1000px) {
  .onlypc {
    display: none;
  }
  #navTgl {
    display: none;
  }
  label.close {
    background-color: rgba(0, 0, 0, 0);
  }
  label.open, label.close {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    transition: background-color .6s, transform .6s cubic-bezier(0.65, 0, 0.35, 1);
  }
  .open {
    z-index: 10;
    width: 50px;
    height: 50px;
    margin: 10px;
    background: #044669;
    border: 1px solid #fff;
  }
  .open span {
    position: absolute;
    left: 10px;
    height: 1px;
    width: 30px;
    display: inline-block;
    box-sizing: border-box;
    transition: background-color .6s, transform .6s;
    z-index: 9;
    background-color: #fff;
  }
  .open span:nth-of-type(1) {
    top: 20px;
  }
  .open span:nth-of-type(2) {
    top: 28px;
  }
  #navTgl:checked + .open {
    z-index: 9;
    transform: translateX(-240px);
    -webkit-transition: -webkit-transform .6s cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform .6s cubic-bezier(0.65, 0, 0.35, 1);
  }
  #navTgl:checked + .open span:nth-of-type(1) {
    -webkit-transform: translate(0px, 5px)rotate(45deg);
    transform: translateX(0px, 5px) rotate(45deg);
    background-color: #fff;
  }
  #navTgl:checked + .open span:nth-of-type(2) {
    -webkit-transform: translate(0px, -0px)rotate(-45deg);
    transform: translateX(0px, -0px) rotate(-45deg);
    background-color: #fff;
    left: 10px;
    top: 26px
  }
  #navTgl:checked + .open {
    z-index: 9;
  }
  .close {
    pointer-events: none;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition: background-color .6s;
  }
  #navTgl:checked ~ .close {
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 6;
  }
  .menu {
    z-index: 9;
    position: fixed;
    top: 0;
    right: 0;
    width: 240px;
    height: 100%;
    background-color: #044669;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform .6s cubic-bezier(0.65, 0, 0.35, 1);
    transition: transform .6s cubic-bezier(0.65, 0, 0.35, 1);
  }
  #navTgl:checked ~ .menu {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu p, .menu li, .menu li a {
    color: #fff;
  }
  .menu p {
    text-align: left;
  }
  .menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    float: left;
    width: 100%;
    margin-top: 20px;
  }
  .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
    font-size: 18px;
  }
  .menu li span {
    font-size: 12px;
    display: block
  }
  .menu li a {
    display: block;
    text-align: left;
    padding: 0.6em 1em;
    text-decoration: none;
    transition: background-color .6s;
  }
  .menu li a:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .menu li ul {
    padding: 0;
    margin: 0;
    float: left;
    display: block;
  }
  .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .6);
  }
  .menu li a {
    font-size: 100%;
    display: block;
    text-align: left;
    padding: 0.6em 1em;
    text-decoration: none;
    transition: background-color .6s;
  }
  .menu li a:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
header {
  position: absolute;
  width: 100%;
}
h1 {
  width: 250px;
  height: 30px;
  transition: background-image 0.3s ease;
  z-index: 4;
  position: relative;
  left: 30px;
  margin: 0px;
  top: 20px;
}
h1 a {
  width: 250px;
  height: 30px;
  display: block;
  background: url("../image/logo.png") center center/250px 30px no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.sub h1 a {
  background: url("../image/logo_K.png") center center/250px 30px no-repeat;
}
@media (max-width: 1000px) {
  h1 {
    width: 220px;
    height: 26px;
  }
  h1 a {
    width: 220px;
    height: 26px;
    background: url("../image/logo.png") center center/220px 26px no-repeat;
  }
  .sub h1 a {
    background: url("../image/logo_K.png") center center/220px 26px no-repeat;
  }
}
.c_color {
  color: #fff;
}
h2.ttl {
  font-weight: 500;
  letter-spacing: 0.1em;
  font-size: 48px;
  line-height: 1;
  position: relative;
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1px #000;
  margin: 30px 0px 0px 0px;
  padding: 0px;
}
.c_color h2.ttl {
  -webkit-text-stroke: 1px #fff;
}
/* 中身だけ塗るレイヤー */
h2.ttl::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  /* 文字の中だけを塗る */
  color: transparent;
  -webkit-text-stroke: 0;
  /* “塗り”を背景で作って、文字にクリップ */
  background: linear-gradient(#000 0 0) left / 0% 100% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-size 1.1s cubic-bezier(.2, .8, .2, 1);
}
.c_color h2.ttl::after {
  content: attr(data-text);
  background: linear-gradient(#fff 0 0) left / 0% 100% no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  transition: background-size 1.1s cubic-bezier(.2, .8, .2, 1);
}
h2.ttl.is-inview::after {
  background-size: 100% 100%;
}
.ttl_section span.ttl {
  position: absolute;
}
.ttl-reveal {
  color: transparent;
}
/* 文字（下に固定で置く） */
.ttl-reveal::before {
  content: attr(data-text);
}
.ttl-reveal::before {
  content: "";
}
/* 黒い帯 */
.ttl-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: scaleX(1);
  transform-origin: left center;
  z-index: 2;
}
.c_color .ttl-reveal::after {
  background: #fff;
}
/* 発火後：黒帯が短くなる（左→右へ消える） */
.ttl-reveal.is-inview::after {
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(.2, .8, .2, 1);
}
/* 発火後：文字を表示（タイミングを帯に合わせる） */
.ttl-reveal.is-inview {
  color: #000;
  transition: color 0s linear 0.15s; /* 少し遅らせて“帯が引いてから見える” */
}
.c_color .ttl-reveal.is-inview {
  color: #fff;
}
.btn span.view {
  position: relative;
}
.btn span.view::before {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 60px;
  left: calc(100% + 5px);
  height: 1px;
  background: #000;
  transition-timing-function: ease;
  transition-duration: .3s;
}
.btn span.view::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: calc(100% + 63px);
  width: 2px;
  height: 6px;
  background: #000;
  transform: skewX(45deg);
  transition-timing-function: ease;
  transition-duration: .3s;
}
.contact_btn {
  width: 100%;
  padding: 20px 0px !important;
  text-align: center;
  display: block;
}
.contact_btn:hover {
  background: rgba(0, 0, 0, 0.6);
}
.c_color a {
  color: #fff;
}
.c_color .btn span.view::before {
  background: #fff;
}
.c_color .btn span.view::after {
  background: #fff;
}
.btn:hover span.view::before {
  width: 90px;
}
.btn:hover span.view::after {
  left: calc(100% + 90px);
}
.btn:hover {
  background: #000;
  color: #fff;
}
.c_color .btn:hover {
  background: #fff;
  color: #000;
}
@media (min-width: 1000px) {
  .card_wrap {
    position: relative;
    width: 100%;
    margin: 50px auto;
    aspect-ratio: 120 / 50;
  }
  .card {
    position: absolute;
    aspect-ratio: 3 / 4;
    border: 1px solid #d8d8d8;
    background-color: white;
    top: 0;
    width: 32%;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    text-align: center;
  }
  .card1 {
    left: 0%;
    z-index: 5;
  }
  .card2 {
    left: 22%;
    z-index: 4;
  }
  .card3 {
    left: 44%;
    z-index: 3;
  }
  .card4 {
    left: 66%;
    z-index: 2;
  }
}
@media (max-width: 1000px) {
  .card_wrap {
    margin: 50px auto -60px;
  }
  .sp_card {
    margin-top: -5%;
    position: relative;
  }
  .sp_card img {
    width: 85%;
  }
  .sp_card h3 {
    position: absolute;
    z-index: 9999;
    background: #fff;
    top: 60%;
    left: 0px;
    padding: 20px 30px;
    font-weight: normal;
  }
  .sp_card h3 span {
    position: absolute;
    font-size: 12px;
    left: 30px;
    top: 10px;
  }
  .sp_card:nth-child(odd) img {
    margin-left: 15%;
  }
  .sp_card:nth-child(odd) h3 {
    left: auto;
    right: 0;
  }
}
@media (min-width: 1000px) {
  .card_wrap .ttl-reveal:after {
    display: none;
  }
}
.card a h3 {
  font-size: 26px;
  margin: 0px;
  padding: 20px 0px;
  position: relative;
  z-index: 2;
  color: #4d4d4d;
  display: block;
  top: 40px;
  letter-spacing: 0.2em;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  font-weight: normal;
  letter-spacing: 0.2em;
}
.card a h3 span {
  position: absolute;
  z-index: 2;
  font-weight: normal;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  font-size: 14px;
  letter-spacing: 0em;
}
.card a img {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card a span.view {
  position: absolute;
  z-index: 2;
  font-weight: normal;
  bottom: 80px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.card a span.view::before {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 40px;
  right: -42px;
  height: 1px;
  background: #000;
  transition-timing-function: ease;
  transition-duration: .3s;
}
.card a span.view::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: -42px;
  width: 2px;
  height: 6px;
  background: #000;
  transform: skewX(45deg);
  transition-timing-function: ease;
  transition-duration: .3s;
}
.card a:hover span.view::before {
  width: 60px;
  right: -62px;
  background: #fff;
}
.card a:hover span.view::after {
  right: -62px;
  background: #fff;
}
@media (min-width: 1000px) {
  .card a:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
  .card1 a:before {
    background: url("../image/card1_hover.jpg") center center/cover;
  }
  .card2 a:before {
    background: url("../image/card2.jpg") center center/cover;
  }
  .card3 a:before {
    background: url("../image/card3.jpg") center center/cover;
  }
  .card4 a:before {
    background: url("../image/card4.jpg") center center/cover;
  }
  .card a:hover:before {
    opacity: 1;
  }
  .card a:hover, .card a:hover h3 {
    color: #fff !important;
  }
}
.line-draw {
  position: relative;
  display: inline-block;
  padding: 10px 30px;
  text-decoration: none;
  color: #000;
}
.c_color .line-draw {
  color: #fff;
}
.line-draw span.l, .line-draw span.t, .line-draw span.r, .line-draw span.b {
  position: absolute;
  background: #000;
  display: block;
}
.c_color .line-draw span.l, .c_color .line-draw span.t, .c_color .line-draw span.r, .c_color .line-draw span.b {
  background: #fff;
}
.line-draw .l {
  width: 1px;
  height: 0;
  left: 0;
  bottom: 0;
}
.line-draw .t {
  height: 1px;
  width: 0;
  left: 0;
  top: 0;
}
/* 右辺：上 → 下 */
.line-draw .r {
  width: 1px;
  height: 0;
  right: 0;
  top: 0;
}
/* 下辺：右 → 左 */
.line-draw .b {
  height: 1px;
  width: 0;
  right: 0;
  bottom: 0;
}
.line-draw.is-inview .l {
  height: 100%;
  transition: height .25s ease;
}
.line-draw.is-inview .t {
  width: 100%;
  transition: width .25s ease;
  transition-delay: .25s;
}
.line-draw.is-inview .r {
  height: 100%;
  transition: height .25s ease;
  transition-delay: .5s;
}
.line-draw.is-inview .b {
  width: 100%;
  transition: width .25s ease;
  transition-delay: .75s;
}
section {
  padding: 100px 0px;
}
.contents_space {
  width: 84%;
  margin-left: 16%;
  padding-right: 20px;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}
.contents {
  width: 68%;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 3;
}
.floatbox {
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .contents_space, .contents {
    width: 100%;
    padding: 0px 10px !important;
    margin-left: 0px;
  }
  .floatbox {
    max-width: 100%;
  }
}
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.flexbox {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}
.flex-start {
  align-items: flex-start !important;
}
.space-between {
  justify-content: space-between;
}
.row-reverse {
  flex-direction: row-reverse !important;
}
.flexbox .box33 {
  width: 33%;
}
.flexbox .box20 {
  width: 20%;
}
.flexbox .box25 {
  width: 25%;
}
.flexbox .box30 {
  width: 30%;
}
.flexbox .box33 {
  width: 33.333%;
}
.flexbox .box40 {
  width: 40%;
}
.flexbox .box45 {
  width: 45%;
}
.flexbox .box50 {
  width: 50%;
}
.flexbox .box60 {
  width: 60%;
}
.flexbox .box70 {
  width: 70%;
}
.flexbox .box75 {
  width: 75%;
}
.flexbox .box80 {
  width: 80%;
}
.flexbox .box {
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1000px) {
  .spbox100 {
    width: 100% !important;
  }
  .spbox50 {
    width: 48% !important;
    margin: 1%;
  }
}
.parallax-container {
  position: relative;
  padding: 300px 0px;
  overflow: hidden;
  background: #eee;
}
.parallax-bg {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 130%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: transform 0.1s linear;
  --py: 0px;
  transform: translate3d(0, var(--py), 0);
  will-change: transform;
}
.parallax-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.plx_section_1 {
  background-image: url("../image/oem_bg.jpg");
}
.plx_section_2 {
  background-image: url("../image/parts_recruit9.jpg");
}
.contact_bg {
  background: url("../image/contact_bg.jpg") center top/cover no-repeat;
  padding: 300px 0px;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
a.viewall {
  padding: 12px 60px 12px 60px;
  background-color: #000;
  color: #fff;
  position: relative;
  font-size: 12px;
  margin: 20px 0px;
  display: inline-block;
  z-index: 9;
  border: 1px solid #000;
  white-space: nowrap;
}
a.viewall:hover {
  background-color: #ccc;
  color: #000;
}
a.viewall::before {
  content: "";
  position: absolute;
  bottom: 16px;
  width: 60px;
  left: calc(100% - 40px);
  height: 1px;
  background: #1a1a1a;
  transition-delay: .4s;
  transition-timing-function: ease;
  transition-duration: .3s;
}
a.viewall::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: calc(100% + 15px);
  width: 2px;
  height: 6px;
  background: #1a1a1a;
  transform: skewX(45deg);
  transition-delay: .4s;
  transition-timing-function: ease;
  transition-duration: .3s;
}
a.viewall:hover::before {
  left: calc(100% - 46px);
  width: 40px;
}
a.viewall:hover::after {
  left: calc(100% - 10px);
}
a.inversion {
  background-color: #fff;
  color: #000;
}
a.inversion::before, a.inversion:after {
  background: #ccc;
}
a.inversion:hover {
  background: #000;
  color: #fff;
  border: 1px solid #fff;
}
.info dl {
  width: 100%;
  border-bottom: 1px solid #000;
}
.info dl dt, .info dl dd {
  width: 100%;
  padding: 10px 0px;
  margin: 0px;
}
.info dl dt span {
  background: #000;
  margin-left: 10px;
  color: #fff;
  padding: 2px 5px;
  font-size: 80%;
}
dl.history_list {
  width: 100%;
  margin: 0;
  padding: 0;
}

dl.history_list dt {
  width: 100%;
  margin: 0;
  padding: 8px 0 0;
}

dl.history_list dt h3 {
  margin: 0;
  padding: 0 0 12px;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .04em;
  color: #4d4d4d;
}

dl.history_list dd {
  width: 100%;
  margin: 0 0 18px;
  padding: 14px 0 18px;
  border-bottom: 1px solid #d8d8d8;
  box-sizing: border-box;
  letter-spacing: .04em; /* ← 元の0.1emより少し詰める */
}

dl.history_list .history_row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 8px;
}

dl.history_list .history_row:last-child {
  margin-bottom: 0;
}

dl.history_list .year {
  flex: 0 0 88px;
  width: 88px;
  display: block;
  font-weight: 700;
  line-height: 1.8;
  white-space: nowrap;
  color: #4d4d4d;
}

dl.history_list .text {
  flex: 1 1 auto;
  min-width: 0;
  display: block;
  line-height: 1.8;
  color: #4d4d4d;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 1000px) {
  dl.history_list dt h3 {
    font-size: 44px;
  }

  dl.history_list dd {
    padding: 12px 0 16px;
  }

  dl.history_list .history_row {
    gap: 14px;
  }

  dl.history_list .year {
    flex: 0 0 72px;
    width: 72px;
    font-size: 14px;
  }

  dl.history_list .text {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 640px) {
  dl.history_list dt h3 {
    font-size: 30px;
    padding-bottom: 10px;
  }

  dl.history_list dd {
    margin-bottom: 14px;
    padding: 10px 0 14px;
  }

  dl.history_list .history_row {
    gap: 10px;
    margin-bottom: 6px;
  }

  dl.history_list .year {
    flex: 0 0 64px;
    width: 64px;
    font-size: 12px;
  }

  dl.history_list .text {
    font-size: 12px;
    line-height: 1.75;
  }
}
dl.lr_border {
  width: 100%;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
}
dl.lr_border dt {
  width: 20%;
  padding: 10px 0px;
  margin: 0px;
  box-sizing: border-box;
  border-bottom: 1px solid #d8d8d8;
  line-height: 1.8em;
}
dl.lr_border dd {
  width: 80%;
  padding: 10px 0px;
  margin: 0px;
  box-sizing: border-box;
  border-bottom: 1px solid #d8d8d8;
  line-height: 1.8em;
}
dl.lr_border dd a.btn {
  margin: 20px 0px;
}
dl.lr_border dd .dd_content {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #d8d8d8;
}
@media (max-width: 1000px) {
  dl.lr_border dt, dl.lr_border dd {
    width: 100% !important;
  }
  dl.lr_border dt {
    border-bottom: none;
  }
}
dl.arrow, dl.contact {
  width: 100%;
}
dl.arrow dt, dl.contact dt {
  font-weight: bold;
}
dl.arrow dt, dl.arrow dd, dl.contact dt, dl.contact dd {
  width: 100%;
  padding: 10px 0px;
  margin: 0px;
  position: relative;
}
dl.arrow dd:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #1a1a1a;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}
dl.arrow dd:last-child:after {
  content: none;
}
dl.arrow dd {
  margin-bottom: 20px;
  border-bottom: 1px solid #d8d8d8;
}
.grey_box {
  background: #d8d8d8;
  padding: 20px;
  box-sizing: border-box;
}
.grey_box h3 {
  font-weight: normal;
}
.grey_box p span {
  color: red;
}
.shadowbox {
  background: rgba(0, 0, 0, 0.4);
  padding: 10px;
  box-sizing: border-box;
}
.mask_img {
  position: relative;
  overflow: hidden;
}
.mask_img .mask {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(0); /* ← ここ重要 */
  z-index: 2;
}
.mask_img.is-inview .mask {
  animation: mask-sweep 0.8s cubic-bezier(.77, 0, .18, 1) forwards;
  animation-delay: 0ms;
}
@media (min-width: 1000px) {
  .mask_img.delay.is-inview .mask, .slide-in .delay {
    animation-delay: 480ms;
  }
  .slide-in .delay2 {
    animation-delay: 720ms;
  }
}
@keyframes mask-sweep {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.brand_section .box {
  margin: 100px 0px 20px;
}
.brand_section .box h2 {
  position: relative;
  top: 30px;
  font-weight: normal;
  margin-bottom: 60px;
}
.brand_section .box h2 span {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 12px;
}
h2.brandlogo img{
	height: 30px;
}
@media (max-width: 1000px) {
.brand_page .brand_section .box {
  margin:20px 0px 10px!important;
}
.brand_page .brand_section .box h2 {
  margin-bottom: 30px;
}
}
.brand_section .box a {
  aspect-ratio: 1000 / 676; /* だいたいこの比率 */
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 0;
}
.brand_section .box a img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  z-index: 2;
  transition: 0.5s;
}
.scale img {
  transition: 0.5s;
}
.brand_section .box a:hover img {
  transform: scale(1.1, 1.1);
}
.add_line a {
  position: relative;
}
.add_line a::before, .add_line a::after {
  content: '';
  position: absolute;
  border: solid #000;
  width: 0;
  height: 0px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  z-index: 2;
}
.add_line a::before {
  top: 0px;
  left: 0px;
  border-width: 2px 0 0 2px;
}
.add_line a::after {
  bottom: 0px;
  right: 0px;
  border-width: 0 2px 2px 0;
}
.add_line a:hover::before, .add_line a:hover::after {
  width: calc(100%);
  height: calc(100%);
  border-color: #000;
  box-sizing: border-box;
  opacity: 1;
}
.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #d8d8d8; /* 全体枠 */
  background: #fff;
}
@media (max-width: 1000px) {
  .news-list {
    margin: 20px 0px 0px 0px;
  }
}
.news-item {
  border-top: 1px solid #d8d8d8; /* 行の区切り線 */
}
.news-item:first-child {
  border-top: none;
}
.news-link {
  display: grid;
  grid-template-columns: 140px 1fr; /* サムネ幅 */
  gap: 24px;
  padding: 22px 26px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.news-thumb {
  margin: 0;
  background: #f4f4f4;
  overflow: hidden;
}
.news-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3; /* だいたいこの比率 */
  object-fit: cover;
}
.news-title {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 1.8;
  color: #222;
}
.news-meta {
  margin: 0;
  font-size: 11px;
  letter-spacing: .08em;
  color: #666;
}
.news-sep {
  margin: 0 10px;
  color: #888;
}
/* ほんのり hover（好みで） */
@media (hover:hover) {
  .news-link:hover .news-title {
    text-decoration: underline;
  }
  .news-link:hover .news-thumb img {
    transform: scale(1.03);
    transition: .35s ease;
  }
}
a.bgbox {
  aspect-ratio: 5 / 3;
  display: block;
  color: #fff;
  position: relative;
}
.banner_l {
  background: url("../image/banner_l.jpg") center center/cover;
}
.banner_r {
  background: url("../image/banner_r.jpg") center center/cover;
}
a.bgbox:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 0;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a.bgbox:hover:after {
  opacity: 0.5;
}
a.bgbox h3 {
  font-size: 28px;
  margin: 0px;
  position: absolute;
  top: 120px;
  left: 50px;
  z-index: 1;
  font-weight: normal;
  width: 80%;
}
a.bgbox h3 span {
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 12px;
}
a.bgbox p {
  position: absolute;
  bottom: 80px;
  left: 50px;
  width: 50%;
  z-index: 1;
}
@media (max-width: 1600px) {
  a.bgbox h3 {
    top: 90px;
  }
  a.bgbox p {
    position: absolute;
    top: 140px;
    left: 50px;
    width: 50%;
    z-index: 1;
  }
}
@media (max-width: 1200px) {
  a.bgbox h3 {
    position: absolute;
    top: 40px;
    left: 20px;
    width: 30%;
  }
  a.bgbox p {
    position: absolute;
    bottom: 30px;
    right: 20px;
    width: 80%;
    z-index: 1;
  }
}
footer {
  padding: 80px 0px 80px 0px;
}
footer ul {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  list-style: none;
}
footer ul li {
  width: 20%;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
footer ul li.col16 {
  width: 16%;
}
@media (max-width: 1000px) {
  footer ul li.col16, footer ul li {
    width: 100%;
  }
  footer ul li.parent {
    padding: 1em 0px 0px;
  }
  footer ul li.two_lines a {
    display: block;
    line-height: 2em;
  }
}
footer ul li a {
  display: block;
  font-size: 32px;
  line-height: 1.3em;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important; /* ← 太さ */
  text-underline-offset: 4px !important;
  margin-bottom: 10px;
}
@media (max-width: 1600px) {
  footer ul li a {
    font-size: 24px;
  }
}
footer ul li ul {
  width: 100%;
  margin: 0px;
  padding: 0px;
}
footer ul li ul li {
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
}
footer ul li ul li a {
  display: block;
  width: 100%;
  font-size: 14px;
  text-decoration: none !important;
  position: relative;
  padding: 5px 0px 5px 10px;
}
footer ul li ul li a:before {
  content: "";
  width: 5px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0px;
  top: 50%;
}
.copy {
  display: block;
}
/* ===== navFx をPCだけにする ===== */
@media (max-width: 1000px) {
  .navFxBtn, .navFxBackdrop, .navFxModal {
    display: none !important;
  }
  /* 万が一クラスが付いても影響を消す */
  body.is-navFx-open {
    position: static !important;
    top: auto !important;
    padding-right: 0 !important;
  }
}
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}
/* ===== ハンバーガーボタン ===== */
.navFxBtn {
  position: fixed;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background: #044669;
  border: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  cursor: pointer;
  z-index: 1002;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity .35s ease, transform .55s cubic-bezier(.4, 0, .2, 1);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
  /* ハンバーガーを中に配置 */
  display: grid;
  place-items: start end;
  padding: 18px 18px 0 0;
}
/* スクロール後に出現 */
.navFxBtn.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
/* 開いている間は強制表示（スクロール量に左右されない） */
.navFxBtn.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.navFxBtn span {
  position: absolute;
  right: 24px;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: .4s ease;
}
.navFxBtn span:nth-child(1) {
  top: 18px;
}
.navFxBtn span:nth-child(2) {
  top: 25px;
}
.navFxBtn span:nth-child(3) {
  top: 32px;
}
/* × に変形 */
.navFxBtn.is-open span:nth-child(1) {
  transform: rotate(45deg);
  top: 25px;
}
.navFxBtn.is-open span:nth-child(2) {
  opacity: 0;
}
.navFxBtn.is-open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 25px;
}
/* ===== 背景ブラーオーバレイ ===== */
.navFxBackdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .20);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  z-index: 1000;
}
.navFxBackdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}
/* ===== 中央モーダル枠 ===== */
.navFxModal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.navFxModal.is-open {
  opacity: 1;
  pointer-events: auto;
}
/* ===== メニュー本体（ふわっと） ===== */
.navFxList {
  list-style: none;
  margin: 0;
  transform: translateY(10px) scale(.98);
  opacity: 0;
  transition: transform .55s cubic-bezier(.22, 1, .36, 1), opacity .35s ease;
}
.navFxModal.is-open .navFxList {
  transform: translateY(0) scale(1);
  opacity: 1;
}
ul.navFxList {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 50px;
  list-style: none;
}
ul.navFxList li {
  width: 20%;
}
@media (max-width: 1000px) {
  ul.navFxList li {
    width: 100%;
  }
}
ul.navFxList li a {
  display: block;
  font-size: 36px;
  line-height: 1.3em;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important; /* ← 太さ */
  text-underline-offset: 4px !important;
  margin-bottom: 10px;
}
ul.navFxList li a {
  color: #fff;
}
ul.navFxList li ul {
  width: 100%;
  margin: 0px;
  padding: 0px;
  list-style: none;
}
ul.navFxList li ul li {
  width: 100%;
  padding: 0px;
  box-sizing: border-box;
}
ul.navFxList li ul li a {
  display: block;
  width: 100%;
  font-size: 14px;
  text-decoration: none !important;
  position: relative;
  padding: 5px 0px 5px 10px;
}
ul.navFxList li ul li a:before {
  content: "";
  width: 5px;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0px;
  top: 50%;
}
/* ===== 背景スクロール停止（スクロールバーの“枠”は確保） ===== */
body.is-navFx-open {
  position: fixed;
  width: 100%;
  padding-right: var(--sbw, 0px); /* スクロールバー幅ぶん補正 */
}
.visual_img {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  position: relative;
}
.visual_img .ttl_section {
  padding-top: 70px !important;
  position: relative;
}
.visual {
  width: 100%;
  height: calc(100% - 160px);
  margin-top: 20px;
}
.visual_about {
  background: url("../image/visual_about.jpg") no-repeat center top/cover;
}
.visual_oem {
  background: url("../image/visual_oem.jpg") no-repeat center top/cover;
}
.visual_brand {
  background: url("../image/visual_brand.jpg") no-repeat center top/cover;
}
.visual_recruit {
  background: url("../image/visual_recruit.jpg") no-repeat center center/cover;
}
.visual_csr {
  background: url("../image/visual_csr.jpg") no-repeat center center/cover;
}
@media (min-width: 1200px) {
  .visual_recruit {
    background: url("../image/visual_recruit1200.jpg") center top/auto 100% no-repeat;
  }
}
.visual_add_img {
  width: 100%;
  z-index: 2;
  position: relative;
}
.visual_add_img .ttl_section {
  padding-top: 70px !important;
  position: relative;
}
.visual_add_img img {
  width: 100%;
  margin-top: 20px;
}
.visual_add_img .entry_btn {
  bottom: -50px;
}
@media (max-width: 1000px) {
  .visual_add_img .entry_btn {
    bottom: -70px;
  }
}
.sub_ttl_section {
  padding: 20px 0px;
}
.sub_ttl_section h3 {
  font-size: 20px;
  font-weight: normal;
  position: relative;
}
.sub_ttl_section h3 span {
  position: absolute;
  top: -18px;
  left: 0px;
  font-size: 14px;
}
h2.japanese_ttl {
  font-weight: normal;
  letter-spacing: 0.2em;
  position: relative;
  display: inline-block;
  padding-top: 20px;
}
h2.japanese_ttl span {
  position: absolute;
  top: 0px;
  left: 0px;
  font-size: 14px;
  letter-spacing: 0em;
}
p.sub_ttl {
  font-size: 20px;
}
.js-fl{
	opacity: 0;
}
.FL {
  animation-name: flAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes flAnime {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.box_head {
  padding: 50px 0px 20px;
}
.box_head span {
  margin-right: 20px;
  display: inline-block;
  padding: 2px 20px;
  font-size: 14px;
}
.box_head span.step {
  border: 1px solid #000;
}
.box_head span.odm {
  background: #DFDF5E;
  border-radius: 20px;
}
.box_head span.oem {
  background: #7CD0D7;
  border-radius: 20px;
}
.box_head p {
  font-size: 20px;
  margin: 5px 0px;
}
@media screen and (min-width: 1000px) {
  a[href^="tel:"] {
    pointer-events: none; /* クリック不可 */
    color: inherit; /* 通常テキスト色 */
    text-decoration: none; /* 下線を消す */
    cursor: default;
  }
}
.entry_btn {
  position: absolute;
  right: 10px;
  bottom: -60px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1000px) {
.entry_btn {
    bottom: -70px;
  }
}
.entry_btn:hover {
  background: #000;
  color: #fff;
}
/* 回転用の枠（正方形にするのがポイント） */
.entry-wrap {
  width: 24px; /* ENTRYの文字高さに近い値 */
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 実際に回す文字 */
.entry-wrap .entry-ttl {
  display: inline-block;
  transform: rotate(90deg);
  white-space: nowrap;
  left: -20px;
  position: relative;
	font-size: 14px;
}
.entry_btn p {
  margin: 0px;
  letter-spacing: 0em;
}
.entry_btn p span {
  display: block;
  font-size: 12px;
}
.recruit_block {
  border: 1px solid #d8d8d8;
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 20px;
}
.toggle-btn {
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: block;
  background: #000;
  width: 100%;
  color: #fff;
  width: 200px;
  padding: 10px 30px;
  ;
}
/* 表示切替 */
.toggle-btn .t_close {
  display: none;
}
.toggle-btn.is-open .t_open {
  display: none;
}
.toggle-btn.is-open .t_close {
  display: inline;
}
.toggle-content {
  width: 96%;
  margin: 2%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height .4s ease, opacity .3s ease;
}
.toggle-content.is-open {
  opacity: 1;
}
.interview_box .box, .margin_b80 {
  margin-bottom: 80px;
}
@media (max-width: 1000px) {
  .sp_margin_b80 {
    margin-bottom: 80px;
  }
}
.voice_box {
  flex-direction: row-reverse;
  margin-top: 30px;
}
.voice_box .box:nth-child(1) h2 {
  padding: 50px 0px;
  font-size: 32px;
}
.voice_box .box:nth-child(1) p {
  margin: 80px 0px;
  position: relative;
}
.voice_box .box:nth-child(1) p.sub_ttl span {
  position: absolute;
  top: -30px;
  font-size: 14px;
  left: 0px;
}
.voice_box .box:nth-child(1) .spacing_box {
  padding: 50px 0px;
}
.voice_box .box:nth-child(2) img {
  margin-bottom: 150px;
}
.voice_box .box {
  margin-bottom: 50px;
}
.entry_btn_floating {
  position: fixed;
  right: 10px;
  bottom: 80px;
  z-index: 5;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;

  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry_btn_floating.is-show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.entry_btn,
.entry_btn_floating {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.entry_btn .entry-wrap .entry-ttl,
.entry_btn_floating .entry-wrap .entry-ttl {
  display: inline-block;
  transform: rotate(90deg);
  white-space: nowrap;
  position: relative;
  left: -20px;
  font-size: 14px;
}

.entry_btn p,
.entry_btn_floating p {
  margin: 0;
  letter-spacing: 0em;
  line-height: 1.6em;
}

.entry_btn p span,
.entry_btn_floating p span {
  display: block;
  font-size: 12px;
}

.entry_btn_floating p span {
  display: block;
  font-size: 12px;
}

.entry_btn_floating:hover {
  background: #000;
  color: #fff;
}

/* ==================================================
   CF7 FORM – ABSOLUTE FINAL
   - no gap between frame & button
   - line-draw = real border
   - hover clean invert
================================================== */
/* -------------------------------
   form base
-------------------------------- */
.wpcf7 {
  margin: 0 auto;
}
.wpcf7 form p {
  margin: 0 0 18px;
}
.wpcf7 form label {
  display: block;
  font-size: 13px;
  letter-spacing: .02em;
  color: #000;
  margin: 0 0 8px;
}
/* -------------------------------
   inputs
-------------------------------- */
input[type="text"], input[type="email"], input[type="url"], input[type="tel"], input[type="date"], select, textarea {
  width: 100%;
  box-sizing: border-box;
  background: #e9e9e9;
  color: #000;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 14px 14px;
  font-size: 14px;
  transition:
    background-color .22s ease, border-color .22s ease, transform .22s cubic-bezier(.2, .8, .2, 1), box-shadow .28s cubic-bezier(.2, .8, .2, 1);
}
textarea {
  min-height: 170px;
  resize: vertical;
}
input:hover, select:hover, textarea:hover {
  background: #efefef;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  background: #fff;
  border-color: #000;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
}
/* -------------------------------
   select arrow
-------------------------------- */
select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  background-image:
    linear-gradient(45deg, transparent 50%, #000 50%), linear-gradient(135deg, #000 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}
/* -------------------------------
   submit (no gap version)
-------------------------------- */
.submit-wrap {
  position: relative;
  width: 100%;
  height: 56px; /* ← 枠とボタンの高さを固定 */
  margin-top: 40px;
  overflow: hidden;
  padding: 0 !important;
}
/* ボタン本体：wrapper いっぱいに敷く */
.submit-wrap input[type="submit"] {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  padding: 0 !important;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: .1em;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
  transition:
    background-color .25s ease, color .25s ease;
}
/* hover：完全反転（ズレなし） */
.submit-wrap input[type="submit"]:hover {
  background: #000;
  color: #fff;
}
/* -------------------------------
   LINE DRAW = REAL BORDER
-------------------------------- */
.submit-wrap.line-draw .l, .submit-wrap.line-draw .t, .submit-wrap.line-draw .r, .submit-wrap.line-draw .b {
  position: absolute;
  background: #000;
  pointer-events: none;
}
/* 初期 */
.submit-wrap.line-draw .t, .submit-wrap.line-draw .b {
  height: 1px;
  width: 100%;
  transform: scaleX(0);
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
.submit-wrap.line-draw .l, .submit-wrap.line-draw .r {
  width: 1px;
  height: 100%;
  transform: scaleY(0);
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
}
/* 配置（wrapperの内側ぴったり） */
.submit-wrap.line-draw .t {
  top: 0;
  left: 0;
  transform-origin: left;
}
.submit-wrap.line-draw .b {
  bottom: 0;
  left: 0;
  transform-origin: right;
}
.submit-wrap.line-draw .l {
  top: 0;
  left: 0;
  transform-origin: bottom;
}
.submit-wrap.line-draw .r {
  top: 0;
  right: 0;
  transform-origin: top;
}
/* スクロール発火 */
.submit-wrap.line-draw.is-inview .t {
  transform: scaleX(1);
}
.submit-wrap.line-draw.is-inview .b {
  transform: scaleX(1);
  transition-delay: .12s;
}
.submit-wrap.line-draw.is-inview .l {
  transform: scaleY(1);
  transition-delay: .22s;
}
.submit-wrap.line-draw.is-inview .r {
  transform: scaleY(1);
  transition-delay: .34s;
}
/* -------------------------------
   responsive
-------------------------------- */
@media screen and (max-width:768px) {
  .wpcf7 {
    padding: 0 14px;
  }
}
.thumb-wrap {
  width: 500px;
  height: 340px;
  overflow: hidden;
}
.thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← 擬似トリミング */
  display: block;
}
/* ===== paging (Prev / Next) ===== */
.navPage {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 40px 0 0;
}
/* 左右の枠 */
.navPage .prev, .navPage .next {
  flex: 1;
}
/* 右側は右寄せ */
.navPage .next {
  text-align: right;
}
/* リンクの見た目 */
.navPage a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #000;
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
}
/* hover */
.navPage a:hover {
  background: #000;
  color: #fff;
  border-color: #000;
  transform: translateY(-1px);
}
/* Prev / Next の矢印 */
.navPage .prev a::before {
  content: "←";
  font-size: 14px;
}
.navPage .next a::after {
  content: "→";
  font-size: 14px;
}
/* リンクが出ない時（空divが詰まらないように） */
.navPage .prev:empty, .navPage .next:empty {
  display: none;
}
/* SP */
@media (max-width: 600px) {
  .navPage {
    flex-direction: column;
    align-items: stretch;
  }
  .navPage .next {
    text-align: left;
  }
  .navPage a {
    width: 100%;
    justify-content: center;
  }
}
/* ===== single.php : NEWS detail ===== */
.entry {
  max-width: 900px; /* 本文幅（読みやすさ） */
  margin: 0 auto;
}
.entry h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .08em;
  margin: 0 0 14px;
  color: #1a1a1a;
}
/* meta（date / category） */
.entry .news-meta {
  margin: 0 0 26px;
  font-size: 12px;
  letter-spacing: .10em;
  color: #666;
}
.entry .news-sep {
  margin: 0 10px;
  color: #888;
}
.entry .news-cat {
  color: #222;
}
/* 本文 */
.entry_body {
  font-size: 14px;
  line-height: 2.0;
  letter-spacing: .06em;
  color: #333;
}
/* 段落 */
.entry_body p {
  margin: 0 0 1.25em;
}
/* 見出し（本文内） */
.entry_body h2 {
  margin: 2.0em 0 .8em;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .08em;
}
.entry_body h3 {
  margin: 1.8em 0 .7em;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}
/* リスト */
.entry_body ul, .entry_body ol {
  margin: 0 0 1.25em 1.2em;
  padding: 0;
}
.entry_body li {
  margin: .35em 0;
}
/* 画像（Gutenberg/クラシック両対応） */
.entry_body img {
  max-width: 100%;
  height: auto;
  display: block;
}
.entry_body figure {
  margin: 1.6em 0;
}
.entry_body figcaption {
  font-size: 12px;
  color: #666;
  margin-top: 8px;
  letter-spacing: .06em;
}
/* 画像の寄せ（WP標準クラス） */
.entry_body .alignleft {
  float: left;
  margin: .4em 1.2em .8em 0;
  max-width: 50%;
}
.entry_body .alignright {
  float: right;
  margin: .4em 0 .8em 1.2em;
  max-width: 50%;
}
.entry_body .aligncenter {
  margin-left: auto;
  margin-right: auto;
}
/* 引用 */
.entry_body blockquote {
  margin: 1.6em 0;
  padding: 14px 18px;
  border-left: 3px solid #000;
  background: #f6f6f6;
}
/* リンク */
.entry_body a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.entry_body a:hover {
  opacity: .75;
}
/* 区切り線 */
.entry_body hr {
  margin: 2.2em 0;
  border: none;
  border-top: 1px solid #d8d8d8;
}
/* SP */
@media (max-width: 1000px) {
  .entry {
    max-width: 100%;
    padding: 0 10px;
  }
  .entry h3 {
    font-size: 22px;
  }
  .entry_body {
    font-size: 13px;
    line-height: 1.95;
  }
  .entry_body .alignleft, .entry_body .alignright {
    float: none;
    max-width: 100%;
    margin: 1.2em 0;
  }
}