@charset "utf-8";

.f-logo {
    text-align: center;
}

.f-logo img {
    max-width: 60px;
}

.top04 {
    width: 70%;
    margin-top: 50px;
}

/* ボタン体裁（お好みで） */
.nu-btn{
  display:inline-flex; align-items:center; gap:.5em;
  padding:.85em 1.2em; border-radius:999px; border:1px solid rgba(0,0,0,.12);
  background:#fff; box-shadow:0 2px 10px rgba(0,0,0,.08); font-weight:700; cursor:pointer;
}

/* 折りたたみボックス（アニメ・余白） */
.nu-fold{
  overflow: hidden;
  transition: grid-template-rows .35s ease, opacity .35s ease, margin-top .35s ease;
  display: grid;
  grid-template-rows: 0fr;   /* 閉：高さゼロ */
  opacity: 0;
  margin-top: 0;
}
.nu-fold[data-open="true"]{
  grid-template-rows: 1fr;   /* 開：中身の高さぶん */
  opacity: 1;
  margin-top: 16px;
}
.nu-fold__inner{
  min-height: 0;             /* grid収縮のため */
  background:#fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  padding: clamp(14px, 2.4vw, 24px);
  outline: none;
  margin-top: -28px;
}

/* 長いフォームでも読みやすく */
.nu-fold__inner form{ display:grid; gap:14px; }

/* 運営情報（ミニ） */
.nu-operator { 
    margin: clamp(28px, 5vw, 56px) auto; 
    padding: 70px 0;
    background-color: #FAFAFA; 
    margin-bottom: -56px;
}

section#operator {
    margin-bottom: -56px;
    padding: 70px 0 130px;
    margin-top: 36px;
}

.nu-operator__inner { max-width: 980px; margin-inline: auto; }
.nu-operator__title { font-size: clamp(18px, 2.4vw, 24px); font-weight: 800; margin: 0 0 12px; }

.nu-operator__card{
  background:#fff; 
  border-radius:14px; 
  box-shadow:0 2px 14px rgba(0,0,0,.06);
  padding: clamp(14px, 2.2vw, 20px); 
  display:grid; gap:10px;
  margin-top: 20px;
}
.nu-operator__logo{ height:auto; }
.nu-operator__lead{ margin:0; line-height:1.8; }

.nu-operator__more summary{
  cursor:pointer; list-style:none; display:inline-flex; gap:.4em; align-items:center;
  padding:.3em .6em; border-radius:999px; border:1px solid rgba(0,0,0,.12);
  background:#fff; box-shadow:0 1px 6px rgba(0,0,0,.04); font-weight:700; margin-top:6px;
}
.nu-operator__more[open] summary::after{ content:"▲"; font-size:.9em; }
.nu-operator__more summary::after{ content:"▼"; font-size:.9em; }

.nu-operator__grid{ display:grid; gap:14px; margin-top:12px; grid-template-columns: 1.1fr .9fr; }
@media (max-width: 800px){ .nu-operator__grid{ grid-template-columns:1fr; } }

.nu-operator__grid dl{ margin:0; }
.nu-operator__grid dl > div{
  display:grid; grid-template-columns:110px 1fr; gap:8px 14px; padding:8px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}
.nu-operator__grid dl > div:last-child{ border-bottom:none; }
.nu-operator__grid dt{ font-weight:700; color:#333; }
.nu-operator__grid dd{ margin:0; }

.nu-operator__map{ aspect-ratio:16/10; border-radius:10px; overflow:hidden; }
.nu-operator__map iframe{ width:100%; height:100%; border:0; }

.product01 {
    background-color: #FAFAFA;
    margin-top: -78px;
    margin-bottom: -78px;
    padding: 70px;
}

.center {
    text-align: center;
    margin: 0 auto;
}

.nu-products__title.ti-a {
    width: 28%;
}

/* --- 商品カルーセル：ボタンが押せない対策（上書き） --- */
.nu-products__carousel { 
  position: relative;
  overflow: visible;                 /* 親でクリップしない */
}

.nu-products__track {
  position: relative; 
  z-index: 1;                        /* トラックを一段下げる */
  padding: 8px 56px 12px;            /* ボタンの幅ぶん左右に余白を確保 */
}

/* ナビボタンを最前面＋内側に寄せる */
.nu-products__nav {
  z-index: 5;                        /* トラックより前面 */
}

.nu-products__nav--prev { left: 8px; }   /* -8px だとはみ出しで押しにくい */
.nu-products__nav--next { right: 8px; }

/* モバイルは余白を少し減らす */
@media (max-width: 600px) {
  .nu-products__track { padding: 8px 48px 12px; }
}

/* 商品セクション */
.nu-products { margin: clamp(32px, 6vw, 72px) auto; max-width: 1200px; padding: 0 16px; }
.nu-products__header {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
    flex-direction: column;
    }
.nu-products__title { font-size: clamp(20px, 2.8vw, 28px); font-weight: 700; letter-spacing: .02em; }

/* カルーセル枠 */
.nu-products__carousel {
  position: relative;
}

/* 横スクロールのトラック：3カラム相当を表示 */
.nu-products__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2rem) / 3); /* 3枚見せ */
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 12px;
  margin: 0;
  list-style: none;
}

