@charset "utf-8";
/* 
---------------------------------------
リセット
---------------------------------------
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, /*sup, */tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
	margin: 0;
	padding: 0;
}
html {
	height: 100%;
	width: 100%;
	overflow-y: scroll;
}
input, textarea {
	margin: 0;
	padding: 0;
}
img, button {
	border: none;
}
img {
	vertical-align: bottom;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th {
	text-align: left;
	font-weight: normal;
}
a:focus {
	outline: none;
}
iframe{
vertical-align:bottom;
}
/*iOSでフォーカス時に画面がズームするのを防ぐ*/
input,
textarea,
select {
  font-size: 16px;
}
/*padding や border に依存しない width, height 指定*/
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
/* 
---------------------------------------
clear
---------------------------------------
*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {
	min-height: 1px;
}
* html .clearfix {
	height: 1px;/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}
.clear, .both {
	clear: both;
}
*:first-child+html .clearfix {
	zoom: 1;
} /* IE7 */
.clear_both {
	clear: both
}
/* 
---------------------------------------
link
---------------------------------------
*/
a {/**/
	color: #666;
	text-decoration: underline;
}
a:link {/*未訪問のリンク*/
}
a:visited {/*訪問済みのリンク*/
}
a:hover {
	transition-duration: 0.5s;
}
a:active {/*選択中のリンク*/
}

/*PCサイトで電話番号リンクさせない*/
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
a[href^="tel:"] {
	pointer-events: auto;
}
}
/* 
---------------------------------------
font-weight
---------------------------------------
*/
.bold {
	font-weight: bold;
}
/*  
---------------------------------------
text_align
---------------------------------------
*/
.alnL {
	text-align: left;
}
.alnC {
	text-align: center;
}
.alnR {
	text-align: right;
}
/* 
---------------------------------------
font-color
---------------------------------------
*/
.font-■■■ {
	color: #■■■;
}
/* 
---------------------------------------
float
---------------------------------------
*/
.fL {
	float: left;
}
.fR {
	float: right;
}
/* 
---------------------------------------
h1-h6
---------------------------------------
*/
h1, h2, h3, h4, h5, h6 {
	line-height: 1;
	font-weight: normal;
}
/* 
---------------------------------------
br
---------------------------------------
*/
br.sp {
	display: none;
}
br.pc {
	display: inline-block;
}
@media screen and (max-width: 480px) {
br.sp {
	display: inline-block;
}
br.pc {
	display: none;
}
}
/*
---------------------------------------
リストマーカー
---------------------------------------
*/
/* ※ */
ul.asterisk {
	padding-left: 1em;
    text-indent: -1em;
}
ul.asterisk li:before {
	content: '※';
}
/* (1)(2)・・・*/
ul.parentheses {
	padding-left: 2em;
	text-indent: -2em;
}
ul.parentheses li {
	/* list-style-type: none;
	list-style-position: inside;*/
	counter-increment: cnt;
}
ul.parentheses li:before {
	display: marker;
	content: "(" counter(cnt) ") ";
}
/* ①②・・・*/
ul.maru-number {
	counter-reset: myCounter;
}
ul.maru-number li {
	padding-left: 25px;
	text-indent: 0;
	position: relative;
}
ul.maru-number li:before {
	content: counter(myCounter);
	counter-increment: myCounter;
	display: block;
	float: left;
	line-height: 17px;
	margin-left: -25px;
	margin-top: 3px;
	text-align: center;
	height: 18px;
	width: 18px;
	border-radius: 50%;
	border: 1px solid #666;
}
/* 数字*/
ul.decimal {
	list-style-type: decimal;
	list-style-position: inside;
	padding-left: 1.3em;
	text-indent: -1.3em;
}
/* ローマ字*/
ul.roman {
	list-style-type: upper-roman;
	list-style-position: inside;
	padding-left: 1em;
	text-indent: -1em;
}
/* 黒丸*/
ul.disc {
	list-style-type: disc;
	list-style-position: inside;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
/*
---------------------------------------
背景色
---------------------------------------
*/
.bg-light-blue {
background: #e0ecf6;
}
/* 
---------------------------------------
body
---------------------------------------
*/
body {
	min-width: 1140px;/* スマホでheader等の背景が伸びないのを防ぐ */
	min-height: 100%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	-webkit-text-size-adjust: 100%;/* 文字サイズを自動調整する機能を無効化 */
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
body {
	min-width: 100%;
	font-size: 14px;
}
}
/* 
---------------------------------------
wrapper
---------------------------------------
*/
.wrapper {
	width: 100%;
	/*background: #fff;*/
}
/* 
---------------------------------------
inner：共通（幅100％時のコンテンツ幅）
---------------------------------------
*/
.inner,
.inner-tbp {
	width: 1140px;
	margin: 0 auto;
	padding: 0 20px;
}
.inner-tbp {
	padding-top: 50px;
	padding-bottom: 10px;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
.inner, .inner-tbp {
	width: 100%;
}
.inner-tbp {
	padding-top: 60px;
	padding-bottom: 60px;
}
}
/* 
---------------------------------------
header：共通
---------------------------------------
*/
header {
	width: 100%;
	z-index: 10000;
	background: #fff;
	height: 90px;
	display: flex;
	justify-content: space-between;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	box-shadow: 0 0 20px rgba(70,70,70,0.2);
}
header .l-box,
header .r-box {
	display: flex;
	align-self: center;
}
header .l-box {
	height: 40%;
	padding-left: 60px;
}
header .r-box {
	height: inherit;
	padding-right: 60px;
}
header .l-box #logo-area {
	display: flex;
	align-items: center;
}
header .l-box #logo-area a {
	height: 100%;
}
header .l-box #logo-area img {
	width: auto;
	height: 100%;
}

header .ft-line::before{
	content: '―';
	margin-right:5px;
	color:#0068b6;
}

@media screen and (max-width: 896px) {/* スマホ 横から */
header {
	width: 100%;
	height: 70px;/* 高さに合わせた関連css有 */
	position: fixed;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
header .l-box {
	width: calc(100% - 70px - 30px); 
	height: 50%;
	padding-left: 15px;
}
header .l-box img{
	max-width: 100%; 
}
header .r-box {
	height: 100%;
	padding-right: 0;
}
}


/* 
---------------------------------------
header：PC用メニュー
---------------------------------------
*/
/* 切替*/
header #pc-menu {
	display: block;
	height: inherit;
}
header #sp-menu,
header .drawer,
header .menu {
	display: none;
}
/* レイアウトここから */
header #pc-menu .g-nav {
	display: flex;
	align-items: center;
	height: inherit;
}
header #pc-menu .g-nav li {
	position: relative;font-weight: bold;cursor: pointer;
}
header #pc-menu .g-nav li:not(:last-child) {
	margin-right: 40px;
	height: inherit;
    display: flex;
    align-items: center;
}
header #pc-menu .g-nav li a {
	text-decoration: none;
	font-weight: bold;
}
header #pc-menu .g-nav li:not(:last-child) a:hover {
	color: #0068b6;
}
header #pc-menu .g-nav li:last-child {
	height: 60%;
}
header #pc-menu .g-nav li:last-child a {
	height: 100%;
}
header #pc-menu .g-nav li:last-child a {
	display: flex;
	place-items: center;
	background: #303030;
	color: #FFF;
	padding: 0 30px 0 20px;
	position: relative;
}
header #pc-menu .g-nav li:last-child a:hover {
	opacity: 0.8;
}
header #pc-menu .g-nav li:last-child a::after {
	content: "";
	width: 15px;
	height: 15px;
	background: url(../images-jp/common/arrow_w.png) no-repeat;
	background-size: contain;
	position: absolute;
	/*bottom: 35px;*/
	right: 10px;
}

/* ドロップダウンメニュー */
header #pc-menu .g-nav li .dropdown__lists {
    display: none;/*デフォルトでは非表示の状態にしておく*/
    position: absolute;
    top: 90px;
    left: -16px;
	white-space: nowrap;
}

header #pc-menu .g-nav li:hover .dropdown__lists {
	display: block;
	background-color: #fff;
}

header #pc-menu .g-nav li .dropdown__list {
    height: 60px;
    transition: all .3s;
    position: relative;
}
header #pc-menu .g-nav li .dropdown__list:hover {
   
}
header #pc-menu .g-nav li .dropdown__list a {
    display: flex;
    justify-content: left;
    align-items: center;
	background-color: #fff;
	color: #666;
    text-decoration: none;
    position: relative;
	padding: 10px 20px;
}
header #pc-menu .g-nav li .dropdown__lists li {
    margin-right: initial;
}

/* 
---------------------------------------
header：SP用メニュー
---------------------------------------
*/
/* 切替*/
@media screen and (max-width: 896px) {/* スマホ 横から */
header #sp-menu,
header .drawer {
	display: block;
}
header #pc-menu,
header .pc-info {
	display: none;
}
}
/* レイアウトここから */
header #sp-menu {
	background: #edf8fd;
	position: fixed;
	z-index: -1;
	width: 100%;
	height: calc(100% - 70px);/* header高さ分 */
	padding: 30px;
	margin-top:70px;
}
/* ■■■ */
header #sp-menu .g-nav {
	margin-bottom:60px;

}
header #sp-menu .g-nav li a{
	padding:20px;
	border-bottom:#0068b6 solid 1px;
	text-decoration:none;
	display:block;
	position: relative;
	padding-left: 20px;
}
header #sp-menu .g-nav li a::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #0068b6;
  border-right: solid 2px #0068b6;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}

header #sp-menu .g-nav .accordion-title {
	cursor: pointer;
	padding:20px;
	border-bottom:#0068b6 solid 1px;
	text-decoration:none;
	display:block;
	position: relative;
	padding-left: 20px;
}
header #sp-menu .g-nav .accordion-title::after{
	content: '';
	width: 6px;
	height: 6px;
	border: 0px;
	border-top: solid 2px #0068b6;
	border-right: solid 2px #0068b6;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -4px;
  }

header #sp-menu .g-nav .accordion-content {
	display: none;
	padding: 10px 20px;
}
.accordion-content p {
	font-size: 13px;
	line-height: 1.5;
}



header #sp-menu .sp-info{
	position: relative;
}
header #sp-menu .sp-info a{
	padding:20px;
	text-decoration:none;
	display:block;
	background:#303030;
	color:#FFF;
}
header #sp-menu .sp-info a::after{
  content: '';
  width: 6px;
  height: 6px;
  border: 0px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
}

 /* ボタン */
.drawer {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	position: relative;
	height: 70px;
	/* padding: 3px 20px 4px 20px;MENUの文字入れる場合*/
	padding: 23px 20px 17px 20px;
	background:#0068b6;
}
 /* ▼トグル部分▼ */
.navbar_toggle {
	z-index: 10000;
}
.navbar_brand {/* MENUの文字入れる場合*/
	font-size: 10px;
	color: #fff;
}
.navbar_toggle_icon {
	 position: relative;
	 display: block;
	 height: 2px;
	 width: 30px;
	 background: #fff;
	 -webkit-transition: ease .5s;
	 transition: ease .5s;
}
.navbar_toggle_icon:nth-child(1) {
	 top: 0;
}
.navbar_toggle_icon:nth-child(2) {
	 margin: 8px 0;
}
.navbar_toggle_icon:nth-child(3) {
	 top: 0;
}
/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
	 top: 10px;
	 -webkit-transform: rotate(45deg);
	 transform: rotate(45deg);
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
	 -webkit-transform: translateY(-50%);
	 transform: translateY(-50%);
	 opacity: 0;
}
.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
	 top: -10px;
	 -webkit-transform: rotate(-45deg);
	 transform: rotate(-45deg);
}
 /* ▼ナビゲーション部分▼ */
