/********** Template CSS **********/
:root {
    --primary: #004aa0;
    --secondary: #555;
    --light: #F8F9FA;
    --dark: #182333;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-white {
  color: var(--white)!important;
}
.ft-07 {
  font-size: 0.7rem;
}
.ft-08 {
  font-size: 0.8rem;
}
.ft-09 {
  font-size: 0.9rem;
}
.ft-10 {
  font-size: 1.0rem;
}
.ft-15 {
  font-size: 1.5rem;
}
.ft-20 {
  font-size: 2.0rem;
}
.ft-25 {
  font-size: 2.5rem;
}
.ft-30 {
  font-size: 3.0rem;
}
.ft-40 {
  font-size: 4.0rem;
}
.ft-50 {
  font-size: 5.0rem;
}
.mt-50 {
	margin-top: 50px;
}
.mt-100 {
	margin-top: 100px;
}
.mt-150 {
	margin-top: 150px;
}
.mt-200 {
	margin-top: 200px;
}
.mb-50 {
	margin-bottom: 50px;
}
.mb-100 {
	margin-bottom: 100px;
}
.mb-150 {
	margin-bottom: 150px;
}
.mb-200 {
	margin-bottom: 200px;
}
.pt-10 {
	padding-top: 10px;
}
.pt-50 {
	padding-top: 50px;
}
.pt-100 {
	padding-top: 100px;
}
.pt-150 {
	padding-top: 150px;
}
.pb-200 {
	padding-top: 200px;
}
.pb-50 {
	padding-bottom: 50px;
}
.pb-100 {
	padding-bottom: 100px;
}
.pb-150 {
	padding-bottom: 150px;
}
.pb-200 {
	padding-bottom: 200px;
}
.line-height-0 {
	line-height: 0;
}
.bg-light {
    background-color: #f8f9fa;
}
.bg-lightblue {
    background-color: #e5edf8;
}
.bg-blue {
    background-color: #004aa0;
}
.bg-gradient-blue {
    background: linear-gradient(135deg, #2C3E50 0%, #4A90E2 100%);
    color: #fff;
}
.bg-coler001 {
  background-color: #001f43;
}




/* まず全て非表示にしておく */
.pc,
.tab,
.sp,
.sp-small {
  display: none;
}

/* ===== PC（1025px以上） ===== */
@media screen and (min-width: 1025px) {
  .pc {
    display: block;
  }
}

/* ===== タブレット（768px〜1024px） ===== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .tab {
    display: block;
  }
}

/* ===== スマホ（501px〜767px） ===== */
@media screen and (min-width: 501px) and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* ===== 小型スマホ（500px以下） ===== */
@media screen and (max-width: 500px) {
  .sp-small {
    display: block;
  }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


.logo {
  width: 40px;
  margin:0 10px 0 0;
}
 @media (max-width: 768px) {
   .logo {
     width: 25px;
     margin:0 5px 0 0;
   }
 }
.logo-txt {
	font-family: "Poppins", sans-serif;
	font-weight: 600;
	font-size: calc(1.0rem + 0.9vw)
}
@media (min-width: 1200px) {
	.logo-txt {
		font-size: 1.8rem
	}
}

.bgimg001 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative; }
  .bgimg001:before {
    content: "";
    background-color: rgba(0, 74, 160, 0.4);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1; }
.bgimg002 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative; }
  .bgimg002:before {
    content: "";
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1; }
.z-index10 {
  position: relative;
  z-index: 10;
}
.txt001 {
  color: var(--white);
  text-align: center;
}
.txt002 {
  padding: 0 3rem;
  text-align: justify;
}
 @media (max-width: 768px) {
   .txt002 {
     padding: 0 10px 20px;
   }
 }
 .btn-area {
     text-align: center;
     padding: 10px;
 }
 .btn-area p {
     width: fit-content;
     margin: 10px auto 5px;
 }
 .btn-area a {
   border: solid 1px var(--primary);
   font-size: 1.0rem;
   color: var(--primary);
   position: relative;
   overflow: hidden;
   text-decoration: none;
   display: inline-block;
   text-align: center;
   outline: none;
   background: #fff;
   box-sizing: border-box;
   line-height: 60px;
   border-radius: 50px;
   width: 250px;
   transition: 0.7s;
 }
 @media screen and ( max-width : 550px ) {
 .btn-area a {
 /**max-height: 42px;**/
 font-size: 0.9rem;
 }
 }
 .btn-area-001 span {
   position: relative;
   z-index: 3;
   transition: 0.7s;
 }
 .btn-area-001:hover span{
   color:#fff;
   transition: 0.7s;
 }
 .btn-area .bgleft:before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   z-index: 2;
   background: var(--primary);
   width: 100%;
   height: 100%;
   transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
   transform: scale(0, 1);
   transform-origin: right top;
 }
 .btn-area .bgleft:hover:before{
   transform-origin:left top;
   transform:scale(1, 1);
 }
 .btn-area .text {
   position: relative;
   display: inline-flex;
 }
 .btn-area-001 i {
   font-size: 1.5rem;
   margin-left: 10px;
 }
.ft-menu {
  font-size:12px;
}
.mb-150 {
  margin-bottom: 150px;
}
#aboutus h3 {
  font-size: 1.3rem;
  padding: 0 3rem 10px;
  color: var(--primary);
}
 @media screen and ( max-width : 768px ) {
   #aboutus h3 {
     font-size: 1.2rem;
     padding: 0 10px 10px;
   }
 }
.img-posi {
  object-fit: cover;
  object-position: left center;
  border-radius: 8px;
}
.img-posi001 {
  max-width: 400px;
  z-index: 0;
  object-fit: cover;
  object-position: left center;
  border-radius: 8px;
}
.img-posi002 {
  margin: -50% 0 0 30%;
  width: 300px;
  z-index: 100;
  border-radius: 8px;
}
.img-posi003 {
  max-width: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}
.img-posi004 {
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}


/* ============================================
   ナビゲーション
============================================ */

