body{
	font-family:"メイリオ","Hiragino Kaku Gothic Pro",sans-serif;
	margin:0;
	padding:0;
	overflow-x: hidden;
}
p{
	font-size:90%;
	line-height:1.8;
}

h1{
	font-size:200%;
}
h2{
	font-size:80%;
	padding-left:40px;
	margin-top:0px;
	margin-bottom:-12px;
	color:#000000;
}
h5{
	font-size:130%;
	padding-top: 40px;
	margin-top: 0;
	margin-left: 20px;
}
article{
	padding-top:10px;
	clear:both;
	width:auto;
	margin-left:auto;
	margin-right:auto;
	margin-top:50px;
}
.catch{
	position:absolute;
	top:150px;
	left:30px;
	color:#ffffff;
	text-shadow:0 5px 10px #333333;
}
.maingazo{
	background-color:#0099ff;
	width:80%;
}
.mark{
	margin: 0 auto;
	width:35%;
	height:auto;
}
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px; /* 高さは調整可能 */
	background-color: rgba(255, 255, 255, 0.8); /* 半透明 */
	z-index: 1000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.logo {
 margin-top:10px;
}

/* PC用ナビ */
.pc-nav{
	padding-top:10px;
	margin-left:auto;
	text-align:right;
	padding-right:10px;
	max-width: 100%; /* ← はみ出し防止 */
	overflow-x: auto; /* ← 念のため */
	box-sizing: border-box;
}
.pc-nav ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px; /* メニューの間隔 */
	padding: 0 20px;
	margin: 0;
	list-style: none;
	box-sizing: border-box;
}
.pc-nav li{
	display:inline-block;
}
.pc-nav a {
	text-decoration: none;
	color: #333;
	font-size:90%;
}
.pc-nav li a{ /*アクセスしたことのないリンク*/
	text-decoration:none;
}
.pc-nav li a:visited { /*アクセスしたことのあるリンク*/
	color:#808080;
}
.pc-nav li a:hover { /*オンマウス時*/
	color:#a9a9a9;
}

/* ハンバーガー */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	margin-right: 40px; 
	height: 20px;
	cursor: pointer;
	z-index: 1100;
}

.hamburger span {
	height: 2px;
  	background: #333;
	margin-bottom: 0px;
	border-radius: 2px;
	transition: all 0.3s;
}

/* メニュー */
.nav-menu {
	position: fixed;
 	top: 0;
	right: -100%;
	width: 70%;
	height: 100vh;
	background: #fff;
	transition: right 0.3s ease;
	padding-top: 60px;
	box-shadow: -2px 0 5px rgba(0,0,0,0.2);
	z-index: 1100;
}
.nav-menu ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.nav-menu li {
	margin: 20px 0;
	text-align: center;
}
.nav-menu a {
	text-decoration: none;
	color: #333;
	font-weight: bold;
}
.nav-menu li a:visited { /*アクセスしたことのあるリンク*/
	color:#808080;
}
.nav-menu li a:hover { /*オンマウス時*/
	color:#a9a9a9;
}
/* オーバーレイ */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
	z-index: 1050;
}
/* 表示切り替えクラス */
.nav-menu.active {
	right: 0;
}
.overlay.active {
	opacity: 1;
	visibility: visible;
}
/* スマホ表示 */
@media (max-width: 768px) {
.hamburger {
	display: flex;
  }
.pc-nav {
	display: none;
}
}
@media (min-width: 769px) {
.hamburger{
	display: none;
}
.pc-nav {
	display: block;
}
}

/* 建値更新ボックス */
.copper {
	position: relative;
	margin: 50px auto 0 auto;
	padding: 5px;
	border: solid 3px #62c1ce;
	border-radius: 8px;
	width:250px;
	text-align:center;
}
.copper .box-title {
 	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 18px;
	background: #FFF;
	color: #62c1ce;
	font-weight: bold;
}
.copper p {
 	margin: 0; 
	padding: 0;
	line-height:-20px;
}
.coppertext{
	font-weight:bold;
	font-size:200%;
}