.menu {
	 -webkit-transform: translateX(-100%);
	 transform: translateX(-100%);
	 -webkit-transition:ease .5s;
	 transition:ease .5s;
	 z-index:1000;
}
/*OPEN時の動き*/
.menu.open {
	 -webkit-transform:translateX(0);
	 transform:translateX(0);
	 overflow-y: auto;
	 -webkit-overflow-scrolling: touch;
}

/*
---------------------------------------
ページ内リンク調整（ヘッダ固定の場合）
---------------------------------------
*/
.scroll {
	margin-top:-90px;/* header高さ分 */
	padding-top:90px;/* header高さ分 */
}

@media screen and (max-width: 896px) {/* スマホ 横から */
.scroll {
	margin-top:-70px;/* header高さ分 */
	padding-top:70px;/* header高さ分 */
}
}
/*
---------------------------------------
contents（ヘッダ固定の場合）
---------------------------------------
*/
#contents {
	padding-top: 90px;/* header高さ分 */
}
@media screen and (max-width: 896px) {/* スマホ 横から */
#contents {
	padding-top: 70px;/* header高さ分 */
}
}
/*
---------------------------------------
footer
---------------------------------------
*/
footer {
	padding-top:60px;
	background:#f7f7f7;
}
footer .flex-box{
	display:flex;
	justify-content: space-around ;
	font-weight:bold;
}
footer .flex-box a{
	text-decoration:none;
}
footer .flex-box a:hover{
	color:#0068b6;
}
footer .flex-box .ft-service .ft-line{
	font-weight:normal;
}
footer .flex-box .ft-service .ft-line::before{
	content: '―';
	margin-right:5px;
	color:#0068b6;
}
footer .logo-area{
	text-align:center;
	margin:60px 0 30px 0;
}
footer .logo-area a:hover {
	opacity:0.5;
}	
footer .logo-area .photo-area{
	width:20%;
}
footer .logo-area img{
	width:100%;
}
footer #footer-wp{
	background:#0068b6;
	text-align:center;
	color:#FFF;
	padding:15px;
}

.fixed-ftr{
	position: fixed;
    background: rgba(0,0,0,0.6);
	bottom: 0;
	right: 0;
	width: 100%;
	z-index: 100;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 4.5em;
}


.fix-btn1{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #0068b6;
	padding: 1%;
	color:#fff;
	text-decoration: none;
	border-radius: 10px;
	margin-right: 20px;
	font-weight: bold;
	height: 43px;
}

.fix-btn2{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fb8a12;
	padding: 1%;
	color:#fff;
	text-decoration: none;
	border-radius: 10px;
	font-weight: bold;
	height: 43px;
}

.fixed-ftr a:hover{
	opacity: 0.7;
}


.closebtn {
  position: absolute;
  top:-40px;
  right:20px;	
  color: black;
  font-weight: bold;
  font-size: 40px;
  line-height: 25px;
  cursor: pointer;
  transition: 0.3s;
}

br.onlysp{
	display: none;
}


@media screen and (max-width: 480px) {/* スマホ　縦から */
footer .flex-box{
	display: block;
}
footer .flex-box li{
	border-bottom:#999 solid 1px;
	padding-top:20px;
	padding-bottom:20px;
	padding-left:10px;
}
footer .flex-box li.border-cut{
	border-bottom: none;
}
footer .flex-box li.pd{
	padding-bottom:0;
}
footer .flex-box li.pt{
	padding-top:0;
}
footer .logo-area .photo-area{
	width:70%;
}
	.fixed-ftr a{
		width: 170px;
		padding: 2%;
		text-align: center;
		line-height: 1.3;
	}
	
	br.onlysp{
		display: block;
	}
	
	.fixed-ftr{
		padding: 2% 0;
	}
	
	
}
/* 
---------------------------------------
共通
---------------------------------------
*/
h3.common{
	font-size: 3em;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 60px;
	text-align: center;
	color:#0068b6;

}
h3.common sub {
	display: block;
	font-size: 0.35em;
	margin-top: 10px;
	color: #333;
	font-weight: normal;
}

@media screen and (max-width: 480px) {/* スマホ　縦から */
h3.common{
	font-size: 2.5em;
}
h3.common sub{
	font-size: 0.4em;
	/*margin-bottom: 20px;*/
}
}
/***************************************
top：index.html
***************************************/
/* 
---------------------------------------
slide(Swiper)
---------------------------------------
*/
#slide {
	padding: 60px 0 30px 0;
	background: #f7f7f7;
	overflow: hidden;
}
#slide .swiper-container {
	width: 100%;
	max-width: 1020px !important;
	height: 450px--;
	margin: 0 auto !important;
	overflow: visible !important;
}
#slide .swiper-slide {
    width: 100%;
	position: relative;
	border-radius: 20px;
}
#slide .swiper-slide::before {
    content:"";
    display: block;
    padding-top: 44%; /* 高さを幅の44.11764705882353%に固定 */
}
#slide .swiper-slide a{
	position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
#slide .swiper-slide img {
	border-radius: 20px;
	width:100%;
}

@media screen and (max-width: 480px) {/* スマホ　縦から */
#slide {
	padding: 40px 0 30px 0;
}
/*#slide .swiper-slide a{
	font-size: 45px;
}
#slide .swiper-slide a sub{
	margin-top: 10px;
	font-size: 23px;
}
#slide .swiper-slide a sub::before,
#slide .swiper-slide a sub::after  {
    content: '';
}*/
}
/*#slide .swiper-slide.slide01{
	background:url(../images-jp/top/slide01.jpg) no-repeat;
	background-position: top center;
	background-size: cover;
}
#slide .swiper-slide.slide02{
	background:url(../images-jp/top/slide02.jpg) no-repeat;
	background-position: top left;
	background-size: cover;
}
#slide .swiper-slide.slide03{
	background:url(../images-jp/top/slide03.jpg) no-repeat;
	background-position: top left;
	background-size: cover;
}*/
/* 前・次ボタン */
#slide .swiper-button-next,
#slide .swiper-button-prev {
   outline: none !important;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#slide .swiper-button-next,
#slide .swiper-button-prev {
   display: none !important;
}
}
/* ページネーション */
#slide .swiper-pagination{
position:relative !important;/* 外（下）に出す場合 */
margin-top: 30px;
}
#slide .swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 4px!important;/* 間隔(外（下）に出す場合)*/
}
/* 
---------------------------------------
NEWS
---------------------------------------
*/
#top-news {
	display: flex;
	flex-wrap:wrap;
}

/*タイトル*/
#top-news .tt-box {
	width: 25%;
}

/*テキスト*/
#top-news .text-box {
	width: 75%;
}
#top-news .text-box .catch {
	font-size: 1.6em;
	line-height: 1.3;
	font-weight: bold;
	margin-bottom: 60px;
}
#top-news .text-box .catch sub{
	display: block;
	margin-top: 20px;
	font-size: 0.8em;
}
#top-news .news-list .flex-box{
	display:flex;
	justify-content: space-between--;
	padding: 15px;
}
#top-news .news-list .flex-box .date{
	flex-wrap: nowrap--;
	margin-right: 2em;
}
#top-news .news-list .flex-box .title{
	flex: 1;
}
#top-news .news-list hr{
	margin:30px 0;
}
#top-news .news-index{
	text-align: right;
}
#top-news .news-index a{
	padding:10px 30px;
	background:#0068b6;
	display: inline-block;
	text-decoration:none;
	color:#FFF;
}
#top-news .news-index a:hover {
	opacity:0.5;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#top-news {
	display:block;
}
/*タイトル*/
#top-news .tt-box {
	width: 100%;
}
/*テキスト*/
#top-news .text-box {
	width: 100%;
}
#top-news .news-list .flex-box{
	display: block;
}
#top-news .news-list .flex-box .date{
	width:100%;
	margin-right: 0;
}
#top-news .news-list .flex-box .title{
	width:100%;
}
#top-news .news-index{
	text-align: center;
}
}	
/* 
---------------------------------------
COMPANY
---------------------------------------
*/
#top-company-wp{
	background:#b2d0e9;
}
#top-company .top-company-lead {
	display: flex;
	flex-wrap: wrap;
	text-align:center;
}	
#top-company .top-company-lead .main {
	width: 80%;
	height: auto;
}



#top-company .top-company-lead .sub {
	background: #fff;
	width: 50%;
	margin: 0px auto;/*最後の1つだけ右寄せ*/
	display:flex;
	justify-content:center;
	padding:30px 0;
}

.ytb_flex{
	display: flex;
	justify-content: space-between;
	margin:40px 0;
}

.ytb-box {
    width: 45%;
    aspect-ratio: 16 / 9;
    margin: 20px auto;
}

.ytb-box iframe {
    width: 100%;
    height: 100%;
}

.ytb-box p{
	color:#fff;
	font-weight: bold;
	text-align: center;
	font-size: 1.3em;
}

#top-company .top-company-lead .sub .box .company-lead-more a {
	padding:10px 30px;
	background:#0068b6;
	display: inline-block;
	text-decoration:none;
	color:#FFF;
}
#top-company .top-company-lead .sub .box .company-lead-more a:hover {
	opacity:0.5;
}	
@media screen and (max-width: 480px) {/* スマホ　縦から */
#top-company .top-company-lead {
	display: block;
}	
#top-company .top-company-lead .main {
	width: 100%;
}
#top-company .top-company-lead .sub {
	width: 90%;
	margin-left:0 ;/*最後の1つだけ右寄せ*/
	margin-top: -25px;
	display: inline-block;
}
	.ytb_flex{
		display: block;
	}	
	
	.ytb-box{
		margin-bottom: 20px;
		width: 100%;
	}
	
	
}

/* 
---------------------------------------
PRODUCT
---------------------------------------
*/
#top-product{
	padding-top:110px;
}	
#top-product .flex-box{
	display:flex;
	align-items: center;
	border-bottom:#0068b6 2px solid;
	padding-bottom:10px;
	text-decoration:none;
	margin-bottom:20px;
}
#top-product a:hover {
	opacity:0.5;
}	
#top-product .flex-box h4{
	font-weight:bold;
	font-size:1.2em;
	margin-right:10px;
}
#top-product .bottom{
	margin-bottom:80px;
}
#top-product .product-list{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
#top-product .product-list::after{
  content:"";
  display: block;
}
#top-product .product-list::after,
#top-product .product-list li{
	width:calc((100% - 8%) / 3);
}
#top-product .product-list li{
	display:flex;
}
#top-product .product-list li:nth-child(n+4) {
	margin-top: 60px;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