.nav a.active {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   パンくずリスト
============================================ */

.breadcrumb {
    padding: 0;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #357ABD;
}

.breadcrumb span {
    margin: 0;
    color: #999;
}

/* ============================================
   ページ共通セクション設定
============================================ */
.container-fluid h1 {
    font-size: calc(1.8rem + 1.5vw);
}

.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.section-title.light {
    color: #fff;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-top: 15px;
}

.section-subtitle.light {
    color: rgba(255,255,255,0.9);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #E74C3C, #C0392B);
    margin: 0 auto;
    border-radius: 2px;
}

.title-underline.light {
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
}

.c-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-section {
    background: #fff;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-title {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 17px;
    line-height: 2.2;
    color: #555;
}

.sub-ttl001 {
  color: var(--primary);
  font-size: 1.4rem;
  border-bottom: dotted 2px var(--primary);
  padding: 0 0 5px 0;
  margin: 0 0 15px 0;
}






/* ============================================
   アニメーション定義
============================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(74, 144, 226, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(74, 144, 226, 0);
    }
}

/* ============================================
   基本アニメーションクラス
============================================ */

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.fade-in-up.delay-1 {
    animation-delay: 0.3s;
}
.fade-in-up.delay-2 {
    animation-delay: 0.6s;
}

.pulse-animation {
    animation: pulse 2s infinite;
    border-radius: 8px;
}

/* スクロールアニメーション用クラス */
.scroll-fade-in,
.scroll-slide-left,
.scroll-slide-right,
.scroll-slide-up,
.scroll-slide-in,
.scroll-zoom-in {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
}

.scroll-slide-left {
    transform: translateX(-50px);
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-right {
    transform: translateX(50px);
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-slide-up {
    transform: translateY(50px);
}

.scroll-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-in {
    transform: translateY(30px);
}

.scroll-slide-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-zoom-in {
    transform: scale(0.95);
}

.scroll-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* 遅延アニメーション */
.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}
.delay-4 {
    transition-delay: 0.8s;
}


/* ============================================
   トップページ
============================================ */

/*** Header ***/
.carousel-caption1,.carousel-caption2,.carousel-caption3,.carousel-caption4,.carousel-caption5 {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
    height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
}
@media (max-width: 768px) {
  .carousel-caption1,.carousel-caption2,.carousel-caption3,.carousel-caption4,.carousel-caption5 {
      height: 85vh;
  }
}
.carousel-caption1 {
    background-image: url(../img/top-fv001.webp);
    background-position: center center;
}
.carousel-caption2 {
    background-image: url(../img/top-fv002.webp);
    background-position: center center;
}
.carousel-caption3 {
    background-image: url(../img/top-fv003.webp);
    background-position: center center;
}
.carousel-caption4 {
    background-image: url(../img/top-fv004.webp);
    background-position: center center;
}
.carousel-caption5 {
    background-image: url(../img/top-fv005.webp);
    background-position: center center;
}
@media (max-width: 768px) {
  .carousel-caption4 {
      background-image: url(../img/top-fv004-sp.webp);
      background-position: center center;
  }
  .carousel-caption5 {
      background-image: url(../img/top-fv005-sp.webp);
      background-position: center center;
  }
  .carousel-caption2 {
       background-position: 61% 70%;
      background-size: inherit;
  }
}
.catch001,.catch002,.catch003,.catch004,.catch005 {
  text-align: left;
  text-shadow:  1px  1px 0 #fff, -1px  1px 10px #fff, 1px -1px 10px #fff, -1px -1px 10px #fff,
    0px  1px 10px #fff,  0px -1px 10px #fff, 1px  0px 10px #fff, -1px  0px 10px #fff;
    border-left: solid 6px var(--primary);
    padding: 0 0 15px 30px;
}
@media (max-width: 768px) {
  .catch001 {
    text-align: center;
    border-left: none;
    padding: 0 0 0 0;
  }
  .catch002 {
    text-align: center;
    border-left: none;
    padding: 0 0 0 0.5rem;
  }
  .catch003 {
    text-align: center;
    border-left: none;
    padding: 150px 0 0 0;
  }
  .catch004 {
    text-align: center;
    border-left: none;
    padding: 0 0 0 0;
  }
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 90vh;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .55);
}

.facts-overlay .display-1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px #307fdb;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500; /* 少し太め */
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}



/*** Footer ***/

.footer {
    color: #aaa;
}

.footer .btn.btn-link {
    display: inline-flex;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #aaa;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    min-width: 150px;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}
.footer .tel a {
    color: #aaa;
	transition: 0.3s;
}

.footer .tel a:hover {
    color: #fff;
	transition: 0.3s;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.display-2 span {
	font-size: 2.5rem;
}

@media (max-width: 768px) {
  .display-2 span {
  	font-size: calc(0.8rem + 3.5vw);
  }
}







.subheading {
  color: #3370b8;
  font-size: 1.0rem;
  text-align: center;
  margin: 120px auto 10px;
}
.heading {
  color: #333;
  font-size: 2.0rem;
  text-align: center;
  margin: 0px auto 50px;
    position: relative;
    padding: 0.5em 2em 0.7em;
    border-top: solid 2px #ccc;
    border-bottom: solid 2px #ccc;
	width: fit-content;
  font-family: serif;
}
.heading:before, .heading:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 2px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: #ccc;
}
.heading:before {left: 10px;}
.heading:after {right: 10px;}
@media (max-width: 768px) {
  .heading {
    color: #333;
    font-size: 1.7rem;
    padding: 0.5em 0.5em 0.7em;
    width: 100%;
  }
}
.heading p {
    margin: 0;
	padding: 3%;
	font-size: 1.2rem;
}
.subheading-white {
  color: var(--white);
  font-size: 1.0rem;
  text-align: center;
  margin: 100px auto 10px;
}
.heading-white {
  color: var(--white);
  font-size: 2.0rem;
  text-align: center;
  margin: 0px auto 50px;
    position: relative;
    padding: 0.5em 2em 0.7em;
    border-top: solid 1px var(--white);
    border-bottom: solid 1px var(--white);
	width: fit-content;
  font-family: serif;
}
.heading-white:before, .heading-white:after{
    content: '';
    position: absolute;
    top: -10px;
    width: 1px;
    height: -webkit-calc(100% + 20px);
    height: calc(100% + 20px);
    background-color: var(--white);
}
.heading-white:before {left: 10px;}
.heading-white:after {right: 10px;}
@media (max-width: 768px) {
  .heading-white {
    color: var(--white);
    font-size: 1.7rem;
    padding: 0.5em 0.5em 0.7em;
    width: calc(100% - 1.0em);
  }
}
.heading-white p {
    margin: 0;
	padding: 3%;
	font-size: 1.2rem;
}

.news-ttl {
  border-bottom: solid 1px #bfbfbf;
  padding: 10px 15px 10px;
  margin: 0 auto 15px ;
  text-align: left;
  max-width: 800px;
}

.gallery-slider {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    will-change: transform;
}

.gallery-track a:link {
      margin-right: 30px ;
}

.gallery-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50%));
    }
}

