@charset "utf-8";
/* CSS Document */
html{margin: 0;padding: 0;}
body{width:100%; height:100%; text-align:center;color:#282828; font-family: 'Noto Sans JP', sans-serif; -webkit-tap-highlight-color:rgba(0, 0, 0, 0); margin:0 auto}
ul{list-style-type:none; margin-block-start:0; margin-block-end:0; padding-inline-start:0}
p{line-height: 1.7em;text-align: left;}
img{display: block;max-width: 100%;height: auto;}
a:hover img, input[type="image"]:hover, input[type="submit"]{cursor:pointer; cursor:hand} input[type="submit"]:hover{opacity:0.7}
	/* link */
	a:link, a:visited, a, a:hover, a:active{text-decoration: none}
	a:hover{opacity:0.8}

/*--共通--*/
#wrapper,main {overflow-x: hidden;}
.red{color: #fc5300;font-weight: 500;}
.flex {display: flex;}
.wp-block-list { text-align:left;}
.wp-block-table { background-color:#fff;}
/*背景*/

.wrapper, .wrap{max-width:960px; margin:0 auto; padding:5%; box-shadow:0px 3px 7px 3px #ccc;}
.wrap{padding:14px 10px; box-shadow:none}.header{color:#000}

/*block*/
    #block_wrapper, .block_wrapper, .shadow{box-shadow: 0 5px 10px rgba(0,0,0,0.25)} .drop-shadow img{filter: drop-shadow(5px 5px 10px rgba(0,0,0,.25))}
    .block{padding:0 5.2% 50px; text-align:left}
    .hl, .h, .hlh{padding:50px 1% 4%; font-weight:900; font-size:2.4em; line-height:1.5em; text-align:center}.h{padding:0 1% 4%}.hlh{padding:70px 2% 40px}

/*footer*/
    #footer{width:100%; margin:0 auto; font-size: 1.5rem;}
    .footer-inner{background:#fff; padding:35px 0 35px; text-align:center}
    #footer a{color:#282828; text-decoration:none} #footer p{color:#282828}
    .fco{font-style:normal; line-height:2.4em; text-align:center; color:#282828; margin:0; padding:0}

/*共通*/
.container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

/* --------------------
header
-------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 95px;
  overflow: hidden;
  z-index: 1000;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
  box-sizing: border-box;
}

header .inner {
  display: flex;
  width: 100% !important;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 35px;
  box-sizing:border-box;
}

header .logo {
  margin: 0;
  width: 300px;
}

header .logo a {
  display: block;
  position: relative;
}

header .logo img {
  width: 306px;
}

header .logo-black {
  display: none;
}

header nav {
  display: flex;
  height: 100%;
  align-items: stretch;
}

header .menu {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0px 30px 0 0;
  padding: 0;
  list-style: none;
}

header .menu li a {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  text-align: center;
}

header .menu li a span {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .08em;
}

header .contact {
  width: 250px;
  height: 100%;
  background: #11a3e2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px;
  box-sizing:border-box;
}

header .contact .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
}

header .contact .icon img {
  display: block;
  width: 28px;
  height: auto;
}

header .contact .text {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

header .contact .text small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
}
/* スクロール後 */
header.scrolled {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
}

header.scrolled .menu li a {
  color: #111;
}

header.scrolled .logo-white {
  display: none;
}

header.scrolled .logo-black {
  display: block;
}

.menu-btn {
  display: none;
}


/* --------------------
fv
-------------------- */
.fv {
  position: relative;
  height: 100vh;
  min-height: 880px;
  overflow: hidden;
  background: #0d78d3;
}

.fv .bg {
  position: absolute;
  inset: 0;
  background:
    url("../images/fv-bg.jpg") center center / cover no-repeat;
  transform: scale(1.08);
  transform-origin: center center;
  animation: fvBgZoomOut 10s ease-out forwards;
}

@keyframes fvBgZoomOut {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1);
  }
}

.fv .copy {
  position: absolute;
  top: 150px;
  left: 58px;
  z-index: 3;
  color: #fff;
}

.fv .copy h1 {
  margin: 0;
  font-size: clamp(60px, 3vw, 86px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
  text-align: left;
}

.fv .copy h1 .line {
  display: block;
  width: fit-content;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
}

.fv .copy h1 .line01 {
  animation: fvCopyReveal 0.8s ease-out forwards;
}

.fv .copy h1 .line02 {
  margin-top: 0.05em;
  animation: fvCopyReveal 0.6s ease-out forwards;
  animation-delay: .70s;
}

.fv .copy h1 .line span {
  font-size: clamp(80px, 6vw, 109px);
}

@keyframes fvCopyReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

.fv .copy p {
  margin: 28px 0 0;
  font-size: 19px;
  font-weight: 400;
  line-height: 2;
  text-align: left;
}

.reveal-text-late {
  opacity: 0;
  filter: blur(6px);
  animation: revealTextLate 0.6s ease-out 1.0s forwards;
  will-change: opacity, filter;
}

@keyframes revealTextLate {
  0% {
    opacity: 0;
    filter: blur(6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}

.fv .photo {
  position: absolute;
  z-index: 4;
  overflow: hidden;
}

.fv .photo img {
  display: block;
  width: 100%;
}

.fv .photo-main {
  top: 140px;
  right: clamp(10px, 7vw, 28px);
  width: clamp(400px, 60vw, 720px);
}

/* 汎用：ぼかし＋拡大＋透過 → 解除 */
.reveal-photo {
  overflow: hidden;
}

.reveal-photo img {
  display: block;
  width: 100%;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(24px) scale(1.05);
  transform-origin: center center;
  animation: revealPhoto 3.8s cubic-bezier(0.22, 1, 0.36, 1) .1s both;
  will-change: transform, filter, opacity;
}

.fv .photo-sub.reveal-photo img {
  animation-delay: 0.3s;
}

@keyframes revealPhoto {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(5px) scale(1.01);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.fv .photo-sub {
  right: clamp(380px, 50vw, 615px);
  bottom: 140px;
  width: clamp(220px, 24vw, 600px);
}

.fv .photo img {width: 100%;}

@media screen and (max-width: 1400px) {
  .fv .photo img {width: 80%;}
  .fv .photo-main {top: 330px;right: -100px;}
  .fv .photo-sub {top:500px;right: 40vw;}
  .fv .copy p {font-size: 18px;}
}

.fv .en {
  position: absolute;
  left: 18px;
  bottom: 80px;
  z-index: 5;
  margin: 0;
  width: 98%;
  line-height: 0;
  overflow: hidden;
  pointer-events: none;
}

.fv .en-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: fvEnMarquee 70s linear infinite;
}

.fv .en img {
  display: block;
  width: auto;
  height: clamp(48px, 9vw, 150px);
  flex: 0 0 auto;
}

@keyframes fvEnMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 40px));
  }
}

/* --------------------
top block01
-------------------- */
.block01 {
  padding: 100px 0 100px;
  background: #fff;
  overflow: hidden;
}

.block01 .inner {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-right: 4%;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}

.block01 .img {
  position: relative;
  z-index: 5;
  flex: 0 0 40%;
}

.block01 .img img {
  display: block;
  width: min(100%, 708px);
  height: auto;
}

.block01 .text {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  min-width: 0;
  margin-top: 50px;
  padding-left: 6.5%;
  box-sizing: border-box;
}

.block01 .text::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -50px;
  width: 50vw;
  height: 535px;
  background: #f0f3f5;
  z-index: -5;
}

.block01 h3 {
  margin: 0 0 48px;
  color: #0d5fa8;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
}

.block01 p {
  margin: 0 0 36px;
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 2.15;
  letter-spacing: 0;
}

.block01 p:last-child {
  margin-bottom: 0;
}

/* --------------------
top block02
-------------------- */
.block02 {
  position: relative;
  padding: 0px 0 130px;
  background: #fff;
  overflow: hidden;
}

.block02 .box {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 930px);
  height: 760px;
  background: #f0f3f5;
  z-index: 1;
}

.block02 .head {
  position: relative;
  z-index: 2;
  text-align: center;
}

.block02 .head h2 {
  margin: 0;
  color: #0d5999;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  text-align: center;
}

.block02 .head .sub {
  margin: 20px 0 0;
  color: #282828;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  text-align: center !important;
}

.block02 .head .lead {
  margin: 50px 0 0;
  color: #282828;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  text-align: center !important;
}

.block02 .cards {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 3vw;
}

.block02 .card {
  position: relative;
  display: block;
  max-width: 314px;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  cursor: default;
}

.block02 .card img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1);
  transition: transform 1.1s ease;
}

.block02 .card:hover img {
  transform: scale(1.04);
}

.block02 .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, .34);
  z-index: 1;
  transition: background 0.4s ease;
}

.block02 .card .num {
  position: absolute;
  top: 12px;
  left: 28px;
  z-index: 3;
  color: rgba(255, 255, 255, .26);
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
}

.block02 .card .text {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 28px;
  z-index: 3;
}

.block02 .card h3 {
  margin: 0;
  font-size: 29px;
  text-align: left;
  font-weight: 600;
  line-height: 1.2;
}

.block02 .card .en {
  margin: 8px 0 18px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.block02 .card .desc {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
}

.more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  height: 32px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .12);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color:#fff;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  z-index: 5;
}

.more span {
  font-size: 14px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.3s ease;
}

.more:hover span {
  transform: translateX(4px);
}

.block02 .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 0;
  height: 0;
  border-top: 60px solid #00a6e4;
  border-right: 60px solid transparent;
}

/* --------------------
top block03
-------------------- */
.block03 {
  width: 100%;
  height: 500px;
  display: flex;
  background: url("../images/block03-bg.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.block03 .left {
  position: relative;
  flex: 0 0 60%;
}

.block03 .right {
  flex: 0 0 40%;
}

.block03 .right img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block03 .text {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 78px 4% 0 19.5%;
  color: #fff;
}

.block03 .text h2 {
  margin: 0;
  font-size: 63px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: left;
}

.block03 .text p {
  margin: 27px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
}

.block03 .link-wrap {
  margin-top: 5px;
  text-align: left;
}

.block03 .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 113px;
  height: 28px;
  margin-top: 0;
  padding: 0 16px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, .7);
  text-decoration: none;
}

.block03 .link::after {
  content: "＞";
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.block03 .link:hover::after {
  transform: translateX(4px);
}

.block03 .bg-text {
  position: absolute;
  left: 2%;
  bottom: -10px;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .16);
  font-size: 11.5vw;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

/* --------------------
top news　記事一覧
-------------------- */
.news {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 95px 8% 86px 0;
  background: #fff;
  overflow: hidden;
}

.news .left-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 29%;
  height: 100%;
  background: #f0f3f5;
  z-index: 1;
}