#top-product .product-list::after,
#top-product .product-list li {
	width:calc((100% - 4%) / 2);
}
#top-product .product-list li:nth-child(n+3) {
	margin-top: 30px;
}
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#top-product .product-list::after,
#top-product .product-list li{
	width:100%;
}
#top-product .product-list li:nth-child(n+2) {
	margin-top: 30px;
}
}
#top-product .product-list li a{
	background: linear-gradient(to bottom right, #cccccc 5%, #f7f7f7 30%); 
	padding:20px 0;
	display:flex;
	align-items: center;
	text-decoration:none;
	position: relative;
}
#top-product .product-list li a::after{
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images-jp/common/arrow.jpg) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 10px;
	right: 10px;
}
#top-product .product-list li a.blade01-bg{/*画像透明度30%ni加工*/
	background:url(../images-jp/top/blade01-bg.png) ,linear-gradient(to bottom right, #cccccc 5%, #f7f7f7 30%); 
	background-repeat: no-repeat;
	background-position: right 50px center , left top;
	background-size: auto 70%, 100% 100%;
}
#top-product .product-list li a.blade02-bg{/*画像透明度30%ni加工*/
	background:url(../images-jp/top/blade02-bg.png) ,linear-gradient(to bottom right, #cccccc 5%, #f7f7f7 30%); 
	background-repeat: no-repeat;
	background-position: right 50px center , left top;
	background-size: auto 70%, 100% 100%;
}
#top-product .product-list .photo{
	width:30%;
	margin:0 20px;
}
#top-product .product-list img{
	width:100%
}
#top-product .product-list .title{
	font-weight:bold;
	line-height: 1.3;
	text-align: center;
}
#top-beauty-wp{
	background:#f7f7f7;
}
#top-beauty{
	display:flex;
}
#top-beauty .photo-area{
	width:50%;
}
#top-beauty .photo-area img{
	width:100%;
}
#top-beauty .text-area{
	width:50%;
	display:flex;
	flex-direction: column;
	align-items: center;
}
#top-beauty .text-area h4{
	font-size:2.5em;
	font-weight: bold;
	color:#cda825;
	text-align:center;
}
#top-beauty .text-area h4 sub{
	display: block;
	margin-top: 10px;
	margin-bottom: 40px;
	font-size: 0.3em;
	font-weight: normal;
	color:#333;
}
#top-beauty .text-area p{
	margin-bottom: 20px;
}
#top-beauty .text-area .beauty-link a{
	background:#cda825;
	padding:10px 65px 10px 40px;
	text-decoration:none;
	color:#FFF;
	position: relative;
}
#top-beauty .text-area .beauty-link a:hover {
	opacity:0.5;
}	
#top-beauty .text-area .beauty-link a::after{
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images-jp/common/link.png) no-repeat;
	background-size: contain;
	position: absolute;
	bottom: 10px;
	right: 35px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#top-beauty{
	display: block;
}
#top-beauty .photo-area{
	width:100%;
}
#top-beauty .text-area{
	width:100%;
	font-size:0.9em;
	margin-top:30px;
}
}

/* 
---------------------------------------
movie
---------------------------------------
*/	
#top-movie .flex-box{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	margin-bottom:40px;
}
#top-movie .flex-box::after{
  content:"";
  display: block;
}
#top-movie .flex-box::after,
#top-movie .flex-box li{
	width:calc((100% - 8%) / 3);
}
#top-movie .flex-box li:nth-child(n+4) {
	margin-top: 60px;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
#top-movie .flex-box::after,
#top-movie .flex-box li {
	width:calc((100% - 4%) / 2);
}
#top-movie .flex-box li:nth-child(n+3) {
	margin-top: 30px;
}
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#top-movie .flex-box::after,
#top-movie .flex-box li{
	width:100%;
}
#top-movie .flex-box li:nth-child(n+2) {
	margin-top: 30px;
}
}
#top-movie .movie-list{
	text-align:center;
}
#top-movie .movie-list a{
	background:#0068b6;
	padding:10px 30px;
	display: inline-block;
	text-decoration:none;
	color:#FFF;
}
#top-movie .movie-list a:hover {
	opacity:0.5;
}
/*@media screen and (max-width: 480px) { スマホ　縦から 
#top-movie .flex-box{
	display: block;
	margin-bottom:40px;
}
#top-movie .flex-box li{
	margin-right:0;
	width:100%;
	margin-bottom:20px;
}
#top-movie .flex-box li:last-child{
	margin-bottom:0;
}

}*/
/* 
---------------------------------------
CATALOG
---------------------------------------
*/	
#top-catalog-wp{
	background: linear-gradient(to bottom, #FFF 50%, #0068b6 50%); 
}
#top-catalog {
	display:flex;
}
#top-catalog .photo-area{
	width:40%;
	margin:0 50px 0 80px;
	background: #000;
}
#top-catalog .photo-area a:hover {
	opacity:0.7;
}
#top-catalog .photo-area img{
	width:100%;
}
#top-catalog .text-area{
	display:flex;
	flex-direction: column;
	justify-content: flex-end ;
	text-align:center;
	color:#FFF;
}
#top-catalog .text-area h3 sub,
#top-catalog .text-area h3{
	color:#FFF;
}
#top-catalog .text-area .catalog-list a{
	background:#fff;
	padding:10px 30px;
	display: inline-block;
	text-decoration:none;
	color:#0068b6;
	font-weight: bold;
}
#top-catalog .text-area .catalog-list a:hover {
	opacity:0.8;
}
@media screen and (max-width: 896px) {/* スマホ 横から */
#top-catalog-wp{
	background: linear-gradient(180deg,#FFF 0%,#FFF 30%,#0068b6 30%,#0068b6 100%);
}
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#top-catalog-wp{
	background: linear-gradient(to bottom, #FFF 40%, #0068b6 40%); 
}
#top-catalog {
	display: block;
}
#top-catalog .photo-area{
	width:100%;
	margin:0 0 50px 0;
	display:flex;
	justify-content:center;
	background: none;

}
#top-catalog .photo-area a{
	width:80%;
}
#top-catalog .text-area .catalog-list a{
}
}
/* 
---------------------------------------
RECRUIT
---------------------------------------
*/	
#top-recruit-wp{
}
#top-recruit{
	display:flex;
}
#top-recruit .photo-area{
	width:50%;
	margin-right:5%;
}
#top-recruit .photo-area img{
	width:100%;
}
#top-recruit .text-area{
	width:40%;
	display:flex;
	align-items: center;
	text-align: center;
}
#top-recruit .text-area p{
	margin-bottom: 20px;
}
#top-recruit .text-area .recruit-link a{
	padding:10px 30px;
	background:#0068b6;
	display: inline-block;
	text-decoration:none;
	color:#FFF;
}
#top-recruit .text-area .recruit-link a:hover {
	opacity:0.5;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#top-recruit{
	display: block;
}
#top-recruit .photo-area{
	width:100%;
	margin-right:0;
}
#top-recruit .text-area{
	width:100%;
	display: block;
	text-align:center;
	margin-top:30px;
}
}	
/* 
---------------------------------------
CONTACT
---------------------------------------
*/
#top-contact-wp{
	background: url(../images-jp/top/contact_bg.jpg) no-repeat;
	background-size:cover;
	padding:60px 20px;
}	
#top-contact{
	background: #FFF;
	padding:60px;
	text-align:center;
}
#top-contact p{
	margin-bottom:30px;
}	
#top-contact .contact-link a{
	padding:10px 30px;
	background:#0068b6;
	display: inline-block;
	text-decoration:none;
	color:#FFF;
}
#top-contact .contact-link a:hover {
	opacity:0.5;
}	
@media screen and (max-width: 480px) {/* スマホ　縦から */
#top-contact-wp{
	background: url(../images-jp/top/contact_bg.jpg) ;
	background-position: 10% 75%;
}	
#top-contact{
	padding:30px 20px;
}
}
/***************************************
下層共通
***************************************/
/* 
---------------------------------------
ページタイトル
---------------------------------------
*/
#page-title-wp {
	background-repeat: no-repeat-;
	background-size: cover;
	position: relative;
	z-index: -2;
	display: flex;
	align-items: center;
	height: 400px;
}
#page-title-wp::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:rgba(0, 0, 0, 0.5);
	z-index: -1;
}
#page-title-wp.product-bit{
	background: url(../images-jp/products/bit/bg-pagetitle-product-bit.jpg) no-repeat;
	background-position: center top;
}
#page-title-wp.product-file{
	background: url(../images-jp/products/file/bg-pagetitle-product-file.jpg) no-repeat;
	background-position: left top;
}
#page-title-wp.others{
	background: url(../images-jp/products/file/others-title.png) no-repeat;
	background-position: left top;
}

#page-title-wp.product-cutter{
	background: url(../images-jp/products/cutter/bg-pagetitle-product-cutter.jpg) no-repeat;
	background-position: bottom center ;
}
#page-title-wp.product-cup{
	background: url(../images-jp/products/cup/bg-pagetitle-product-cup.jpg) no-repeat;
	background-position: bottom center ;
}

#page-title-wp.manufact{
	background: url(../images-jp/products/manufacturing/bg-pagetitle-product-manufact.jpg) no-repeat;
	background-position: bottom center ;
}

#page-title-wp.product-blade{
	background: url(../images-jp/products/blade/bg-pagetitle-product-blade.jpg) no-repeat;
	background-position: bottom center ;
}
#page-title-wp.news{
	background: url(../images-jp/news/bg-pagetitle-news.jpg) no-repeat;
	background-position: center ;
}
#page-title-wp.company{
	background: url(../images-jp/company/bg-pagetitle-company.jpg) no-repeat;
	background-position: center ;
}
#page-title-wp.recruit{
	background: url(../images-jp/recruit/bg-pagetitle-recruit.jpg) no-repeat;
	background-position: center ;
}
#page-title-wp.contact{
	background: url(../images-jp/contact/bg-pagetitle-contact.jpg) no-repeat;
	background-position: left bottom;
}
#page-title-wp.catalog{
	background: url(../images-jp/catalog/bg-pagetitle-catalog.jpg) no-repeat;
	background-position: center top;
}
#page-title-wp.product-machine{
	background: url(../images-jp/company/bg-pagetitle-company.jpg) no-repeat;
	background-position: left top;
}
#page-title-wp.movie{
	background: url(../images-jp/movie/bg-pagetitle-mov.jpg) no-repeat;
	background-position: center center;
}
#page-title {
	color: #fff;
}
#page-title .tt {
	font-size: 3em;
	font-weight: bold;
}
#page-title .tt sub {
	display: flex;
	font-size: 0.5em;
	margin-top: 10px;
}
#page-title .tt sub:before {
	content: "/";
	margin-right: 10px;
}
/* 
---------------------------------------
パン屑
---------------------------------------
*/
#breadcrumb-wp {
	background: #FFF;
	/*margin-bottom: 60px;*/
}
#breadcrumb {
	display: flex;
	align-items: center;
	padding: 10px 0;
	font-size: 0.8em;
	line-height: 1;
}
#breadcrumb li sub,
#breadcrumb li h2{
	display: inline-block;
	font-size: 1em;
}
#breadcrumb li:not(:first-child)::before {
	content: ">";
	margin: 0 8px;
	font-weight: bold;
}
#breadcrumb li sub::before {
	content: "/";
	margin: 0 0.5em;
	font-weight: bold;
}
#breadcrumb li a{
	display: inline-block;
	text-decoration: none;
	border-bottom: 1px solid #666;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#breadcrumb-wp {
	padding-left:10px;
}
}

/* 
---------------------------------------
youtube
---------------------------------------
*/
.youtube-wp {
  aspect-ratio: 16 / 9;/*w:560 h:150の比率の場合*/
}
.youtube-wp iframe {
  width: 100%;
  height: 100%;
}
/* 
---------------------------------------
画像：png画像に影
---------------------------------------
*/
img.png-shadow {
	filter: drop-shadow(4px 4px 4px #aaa);
}
/***************************************
リクルート：recruit.html
***************************************/

#recruit .recruit-end{
	text-align:center;
	margin-bottom:60px;
}
#recruit .entry-img ul{
	display:flex;
	justify-content: center;
}
#recruit .entry-img li{
	margin-right:30px;
	margin-bottom:60px;
}
#recruit .entry-img li:last-child{
	margin-right:0;
}
#recruit .entry-img li img{
}



#recruit table {
	width:70%;
	margin:0 auto;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#recruit table {
	width:100%;
}
}

