/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Reddit+Sans:ital,wght@0,200..900;1,200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');



body {
  margin: 0;
  font-family: 'Helvetica', sans-serif;
  line-height: 1.5;
  color: #333;
  background-color: #f9f9f9;
}

/* 既存の .nav-header や .nav-menu のスタイルはそのままにしてOK */

/* ハンバーガーメニューの表示切り替え用 */
.nav-toggle {
  display: flex; /* 常に表示 */
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
  z-index: 1001;
}

.nav-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* メニューを非表示にして、アイコンで制御 */
.nav-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: absolute;
  top: 60px;
  right: 20px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 10px 0;
  z-index: 999;
}

.nav-menu.active {
  display: flex;
}

/* PCでもスマホでも表示を統一 */
@media screen and (min-width: 0px) {
  .container {
    justify-content: space-between;
    align-items: center;
  }
}

.nav-menu li.contact a {
  background-color: #008080;
  color: #fff;
  padding: 6px 14px;
  margin: 10px 0px;
  border-radius: 20px;
  font-weight: bold;
  transition: background 0.3s;
}

.nav-menu li.contact a:hover {
  background-color: #004999;
  color: #fff;
}


/* メニューの表示制御 */
@media screen and (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 10px 0;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .container {
    justify-content: space-between;
  }
}


.nav-header {
  height: 75px; 
  background-color: white;
  border-bottom: 1px solid #ddd;
  padding: 20px 20px;
  margin-bottom: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, .5);
}

@media print {
  .nav-header{display:none;}
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.container .sitetitle {
  font-size: 17px;
  color: #008080;
  font-weight: bold;
  margin-bottom: -10px;
  text-align: left;
  
}
@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .container .sitetitle {
  font-size: 13px;
  margin-top: -5px;
  margin-left: 5px;
  }
  
}

.logo {
  color: #008080;
  margin: 0;
}




.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #0066cc;
}


header.hero {
  background-image: url('image/header_bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 100px 20px;
  color: white;
}

header.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.top-bar {
  border-bottom: 1px solid #ddd;
  padding: 0;
  height: 40px;
  padding: 0px 15px;
}

.top-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding: 0 10px;
}
.top-container .top-pagetitle {
  font-size: 12px;
  font-weight: bold;
  padding-top: 6px;
}
.top-container .top-pagetitle i {
  font-size: 12px;
  color: #CCC;
  margin-left: 5px;
  margin-right: 5px;
}
.top-container .top-pagetitle a {
  color: #444;
  text-decoration: none;
  font-weight: normal;
}
/* ヒーローセクション用のコンテンツラッパー */
.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  padding: 40px 20px;
}

/* h1 左寄せ（text-align: leftでOK） */
.hero-content h1 {
  text-align: left;
  max-width: 1000px;
  margin-bottom: 10px;
  text-shadow: 1px 2px 3px #333333;
}

.hero-content p {
  font-size: 20px;
  text-shadow: 1px 2px 3px #333333;
}

/* ボタンリンクのスタイル */
.hero-button {
  display: inline-block;
  background-color: #008080;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 5px 0;
}

.hero-button:hover {
  background-color: #016e6e;
}

/* 商品ページ問い合わせボタンリンクのスタイル */
.contact-button {
  display: inline-block;
  background-color: #008080;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 0px 0 80px 0;
  align-items: center;
}

.contact-button:hover {
  background-color: #016e6e;
}