.gallery-item {
    min-width: 400px;
    margin-right: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background-color: var(--white);
    transition: transform 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
	display: block;
}

.gallery-caption {
    padding: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.btn001 {
  display: inline-block;
  width: 250px;
  text-align: center;
  text-decoration: none;
  line-height: 60px;
  outline: none;
  color: var(--primary);
  background-color: #fff;
  position: relative;
  border: 1px solid  var(--primary);
  transition: color 0.5s ease;
  border-radius: 50px;
}
.btn001:hover {
  color: #fff;
}
.btn001:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn001::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background:  var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.5s;
  transition-property: transform;
  border-radius: 50px;
}
.text {
  position: relative;
  display: inline-flex;
}
.btn001 i {
  font-size: 1.5rem;
  margin-left: 10px;
}
.c-point {
     padding: 50px 0;
     max-width: 1200px;
     margin: 0 auto;
 }

 .inner {
     padding: 0 20px;
 }
@media (max-width: 768px) {
  .inner {
      padding: 0;
  }
}
 .c_ttlArea {
     margin-bottom: 40px;
 }

 .c_ttlArea h2 {
     writing-mode: vertical-rl;
     font-size: 20px;
     line-height: 1.8;
     letter-spacing: 0.1em;
     font-weight: 400;
     margin: 0;
     height: 120px;
     display: inline-block;
     text-orientation: upright;
 }

 .c-point__box {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .c-point__box li {
     display: flex;
     align-items: stretch;
     justify-content: space-between;
     margin-bottom: 0;
     background-color: #fff;
 }

 /* 偶数番目のアイテムは左右反転 */
 .c-point__box li:nth-child(even) {
     flex-direction: row-reverse;
 }

 .c-point__txt {
     flex: 1;
     padding: 60px 50px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .c-point__txt h3 {
     font-size: 19.89px;
     color: var(--primary);
     line-height: 1.8;
     font-weight: 400;
     margin: 0 0 15px 0;
 }

 .c-point__txt p {
     font-size: 16px;
     line-height: 1.8;
     margin: 0;
 }

 .c-point__img {
     flex: 1;
     line-height: 0;
 }

 .c-point__img img {
     width: 100%;
     height: auto;
     display: block;
 }

 /* ボタンのスタイル */
 .c-btn-area {
     margin-top: 25px;
 }

 .c-btn {
     display: block;
     width: 300px;
     padding: 12px 10px;
     background: var(--btn-gradient);
     color: #fff;
     text-decoration: none;
     text-align: center;
     font-size: 17px;
     transition: opacity 0.3s;
 }

 .c-btn:hover {
     opacity: 0.8;
 }

 /* レスポンシブ対応 */
 @media (max-width: 768px) {
     .c-point__box li,
     .c-point__box li:nth-child(even) {
         flex-direction: column-reverse;
     }
     .c-point__txt {
         padding: 30px 10px;
     }
     .c-btn {
         width: 100%;
     }
 }




/* 鉄筋工事部ページ専用CSS */

/* ============================================
   ページヒーロー
============================================ */
.page-construction-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/construction-main-bg.webp) center center no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(50px + 5vw) 0;
    color: var(--white);
    margin-bottom: 15px;
}


/* ============================================
   サービスフロー
============================================ */

.flow-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.flow-item {
    width: 240px;
    padding: 30px 20px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    margin-bottom: 30px;
}
 @media screen and ( max-width : 768px ) {
   .flow-item {
       margin-bottom: 0;
   }
 }
.flow-item p {
  text-align: left;
}
.flow-item.visible {
    opacity: 1;
}

.flow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #004aa0, #388eba);
}
.flow-number {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #004aa0, #388eba);
    color: #fff;
    font-size: 11px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.flow-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.flow-icon img {
  filter: brightness(0) saturate(100%) invert(35%);
}
.flow-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 12px;
}