#recruit table th {
	width:25%;
	padding:30px;
	vertical-align:middle;
	border-bottom:#0068b6 solid 1px;
	font-weight:bold;
	white-space: nowrap;
}
#recruit table td {
	width:;
	padding:20px;
	vertical-align:middle;
	border-bottom:#b2d0e9 solid 1px;
}
#recruit table.mb {
	margin-bottom:120px;
}

/***************************************
会社案内：company.html
***************************************/
#mission-wp {
	background: url(../images-jp/company/bg-mission.jpg) no-repeat;
	background-position: center ;
}
#mission.inner {
	padding:40px;
}
#mission .mission-area {
	background:rgba(255, 255, 255, 0.6);
	padding:40px;
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
#mission h4 {
	margin-bottom:20px;
	font-size:1.3em;
	font-weight:bold;
	border-bottom:#999 solid 1px;
	padding-bottom:20px;
}
#mission p {
	font-size:0.9em;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#mission.inner {
	padding:20px;
}
#mission .mission-area {
	padding:40px 20px;
}
}
#information table {
	width:70%;
	margin:0 auto;
}
#information table th {
	width:25%;
	padding:30px;
	vertical-align:middle;
	border-bottom:#0068b6 solid 1px;
	font-weight:bold;
}
#information table td {
	padding:20px;
	vertical-align:middle;
	border-bottom:#b2d0e9 solid 1px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#information table {
	width:100%;
}
#information table th {
	width:25%;
	padding:20px 10px;
	text-align:center;
}
#information table td {
	padding:20px 10px;
}
}
#office-wp {
	background:#f7f7f7;
}
#office h4 {
	font-size:1.5em;
	font-weight:bold;
	text-align:center-;
	border-bottom:#0068b6 2px solid;
	margin-bottom:30px;
	padding-bottom:10px;
}
#office h4 sub {
	font-size:0.7em;
	margin-left:10px;
}
#office .main-area .flex-box{
	display:flex;
	margin-top:30px;
}
#office .main-area .flex-box .photo-area{
	width:60%;
}
#office .main-area .flex-box .photo-area img{
	width:100%;
}
#office .main-area .flex-box .data-area{
	width:40%;
	padding-left:40px;
	display:flex;
	flex-direction:column;
	justify-content: center;

}
#office .main-area .flex-box .data-area .tt{
	font-size:1.3em;
	font-weight:bold;
}
#office .main-area .flex-box .data-area .tt.mt{
	margin-top:30px;
}

#office .main-area .flex-box .data-area dl{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}
#office .main-area .flex-box .data-area dt{
	width:20%;
	padding:5px 0;

}
#office .main-area .flex-box .data-area dd{
	width:80%;
	padding:5px 0;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#office .main-area .flex-box{
	display: block;
	margin-top:20px;
}
#office .main-area .flex-box .photo-area{
	width:100%;
}
#office .main-area .flex-box .data-area{
	width:100%;
	padding-left:10px;
	display:flex;
	flex-direction:row;
	justify-content: flex-start;
	margin-top:10px;
}
#office .main-area .flex-box .data-area .tt.mt{
	margin-top:0;
}
#office .main-area .flex-box .data-area dt{
	width:100%;
	padding:0;
}
#office .main-area .flex-box .data-area dd{
	width:100%;
	padding:0;
}
#office .main-area .flex-box .data-area dd.sp-mb{
	margin-bottom:10px;
}
}
#office .branch-area{
	display:flex;
	margin-top:100px;
}
#office .branch-area .tokyo-area,
#office .branch-area .osaka-area,
#office .branch-area .fukuoka-area{
	width:50%;
	padding:0 15px;
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}
#office .branch-area .tokyo-area .tt-area,
#office .branch-area .osaka-area .tt-area,
#office .branch-area .fukuoka-area .tt-area{
	flex-grow: 1; 

}
#office .branch-area .tokyo-area .flex-box,
#office .branch-area .osaka-area .flex-box,
#office .branch-area .fukuoka-area .flex-box{

	margin-top:20px;
}
#office .branch-area .tokyo-area .photo-area,
#office .branch-area .osaka-area .photo-area,
#office .branch-area .fukuoka-area .photo-area{
	width:55%;
}
#office .branch-area .tokyo-area .photo-area img,
#office .branch-area .osaka-area .photo-area img,
#office .branch-area .fukuoka-area .photo-area img{
	width:100%;
}
#office .branch-area .tokyo-area .data-area,
#office .branch-area .osaka-area .data-area,
#office .branch-area .fukuoka-area .data-area{
	width:100%;
	padding-left:20px;
	display:flex;
	flex-direction:column;
	justify-content: center;
}
#office .branch-area .tokyo-area .data-area dl,
#office .branch-area .osaka-area .data-area dl,
#office .branch-area .fukuoka-area .data-area dl{
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}
#office .branch-area .tokyo-area .data-area dt,
#office .branch-area .osaka-area .data-area dt,
#office .branch-area .fukuoka-area .data-area dt{
	width:30%;
	padding:5px 0;

}
#office .branch-area .tokyo-area .data-area dd,
#office .branch-area .osaka-area .data-area dd,
#office .branch-area .fukuoka-area .data-area dd{
	width:70%;
	padding:5px 0 5px 15px;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
#office .branch-area .tokyo-area .photo-area,
#office .branch-area .osaka-area .photo-area,
#office .branch-area .fukuoka-area .photo-area,
#office .branch-area .tokyo-area .data-area,
#office .branch-area .osaka-area .data-area,
#office .branch-area .fukuoka-area .data-area {
	width:100%;
}
#office .branch-area .tokyo-area .data-area,
#office .branch-area .osaka-area .data-area,
#office .branch-area .fukuoka-area .data-area{
	padding-left:0;
}
#office .branch-area .tokyo-area .data-area dl,
#office .branch-area .osaka-area .data-area dl,
#office .branch-area .fukuoka-area .data-area dl{
	margin-top: 15px;
}
#office .branch-area .tokyo-area .data-area dt,
#office .branch-area .osaka-area .data-area dt,
#office .branch-area .fukuoka-area .data-area dt,
#office .branch-area .tokyo-area .data-area dd,
#office .branch-area .osaka-area .data-area dd,
#office .branch-area .fukuoka-area .data-area dd{
	width:100%;
	padding:0;
}
#office .branch-area .tokyo-area .data-area dd.sp-mb,
#office .branch-area .osaka-area .data-area dd.sp-mb,
#office .branch-area .fukuoka-area .data-area dd.sp-mb{
	margin-bottom:10px;
}
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#office .branch-area{
	display: block;
	margin-top:60px;
}
#office .branch-area .tokyo-area,
#office .branch-area .osaka-area,
#office .branch-area .fukuoka-area{
	width:100%;
	padding:0;
}
#office .branch-area .fukuoka-area{
	margin-top:60px;
}
}
#history table {
	width:70%;
	margin:0 auto;
}
#history table th {
	width:25%;
	padding:30px;
	vertical-align:middle;
	border-bottom:#0068b6 solid 1px;
	font-weight:bold;
}
#history table td {
	width:;
	padding:20px;
	vertical-align:middle;
	border-bottom:#b2d0e9 solid 1px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#history table {
	width:100%;
}
#history table th {
	width:25%;
	padding:20px 10px;
	text-align:center;
}
#history table td {
	padding:20px 10px;
}
}

#env-policy-wp{
	background:#edf8fd;
}
#env-policy h4{
	font-weight:bold;
	font-size:1.2em;
	border-bottom:#0068b6 2px solid;
	padding-bottom:10px;
	margin-bottom:20px;
}
#env-policy .text-area{
	margin-bottom:60px;
}

/***************************************
お知らせ：news.html
***************************************/
#news .news-area{
	width:70%;
	margin:0 auto;
}
#news .flex-box{
	display:flex;
}
#news .news-list .flex-box .date{
	width:15%;
	padding-left:20px;
}
#news .news-list .flex-box .title{
	width:85%;
	padding-left:20px;
}
#news .news-list hr{
	margin:30px 0;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#news .news-area{
	width:100%;
}
#news .flex-box {
	display:block;
}
/*タイトル*/
#news .news-list .flex-box .date {
	width: 100%;
}

/*テキスト*/
#news .news-list .flex-box .title {
	width: 100%;
}
}
/* 
---------------------------------------
お知らせ：詳細
---------------------------------------
*/
/*記事：タイトル*/
#news-page .news-tt-box h4 {
	font-weight: bold;
	font-size: 1.3em;
	border-bottom: solid 2px #0068b6;
	padding-bottom: 15px;
}
/*記事：テキスト*/
#news-page .news-txt-box {
	margin-top: 60px;
}
#news-page .news-txt-box a:hover {
	opacity:0.5;
}
/*画像*/
#news-page .news-img-box {
	margin-top: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#news-page .news-img-box img{
	max-width: 100%;
	height: auto;
}
/*画像：スライド*/
#slide-news {
	margin-top: 60px;
}
#slide-news .swiper-container {
	width: 100%;
}
#slide-news .swiper-slide{
	display: flex;
	justify-content: center;
	align-self: center;
}
#slide-news .swiper-slide img{
	max-width: 100%;
	height: auto;
}
/* 前・次ボタン */
#slide-news .swiper-button-next,
#slide-news .swiper-button-prev {
   outline: none !important;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#slide-news .swiper-button-next,
#slide-news .swiper-button-prev {
   display: none !important;
}
}
/* ページネーション */
#slide-news .swiper-pagination{
position:relative !important;/* 外（下）に出す場合 */
margin-top: 30px;
}
#slide-news .swiper-pagination-bullets .swiper-pagination-bullet {
margin: 0 4px!important;/* 間隔(外（下）に出す場合)*/
}
/***************************************
動画：movie.html
***************************************/
#movie h4{
	font-weight:bold;
	font-size:1.4em;
	border-bottom:#0068b6 2px solid;
	padding-bottom:10px;
	margin-bottom:20px;
}
#movie .bottom{
	margin-bottom:80px;
}
#movie .movie-list{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
}
#movie .movie-list::after{
  content:"";
  display: block;
}
#movie .movie-list::after,
#movie .movie-list li{
	width:calc((100% - 8%) / 3);
}
#movie .movie-list li:nth-child(n+4) {
	margin-top: 60px;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
#movie .movie-list::after,
#movie .movie-list li {
	width:calc((100% - 4%) / 2);
}
#movie .movie-list li:nth-child(n+3) {
	margin-top: 30px;
}
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#movie .movie-list::after,
#movie .movie-list li{
	width:100%;
}
#movie .movie-list li:nth-child(n+2) {
	margin-top: 30px;
}
}
#movie .movie-list .title{
	font-weight:bold;
	text-align:center;
	background:#000;
	color:#FFF;
	font-size:0.9em;
	padding: 0.8em 1em;
	line-height: 1.3;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#movie .movie-list .title{
	font-size:0.8em;
}
}
#movie .tt{
	font-weight:bold;
	font-size:1em;
	border-bottom: #999 1px solid;
	padding-bottom:5px;
	margin:10px 0 20px 0;
}
#movie .movie-list img{
	width:100%
}
#movie .movie-list a:hover {
	opacity:0.5;
}
#movie .link-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 60px;
}
#movie .link-list::after {
	content: "";
	display: block;
}
#movie .link-list::after,
#movie .link-list li {
	width: calc((100% - 8%) / 3);
}
#movie .link-list li {
	position: relative;
	line-height: 1;
	padding-left: 30px;
}
#movie .link-list li:not(:nth-last-child(-n+3)) {
 margin-bottom: 20px;
}