section {
  padding: 10px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.about,
.services,
.access {
  background-color: white;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.button {
  margin: 0 auto;
}

.button_2 {
  width: 100%;
  margin: 0 auto;
  text-align: center; /* 中のテキストやアイコンを中央揃えしたい場合 */
}

.introduction {
  position: flex;
  margin-bottom: 5px;
  align-items: center;
}
.introduction p {
  font-size: 18px;
  font-weight: normal;
  text-align: left;
  padding-left: 10px;
  line-height: 190%;
  width: 100%;
}

.contact {
  position: flex;
  margin-bottom: 30px;
  align-items: center;
}
.contact p {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
}
.contact .button {
  display: flex;
  justify-content: center; /* ← 横方向の中央揃え */
  max-width: 1000px;
}

.contact .button .hero-button {
  width: 300px;
  margin: 10px;
  text-align: center;
}

.contact .caution {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  text-align: center;
}
.contact_bottom {
  display: flex;
  margin-bottom: 0px;
  max-width: 1000px;
  margin: 0 auto;
}
.contact_column {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* ← 画像を下揃えにする */
  margin: 0 auto;
}

.contact_column .text-area {
  width: 75%;
  margin-bottom: 30px;
}

.contact_column .text-area p {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  text-align: left;
  margin: 3px 40px;
  letter-spacing: 0.08em;
}
.contact_column .text-area p a {
  color: #333;
  text-decoration: none;
}
.contact_column .text-area i {
  margin-left: 10px;
}
.contact_column .text-area .button {
  font-size: 22px;
  width: 110px;
  display: block;
  background-color: #008080;
  color: white;
  padding: 5px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: normal;
  transition: background-color 0.3s ease;
  margin: 20px 0 5px 30px;
  align-items: center;
  text-align: center;
  letter-spacing: 0.2em;
}

.contact_column .text-area h3 {
  display: block;
  font-size: 24px;
  margin: 10px 10px 30px 10px;
  padding: 5px 0;
  color: #008080;
  border-bottom: 3px dotted #008080;
}

.contact_column .image-area {
  width: 25%;
  display: flex;
  justify-content: center; /* 画像を中央に配置（横方向） */
  align-items: flex-end;   /* 画像を下揃え（縦方向） */
}

.contact_column .image-area img {
  max-width: 100%;
  height: auto;
  display: block;
}

.maker-logo {
  margin-top: 5px;
}

.bold {
  font-weight: bold;
  padding-top: 15px;
  padding-bottom: 10px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #008080;
}

h2 i {
  padding: 0 7px 0 0;
  color: #999999;
}

.service-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #008080;
  border-bottom: 0px solid #008080;
  
}
h3 i {
  padding: 0 7px 0 0;
  color: #999999;
}

.zaiko-icon {
  display: inline-block;
  background-color: #0000cd;
  color: white;
  padding: 3px 12px;
  border-radius: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 35px 0 5px 10px;
  font-size: 12px;
}

h3,
.zaiko-icon {
  display: inline-block;
  vertical-align: middle;
}

.h-toriyose-icon {
  display: inline-block;
  background-color: #aaa;
  color: white;
  padding: 3px 12px;
  border-radius: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0px;
  font-size: 12px;
}

.h-zaiko-icon {
  display: inline-block;
  background-color: #0000cd;
  color: white;
  padding: 3px 12px;
  border-radius: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0px;
  font-size: 12px;
}

.h-jyuchuseisan-icon {
  display: inline-block;
  background-color: #daa520;
  color: white;
  padding: 3px 12px;
  border-radius: 15px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0px;
  font-size: 12px;
}


.service-list h2{
  font-size: 22px;
  margin-bottom: 10px;
  color: #008080;
}

.product-view{
  display: flex;
  width:47%;
  border-bottom: 1px dotted #008080;
/*  margin-bottom: 5px; */
/*  margin-top: 5px; */
  padding: 5px;
}

.product-view h3 {
  display: inline-block;
  font-size: 18px;
  color: #666666;
  margin-top: 16px;
  margin-left: 10px;
}

.product-view .zaiko-icon {
  padding: 4px 12px;
  margin-top: 17px;
  margin-bottom: 22px;
  font-size: 11px;
}

.service {
  background-color: #e4f2f2;
  padding: 15px;
  flex: 1 1 30%;
  text-align: center;
  border-radius: 6px;
  box-sizing: border-box;
  min-width: 250px;
}

.product-list {
  display: flex;
  gap: 1px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;

}

.product-list h2{
  font-size: 15px;
  margin-bottom: 10px;
  color: #008080;
}

.product-list a {
  text-decoration: none;
}
.product-list a:hover {
  background-color: #e4f2f2;
}

.service_4 {
  background-color: #fff;
  border: 1px solid #008080;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin: 5px 0;
  min-width: 170px;
}

.service p {
  text-align: left;
}

.img-radius {
  border-radius: 5px;
  box-shadow: 0 1px 10px rgba(0,0,0,0.1);
}

.figure_right {
  float: right;
  margin: 10px;
  width: 35%;
  text-align: right;
  border: 0px solid  #fff;
}
.figure_right img {
  width: 90%;
}

.clearright {
  clear: right;
}
.clearleft {
  clear: left;
}
.assy_figure_right {
  float: right;
  margin: 0px;
  width: 15%;
  text-align: center;
  border: 0px solid  #fff;
  
}
.assy_figure_right img {
  width: 90%;
}
.assy_figure_left {
  float: left;
  margin: 0px;
  width: 15%;
  text-align: center;
  border: 0px solid  #fff;
  
}
.assy_figure_left img {
  width: 90%;
}

.block-baloon, .block-baloon-top, .block-baloon-right, .block-baloon-bottom, .block-baloon-left	{
	display: table;
	padding: 1.2em;
	margin-bottom: 1.2em;
	position: relative;
	border-radius: 1.2em;
}
.block-baloon:before, .block-baloon:after, .block-baloon-top:before, .block-baloon-top:after, .block-baloon-right:before, .block-baloon-right:after, .block-baloon-bottom:before, .block-baloon-bottom:after, .block-baloon-left:before, .block-baloon-left:after	{
	content: '';
	position: absolute;
}

.block-baloon-right	{
	margin-right: 1.5em;
	max-width: calc( 100% - 1.5em );
	background-color: #f5fffa;
	border: 2px solid #008b8b;
}
.block-baloon-right:before, .block-baloon-right:after	{
	top: 20%;
	transform: translateY(-50%);
	right: -1.5em;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 1.5em solid #008b8b;
}
.block-baloon-right:after	{
	right: calc( 4px - 1.5em );
	border-left: solid 1.5em #f5fffa;
}
.block-baloon-left	{
	margin-left: 1.5em;
	max-width: calc( 100% - 1.5em );
	background-color: #fffafa;
	border: 2px solid #c0c0c0;
}
.block-baloon-left:before, .block-baloon-left:after	{
	top: 50%;
	transform: translateY(-50%);
	left: -1.5em;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 1.5em solid #c0c0c0;
}
.block-baloon-left:after	{
	left: calc( 4px - 1.5em );
	border-right: solid 1.5em #fffafa;
}

.block-baloon-left h3 {
  font-size: 20px;
  margin-top: 2px;
  margin-bottom: 2px;
  color: #333;
}
.block-baloon-right h3 {
  font-size: 18px;
  margin-top: 5px;
  margin-bottom: 2px;
  color: #008b8b;
}

.block-assy-flow-table {
  display: flex;
  flex-direction: column; /* 縦並びにする場合 */
  align-items: center;     /* 横方向の中央揃え */
  gap: 1em;                /* 要素間のスペースを追加（任意） */
  margin-bottom: 15px;
}

.block-assy-flow{
	display: table;
	padding: 1.0em;
	margin: 0.2em 0;
	position: relative;
	border-radius: 1.0em;
	width: 80%;
	background-color: #f5fffa;
	border: 2px solid #008b8b;
}
.block-assy-flow .figure_right {
  width: 100px;
  margin: 0px;
}
.block-assy-flow h3 {
  display: flex;
  font-size: 20px;
  margin-top: 2px;
  margin-bottom: 2px;
  color: #008b8b;
}
.block-assy-flow p {
	margin: 0.2em 0;
	width:100%;
}
.block-assy-merit {
  width: 80%;
  margin: 0px;
  background-color: #f5fffa;
  border: 2px solid #008b8b;
  padding: 0 20px;
  border-radius: 1.0em;
}
.block-assy-merit h3 {
  display: flex;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 2px;
  color: #008b8b;
}
.block-assy-merit img {
  width: 60%;
  display: block;
  margin: 0 auto;
}
.block-assy-merit p {
	margin: 0 0 0.6em 0;
	width:100%;
}

.spec_title {
  display: flex;
  justify-content: space-between; /* ← 左にテキスト、右に画像 */
  align-items: end;            /* ← 高さを下揃え */
  font-size: 18px;
  font-weight: bold;
  margin: 5px;
}

@media screen and (max-width:768px) {
	.figure_right {
	text-align: center;
	float: center;
	margin: 10px;
	width: 100%;
	}
	.figure_right img {
	width: 70%;
	}
	.assy_figure_right {
	width: 25%;
	}
	.assy_figure_left {
	width: 25%;
	}
	.block-baloon-right:before, .block-baloon-right:after	{
	top: 50px;
	}
	.block-assy-merit img {
	width: 100%;
	}
	
	.contact_column .text-area {
	width: 100%;
	margin-bottom: 20px;
	}
	.contact_column .image-area {
	width: 0%;
	}
	
	.product-view{
    width:100%;
    }
    .zu-img{
    width: 98%;
    }
}

footer {
  background-color: #008080;
  color: white;
  text-align: center;
  padding: 9px;
}


/* 📱 スマホ向け */
@media screen and (max-width: 768px) {
  .top-container .top-pagetitle {
    display: block;
    width:100%;
    font-size: .75rem;
    font-weight: normal;
    padding-top: 0px;
    letter-spacing: -0.1em;
  }
  .service-list {
    flex-direction: column;
    gap: 15px;
  }
  .service {
    flex: 1 1 100%;
    margin-bottom: 10px;
  }
  
  .service_4 {
  min-width: 300px;
  }
  
  header.hero h1 {
    font-size: 32px;
  }
  .product-view {
  display: flex;
  flex-direction: column;
  }
  .product-view h3 {
  display: flex;
  font-size: 18px;
  color: #666666;
  margin-top: 3px;
  margin-left: 0px;
  margin-bottom: 0px;
  }
  .product-view .zaiko-icon {
    padding: 2px 3px;
    margin-top: 0px;
    margin-bottom: 3px;
    margin-left: 20px;
    font-size: 11px;
    width: 100px;
    text-align: center;
   }
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
/* PC用 */
@media print, screen and (min-width:999999px) {
	nav.gnav:after {
		content: '';
		display: block;
		clear: both;
	}
	nav.gnav {
		display: block !important;
		float: right;
	}

	/* 共通 */
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav ul li {
		position: relative;
		line-height: 25px;
		margin: 0;
		padding: 0;
		list-style: none;
	}
	nav.gnav ul li a {
		display: block;
		background: #FFF;
		color: #008080;
		margin: 10px 5px;
		font-size: 14px;
		font-weight: bold;
		text-decoration: none;
		border-radius: 10px;
	}
	nav.gnav ul li:hover > a {
		color: #fff;
		background: #069;
		border-radius: 10px;
	}

	/* 1段目 */
	nav.gnav > ul > li {
		position: relative;
		width: 140px;
		float: left;
		margin: 0;
		padding: 0;
		text-align: center;
		list-style: none;
		line-height: 30px;
	}
	nav.gnav > ul > li.subnav a {
		padding-right: 20px;
	}
	nav.gnav > ul > li.subnav > a:after {
		position: absolute;
		content: "";
		top: 50%;
		width: 0;
		height: 0;
		margin-top: -2.5px;
		margin-left: 10px;
		border: 5px solid transparent;
		border-top-color: #666;
	}

	/* 2段目 */
	nav.gnav ul li ul {
		position: absolute;
		z-index: 3;
		top: 100%;
		left: 0;
		width: 180px;
		margin: 0;
		padding: 0;
	}
	nav.gnav ul li ul li {
		overflow: hidden;
		height: 0;
		color: #fff;
		transition: .2s;
	}
	nav.gnav ul li ul li a {
		padding: 0 15px;
		text-align: left;
		background: #ddd;
		font-weight: normal;
	}
	nav.gnav ul li ul li a:hover {
		background: #444;
	}
	nav.gnav ul li:hover > ul > li {
		overflow: visible;
		height: 40px;
		line-height: 50px;
		border-bottom: 1px solid #555;
	}
	nav.gnav ul li:hover ul li:last-child {
		border-bottom: none;
	}
	nav.gnav > ul > li:last-child > ul {
		left: -60px;
	}
	nav.gnav ul li ul li ul:before {
		position: absolute;
		content: "";
		top: 15px;
		left: 460px;
		width: 0;
		height: 0;
		border: 5px solid transparent;
		border-right-color: #fff;
	}
	nav.gnav > ul > li:last-child ul li ul:before {
		position: absolute;
		content: "";
		top: 15px;
		left: 200%;
		margin-left: -20px;
		border: 5px solid transparent;
		border-right-color: #fff;
	}

	/* 3段目 */
	nav.gnav ul li ul li ul {
		top: 0;
		left: -300px;
	}
	nav.gnav ul li ul li ul li {
		width: 300px;
	}
	nav.gnav ul li ul li:hover > ul > li {
		border-bottom: 1px solid #555;
	}
	nav.gnav > ul > li:last-child > ul li ul {
		left: 100%;
	}
	nav.gnav ul li ul li ul li a {
		background: #ddd;
	}
	nav.gnav ul li ul li ul li a:hover {
		background: #666;
	}

	/* 3段目 */
	nav.gnav > ul {
		display: block !important;
	}
	#spMenu {
		display: none;
	}
}

/* タブレット・スマートフォン用 */
@media screen and (max-width:999998px) {
	nav.gnav {
		display: none;
	}
	nav.gnav ul {
		margin: 0;
		padding: 0;
	}
	nav.gnav > ul {
		z-index: 2;
		overflow: auto;
		position: fixed;
		top: 75px;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		height: 80%;
		height: -webkit-calc(100% - 75px);
		height: calc(100% - 75px);
		max-width: 1040px;
	}
	nav.gnav li {
		position: relative;
		width: 100%;
		float: none;
		margin: 0;
		text-align: left;
		list-style: none;
		border-bottom: 1px solid #FFF;
		background: #008080;
	}
	nav.gnav li:first-child {
		border-top: 0;
	}
	nav.gnav li:last-child {
		border-bottom: 0;
	}
	nav.gnav li a {
		display: block;
		padding: 10px 20px;
		color: #fff;
		text-decoration: none;
		background: #008080;
	}
	nav.gnav li a:hover {
		color: #fff;
		background: #016e6e;
	}
	nav.gnav ul ul {
		display: none;
		position: relative;
	}
	nav.gnav li li a {
		box-sizing: border-box;
		width: 100%;
		padding: 10px 30px 10px 34px;
		text-align: left;
	}
	nav.gnav li li li a {
		padding: 10px 20px 10px 48px;
	}

	nav.gnav .subnav > a:before {
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 20px;
		width: 10px;
		height: 10px;
		margin-top: -5px;
		background: #f1f1f1;
	}
	nav.gnav .subnav > a:after {
		display: block;
		content: "";
		position: absolute;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		top: 20px;
		right: 20px;
		width: 10px;
		height: 10px;
		margin-top: -10px;
		background: #333;
	}
	nav.gnav .subnav a:hover:after {
		background: #016e6e;
	}
	nav.gnav .subnav.active > a:before {
		margin-top: 0;
	}
	nav.gnav .subnav.active > a:after {
		margin-top: 5px;
	}

	.spMenuWrap {
		display: block;
		position: relative;
		top: -50px;
		right: 0;
		-webkit-transition: all 1s;
		-moz-transition: all 1s;
		-ms-transition: all 1s;
		-o-transition: all 1s;
		transition: all 1s;
		background: transparent;
		/* 追加で右寄せ */
		margin-left: auto;
	}

	#spMenu {
		position: absolute;
		max-width: 1000px;
		top: 30px;
		right: 10px;
	}

	#spMenu:hover {
		cursor: pointer;
	}

	#navBtn {
		display: inline-block;
		position: relative;
		width: 30px;
		height: 30px;
		border-radius: 5%;
		background: #333;
	}
	#navBtnIcon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 14px;
		height: 2px;
		margin: -1px 0 0 -7px;
		background: #f1f1f1;
		transition: .2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 14px;
		height: 2px;
		background: #f1f1f1;
		transition: 0.3s;
	}
	#navBtnIcon:before {
		margin-top: -6px;
	}
	#navBtnIcon:after {
		margin-top: 4px;
	}
	#navBtn .close {
		background: transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top: 0;
	}
	#navBtn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#navBtn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
}

