/* =========================
   Base / Tokens
========================= */
:root{
  --font-sans: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  --container: 1120px;
  --gutter: 24px;

  --bg: #ffffff;
  --bg-alt: #f2f8ff;
  --text: #0b1220;
  --muted: #5b6476;
  --border: rgba(16, 24, 40, .12);

  --primary: #D44848;
  --primary-ink: #ffffff;
  --cta-red: #d84a4a;
  --cta-red-hover: #c74242;
  --footer-blue: #2b5caa;
  --footer-blue-light: #6da3d9;
  --footer-btn: #d6504e;
  --footer-btn-hover: #c44848;
  --wave: #edfaff;
  --wave-strong: #d7ecff;
  --shadow: 0 16px 40px rgba(16, 24, 40, .10);

  --radius: 16px;
  --radius-sm: 12px;

  --header-h: 72px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 2;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

html{ scroll-behavior: smooth; }

ul{
	list-style: none;
	padding:0;
}

.rink_map {
	text-decoration: underline;
    width:100%;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background-color: var(--primary);
    text-align:center;
    color:#FFF;
    text-decoration: none;
	padding:1px 5px;
	font-size:14px;
}
.rink_map:hover {
    background-color: #dc5b5b;
}

.center{ display: flex; justify-content: center; }

.news-date {
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
	background-color: #3769d2;
	color:#fff!important;
    text-align: center;
}

/* =========================
   Section label (EN/JA)
========================= */
.section-label{
  display: grid;
  gap: 2px;
  justify-items: center;
  margin: 0px 0 50px;
}
.section-label-img{
  display: block;
  height: auto;
  margin: 0 auto;
}
.section-label-img--news,
.section-label-img--services,
.section-label-img--projects{ width: min(72vw, 500px); }
.section-label-ja{
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  color: rgba(11, 18, 32, .55);
	text-align: center;
}

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

.skip-link{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  transform: translateY(-200%);
  transition: transform .2s ease;
  z-index: 9999;
}
.skip-link:focus{ transform: translateY(0); }

.container{
  max-width: calc(var(--container) + (var(--gutter) * 2));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =========================
   Header / Nav
========================= */
.site-header{
    position: fixed;
    top: 0;
    z-index: 50;  
	width: 100%;
  	/*height: var(--header-h);   */ 
	height: 100px;
  /*background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);*/
}
.header-inner{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand{
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo{
  display: block;
  width: auto;
}

.site-nav{ display: flex; align-items: center; }
.nav-toggle{
  appearance: none;
  border: 0px solid var(--border);
  background: none;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
	z-index: 999;
}
.nav-toggle-lines{
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  border-radius: 999px;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after{
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}
.nav-toggle-lines::before{ top: -6px; }
.nav-toggle-lines::after{ top: 6px; }

.nav-panel{ display: block; }
.nav-list{
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-link{
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(11, 18, 32, .82);
  font-weight: 500;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover{color: var(--text);text-decoration: underline; }
.nav-cta{
  background: var(--primary);
  color: var(--primary-ink);
  padding: 10px 14px;
}
.nav-cta:hover{ background: #cd6161; color: var(--primary-ink); }

/* =========================
   Hero
========================= */
.hero--photo{
  position: relative;
  padding: 0;
  background: #fff;
  overflow: hidden;
	background: var(--wave);
}
.hero-photo{
  min-height: clamp(320px, 58vw, 520px);
  /*background:
    linear-gradient(180deg, rgba(0,0,0,.12) 0%, rgba(0,0,0,.02) 40%, rgba(255,255,255,0) 70%),
    url("../image/hero.jpg");*/
  background-size: cover;
  background-position: center 22%;
}
.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  pointer-events: none;
}
.hero-overlay-inner{
  width: 100%;
}
.hero-logo{
  display: block;
  width: min(300px, 82vw);
  height: auto;
  pointer-events: auto;
}
.hero-wave{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 90px;
  pointer-events: none;
}
.hero-wave::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height:90px;
	background-image: url("../image/bg_wave01.png?v=2");
	background-position: bottom -1px center;
  	background-repeat: no-repeat;
}

/* NEWS */
.section--news{
  background: var(--wave);
  padding: 26px 0 34px;
}
.news-box{
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(32, 78, 175, .12);
  border-radius: 18px;
  padding: 10px 14px;
  backdrop-filter: blur(8px);
}
.news-item{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(16,24,40,.08);
}
.news-item:first-child{ border-top: 0; }

.news-box a {
	text-decoration: underline;
}
.news-box a.news-item-nolink {
	text-decoration: none;
	pointer-events: none;
}
.news-date{
  font-weight: 100;
  font-size: 12px;
  color: rgba(11,18,32,.55);
}
.news-title{
  font-weight: 100;
  font-size: 12px;
  color: rgba(11,18,32,.72);
}

/* About */

h2 {
  	overflow: hidden;
	text-align: center;
}

.char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    transition:
      opacity .7s cubic-bezier(.22,.61,.36,1),
      transform .7s cubic-bezier(.22,.61,.36,1);
}

.char.show {
    opacity: 1;
    transform: translateY(0);
}
.section--about{
  position: relative;
  /*background: #f0f7ff;*/
  padding: 48px 0 72px;
  overflow: visible;
}
.about-title{
  margin: 0 0 20px;
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  color: #333333;
  letter-spacing: .04em;
}
.about-intro{
  margin: 0 0 32px;
  text-align: center;
}
.about-intro p{
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #555555;
}
.about-cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 36px;
}
.about-card{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4px;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 0 16px 20px;
  overflow: visible;
  min-height: 168px;
  box-shadow: 0 4px 16px rgba(16, 24, 40, .06);
}
.about-card-text{
  flex: 1;
  min-width: 0;
  padding-bottom: 8px;
  align-self: flex-start;
}
.about-card-title{
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  color: #333333;
	text-align: center;
}
.about-card-body{
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #555555;
}
.about-card-img{
  display: block;
  width: min(200px, 50%);
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: bottom right;
  flex-shrink: 0;
  align-self: flex-end;
  margin: 0 -20px -28px 4px;
  position: relative;
  z-index: 1;
}
.about-action{
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 8px;
}
.btn-about{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 280px);
  height: 52px;
  padding: 0 40px;
  border-radius: 10px;
  background: #d65550;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  transition: background .15s ease;
}
.btn-about:hover{
  background: #c44848;
}
.about-wave{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 56px;
}

/* Waves for sections */
.wave-top,
.wave-bottom{
  height: 42px;
  background: var(--wave);
}
.wave-top::before,
.wave-bottom::before{
  content: "";
  display: block;
  height: 100%;
}
.wave-bottom{
  /*transform: scaleY(-1);*/
}

/* Services */
.section--services{
  padding: 0;
  background: var(--wave);
}
.section--services .container{ padding-top: 18px; padding-bottom: 18px; }
.service-card{
  background: #fff;
  border: 1px solid rgba(16,24,40,.10);
  border-radius: 12px;
  overflow: hidden;
}
.service-thumb{
  aspect-ratio: 4 / 2.8;
  height: auto;
  background-size: cover;
  background-position: center;
}
.service-thumb[data-thumb="1"]{ background-image: url("../image/servise01.jpg?v=1"); }
.service-thumb[data-thumb="2"]{ background-image: url("../image/servise02.jpg?v=2"); }
.service-thumb[data-thumb="3"]{ background-image: url("../image/servise03.jpg?v=1"); }
.service-thumb[data-thumb="4"]{ background-image: url("../image/servise04.jpg?v=1"); }
.service-thumb[data-thumb="5"]{ background-image: url("../image/servise05.jpg?v=1"); }
.service-thumb[data-thumb="6"]{ background-image: url("../image/servise06.jpg?v=1"); }
.service-thumb[data-thumb="7"]{ background-image: url("../image/servise07.jpg?v=2"); }
.service-thumb[data-thumb="8"]{ background-image: url("../image/servise08.jpg?v=1"); }
.service-thumb[data-thumb="9"]{ background-image: url("../image/servise09.jpg?v=1"); }
.service-thumb::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,.00) 45%, rgba(0,0,0,.10) 100%);
}
.service-body{ padding: 20px 30px 10px; }
.service-title{
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 900;
	line-height:1.5;
	color: #2b5caa;
	text-align: center;
}
.service-text{ margin: 0; font-size: 14px; color: rgba(11,18,32,.58); }
.text-link--center{ display: inline-block; padding: 12px 0 0; font-size: 12px; }

	.service-text{
		display: none;
	}
	.service-card {
  background: #2b5caa;
  border: 0;
  border-radius: 0;
}
	.service-title {
  margin: 0px;
  color: #fff;
		  text-align: center;
}
	.service-body {
  		padding: 20px 30px 20px;
        /*background:url("./image/bg_services.png") center top no-repeat;
		background-size: cover;*/
        background-size: 30%;
        background:url("./image/bg_services.png") left top no-repeat;
        height: 5em;           /* 2行分の高さで固定（実際のデザインに合わせて調整） */
        display: flex;
        align-items: center;    /* 縦方向中央揃え */
        justify-content: center;/* 横方向中央揃え（既に中央寄せなら不要） */
        padding: 0 16px;
        box-sizing: border-box;
	}
	.service-cards article:nth-child(1n+1) {
        /*background-size: cover;*/
	}
	.service-cards article:nth-child(1n+2) {
        /*background-size: contain;*/
	}
	.service-cards article:nth-child(1n) {
        /*background-size: 100%;*/
	}
	.service-cards > article.delay01 .service-body {
  		padding: 20px 30px 20px;
        background:url("./image/bg_services.png") left top no-repeat;  
		background-size: 333%;
	}
	.service-cards > article.delay02 .service-body {
		background-position: center top!important;
		background-size: 333%;
	}
	.service-cards > article.delay03 .service-body {
		background-position: right top!important;
		background-size: 333%;
	}
	.service-thumb {
  aspect-ratio: 4 / 2.8;
}