.flow-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.flow-arrow {
    color: var(--primary);
    font-size: 28px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.flow-arrow.visible {
    opacity: 1;
}

/* ============================================
   技術力セクション
============================================ */

.c-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.c-card {
    padding: 300px 35px 10px 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.c-card-img1 {
  background: linear-gradient(rgba(0,74,160,0.5), rgba(0,74,160,0.5)),url(../img/construction-img002.webp) no-repeat;
  background-position: bottom;
  background-size: cover;
}
.c-card-img2 {
  background: linear-gradient(rgba(0,74,160,0.5), rgba(0,74,160,0.5)),url(../img/construction-img003.webp) no-repeat;
  background-position: bottom;
  background-size: cover;
}
.c-card-img3 {
  background: linear-gradient(rgba(0,74,160,0.5), rgba(0,74,160,0.5)),url(../img/construction-img004.webp) no-repeat;
  background-position: bottom;
  background-size: cover;
}
.c-card-img4 {
  background: linear-gradient(rgba(0,74,160,0.5), rgba(0,74,160,0.5)),url(../img/construction-img005.webp) no-repeat;
  background-position: bottom;
  background-size: cover;
}
.tech-icon-wrapper {
    margin-bottom: 25px;
}
.c-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    padding: 15px 15px 5px;
    text-align: left;
    background: #fff;
    margin: 0;
}

.c-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    background: #fff;
    padding: 5px 15px 15px;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li {
    font-size: 14px;
    color: #555;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E74C3C;
    font-weight: 700;
    font-size: 16px;
}

/* ============================================
   安全計画セクション
============================================ */
.bg-lightgreen {
    background-color: #f1fbf2;
}

.safety-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.safety-description {
    font-size: 17px;
    line-height: 2.2;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.safety-card {
    background: rgba(255,255,255,1);
    padding: 40px 35px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.safety-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: solid 1px #4bc44f;
}
.safety-icon svg {
    width: 36px;
    height: 36px;
    color: #4bc44f;
}
.safety-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #4bc44f;
    margin-bottom: 15px;
    text-align: center;
}

.safety-card p {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.safety-detail {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #4bc44f;
}

.detail-item {
    font-size: 14px;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.detail-item::before {
    content: '✓';
    position: absolute;
    left: 5px;
    font-weight: 700;
    color: rgba(255,0,0,1);
}

/* 安全実績 */
.safety-achievement {
    margin-top: 80px;
    padding: 50px;
}

.achievement-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.achievement-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-unit {
    font-size: 14px;
}

/* ============================================
   施工実績セクション
============================================ */

.achievement-categories {
    margin-top: 50px;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid #E74C3C;
    border-radius: 50px;
    color: #E74C3C;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: #E74C3C;
    color: #fff;
}

.tab-button.active {
    background: #E74C3C;
    color: #fff;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.achievement-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    opacity: 1;
}

.achievement-item.hidden {
    display: none;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(231, 76, 60, 0.2);
}

.achievement-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-item:hover .achievement-image img {
    transform: scale(1.1);
}

.achievement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 16px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.achievement-content {
    padding: 30px;
}

.achievement-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.achievement-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 13px;
    color: #666;
}

.achievement-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.achievement-specs {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.spec-item {
    font-size: 13px;
    color: #E74C3C;
    font-weight: 600;
}

/* 実績統計 */
.achievement-stats-section {
    margin-top: 80px;
    padding: 60px 50px;
    background: linear-gradient(135deg, #f8f9fa, #e8eef3);
    border-radius: 10px;
}

.stats-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(231, 76, 60, 0.2);
}

.stats-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    color: #E74C3C;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}


/* ============================================
   レスポンシブ対応
============================================ */

@media (max-width: 1024px) {
    .c-grid {
        grid-template-columns: 1fr;
    }
    .safety-grid {
        grid-template-columns: 1fr;
    }

    .achievement-stats {
        flex-direction: column;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero h2 {
        font-size: 18px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .flow-timeline {
        flex-direction: column;
        align-items: center;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}


.heading-rebar {
  position: relative;
  font-weight: bold;
  padding: 12px 0;
  font-size: 24px;
}

.heading-rebar::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    #555 0px,
    #555 14px,
    #777 14px,
    #777 18px
  );
}


.heading-grid-rebar{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  font-size:26px;
  font-weight:bold;
  color:#0d3c91;
  margin: 0 auto 20px;
  max-width: 600px;
}

/* 左右エリア */
.heading-grid-rebar::before,
.heading-grid-rebar::after{
  content:"";
  flex:1;
  height:24px;
  min-width: 30px;
  background:
    repeating-linear-gradient(
      90deg,
      #ccc 0,
      #ccc 1px,
      transparent 1px,
      transparent 6px
    );
}

/* 横線だけ追加（上下枠にならない位置指定） */
.heading-grid-rebar span{
  position:relative;
  padding:0 6px;
}

.heading-grid-rebar span::before,
.heading-grid-rebar span::after{
  content:"";
  position:absolute;
  left:-100vw;
  right:-100vw;
  height:1px;
  background:#2a6bdb;
}

.heading-grid-rebar span::before{ top:-8px; }
.heading-grid-rebar span::after{ bottom:-8px; }
.heading-grid-rebar span{
  position:relative;
  padding:0 6px;
}

.heading-grid-rebar span{
  position:relative;
  padding:0 6px;
}

/* 4本ライン生成 */
.heading-grid-rebar span::before{
  content:"";
  position:absolute;
  left:-100vw;
  right:-100vw;
  top:-14px;
  height:28px;
  background:
    linear-gradient(#2a6bdb,#2a6bdb) top,          /* 外上 */
    linear-gradient(#2a6bdb,#2a6bdb) 0 33%,        /* 内上 */
    linear-gradient(#2a6bdb,#2a6bdb) 0 66%,        /* 内下 */
    linear-gradient(#2a6bdb,#2a6bdb) bottom;       /* 外下 */
  background-size:100% 1px;
  background-repeat:no-repeat;
}
.heading-bars{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:20px;
  font-size:24px;
  font-weight:bold;
}

/* 左右バー共通 */
.heading-bars::before,
.heading-bars::after{
  content:"";
  width:120px;
  height:30px;

  background:
    linear-gradient(#ccc,#ccc) 0 0,
    linear-gradient(#ccc,#ccc) 0 25%,
    linear-gradient(#ccc,#ccc) 0 50%,
    linear-gradient(#ccc,#ccc) 0 75%,
    linear-gradient(#ccc,#ccc) 0 100%;

  background-size:100% 1px;
  background-repeat:no-repeat;
}
.heading-vertical-line{
  position:relative;
  display:inline-block;
  font-size:24px;
  font-weight:bold;
  padding-top:16px; /* 線のスペース */
}

/* 上に伸びる縦線 */
.heading-vertical-line::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:2px;
  height:14px;
  background:#ccc;
}
.heading-vertical-bars{
  position:relative;
  display:inline-block;
  font-size:24px;
  font-weight:bold;
  color:#0d3c91;        /* ←文字色を青 */
  padding-bottom:22px;  /* ←下にスペース確保 */
}

/* 下の縦ライン帯 */
.heading-vertical-bars::after{
  content:"";
  position:absolute;
  bottom:0;
  left:50%;
  transform:translateX(-50%);
  width:150px;
  height:18px;

  background:
    repeating-linear-gradient(
      90deg,
      #ccc 0px,
      #ccc 2px,
      transparent 2px,
      transparent 8px
    );
}
.page-ttl {
  font-size: 2.0em;
  text-align: left;
  margin-bottom: 30px;
}
@media (max-width: 500px) {
	.page-ttl {
	  font-size: 1.8em;
	}
}
.sub-ttl {
  color: var(--primary);
  font-size: 1.0rem;
  text-align: left;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sub-ttl-white {
  color: #fff;
  font-size: 1.0rem;
  text-align: left;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.grid-svg {
  margin-right: 10px;
  width:43px;   /* 横サイズ */
  height:22px;  /* 縦サイズ */
}
.grid-svg-white {
  margin-right: 10px;
  width:43px;   /* 横サイズ */
  height:22px;  /* 縦サイズ */
  color: #fff!important;
}



/* 鉄筋生産部ページ専用CSS */

/* ============================================
   ページヒーロー
============================================ */
.page-processing-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/processing-main-bg.webp) center center no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(50px + 5vw) 0;
    color: var(--white);
    margin-bottom: 15px;
}
.p-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media (max-width: 1024px) {
    .p-grid {
        grid-template-columns: 1fr;
    }
  }
.p-card {
    padding: 300px 35px 20px 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.p-card-img1 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img002.webp)  no-repeat;
  background-position: bottom;
  background-size: cover;
}
.p-card-img2 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img003.webp) no-repeat;
  background-position: bottom;
  background-size: cover;
}
.p-card-img3 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img004.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
.p-card-img4 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img005.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
.p-card-img5 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img006.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
.p-card-img6 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img007.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
.p-card-img7 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img008.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
.p-card-img8 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img009.webp) no-repeat;
  background-position: 20% 50%;
  background-size: cover;
}
.p-card-img9 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/processing-img010.webp) no-repeat;
  background-position: 20% 50%;
  background-size: cover;
}
.p-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    padding: 15px;
    text-align: left;
    background: #fff;
    margin: 0;
}

.p-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    background: #fff;
    padding: 5px 15px 15px;
}


/* ページヒーロー
.page-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #2C3E50 0%, #4A90E2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23ffffff" opacity="0.05" width="100%" height="100%"/><path fill="%23ffffff" opacity="0.03" d="M0,100 L300,200 L600,150 L900,250 L1200,100 L1200,400 L0,400 Z"/></svg>');
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-hero h2 {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}


.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.section-title.light {
    color: #fff;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #5DADE2);
    margin: 0 auto;
    border-radius: 2px;
}

.title-underline.light {
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.7));
} */



/* 生産体制紹介 */
.production-intro {
    background: #fff;
}

.lead-text {
    font-size: 17px;
    line-height: 2.2;
    color: #555;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* プロダクトライン */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4A90E2, #5DADE2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(74, 144, 226, 0.2);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4A90E2, #5DADE2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #fff;
    transition: all 0.4s ease;
}

.product-card:hover .icon-circle {
    transform: rotateY(360deg);
}

.icon-circle svg {
    width: 40px;
    height: 40px;
}

.product-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

/* 工場ギャラリー */
.factory-gallery {
    background: #fff;
}

.gallery-row {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.gallery-large {
    flex: 1.5;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-large:hover img {
    transform: scale(1.05);
}

.gallery-small-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.gallery-small {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.gallery-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-small:hover img {
    transform: scale(1.05);
}

.gallery-txt {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-large:hover .gallery-txt,
.gallery-small:hover .gallery-txt {
    transform: translateY(0);
}

.gallery-txt p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
}

/* T・Hフープセクション */
.th-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 50px;
}

.th-text {
    flex: 1;
}

.feature-box {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #5DADE2;
    backdrop-filter: blur(10px);
}

.feature-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #5DADE2;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin: 0;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(93, 173, 226, 0.3), rgba(74, 144, 226, 0.3));
    padding: 30px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.3);
}

.highlight-box p {
    font-size: 16px;
    line-height: 2;
    color: #fff;
    margin: 0;
}

.highlight-box strong {
    color: #5DADE2;
    font-weight: 700;
}

.th-specs {
    flex: 1;
}

.specs-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 30px;
}

.specs-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4A90E2;
}

.specs-list {
    list-style: none;
    margin-bottom: 25px;
}

.specs-list li {
    font-size: 15px;
    color: #555;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.specs-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: 700;
}

.specs-diagram {
    margin: 25px 0;
}

.specs-diagram img {
    width: 100%;
    border-radius: 8px;
}

.specs-table h5 {
    font-size: 18px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 15px;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.specs-table th,
.specs-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
    font-size: 14px;
}

.specs-table th {
    background: #4A90E2;
    color: #fff;
    font-weight: 600;
}

.specs-table td {
    background: #f8f9fa;
    color: #555;
}

.table-note {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.product-images img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* ネジコン */
.neji-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.neji-text {
    flex: 1;
}

.neji-image {
    flex: 1;
}

.neji-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.description {
    font-size: 16px;
    line-height: 2;
    color: #555;
}

.description.light {
    color: rgba(255,255,255,0.95);
}

/* JUST A TIME */
.just-time-content {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1000px;
    margin: 70px auto 0;
}

.timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 20px 50px 10px;
}
/* 左上「 */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;   /* 横線の長さ */
  height: 40px;  /* 縦線の長さ */
  border-top: 5px solid #ccc;
  border-left: 5px solid #ccc;
}