@media screen and (max-width: 480px) {/* スマホ　縦から */
#movie .link-list::after,
#movie .link-list li {
	width: 100%;
}
#movie .link-list li:not(:last-child) {
	margin-bottom: 15px;
}
}
#movie .link-list li::before {
	content: '';
	width: 1.5em;
	height: 1em;
	background: #ff0000;
	border-radius: 4px;
	position: absolute;
	top: 0;
	left: 0;
}
#movie .link-list li::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 6px;
	border-color: transparent transparent transparent #fff;
	position: absolute;
	top: 0.25em;
	left: calc(0.5em + 2px);
}
#movie .link-list li a {
	font-weight: bold;
	text-decoration: none;
}
#movie .link-list li a:hover {
	opacity: 0.5;
}


/***************************************
カテゴリ別商品一覧共通：product_●●●●.html
***************************************/
#product-list .cat {
	font-size: 2em;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	margin-bottom: 60px;
}
.contents-tt {
	font-weight: bold;
	font-size: 1.3em;
	border-left: solid #0068b6 6px;
	margin-bottom: 20px;
	padding-left: 16px;
	margin-top: 60px;
}
.classification {
	font-weight: bold;
	font-size: 1.5em;
	line-height: 1;
	color: #0068b6;
	text-align: center;
	border-top: solid 2px #0068b6;
	border-bottom: solid 2px #0068b6;
	padding: 15px 0;
	margin-bottom: 60px;
}
/*商品個別*/
#product-list .details-list .cat-sub {
	font-size: 1.5em;
	font-weight: bold;
	color: #fff;
	line-height: 1.3;
	padding: 14px 12px 12px 12px;
	background: #0068b6;
	margin-bottom: 60px;
	position: relative;
}
#product-list .details-list .annotation-scale {
	text-align: right;
	font-size: 0.8em;
	line-height: 1;
	margin-bottom: 15px;
}
#product-list .details-list .annotation{
	text-align: right;
	font-size: 0.6em;
	margin-top: 10px;
}
#product-list .details-list:nth-of-type(n+2) {
	margin-top: 110px;
}
#product-list .details-list ul.list {
	padding: 0 30px;
}

.movie2clm{
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	align-items: center;
}

.movie2clm div{
	width: 98%;
	text-align: center;
	}	
	
.movie2clm div img{
	max-width: 100%;
}

@media screen and (max-width: 480px) {/* スマホ　縦から */
#product-list .details-list ul.list {
	padding: 0 15px;
}
}
#product-list .details-list ul.list > li:not(:last-child) {
	margin-bottom: 110px;
}
#product-list .details-list .list .summary {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#product-list .details-list .list .summary .img-box,
#product-list .details-list .list .summary .img-box-full{
	display: flex;
	flex-wrap: wrap;
	justify-content: center
	/*align-items: center;*/
}
#product-list .details-list .list .summary .img-box {
	flex: 1;
	margin-right: 40px;
}

#product-list .details-list .list .summary .img-boxR{
	flex: 1;
	margin-left: 20px;
}
#product-list .details-list .list .summary .img-boxR img{
	width: 100%;
    height: auto;
}

@media screen and (max-width: 480px) {/* スマホ　縦から */
#product-list .details-list .list .summary .img-box {
	flex: auto;
	margin-right: 0;
	margin-bottom: 15px;
}
	
 #product-list .details-list .list .summary .img-boxR {
        flex: auto;
        margin-right: 0;
        margin-bottom: 15px;
    }
	
.movie2clm{
	display: block;
}

	.movie2clm div{
		width: 100%;
		margin-bottom: 20px;
	}	
	

}
#product-list .details-list .list .summary .img-box img {
	max-width: 100%;
	height: auto;
}

#product-list .details-list .list .summary .img-boxR img {
	max-width: 100%;
	height: auto;
}
#product-list .details-list .list .summary .img-box-full {
	width: 100%;
	margin-top:40px;
}
#product-list .details-list .list .summary .img-box-full img {
	max-width: 85%;
	height: auto;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#product-list .details-list .list .summary .img-box-full img {
	max-width: 100%;
}
}
#product-list .details-list .list .summary .txt-box {
	width: 70%;
	align-self: center;
}

#product-list .details-list .list .summary .txt-box2 {
	width: 65%;
	align-self: center;
}

@media screen and (max-width: 480px) {/* スマホ　縦から */
#product-list .details-list .list .summary .txt-box {
	width: 100%;
}
	
	#product-list .details-list .list .summary .txt-box2{
		width: 100%;
	}	
	
}
#product-list .details-list .list .summary .name {
	width: 100%;
	font-size: 1.5em;
	font-weight: bold;
	line-height: 1;
	border-bottom: 1px solid #ccc;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
/*商品個別：用途・特徴*/
#product-list .details-list .list .summary table {
	width: 100%;
	line-height: 1.3;
}
#product-list .details-list .list .summary tr:not(:last-child) {
	border-bottom: 1px solid #ccc;
}
#product-list .details-list .list .summary tr:not(:last-child) th,
#product-list .details-list .list .summary tr:not(:last-child) td {
	padding-bottom: 20px;
	flex-grow: 1;
}
#product-list .details-list .list .summary tr:not(:first-child) th,
#product-list .details-list .list .summary tr:not(:first-child) td {
	padding-top: 20px;
}
#product-list .details-list .list .summary th {
	white-space: nowrap;
	letter-spacing: 0.5em;
	flex-basis: auto;
	flex-grow: 1;
	position: relative;
}
#product-list .details-list .list .summary th::after {
	content: '／';
	position: absolute;
	right: -1.5em;
}
#product-list .details-list .list .summary td {
	flex-grow: 2;
	width: 100%;
	padding-left: 1.5em;
}
/*商品個別：仕様表*/
#product-list .details-list .list .detail {
	min-width: 60%;
	margin-top: 60px;
	line-height: 1.3;
	font-size: 0.8em;
}

#product-list .details-list .list .detail2 {
    min-width: 60%;
    margin-top: 60px;
    line-height: 1.3;
    font-size: 0.8em;
	table-layout:fixed;
}



#product-list .details-list .list .detail2 tr:nth-child(odd), #product-list .details-list .list .detail2 .amigake {
    background: #e3e3e3;
}

#product-list .details-list .list .detail2 th {
    text-align: center;
    font-weight: bold;
    background: #696969;
    color: #fff;
	letter-spacing: 0;
}

.th5{
	width: 10%;
}

#product-list .details-list .list .detail2 th, #product-list .details-list .list .detail2 td {
    border: 1px solid #333;
    padding: 8px;
    vertical-align: middle;
    white-space: nowrap;
}

#product-list .details-list .list .detail2 td {
  text-align: center;
	width: auto;
}

#product-list .details-list .list .detail2 th, #product-list .details-list .list .detail2 td {
    border: 1px solid #333;
    padding: 8px;
    vertical-align: middle;
    white-space: nowrap;
}

#product-list .details-list .list .detail2 th,#product-list .details-list .list .detail2 td{
padding: 10px!important;
	width: auto;
}


#product-list .details-list .list .detail2 th::after{
	content: none;
}


#product-list .details-list .list .detail.indent {
/*#product-list .details-list .list .summaryに合わせて調整*/
	width: calc(100% - 30%);
	margin-left: 30%;
}
#product-list .details-list .list .detail.center {
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#product-list .details-list .list .detail {
	min-width: 100%;
}
#product-list .details-list .list .detail.indent {
	width: auto;
	min-width: 100%;
	margin-left: 0;
}
#product-list .details-list .list .detail.center {
	margin-left: 0;
	margin-right: 0;
}
}
#product-list .details-list .list .detail tr:nth-child(odd),
#product-list .details-list .list .detail .amigake{
	background: #e3e3e3;
}
#product-list .details-list .list .detail tr {
}
#product-list .details-list .list .detail th,
#product-list .details-list .list .detail td {
	border: 1px solid #333;
	padding: 8px;
	vertical-align: middle;
	white-space: nowrap;
}
#product-list .details-list .list .detail th {
	text-align: center;
	font-weight: bold;
	background: #696969;
	color: #fff;
}
#product-list .details-list .list .detail td {
	text-align: center;
}
/*#product-list .details-list .list .detail td.yen::after {
	content: '円';
}*/
/*商品個別：仕様表:css個別対応用*/
#product-list .details-list .list .detail.mt-none{
	margin-top: 0 !important;
}
#product-list .details-list .list .detail th.border-none,
#product-list .details-list .list .detail td.border-none{
	border: none !important;
	background: #fff;
}
#product-list .details-list .list .detail.bg-reset,
#product-list .details-list .list .detail.bg-reset tr:nth-child(odd){
	background: #fff !important;
}
/*商品個別：仕様表:スクロール対応*/
#product-list .details-list .list .scrollbar-wp {
	width: 100%;
	overflow-x: auto;
	padding-bottom: 20px
}
#product-list .details-list .list .scrollbar-wp::-webkit-scrollbar {/* スクロールの幅 */
	height: 10px;
}
#product-list .details-list .list .scrollbar-wp::-webkit-scrollbar-thumb {/* スクロールのつまみ*/
	background: #ccc;
	border-radius: 30px;
}
#product-list .details-list .list .scrollbar-wp::-webkit-scrollbar-track {/* スクロールバーの色 */
}


.widewidthimg{
	max-width: 60%;
}

.end-topic{
	font-weight: bold;
	text-align: center;
	font-size: 1.4em;
	margin: 80px 0;
}


/***************************************
ダイヤモンドヤスリ：products_file.html
***************************************/
/*粒度表（色分け）*/
.particlesize-details .chart {
	display: flex;
	flex-wrap: wrap;
	margin-top: 10px;
}
.particlesize-details .chart li {
	display: flex;
	align-items: center;
	line-height: 1em;
	font-size: 0.9em;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
.particlesize-details .chart li {
	width: 100%;
}
.particlesize-details .chart li:not(:last-child) {
	margin-bottom: 10px;
}
}
.particlesize-details .chart li:not(:last-child) {
	margin-right: 25px;
}
.particlesize-details .chart li::before {
	content: "";
	border-top: 20px solid;
	width: 20px;
	margin-right: 5px;
}
.particlesize-details .chart li:nth-child(1)::before {
	border-color: #f8cbad;/*オレンジ*/
}
.particlesize-details .chart li:nth-child(2)::before {
	border-color: #c6e0b4;/*緑*/
}
.particlesize-details .chart li:nth-child(3)::before {
	border-color: #bdd7ee;/*水色*/
}
.particlesize-details .chart li:nth-child(4)::before {
	border-color: #ffe699;/*黄*/
}
.particlesize-details .chart li:nth-child(5)::before {
	border-color: #ff0000;/*赤*/
}
/*table用背景*/
.chart-bg-orange {
	background: /*#f8cbad 40%*/#fceade !important;/*オレンジ*/
	font-weight: bold;
}
.chart-bg-green {
	background: /*#e8f3e1 40%*/#ddecd2 !important;/*緑*/
	font-weight: bold;
}
.chart-bg-blue {
	background: /*#bdd7ee 40%*/#e5eff8 !important;/*水色*/
	font-weight: bold;
}
.chart-bg-yellow {
	background: /*#ffe699 40%*/#fff5d6 !important;/*黄*/
	font-weight: bold;
}
.chart-bg-red {
	background: /*#ff0000 25%*/#ffbfbf !important;/*赤*/
	font-weight: bold;
}

