@charset "utf-8";
/* CSS Document */

 /* --- Reset-ish --- */
    *{box-sizing:border-box}
    body{
		font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; 
		margin:0; 
		color:#222; 
		line-height:1.6; 
		background:#fafafa
}
    a{
		color:inherit; text-decoration:none
}
    img{
		max-width:100%; display:block
}


.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-image: linear-gradient(0deg, #366794 0%, #ff7a00 100%);
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  font-weight: bold;
  z-index: 999;
  transition: opacity 0.3s;
}
.floating-cta:hover { opacity: 0.85; }

    /* アニメーション */
    .fade-in { 
		opacity:0; 
		transform:translateY(50px); 
		transition: all 1s ease-out; 
}
    .fade-in.visible { 
		opacity:1; 
		transform:translateY(0); 
}



.clear{
	clear: both;
}

.center{
	text-align: center;
}
    /* --- Layout --- */
    .container{
		max-width:1100px; 
		margin:0 auto; 
		padding:24px
}
    header{
		background:linear-gradient(90deg,#324281 0%, #0b1220 100%); 
		color:#fff; 
}
    .nav{
		display:flex; 
		align-items:center; 
		justify-content:space-between; 
		gap:16px
}
    .logo{display:flex; 
		align-items:center; 
		gap:12px
}
    .logo img{
		width:200px;
}
    .hero{
		display:flex; 
		gap:28px; 
		align-items:center; 
		padding:36px 0; 
		flex-wrap:wrap
}
    .hero-left{
		flex:1; 
		min-width:260px;
}
    .eyebrow{display:inline-block;
		background:#fee2b3; 
		color:#7a4a00; 
		padding:6px 10px; 
		border-radius:999px; 
		font-weight:600; 
		font-size:14px;
}
    h1{
		font-size:28px; 
		margin:14px 0 10px; 
		line-height:1.15;
}
    p.lead{color:#374151; 
		margin-bottom:18px
}
    .cta-row{
		display:flex; 
		gap:12px; 
		flex-wrap:wrap;
}

    .cta-row a{
		transition: transform .6s ease; 
		
}

    .cta-row a:hover{
		transform: scale(1.1); /* 拡大 */
		
}

    .btn{
		display:inline-block; 
		padding:12px 18px; 
		border-radius:10px; 
		font-weight:700; 
		cursor:pointer
}
    .btn-primary{
		background:#ff7a00; 
		color:white; 
		box-shadow:0 8px 24px 
			rgba(255,122,0,0.18);
}
    .btn-ghost{
		background:#366794; 
		color:#FFFFFF; 
		border:2px solid rgba(15,23,42,0.08);
}

    .hero-right{
		flex:1; 
		min-width:260px; 
		display:flex; 
		justify-content:center; 
		align-items:center
}
    .badge-showcase{
		display:grid; 
		grid-template-columns:repeat(2,1fr); 
		gap:12px; width:100%; 
		max-width:420px;
}
    .badge-card{
		background:white; 
		padding:10px; 
		border-radius:10px; 
		box-shadow:0 6px 18px rgba(15,23,42,0.06); 
		text-align:center
}
    .badge-card img{
		height:90px; 
		object-fit:contain;
		margin: 0 auto;
}

   /* --- Gallery --- */
.process-gallery {
  padding: 40px 20px;
  text-align: center;
}
.process-gallery h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}
.process-gallery p {
  font-size: 1em;
  color: #555;
}
.gallery-grid {
  display: grid;
		grid-template-columns:repeat(5,1fr);
  gap: 20px;
  margin-top: 30px;
}
.gallery-grid figure {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}
.gallery-grid figure:hover {
  transform: translateY(-5px);
}
.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-grid figcaption {
  padding: 10px;
  font-size: 0.9em;
  color: #333;
}

    /* --- テンプレート --- */

.dl_table , .dl_table td {
	border: 1px solid #cccccc;
	border-collapse: collapse;
	margin: 0 auto;
}
.dl_table td {
	padding: 2em;
	height: auto;
	text-align: center;
}

.size{
	background: #999999;
	color: #fff;
}

.temp_btn{
	background: #333333;
	color: #fff;
	border-radius: 5px;
	text-decoration: none;
	padding: 1em 2em;
}