.news .left {
  position: relative;
  z-index: 2;
  flex: 0 0 29%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 10.2%;
}

.news .left h2 {
  margin: 0;
  color: #0d5999;
  font-size: 86px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
}

.news .left .sub {
  margin: 15px 0 0;
  color: #282828;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}

.news .link-wrap {
  margin-top: 13px;
}

.news .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  height: 34px;
  padding: 0 14px;
  border: 1px solid #0d5999;
  color: #0d5999;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.news .link::after {
  content: "＞";
  display: inline-block;
  margin-left: 8px;
  font-size: 10px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.news .link:hover::after {
  transform: translateX(4px);
}




.news .right {
  position: relative;
  z-index: 2;
  flex: 0 0 58%;
}

.news .news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px dashed #d2d2d2;
}

.news .news-list li {
  border-bottom: 1px dashed #d2d2d2;
  text-align: left;
}

.news .news-list li a {
  display: grid;
  grid-template-columns: 110px 110px 1fr;
  align-items: center;
  column-gap: 16px;
  min-height: 96px;
  color: #282828;
  text-decoration: none;
}

.news .news-list time {
  color: #1f4f85;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.news .cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news .cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 28px;
  padding: 0 12px;
  background: #1f4f85;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.news .title {
  color: #282828;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.news .news-list li a:hover .title {
  color: #0d5999;
}

/* --------------------
下層　sub-FV
-------------------- */
.sub-fv { height: 420px; }

.sub-fv .text {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 40px 0 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.sub-fv .en {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
}

.sub-fv h1 {
  margin: 0;
  font-size: 50px;
  text-align: left;
  font-weight: 500;
  line-height: 1.2;
}


/* --------------------
下層　page-intro
-------------------- */
.page-intro {
  padding: 90px 0 70px;
  overflow: hidden;
}

.page-intro-inner {
  margin: 0 auto;
  padding: 0 4%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

.page-intro-text {
  width: 48%;
  padding-top: 4px;
  z-index:15;
}

.page-intro-title {
  margin: 0 0 40px;
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  line-height: 1.6;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.page-intro-text p {
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 2;
  color: #282828;
  letter-spacing: 0.03em;
}

.page-intro-text p:last-child {
  margin-bottom: 0;
}

.page-intro-image {
  position: relative;
  width: 52%;
  padding-top: 10px;
  z-index: 1;
}

.page-intro-image::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 46px;
  width: 100%;
  height: 100%;
  background: #0d5999;
  z-index: 0;
}

.page-intro-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.page-intro-bg-text {
  position: absolute;
  right: -40px;
  bottom: -70px;
  margin: 0;
  font-size: 9vw;
  font-weight: 700;
  font-style: italic;
  text-align:right;
  line-height: 1;
  color: #f0f3f5;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}

/* --------------------
事業案内ページ
-------------------- */

/* 事業案内 sub-fv*/
.sub-fv.service {
  background: url("../images/service-header.jpg") center center / cover no-repeat;
}

/* 事業案内 block02 */
.service-block02 {
  padding: 0 0 90px;
  background: url("../images/bg-pattern01.jpg") center bottom / cover no-repeat;
}

.service-cards-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
}

.service-card {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: 440px;
  margin: 40px 0 0;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1);
  transition: transform 1.2s ease;
}

.service-card:hover::before {
  transform: scale(1.04);
}

.service-card.bg01::before {
  background-image: url("../images/service-block02-img1.jpg");
}
.service-card.bg02::before {
  background-image: url("../images/service-block02-img2.jpg");
}
.service-card.bg03::before {
  background-image: url("../images/service-block02-img3.jpg");
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card.reverse {
  justify-content: flex-start;
}
.service-card-body {
  position: relative;
  width: 48%;
  padding: 58px 56px 90px;
  overflow: hidden;
}

.service-card-body {
  position: relative;
  width: 50%;
  padding: 58px 56px 90px;
  overflow: hidden;
}

.service-card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 89, 153, 0.92);
  z-index: 0;
}
.service-card-body::after {
  content: none;
}
.service-card-body > * {
  position: relative;
  z-index: 1;
}

.service-card-title {
  margin: 0 0 8px;
  font-size: 30px;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.service-card-label {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.service-card-line {
  width: 50px;
  height: 2px;
  margin: 0 0 20px;
  background: #00a6e4;
}

.service-card-text p {
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.5;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.service-card-text p:last-child {
  margin-bottom: 0;
}

.service-card-more .more {color: #fff;}

/* --------------------
AVシステム統合
-------------------- */
/* AVシステム統合 sub-fv*/
.sub-fv.avsystem {
  background: url("../images/avsystem-header.jpg") center center / cover no-repeat;
}

/* AVシステム統合 AVシステム統合の特徴*/
.avsystem-block02 {
  padding: 30px 0 90px;
  background: url("../images/bg-pattern01.jpg") center center / cover no-repeat;
}

.avsystem-block02-heading {
  margin-bottom: 70px;
  text-align: center;
}

.avsystem-block02-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.avsystem-block02-heading p {
  margin: 26px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #282828;
  letter-spacing: 0.03em;
}

.avsystem-block02-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.avsystem-block02-card {
  width: calc((100% - 60px) / 3);
  padding: 58px 28px 34px;
  background: #ffffff;
}

.avsystem-block02-icon {
  width: 150px;
  margin: 0 auto 28px;
}

.avsystem-block02-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.avsystem-block02-card h3 {
  margin: 0 0 26px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.avsystem-block02-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: #282828;
  letter-spacing: 0.03em;
}

/* AVシステム統合　開発商品事例　イチオシ開発商品*/
.post-grid-section {
  padding: 120px 0 140px;
}
.post-grid-section.bg01 {
  background: url("../images/avsystem-bg01.jpg") center center / cover no-repeat;
}
.post-grid-section.bg02 {
  background: url("../images/avsystem-bg02.jpg") center center / cover no-repeat;
}

.post-grid-section-heading {
  margin-bottom: 70px;
  text-align: center;
}

.post-grid-section-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.post-grid-section-heading p {
  margin: 26px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #ffffff;
  letter-spacing: 0.03em;
}

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

.post-grid-item {
  display: block;
  padding: 18px 18px 26px;
  background: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.post-grid-item:hover {
  opacity: 0.9;
}

.post-grid-thumb {
  aspect-ratio: 286 / 190;
  overflow: hidden;
  position: relative;
}
.post-grid-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* sold out*/
.post-grid-soldout {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 2;
}
.post-grid-soldout img {
  display: block;
  width: auto;
  max-width: 170px;
  height: auto;
}
.post-grid-item.is-soldout {
  display: block;
  cursor: default;
}
.post-grid-item.is-soldout .post-grid-arrow {
  display: none;
}

.post-grid-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.post-grid-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #355587;
  letter-spacing: 0.03em;
}

.post-grid-arrow {
  flex-shrink: 0;
  width: 25px;
}

.post-grid-arrow img {
  display: block;
  width: 100%;
  height: auto;
}

/* AVシステム統合 施工例*/
.avsystem-block03 {
  padding: 120px 0 140px;
  background: url("../images/bg-pattern01.jpg") center center / cover no-repeat;
}

.avsystem-block03-heading {
  margin-bottom: 70px;
  text-align: center;
}

.avsystem-block03-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.avsystem-block03-heading p {
  margin: 26px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #282828;
  letter-spacing: 0.03em;
}

.avsystem-block03-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 30px;
}

.avsystem-block03-item {
  background: #ffffff;
}

.avsystem-block03-thumb {
  aspect-ratio: 386 / 245;
  overflow: hidden;
}

.avsystem-block03-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avsystem-block03-title {
  margin: 0;
  padding: 16px 20px 18px;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #355587;
  letter-spacing: 0.03em;
}

/* AVシステム統合 商品詳細ページ*/
.product-detail-block01 {
  padding: 80px 0 120px;
  background-image: url("../images/bg-pattern01.jpg");
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}

.product-detail-content .wp-block-image {
  margin: 40px auto;
  text-align: center;
}

.product-detail-content .wp-block-image img {
  display: inline-block;
  width: 70% !important;
  max-width: 100%;
  height: auto;
}
.product-detail-content .wp-block-image.is-original-size img {
  width: auto !important;
  max-width: 100%;
}
.product-detail-content {
  max-width: 960px;
  margin: 0 auto;
  color: #282828;
  font-size: 18px;
  line-height: 2;
}

.product-detail-content > *:first-child {
  margin-top: 0;
}

.product-detail-content > *:last-child {
  margin-bottom: 0;
}

.product-detail-content h2,
.product-detail-content h3,
.product-detail-content h4 {
  margin-top: 80px;
  margin-bottom: 24px;
  line-height: 1.6;
  font-weight: 700;
  color: #0d5999;
}

.product-detail-content h2 {
  font-size: 38px;
}

.product-detail-content h3 {
  font-size: 30px;
}

.product-detail-content h4 {
  font-size: 24px;
}

.product-detail-content p {
  margin: 0 0 24px;
}

.product-detail-content ul,
.product-detail-content ol {
  margin: 0 0 24px;
  padding-left: 1.5em;
}

.product-detail-content li {
  margin-bottom: 10px;
}

.product-detail-content img {
  display: block;
  max-width: 100%;
  height: auto;
}

.product-detail-content figure {
  margin: 40px 0;
}

.product-detail-content .wp-block-image {
  margin: 40px 0;
}

.product-detail-content .wp-block-image img {
  width: 100%;
}

.product-detail-content a {
  color: #0d5999;
  text-decoration: underline;
  word-break: break-all;
}

/* table */
.product-detail-content table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 40px 0;
}

.product-detail-content th,
.product-detail-content td {
  padding: 18px 20px;
  border: 1px solid #bdbdbd;
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  vertical-align: top;
  word-break: break-word;
}

.product-detail-content th {
  background: #f3f3f3;
  color: #0d5999;
  font-weight: 700;
}

.product-detail-content hr {
  margin: 56px 0;
  border: 0;
  border-top: 1px solid #bdbdbd;
}

.product-pdf-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 50px 0;
  border-left: 1px solid #ffffff;
}

.product-pdf-link {
  display: flex;
  align-items: center;
  min-height: 94px;
  background: #d9d9d9;
  border-right: 1px solid #ffffff;
  color: #111111;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

p.product-pdf-link__text {margin:0;}

.product-pdf-link:hover {
  opacity: 0.85;
}

.product-pdf-link__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 0 24px;
}

.product-pdf-link__title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.product-pdf-link__icon {
  flex: 0 0 22px;
  width: 22px;
}

.product-pdf-link__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.product-pdf-link__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.product-pdf-link__text {
  margin: 6px 0 0 36px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6;
}

.product-detail-content .wp-block-columns {
  display: flex;
  gap: 40px;
}

.product-detail-content .wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}