@media screen and (max-width:768px) {
	#spMenu {
		position: absolute;
		top: -5px;
		right: 10px;
	}
	.nav-header {
		height: 95px;
	}
	nav.gnav > ul {
		top: 95px;
	}
}
/*================================================
 *  グローバルナビゲーション
 ================================================*/

/ *  ページ内リンク位置ずれ対応  * /
#p-1, #p-2, #p-3, #p-4 {
  padding-top: 200px;
  margin-top:-200px;
}

/*================================================
 *  タブ切替
 ================================================*/


.tab-1,
.tab-2,
.tab-3,
.tab-4,
.tab-5,
.tab-6,
.tab-7,
.tab-8,
.tab-9,
.tab-10,
.tab-11,
.tab-12,
.tab-13,
.tab-14,
.tab-15,
.tab-16 {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

.tab-1 > label ,
.tab-2 > label ,
.tab-3 > label ,
.tab-4 > label ,
.tab-5 > label ,
.tab-6 > label ,
.tab-7 > label ,
.tab-8 > label ,
.tab-9 > label ,
.tab-10 > label ,
.tab-11 > label ,
.tab-12 > label ,
.tab-13 > label ,
.tab-14 > label ,
.tab-15 > label ,
.tab-16 > label {
    flex: 1 1;
    order: -1;
    min-width: 40px;
    padding: .7em 1em .5em;
    background-color: #e4f2f2;
    color: #666;
    font-weight: 500;
    font-size: .9em;
    text-align: left;
    cursor: pointer;
    border-bottom: 2px solid #008080;
    border-top: 1px solid #008080;
    border-left: 1px solid #008080;
    border-right: 1px solid #008080;
    border-radius: 0px 15px 0 0;
}

.tab-1 > label:hover,
.tab-2 > label:hover,
.tab-3 > label:hover,
.tab-4 > label:hover,
.tab-5 > label:hover,
.tab-6 > label:hover,
.tab-7 > label:hover,
.tab-8 > label:hover,
.tab-9 > label:hover,
.tab-10 > label:hover,
.tab-11 > label:hover,
.tab-12 > label:hover,
.tab-13 > label:hover,
.tab-14 > label:hover,
.tab-15 > label:hover,
.tab-16 > label:hover {
    opacity: .8;
}

.tab-1 input,
.tab-2 input,
.tab-3 input,
.tab-4 input,
.tab-5 input,
.tab-6 input,
.tab-7 input,
.tab-8 input,
.tab-9 input,
.tab-10 input,
.tab-11 input,
.tab-12 input,
.tab-13 input,
.tab-14 input,
.tab-15 input,
.tab-16 input {
    display: none;
}

.tab-1 > div,
.tab-2 > div,
.tab-3 > div,
.tab-4 > div,
.tab-5 > div,
.tab-6 > div,
.tab-7 > div,
.tab-8 > div,
.tab-9 > div,
.tab-10 > div,
.tab-11 > div,
.tab-12 > div,
.tab-13 > div,
.tab-14 > div,
.tab-15 > div,
.tab-16 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
    background-color: #fff;
}