/* 右下 」 */
.timeline-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
  border-bottom: 5px solid #ccc;
  border-right: 5px solid #ccc;
}
.timeline-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #4A90E2, #5DADE2);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.4s ease;
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* 検査体制 */
.inspection-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.inspection-text {
    flex: 1;
}

.inspection-image {
    margin-top: 30px;
}

.inspection-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.image-caption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

.inspection-system {
    flex: 1;
}

.system-card img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* 育成と教育 */
.education-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.education-text {
    flex: 1.5;
}

.certificate-display {
    flex: 1;
}

.certificate-display img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}


/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .th-content,
    .neji-content,
    .inspection-content,
    .education-content {
        flex-direction: column;
    }

    .gallery-row {
        flex-direction: column;
    }

    .timeline {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-hero h2 {
        font-size: 18px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-content h2 {
        font-size: 28px;
    }
}

.spec-table {
  max-width: 800px;
  margin: 40px auto;
}
.spec-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}
.spec-table th {
  width: 30%;
  background-color: #f4f4f4;
  text-align: left;
  padding: 20px;
  font-weight: bold;
  border-right: 1px solid #ccc;
  vertical-align: top;
}
.spec-table td {
  padding: 20px;
  line-height: 1.8;
}
.spec-table tr:not(:last-child) th,
.spec-table tr:not(:last-child) td {
  border-bottom: 1px solid #ccc;
}



/* ================================================
   品質管理ページ専用CSS
   Technology.htmlと同じ構造で作成
================================================ */


/* ----- QMS Section ----- */
.qms-section {
    background: #fff;
}

.qms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.qms-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.qms-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border: solid 1px var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 36px;
}

.qms-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.qms-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
    text-align: left;
}

.qms-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item002 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 5px;
}

.detail-item002 .label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.detail-item002 .value {
    font-size: 14px;
    color: #2C3E50;
    font-weight: 600;
}