.product-detail-content ul.wp-block-list {
  margin: 0;
  padding-left: 1.5em;
  list-style: disc outside !important;
}

.product-detail-content ul.wp-block-list li {
  list-style: disc outside !important;
}



/* --------------------
共同開発製品
-------------------- */
/* 共同開発製品 sub-fv*/
.sub-fv.innovation {
  background: url("../images/innovation-header.jpg") center center / cover no-repeat;
}

/* 共同開発製品 block02 */
.innovation-block02 {
  padding: 120px 0 140px;
  margin-top: 50px;
  background: url("../images/innovation-bg01.jpg") center center / cover no-repeat;
}

.innovation-block02-heading {
  margin-bottom: 70px;
  text-align: center;
}

.innovation-block02-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.innovation-block02-heading p {
  margin: 28px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.innovation-block02-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px 28px;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.innovation-block02-item {
  background: #ffffff;
  padding: 18px 18px 26px;
}

.innovation-block02-thumb {
  aspect-ratio: 286 / 190;
  overflow: hidden;
}

.innovation-block02-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.innovation-block02-title {
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  color: #355587;
  letter-spacing: 0.03em;
}

/* 共同開発製品 block03 */
.innovation-block03 {
  padding: 120px 0 140px;
  background: url("../images/bg-pattern01.jpg") center bottom / cover no-repeat;
}

.innovation-block03-heading {
  margin-bottom: 68px;
  text-align: center;
}

.innovation-block03-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.innovation-block03-heading p {
  margin: 24px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #282828;
  letter-spacing: 0.03em;
}

.innovation-block03-box {
  display: flex;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
  background: #ffffff;
}

.innovation-block03-text {
  width: 50%;
  padding: 60px 64px 52px;
}

.innovation-block03-text h3 {
  margin: 0 0 28px;
  font-size: 28px;
  text-align: left;
  font-weight: 600;
  line-height: 1.6;
  color: #123f78;
  letter-spacing: 0.03em;
}

.innovation-block03-text p {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 1.9;
  color: #282828;
  letter-spacing: 0.03em;
}

.innovation-block03-text p:last-child {
  margin-bottom: 0;
}

.innovation-block03-image {
  width: 50%;
}

.innovation-block03-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --------------------
デジタルソリューション開発
-------------------- */
/* デジタルソリューション開発 sub-fv*/
.sub-fv.digital {
  background: url("../images/digital-header.jpg") center center / cover no-repeat;
}

/* デジタルソリューション開発 block02*/
.digital-block02 {
  padding: 30px 0 90px;
  background: url("../images/bg-pattern01.jpg") center center / cover no-repeat;
}

.digital-block02-heading {
  margin-bottom: 70px;
  text-align: center;
}

.digital-block02-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.digital-block02-heading p {
  margin: 26px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #282828;
  letter-spacing: 0.03em;
}

.digital-block02-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.digital-block02-card {
  width: calc((100% - 60px) / 3);
  padding: 58px 28px 34px;
  background: #ffffff;
}

.digital-block02-icon {
  width: 150px;
  margin: 0 auto 28px;
}

.digital-block02-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.digital-block02-card h3 {
  margin: 0 0 26px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.digital-block02-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: #282828;
  letter-spacing: 0.03em;
}

/* デジタルソリューション開発 block03*/
.digital-block03 {
  padding: 120px 0 140px;
  background: url("../images/digital-bg01.jpg") center top / 1920px auto no-repeat;
  background-color: #0d5ea8;
}

.digital-block03-heading {
  margin-bottom: 110px;
  text-align: center;
}

.digital-block03-heading h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  letter-spacing: 0.04em;
}

.digital-block03-heading p {
  margin: 34px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #ffffff;
  letter-spacing: 0.03em;
}

.digital-block03-step {
  text-align: center;
}

.digital-block03-step h3,
.digital-block03-case h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-align: center;
}

.digital-block03-line {
  display: block;
  width: 90px;
  height: 3px;
  margin: 18px auto 70px;
  background: #17c9ff;
}

.digital-block03-step-list {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.digital-block03-step-item {
  position: relative;
  width: calc((100% - 72px) / 5);
  padding: 58px 20px 28px;
  background: #ffffff;
}

.digital-block03-step-num {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #11bdf3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.digital-block03-step-icon {
  width: 96px;
  margin: 0 auto 24px;
}

.digital-block03-step-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.digital-block03-step-item h4 {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
  color: #0d5999;
  letter-spacing: 0.03em;
}

.digital-block03-step-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  text-align: left;
  color: #282828;
  letter-spacing: 0.03em;
}

.digital-block03-case {
  margin-top: 120px;
}

.digital-block03-tabs {
  display: flex;
  justify-content: center;
  gap: 1px;
  margin-bottom: 60px;
}

.digital-block03-tab {
  min-width: 176px;
  height: 44px;
  padding: 0 20px;
  border: none;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  background: #ffffff;
  background-image: none;
  box-shadow: none;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  color: #0d5999;
  cursor: pointer;
  transition: 0.3s;
}
.digital-block03-tab:focus,
.digital-block03-tab:active {
  outline: none;
  background-image: none;
  box-shadow: none;
}

.digital-block03-tab.is-active {
  background: #183e70;
  background-image: none;
  color: #ffffff;
}

.digital-block03-tab + .digital-block03-tab {
  margin-left: 0px;
}

.digital-block03-tab.is-active {
  background: #183e70;
  color: #ffffff;
}

.digital-block03-panels {
  position: relative;
}

.digital-block03-panel {
  display: none;
}

.digital-block03-panel.is-active {
  display: block;
}

.digital-block03-case-list {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.digital-block03-case-item {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 42px 50px;
}

.digital-block03-case-item.reverse {
  flex-direction: row-reverse;
}

.digital-block03-case-text {
  width: 38%;
  text-align: left;
}

.digital-block03-case-image {
  width: 60%;
  padding-left: 40px;
}

.digital-block03-case-item.reverse .digital-block03-case-image {
  padding-left: 0;
  padding-right: 40px;
}

.digital-block03-case-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  height: 34px;
  padding: 0 16px;
  border-radius: 17px;
  background: #11bdf3;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.digital-block03-panel[data-panel="workflow"] .digital-block03-case-label {
  background: #4dd446;
}
.digital-block03-panel[data-panel="core"] .digital-block03-case-label {
  background: #ec9c41;
}

.digital-block03-case-text h4 {
  margin: 10px 0 24px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
  color: #123f78;
  letter-spacing: 0.03em;
}

.digital-block03-case-text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.95;
  color: #282828;
  letter-spacing: 0.03em;
}

.digital-block03-case-image img {
  display: block;
  width: 100%;
  height: auto;
}

.digital-block03-empty {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.digital-block03-empty p {
  margin: 0;
  font-size: 18px;
  color: #282828;
}

/* --------------------
digital next product
-------------------- */
.digital-next-product {
  padding: 90px 0 160px;
  overflow: hidden;
}

.digital-next-product-inner {
  margin: 0 auto;
  padding: 0 4% 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
}

.digital-next-product-image {
  position: relative;
  width: 52%;
  padding-top: 10px;
  margin-left: calc(50% - 50vw);
  z-index: 1;
}

.digital-next-product-image::before {
  content: "";
  position: absolute;
  top: 46px;
  right: -46px;
  width: 100%;
  height: 100%;
  background: #0d5999;
  z-index: 0;
}

.digital-next-product-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.digital-next-product-bg-text {
  position: absolute;
  left: 20px;
  bottom: -120px;
  margin: 0;
  font-size: 9vw;
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  color: #f0f3f5;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.digital-next-product-text {
  position: relative;
  width: 48%;
  padding-top: 4px;
  z-index: 2;
}

.digital-next-product-title {
  margin: 0 0 34px;
  font-size: 36px;
  font-weight: 700;
  text-align: left;
  line-height: 1.5;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.digital-next-product-link {
  margin: 0 0 34px;
  text-align: left;
}

.digital-next-product-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #0d5999;
  color: #0d5999;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.digital-next-product-btn::after {
  content: "＞";
  margin-left: 12px;
  font-size: 12px;
  line-height: 1;
}

.digital-next-product-btn:hover {
  opacity: 0.7;
}

.digital-next-product-text p {
  margin: 0 0 20px;
  font-size: 18px;
  line-height: 2;
  color: #282828;
  letter-spacing: 0.03em;
}

.digital-next-product-text p:last-child {
  margin-bottom: 0;
}

/* --------------------
50周年記念
-------------------- */
/* 50周年記念 sub-fv*/
.sub-fv.anniversary {
  background: url("../images/anniversary-header.jpg") center center / cover no-repeat;
}
/* 50周年記念 block02*/
  .anniversary-block02 {
    padding: 120px 0 140px;
    margin-top: 50px;
    background: url("../images/anniversary-block02-bg.jpg") center center / cover no-repeat;
  }

  .anniversary-block02-heading {
  text-align: center;
}

.anniversary-block02-heading h2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 0;
}

.anniversary-block02-heading h2 span {
  display: inline-block;
  padding: 14px 28px 18px;
  background: #005bac;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.anniversary-block02-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 70px;
  margin-top: 86px;
}

.anniversary-block02-text {
  flex: 0 0 44%;
}

.anniversary-block02-text p {
  margin: 0;
  color: #282828;
  font-size: 18px;
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.03em;
}

.anniversary-block02-image {
  flex: 0 0 51%;
}