.tab-1 label:has(:checked) ,
.tab-2 label:has(:checked) ,
.tab-3 label:has(:checked) ,
.tab-4 label:has(:checked) ,
.tab-5 label:has(:checked) ,
.tab-6 label:has(:checked) ,
.tab-7 label:has(:checked) ,
.tab-8 label:has(:checked) ,
.tab-9 label:has(:checked) ,
.tab-10 label:has(:checked) ,
.tab-11 label:has(:checked) ,
.tab-12 label:has(:checked) ,
.tab-13 label:has(:checked) ,
.tab-14 label:has(:checked) ,
.tab-15 label:has(:checked) ,
.tab-16 label:has(:checked) {
    border-top: 2px solid #008080;
    border-left: 2px solid #008080;
    border-right: 2px solid #008080;
    border-bottom: 2px solid #FFF;
    background-color: #fff;
    color: #008080;
}
.tab-1 label:has(:checked) + div ,
.tab-2 label:has(:checked) + div ,
.tab-3 label:has(:checked) + div ,
.tab-4 label:has(:checked) + div ,
.tab-5 label:has(:checked) + div ,
.tab-6 label:has(:checked) + div ,
.tab-7 label:has(:checked) + div ,
.tab-8 label:has(:checked) + div ,
.tab-9 label:has(:checked) + div ,
.tab-10 label:has(:checked) + div ,
.tab-11 label:has(:checked) + div ,
.tab-12 label:has(:checked) + div ,
.tab-13 label:has(:checked) + div ,
.tab-14 label:has(:checked) + div ,
.tab-15 label:has(:checked) + div ,
.tab-16 label:has(:checked) + div {
    display: block;
}