/* ----- Qualification Section ----- */
.qualification-section {
    margin-top: 80px;
    padding: 50px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.qualification-title {
    font-size: 28px;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 40px;
}

.qualification-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.qualification-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.qualification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.qualification-item i {
    font-size: 32px;
    color: #4A90E2;
}

.qualification-item span {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

/* ----- Training Statistics ----- */
.training-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease;
}

.stat-item .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* ----- QA Process Section ----- */
.qa-process-section {
    background: linear-gradient(135deg, #004aa0, #388eba);
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 40px 0;
}

.process-step {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #E3F2FD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4A90E2;
    font-size: 32px;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.step-checks {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.step-checks li {
    font-size: 13px;
    color: #333;
    padding-left: 20px;
    position: relative;
}

.step-checks li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4A90E2;
    font-weight: 700;
}

/* ----- Equipment Section ----- */
.equipment-section {
    background: #fff;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.equipment-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.equipment-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.equipment-image {
    height: 250px;
    overflow: hidden;
}

.equipment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-image img {
    transform: scale(1.1);
}

.equipment-content {
    padding: 30px;
}

.equipment-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.equipment-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.equipment-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.spec-item .label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.spec-item .value {
    font-size: 14px;
    color: #4A90E2;
    font-weight: 700;
}

/* ----- Improvement Activities ----- */
.improvement-activities {
    margin-top: 80px;
}

.improvement-activities h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 40px;
}

.activity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.activity-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.activity-card i {
    font-size: 48px;
    color: #4A90E2;
    margin-bottom: 20px;
}

.activity-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.activity-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

/* ----- Achievement Section ----- */
.achievement-section {
    background: #fff;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: #4A90E2;
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
}

.achievement-number {
    font-size: 56px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 10px;
}

.achievement-label {
    font-size: 16px;
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 15px;
}

.achievement-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}


/* ----- Responsive Design ----- */
@media (max-width: 1024px) {
    .qms-grid,
    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-grid,
    .qualification-grid,
    .training-stats,
    .activity-grid,
    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .personnel-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    .process-step::after {
        content: '↓';
        top: auto;
        bottom: -35px;
        right: 50%;
        transform: translateX(50%);
    }

}

@media (max-width: 768px) {
    .qms-grid,
    .training-grid,
    .equipment-grid,
    .qualification-grid,
    .personnel-stats,
    .training-stats,
    .activity-grid,
    .achievement-stats {
        grid-template-columns: 1fr;
    }
}



/* 品質管理部ページ専用CSS */

/* ============================================
   ページヒーロー
============================================ */
.page-quality-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/quality-main-bg.webp) center center no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(50px + 5vw) 0;
    color: var(--white);
    margin-bottom: 15px;
}

.q-card-img1 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/quality-img002.webp)  no-repeat;
  background-position: bottom;
  background-size: cover;
}
.q-card-img2 {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../img/quality-img003.webp)  no-repeat;
  background-position: bottom;
  background-size: cover;
}
.quality-box h3 {
  color: var(--primary);
  font-size: 1.4rem;
  border-bottom: dotted 2px var(--primary);
  padding: 0 0 5px 0;
  margin: 0 0 15px 0;
}
.personnel-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.personnel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.personnel-card {
    background: #fff;
    border-radius: 10px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: fadeInLeft 0.8s ease;
}

.personnel-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #004aa0, #388eba);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
}

.personnel-number {
    font-size: 64px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 10px;
}

.personnel-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 20px;
}

.personnel-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: left;
}

.personnel-duties {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.personnel-duties li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
}

.personnel-duties i {
    color: #4A90E2;
    font-size: 16px;
}

.personnel-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    animation: fadeInRight 0.8s ease;
}
/* ----- Personnel Section ----- */

.feature-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #004aa0, #388eba);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.personnel-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    animation: fadeInUp 0.8s ease;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #004aa0, #388eba);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 32px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}


/* アルミ加工部ページ専用CSS */

/* ============================================
   プロセスフロー
============================================ */

.page-aluminum-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/aluminum-main-bg.webp) center center no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(50px + 5vw) 0;
    color: var(--white);
    margin-bottom: 15px;
}

.aluminum-process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.aluminum-process-flow-second {
    margin-top: 40px;
}

.aluminum-process-step,.aluminum-process-step-end {
    position: relative;
    width: 180px;
    padding: 30px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    margin: 0 50px 0 0;
}

.aluminum-process-step::after {
    content: '→';
    position: absolute;
    top: 50%;
    right: -45px;
    transform: translateY(-50%);
    font-size: 30px;
    color: #4A90E2;
    font-weight: 700;
}

@media screen and (max-width:768px) {
  .aluminum-process-flow {
      display: block;
  }
  .aluminum-process-step,.aluminum-process-step-end {
      width: 100%;
      margin: 0 0 70px 0;
  }
  .aluminum-process-step::after {
      content: '↓';
      top: auto;
      bottom: -55px;
      right: 50%;
      transform: translateX(50%);
  }
}

.aluminum-process-step.visible {
    opacity: 1;
}


.aluminum-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.4s ease;
}


.aluminum-step-icon svg {
    width: 60px;
    height: 60px;
}

.aluminum-step-number {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 30px;
    height: 30px;
    color: #ccdef2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 500;
}

.aluminum-process-step h3,.aluminum-process-step-end h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.aluminum-process-step p,.aluminum-process-step-end p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.aluminum-process-arrow {
    color: #5A9FD4;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.aluminum-process-arrow.visible {
    opacity: 1;
}

.aluminum-process-arrow svg {
    width: 30px;
    height: 30px;
}

/* ============================================
   工場設備
============================================ */

.factory-showcase {
    display: grid;
}

.factory-exterior,
.factory-interior {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.factory-exterior {
    margin-bottom: 70px;
}

.factory-exterior img,
.factory-interior img {
    width: 100%;
    height: auto;
    display: block;
}

.factory-exterior img,
.factory-interior img {
    width: 100%;
    height: auto;
    display: block;
}

.factory-exterior p,.factory-interior p {
	margin: 0px;
}
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    padding: 40px 30px 20px;
    opacity: 1;
    transition: all 0.4s ease;
}

.image-overlay h3 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
}

.image-overlay p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
  .image-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
      color: #fff;
      padding: 40px 3% 3%;
      opacity: 1;
      transition: all 0.4s ease;
  }
  .image-overlay h3 {
      font-size: 5vw;
      font-weight: 700;
      color: #fff;
  }
  .image-overlay p {
      font-size: 14px;
      margin: 0;
      opacity: 0.9;
  }
  .factory-exterior,
  .factory-interior {
      width: 100%;
      overflow: scroll;
  }
  .factory-exterior img,
  .factory-interior img {
      width: 800px;
  }

}


/* ============================================
   工場配置図
============================================ */