.anniversary-block02-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* 50周年記念 block02　年表*/
.anniversary-timeline {
  margin-top: 120px;
}
.anniversary-era {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 78px;
  padding-bottom: 10px;
}
.anniversary-era-1980,.anniversary-era-1990,.anniversary-era-2000,.anniversary-era-2010 { padding-bottom: 50px;}
.anniversary-era__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #b89447;
  transform: translateX(-50%);
}
.anniversary-era__year {
  position: absolute;
  top: 0;
  left: calc(50% - 60px);
  transform: translateX(-100%);
  z-index: 2;
}
.anniversary-era__year::before {
  content: "";
  position: absolute;
  top: 50px;
  right: -57px;
  width: 50px;
  height: 1px;
  background: #b89447;
}
.anniversary-era__year::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -64px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b89447;
}
.anniversary-era__year h2 {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: #b89447;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
}
.anniversary-era__year h2 span {
  font-size: 34px;
  line-height: 1;
}
.anniversary-era__col {
  position: relative;
  padding-top: 118px;
}
.anniversary-item {
  position: relative;
}
.anniversary-item--01 {
  margin-top: 0;
}
.anniversary-item--02 {
  margin-top: 58px;
}
.anniversary-item__heading {
  position: relative;
}
.anniversary-item__heading::before {
  content: "";
  position: absolute;
  top: 23px;
  width: 150px;
  height: 1px;
  background: #b89447;
}
.anniversary-era-2000 .anniversary-item--left .anniversary-item__heading::before {
    width: 420px;
}
.anniversary-era-2010 .anniversary-item--left .anniversary-item__heading::before {
    width: 420px;
}
.anniversary-era-2020 .anniversary-item--left .anniversary-item__heading::before {
    width: 290px;
}
.anniversary-item__heading::after {
  content: "";
  position: absolute;
  top: 19px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b89447;
}
.anniversary-item--left .anniversary-item__heading {
  padding-right: 110px;
}
.anniversary-item--left .anniversary-item__heading::before {
  right: -36px;
}
.anniversary-item--left .anniversary-item__heading::after {
  right: -43px;
}
.anniversary-item--right .anniversary-item__heading {
  padding-left: 120px;
  margin-top: -22px;
}
.anniversary-item--right .anniversary-item__heading::before {
  left: -37px;
}
.anniversary-item--right .anniversary-item__heading::after {
  left: -43px;
}
.anniversary-item__heading h3 {
  margin: 0;
  color: #282828;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}
.anniversary-item--left .anniversary-item__heading h3 {
  text-align: left;
}
.anniversary-item--right .anniversary-item__heading h3 {
  text-align: left;
}
.anniversary-item__card {
  position: relative;
  margin-top: 26px;
  padding: 34px 36px;
  background: #fff;
  border-radius: 10px;
  box-sizing: border-box;
}
.anniversary-item__card--left {
  margin-left: 46px;
  max-width: 560px;
}
.anniversary-item__card--right {
  margin-right: 18px;
  max-width: 640px;
}
.anniversary-item__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.anniversary-item__card ul li {
  position: relative;
  margin: 0px;
  padding-left: 1em;
  color: #282828;
  font-size: 16px;
  text-align: left;
  font-weight: 500;
  line-height: 1.5;
}
.anniversary-item__card ul li:last-child {
  margin-bottom: 0;
}
.anniversary-item__card ul li::before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
}
.anniversary-item__badge {
  position: absolute;
  top: -24px;
  left: -24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #b72828;
  color: #ffffff;
  z-index: 2;
}
.anniversary-item__badge .ja {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.anniversary-item__badge .en {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.anniversary-item__card-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
}
.anniversary-item__text {
  flex: 1 1 auto;
}
.anniversary-item__image {
  flex: 0 0 180px;
  margin-top: 5px;
}
.anniversary-item__image img {
  display: block;
  width: 100%;
  height: auto;
}
.anniversary-item--right.anniversary-item--02 {
  margin-top: 64px;
}
.anniversary-source {
  margin: 14px 0 0;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.6;
  text-align: right;
}
.anniversary-present {
  padding: 0px;
}
.anniversary-present-heading {
  text-align: center;
}
.anniversary-present-heading h2 {
  display: inline-block;
  margin: 0;
  padding: 18px 56px 22px;
  background: #b89447;
  color: #ffffff;
  font-family: "Times New Roman", "Yu Mincho", "Hiragino Mincho ProN", "MS PMincho", serif;
  font-size: 58px;
  font-weight: 700;
  line-height: 1.2;
}
.anniversary-present-text {
  max-width: 1100px;
  margin: 56px auto 0;
}
.anniversary-present-text p {
  font-size: 18px;
  line-height: 2;
}
.anniversary-present-text p + p {
  margin-top: 48px;
}
.anniversary-present-message {
  text-align: center;
  font-size: 25px !important;
  font-weight: 600;
  line-height: 1.8;
}

/* 50周年記念 block03 */
.anniversary-block03 {
  padding: 120px 0 80px;
  background: url("../images/anniversary-block03-bg.jpg") center center / cover no-repeat;
}
.anniversary-block03-heading {
  margin-bottom: 70px;
  text-align: center;
}
.anniversary-block03-heading h2 {
  display: inline-block;
  padding: 14px 28px 18px;
  margin-bottom: 1em;
  background: #ffffff;
  color: #0d5999;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.anniversary-block02-heading h2 span {
  display: inline-block;
  padding: 14px 28px 18px;
  background: #005bac;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.anniversary-block03-heading h3 {
  margin: 0;
  font-size: 30px;
  text-align: left;
  border-bottom:1px solid #fff ;
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 1.4em 0 0.8em;
  padding-bottom: 0.8em;
}
.anniversary-block03-heading p {
  margin: 28px 0 0;
  font-size: 18px;
  text-align: left;
  line-height: 1.8;
  color: #ffffff;
  letter-spacing: 0.03em;
}
.anniversary-block03-image {
  margin: 40px auto;
  max-width: 900px;
}

/* 50周年記念 block04*/
.anniversary-block04 {
  padding: 120px 0 140px;
  background: url("../images/bg-pattern01.jpg") center bottom / cover no-repeat;
}
.anniversary-block04-heading {
  margin-bottom: 68px;
  text-align: center;
}
.anniversary-block04-heading h2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 80px;
}
.anniversary-block04-heading h2 span {
  display: inline-block;
  padding: 14px 28px 18px;
  background: #005bac;
  color: #ffffff;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.anniversary-block04-heading p {
  font-size: 18px;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}
.anniversary-block04-cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.anniversary-block04-card {
  width: calc((100% - 60px) / 3);
  padding: 58px 28px 34px;
  background: #ffffff;
}
.anniversary-block04-icon {
  width: 150px;
  margin: 0 auto 28px;
}
.anniversary-block04-icon img {
  display: block;
  width: 100%;
  height: auto;
}
.anniversary-block04-card h3 {
  margin: 0 0 15px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #0d5999;
  letter-spacing: 0.04em;
}
.anniversary-block04-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
  color: #282828;
  letter-spacing: 0.03em;
}
/* 50周年記念 block05 */
.anniversary-block05 {
  padding: 140px 0 150px;
  background: url("../images/anniversary-block05-bg.jpg") center center / cover no-repeat;
}
.anniversary-block05-inner {
  max-width: 980px;
  margin: 0 auto;
}
.anniversary-block05-heading {
  margin-bottom: 56px;
  text-align: center;
}
.anniversary-block05-heading h2 {
  margin: 0;
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.anniversary-block05-text p {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.anniversary-block05-text p + p {
  margin-top: 48px;
}

/* --------------------
ニュース一覧
-------------------- */
/* ニュース一覧 sub-fv*/
.sub-fv.news-page {
  background: url("../images/news-page-header.jpg") center center / cover no-repeat;
}

.news-archive-block01 {
  padding: 110px 0 140px;
  background: #f3f3f3;
}

.news-archive-heading {
  margin-bottom: 72px;
  text-align: center;
}

.news-archive-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.news-archive-heading p {
  margin: 26px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #282828;
  letter-spacing: 0.03em;
}

.news-archive .news-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px dashed #d2d2d2;
}

.news-archive .news-list li {
  border-bottom: 1px dashed #d2d2d2;
  text-align: left;
}

.news-archive .news-list li a {
  display: grid;
  grid-template-columns: 110px 110px 1fr;
  align-items: center;
  column-gap: 16px;
  min-height: 96px;
  color: #282828;
  text-decoration: none;
}

.news-archive .news-list time {
  color: #1f4f85;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.news-archive .cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-archive .cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 28px;
  padding: 0 12px;
  background: #1f4f85;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.news-archive .title {
  color: #282828;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
}

.news-archive .news-list li a:hover .title {
  color: #0d5999;
}

.news-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 56px;
}

.news-pager a,
.news-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #c9d3df;
  background: #ffffff;
  color: #1f4f85;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.news-pager .is-current {
  background: #1f4f85;
  border-color: #1f4f85;
  color: #ffffff;
}

.news-pager .is-disabled {
  pointer-events: none;
  opacity: 0.4;
}

/* --------------------
ニュース詳細記事
-------------------- */
/* ニュース詳細記事 sub-fv*/
.sub-fv.news-detail {
  background: url("../images/news-detail-header.jpg") center center / cover no-repeat;
}

.news-detail-page-block01 {
  padding: 90px 0 140px;
  background: #f3f3f3;
}

.news-detail-article {
  max-width: 1060px;
  margin: 0 auto;
}

.news-detail-article-header {
  margin-bottom: 54px;
  padding-bottom: 34px;
  border-bottom: 1px solid #d9d9d9;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.news-detail-meta time {
  color: #282828;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

.news-detail-meta .cats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-detail-meta .cat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 94px;
  height: 28px;
  padding: 0 12px;
  background: #1f4f85;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.news-detail-article-header h1 {
  margin: 0;
  font-size: 40px;
  text-align: left;
  font-weight: 500;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.03em;
}

.news-detail-body {
  color: #282828;
}

.news-detail-image {
  margin: 0 0 52px;
}

.news-detail-image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail-body h3 {
  margin: 0 0 26px;
  font-size: 25px;
  text-align: left;
  font-weight: 700;
  line-height: 1.6;
  color: #282828;
}

.news-detail-body p {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 2;
  color: #282828;
  letter-spacing: 0.03em;
}

.news-detail-body p:last-child {
  margin-bottom: 0;
}

/* 詳細ページ ページャー */
.news-detail-back {
  margin-top: 70px;
}

.news-detail-pager {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.news-detail-pager-item {
  flex: 0 0 auto;
}

.news-detail-pager-item.is-prev,
.news-detail-pager-item.is-next {
  max-width: 250px;
}

.news-detail-pager-item.is-center {
  width: 500px;
}

.news-detail-back-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 86px;
  padding: 0 72px;
  background: #00a6e4;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-sizing:border-box;
}

.news-detail-back-btn span {
  display: block;
  width: 100%;
  text-align: center;
}

.news-detail-pager-item.is-prev .news-detail-back-btn span {
  text-align: left;
}

.news-detail-pager-item.is-next .news-detail-back-btn span {
  text-align: right;
}

.news-detail-pager-item.is-center .news-detail-back-btn span {
  text-align: center;
}

.news-detail-back-btn img {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: block;
  width: 26px;
  height: 46px;
}

.news-detail-pager-item.is-prev .news-detail-back-btn {
  padding: 0 36px 0 72px;
}

.news-detail-pager-item.is-prev .news-detail-back-btn img {
  left: 24px;
  right: auto;
  transform: translateY(-50%) scaleX(-1);
}