/* Projects */
.section--projects{
  /*padding: 34px 0 48px;
  background: var(--wave);*/
}
.projects{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.project{
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(16, 24, 40, .06);
  transition: transform .15s ease, box-shadow .15s ease;
}
.project-thumb{
  aspect-ratio: 4 / 3;
  height: auto;
  flex-shrink: 0;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  border: 0;
}
.project01 .project-thumb{ background-image: url("../image/projects01.jpg"); }
.project02 .project-thumb{ background-image: url("../image/projects02.jpg?v=2"); }
.project03 .project-thumb{ background-image: url("../image/projects03.jpg"); }
.project04 .project-thumb{ background-image: url("../image/projects04.jpg"); }
.project05 .project-thumb{ background-image: url("../image/projects05.jpg"); }
.project06 .project-thumb{ background-image: url("../image/projects06.jpg"); }
.project07 .project-thumb{ background-image: url("../image/projects07.jpg"); }
.project08 .project-thumb{ background-image: url("../image/projects08.jpg"); }
.project09 .project-thumb{ background-image: url("../image/projects09.jpg"); }
.project10 .project-thumb{ background-image: url("../image/projects10.jpg?v=1"); }
.project11 .project-thumb{ background-image: url("../image/projects11.jpg"); }
.project12 .project-thumb{ background-image: url("../image/projects12.jpg"); }
.project13 .project-thumb{ background-image: url("../image/projects13.jpg"); }
.project14 .project-thumb{ background-image: url("../image/projects14.jpg"); }
.project15 .project-thumb{ background-image: url("../image/projects15.jpg"); }
.project16 .project-thumb{ background-image: url("../image/projects16.jpg?v=1"); }
.project17 .project-thumb{ background-image: url("../image/projects17.jpg"); }

.project-title{
  margin: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /*text-align: center;*/
  padding: 18px 14px 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: .02em;
}
.projects-actions{
  display: flex;
  justify-content: flex-end;
  margin-top: 22px;
}
.btn-projects{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 280px);
  height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  background: #d65151;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  border: none;
  transition: background .15s ease;
}
.btn-projects:hover{
  background: #c44848;
}