/* スクロールバーを隠す（必要なら） */
.nu-products__track::-webkit-scrollbar { display: none; }
.nu-products__track { scrollbar-width: none; }

/* 各カード */
.nu-products__card {
  scroll-snap-align: start;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.nu-products__card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.09); }

.nu-products__link { display: block; text-decoration: none; color: inherit; }
.nu-products__card figure { margin: 0; display: grid; gap: 8px; padding: 12px; }
.nu-products__card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;           /* 正方形にトリミング */
  object-fit: cover;
  border-radius: 10px;
}
.nu-products__name {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}

/* ナビボタン */
.nu-products__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  inline-size: 40px;
  block-size: 40px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.08);
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}
.nu-products__nav--prev { left: -8px; }
.nu-products__nav--next { right: -8px; }
.nu-products__nav[disabled] { opacity: .4; cursor: default; }

/* レスポンシブ：タブレット2枚／スマホ1枚 */
@media (max-width: 900px) {
  .nu-products__track { grid-auto-columns: calc((100% - 1rem) / 2); }
}
@media (max-width: 600px) {
  .nu-products__track { grid-auto-columns: 100%; }
  .nu-products__nav--prev { left: 0; }
  .nu-products__nav--next { right: 0; }
}

.schedule::before {
    content: "";
    background: url(../images/schedule.png) no-repeat;
    height: 30px;
    width: 30px;
    display: inline-flex;
    background-size: 20px;
    background-position: 0 10px;
}

.tel::before {
    content: "";
    background: url(../images/tel.png) no-repeat;
    height: 30px;
    width: 30px;
    display: inline-flex;
    background-size: 20px;
    background-position: 0 10px;
}

.top_area .box03 dt {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    background-color: #664928;
    padding: 30px;
    margin: 30px 30px 0 0;
}

.ti-b small {
    font-size: 50%;
    font-weight: lighter;
}

.ti-b {
    font-size: 205%;
    font-weight: 400;
    margin-bottom: 30px;
    color: #616161;
}

.bg-white {
    padding: 50px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.top_area .box03 {
    background:url(../images/bg-box03.jpg) no-repeat ;
    padding: 70px 0;
    margin-top: -78px;
    object-fit: cover;
    background-position: 50%;
    margin-top: 80px;
    margin-bottom: -56px;
}

.ti-box02 {
    font-size: 180%;
    font-weight: bold;
    line-height: 1.5em;
    margin-bottom: 70px;
}

.top_area > .box02 h3 {
    font-weight: 400;
    font-size: 180%;
    border-bottom: 1px solid #fff;
    letter-spacing: 0.2em;
    line-height: 1.2em;
    justify-content: center;
    width: 70%;
    margin-bottom: 50px;
}

.top_area .box02 .gri02 {
    grid-column-gap: 0;
    margin-top: 30px;
}

.top_area .box02 dt {
    background-color: #757575;
    color: #fff;
    margin-top: 80px;
    padding: 80px 50px;
    margin-bottom: 80px;
}

.top_area .box02 {
    background:url(../images/bg-box02.jpg) no-repeat ;
    padding: 70px 0;
    margin-top: -78px;
    object-fit: cover;
}

.top_area .box01 p {
    color: #616161;
    font-size: 100%;
    line-height: 2.8em;
}

.top_area .box01 {
    background-color: #FAFAFA;
    padding: 70px;
    margin-top: -81px;
}

.fle2570 dt {
    width: 73%;
}

.fle2570 {
    display: flex;
}

.fle2570 dd img {
    padding: 0 30px 0px;
}

.fle2570 dd {
    width: 25%;
    margin-right: 5%;
}

.fle2570 small {
    margin-bottom: 45px;
}

header ul#gNav li.parent.contact01 a {
    background: #9E9E9E;
    padding: 5px 10px;
    color: #fff;
    border-radius: 15px;
}

.h01 img {
    width: 200px;
}