.news-detail-pager-item.is-center .news-detail-back-btn {
  padding: 0 36px;
}

/* --------------------
会社概要
-------------------- */
/* 会社概要 sub-fv*/
.sub-fv.company {
  background: url("../images/company-header.jpg") center center / cover no-repeat;
}

.company-block01 {
  padding: 110px 0 140px;
  overflow: hidden;
}

.company-block01-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px;
}

.company-block01-image {
  flex: 0 0 34%;

}

.company-block01-image img {
  display: block;
  width: auto;
  height: auto;
}

.company-block01-text {
  position: relative;
  flex: 1;
  padding: 50px 0 0 0;
}

.company-block01-text::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 200px;
  right: calc(50% - 50vw);
  height: calc(100% + 100px);
  background: #f0f3f5;
  z-index: 0;
}

.company-block01-text p {
  position: relative;
  z-index: 1;
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 2;
  color: #282828;
  letter-spacing: 0.03em;
}

.company-block01-text p:last-child {
  margin-bottom: 0;
}

.company-block02 {
  padding: 0px 0 140px;
}

.company-block02-heading {
  margin-bottom: 70px;
  text-align: center;
}

.company-block02-heading h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.company-block02-table {
  max-width: 1080px;
  margin: 0 auto;
  border-bottom: 1px solid #bdbdbd;
}

.company-block02-row {
  display: grid;
  grid-template-columns: 270px 1fr;
  margin: 0;
  border-top: 1px solid #bdbdbd;
}

.company-block02-row dt,
.company-block02-row dd {
  margin: 0;
  padding: 22px 0 22px;
  font-size: 18px;
  font-weight: 400;
  text-align: left;
  line-height: 1.9;
  color: #282828;
}

.company-block02-row dt {
  padding-right: 28px;
  color: #0d5999;
  font-weight: 500;
  border-top: 2px solid #0d5999;
}

.company-block02-row dd {
  padding-left: 18px;
}

.company-block02-row dd ul {
  margin: 0;

}

.company-block02-row dd ul li {
  margin: 0 0 8px;
}

.company-block02-row dd ul li:last-child {
  margin-bottom: 0;
}

.company-block03 {
  padding: 110px 0 140px;
  background: #f0f3f5;
}

.company-block03-heading {
  margin-bottom: 70px;
  text-align: center;
}

.company-block03-heading h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.12em;
}

.company-block03-table {
  max-width: 1140px;
  margin: 0 auto;
  border-bottom: 1px solid #bdbdbd;
}

.company-block03-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  margin: 0;
  border-top: 1px solid #bdbdbd;
}

.company-block03-row dt,
.company-block03-row dd {
  margin: 0;
  padding: 18px 0 18px;
  font-size: 18px;
  text-align: left;
  line-height: 1.9;
  color: #282828;
}

.company-block03-row dt {
  padding-right: 32px;
  font-weight: 500;
  color: #0d5999;
  border-top: 2px solid #0d5999;
}

.company-block03-row dd {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px 18px;
  padding-left: 18px;
}

.company-block03-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  height: 32px;
  padding: 0 16px;
  border-radius: 16px;
  background: #0d5999;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* --------------------
問い合わせ
-------------------- */
/* 問い合わせ sub-fv*/
.sub-fv.contact {
  background: url("../images/contact-header.jpg") center center / cover no-repeat;
}

.contact-page-block01 {
  padding: 90px 0 140px;
}

.contact-page-heading {
  margin-bottom: 60px;
  text-align: center;
}

.contact-page-heading h2 {
  margin: 0;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.contact-page-heading p {
  margin: 26px 0 0;
  font-size: 18px;
  text-align: center;
  line-height: 1.8;
  color: #282828;
  letter-spacing: 0.03em;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form-row {
  margin-bottom: 26px;
}

.contact-form-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.contact-form-label label,
.contact-form-label span:first-child {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #282828;
}

.required,
.optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 26px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.required {
  background: #ff3c00;
}

.optional {
  background: #b7b7b7;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: none;
  background: #edf4f8;
  color: #282828;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  box-sizing: border-box;
}

.contact-form-field input {
  height: 54px;
  padding: 0 16px;
}

.contact-form-field textarea {
  min-height: 260px;
  padding: 16px;
  resize: vertical;
}

.contact-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}

.contact-check,
.contact-policy-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.contact-check input,
.contact-policy-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-check .check-box,
.contact-policy-check .check-box {
  width: 26px;
  height: 26px;
  background: #edf4f8;
  flex-shrink: 0;
  position: relative;
}

.contact-check input:checked + .check-box::after,
.contact-policy-check input:checked + .check-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #0d5999;
  border-bottom: 2px solid #0d5999;
  transform: rotate(45deg);
}

.contact-check .check-text,
.contact-policy-check .check-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #282828;
}

.contact-form-policy {
  margin-top: 40px;
}

.contact-form-policy-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #282828;
}

.contact-form-policy-box {
  height: 160px;
  padding: 18px 20px;
  overflow-y: auto;
  border: 1px solid #bcbcbc;
  background: #ffffff;
  font-size: 15px;
  text-align: left;
  line-height: 2;
  color: #282828;
  box-sizing: border-box;
}

.contact-policy-check {
  justify-content: center;
  margin-top: 26px;
}

.contact-form-submit {
  margin-top: 34px;
  text-align: center;
}

.contact-form-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 520px;
  height: 74px;
  padding: 0 72px 0 36px;
  border: none;
  background: #00a6e4;
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

.contact-form-submit-btn span {
  display: block;
  width: 100%;
  text-align: center;
}

.contact-form-submit-btn img {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: block;
  width: 26px;
  height: 46px;
}
.contact-form-error {
	font-size:18px;
	font-weight:500;
	text-align:left;
	color:#FF3C00;
}
.contact-form-field p{
    font-size: 1.3rem;
    font-feature-settings: "palt";
    line-height: 1.5em;
}
.contact-form-policy--confirm .contact-form-policy-box,.contact-form-policy--confirm .contact-form-policy-title {
  display: none;
}

.contact-policy-check-text {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.8;
  color: #282828;
  text-align: left;
}


/* --------------------
共通　問い合わせ・リクルート
-------------------- */
.cta-links {
  display: flex;
  width: 100%;
  height: 300px;
}

.cta-links .box {
  position: relative;
  flex: 0 0 50%;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}

.cta-links .box .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 6.8% 0 7%;
  box-sizing: border-box;
}

.cta-links .contact .cta-inner {
  background:url("../images/block05-contact-bg.jpg") center center / cover no-repeat;
}

.cta-links .recruit .cta-inner {
  background:url("../images/block05-recruit-bg.jpg") center center / cover no-repeat;
}

.cta-links .text {
  position: relative;
  z-index: 2;
}

.cta-links h2 {
  margin: 0;
  color: #fff;
  font-size: 78px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .02em;
  text-align: left;
}