.hkcombi img{
	display: block;
	margin: -10px auto 20px auto;
	width:350px;
}

/* スライドボックスココから */
.slideBox {
	height: 680px;
	overflow: hidden;
	position: relative;
}
/* imgのみ */
.item1 {
	opacity: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	left: 0;
	top: 0;
	-webkit-animation: anime 18s 0s infinite;
	animation: anime 18s 0s infinite;
}

.item1:nth-of-type(2) {
	-webkit-animation-delay: 10s;
	animation-delay: 6s;
}

.item1:nth-of-type(3) {
	-webkit-animation-delay: 20s;
	animation-delay: 12s;
}
/* アニメーション */
@keyframes anime {
0% {
	opacity: 0;
}
30% {
	opacity: 1;
}
35% {
	opacity: 1;
}
50% {
	opacity: 0;
	z-index: 9;
}
100% {
	opacity: 0;
}
}
@-webkit-keyframes anime {
0% {
	opacity: 0;
}
30% {
	opacity: 1;
}
35% {
	opacity: 1;
}
50% {
	opacity: 0;
	z-index: 9;
}
100% {
	opacity: 0;
}
}
/* スライドボックスココまで */

/* スマホ専用画像 */
.smh{
	display:none !important;　/* 表示させない */
}
@media only screen and (max-width: 768px) {
.slideBox { display: none !important; }
.smh { display: block !important; }
}
.smh2{
	display:none !important;
}
@media only screen and (max-width: 768px) {
.slideBox { display: none !important;}
.smh2 {
	display: block !important;
	margin-top:10px;
	width: 100%;
	height: auto;
}
}

/*↓ 商品紹介見出し */
.product{
	font-size:1.5vw;
}