.company_area .box02 {
    background-color: #fff;
    padding: 30px 0 80px;
    margin-bottom: 0;
}

.in5 {
    max-width:350px;
    margin-left: auto;
    margin-right: auto;
}

.bu-a {
    background-color: #F99E43;
    align-items: stretch;
    display: flex;
}

.bu-a dd {
    text-align: center; 
    align-items: center;
	width: 250px;
    display: grid;
}

.plant_area .box02 ul{
	list-style-position:inside;
	margin-bottom: 30px;
}

.plant_area .box02 ul li {
	border-bottom: 1px solid #8A8A8A;
	padding: 15px 0 15px 0.5em;
}

.plant_area .box02 {
	background: url(../images/bg-flow01.jpg) center center no-repeat;
	padding: 30px 0 35px;
	margin-bottom: 0;
}

.drone_area .box01 .fle01:first-of-type {
	margin-top: 30px;
}

.drone_area .box01 .fle01 dd{
	width: 60%;
	text-align: left;
	align-self: center;
	margin-bottom: 30px;
}

.drone_area .box02 ul li {
    font-weight: bold;
    margin-bottom: 15px;
}


.bg-blue {
    background-color: #53BFE5;
    width: 35%;
    text-align: center;
    align-self: center;
    font-size: 110%;
    font-weight: bold;
    margin-right: 5%;
    padding: 10px 0;
    margin-bottom: 30px;
}

.drone_area .box04 {
    background-color: #fff;
    padding: 30px 0 80px;
	margin-bottom: 0;
}

.drone_area .box04 dd {
    min-height: 54px;
}

.drone_area .box02 {
    background-color: #F4E09F;
    padding: 40px 0 50px;
}

.drone_area .box02 ul {
	margin-left: 1.5em;
}

.drone_area .box05 {
    padding: 50px 0 50px;
	margin-bottom: 0;
}

.drone_area .box05 .fle01 dd {
    width: 60%;
    text-align: left;
    align-self: center;
    margin-bottom: 30px;
}



footer ul li {
    list-style: none;
    text-align: left;
}

#gNav .parent .child a {
    color: #000;
	text-align: left;
    font-size: 110%;
    font-weight: bold;
}

.right {
    text-align: right;
}

.tbJ table tr:first-of-type {
	background-color: #EEEBE0;
}

.tbJ table tr td:first-of-type {
    border-right: 2px solid #DCDAD4;
	border-bottom: 2px solid #DCDAD4;
	width: 130px;
	text-align: center;
}

.tbJ table tr td:nth-last-of-type(2) {
    border-right: 2px solid #DCDAD4;
	border-bottom: 2px solid #DCDAD4;
	width: 130px;
	text-align: center;
}

.tbJ table tr td:nth-last-of-type(3) {
    border-right: 2px solid #DCDAD4;
	border-bottom: 2px solid #DCDAD4;
	width: 130px;
	text-align: center;
}

.tbJ table tr td:last-of-type {
	border-bottom: 2px solid #DCDAD4;
	width: 130px;
	text-align: center;
}

.tbJ table {
    border: 2px solid #DCDAD4;
}

.fle6035 {
    display: flex;
    align-items: center;
	margin-bottom: 15px;
}

.fle6035 dl:first-of-type {
    width: 60%;
	margin-right: 5%;
}

.fle6035 dl:last-of-type {
    width: 35%;
}

.fle3560 {
    display: flex;
    align-items: center;
	margin-bottom: 15px;
}

.fle3560 dl:first-of-type {
    width: 35%;
	margin-right: 5%;
}

.fle3560 dl:last-of-type {
    width: 60%;
}

.list02 {
    margin: 50px 0;
}

.list02 li {
    list-style: none;
}

footer.pc {
    background-color: #EFEFEF;
    padding: 30px 0 15px;
}

.buB {
    margin: 20px 0 30px;
	display: inherit;
    flex-wrap: wrap;
    justify-content: initial;
    width: 100%;
}

.buB a {
    color: #fff;
    background-color: #000;
    padding: 10px 60px 10px;
    display: inline-block;
	width: initial;
    margin-right: 0;
    border: initial;
    text-decoration: none;
    box-sizing: border-box;
}

.top_area .bl01 {
    padding: 15px 0 30px;
}

.buA {
    text-align: center;
    margin: 15px 0 30px;
}

.buA a {
    color: #000;
    background-color: initial;
    padding: 10px 10px 5px;
    display: inline-block;
    border: none;
    border-bottom: 2px solid #000;
}

.bl02 .di01 {
    border-bottom: 1px dotted #000;
}

.bl02 .di02 {
    border-bottom: 1px dotted #000;
}