.cta-links .sub {
  margin: 20px 0 0 0px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.cta-links .desc {
  margin: 18px 0 0 0px;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
}

.cta-links .arrow {
  position: relative;
  z-index: 2;
  width: 43px;
  height: 83px;
  flex: 0 0 auto;
  background: url("../images/icon-arrow.png") center center / 43px auto no-repeat;
}


/* --------------------
footer
-------------------- */
.footer {
  background: #153958;
  color: #fff;
}

.footer .inner {
  margin: 0 auto;
  min-height: 325px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  padding: 52px 4% 40px;
}

.footer .info {
  width: 360px;
}

.footer .logo img {
  display: block;
  width: auto;
  height: auto;
  width: 306px !important;
}

.footer .address {
  margin-top: 34px;
}

.footer .address p {
  margin: 0 0 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}

.footer .address p:last-child {
  margin-bottom: 0;
}

.footer .nav {
  display: flex;
  gap: 50px;
  padding-top: 4px;
}

.footer .col {
  min-width: 165px;
}

.footer .ttl {
  margin: 0 0 0px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin: 0 0 0 1em;
  height: 1em;
  text-align: left;
}

.footer li:last-child {
  margin-bottom: 0;
}

.footer li a {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

.footer .copy {
  border-top: 1px solid #295a85;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
}

.footer .copy p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  text-align: center;
}

/*---------------------------------
アニメーション
---------------------------------*/

.reveal{
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition-property: opacity, transform, filter;
  transition-duration: .7s;
  transition-timing-function: cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform, filter;
}
.reveal.is-in{
  opacity: 1;
  transform: none;
  filter: none;
}

/* 方向バリエーション */
.reveal--up{ transform: translateY(14px); }
.reveal--down{ transform: translateY(-14px); }

/* スタイル違い */
.reveal--zoom{ transform: scale(.96); }
.reveal--soft{ filter: blur(1px); }  /* ぼかし弱め */

/* 非表示 左から右へ表示 */
.reveal-left-right {overflow: hidden;}
.reveal-left-right img {
  display: block;
  width: 100%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path, opacity;
}
.reveal-left-right.is-in img {
  animation: revealLeftToRight 0.5s cubic-bezier(0.65, 0, 0.9, 1) forwards;
}

@keyframes revealLeftToRight {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

/* スピード（任意） */
.reveal--fast{ transition-duration: .45s; }
.reveal--slow{ transition-duration: 1s; }

/* 遅延ユーティリティ（.1s刻み） */
.delay-0{  transition-delay: 0s; }
.delay-1{  transition-delay: .1s; }
.delay-2{  transition-delay: .2s; }
.delay-3{  transition-delay: .3s; }
.delay-4{  transition-delay: .4s; }
.delay-5{  transition-delay: .5s; }
.delay-6{  transition-delay: .6s; }
.delay-7{  transition-delay: .7s; }
.delay-8{  transition-delay: .8s; }
.delay-9{  transition-delay: .9s; }
.delay-10{ transition-delay: 1s; }

/* ボタン用アニメーション */
.cta-links .box.cta-left-right {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.cta-links .box.cta-left-right .cta-inner {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  will-change: clip-path, opacity;
}

.cta-links .box.cta-left-right.is-in .cta-inner {
  animation: revealLeftToRight 0.5s cubic-bezier(0.65, 0, 0.9, 1) forwards;
}

@media screen and (min-width:960px) {
    /*for PC*/
    #wrapper, .wrapper{font-size:1.8rem; font-feature-settings:"palt"; line-height:1.5em; margin:0 auto; padding:0}
    .pc{display:block}.sp{display:none}

}

@media screen and (min-width:481px) and (max-width:960px) {
    /*for iPad tb(タブレット)*/
    #wrapper, .wrapper{font-size:1.8rem; font-feature-settings:"palt"; line-height:1.5em; margin:0 auto; padding:0}
    .hpb{width:100%; margin:0 auto}
    .pc{display:none}.sp{display:block}
    /*共通*/

    /*ヘッダー*/
    header .sp {display: none;}

    .cta-links h2 {font-size: 40px;}
    .cta-links .box {padding: 0 5.5% 0 7%;}
    .cta-links .text { padding-right: 3%;}
    /*footer*/
    .footer .nav {
      gap: 40px;
    }
}

@media screen and (max-width: 900px) {
    /*for iPhone sp(スマートフォン)*/
    #wrapper, .wrapper{font-size:1.8rem; font-feature-settings:"palt"; line-height:1.5em; margin:0 auto; padding:0}
    .hpb{width:100%; margin:0 auto}
    .pc{display:none}.sp{display:block}
	::placeholder{font-size:0.7em}
    .flex {flex-direction: column;}
    /*背景*/
    .bg{padding:0px}.bgt0{padding:0 2% 35px}
    /*block*/
    .block{padding:0 2% 25px; text-align:left}
    .hl, .h, .hlh{padding:25px 1% 4%; font-size:1.625em}.h{padding:0 1% 4%}.hlh{padding:35px 2% 20px; margin-bottom:0}

  /*見出し*/
  

 /* --------------------
  header
  -------------------- */
  header {
    height: 100px;
  }

  header .inner {
    height: 100%;
    padding: 0 28px;
    align-items: flex-start;
  }

  header .logo {
    margin-top: 23px;
  }

  header .logo img {
    width: 240px;
    max-width: 100%;
  }

  header nav {
    position: fixed;
    top: 110px;
    left: 0;
    width: 100%;
    height: calc(100vh - 110px);
    padding: 30px 28px;
    background: rgba(0, 80, 150, .96);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    overflow-y: auto;
    z-index: 999;
	box-sizing:border-box;
  }

  header.open nav {
    display: flex;
  }

  header .menu {
    height: auto;
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
  }

  header .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, .2);
  }

  header .menu li a {
    display: block;
    padding: 18px 0;
    text-align: left;
    font-size: 22px;
    line-height: 1.5;
    color: #fff;
  }

  header .menu li a span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    letter-spacing: .08em;
  }

  header .contact {
    width: 100%;
    height: auto;
    margin-top: 24px;
    padding: 18px 20px;
    justify-content: flex-start;
  }

  header .contact .text {
    font-size: 18px;
  }

  header .contact .text small {
    font-size: 12px;
  }

header .menu-btn {
  position: absolute;
  top: 30px;
  right: 28px;
  width: 50px;
  height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

header .menu-btn span {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  border-radius: 20px;
  transform-origin: center;
  transition: transform .3s ease, opacity .3s ease;
}

  header.scrolled .menu li a {
    color: #fff !important;
  }

  header.scrolled .menu-btn span {
    background: #111;
  }

  header.open .menu-btn span:nth-child(1) {
    transform: translateY(18px) rotate(45deg);
  }

  header.open .menu-btn span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
  }

  header.open .menu-btn span:nth-child(3) {
    transform: translateY(-18px) rotate(-45deg);
  }

header.open .menu-btn span {
  background: #fff;
}

header.open.scrolled .menu-btn span {
  background: #111;
}

  /* --------------------
  fv
  -------------------- */
  .fv {
    height: auto;
    min-height: auto;
    padding: 0 0 30px;
  }
  .fv .copy {
    position: relative;
    top: auto;
    left: auto;
    z-index: 3;
    padding: 130px 20px 0;
    max-width: none;
  }

  .fv .copy h1 {
    margin: 0;
    font-size: 35px;
    line-height: 1.2;
    letter-spacing: .02em;
  }
  .fv .copy h1 span { font-size: 50px}
  
  .fv .copy p {
    margin: 24px 0 0;
    font-size: 14px;
    line-height: 1.6;
  }

  .fv .photo {
    position: relative;
    z-index: 4;
  }

  .fv .photo-main {
    top: 25px;
    right: -80px;
    bottom: auto;
    width: 90vw;

  }

  .fv .photo-sub {
    top: auto;
    right: auto;
    bottom: auto;
    width: 35vw;
    margin: -50px 0 0 38px;
  }

  .fv .en {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 2;
    margin: 25px 0 0 0.3em;
    white-space: normal;
    word-break: break-word;
    width: 94%;
  }

  /* --------------------
  top　block01
  -------------------- */
  .block01 {
    padding: 90px 0 30px;
  }

  .block01 .inner {
    display: flex;
    flex-direction: column;
    padding: 0 28px;
    box-sizing: border-box;  
  }

  .block01 .text {
    order: 1;
    flex: none;
    width: 100%;
    margin: 0;
    padding-left: 0;
	box-sizing: border-box;
  }

  .block01 .text::before {
    top: -35px;
    right: -28px;
    width: calc(100% + 56px);
    height: calc(100% + 150px);
  }

  .block01 .img {
    order: 2;
    flex: none;
    width: 100%;
    margin-top: 50px;
  }

  .block01 .img img {
    width: 100%;
    max-width: none;
  }

  .block01 h3 {
    margin-bottom: 28px;
    font-size: 38px;
    line-height: 1.25;
  }

  .block01 p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 2;
	overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* --------------------
  top　block02
  -------------------- */
  .block02 {
    padding: 80px 0px 30px;
  }
  .block02 .box {
    top: 45px;
    left: 0px;
    transform: none;
    width: 100%;
    height: auto;
    bottom: 70px;
  }

  .block02 .head h2 {
    font-size: 56px;
  }

  .block02 .head .sub {
    margin-top: 16px;
    font-size: 16px;
  }

  .block02 .head .lead {
    margin: 46px 4% 0;
    font-size: 16px;
    line-height: 1.8;
  }

  .block02 .cards {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .block02 .card {
    width: auto;
    margin: 0 4%;
    max-width: none;
    min-height: 220px;
    aspect-ratio: auto;
  }

  .block02 .card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .block02 .card .num {
    top: 14px;
    left: 18px;
    font-size: 46px;
  }

  .block02 .card .text {
    left: 25px;
    right: 20px;
    top: 16px;
  }

  .block02 .card h3 {
    font-size: 21px;
    line-height: 1.2;
    margin-left: 60px;
  }

  .block02 .card .en {
    margin: 0px 0 14px 60px;
    font-size: 13px;
  }

  .block02 .card .desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .block02 .card .more {
    min-width: 120px;
    height: 30px;
    margin-top: 14px;
    font-size: 10px;
  }
  .block02 .card::before {
  border-top: 30px solid #00a6e4;
  border-right: 30px solid transparent;
  }

  /* --------------------
  top　block03
  -------------------- */
 .block03 {
    height: auto;
    display: block;
  }

  .block03 .left,
  .block03 .right {
    width: 100%;
  }

  .block03 .left {
    min-height: 300px;
  }

  .block03 .right {
    height: 260px;
  }

  .block03 .text {
    max-width: none;
    margin: 72px 28px 0;
  }

  .block03 .text h2 {
    font-size: 44px;
    line-height: 1.2;
  }

  .block03 .text p {
    margin-top: 24px;
    font-size: 16px;
  }

  .block03 .link {
    margin-top: 18px;
  }

  .block03 .bg-text {
    left: 4%;
    bottom: -5px;

  }

  .block03 .right img {
    height: 100%;
  }

/* --------------------
news　記事一覧
-------------------- */
  .news {
    display: block;
    padding: 50px 0 90px;
  }

  .news .left-box {
    top: 0;
    left: 0;
    width: 100%;
    height: 220px;
  }

  .news .left {
    flex: 1 1 auto;
    padding: 0 0 0 4%;
  }

  .news .left h2 {
    font-size: 58px;
  }

  .news .left .sub {
    margin-top: 18px;
    font-size: 16px;
  }

  .news .link-wrap {
    width: auto;
    margin-top: 0;
    text-align: right;
    flex: 0 0 auto;
  }

  .news .right {
    margin-top: 44px;
    padding: 0 4%;
  }

  .news .news-list li a {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 22px 0;
    min-height: 0;
  }

  .news .news-list time {
    font-size: 16px;
  }

  .news .cat {
    min-width: 88px;
    height: 26px;
    font-size: 11px;
  }

  .news .title {
    font-size: 16px;
    line-height: 1.7;
  }

/* --------------------
下層　sub-FV
-------------------- */

  .sub-fv {
    height: 260px;
    background-position: center center;
  }

  .sub-fv .text {
    padding: 50px 28px 0;
  }

  .sub-fv .en {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .sub-fv h1 {
    font-size: 35px;
  }

/* --------------------
下層　page-intro
-------------------- */
  .page-intro {
    padding: 40px 0 50px;
  }

  .page-intro-inner {
    padding: 0 4%;
    display: block;
  }

  .page-intro-text {
    width: 100%;
    margin-bottom: 50px;
	z-index:10px;
  }

  .page-intro-title {
    margin-bottom: 32px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .page-intro-title br,
  .page-intro-text p br {
    display: none;
  }

  .page-intro-text p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.9;
  }

  .page-intro-image {
    width: 100%;
    padding-top: 0;
  }

  .page-intro-bg-text {
    right: -10px;
    bottom: -44px;
    font-size: clamp(4.5rem, 18vw, 7rem);
  }

/* --------------------
事業案内ページ
-------------------- */
  .service-cards {
    padding: 0 0 90px;
  }

  .service-cards-inner {
    width: 100%;
    padding: 0;
  }

  .service-card,
  .service-card.reverse {
    display: block;
    min-height: auto;
    background: none;
  }

  .service-card::before {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .service-card.bg01::before {
    background-image: url("../images/service-block02-img1.jpg");
  }

  .service-card.bg02::before {
    background-image: url("../images/service-block02-img2.jpg");
  }

  .service-card.bg03::before {
    background-image: url("../images/service-block02-img3.jpg");
  }

  .service-card + .service-card {
    margin-top: 40px;
  }

  .service-card-body {
    width: 100%;
    padding: 34px 4% 30px;
	box-sizing:border-box;
  }

  .service-card-label {
    margin-bottom: 10px;
    font-size: 1.125rem;
  }

  .service-card-title {
    margin-bottom: 12px;
    font-size: 2rem;
    line-height: 1.4;
  }

/* --------------------
AVシステム統合
-------------------- */

  /* AVシステム統合 AVシステム統合の特徴*/
  .avsystem-block02 {
    padding: 80px 0 90px;
  }

  .avsystem-block02-heading {
    margin-bottom: 40px;
  }

  .avsystem-block02-heading h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .avsystem-block02-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .avsystem-block02-cards {
    display: block;
  }

  .avsystem-block02-card {
    width: 100%;
    padding: 40px 22px 28px;
	box-sizing:border-box;
  }

  .avsystem-block02-card + .avsystem-block02-card {
    margin-top: 24px;
  }

  .avsystem-block02-icon {
    width: 120px;
    margin-bottom: 22px;
  }

  .avsystem-block02-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .avsystem-block02-card p {
    font-size: 16px;
    line-height: 1.85;
  }

  /* AVシステム統合　開発商品事例 */
  .post-grid-section {
    padding: 60px 0 70px;
  }

  .post-grid {
    padding: 80px 0 90px;
  }

  .post-grid-section-heading {
    margin-bottom: 40px;
  }

  .post-grid-section-heading h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .post-grid-section-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .post-grid-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post-grid-item {
    padding: 14px 14px 18px;
  }

  .post-grid-meta {
    margin-top: 14px;
  }

  .post-grid-title {
    font-size: 16px;
    line-height: 1.5;
  }

  .post-grid-arrow {
    width: 24px;
  }

/* AVシステム統合 施工例 */
  .avsystem-block03 {
    padding: 80px 0 90px;
  }

  .avsystem-block03-heading {
    margin-bottom: 40px;
  }

  .avsystem-block03-heading h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .avsystem-block03-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .avsystem-block03-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .avsystem-block03-title {
    padding: 14px 14px 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .product-pdf-links {
    grid-template-columns: 1fr;
    border-left: 0;
  }

  .product-pdf-link {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #ffffff;
  }

  .product-pdf-link__inner {
    padding: 18px 18px 16px;
  }

  .product-pdf-link__title-wrap {
    gap: 12px;
  }

  .product-pdf-link__icon {
    flex: 0 0 20px;
    width: 20px;
  }

  .product-pdf-link__title {
    font-size: 15px;
  }

  .product-pdf-link__text {
    margin: 8px 0 0 32px;
    font-size: 11px;
  }
  .product-detail-content .wp-block-columns {
    display: block;
  }

  .product-detail-content .wp-block-column + .wp-block-column {
    margin-top: 20px;
  }
/* --------------------
共同開発製品
-------------------- */
/* 共同開発製品 block02 */
  .innovation-block02 {
    padding: 80px 0 90px;
  }

  .innovation-block02-heading {
    margin-bottom: 40px;
  }

  .innovation-block02-heading h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .innovation-block02-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .innovation-block02-list {
    grid-template-columns: 1fr;
    gap: 20px;
    width: 100%;
  }

  .innovation-block02-item {
    padding: 14px 14px 18px;
  }

  .innovation-block02-title {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.5;
  }

/* 共同開発製品 block03*/
  .innovation-block03 {
    padding: 80px 0 90px;
  }

  .innovation-block03-heading {
    margin-bottom: 38px;
  }

  .innovation-block03-heading h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .innovation-block03-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .innovation-block03-box {
    display: block;
  }

  .innovation-block03-text,
  .innovation-block03-image {
    width: 100%;
  }

  .innovation-block03-text {
    padding: 34px 6% 30px;
	box-sizing:border-box;
  }

  .innovation-block03-text h3 {
    margin-bottom: 18px;
    font-size: 24px;
    line-height: 1.5;
  }

  .innovation-block03-text p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.85;
  }

  .innovation-block03-image img {
    height: auto;
  }

/* --------------------
デジタルソリューション開発
-------------------- */

  .digital-block02 {
    padding: 80px 0 90px;
  }

  .digital-block02-heading {
    margin-bottom: 40px;
  }

  .digital-block02-heading h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .digital-block02-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .digital-block02-cards {
    display: block;
  }

  .digital-block02-card {
    width: 100%;
    padding: 40px 22px 28px;
  }

  .digital-block02-card + .digital-block02-card {
    margin-top: 24px;
  }

  .digital-block02-icon {
    width: 120px;
    margin-bottom: 22px;
  }

  .digital-block02-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .digital-block02-card p {
    font-size: 16px;
    line-height: 1.85;
  }

/* デジタルソリューション開発 block03*/
  .digital-block03 {
    padding: 80px 0 90px;
  }

  .digital-block03-heading {
    margin-bottom: 56px;
  }

  .digital-block03-heading h2 {
    font-size: 40px;
    line-height: 1.4;
  }

  .digital-block03-heading p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
  }

  .digital-block03-heading p br {
    display: none;
  }

  .digital-block03-step h3,
  .digital-block03-case h3 {
    font-size: 34px;
  }

  .digital-block03-line {
    width: 72px;
    margin: 14px auto 42px;
  }

  .digital-block03-step-list {
    display: block;
  }

  .digital-block03-step-item {
    width: 100%;
    margin-bottom: 40px;
    padding: 50px 18px 22px;
  }

  .digital-block03-step-item:last-child {
    margin-bottom: 0;
  }

  .digital-block03-step-num {
    width: 58px;
    height: 58px;
    top: -22px;
    font-size: 22px;
  }

  .digital-block03-step-icon {
    width: 84px;
    margin-bottom: 18px;
  }

  .digital-block03-step-item h4 {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .digital-block03-step-item p {
    font-size: 15px;
    line-height: 1.8;
  }

  .digital-block03-case {
    margin-top: 90px;
  }

  .digital-block03-tabs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1px;
    margin-bottom: 34px;
  }

  .digital-block03-tab {
    width: 100%;
    min-width: 100%;
    height: 44px;
    font-size: 14px;
  }

  .digital-block03-tab + .digital-block03-tab {
    margin-left: 0;
  }

  .digital-block03-tab:nth-child(3) {
    min-width: 100%;
    margin-top: 0;
  }

  .digital-block03-case-list {
    gap: 20px;
  }

  .digital-block03-case-item,
  .digital-block03-case-item.reverse {
    display: block;
    padding: 24px 18px;
  }

  .digital-block03-case-text,
  .digital-block03-case-image {
    width: 100%;
  }

  .digital-block03-case-image,
  .digital-block03-case-item.reverse .digital-block03-case-image {
    padding: 20px 0 0;
  }

  .digital-block03-case-label {
    min-width: 96px;
    height: 30px;
    font-size: 12px;
  }

  .digital-block03-case-text h4 {
    margin: 16px 0 16px;
    font-size: 24px;
    line-height: 1.45;
  }

  .digital-block03-case-text p {
    font-size: 16px;
    line-height: 1.8;
  }

  .digital-block03-empty {
    padding: 50px 16px;
  }

  .digital-block03-empty p {
    font-size: 16px;
  }

  .digital-next-product {
    padding: 40px 0 50px;
  }

  .digital-next-product-inner {
    padding: 0 4%;
    display: block;
  }

  .digital-next-product-image {
    width: 100%;
    padding-top: 0;
    margin-bottom: 100px;
  }

  .digital-next-product-image::before {
    top: 28px;
    right: -20px;
  }

  .digital-next-product-bg-text {
    left: 5px;
    bottom: -68px;
    font-size: clamp(4.5rem, 18vw, 7rem);
    line-height: 0.9;
    z-index: 0;
  }

  .digital-next-product-text {
    width: 100%;
  }

  .digital-next-product-title {
    margin-bottom: 24px;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .digital-next-product-title br,
  .digital-next-product-text p br {
    display: none;
  }

  .digital-next-product-link {
    margin-bottom: 24px;
  }

  .digital-next-product-btn {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
  }

  .digital-next-product-text p {
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.9;
  }
	
/* --------------------
50周年記念
-------------------- */
  .anniversary-block02 {
    padding: 70px 0 80px;
  }
  .anniversary-block02-heading h2 {
    display: flex;
    gap: 14px;
  }
  .anniversary-block02-heading h2 span {
    display: inline-block;
    width: auto;
    padding: 10px 14px 12px;
    font-size: 28px;
    line-height: 1.35;
    text-align: center;
  }
  .anniversary-block02-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    margin-top: 48px;
  }
  .anniversary-block03,.anniversary-block04 {padding: 80px 0 90px;}
  .anniversary-block03-heading {margin-bottom: 0px;}
  .anniversary-block03-heading h2 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 20px;

  }
  .anniversary-block04-heading h2 {margin-bottom: 30px;}
  .anniversary-block04-heading h2 span {
    font-size: 37px;
    line-height: 1.2;
  }
  .anniversary-block03-heading h3 {font-size: 20px;}
  .anniversary-timeline {margin-top: 70px;}
  .anniversary-era {
    display: block;
    padding-bottom: 80px;
  }
  .anniversary-era__line {
    left: 18px;
    transform: none;
  }
  .anniversary-era__year {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin-bottom: 34px;
    padding-left: 48px;
  }
  .anniversary-era__year::before {
    top: 19px;
    left: 18px;
    right: auto;
    width: 20px;
  }
  .anniversary-era__year::after {
    top: 15px;
    left: 14px;
    right: auto;
  }
  .anniversary-era__year h2 {
    font-size: 44px;
  }
  .anniversary-era__year h2 span {
    font-size: 22px;
  }
  .anniversary-era__col {
    padding-top: 0;
  }
  .anniversary-era__col--right {
    margin-top: 42px;
  }
  .anniversary-item {
    margin-top: 0;
  }
  .anniversary-item + .anniversary-item {
    margin-top: 34px;
  }
  .anniversary-item--left .anniversary-item__heading,
  .anniversary-item--right .anniversary-item__heading {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-left: 48px;
    padding-right: 0;
  }
  .anniversary-item__heading::before {
    content: "";
    position: absolute;
    top: 16px;
    left: 18px;
    width: 20px;
    height: 1px;
    background: #b89447;
  }
  .anniversary-item__heading::after {
    content: "";
    position: absolute;
    top: 12px;
    left: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #b89447;
  }
  .anniversary-item__heading h3 {
    font-size: 19px;
    line-height: 1.5;
    text-align: left;
  }
  .anniversary-item__card {
    margin-top: 18px;
    padding: 22px 18px;
    border-radius: 8px;
  }
  .anniversary-item__card--left,
  .anniversary-item__card--right {
    margin-left: 48px;
    margin-right: 0;
    max-width: none;
  }
    .anniversary-item__card--right {
    padding-top: 62px;
  }
  .anniversary-item__badge {
    top: -10px;
    left: -12px;
    width: 62px;
    height: 62px;
  }
  .anniversary-item__badge .ja {
    font-size: 18px;
  }
  .anniversary-item__badge .en {
    font-size: 10px;
  }
  .anniversary-item__card-inner {
    display: block;
  }
  .anniversary-item__image {
    width: 160px;
    margin: 20px auto 0;
  }
  .anniversary-item__card ul li {
    font-size: 15px;
    line-height: 1.5;
  }
  .anniversary-item--right .anniversary-item__heading::before {
      left: 18px;
  }
  .anniversary-item--right .anniversary-item__heading::after {
    left: 15px;
  }
  .anniversary-item--right .anniversary-item__heading h3
    {
        text-align: left;
    }
  .anniversary-era-2000 .anniversary-item--left .anniversary-item__heading::before,.anniversary-era-2010 .anniversary-item--left .anniversary-item__heading::before,.anniversary-era-2020 .anniversary-item--left .anniversary-item__heading::before {
      width: 20px;
  }
  .anniversary-present-heading h2 {
    font-size: 50px;
  }
  .anniversary-present-message {
    font-size: 20px !important;
  }
  .anniversary-block04-cards {
    display: block;
  }
  .anniversary-block04-card {
    width: 100%;
    padding: 40px 22px 28px;
	box-sizing:border-box;
  }
  .anniversary-block04-card + .anniversary-block04-card {
    margin-top: 24px;
  }
  .anniversary-block04-icon {
    width: 120px;
    margin-bottom: 22px;
  }
  .anniversary-block04-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
  }
  .anniversary-block04-card p {
    font-size: 16px;
    line-height: 1.85;
  }
/* 50周年記念 block05 */
  .anniversary-block05 {
    padding: 80px 0 90px;
  }
  .anniversary-block05-inner {
    max-width: 100%;
  }
  .anniversary-block05-heading {
    margin-bottom: 30px;
  }
  .anniversary-block05-heading h2 {
    font-size: 36px;
    line-height: 1.4;
  }
  .anniversary-block05-text p {
    font-size: 17px;
    line-height: 1.9;
  }
  .anniversary-block05-text p + p {
    margin-top: 26px;
  }


/* --------------------
ニュース一覧
-------------------- */
  .news-archive-block01 {
    padding: 70px 0 90px;
  }

  .news-archive-heading {
    margin-bottom: 40px;
  }

  .news-archive-heading h2 {
    font-size: 38px;
    line-height: 1.4;
  }

  .news-archive-heading p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.8;
  }

  .news-archive .news-list li a {
    grid-template-columns: 1fr;
    row-gap: 14px;
    padding: 22px 0;
    min-height: 0;
  }

  .news-archive .news-list time {
    font-size: 16px;
  }

  .news-archive .cat {
    min-width: 88px;
    height: 26px;
    font-size: 11px;
  }

  .news-archive .title {
    font-size: 16px;
    line-height: 1.7;
  }

  .news-pager {
    gap: 8px;
    margin-top: 40px;
  }

  .news-pager a,
  .news-pager span {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

/* --------------------
ニュース詳細記事
-------------------- */
.news-detail-page-block01 {
    padding: 60px 0 90px;
  }

  .news-detail-header {
    margin-bottom: 38px;
    padding-bottom: 24px;
  }

  .news-detail-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
  }

  .news-detail-meta time {
    font-size: 16px;
  }

  .news-detail-meta .cat {
    min-width: 88px;
    height: 26px;
    font-size: 11px;
  }

  .news-detail-header h1 {
    font-size: 34px;
    line-height: 1.45;
  }

  .news-detail-image {
    margin-bottom: 34px;
  }

  .news-detail-body h3 {
    margin-bottom: 18px;
    font-size: 25px;
    line-height: 1.5;
  }

  .news-detail-body p {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.9;
  }

  .news-detail-back {
    margin-top: 50px;
  }

  .news-detail-pager {
    flex-direction: column;
    gap: 12px;
  }

  .news-detail-pager-item.is-prev,
  .news-detail-pager-item.is-center,
  .news-detail-pager-item.is-next {
    max-width: 100% !important;
  }

  .news-detail-back-btn {
    height: 64px;
    padding: 0 56px;
    font-size: 16px;
  }

  .news-detail-back-btn img {
    right: 18px;
    width: 18px;
    height: auto;
  }

  .news-detail-pager-item.is-prev .news-detail-back-btn {
    padding: 0 24px 0 56px;
  }

  .news-detail-pager-item.is-prev .news-detail-back-btn img {
    left: 18px;
    right: auto;
  }

  .news-detail-pager-item.is-center .news-detail-back-btn {
    padding: 0 24px;
  }