@media screen and (max-width: 768px) {
.tab-1 > label ,
.tab-2 > label ,
.tab-3 > label ,
.tab-4 > label ,
.tab-5 > label ,
.tab-6 > label ,
.tab-7 > label ,
.tab-8 > label ,
.tab-9 > label ,
.tab-10 > label ,
.tab-11 > label ,
.tab-12 > label ,
.tab-13 > label ,
.tab-14 > label ,
.tab-15 > label ,
.tab-16 > label {
    display: block;
    min-width: 90%;
    border-bottom: 1px solid #008080;
    border-top: 1px solid #008080;
    border-left: 1px solid #008080;
    border-right: 1px solid #008080;
    border-radius: 20px;
    margin-bottom: 3px;
  }
.tab-1 label:has(:checked) ,
.tab-2 label:has(:checked) ,
.tab-3 label:has(:checked) ,
.tab-4 label:has(:checked) ,
.tab-5 label:has(:checked) ,
.tab-6 label:has(:checked) ,
.tab-7 label:has(:checked) ,
.tab-8 label:has(:checked) ,
.tab-9 label:has(:checked) ,
.tab-10 label:has(:checked) ,
.tab-11 label:has(:checked) ,
.tab-12 label:has(:checked) ,
.tab-13 label:has(:checked) ,
.tab-14 label:has(:checked) ,
.tab-15 label:has(:checked) ,
.tab-16 label:has(:checked) {
    border-bottom: 2px solid #008080;
}

}