/* =========================
   Sections / Components
========================= */
.section{
  padding: 72px 0;
}
.section-alt{ background: var(--bg-alt); }
.section-head{ margin-bottom: 22px; }
.section-head-row{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}
.section-kicker{
  margin: 0 0 6px;
  font-weight: 700;
  letter-spacing: .14em;
  color: rgba(11, 18, 32, .55);
  font-size: 12px;
}
.section-title{
  margin: 0;
  font-size: 28px;
  line-height: 1.25;
}

.text-muted{ color: var(--muted); }
.text-link{
  font-weight: 600;
  color: rgba(27, 77, 255, .95);
}
.text-link:hover{ text-decoration: underline; }

.card{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .06);
}
.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.kv{ margin: 0; }
.kv-row{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}
.kv-row:first-child{ border-top: 0; padding-top: 0; }
.kv-row dt{ color: rgba(11, 18, 32, .68); font-weight: 600; }
.kv-row dd{ margin: 0; }

.grid3{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.tile{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
}
.tile-title{
  margin: 0 0 6px;
  font-size: 18px;
}
.tile-text{
  margin: 0;
  color: var(--muted);
}

.work{
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: #fff;
  transition: transform .15s ease, box-shadow .15s ease;
}
.work:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(16, 24, 40, .10);
}
.work-thumb{
  height: 170px;
  background:
    linear-gradient(135deg, rgba(27,77,255,.20), rgba(122,205,255,.18)),
    linear-gradient(180deg, #f2f4ff 0%, #ffffff 100%);
}
.work-body{ padding: 14px 14px 16px; }
.work-title{ margin: 0 0 6px; font-weight: 700; }
.work-meta{ margin: 0; color: var(--muted); font-size: 13px; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;  
	border-radius: 8px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  background: var(--primary);
  color: var(--primary-ink);
}
.btn-primary:hover{ background: #1642e0; }
.btn-primary--red{
  background: var(--cta-red);
  color: #fff;
}
.btn-primary--red:hover{ background: var(--cta-red-hover); }
.btn-secondary{
  background: #fff;
  border-color: var(--border);
  color: rgba(11, 18, 32, .9);
}
.btn-secondary:hover{ background: rgba(11, 18, 32, .04); }

/* Contact */
.contact-card{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}
.form{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 26px rgba(16, 24, 40, .06);
}
.form-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field{ display: grid; gap: 6px; }
.field-full{ grid-column: 1 / -1; }
.field-label{ font-weight: 700; font-size: 13px; color: rgba(11, 18, 32, .78); }
.field-input{
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px 12px;
  font: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field-input:focus{
  border-color: rgba(27, 77, 255, .55);
  box-shadow: 0 0 0 4px rgba(27, 77, 255, .12);
}
.form-actions{ margin-top: 10px; }
.contact-side{ display: grid; gap: 12px; }
.contact-box{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.contact-title{ margin: 0 0 8px; font-weight: 800; }
.contact-tel{ margin: 0 0 6px; font-weight: 900; font-size: 20px; }
.contact-tel a{ color: rgba(27, 77, 255, .95); }

/* Footer */
.site-footer{
  margin: 0;
  padding: 0;
  background: var(--footer-blue);
}

/* Footer top: CTA + illustrations */
.footer-cta{
  position: relative;
  background: #fff;
  overflow: visible;
	/*background-image: url("../image/bg_footer2.png");
	background-position: bottom 64px center;
	background-repeat: no-repeat;*/
}
.footer-cta-head{
  text-align: center;
  padding: 56px 0 36px;
}
.footer-cta-title{
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: .04em;
}
.footer-cta-lead,
.footer-cta-note{
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(11, 18, 32, .62);
}
.footer-cta-note{
  margin-top: 2px;
}
.footer-cta-body{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: flex-end;
  gap: 12px;
  min-height: 140px;
	text-align: center;
}
.footer-illus{
  display: block;
  height: auto;
  object-fit: contain;
  object-position: bottom;
  margin-bottom: 10px;
}
.footer-illus--left{
  width: min(200px, 36vw);
  justify-self: start;
}
.footer-illus--right{
  width: min(240px, 42vw);
  justify-self: end;
}
  .footer-illus--left{ width: min(200px, 14vw); }
  .footer-illus--right{ width: min(240px, 17vw); }
.btn-contact-form{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: center;
  justify-self: center;
  min-width: min(100%, 340px);
  height: 56px;
  padding: 0 36px;
  border-radius: 8px;
  background: var(--footer-btn);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: background .15s ease;
  margin-bottom: 150px;
}
.btn-contact-form:hover{
  background: var(--footer-btn-hover);
}
.btn-contact-icon{
  flex-shrink: 0;
}
.footer-waves{
  position: relative;
  z-index: 1;
  height: 56px;
  margin-top: -24px;
}
.footer-wave-bg{
  position: absolute;
  inset: 0;
  background: var(--footer-blue);
}
.footer-wave-top{
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

/* Footer main: company + nav */
.footer-main{
  background: var(--footer-blue);
  color: #fff;
  padding: 36px 0 0;
  margin-top: -1px;
	background-image: url("../image/bg_footer_bottom.png");
	background-position: bottom center;
	background-repeat: no-repeat;
}

.footer-main-inner{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
}
.footer-company-block{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 0;
}
.footer-logo{
  display: block;
  width: min(320px, 92vw);
  height: auto;
}
.footer-company-info{
  padding-top: 0;
}
.footer-address,
.footer-tel{
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 400;
  color: rgba(255,255,255,.95);
}
.footer-tel{
  margin-top: 2px;
}
.footer-instagram{
  margin: 10px 0 0;
}
.footer-instagram a{
  display: inline-flex;
  color: #fff;
  transition: opacity .15s ease;
}
.footer-instagram img {
    width:100%;
    height:auto;
}
.footer-instagram a:hover{
  opacity: .8;
}
.footer-right{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  flex-shrink: 0;
}
.footer-nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px 24px;
	padding-top: 28px;
}
.footer-nav a{
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity .15s ease;
}
.footer-nav a:hover{
  opacity: .8;
	text-decoration: underline;
}


.footer-certification{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px 20px;
  list-style: none;
  margin: 0;
  padding: 10px 16px;
  background: #fff;
  border-radius: 4px;
}
.footer-certification li{
  margin: 0;
  padding: 0;
  float: none;
}
.footer-certification img{
  display: block;
  height: 56px;
  width: auto;
}

.footer-copy{
  margin: 0;
  padding-bottom: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,.88);
  letter-spacing: .02em;
}

/* =========================
   Responsive (1440 / desktop)
========================= */
@media (min-width: 841px){
	
    #player {
        position: absolute;
        visibility: visible;
        margin: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        z-index: 0;
        object-fit: cover;
    }
	
    header.fixed {
		background-image: url("../image/bg_wave_header.png?v=1");
		/*background-image: url("../image/bg_wave_header_sp.png?v=1");*/
		background-position: top center;
		background-repeat: no-repeat;
		background-size: 100% auto;
    }
    header .container{
      	max-width: 96%;
		height:100px;
		padding:0;
    }
    .brand-logo{
        height: 80px;
        width: 418px;
		margin-top: 20px;
    }
	.hero-photo {
    	height: 900px;
  	}
	#main {
	  	margin-top: -100px;
	}
	#news {
	  	padding-top: 100px;
	}
	#about {
		background-image: url("../image/bg_wave02.png");
		background-position: bottom center;
		background-repeat: no-repeat;
	}
	
	#services {
		padding-top:100px;
	}
    .service-cards{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
        margin-top: 10px;
    }
	
    .section--services{
        padding: 0;
        background: var(--wave);
        background-image:url("../image/bg_wave03top.png");
        background-repeat:no-repeat;
        background-position:center top;
    }
    .section--projects{
        padding: 34px 0 48px;
        background: var(--wave);
        background-image:url("../image/bg_wave03bottom.png");/*先に書いたほうが上になる*/
        background-repeat:no-repeat;
        background-position:center bottom;
    }
    .news-box{
      	padding: 0px 30px;
    }
	
    .news-item{
        padding: 20px 0;
    }
	
	.news-date,
    .news-title{
      	font-size: 16px;
    }
	
    .hero-photo{
      /*min-height: clamp(560px, 36vw, 600px);*/
		height: calc(100vh + 60px);
		min-height: 600px;
		max-height: 1080px;
      background-position: center 28%;
    }
    .hero-overlay{ padding-bottom: 12px; }
    .hero-logo{ width: min(380px, 32vw); }
    .hero-wave{ height: 150px; }
    .hero-wave::before{ height: 150px; }

    .section--about{ padding: 56px 0 80px;margin-bottom: 50px; }
    .about-title{ font-size: 48px; margin-bottom: 24px; }
    .about-intro{ margin-bottom: 40px; }
    .about-intro p{ font-size: 15px; }
    .about-cards{ width:1000px;gap: 60px; margin: 0 auto 44px; }
    .about-card{ width: 455px;min-height: 200px; padding: 24px 0 20px 24px; border-radius: 18px; }
    .about-card-title{ font-size: 17px; margin: 16px 0 36px; }
    .about-card-body{ font-size: 13px; line-height: 1.85; }
    .about-card-img{
      width: min(122px, 52%);
      margin: 0 -28px -36px 8px;
    }
    .btn-about{ min-width: 320px; height: 56px; font-size: 16px; }
    .about-wave{ height: 64px; }

    .project-title{ font-size: 15px; padding: 20px 16px 22px; }
    .btn-projects{
      width: calc((100% - 42px) / 4);
      min-width: 220px;
      height: 52px;
      font-size: 15px;
    }

    .footer-cta-head{ padding: 64px 0 30px; }
    .footer-cta-title{ font-size: 28px; margin-bottom: 22px; }
    .footer-cta-lead,
    .footer-cta-note{ font-size: 15px; }
    /*.footer-cta-body{ margin-bottom: 120px; }*/
    .footer-illus--left{ width: min(200px, 14vw); }
    .footer-illus--right{ width: min(200px, 14vw); }
    .btn-contact-form{
      min-width: 380px;
      height: 60px;
      font-size: 17px;
      /*margin-bottom: 160px;*/
    }
    .footer-waves{ height: 64px; margin-top: -32px; }
    .footer-main{ padding-top: 44px; }
    .footer-logo{ width: min(391px, 52vw); }
    .footer-company-block{ gap: 22px; }
    .footer-address,
    .footer-tel{ font-size: 14px; }
    .footer-tel a{ pointer-events: none; }
    .footer-nav a{ font-size: 14px; }
	
	.footer-instagram{
		width:45px;
		margin-top: 10px;
	}
	
	.sp {display:none;}
}
/* desktop end */