/* --------------------
会社概要
-------------------- */
  .company-block01 {
    padding: 70px 0 90px;
  }

  .company-block01-inner {
    display: block;
  }

  .company-block01-image {
    max-width: 100%;
    margin: 0 0 32px;
    text-align: center;
  }
  .company-block01-image img {
    margin: 0 auto;
  }
  .company-block01-text {
    padding: 28px 20px;
  }

  .company-block01-text::before {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

  .company-block01-text p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.9;
  }

  .company-block01-text p br {
    display: none;
  }

  .company-block01-text::before {
  top: 0px;
  left: 20%;
  right: calc(50% - 50vw);
  height: calc(100% + 20px);
  background: #f0f3f5;
  z-index: 0;
}

 .company-block02 {
    padding: 70px 0 90px;
  }

  .company-block02-heading {
    margin-bottom: 40px;
  }

  .company-block02-heading h2 {
    font-size: 38px;
    line-height: 1.4;
  }

  .company-block02-row {
    grid-template-columns: 1fr;
  }

  .company-block02-row dt,
  .company-block02-row dd {
    padding: 16px 0;
    font-size: 16px;
    line-height: 1.8;
  }

  .company-block02-row dt {
    padding-right: 0;
    border-top: 2px solid #0d5999;
  }

  .company-block02-row dd {
    padding-left: 0;
    padding-top: 0;
  }

  .company-block03 {
    padding: 70px 0 90px;
  }

  .company-block03-heading {
    margin-bottom: 40px;
  }

  .company-block03-heading h2 {
    font-size: 38px;
    line-height: 1.4;
    letter-spacing: 0.06em;
  }

  .company-block03-row {
    grid-template-columns: 1fr;
  }

  .company-block03-row dt,
  .company-block03-row dd {
    padding: 16px 0;
    font-size: 16px;
    line-height: 1.8;
  }

  .company-block03-row dt {
    padding-right: 0;
    border-top: 2px solid #0d5999;
  }

  .company-block03-row dd {
    padding-top: 0;
    padding-left: 0;
    gap: 10px 12px;
  }

  .company-block03-tag {
    min-width: 64px;
    height: 28px;
    padding: 0 12px;
    font-size: 12px;
  }

