@charset "utf-8";


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

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


/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {height: 100%;}
body {
	margin: 0px;
	padding: 0px;
	color: #000;	/*全体の文字色*/
	/*(old) #fff */
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 16px;	/*文字サイズ*/
	line-height: 1.6;		/*行間(old 2)*/
	background: #E0FFFF;	/*背景色*/
	/*(old) #002a7e */
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;font-weight: normal;}
ul {list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

@keyframes opa1 {
0% {opacity: 0;}
100% {opacity: 1;}
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #008080;		/*リンクテキストの色 (オリジナル#fff)*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	color: #00f;			/*マウスオン時の文字色 (old: #fcee21)*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
header {
	height: 9em;  /* (old)100%  */
	overflow: auto;
	position: relative; 
	background: #87CEFA;	/*背景色*/
	/*(old)  #003ebb     */
}
/*ロゴ画像*/
header #logo img {
	display: block;
	width: 20%;	/*画像の幅*/
	position: relative ;  /*  absolute   */
	left: 40%;		/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
	bottom: 30%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体への指定*/
#menubar {
	position: absolute;
	bottom: 5%;	/*ロゴやメニューが入っているブロックに対して、下からの配置場所の指定。*/
	left: 0px;
	width: 100%;
	text-align: center;
}
/*メニュー１個あたりの指定*/
#menubar li {
	display: inline-block;
	margin: 0 1%;
	animation-name: opa1;
	animation-delay: 1S;
	animation-duration: 1S;
	animation-fill-mode: both;
}
#menubar li a {
	text-decoration: none;display: block;text-align: left;  /* center */
	width: 160px;	/*メニューの幅 (old 140px)*/
	color: #000;	/*文字色 (#fff) */
/*	font-size: 14px;	*/	/*文字サイズ*/
	border-bottom: 2px solid transparent;	/*下線の幅、線種、色。transparentは透明の事。*/
	padding-bottom: 2px;	/*下線と文字の間にとる余白 (7px)*/
}
/*マウスオン時の指定*/
#menubar li a:hover {
	border-bottom: 2px solid #000;	/*下線の幅、線種、色(#fff) */
	letter-spacing: 0.1em;		/*文字間隔を少しだけ広くする指定。そのままがいいならこの１行を削除。*/
}

/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 1400px;	/*最大幅。これ以上広くならない指定。*/
	margin: 0 auto;
}

h1 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 30px;
	font-size: 30px;		/*文字サイズ*/
	font-family: sans-serif; /* font */
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	color: #F00;			/*文字色*/
	font-weight: bold;		/*太字に*/
}

h2 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 30px;
	font-size: 30px;		/*文字サイズ*/
	font-family: sans-serif; /* font */
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	color: #F00;			/*文字色*/
	font-weight: bold;		/*太字に*/
}


/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
#contents {
	overflow: hidden;
	padding: 50px 3%;
}
#contents section + section {
	padding-top: 50px;
}
/*コンテンツ内にあるh1(見出し)タグの指定*/
#contents h1 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;  /* (KM)上下は0, 左右は20px */
	font-size: 23px;		/*文字サイズ*/
	font-weight: bold;      /*太字*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	background: #000080;	/*背景色   (old: #fff  -> 変更#cf6->) */
	color: #ffc;			/*文字色  (#003ebb)*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}





/*コンテンツ内にあるh2(見出し)タグの指定*/
#contents h2 {
	margin-bottom: 20px;
	margin-left : 1%;
	margin-right : 1%;
	clear: both;
	padding: 0 20px;   /* (KM)上下は0, 左右は20px */
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #fff;	/*枠線の幅、線種、色*/
	background: #66f;	/*背景色   (teal/16中) */
	color: #ffc;			/*文字色  (#003ebb)*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}