/* =========================
   Responsive (375)
========================= */
@media (max-width: 840px){
	
    #player {
        position: absolute;
        visibility: visible;
        margin: auto;
        width: 100%;
        height: 100%;
        z-index: 0;
    }
	.hero-wave::before {
  		/*bottom: 12VW;*/
	}
	
    header.fixed {
		background-image: url("../image/bg_wave_header_sp.png?v=1");
		background-position: top -1VW center;
		background-repeat: no-repeat;
		background-size: 100%;
    }
    header .container{
		  padding:0 0% 0 2%;
    }
  :root{ --gutter: 16px; --header-h: 64px; }
	
    .site-header{ 
        height: 50px;
    }
    .nav-toggle{ display: inline-flex; }
    .nav-panel{
      position: fixed;
      inset: var(--header-h) 0 auto 0;
      background: rgba(255,255,255,.98);
      border-bottom: 1px solid var(--border);
      transform: translateY(-8px);
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
    }
    .nav-panel.is-open{
      transform: translateY(-65px);
      opacity: 1;
      pointer-events: auto;
    }
    .nav-list{
      flex-direction: column;
      align-items: stretch;
      padding: 12px var(--gutter) 55px;
      gap: 6px;
    }
    .nav-list li{
      text-align: center;
    }
    .nav-list li:last-child{
      margin-top: 8VW;
    }
    .nav-link{ justify-content: center; }

    .hero-photo{ 
		/*min-height: 130vw;*/
		/*height: 88vw;*/
		background-position: top 25px center; 
	}
    .hero-overlay{ padding-bottom: 68px; }
    .hero-logo{ width: min(200px, 76vw);margin-bottom: -100px; }
    .hero-wave{ height: 80px; z-index: 6; position: absolute; left: 0; right: 0; bottom: 18px; pointer-events: none; }

    .hero-wave::before{
      height: 120px;
      background-size: 200% auto;
      background-position: bottom 3VW center;
      background-repeat: no-repeat;
      /*transform: translateY(-6VW);*/
    }
	
    .brand-logo{
        height: 40px;
        max-width: min(220px, 52vw);
    }
	#main {
	  	margin-top: -64px;
	}
	#about {
		background-image: url("../image/bg_wave02.png");
		background-position: bottom center;
	}
	#news {
		padding-top:1px;
	}
    .section-label{
      	margin: 5VW 0 10VW;
    }
    .section-label-ja{
      	font-size: 18px;
    }
    .service-card{
        margin-top: 20px;
    }
    .section--services{
        padding: 0;
        background: var(--wave);
        background-image:url("../image/bg_wave03top.png");
        background-repeat:no-repeat;
        background-position:center top;
		background-size: 100%;
    }
    .section--projects{
        padding: 34px 0 48px;
        background: var(--wave);
        background-image:url("../image/bg_wave03bottom.png");/*先に書いたほうが上になる*/
        background-repeat:no-repeat;
        background-position:center bottom;
		background-size: 100%;
    }
	.service-text{ font-size: 12px; }

  .section{ padding: 52px 0; }
  .section--about{ padding: 40px 0 64px; }
  .about-title{ font-size: 22px; margin-bottom: 16px; }
  .about-intro{ margin-bottom: 24px; }
  .about-intro p{ font-size: 14px; line-height: 1.85; }
  .about-cards{ grid-template-columns: 1fr; gap: 14px; margin-bottom: 24px; }
  .about-card{ min-height: 150px; padding: 16px 0 12px 16px;margin-bottom: 20px; }
  .about-card-title{ font-size: 16px; }
  .about-card-body{ font-size: 12px; }
  .about-card-img{
    width: min(90px, 46%);
    margin: 0 -14px -22px 4px;
  }
  .btn-about{ height: 48px; font-size: 14px; padding: 0 28px; }
  .about-wave{ height: 44px; }
  .service-cards{ grid-template-columns: 1fr 1fr 1fr; gap: 10px;width:86%;margin: 0 auto; }
  .projects{ grid-template-columns: 1fr 1fr; gap: 12px; }
  .project-title{ font-size: 12px; padding: 14px 10px 16px; }
  .projects-actions{ justify-content: center; margin-top: 18px; }
  .btn-projects{ width: 100%; max-width: 320px; min-width: 0; }

  .footer-cta{
      background-position: bottom 47px center;
	  background-size: 250%;
  }
  .footer-cta-head{ padding: 40px 0 0px; }
  .footer-cta-title{ font-size: 18px; margin-bottom: 14px; }
  .footer-cta-lead,
  .footer-cta-note{ font-size: 12px; line-height: 1.75; }
  .footer-cta-body{  
	  padding-top: 20px;  
	  min-height: 200px;
  }
  .footer-illus--left{ width: min(110px, 30vw); }
  .footer-illus--right{ width: min(110px, 30vw); }
  .footer-illus{ margin-bottom: 8px; }
  .btn-contact-form{
    min-width: 0;
    width: 100%;
    max-width: 100%;
    height: 48px;
    padding: 0 14px;
    font-size: 14px;
    gap: 6px;
  }
  .btn-contact-icon{ width: 18px; height: 18px; }
  .footer-waves{ height: 48px; margin-top: -18px; }

  .footer-main-inner{
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }
  .footer-company-block{
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
	width: 300px;
    margin: 0 auto;
  }
  .footer-logo{ width: min(300px, 88vw); }
  .footer-right{
    align-items: center;
    width: 100%;
    gap: 16px;
  }
  .footer-nav{
    justify-content: center;
    gap: 10px 16px;
    padding-top: 0;
  }
  .footer-company-info{
      width: 300px;
  }
  .footer-nav a{ font-size: 13px; }
  .footer-certification{
    justify-content: center;
    gap: 10px 14px;
    padding: 8px 12px;
  }
  .footer-certification img{
    height: 44px;
  }
  .footer-address,
  .footer-tel{ font-size: 12px; }
	
    .footer-instagram{
		width:40px;
      margin: 10px auto 0;
    }
	.pc {display:none;}
}