/* --------------------
問い合わせ
-------------------- */

.contact-page-block01 {
  padding: 90px 0 140px;
}

.contact-page-heading {
  margin-bottom: 60px;
  text-align: center;
}

.contact-page-heading h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  color: #0d5999;
  letter-spacing: 0.04em;
}

.contact-page-heading p {
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.8;
  color: #282828;
  letter-spacing: 0.03em;
}

.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form-row {
  margin-bottom: 26px;
}

.contact-form-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.contact-form-label label,
.contact-form-label span:first-child {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #282828;
}

.required,
.optional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 26px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.required {
  background: #ff3c00;
}

.optional {
  background: #b7b7b7;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: none;
  background: #edf4f8;
  color: #282828;
  font-size: 18px;
  line-height: 1.6;
  box-sizing: border-box;
}

.contact-form-field input {
  height: 54px;
  padding: 0 16px;
}

.contact-form-field textarea {
  min-height: 260px;
  padding: 16px;
  resize: vertical;
}

.contact-check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}

.contact-check,
.contact-policy-check {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.contact-check input,
.contact-policy-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-check .check-box,
.contact-policy-check .check-box {
  width: 26px;
  height: 26px;
  background: #edf4f8;
  flex-shrink: 0;
  position: relative;
}

.contact-check input:checked + .check-box::after,
.contact-policy-check input:checked + .check-box::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 12px;
  border-right: 2px solid #0d5999;
  border-bottom: 2px solid #0d5999;
  transform: rotate(45deg);
}

.contact-check .check-text,
.contact-policy-check .check-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  color: #282828;
}

.contact-form-policy {
  margin-top: 40px;
}

.contact-form-policy-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #282828;
}

.contact-form-policy-box {
  height: 160px;
  padding: 18px 20px;
  overflow-y: auto;
  border: 1px solid #bcbcbc;
  background: #ffffff;
  font-size: 15px;
  line-height: 2;
  color: #282828;
  box-sizing: border-box;
}

.contact-policy-check {
  justify-content: center;
  margin-top: 26px;
}

.contact-form-submit {
  margin-top: 34px;
  text-align: center;
}

.contact-form-submit-btn {
    width: 100%;
    max-width: 100%;
    height: 64px;
    padding: 0 56px 0 20px;
    font-size: 16px;
	box-sizing:border-box;
}

.contact-form-submit-btn span {
  display: block;
  width: 100%;
  text-align: center;
}

.contact-form-submit-btn img {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: block;
  width: 26px;
  height: 46px;
}

/* --------------------
共通　問い合わせ・リクルート
-------------------- */
 .cta-links {
    display: block;
    height: auto;
  }

  .cta-links h2 {
    font-size: 52px;
  }

  .cta-links .sub {
    margin-top: 14px;
    font-size: 20px;
  }

  .cta-links .desc {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.8;
  }

  .cta-links .arrow {
    width: 42px;
    height: 42px;
  }

  .cta-links .arrow::before {
    width: 42px;
  }

  .cta-links .arrow::after {
    width: 22px;
    top: calc(50% - 8px);
  }
  .cta-links .box .cta-inner {
    min-height: 220px;
    padding: 34px 28px;
  }
	
/* --------------------
footer
-------------------- */
  .footer .inner {
    min-height: auto;
    display: block;
    padding: 54px 28px 0px;
  }

  .footer .info {
    width: 100%;
  }

  .footer .logo img {
    max-width: 300px;
  }

  .footer .address {
    margin-top: 28px;
	color: #fff;
    text-decoration: none;
  }
  .footer .address a,
  .footer .address a[href^="tel:"] {
    color: #fff;
    text-decoration: none;
  }
  .footer .address p {
    font-size: 16px;
    line-height: 1.7;
  }

  .footer .nav {
    display: block;
    margin-top: 32px;
    padding-bottom: 30px;
  }

  .footer .col {
    min-width: 0;
    margin-bottom: 28px;
  }

  .footer .col:last-child {
    margin-bottom: 0;
  }

  .footer .ttl {
    margin-bottom: 0px;
    font-size: 17px;
  }
  .footer ul { margin-bottom: 35px;}
  .footer li a {
    font-size: 16px;
  }

  .footer .copy {
    height: auto;
    min-height: 78px;
    padding: 20px 28px;
  }

  .footer .copy p {
    font-size: 14px;
    line-height: 1.6;
  }

}