/*================================================
 *  規格表
 ================================================*/
table{
  width: 100%;
  border-collapse:separate;
  border-spacing: 0;
}

table th:first-child{
  border-radius: 5px 0 0 0;
}

table th:last-child{
  border-radius: 0 5px 0 0;
  border-right: 1px solid #008080;
}

table th{
  text-align: center;
  color:white;
  background: #008080;
  border-left: 1px solid #008080;
  border-right: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  width: 12%;
  padding: 5px 5px;
  font-size: .9em;
}

table th .left{
  text-align: left;
  color:white;
  background: #999999;
  border-left: 1px solid #008080;
  border-right: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  width: 30% !important!;
  padding: 5px 5px;
  font-size: .9em;
}
table th .right{
  text-align: left;
  color:white;
  background: #008080;
  border-left: 1px solid #008080;
  border-right: 1px solid #f1f1f1;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  width: 70% !important!;
  padding: 5px 5px;
  font-size: .9em;
}

table td{
  text-align: center;
  border-left: 1px solid #008080;
  border-bottom: 1px solid #008080;
  border-top:none;
  width: 12%;
  padding: 5px 5px;
  font-size: .85em;
}

td .left{
  text-align: left;
}
td .right{
  text-align: left;
}

table td:last-child{
  border-right: 1px solid #008080;
}

table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}

table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}

.home-show {display: block;}

/*ボタンの設定*/
.home a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 90px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}