.layout-diagram {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.diagram-legend {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-color {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    border: 2px solid #ddd;
}

.legend-color.processing {
    background: linear-gradient(135deg, #FFE5B4, #FFD580);
}

.legend-color.assembly {
    background: linear-gradient(135deg, #E6D5F5, #D4B3E8);
}

.legend-label {
    font-size: 14px;
    font-weight: 600;
    color: #555;
}

.layout-visual {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 120px);
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.layout-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ddd;
    position: relative;
    transition: all 0.4s ease;
    opacity: 0;
}

.layout-area.visible {
    opacity: 1;
}

.layout-area:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    z-index: 10;
}

.layout-area.office {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    background: linear-gradient(135deg, #A8E6CF, #7FD8BE);
}

.layout-area.assembly {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background: linear-gradient(135deg, #E6D5F5, #D4B3E8);
}

.layout-area.assembly:nth-of-type(3) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.layout-area.processing {
    grid-column: 3 / 6;
    grid-row: 1 / 4;
    background: linear-gradient(135deg, #FFE5B4, #FFD580);
}

.layout-area.storage {
    grid-column: 6 / 7;
    grid-row: 1 / 4;
    background: linear-gradient(135deg, #FFB3BA, #FF8FA3);
}

.area-label {
    font-size: 15px;
    font-weight: 700;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 10px;
}

.equipment-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.equipment-dots span {
    width: 12px;
    height: 12px;
    background: #5A9FD4;
    border-radius: 50%;
    display: block;
    animation: pulse 2s infinite;
}

.equipment-dots span:nth-child(2) {
    animation-delay: 0.3s;
}

.equipment-dots span:nth-child(3) {
    animation-delay: 0.6s;
}

/* レイアウト特徴 */
.layout-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(90, 159, 212, 0.2);
}

@media (max-width: 768px) {
  .layout-features {
      display: block;
  }
  .feature-card {
      margin-bottom: 30px;
  }
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}
/* ============================================
   強み・特徴
============================================ */

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
}
@media (max-width: 768px) {
  .strengths-grid {
      display: block;
  }

}
.strength-card001,.strength-card002,.strength-card003 {
    padding: 250px 15px 15px;
    backdrop-filter: blur(10px);
    position: relative;
    transform: translateX(-50px);
    margin-bottom: 15px;
}
.strength-card001 {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../img/aluminum-img004.webp) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.strength-card002 {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../img/aluminum-img005.webp) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.strength-card003 {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),url(../img/aluminum-img006.webp) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.strength-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cccccc, #666666);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.strength-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.strengths-grid h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    padding: 0px;
}

.strengths-grid p {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin: 0;
    padding: 0px 0px 10px 0px;
}


/* 施工実績ページ専用CSS */
.page-works-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/works-main-bg.webp) center center no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(50px + 5vw) 0;
    color: var(--white);
    margin-bottom: 15px;
}
.table-design001 {
  max-width: 800px;
  margin: 40px auto;
}
.table-design001 table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
}
.table-design001 th {
  width: 30%;
  background-color: #f4f4f4;
  text-align: left;
  padding: 15px 20px;
  font-weight: bold;
  border-right: 1px solid #ccc;
  vertical-align: top;
}
.table-design001 td {
  padding: 15px 20px;
  line-height: 1.8;
  background-color: #fff;
}
.table-design001 tr:not(:last-child) th,
.table-design001 tr:not(:last-child) td {
  border-bottom: 1px solid #ccc;
}

/* スペーサーページ専用CSS */
.page-spacer-header {
  background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/spacer-main-bg.webp) center center no-repeat;
  background-size: cover;
  background-position: center center;
  padding: calc(50px + 5vw) 0;
  color: var(--white);
  margin-bottom: 15px;
}

/* ----- Strength Section ----- */
.spacer-strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media screen and (max-width:768px) {
  .spacer-strength-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.spacer-strength-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    position: relative;
}

.spacer-main-strength {
    grid-column: span 3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
}

.spacer-strength-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.spacer-strength-badge i {
    color: #FFD700;
}

.spacer-strength-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 36px;
    border: solid 1px var(--primary);
}

.spacer-strength-card:not(.main-strength) .spacer-strength-icon {

}

.spacer-strength-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.spacer-main-strength h3 {
    font-size: 32px;
}

.spacer-strength-card p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.spacer-main-strength p {
    font-size: 16px;
}

.spacer-strength-card:not(.main-strength) h3 {
    color: #2C3E50;
}

.spacer-strength-card:not(.main-strength) p {
    color: #666;
}

.spacer-strength-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.s-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .s-grid {
      grid-template-columns: repeat(1, 1fr);
  }
}

.s-card {
    padding: 300px 35px 10px 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
}
.s-card-img1 {
  background-image: url(../img/spacer-img003.webp);
  background-position: bottom;
  background-size: cover;
}
.s-card-img2 {
  background-image: url(../img/spacer-img004.webp);
  background-position: bottom;
  background-size: cover;
}
.s-card-img3 {
  background-image: url(../img/spacer-img005.webp) ;
  background-position: bottom;
  background-size: cover;
}
.s-card-img4 {
  background-image: url(../img/spacer-img006.webp);
  background-position: bottom;
  background-size: cover;
}
.s-tech-icon-wrapper {
    margin-bottom: 25px;
}
.s-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    padding: 15px 15px 5px;
    text-align: left;
    background: #fff;
    margin: 0;
}
.s-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    background: #fff;
    padding: 5px 15px 15px;
}





/* 会社概要ページ専用CSS */
.page-company-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/company-main-bg.webp) center center no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(50px + 5vw) 0;
    color: var(--white);
    margin-bottom: 15px;
}
.company-policy {
  background: linear-gradient(rgba(255,255,255,0.95), rgba(255,255,255,0.95)),url(../img/taiga-logo.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  text-align: center;
  padding: 10rem 0;
  margin-bottom: 70px;
}
.company-ttl {
  font-size: 2.5rem;
  color: var(--primary);
  border-bottom: solid 2px var(--primary);
  width: fit-content;
  margin: 0 auto;
}
.company-policy p {
  font-size: 5rem;
  font-family: 'Sawarabi Mincho', serif;
  font-weight: 700;
  color: #333;
}
.quality-policy {
  margin-bottom: 70px;
}
.quality-policy h2 {
  font-size: 2.5rem;
  color: var(--primary);
  border-bottom: solid 2px var(--primary);
  width: fit-content;
  margin: 0 auto 30px;
}
.quality-policy p {
  text-align: center;
  font-weight: 700;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 50px;
}
@media (max-width: 768px) {
  .company-ttl,.quality-policy h2 {
    font-size: 1.5rem;
  }
  .company-policy p {
    font-size: 3rem;
  }
}
@media (max-width: 500px) {
  .company-policy {
    padding: 25vw 0;
  }
}
.company-policy-txt {
  max-width: 600px;
  font-size: 1.0rem;
  margin: 30px auto 100px;
  padding: 30px 20px;
  border-top: solid 1px var(--primary);
  border-bottom: solid 1px var(--primary);
}


/* ============================================
   会社情報セクション
============================================ */

.info-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.info-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}
@media (max-width: 500px) {
    .info-card {
        padding: 20px;
      }
}