/*↓ トップ葉っぱ柄見出し */
h3 {
	position: relative;
	color: #778ca3;
	font-size: 20px;
	padding: 10px 0;
	text-align: center;
	margin: 2em 0;
}
h3:before {
	content: "";
	position: absolute;
	top: -8px;
	left: 50%;
	width: 150px;
	height: 58px;
	border-radius: 50%;
	border: 5px solid #778ca3;
	border-left-color: transparent;
	border-right-color: transparent;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.reaf{
	padding:0 0 5px 0;
}
/* ここまで */

/* ↓トップ血管文字 */
.greeting{
	padding-top:10px;
	text-align:center;
	position: relative;
	font-size:1.8vw;
	color:#778ca3;
}
.greeting p {
	line-height: 180%;
}

/* ↓トップ真ん中コンテナ */
.container{
	width: 60%;
	max-width: 1000px;
	margin: 0 auto 40px; /* 横中央揃え */
	border: 1px solid #ccc; /* コンテナの境界線 */
	padding: 0; /* コンテナの内側余白 */
	overflow: hidden; /* 回り込みで高さが崩れないようにする */
}
.float-right img,
.float-left img {
	display: block;
	margin-bottom: 16px; /* ← テキストとの余白調整 */
	vertical-align: bottom;
}
/* コンテナの高さ崩れ対策 */
.container::after {
	content: "";
	display: block;
	clear: both;
}
.float-right {
	float: right; /* 画像を右側に回り込ませる */
	width: 450px;
	margin: 0 0 0 20px;  /* 上右下左 */
}
.float-left {
	float: left; /* 画像を左側に回り込ませる */
	width: 450px;
	margin: 0 20px 0 0;  /* 上右下左 */
}
.float-right img,
.float-left img {
	display: block;
	vertical-align: bottom;
}
.text {
	margin: 0;
	padding: 16px 16px 16px; /* 左右・下に少し余白　*/
	font-size: 90%;
	line-height: 1.8;
}
.fly{
	float:right;
	text-align:right;
}
.fly a{
	text-decoration: none;
	color:#d2b48c
}

/* ↓about usページ */
.container2,
.sisin{
	width:60%;
	margin: 30px auto;
	border: 1px solid #ccc; /* コンテナの境界線 */
	padding: 0 20px 0 20px ; /* コンテナの内側余白 */
	overflow: hidden; /* 回り込みで高さが崩れないようにする */
}
.sisin{
	background-color:#f5fffa;
}
.bosss{
	float: right; /* 画像を右側に回り込ませる */
	width: 300px; /* 画像の幅 */
	margin: 20px; /* 画像の周囲の余白 */
	padding-top:40px;
}
.kaikaku{
	width: 50%;
	margin: 0 auto;
}
/* ↓トップ下スライダー */
.Container-scroll {
	position: relative;
	width: 100%;
	overflow: hidden;
	margin-top:-20px;
	margin-bottom:20px;
}
.Box-Container {
	display: flex;
	width: fit-content;
	transition: transform 0.3s ease;
	transform: translateX(0);
}
.Box {
	flex-shrink: 0;
	width: 300px;
	height: 200px;
	margin-right: 10px;
	border-radius: 10px;
	background-color: #ccc;
}
.Box img {
	width: 100%;
	height: auto;
	object-fit: contain; /* 画像が枠内に収まるよう縮小 */
	border-radius: 10px;
}
.Arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	background-color: rgba(0, 0, 0, 0.3);
	color: #fff;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}
.Arrow.left {
	left: 0;
}
.Arrow.right {
	right: 0;
}
.Hide {
	display: none;
}
/* ↑スライダーここまで */
ul {
	padding-left: 0;
	list-style-type: none;
}
.map{
	padding-top:30px;
	text-align:center;
	padding-bottom:20px;
}


/* ↓沿革 */
.enkaku {
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom:20px;
	border-collapse: collapse;
	border-spacing: 0;
}
.title {
	width: 60%;
	margin:0 auto;
	border-bottom: solid 4px #778ca3;
	color: #778ca3;
}
.enkaku td {
	padding: 10px 10px 10px 40px;
	border-bottom: solid 1px #778ca3;
	box-sizing:border-box;
}

/* ↓製品紹介ページ */
.containerbox{
	width: 60%; /* コンテナの幅を設定 */
	margin: 40px auto ; /* 横中央揃え */
	border: 1px solid #ccc; /* コンテナの境界線 */
	overflow: hidden; /* 回り込みで高さが崩れないようにする */
	background: #ffffff;
}
.containerbox img{
	width:280px;
}

.komidashi{
	font-size:100%;
	font-weight:bold;
	margin-top:-30px;
}
.bobin{
	margin: 0 auto;
	width:50%;	
}

/* ↓採用情報ページ */
/* 点滅 */
@keyframes blinking {
0% {
	opacity: 0;
}
100% {
	opacity: 1;
}
}
.recbox {
 	position: relative;
	margin: 2em 0;
	padding: 0.5em 1em;
	border: solid 3px #62c1ce;
}
.recbox .box-title {
	position: absolute;
	display: inline-block;
	top: -27px;
	left: -3px;
	padding: 0 9px;
	height: 25px;
	line-height: 25px;
	font-size: 17px;
	background: #62c1ce;
	color: #ffffff;
	font-weight: bold;
	border-radius: 5px 5px 0 0;
}
.recbox-content {
	overflow: hidden;
}
.recbox-image {
	float: right;
	margin-left: 20px;
	margin-bottom: 10px;
	width: 160px;
}
.recbox-image img {
	width: 100%;
	padding-top:20px;
	height: auto;
	border-radius: 8px;
}
.recbox-text {
	overflow: hidden; /* float回避 */
}
.comment {
	display: flex;
	flex-wrap: wrap; /* 画面が狭いときに折り返す */
	gap: 20px; /* 間隔を設定 */
	justify-content: space-between; /* 要素を横に等間隔で配置 */
	max-width: 850px; /* 最大幅を指定（例: 1000px） */
	margin: 0 auto;    /* 左右中央寄せ */
	padding: 20px;     /* 内側に少し余白をつける（任意） */
	box-sizing: border-box;
}
/* お問い合わせはこちらボタン */
.btn-gradient-3d-simple {
	display: inline-block;
	padding: 0.5em 1em;
	text-decoration: none;
	border-radius: 4px;
	color: #ffffff;
	background-image: linear-gradient(#6795fd 0%, #67ceff 100%);
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	border-bottom: solid 3px #5e7fca;
	font-size: 1.5em;
}
.btn-gradient-3d-simple:active {
	-webkit-transform: translateY(4px);
	transform: translateY(4px);
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
	border-bottom: none;
}
.button-center {
	text-align: center; /* ボタンを中央寄せにする */
	margin: 50px 0; /* 上下に50pxの余白を設定、左右は0 */
}

/* フォーム入力スタイル */
form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
	width: 100%;
	max-width: 500px;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	background-color: #f9f9f9;
	transition: border-color 0.3s, background-color 0.3s;
	margin-top: 6px;
	margin-bottom: 6px;
}

form input:focus,
form textarea:focus {
	border-color: #5e9ed6;
	background-color: #fff;
	outline: none;
}
form label {
	display: block;
	font-weight: bold;
	margin-top: 12px;
}
form .red {
	color: red;
	font-size: 80%;
}
/* ラジオボタンスタイル（横並び） */
form input[type="radio"] {
	margin-right: 2px;
	margin-left: 2px;
}
/* ラジオボタンの親セルを調整 */
.radio-td {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap; /* スマホで崩れないように */
}
/* ラジオボタンとラベル文字を横に並べる */
.radio-td label {
	display: inline-flex;
	align-items: center;
	flex-direction: row; /* ← これがポイント */
	gap: 4px;
}
/* ボタン */
form button {
	background-color: #5e9ed6;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	font-size: 16px;
	cursor: pointer;
	transition: background-color 0.3s;
}
form button:hover {
	background-color: #3e8bb0;
}

.form-table {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 20px;
	border-collapse: collapse;
}
.form-table th,
.form-table td {
	padding: 12px;
	border-bottom: 1px solid #ccc;
	text-align: left;
	vertical-align: top;
	word-break: keep-all;
}
.form-table th {
	width: 30%;
	background-color: #f5f5f5;
	font-weight: bold;
}
.form-table input,
.form-table textarea {
	width: 100%;
	box-sizing: border-box;
}
h4 {
	font-size: 120%;
	width:800px;
	padding:10px 0 10px 20px;
	margin:  0 auto;
	background-color:#3e8bb0;
	color: #ffffff;
	box-sizing: border-box; /* パディングを横幅に含める */
	margin-top: 30px; /* 上に余白を追加して下げる（パソコン版も調整） */
}
/* 要素にアニメーションを適用 */
.blink {
	animation: blinking 1s ease-in-out infinite alternate;
	text-align:center;
	font-size: 1.5em;
	color:#a9a9a9;
}

/* リターンページ */
.dotill {

	text-align: center;
	padding-bottom: 20px;
}
.dotill img {
	width: 30%;
	display: inline-block;
}

/* ↓フッター */
hr {
	height: 1px;
	border: 0;
	border-top: 1px solid #e5e7eb;
}
.grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 7rem;
	margin-bottom: 1rem;
}
.dengyo_footer {
	padding: 2rem;
	font-size: 15px;
	color:#ffffff;
	background-color: #000000;
}
.footer_navi-heading {
	color:#ffffff;
	font-weight: 600;
}
.footer_navi li {
	margin-bottom: 0.75rem;
}
.footer_address {
	color:#ffffff;
	margin-bottom: 2rem;
}
.footer_address a {
	text-decoration: underline;
}
.dengyo_footer a{
	color: #ffffff;
	font-size:80%;
	text-decoration: none;
}
.dengyo_footer a:hover {
	color: #696969;
}
.copyright{
	  color: #ffffff;
}
@media (min-width: 768px) {
.md-flex {
	display: flex;
}
.md-justify-between {
	justify-content: space-between;
}
.grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}  
.footer_address a {
	text-decoration: none;
	pointer-events: none;
}
.enkaku {
	width: 60%; !important;
}
}
@media (min-width: 1024px) {
.lg-flex {
 	display: flex;
}
}