/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	margin-bottom: 20px;
	clear: both;
	padding: 0 20px;   /* (KM)上下は0, 左右は20px */
	font-size: 18px;		/*文字サイズ*/
	text-align: center;		/*文字をセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする指定*/
	border: 2px solid #fff;	/*枠線の幅、線種、色*/
	background: #66f;	/*背景色   (teal/16中) */
	color: #ffc;			/*文字色  (#003ebb)*/
	border-radius: 100px;	/*角を丸くする指定。大きめであれば適当で構いません。*/
}


/*コンテンツ内にあるp(段落)タグ設定*/
#contents p {
	/* padding: 0px 20px 20px; */	/*上、左右、下への余白*/
	padding: 0px 20px 10px;	/*上、左右、下への余白*/
}
/*他。微調整。*/
#contents p + p {
	margin-top: -5px;
}
#contents h1 + p,
#contents h2 + p,
#contents h3 + p {
	margin-top: -10px;
}

/*Serviceページ
---------------------------------------------------------------------------*/
#service {
	background: #C0C0C0 ;  /*  背景色入れてみた　*/
}


.hako1 {
	    background-color: #9ff;
}

/*各ブロックごとの設定*/
.list {
	overflow: hidden;
	line-height: 1.5;
	border-bottom: 1px solid #fff;	/*下線の幅、線種、色*/
	padding: 20px;	/*ボックス内の余白*/
	/* background: #D0D0D0;  */  /* 背景色入れてみた   */
}
/*１番目のlistブロックへの追加指定。上に線を入れる。*/
.list:first-of-type {
	border-top: 1px solid #fff;
}
/*h4見出しの設定*/
.list h4 {
	font-size: 20px;	/*文字サイズ*/
	margin-bottom: 10px;
}
/*画像の設定*/
.list img {
	width: 20%;			/*画像幅*/
	float: left;		/*画像を左に回り込み    left -> none*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}
/*段落タグ*/
.list p {
	padding: 0 !important;
}

.withfig1 img {
	width: 250px;			/*画像幅*/
	float: right;		/*画像を左に回り込み    left -> none*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}

.withfig2 img {
	width: 600px;			/*画像幅*/
	float: right;		/*画像を左に回り込み    left -> none*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}

.withfig21 img {
	width: 200px;			/*画像幅*/
<!--	max-width: 40%; -->
	float: left;		/*画像を左に回り込み    left -> none*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}


.withfig3 img {
	width: 800px;			/*画像幅*/
	float: right;		/*画像を左に回り込み    left -> none*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}

.withfig30 img {
	width: 500px;		/*画像幅*/
	float: right;		/*画像を左に回り込み    left -> none*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}


.withfig31 img {
/*	width: 500px;	*/	/*画像幅*/
	float: right;		/*画像を左に回り込み    left -> none*/
	margin-right: 3%; 	/*画像の右側に空けるスペース*/
	margin-left: 3%;	/*画像の左側に空けるスペース*/
}

.withfig32 img {
/*	width: 500px;	*/	/*画像幅*/
/*    max-width: 20%; */
	float: right;		/*画像を左に回り込み    left -> none*/
/*	margin-right: 3%; */	/*画像の右側に空けるスペース*/
	margin-left: 3%;	/*画像の左側に空けるスペース*/
}


.withfig10 img {
	width: 40%;
	max-width: 400px;			/*画像幅*/
	float: right;		/*画像を左に回り込み    left -> none*/
	margin-right: 3%	/*画像の右側に空けるスペース*/
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #000080;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 85%;		/*文字サイズ*/
}
footer a {
	color: #fff;	/*リンクテキストの文字色*/
	text-decoration: none;
}
footer a:hover {
	color: #fff;	/*マウスオン時の文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#AAnew dl {
	padding-left: 20px;
	margin-bottom: 15px;
}
/*日付設定*/
#AAnew dt {
	float: left;
	width: 9em;
	letter-spacing: 0.1em;
}
/*記事設定*/
#AAnew dd {
	padding-left: 9em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色(白⇒黒）*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字をセンタリング*/
	font-weight: bold;		/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta1 th.tamidashi {
	width: auto;
	text-align: center;	/*文字をセンタリング*/
}
/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 95%;
	margin: 0 auto 20px;
	background : #fff;  /* 色を付けてみた */
}
.ta1, .ta1 td, .ta1 th {
	word-break: break-all;
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色(白⇒黒）*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta1 th {
	text-align: center;	/*センタリング*/
/*	width: 50%;		*/	/*幅*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta10 caption {
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色(白⇒黒）*/
	border-bottom: none;	/*下線だけ消す*/
	text-align: center;		/*文字をセンタリング*/
/* 	font-weight: bold;	*/	/*太字に*/
	padding: 10px;			/*ボックス内の余白*/
}
/*テーブル１行目に入った見出し部分（※tamidashi）*/
.ta10 th.tamidashi {
	width: auto;
	/* text-align: center;*/	/*文字をセンタリング*/
}
/*ta1テーブルブロック設定*/
.ta10 {
	table-layout: fixed;
	width: 95%;
	margin: 0 auto 20px;
	background : #fff;  /* 色を付けてみた */
}
.ta10, .ta10 td, .ta10 th {
	word-break: break-all;
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色(白⇒黒）*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta10 th {
	text-align: start;
	vertical-align: top;
	width: 50%;			/*幅*/
	font-weight: normal;
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta11 th.tamidashi {
	width: auto;
	/* text-align: center;*/	/*文字をセンタリング*/
}
/*ta1テーブルブロック設定*/
.ta11 {
	table-layout: fixed;
/*	width: 100%; */
	margin: 0 auto 20px;
	background : #fff;  /* 色を付けてみた */
}
.ta11, .ta11 td, .ta11 th {
	word-break: break-all;
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色(白⇒黒）*/
	padding: 10px;			/*テーブル内の余白*/
}
/*テーブルの左側ボックス*/
.ta11 th {
	text-align: start;
	vertical-align: top;
/*	width: 50%;		*/	/*幅*/
	font-weight: normal;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.scroll-show {display: block;}
.scroll a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*マウスオン時*/
.scroll a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	list-style: disc;
	padding: 0 20px 20px 55px;
}
ol {
	padding: 0 20px 20px 42px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #FF0;border: 1px solid #666;padding: 5px 10px;border-radius: 4px;}  /* background #000   */
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 15px 40px;list-style: disc;}
.color1, .color1 a {color: #fcee21;}
.color-check, .color-check a {color: #f00 !important;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.l {text-align: left;}
.big1 {font-size: 40px;letter-spacing: 0.2em;}
.mini1 {font-size: 11px;display: inline-block;line-height: 1.5;}
.sh {display: none;}

/*  menu固定入れてみた */

/*fixmenu。大きな端末で、メインメニューが画面上部についた時のスタイル。
---------------------------------------------------------------------------*/
.fixmenu{
	position: fixed !important;z-index: 100;
	left:0px;top:0px;
	width: 90%;
}




/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 30%;	/*画像の幅*/
	left: 35%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
}

header {
	height: 11em; 
}


}



/*画面幅480px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:480px){

/*ヘッダー（一番上の、ロゴやメニューが入っているブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo img {
	width: 50%;	/*画像の幅*/
	left: 25%;	/*ロゴやメニューが入っているブロックに対して、左からの配置場所の指定。*/
}

header {
	height: 11em; 
}


/*コンテナー（headerとfooterをのぞくブロックを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	font-size: 12px;
	font-size: 2.93vw;
}

/*コンテンツ（上のcontainerの中のブロック）
---------------------------------------------------------------------------*/
/*コンテンツ内にあるh1(見出し)タグの指定*/

#contents h1 {
	font-size: 16px;	/*文字サイズ*/
}
/*コンテンツ内にあるh2(見出し)タグの指定*/

#contents h2 {
	font-size: 15px;	/*文字サイズ*/
}

/*コンテンツ内にあるh3(見出し)タグの指定*/
#contents h3 {
	font-size: 14px;	/*文字サイズ*/
}

/*Serviceページ
---------------------------------------------------------------------------*/
/*h4見出しの設定*/
.list h4 {
	font-size: 16px;	/*文字サイズ*/
}

---------------------------------------------------------------------------*/
/*h5見出しの設定*/見出しの設定*/
h5 {
	font-size: 8px;	/*文字サイズ*/
}

/*ul.disc,olタグ
---------------------------------------------------------------------------*/
ul.disc {
	padding: 0 0px 20px 35px;
}
ol {
	padding: 0 0px 20px 35px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 96%;}
.big1 {font-size: 22px;letter-spacing: normal;}

}




/*スライドショー（slickを使用）
---------------------------------------------------------------------------*/
.slider {
	position: relative;   /* relative */
}

/*丸いページナビボタン全体を囲むブロック*/
ul.slick-dots {
	margin:0;padding: 0;
	line-height: 1;
	width: 100%;
	text-align: center;
	position: absolute;
	bottom: 10px;	/*下からの配置場所指定*/
}

/*丸いページナビボタン１個あたりの設定*/
ul.slick-dots li {
	display: inline-block;
	margin: 0 10px;
	cursor: pointer;
}

/*buttonタグ*/
ul.slick-dots li button {
	border: none;padding: 0;
	display: block;
	text-indent: -9999px;	/*デフォルトで文字が出るので画面の外に追い出す指定*/
	width: 12px;			/*ボタンの幅*/
	height: 12px;			/*ボタンの高さ*/
	border-radius: 50%;		/*丸くする指定*/
	cursor: pointer;		/*クリックで画像へジャンプするので、わかりやすいようhover時にpointerになるように。*/
	background: #ccc;		/*背景色。白⇒灰色に変更。*/	
}

/*buttonのアクティブ時（現在表示されている画像を示すボタン）*/
ul.slick-dots li.slick-active button {
	background: #00F;	/*色   old:#54adf1 */
}





.slider .slick-slide img {
  display: block;
  width: 100%;
  object-fit: cover;
}

/*---------- 矢印 ----------*/

.slider .slick-arrow {
  width: 25px; 
  height: 40px;
  border-radius: 50%;
  background-color: #000;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 0;
  position:absolute ; /* absolute */
  top: 180px;
  z-index: 1;
  /*  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16)); */
}
.slider .slick-arrow::before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #FFF ; /*   #09000d  */
  border-width: 3px 3px 0 0;
  position: auto;  /* absolute */ 
  top: 24px;
  transform: rotate(45deg);
}
.slider .slick-next {
  right: 0;
}
.slider .slick-prev {
  left: 0;
}
.slider .slick-next::before {
  left: 20px;
}
.slider .slick-prev::before {
  border-width: 0 0 3px 3px;
  right: 22px;
}

textarea[name="opinion"] {
  display: inline-block;
  width: 100%;
  height: 300px;
}

.toiawase{
  display: flex;
  align-items: center;
  justify-content: center;
}

/*製品FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 10px;	/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.2は色が20%出た状態の事。*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq999 dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	color: #54adf1;			/*アイコンの色*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
}

/*回答*/
.faq dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq dt span {text-indent: 0;}


/* クリックすると開く  */

details {
  border: 1px solid #aaa;
  border-radius: 4px;
  width: 95%;
  margin-left: 2% ;
  margin-right: 1% ;
  padding: 0.5em 0.5em 0;
  background: #fff;	/*背景　白*/
}

summary {
  font-weight: bold;
  margin: -0.5em -0.5em 0;
  padding: 0.5em;
  background: #fff;	/*背景　白*/
}

details[open] {
  padding: 0.5em;
}

details[open] summary {
  border-bottom: 1px solid #aaa;
  margin-bottom: 0.5em;
}