table td:empty{
	/*https://allabout.co.jp/gm/gc/457196/3/#slashonrectangle*/
	  background-image: linear-gradient(to top right, transparent, transparent 49.9%, #ccc 49.9%, #ccc  calc(50% + 1px), transparent calc(50% + 1px), transparent);

}
/*td[colspan], 
td[rowspan] {
	padding: 0;
	margin: 0;
}*/

/***************************************
機械：machine.html
***************************************/
/* ↓↓↓水すましG1↓↓↓*/
/*特徴*/
#mizusumashi-point {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#mizusumashi-point > li {
	display: flex;
	align-items: center;
	width: 48%;
	padding-bottom: 20px;
	border-bottom: dotted 1px #ccc;
}
#mizusumashi-point > li:not(:nth-last-child(-n+2)) {
	margin-bottom: 30px;
}



.lvr-grid{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 30px 0;
}

.lvr-grid li.ui-li-has-thumb{
	width: 23%;
	position: relative;
	margin-bottom: 30px;
	border-radius: 5%;
	box-shadow: 0px 0px 9px #111;
	transition:0.6s;
}


.lvr-grid::after{
  content:"";
  display: block;
  width:25%;
}


.lvr-grid li.ui-li-has-thumb:hover{
	box-shadow: 0px 0px 9px #00a0e9;
}

/* A bit custom styling */
.my-page .lvr-grid li .ui-btn p {
    color: #c0c0c0;
		border-radius: inherit;
}

.my-page .lvr-grid li .ui-btn .ui-li-aside {
    color: #eee;
}


.txt-area{
	position: absolute;
	bottom:0;
	display: block;
	z-index: 10;
	width: 100%;
	border-radius: 0px 0px 5% 5%;
}

.txt-area h2{
	color:#fff!important;
	font-size: 1.2em;
	padding: 2%;
}

.txt-area p{
	color:#fff!important;
	font-size: 0.8em;
	padding: 2%;
	border-radius: 0px 0px 5% 5%;
}
h2.contents-h2,.contents__text{margin-top: 24px;}

h2.contents-h2{
    text-align: center;
    margin-bottom: 40px;
    color: #0068b6;
    font-size: 2em;
    font-weight: 700;}

/* First breakpoint is 48em (768px). 3 column layout. Tiles 250x250 pixels incl. margin at the breakpoint. */
@media ( min-width: 48em ) {
    .my-page .ui-content {
        padding: .5625em; /* 9px */
    }

    .my-page .lvr-grid li {
        float: left;
        width: 30.9333%; /* 33.3333% incl. 2 x 1.2% margin */
        height: 14.5em; /* 232p */
        margin: .5625em 1.2%;
    }

    .my-page .lvr-grid li > .ui-btn {
        -webkit-box-sizing: border-box; /* include padding and border in height so we can set it to 100% */
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        height: 100%;
    }

    .my-page .lvr-grid li.ui-li-has-thumb .ui-li-thumb {
        height: auto; /* To keep aspect ratio. */
        max-width: 100%;
        max-height: none;
    }
    /* Make all list items and anchors inherit the border-radius from the UL. */
    .my-page .lvr-grid li,
    .my-page .lvr-grid li .ui-btn,
    .my-page .lvr-grid .ui-li-thumb {
        -webkit-border-radius: inherit;
        border-radius: inherit;
    }
    /* Hide the icon */
    .my-page .lvr-grid .ui-btn-icon-right:after {
        display: none;
    }
    /* Make text wrap. */
    .my-page .lvr-grid h2,
    .my-page .lvr-grid p {
        white-space: normal;
        overflow: visible;
        position: absolute;
        left: 0;
        right: 0;
    }
    /* Text position */
    .my-page .lvr-grid h2 {
        font-size: 1.25em;
        margin: 0;
        padding: .125em 1em;
        bottom: 50%;
    }

    .my-page .lvr-grid p {
        font-size: 1em;
        margin: 0;
        padding: 0 1.25em;
        min-height: 50%;
        bottom: 0;
    }
    /* Semi transparent background and different position if there is a thumb. The button has overflow hidden so we don't need to set border-radius. */
    .lvr-grid .ui-li-has-thumb h2,
    .lvr-grid .ui-li-has-thumb p {
        background: #111;
        background: rgba(0,0,0,.75);
    }

    .lvr-grid .ui-li-has-thumb h2 {
        bottom: 20%;
    }

    .lvr-grid .ui-li-has-thumb p {
        min-height: 20%;
    }
    /* ui-li-aside has class .ui-li-desc as well so we have to override some things. */
    .my-page .lvr-grid .ui-li-aside {
        padding: .125em .625em;
        width: auto;
        min-height: 0;
        top: 0;
        left: auto;
        bottom: auto;
        /* Custom styling. */
        background: #103566;
        background: rgba(16, 53, 102, 0.8);
        -webkit-border-top-right-radius: inherit;
        border-top-right-radius: inherit;
        -webkit-border-bottom-left-radius: inherit;
        border-bottom-left-radius: inherit;
        -webkit-border-bottom-right-radius: 0;
        border-bottom-right-radius: 0;
    }
    /* If you want to add shadow, don't kill the focus style. */
    .my-page .lvr-grid li {
        -moz-box-shadow: 0px 0px 9px #111;
        -webkit-box-shadow: 0px 0px 9px #111;
        box-shadow: 0px 0px 9px #111;
    }
    /* Images mask the hover bg color so we give desktop users feedback by applying the focus style on hover as well. */
    .my-page .lvr-grid li > .ui-btn:hover {
        -moz-box-shadow: 0px 0px 12px #33ccff;
        -webkit-box-shadow: 0px 0px 12px #33ccff;
        box-shadow: 0px 0px 12px #33ccff;
    }
    /* Animate focus and hover style, and resizing. */
    .my-page .lvr-grid li,
    .my-page .lvr-grid .ui-btn {
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        transition: all 500ms ease;
    }
}
/* Second breakpoint is 63.75em (1020px). 4 column layout. Tiles will be 250x250 pixels incl. margin again at the breakpoint. */
@media ( min-width: 63.75em ) {
    .my-page .ui-content {
        padding: .625em; /* 10px */
    }
    /* Set a max-width for the last breakpoint to prevent too much stretching on large screens.　By setting the max-width equal to the breakpoint width minus padding we keep square tiles. */
    .my-page .lvr-grid {
        max-width: 78.125em; /* 1250px */
        margin: 0 auto;
    }
    /* Because of the 1000px max-width the width will always be 230px (and margin left/right 10px), but we stick to percentage values for demo purposes. */
        .my-page .lvr-grid li {
            width: 23%;
            height: -webkit-calc(100vw*0.22);
            height: calc(100vw*0.22);
            margin: .625em 1%;
        }
}
/* Third breakpoint is 79.375em (1270px). 5 column layout. Tiles will be 250x250 pixels incl. margin again at the breakpoint. */
@media ( min-width: 79.375em ) {
    .my-page .ui-content {
        padding: .625em; /* 10px */
    }
    .my-page .lvr-grid {
        max-width: 118.75em; /* 1900px */
        margin: 0 auto;
    }
        .my-page .lvr-grid li {
            width: 18%;
            height: -webkit-calc(100vw*0.17);
            height: calc(100vw*0.17);
            margin: .625em 1%;
        }
}

ul.lvr-grid li img{
	width: 100%;
	max-width: 100%;
        max-height: none;
	border-radius: 5%;
}


    .my-page .lvr-grid li {
        width: 18%;
        height: -webkit-calc(100vw* 0.17);
        height: calc(100vw* 0.17);
        margin: .625em 1%;
    }



@media screen and (max-width: 480px) {/* スマホ　縦から */
#mizusumashi-point > li {
	width: 100%;
	
}
#mizusumashi-point > li:not(:last-child) {
	margin-bottom: 30px;
}
}
#mizusumashi-point > li .tt{
	align-self: flex-start;
	width: calc(4em + 18px);
	margin-right: 15px;
	text-align: center;
	line-height: 1;
	color: #fff;
	background: #2b93d8;
	padding: 8px;
}
#mizusumashi-point > li .txt{	
	flex: 1;
	line-height: 1.3;
	font-size: 0.9em;
}

}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#mizusumashi-point > li .txt{
	margin-top: 0;
}
}
/*使用方法 */
#mizusumashi-support {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 60px;
	font-weight: bold;
}
#mizusumashi-support li {
	width: 48%;
	text-align: center;
}
#mizusumashi-support .img-box {
	margin-bottom: 30px;
}
#mizusumashi-support .img-box img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#mizusumashi-support li {
	width: 100%;
}
#mizusumashi-support li:not(:last-child) {
	margin-bottom: 30px;
}
#mizusumashi-support .img-box {
	margin-bottom: 10px;
}
}
/*循環イメージ図*/
#mizusumashi-circulation {
}
#mizusumashi-circulation .img-box {
	width: 100%;
	padding: 60px 0;
	text-align: center;
	/*background: linear-gradient(135deg, #f0f6fb, #98c4e6);*/
	background: #cbedc5;
}
#mizusumashi-circulation .img-box img {
	width: 60%;
	height: auto;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#mizusumashi-circulation .img-box {
	padding: 20px;
}
#mizusumashi-circulation .img-box img {
	width: 100%;
}

.lvr-grid li.ui-li-has-thumb{
	width: 48%;
}

	.txt-area{
		background: rgba(0,0,0,0.6)
	}
	
	.txt-area h2 {
		font-size: 0.8em;
	}
	
	.txt-area p{
		font-size: 0.6em;
	}
	
	
}
/*フタ王;使用方法*/
#cap_king-howto {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-bottom: dotted 2px #ccc;
	padding-bottom: 20px;
	margin-bottom: 40px;
}
#cap_king-howto li {
	width: calc(100% / 3);
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	padding: 20px;
}
#cap_king-howto li:not(:last-child) {
	border-right: dotted 2px #ccc;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#cap_king-howto li {
	width: 100%;
	padding: 0;
}
#cap_king-howto li:not(:last-child) {
	border-right: none;
	border-bottom: dotted 2px #ccc;
	padding-bottom: 15px;
	margin-bottom: 30px;
}
}
#cap_king-howto li img{
	width: 100%;
	height: auto;
	margin-bottom: 10px;
}
#cap_king-howto li .num{
	width: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	line-height: 1;
	color: #fff;
	background: #333;
	margin-bottom: 15px;
}
#cap_king-howto li .num::after {
    content:"";
    display: block;
    padding-top: 100%; /* 高さ幅1:1に固定*/
}
/*フタ王;動画*/
#mizusumashi-cap_king-mov {
	width: 100%;
    display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#mizusumashi-cap_king-mov li {
	width: 48%;
}
#mizusumashi-cap_king-mov p {
	font-weight: bold;
	text-align: center;
	margin-top: 15px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#mizusumashi-cap_king-mov li {
	width: 100%;
}
#mizusumashi-cap_king-mov li:not(:last-child) {
	margin-bottom: 30px;
}
#mizusumashi-cap_king-mov p {
	margin-top: 10px;
}
}
/* ↓↓↓GSCウェットサンダー↓↓↓*/
/*特徴*/
#gsc-point {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
#gsc-point > li {
	display: flex;
	width: 48%;
	padding-bottom: 20px;
	border-bottom: dotted 1px #ccc;
}
#gsc-point > li:not(:nth-last-child(-n+2)) {
	margin-bottom: 30px;
}


.youtube-wp {
	aspect-ratio: 16 / 9;/*w:560 h:150の比率の場合*/
}
.youtube-wp iframe {
	width: 100%;
	height: 100%;
}


.table_flex{
	display: flex;
	justify-content: space-between;
}

#product-list .details-list .list .table_flex .scrollbar-wp{
	width: 49%;
	overflow: hidden;
}

.table_flex table{
	width: 100%;
}