.temp_btn:hover{
	opacity: 0.6;
	color: #fff;
}

@media (max-width:540px){
		
		.dl_table td {
	padding: 12px;
}
		td .temp_btn{
	font-size: 11px;
}
		
}

    /* --- Features --- */
    .features{
		display:grid; 
		grid-template-columns:repeat(3,1fr); 
		gap:18px; 
		margin:32px 0;
}
    .feature{background:white; 
		padding:18px; 
		border-radius:12px; 
		box-shadow:0 6px 18px rgba(2,6,23,0.04);
}
    .feature h3{
		margin:8px 0 6px; 
		font-size:18px;
}
    .feature p{
		color:#4b5563; 
		font-size:14px;
}

    /* --- Process --- */
    .process{
		display:flex; 
		gap:12px; 
		overflow:auto; 
		padding:12px 0;
}
    .step{
		min-width:200px; 
		background:#fff; 
		padding:16px; 
		border-radius:12px; 
		box-shadow:0 6px 18px rgba(2,6,23,0.03);
}
    .step h4{
		margin:6px 0 6px
}
.example{
	display:grid; 
	grid-template-columns:repeat(3,1fr); 
	gap:12px;
	margin: 32px 0;
}

/* 製造フローアニメーション */
.process-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
}

.process-flow .step {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  flex: 1;
  min-width: 180px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  height: -webkit-fill-available;
  width: -webkit-fill-available;
}

.process-flow .step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-flow .icon {
  background: #324281;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 14px;
}

.process-flow .arrow {
  font-size: 22px;
  color: #324281;
  opacity: 0.6;
  transition: transform 0.6s ease;
}

.process-flow .arrow:hover {
  transform: translateX(5px);
}

/* モバイル対応 */
@media (max-width: 700px) {
  .process-flow {
    flex-direction: column;
    gap: 20px;
  }
  .process-flow .arrow {
    transform: rotate(90deg);
  }
}

    /* --- Specs table --- */
    table{
		width:100%; 
		border-collapse:collapse; 
		background:white; 
		border-radius:8px; 
		overflow:hidden; 
		box-shadow:0 6px 22px rgba(2,6,23,0.04)
}
    th,td{
		padding:12px 14px; 
		text-align:left; 
		border-bottom:1px solid #f1f5f9;
}
    th{
		background:#f8fafc; 
		font-weight:700; 
		color:#111827
}
    tbody tr:last-child td{
		border-bottom:0
}

    /* --- Contact form --- */
    .contact{
		margin:32px 0;
}

    .note{
		background:white; 
		padding:20px; 
		border-radius:10px; 
		box-shadow:0 8px 24px rgba(2,6,23,0.04);
}
    form{
		background:white; 
		padding:18px; 
		border-radius:10px; 
		box-shadow:0 8px 24px 
			rgba(2,6,23,0.04);
}
    label{
		display:block; 
		font-weight:700; 
		margin-bottom:6px; 
		font-size:14px;
}
    input[type="text"], input[type="email"], textarea, select{
		width:100%; 
		padding:10px; 
		border-radius:8px; 
		border:1px solid #e6edf3; 
		font-size:14px
}
    textarea{
		min-height:120px; 
		resize:vertical
}
    .form-row{
		margin-bottom:12px;
}

    footer{
		padding:28px 0; 
		color:#475569
}
    .small{
		font-size:13px; 
		color:#6b7280
}

.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.req {
  color: #dc2626;
  font-weight: bold;
}

.note {
  color: #64748b;
  font-size: 13px;
}

.form-submit {
  margin-top: 24px;
}

.form-submit button {
  font-size: 16px;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  background: #0f172a;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.form-submit button:hover {
  background: #1e293b;
}