/* フェードイン */
.fadein {
	opacity: 0;
	transform: translateY(50px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
	padding: 0;
	margin: 0;
}
/* フェードイン後 */
.fadein.show {
	opacity: 1;
	transform: translateY(0);
}


/*768px以下の場合*/
@media (max-width:768px){
header img{
	float:none;
}
nav ul{
	text-align:left;
	padding:0;
}
article{
	width:auto;
}
article img{
	max-width:100%;
	height:auto;
}
.header-in{
	width:auto;
}
.container {
	width: 100%;
	margin: 0 0 20px;
	padding: 0; /* 任意：多少余白が必要なら調整 */
}
.float-left,
.float-right,
.container img {
	float: none;
	width: 100%;
	margin: 0;
	display: block;
}
.containerbox {
	width: 100%;
	margin: 20px auto;
	padding: 0;/* 任意の内側余白、不要なら 0 にしてOK */
	box-sizing: border-box;
}
.containerbox img{
	width:100%;
}
.bobin{
	margin: 0 auto; /* 横中央揃え */
	width:80%;	
}
h5{
	font-size:130%;
	padding-top: 40px;
	margin-top: 0;
	margin-left: 20px;
}
.container2 {
	width: 100%;
	margin: 20px auto;
	padding: 0 10px;
	box-sizing: border-box;
	flex-direction: column;
	align-items: center;
}
.sisin {
	width: 100%;
	margin: 20px auto;
	padding: 0 10px;
	box-sizing: border-box;
}
.bosss{
	width: 90%; /* 画像の幅 */
	margin: 20px; /* 画像の周囲の余白 */
	margin-bottom:20px;
	height: auto;
}
.text {
	margin: 0; /* ← ここ重要 */
	padding: 10px; /* コンテナの内側に均等な余白をつける */  
}
iframe{
	max-width:100%;
}
.comment,
.recbox {
	flex: 1 1 100%; /* 1列表示 */
}
.recbox-content {
	flex-direction: column;
  }
.recbox-image {
	float: none;
	clear: both;
	margin: 20px auto 0;
	text-align: center;
	width: 100%;
}
.recbox-image img {
	max-width: 180px;
	height: auto;
}
.enkaku th,
.enkaku td{
	display: block;
}
.enkaku th{
	display:none
}
.enkaku {
	width: 100%;
}
.title {
	width: 100%;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem;
  margin-bottom: 1rem;
}
.dotill {
	text-align: center;
	padding-bottom: 20px;
}
.dotill img {
	width: 50%;
	display: inline-block;
}
input:not([type="radio"]) {
	display: block;
	width: 100%;
}
input:not([type="radio"]),
textarea {
	width: 100%;
}
form button {
	width: 100%;
}
}

/*600px以下の場合*/
@media (max-width:600px){
nav ul{
	font-size:85%;
	padding-left:2px;
	padding-right:2px;
}
header img{
	float:none;
}
.greeting{
	padding-top:10px;
	text-align:center;
	position: relative;
	font-size:1.2rem;
	font-weight:bold;
	color:#778ca3;
}
.page{
	padding-left:10px;
	padding-right:10px;
}

h4 {
	font-size: 110%; /* 文字サイズを小さくしない */
	width: 100%; /* 横幅を最大に */
	padding: 10px 0 10px 20px; /* 任意でパディングを追加して調整 */
	box-sizing: border-box; /* パディングを横幅に含める */
	margin-top: 20px; /* 上に余白を追加して下げる */ }
}
}