.li-a {

}

ul.ul-a {
    padding-left: 68px;
}

/*--------------------*
ヘッダー
*-------------------*/

ul#gNav .parent .child {
    list-style: none;
}

@media screen and (max-width: 768px) {
 header {
      display: none;
      float: none; 
} 
}
header a#logo {
    margin-right: auto; 
}
header ul#gNav {
    list-style: none; 
}

header ul#gNav li {
    font-size: 90%;
    font-weight: bold;
    letter-spacing: 0.1em;
}

header ul#gNav li span {
    letter-spacing: 0.15em;
    font-size: 85%;
    color: #777;
}

header ul#gNav li.parent {
    display: inline-block;
    margin-right: 30px;
    position: relative;
}

header ul#gNav li.parent a {
    text-decoration: none;
	color: #333;
    text-align: center;
    display: block;
}

header ul#gNav li.parent a span {
    text-align: center;
    display: block;
    margin-bottom: -5px;
}

header ul#gNav li.parent > ul.child, 
header ul#gNav li.parent > div.child {
        position: absolute;
        top: 50px;
        left: 0;
        min-width: 200px;
        text-align: left;
        background: #fff;
        padding: 20px;
		  margin-left: 0;
}

header ul#gNav li.parent > ul.child.col2 {
	column-count: 2;
    column-gap: 40px; 
}

header ul#gNav li.parent > ul.child li {
    white-space: nowrap;
    ont-size: 15px;
    height: 40px;
    line-height: 40px; 
}

header img#telnum {
    width: 170px;
    height: 66px; 
}

header#sp_header {
    background: none;
    padding: 5px 0 0 10px; 
}

header#sp_header img {
    height: 50px; 
}

header ul#gNav li.parent-contact {
	font-size:17px;
	display: inline-block;
}

header ul#gNav li.parent-contact a {
	background: #FEFF03;
	color: #000;
	display: block;
	border-radius: 20px;
	height: 40px;
	line-height: 40px;
	padding: 0 20px;
	box-shadow: 0 2px 0 #EC9421;
	transition: box-shadow position 0.5s;
	position: relative;
	top:0;
}

header ul#gNav li.parent-contact a:hover {
	box-shadow: none;
	top:2px;
}

.ti-c {
    border-bottom: 1px solid #616161;
    margin: 40px 0 10px;
    color: #616161;
    font-size: 205%;
    font-weight: 400;
    display: inline;
}

/* -----------------------------------title-- */

.ti-a {
    display: flex;
    text-align: center;
    border-bottom: 1px solid #616161;
    margin: 40px auto 10px;
    color: #616161;
    font-size: 205%;
    font-weight: 400;
    justify-content: center;
    width: 100%;
}

.ti-a.el1 {
    margin-top: 119px;
}

.ti-a.el2 {
    margin-top: 0;
}

/* -----------------------------------p-- */

p.p-a {
    font-size: 100%;
    line-height: initial;
    letter-spacing: initial;
    margin-bottom: 40px;
    text-align: center;
}

/*  -PCend-  */