.contactbtn{
	    display: inline-flex;
    align-items: center;
    gap: .6rem;
    background:#f26539;
    color:#fff;;
    border: none;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.youtube{
	max-width: 200px;
	margin: 0 auto;
}
.movie{
	display:grid; 
	grid-template-columns:repeat(2,1fr); 
	gap:12px;
	margin: 32px 0;
}
.mbox{
	background:white; 
	padding:16px;
	border-radius:10px; 
	box-shadow:0 6px 18px rgba(2,6,23,0.3);
			transition:0.5s; 
}

.mbox:hover{
transform: translateY(-15px); 
}

.clear{
	clear: both;
}

section h2{
    padding: .5em .7em;
    border: 2px solid #324281;
    box-shadow: 5px 5px #324281;
    color: #0b1220;

}

    /* --- Responsive --- */
    @media (max-width:900px){
      .features{grid-template-columns:repeat(2,1fr)}
      .contact{grid-template-columns:1fr}
      .hero{padding:20px 0}
      h1{font-size:24px}
		
		.process-gallery{
			padding: 0;
		}
    }

@media (max-width:700px){
	
.gallery-grid {
		grid-template-columns:repeat(3,1fr);
	gap:10px;
}
}



    @media (max-width:520px){
      .features{
		  grid-template-columns:1fr
		}
      .badge-showcase{
		  grid-template-columns:repeat(2,1fr);
		}
      .nav{
		  flex-direction:column; 
		  align-items:flex-start;
		  gap:14px}
		
	.example{
	display:grid; 
	grid-template-columns:repeat(1,1fr); 
	gap:12px;
}
.movie{
	display:grid; 
	grid-template-columns:repeat(1,1fr); 
		gap:12px;
}

		
.gallery-grid {
		grid-template-columns:repeat(2,1fr);
	gap:0px;
}
		
    }


    /* --- Gallery --- */
figure{
	margin: 0px;
}
    .wrap{
      width:min(1200px,100%);
      background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
      border-radius: calc(var(--radius) + 8px);
      padding:28px;
      box-shadow: 0 8px 30px rgba(2,6,23,0.6);
      border: 1px solid rgba(255,255,255,0.03);
    }


    .gallery{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:var(--gap);
    }

    /* card */
    .card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius);
      background:var(--card);
      min-height:220px;
      box-shadow: 0 6px 18px rgba(2,6,23,0.6);
      transition:transform .6s cubic-bezier(.2,.9,.25,1), box-shadow .6s;
      will-change:transform;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      outline: none;
		color:#fff;
    }

    .card:focus-visible{box-shadow:0 0 0 4px rgba(124,58,237,0.12)}

    /* image behaves responsively and slightly parallax */
    .card img{
      width:110%;
      height:110%;
      object-fit:cover;
      transform:translateZ(0) scale(1.03);
      transition:transform .9s cubic-bezier(.2,.9,.25,1);
      will-change:transform;
      pointer-events:none;
    }

    /* overlay gradient for legibility */
    .overlay{
      position:absolute;
      left:0;right:0;bottom:0;height:46%;
      background: linear-gradient(180deg, transparent, rgba(2,6,23,0.7));
      z-index:2;
      display:flex;align-items:flex-end;padding:14px;
    }
    .meta{z-index:3;font-size:13px}
    .meta h3{margin:0;font-size:14px}
    .meta span{display:block;color:var(--muted);font-size:12px}

    /* hover/focus interactions */
    .card:hover, .card:focus{
      transform:translateY(-8px) scale(1.01);
      box-shadow: 0 18px 38px rgba(2,6,23,0.65);
    }
    .card:hover img, .card:focus img{
      transform: translateY(-6%) scale(1.07) translateX(var(--tx,0));
      filter:brightness(1.02) contrast(1.03);
    }

    /* subtle badge */
    .badge{
      position:absolute;top:12px;left:12px;padding:8px 10px;border-radius:999px;font-size:12px;background:var(--glass);backdrop-filter: blur(6px);z-index:4;color:var(--muted);
      border:1px solid rgba(255,255,255,0.03);
    }

    /* responsive */
    @media (max-width:1000px){
		
      .gallery{
		  grid-template-columns:repeat(4,1fr);
		}
		.card{
			min-height: auto;
		}	
    }
    @media (max-width:520px){
		    .logo img{
		width:150px;
}
      .gallery{
		  grid-template-columns:repeat(2,1fr);
		}
		

		
		figure{
			margin:5px;
		}
    }

    /* reduced motion */
    @media (prefers-reduced-motion: reduce){
      .card,.card img{transition:none}
    }