.info-row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .info-row {
        display: block;
    }
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    flex: 0 0 150px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    padding-right: 15px;
}

.info-value {
    flex: 1;
    font-size: 16px;
    color: #2C3E50;
    line-height: 1.8;

}


/* ============================================
   特許セクション
============================================ */

.patent-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width:768px) {
  .patent-grid {
      grid-template-columns: repeat(1, 1fr);
  }
}
.patent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #fff;
    padding: 30px 25px;
    border-radius: 6px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.patent-text{
    flex: 1;
}
.patent-number {
    display: inline-block;
    padding: 4px 12px;
    background-color: #4b7cc2;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 15px;
}

.patent-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 10px;
}

.patent-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.patent-img{
    flex: 0 0 120px;
    margin-left: 20px;
}

.patent-img img{
    width:100%;
    height:auto;
    border:1px solid #ddd;
    transition: 0.3s;
}

.patent-img img:hover {
    opacity: 0.7;
    transition: 0.3s;
}



/* お問い合わせページ専用CSS */
.page-contact-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/contact-main-bg.webp) center center no-repeat;
    background-size: cover;
    background-position: center center;
    padding: calc(50px + 5vw) 0;
    color: var(--white);
    margin-bottom: 15px;
}

.contact_text {
  font-size: 18px;
  text-align: center;
  margin: 40px 0;
}
.contact_box_wrapper {
  max-width: 840px;
  margin: 0 auto 150px;
  background-color: #f8f9fa;
  padding: 50px 15px;
}
.contact_box {
  max-width: 655px;
  margin: auto;
}
.contact_box h2 {
	color: var(--primary);
	font-size: 1.5rem;
	text-align: center;
	margin-bottom: 25px;
}
.contact_box_item:not(:first-of-type) {
  margin: 25px 0;
}
.contact_box_item_title {
  font-size: 1.2rem;
  margin-bottom: 7px!important;
}
.contact_box_item_title:before {
  content: "";
  background-color: var(--primary);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
	margin-bottom: 2px;
}
.contact_box_item_title2 {
  font-size: 1.2rem;
  margin-bottom: 7px!important;
}
.contact_box_item_required {
  font-size: 16px;
}
.contact_box_item_required_red {
  color: #e26565;
}
.contact_box_item_note {
  font-size: 14px;
}
.contact_box_item_other {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 7px!important;
}
.contact_box_item_btn {
  margin-top: 50px;
}
.contact_box_item_select {
  width: 235px;
  max-width: 100%;
  position: relative;
}
.contact_box_item_select:before {
  content: "";
  display: inline-block;
  width: 49px;
  height: 49px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
  right: 0;
  pointer-events: none;
}
.contact_box_item_code {
  width: 200px;
}
.contact_box input[type=text],
.contact_box input[type=email],
.contact_box input[type=tel],
.contact_box input[type=date],
.contact_box textarea,
.contact_box select {
  font-weight: normal;
  padding: 11px 20px;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #a4a4a4;
  border-radius: 3px;
  background-color: #fff;
  color: #444;
  overflow: hidden;
  height: 49px;
  width: 100%;
}
.contact_box_item_btn button {
  width: 235px;
  max-width: 100%;
  height: 63px;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-width: 2px;
  border-style: solid;
  text-decoration: none;
  padding: 0 50px;
  background-color: #fff;
  font-size: 22px;
  color: var(--primary);
  border: solid 1px var(--primary);
  margin: auto;
  transition: .3s;
}
.contact_box_item_btn button:hover {
  color: #fff;
  background-color: var(--primary);
}
.contact_box_item p {
	margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .contact_text {
    font-size: 16px;
    margin: 30px 0;
  }
  .contact_box_wrapper {
    padding: 30px 15px;
  }
  .contact_box_item_title:before {
    width: 10px;
    height: 10px;
  }
  .contact_box_item_required {
    font-size: 14px;
  }
  .contact_box_item + .top_contact_box_item {
    margin-top: 17px;
  }
  .contact_box input[type=text],
  .contact_box input[type=email],
  .contact_box input[type=tel],
  .contact_box input[type=date],
  .contact_box textarea,
  .contact_box select {
    padding: 8px 10px;
    height: 44px;
  }
  .contact_box_item_select:before {
    width: 44px;
    height: 44px;
  }
  .contact_box_item_other {
    font-size: 16px;
    margin-top: 12px;
  }
  .contact_box_item_note {
    font-size: 12px;
  }
  .contact_box .wpcf7-submit {
    font-size: 18px;
    height: 50px;
    padding: 0 30px;
    width: 200px;
  }
}
.form-100px input {
	width: 100px!important;
}
.form-80px select {
	width: 65px!important;
	margin: 0 5px;
	text-align: center;
}
.form-80px .wpcf7 select option[value=""] {
  display: none;
}
.grecaptcha-badge { visibility: hidden; }
.wpcf7-form-control-wrap input {
	width: 100%!important;
}
.wpcf7-list-item input {
	width: unset!important;
	margin-right: 5px;
}
.wpcf7-list-item label {
	margin-right: 10px;
	display: block;
}
.contact_box_item textarea {
	height: 150px;
	width: 100%!important;
}
.screen-reader-response,.wpcf7-response-output,.wpcf7-not-valid-tip {
	color: #ff0000;
}
.mail_attention {
    border: solid 1px #ff0000;
    padding: 10px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}
.privacy-box {
	font-size:14px;
	border: solid 1px #666;
	padding:15px;
	width:100%;
	height: 200px;
	overflow-x: hidden;
	margin-bottom: 20px;
	background-color: #fff;
	border-radius: 3px;
}
.thanks h2 {
	color: var(--primary);
	font-size: 1.5rem;
	text-align: center;
	margin: 50px 0 25px;
}
.validate-error {
    color: #e00; font-size: 0.85em; display: block; margin-top: 4px;
}
.input-error {
    border-color: #e00 !important;
}