@media screen and (min-width: 840px) and (max-width: 1200px){
    .nav-link{
		font-size:1.2vw;
		white-space: nowrap;
    }
}

#video.fixed{
    display:none!important;
}
.wrap {
    position: absolute;
    width: 100%;
    height: 100VH;
    min-height: 800px;
    z-index: 9998;
}
.video-wrap {
  	/*position: absolute;
	position: fixed;*/
    width: 100%;
    height: 100VH;
    overflow: hidden;
    z-index: -1;
}
@media screen and (min-width: 960px){
	.video-wrap {
      	height: 55vw;
		min-height: 33VH;
	}
}
@media screen and (max-width: 959px){
	.video-wrap {
      	height: 72vw;
    }
}

.delay01 {
  animation-delay: 0.2s;
}
.delay02 {
  animation-delay: 0.4s;
}
.delay03 {
  animation-delay: 0.6s;
}
.delay04 {
  animation-delay: 0.8s;
}
.delay05 {
  animation-delay: 1.0s;
}


.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(30px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

.fadeUp0{
animation-name:fadeUpAnime0;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime0{
  from {
    opacity: 0;
  transform: translateY(0px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 右方向フェードイン */
.fadeLR{
animation-name:fadeLRAnime;
animation-duration:1.2s;
animation-fill-mode:forwards;
opacity:0;
}

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

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 左方向フェードイン */
.fadeRL{
animation-name:fadeRLAnime;
animation-duration:1.2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRLAnime{
  from {
    opacity: 0;
  transform: translateX(50px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

.fadeUpTrigger{
    opacity: 0;
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
}

/*スクロールイベントここまで*/