.table_flex .detail th, .table_flex .detail td{
	padding: 5px!important;
}


@media screen and (max-width: 480px) {/* スマホ　縦から */
	.table_flex{
		display: block;
	}
	
	.table_flex div{
		margin-bottom: 30px;
	}
	#product-list .details-list .list .table_flex .scrollbar-wp{
	width: 100%;
	overflow:scroll;
}
	
}

/*
---------------------------------------
動画一覧
---------------------------------------
*/
.mov-list {
	display: flex;
	flex-wrap: wrap;
}
.mov-list:not(:last-of-type) {
	margin-bottom: 110px;
}
.mov-list li {
	filter: drop-shadow(1px 3px 5px rgba(0, 0, 0, 0.4));
	background: #000;
	border-radius: 10px;
	border: solid #000 1px;
}
.mov-list li:hover {
	transition: 0.5s;
	/*cursor: pointer;*/
	filter: drop-shadow(1px 3px 5px rgba(0, 104, 182, 0.8));
}
.mov-list li { /* PC */
	width: calc((100% - 112px) / 4);
}
.mov-list li:not(:nth-child(4n)) {
	margin-right: 28px;
}
.mov-list li:nth-child(n+5) {
	margin-top: 28px;
}
@media screen and (max-width: 1024px) { /* タブレット 縦から */
.mov-list li {
	width: calc((100% - 20px) / 2);
}
.mov-list li:not(:nth-child(4n)) {/* reset */
	margin-right: 0;
}
.mov-list li:nth-child(odd) {
	margin-right: 20px;
}
.mov-list li:nth-child(n+3) {
	margin-top: 20px;
}
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
.mov-list li {
	width: 100%;
}
.mov-list li:nth-child(odd){/* reset */
	margin-right: 0;
}
.mov-list li:nth-child(n+2) {
	margin-top: 20px;
}
}
/*動画*/
.mov-list li .youtube-wp iframe {
	 border-radius: 10px 10px 0 0;
}
/*テキスト*/
.mov-list li .txt-box {
	padding: 15px;
	color: #fff;
}
.mov-list li .txt-box .tt{
	font-size: 1.2em;
	font-weight: bold;
	line-height: 1.3;
}


@media screen and (max-width: 480px) {/* スマホ　縦から */
#gsc-point > li {
	width: 100%;
	
}
#gsc-point > li:not(:last-child) {
	margin-bottom: 30px;
}
}
#gsc-point > li .tt{
	align-self: flex-start;
	width: calc(4em + 18px);
	margin-right: 15px;
	text-align: center;
	line-height: 1;
	color: #fff;
	background: #2b93d8;
	padding: 8px;
}
#gsc-point > li .txt{	
	flex: 1;
	line-height: 1.3;
	font-size: 0.9em;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#gsc-point > li .txt{
	margin-top: 0;
}
}
#gsc-point > li .disc{
	margin-top: 1em;
}
/*構造イメージ図*/
#gsc-construction {
}
#gsc-construction .img-box {
	width: 100%;
	text-align: center;
}
#gsc-construction .img-box img {
	width: 60%;
	height: auto;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#gsc-construction .img-box {
	padding: 20px;
}
#gsc-construction .img-box img {
	width: 100%;
}
}
/*使用方法 */
#gsc-support {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 60px;
	font-weight: bold;
}
#gsc-support li {
	width: 48%;
	text-align: center;
}
#gsc-support .img-box {
	margin-bottom: 30px;
}
#gsc-support .img-box img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#gsc-support li {
	width: 100%;
}
#gsc-support li:not(:last-child) {
	margin-bottom: 30px;
}
#gsc-support .img-box {
	margin-bottom: 10px;
}
}
/* ↓↓↓ジョブシリーズ↓↓↓*/
/*メイン画像*/
img.jobseries-main-img {
	width: 60%;
	height: auto;
	margin: 0 auto;
	display: block;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
img.jobseries-main-img {
	width: 100%;
}
}
/*動画*/
.job-series-mov-box{
	max-width: 560px;
	margin: 0 auto;
	background: #ccc;
	margin-top: 60px;
	margin-bottom: 60px;
}

@media screen and (max-width: 480px) {/* スマホ　縦から */
.job-series-mov-box{
	width: 100%;
}
.job-series-mov-box iframe{
	width: 100%;
}
}
/*ポイント*/
#jobseries-point{
	margin-bottom: 60px;
}
#jobseries-point li{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	background: #f4f4f4;
	padding: 30px;
}
#jobseries-point li:not(:last-child){
	margin-bottom: 30px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#jobseries-point li{
	padding: 15px;
}
}
#jobseries-point li .img-box{
	display: flex;
	flex-wrap: wrap;
	width: 55%;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#jobseries-point li .img-box{
	width: 100%;
}
}
#jobseries-point li .img-box img {
	width: 100%;
	height: auto;
	
}
#jobseries-point li .img-box.photo2 img,
#jobseries-point li .img-box.photo4 img {
	width: 50%;
}
#jobseries-point li .txt-box {
	width: 40%;
}
#jobseries-point li:nth-of-type(even) .txt-box {
	order: 1;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#jobseries-point li .txt-box {
	width: 100%;
}
#jobseries-point li:nth-of-type(even) .img-box {
	order: 2;
	background: #000;
}
#jobseries-point li .img-box {
	margin-top: 15px;
}
}
#jobseries-point li .txt-box .tt {
	font-weight: bold;
	font-size: 1.3em;
	text-align: center;
}
#jobseries-point li .txt-box .num {
	width: 3em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5em;
	line-height: 1;
	color: #fff;
	font-weight: bold;
	background: #333;
	margin: 0 auto 15px auto;
}
#jobseries-point li .txt-box .num::after {
	content: "";
	display: block;
	padding-top: 100%; /* 高さ幅1:1に固定*/
}
#jobseries-point li .txt-box p.outline {
	padding-top: 20px;
}
/* ↓↓↓リトルジョブカット↓↓↓*/
/*使用イメージ */
#little-jobcut-use {
	display: flex;
	justify-content: space-between;
	margin-top: 60px;
}
#little-jobcut-use li {
	width: calc((100% - 60px) / 3);
}
#little-jobcut-use li img {
	width: 100%;
	height: auto;
}
#little-jobcut-use li p{
	font-weight: bold;
	text-align: center;
	margin-top: 15px;
}
/* ↓↓↓エアージョブ↓↓↓*/
/*使用イメージ（セット） */
#airjob-set {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-top: 60px;
	background: #f0f6fb;
	padding: 60px;
}
#airjob-set li {
	width: 48%;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#airjob-set {
	padding: 15px;
}
#airjob-set li {
	width: 100%;
}
#airjob-set li:not(:last-child) {
	margin-bottom: 30px;
}
}
#airjob-set li .img-box {
	width: 100%;
	height: 300px;
}
#airjob-set li .img-box img {
	 width: 100%;
	height: 100%;
	object-fit: contain;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#airjob-set li .img-box {
	height: auto;
}
	#airjob-set li .img-box img {
	 width: 100%;
	height: auto;
	object-fit: fill;
}
}
#airjob-set li p{
	font-weight: bold;
	text-align: center;
	margin-top: 15px;
	background: #333;
	color: #fff;
	padding: 0.5em 0;
}

/***************************************
policy.html/kiyaku.html
***************************************/
#policy h4{
	font-weight:bold;
	margin-bottom:0.5em;
}
#policy .text{
	margin-bottom:60px
}
#policy .mr1p{
	margin-left:1em;
}
/* ↓↓↓↓　ここから　↓↓↓↓ */
/***************************************
お問い合せ：contact.html
***************************************/
.bg-contact{
	background: #edf8fd;

}
#contact-form .contac_lead{
	text-align:center;
	margin-bottom:60px;
}

#contact-form .details-wp{
	background: #fff;
	padding: 60px;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#contact-form .details-wp{
	padding: 20px;
}
}

#contact-form .detail-list{
	width: 100%;
}
#contact-form .detail-list th{
	width: 30%;
}
#contact-form .detail-list th,
#contact-form .detail-list td{
	padding: 30px 0;
	border-bottom: 1px solid #ccc;
	vertical-align: middle;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#contact-form .detail-list th,
#contact-form .detail-list td{
	display: block;
	width: 100%;
}
#contact-form .detail-list th{
	border-bottom: none;
	padding-bottom: 0;
}
#contact-form .detail-list td{
	padding-top: 10px;
}
}
#contact-form .detail-list ul.matter li{
	margin-bottom: 15px; 
}
#contact-form .detail-list ul.matter li:last-child{
	margin-bottom: 0; 
}
#contact-form .policy{
	text-align: center;
	margin-top: 30px;
}
#contact-form .policy a{
	display: block;
	color: #0068b6;
	margin-bottom: 15px;
}
/* form周り */
#contact-form span.necessary{
	font-size: 0.7em;
	color: #0068b6;
	vertical-align: super;
	font-weight: bold;
}
#contact-form input,
#contact-form textarea{
	border: 1px solid #ccc;
	padding: 10px;
	background: #f4f4f4;
}
#contact-form input[type=text],
#contact-form input[type=email],
#contact-form input[type=tel],
#contact-form input[type=url],
#contact-form textarea{
	width: 60%;
}
#contact-form input[type=postal-code]{
	width: 10em;
}
@media screen and (max-width: 896px)  {/* スマホ 横から */
#contact-form input[type=text],
#contact-form input[type=email],
#contact-form input[type=tel],
#contact-form input[type=url],
#contact-form textarea{
	width: 100%;
}
}
#contact-form textarea{
	height: 200px;
}
#contact-form input:focus,
#contact-form textarea:focus{
    border:solid 1px #0068b6;
	outline: 0;
}
#contact-form input[type=radio] {
    width: 15px;
    height: 15px;
	margin-right: 10px;
	position: relative;
	top: 2px;
}
#contact-form input[type=checkbox] {
    width: 20px;
    height: 20px;
	margin-right: 10px;
	position: relative;
	top: 2px;
}
/* 確認・リセットボタン */
#contact-form .button-box{
	width: 60%;
	margin: 30px auto 0 auto;
}
#contact-form .button-box .fL,
#contact-form .button-box .fR{
	width: 48%;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#contact-form .button-box{
	width: 100%;
}
}
#contact-form .button-box .button-confirmation,
#contact-form .button-box .button-reset{
	text-align: center;
	width: 100%;
	border:none;
	padding:15px 30px;
	font-size: 19px;
	cursor:pointer;
	color: #fff;
}
#contact-form .button-box .button-confirmation{
	background: #0068b6;
}
#contact-form .button-box .button-reset{
	background: #777;
}
#contact-form .button-box .button-confirmation:hover,
#contact-form .button-box .button-reset:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
	text-decoration: none;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}
#contact-form .button-box input[type="submit"],
#contact-form .button-box input[type="reset"] {
	-webkit-appearance: none;
}
#contact-form ::placeholder {
  color: #B8B8B8;
}
#contact-form p.guide {
	font-size: 0.8em;
	margin-top: 1em;
}
/***************************************
お問合せ　thanksページ：thanks.html
***************************************/
.thanks-message{
	text-align: center;
}
.thanks-message .tt{
	font-size: 20px;
	line-height: 1.3;
	margin-bottom: 15px;
}

a.re_btn{
	min-width: 90px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	padding: 10px 15px;
	margin-top: 40px;
	color: #fff;
	background: #0068b6;
	border: 1px solid #fff;
}
/* ↑↑↑↑　ここまで　↑↑↑↑ */