/* === CONTACT 表の2カラム化（PC/タブレット） === */
@media (min-width: 600px) {
  .contact table { width: 100%; border-collapse: separate; border-spacing: 0; }
  .contact tr { border-bottom: 1px solid #ccc; }      /* 行にだけ罫線 */
  .contact td { 
    display: table-cell;                               /* ← blockを打ち消す */
    vertical-align: middle;
    padding: 14px 10px;
    border-bottom: none;
  }
  .contact td:first-child {                            /* ラベル列 */
    width: 220px;
    white-space: nowrap;
    padding-right: 20px;
    text-align: left;
  }
  .contact td:last-child input,
  .contact td:last-child textarea,
  .contact td:last-child select {
    width: 100%;                                       /* 入力欄はセルいっぱい */
    box-sizing: border-box;
  }
}

/* 全アンカーをスムーズスクロール */
html { scroll-behavior: smooth; }

/* 固定ヘッダーで見出しが隠れないようにオフセット */
:root { --header-h: 80px; }                  /* ヘッダー高に合わせて調整 */
[id] { scroll-margin-top: var(--header-h); } /* id付き要素に適用 */

/* 既存のスマホ用レイアウト（500px以下）は main.css の指定を活かす */
/* ---------------------------------------------------------------------
    レスポンシブ 1440px
--------------------------------------------------------------------- */
@media screen and (max-width:1440px){

}

/* ---------------------------------------------------------------------
    レスポンシブ 1200
--------------------------------------------------------------------- */
@media screen and (max-width:1200px){

}

/* ---------------------------------------------------------------------
    レスポンシブ 1024　※1200がそれに当たるので要らないかも
--------------------------------------------------------------------- */
@media screen and (max-width:1024px){

.top_area .box03 .bg-white dd {
    width: 56%;
}

.top_area > .box02 h3 {
    font-size: 165%;
}

.ti-box02 {
    font-size: 165%;
}

.h01 img{
    margin: 10px 0 0 10px;
}

.globalMenuSp span {
    padding-right: 20px;
    color: #CCC;
}

.humburger_wrapper {
    border-radius: 10px;
    padding: 2px;
}
	
.humburger span.humburger_bar {
    left: 0;
    top: 0;
    background: #000;
}
.humburger span.humburger_bar {
    display: block;
    width: 100%;
    margin: 10px auto 9px;
    height: 2px;
    background: #000
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
	
.humburger {
    cursor: pointer;
    cursor: hand;
    width: 35px;
    height: 35px;
    position: absolute;
    right: 15px;
    top: 5px;
}

.humburger:hover {
    opacity:0.7;
    filter: alpha(opacity=70);
}

nav.globalMenuSp {
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    color: #000;
    background-color: #777;
    text-align: left;
    width: 100%;
    opacity: 0;
    transform: translateX(100vw);
    transition: opacity 0.7s ease, visibility 0.7s ease;
    font-size: 100%;
    /* font-weight: bold; */
    height: 100%;
    padding-top: 20px;
}

nav.globalMenuSp ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 95%;
    overflow: auto;
     -webkit-overflow-scrolling: touch;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover {
  background: rgba(97, 178, 55, 0.2);
}

nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 8px 0 8px 40px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    opacity: 1;
  transform: translateX(0);
  z-index: 5;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.batsu {
    display: block;
    width: 35px;/*枠の大きさ*/
    height: 35px;/*枠の大きさ*/
    background: #FFF;
    position: absolute;
    z-index: 10;
    top: 15px;
    right: 15px;
    cursor: pointer;
    cursor: hand;
    border-radius: 10px;
}

.batsu::before, .batsu::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    transform: rotate(45deg);
    transform-origin: 0% 50%;
    position: absolute;
    top: 5px;
    left: 14%;
}

.batsu::after {
    transform: rotate(-45deg);
    transform-origin:100% 50%;
    left: auto;
    right: 14%;
}

.batsu:hover {
    filter: alpha(opacity=70);
    opacity:0.7;
}

}

/* ---------------------------------------------------------------------
    レスポンシブ 860
--------------------------------------------------------------------- */
@media screen and (max-width:860px){

.nu-operator__inner {
    width: 90%;
    margin: 0 auto;
}

.ti-box02 {
    margin-bottom: 50px;
}

.top_area > .box02 h3 {
    margin-bottom: 40px;
}

.top_area .box02 dt {
    padding: 50px 50px;
}

.top_area .box01 .in1 {
    width: 100%;
}

.top_area .box01 {
    padding: 70px 30px;
}
	
.bu-d a {
    padding: 15px 5px;
    width: 210px;
}
	
.bl02 .di01 {
    border-bottom: initial;
    margin-bottom: 5px;
}

}

/* ---------------------------------------------------------------------
    レスポンシブ 500
--------------------------------------------------------------------- */
@media screen and (max-width:500px){

.ti-a {
    margin-top: 0;
}


.top_area .box02 dt {
    padding: 50px 30px 40px;
}

.bg-white {
    padding: 50px 30px;
}

.top_area .box03 .bg-white dd {
    width: 100%;
}

.top_area .box03 dt {
    position: relative;
    width: 100%;
}

.product01 {
    padding: 40px 30px 60px;
}

.top_area .box02 dt {
    margin-top: -13px;
}

.fle2570 dt {
    width: 100%;
}

.fle2570 dd {
    width: 100%;
    margin-right: 0;
}

.fle2570 {
    flex-direction: column;
}

.di02 {
    margin: 0 auto;
}
	
.f02 {
    display: none;
}
	
.f03 {
    display: none;
}
	
footer.pc .fle01 {
    justify-content: center;
}
	
.top_area .box01 {
    margin-top: -50px;
}
	
.bl01 dt img {
    height: 160px;
}
	
.bl01 .cc6 dl:nth-of-type(3n) {
    margin: 0 4% 30px 0;
}
	
.bl01 .cc6 dl:nth-of-type(2n) {
    margin: 0 0 30px 0;
}
	
.bl01 .cc6 dl {
    width: 48%;
    margin: 0 4% 30px 0;
}

}