/***************************************
カタログ：catalog.html
***************************************/
/*メニュー*/
#catalog-menu-wp {
	background: #f9f9f9;
}
#catalog-menu .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	
}
#catalog-menu .list li {
	width: calc((100% - 60px) / 3);
	background: #ccc;
	display: flex;
}
#catalog-menu .list li:nth-child(n+4) {
	margin-top: 20px;
}
/*↓↓奇数時の対応↓↓*/
#catalog-menu .list li:nth-child(-n+2),
#catalog-menu .list li:nth-child(4) {
	margin-right: 30px;
}
/*↑↑↑↑*/
@media screen and (max-width: 1024px) { /* タブレット 縦から */
#catalog-menu .list {
	justify-content: space-between;
}
#catalog-menu .list li {
	width: calc((100% - 30px) / 2);
}
#catalog-menu .list li:nth-child(n+3) {
	margin-top: 20px;
}
/*↓↓奇数時の対応↓↓*/
#catalog-menu .list li:nth-child(-n+2),
#catalog-menu .list li:nth-child(4) {
	margin-right: 0;
}
/*↑↑↑↑*/
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#catalog-menu .list li{
	width:100%;
}
#catalog-menu .list li:nth-child(n+2) {
	margin-top: 15px;
}
}

#catalog-menu .list li a{
	display: flex;
	width: 100%;
	align-items: center;
	background: #0068b6;
	color: #fff;
	padding: 20px 15px;
	line-height: 1.2;
	text-decoration: none;
	position:relative;
}
#catalog-menu .list li a::after {
	position:absolute;
	content:'';
	top: calc(50% - 12px);
	right: 15px;
	width: 12px;
	height: 12px;
	border: 2px solid;
	border-color:  transparent transparent #fff #fff;
	transform: rotate(-45deg);
}
#catalog-menu .list li a sub {
	font-size: 0.8em;
	margin-left: 0.5em;
}
#catalog-menu .list li a:hover {
	opacity: 0.5;
}
/*カタログ*/
#catalog-latest-wp {
}
#catalog-latest {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#catalog-latest {
	flex-direction: column-reverse; /* 縦並び逆順 */
	justify-content: center;
}
}
#catalog-latest .txt-box {
	width: 45%;
	align-self: center;
	text-align: center;
	line-height: 1;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#catalog-latest .txt-box {
	width: 100%;
}
}
#catalog-latest .txt-box h4 {
	font-size: 1.8em;
	margin: 0 auto;
	font-weight: bold;
}
#catalog-latest .txt-box .version {
	display: block;
	margin-top: 10px;
	font-size: 1.5em;
	font-weight: bold;
}
#catalog-latest .txt-box a.btn {
	display: block;
	background: #0068b6;
	color: #fff;
	padding: 15px;
	margin-top: 40px;
	text-decoration: none;
	font-weight: bold;
	position: relative;
}
#catalog-latest .txt-box a.btn::after {
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images-jp/common/icon-dl_white.png) no-repeat;
	background-size: contain;
	position: absolute;
	margin-left: 10px;
}
#catalog-latest .txt-box a:hover {
	opacity: 0.5;
}
#catalog-latest .img-box {
	width: 45%;
}
#catalog-latest .img-box img {
	width: 100%;
	height: auto;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
#catalog-latest .img-box {
	width: 100%;
	text-align: center;
	margin-bottom: 25px;
}
#catalog-latest .img-box img{
	width: 60%;
}
}
/*共通*/
.catalog-block {
	width: 100%;
	background: #fff;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3);
	padding: 60px;
}
.catalog-block .link-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}
.catalog-block .link-list li {
	width: calc((100% - 60px) / 2);
	padding: 15px;
	border-bottom: 1px dotted #ccc;
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
.catalog-block {
	padding: 40px 20px;
}
.catalog-block .link-list li {
	width: 100%;
}
}
.catalog-block .link-list-cat {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}
.catalog-block .link-list-cat .block{
	width: calc(50% - 60px);
}
@media screen and (max-width: 480px) {/* スマホ　縦から */
.catalog-block .link-list-cat .block{
	width: 100%;
}
.catalog-block .link-list-cat .block:not(:last-of-type){
	margin-bottom: 60px;
}
}
.catalog-block .link-list-cat .sub-tt{
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}
.catalog-block .link-list-cat .sub-tt sub{
	display: block;
	margin-top: 8px;
	background: #0068b6;
	padding: 8px;
	color: #fff;
}
.catalog-block .link-list-cat ul{
	margin-top: 20px;
}
.catalog-block .link-list-cat li{
	width: 100%;
	border-bottom: 1px dotted #ccc;
}
.catalog-block .link-list li a,
.catalog-block .link-list-cat li a {
	text-decoration: none;
	/*color: #02029b;*/
	font-weight: bold;
	line-height: 1;
	position: relative;
}
.catalog-block .link-list li a:hover,
.catalog-block .link-list-cat li a:hover {
	opacity: 0.5;
}
.catalog-block .link-list li a::after,
.catalog-block .link-list-cat li a::after{
	content: "";
	width: 20px;
	height: 20px;
	background: url(../images-jp/common/icon-dl.png) no-repeat;
	background-size: contain;
	position: absolute;
	margin-left: 10px;
	top: 2px;
}
.catalog-block .tt-box {
	text-align: center;
}
.catalog-block img {
	margin-bottom: 15px;
}
.catalog-block .icon {
	width: 80px;
	height: auto;
}
.catalog-block .icon-photo {
	width: 120px;
	height: auto;
}
.catalog-block .tt-box .tt {
	font-weight: bold;
	font-size: 1.5em;
	margin-bottom: 20px;
	color: #0068b6;
}
.catalog-block .tt-box .lead {
}


/***************************************
コラム：column_.html
***************************************/

.column .column__section {
	margin-top: 80px;
}

.column h2 {
	text-align: center;
	margin-bottom: 40px;
	color: #0068b6;
	font-size: 2em;
	font-weight: 700;
}

.column p {
	margin-top: 1em;
}

.column p span {
	font-weight: 700;
	display: block;
	font-size: 1.2em;
	margin-top: 30px;
}

.column p.notes {
	font-size: 14px;
}

.column h3 {
	font-size: 1.5em;
	margin-top: 2em;
    margin-bottom: 0.6em;
}

.column table {
	min-width: 60%;
    margin-top: 60px;
    line-height: 1.3;
    font-size: 0.8em;
}

.column table th,
.column table td {
    border: 1px solid #333;
    padding: 8px;
    vertical-align: middle;
    white-space: nowrap;
}

.column table th {
    text-align: center;
    font-weight: bold;
    background: #696969;
    color: #fff;
}

.column table td {
    text-align: center;
}

.column ul {
    list-style: disc;
	padding-left: 2em;
	margin-top: 0.5em;
}

#breadcrumb li {
    display: flex;
    align-items: center;
}

.column__link {
	text-align: center;
	margin-top: 20px;
}

.column__link a {
	padding: 10px 30px;
    background: #0068b6;
    display: inline-block;
    text-decoration: none;
    color: #FFF;
}

/* QAアコーディオン */
.accordion__item + .accordion__item {
	margin-top: 2rem;
}

.accordion__btn {
	font-size: 1.6rem;
	position: relative;
	padding: 3rem;
	width: 100%;
	position: relative;
	text-align: left;
}

.accordion__btn span {
    margin-right: 1em;
    font-weight: 700;
}

.accordion__content-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
	gap: 10px;
}

.accordion__content-wrap.accordion__content-wrap-1col {
    display: grid;
    grid-template-columns: 1fr;
}

.accordion__content {
	display: none;
	padding: 3rem;
	font-size: 1.6rem;
}

.accordion__content-text {
	padding-left:1.6em;
	text-indent:-1.6em;
}

.accordion__content-text span {
    margin-right: 1em;
    font-weight: 700;
}

.accordion__content-img img {
    width: 100%;
}

.accordion__content-img-flex {
	display: flex;
}

.accordion__content-img-flex figcaption {
	font-size: 1.2rem;
    text-align: center;
}

@media screen and (max-width: 896px)  {
	.accordion__btn {
		font-size: 1.2rem;
		padding: 1.5rem;
	}

	.accordion__content {
		padding: 1.5rem;
		font-size: 1.2rem;
	}

	.accordion__content-wrap {
		grid-template-columns: 1fr;
	}

	.accordion__content-img-flex figcaption {
		font-size: 0.8rem;
	}
}

/* トラブルシューティング */
.troubleshooting h5 {
	font-size: 1.5em;
    font-weight: bold;
	margin-top: 60px;
}

.troubleshooting__content {
	margin-top: 30px;
	display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
}

.troubleshooting__img {
	display: flex;
    align-items: center;
    text-align: center;
}

.troubleshooting__img img {
    width: 100%;
}

.troubleshooting__text span {
    font-weight: 700;
    font-size: 1.2em;
}

@media screen and (max-width: 896px)  {
	.troubleshooting__content {
		grid-template-columns: 1fr;
	}
}


/* 製品オーダー */

.product_order{
	width: fit-content;
	margin:60px auto;
}

.product_order h2{
	margin-bottom: 20px;
	text-align: center;
	font-weight: bold;
}

.product_order ul li{
	font-size: 24px;
}

.txtR{
	text-align: right;
}

/* 目次 */
ol.toc {
    margin: 60px auto;
    background: #eee;
    padding: 2rem;
    width: fit-content;
}

ol.toc li:not(:first-child) {
    margin-top: 10px;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}


.pro-demo-btn{
	margin:30px auto;
	display: block;
    background: #fb8a12;
    padding: 1% 2%;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-weight: bold;
	text-align: center;
	width: fit-content;
}

.pro-demo-btn:hover{
	opacity: 0.8;
}


/***************************************
products_cutter.html マンガセクション
***************************************/

/* 親要素のスタイル */
.manga {
	display: flex;
	justify-content: flex-start; /* 左揃え */
	flex-wrap: wrap; /* 折り返しを有効に */
	gap: 24px; /* アイテム間の余白 */
}

/* リスト要素のスタイル */
.manga__list {
	list-style: none; /* デフォルトのリストマーカーを無効に */
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap; /* リスト内のアイテムを折り返す */
	column-gap: 24px; /* アイテム間の余白 */
	row-gap: 40px;
}

/* 各アイテムのスタイル */
.manga__item {
	flex: 0 1 calc(33.333% - 16px); /* 各アイテムの幅を一定に保つ */
	box-sizing: border-box; /* パディングとボーダーを含む */
	display: flex;
	flex-direction: column;
}

/* 画像のスタイル */
.manga__image img {
	width: 100%; /* 画像の幅をアイテムに合わせる */
	height: 100%;
	display: block;
	object-fit: contain;
	aspect-ratio: 350 / 460;
}

/* タイトルのスタイル */
.manga__title {
	font-size: 1.5em;
	font-weight: bold;
	text-align: center; /* テキストを中央揃え */
	line-height: 1.5;
	margin-top: 24px!important; /* 画像とタイトル間の余白 */
}

@media screen and (max-width: 768px)  {
	.manga__item{
		flex: 0 1 100%;
	}
	
	#product-list .details-list .list .detail2 {
		table-layout: auto;
	}
	
	.widewidthimg{
		max-width: 100%;
		}
	
}
.baner_btn {
	text-align: center;
}
.baner_btn a {
	display: inline-block;
	padding: 1em 3em;
	margin: 1em 2em;
	border: #000 solid 2px;
}
@media screen and (max-width: 768px)  {
	.baner_btn {
		text-align: center;
	}
	.baner_btn a {
		display: inline-block;
		padding: .5em 1em;
		margin: 1em 1em;
		border: #000 solid 2px;
	}
	
}