@charset "utf-8";
/* -----------------------------------------------------------------------
base setting
------------------------------------------------------------------------- */
html{
	scroll-behavior: smooth;
}

body{
	background-color:#fff;
	font-size:0.875em;
	color:#434343;
	font-family: 'Noto Sans JP', sans-serif;;
}

/* font-size:12px */

a{ transition: 0.6s;
text-decoration: none;
color:#505050}

a:hover{opacity: 0.6;}

p{line-height:1.7;
font-size: calc(16 / 1920 * 100vw) ;
margin-bottom:calc(20 / 1920 * 100vw) ; }

ul li{
	list-style: none;
	line-height: 1.5;
}

ol li{
	list-style:circle;
	line-height: 1.5;
}

h2{
	text-align: center;
	font-size: calc(48 / 1920 * 100vw) ;
	font-weight:200;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 8px;
	margin:0 auto 70px;
}

h3{
	font-size: calc(30 / 1920 * 100vw) ;
	font-weight: 500;
	margin-bottom: 25px;
	line-height: 1.6;
}

h4{
	font-size: calc(20 / 1920 * 100vw) ;
	font-weight: 500;
	border-bottom: 1px solid #ccc;
	margin-bottom: 25px;
	line-height: 1.8;
}

/*for Tablet*/
@media only screen and (min-width : 768px) and (max-width : 959px){
	body{font-size:12px;}
}

/*for SP*/
@media only screen and (max-width: 767px) {
	html{font-size:10px;}
	body{font-size:1.4rem;}
}

/* -----------------------------------------------------------------------
header
------------------------------------------------------------------------- */
header{
  width:100%;/*横幅指定*/
    z-index: 999;/*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  background:rgba(255,255,255,0.8);

}

header.scroll {
    position: fixed;
    animation-name: anime;
    animation-duration: 0.3s;
}



#titletxt {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

/*---h1---*/
#titletxt h1{
	margin:10px 0;
}



/*for SP*/
@media only screen and (max-width: 767px) {
	#titletxt{
		height:auto;
	}
	/*---h1---*/
	#titletxt h1{
		padding:10px;
		line-height:1.3;
	}
	/*--logo--*/
	#hdrOuter{ background:none;}
	#hdrOuter #hdrLogo{
		width:100%;
		float:none;
		padding:10px;
	}
	/*--siteInfo--*/
	#hdrInner{
		width:100%;
		float:none;
		padding:0 10px 10px;
	}
	#hdrInner *{
		text-align:left !important;
	}
	
	#hdrInner ul li{
		margin-right:1em;
	}
	
}

/* gNav
--------------------------------------------------------*/
header nav ul{
 	display: flex;
	justify-content: flex-end;
	align-items: center;
}



header nav ul li{
	font-size: calc(20 / 1920 * 100vw);
	font-weight:500;
	color: #434343;
	
}

header nav ul li a{
	display: block;
	padding:0 calc(15 / 1920 * 100vw) ;
	margin:0 calc(20 / 1920 * 100vw) ;
	color: #434343;
	text-decoration: none;
	position: relative;
}

header nav ul li a:hover{
	color: #009de9;
	opacity: 1;
}

header nav ul li a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background-color: #009de9;
  bottom: -10px;
  left: 0;
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .3s ease-in-out;
}

header nav ul li a:hover::before {
  transform-origin: left;
  transform: scaleX(1);
}

/* 初期状態でサブメニューを非表示にしておく */
.sub-menu {
  opacity: 0;
	z-index: 9999;
}

/* 子を持つ親メニューにマウスオーバーしたとき、サブメニューを表示する */
.menu-item-has-children:hover .sub-menu {
  display: block;
	opacity: 1;
}

/* サブメニューをabsoluteにするため、親メニューをrelativeに */
.menu-item-has-children {
  position: relative;
}

/* 親メニューにマウスオーバーしたときにカーソルを変更 */
.menu-item-has-children:hover {
  cursor: pointer;
}

/* 子を持つ親メニューにマウスオーバーしたときサブメニューを表示 */
.menu-item-has-children:hover .sub-menu {
  display: block;
	opacity: 1;
	transition: 0.2s;
	visibility: visible;

}

/* サブメニューをabsoluteにして親メニューの下に配置。スタイルは適宜調整してください */
.sub-menu {
  position: absolute;
 visibility: hidden;
   top: 78%;
  left: 3%;
  width: 270px;
	margin:5px 0 0 0;
  padding: 20px 2% 10px;
	background: rgba(255,255,255,0.8);
}

/* サブメニューの境目をわかりやすくするため、一番下の項目以外下線を引いた */
.sub-menu > .menu-item:not(:last-child) {
 
}

.sub-menu > .menu-item a{
	margin:0!important;
}

/* サブニューのリンクタグをmenu-itemの大きさと合わせ、クリックしやすいようにした */
.sub-menu > .menu-item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 20px 10px 10px;
	transition: 0.5s;
}

.menu-item-has-children> a:after{
	font-family: "Font Awesome 5 Free";
content: '\f106';
transform:rotate(180deg); 
font-weight: 900;
position: absolute;
top: 2px;
right: -10px;
	transform: 0.5s;
}


/* -----------------------------------------------------------------------
container wrap
------------------------------------------------------------------------- */
#container{
	background-color:#fff;
	margin-top:calc(110 / 1920 * 100vw) ;
}



/* -----------------------------------------------------------------------
topicPath
------------------------------------------------------------------------- */

#topicPath{
	margin:20px 0 60px;
	text-align:left;
}

/* -----------------------------------------------------------------------
contents
------------------------------------------------------------------------- */

article section h2{
	text-align: center;
	font-size: calc(48 / 1920 * 100vw) ;
	font-weight:200;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 8px;
	margin:0 auto 70px;
}


.l_pic{
	display: flex;
	align-items: center;
}


.aboutus{
	margin-bottom: 110px;
}

.l_pic img{
	border-radius:30px;
	width:calc(720 / 1920 * 100vw) ;
	margin-right:calc(70 / 1920 * 100vw) ;
}

.lpc_txt{
	width: 100%;
}

.voice{
	background: #e9f8ff;
	padding: 110px 0;
}


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

.voice_box{
	width:calc(500 / 1920 * 100vw) ;
}

.voice_box figure{
	 width: calc(500 / 1920 * 100vw);
    height: calc(360 / 1920 * 100vw);
    margin-bottom: calc(25 / 1920 * 100vw);
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
}


.h2sm{
	font-size: calc(23 / 1920 * 100vw) ;
	padding: 0 0 0 30px;
	font-weight: 100;
}


.voice_box h3{
	text-align: center;
}

.voice_box strong{
	font-size: calc(24 / 1920 * 100vw) ;
	font-weight: 400;
}


.product{
	padding: 110px 0;
}


.pro_box{
	width:calc(1200/ 1920 * 100vw) ;
	height: calc(700/ 1920 * 100vw)!important;
	border:1px solid #494949;
	padding: calc(20/ 1920 * 100vw) calc(50/ 1920 * 100vw) ;
	position: relative;
	margin: 0 calc(30/ 1920 * 100vw) ;
}


.pro_box figure{
	width:calc(500/ 1920 * 100vw)!important ;
	height: calc(450/ 1920 * 100vw)!important;
	margin: calc(50/ 1920 * 100vw) calc(10/ 1920 * 100vw) ;
	text-align: center;
	display: flex;
	justify-content: center;
}

.pro_box figure img{

}


.pro_box h3{
	letter-spacing: 6px;
	font-size: calc(33/ 1920 * 100vw) ;
	width: calc(466/ 1920 * 100vw) ;
}

.pro_box p{
	font-size: calc(24/ 1920 * 100vw) ;
	width: calc(750/ 1920 * 100vw) ;
	position: relative;
}

.pro_flex{
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.pro_btn{
	border: 1px solid #494949;
	padding: calc(20/ 1920 * 100vw) ;
	border-radius:  calc(15/ 1920 * 100vw) ;
	width: calc(300/ 1920 * 100vw) ;
	text-align: center;
	position:relative;
	bottom:calc(10/ 1920 * 100vw) ;
	right:calc(-860/ 1920 * 100vw) ;
	font-size: calc(16/ 1920 * 100vw) ;
	color:#000000;
	text-decoration: none;
}


.pro_btn:hover{
	opacity: 1;
}

.pro_btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #25adec;
  transform-origin: 50% 0%;
	border-radius:  calc(15/ 1920 * 100vw) ;
  transform: scaleY(0);
  transition: transform ease .3s;
}
.pro_btn:hover {
  color: #fff;
}
.pro_btn:hover::before {
  transform-origin: 50% 100%;
  transform: scaleY(1);
}


.slick-dots li button:before{
	font-size: 50px!important;
}

.pro_icon{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	align-content:flex-start;
	text-align: center;
	margin-top:80px;
}

.pro_icon img{
	display: block;
	margin:0 auto calc(30/ 1920 * 100vw);
	width: auto!important;
	max-width: inherit!important;
	text-align: center;
}

.pro_icon li a{
	display: block;
	width: calc(230/ 1920 * 100vw) ;
	border: 1px solid #434343;
	color:#434343;
	text-decoration: none;
	border-radius:  calc(15/ 1920 * 100vw) ;
	padding: calc(30/ 1920 * 100vw) ;
	font-size:calc(16/ 1920 * 100vw) ;
}

.pro_icon li:last-child{
	margin-right: 0;
}



.pro_icon li a:hover{
	border: 1px solid #25adec;
	color:#25adec;
	opacity: 1;
}



.news{
	background: #fefcf4;
	padding: 110px 0;
}


.news_box{
	width:100%;
	display: flex;
	align-items: center;
	border-bottom: 1px solid #b2b2b2;
	padding: calc(15/ 1920 * 100vw) 0;
}


.news_box p{
	margin-bottom: 0;
}

.news_box figure{
	width:calc(120/ 1920 * 100vw) ;
	height: calc(120/ 1920 * 100vw) ;
	overflow: hidden;
	text-align: center;
    display: flex;
    align-items: center;
	margin-right: calc(60/ 1920 * 100vw) ;
}

.date{
	font-size: calc(24/ 1920 * 100vw) ;
	font-weight: 400;
	margin-right: calc(60/ 1920 * 100vw) ;
}

.news_box h3 a{
	text-decoration: none;
	font-size: calc(18/ 1920 * 100vw) ;
	color:#434343;
	font-weight: 300;
}


.more{
	text-align: right;
	color:#434343;
	text-decoration: none;
	font-size: calc(18/ 1920 * 100vw) ;
}


.news_more{
	text-align: right;
	margin:calc(20/ 1920 * 100vw) 0;
}




/*--table --*/

.abouttable th, .abouttable td{
	padding: 2%!important;
	line-height: 1.5;
	font-size:  calc(18/ 1920 * 100vw) ;
}

.abouttable th{
	width: 35%;
}

.abouttable{
	margin-bottom: 50px;
}

.post table{
	width:100%;
	border-top:#ccc 1px solid;
	border-left:#ccc 1px solid;
}

.post table th,
.post table td{
	border-bottom:#ccc 1px solid;
	border-right:#ccc 1px solid;
	padding:8px;
	text-align:left;
}
.post table th{
	background-color:#eeeeee;
	vertical-align:top;
}


.archive #container,.page #container,.single #container{
	margin-bottom: calc(110 / 1920 * 100vw);
}




.item_list{
	display: flex;
	justify-content:space-between;
	 flex-wrap: wrap;
	margin-bottom: calc(110 / 1920 * 100vw);
	
}

.item_list .pro_icon{
	margin-top:0;
	justify-content: flex-start;
}

.item_list .pro_icon li a{
    display: block;
    width: calc(300/ 1920 * 100vw);
	height:  calc(300/ 1920 * 100vw);
    border: 1px solid #434343;
    color: #434343;
    text-decoration: none;
    border-radius: calc(15/ 1920 * 100vw);
    padding: calc(40/ 1920 * 100vw);
    font-size: calc(16/ 1920 * 100vw);
	line-height: 1.3;
	margin-bottom: calc(40/ 1920 * 100vw);
	margin-right: calc(45/ 1920 * 100vw);
}

.item_list figure{
	width:calc(217/ 1920 * 100vw) ;
	height: calc(200/ 1920 * 100vw) ;
	overflow: hidden;
	text-align: center;justify-content: center;
    display: flex;
	margin-bottom: 10px;
}

.item_list .pro_icon li a:hover{
	border: 1px solid #25adec;
	color:#25adec;
	opacity: 1;
}




.report_area li a{
	display: flex;
	font-size:  calc(16/ 1920 * 100vw) ;
	align-items: center;
	padding: 20px 0;
	border-bottom: 1px solid #D1D1D1;
}

.report_area li a figure{
	width:calc(100/ 1920 * 100vw) ;
	height: calc(110/ 1920 * 100vw) ;
	text-align: center;
    display: flex;
	margin: 0 calc(30/ 1920 * 100vw) calc(10/ 1920 * 100vw);
}


.privacy-policy article section h2{
	text-align: left;
	margin-top:50px; 
}


/* -----------------------------------------------------------------------
footer
------------------------------------------------------------------------- */
footer{
  background-image: -moz-linear-gradient( 137deg, rgba(0,159,233,0.99608) 0%, rgb(0,127,204) 100%);
  background-image: -webkit-linear-gradient( 137deg, rgba(0,159,233,0.99608) 0%, rgb(0,127,204) 100%);
  background-image: -ms-linear-gradient( 137deg, rgba(0,159,233,0.99608) 0%, rgb(0,127,204) 100%);
	
}

.ft_flex{
	padding: calc(70/ 1920 * 100vw) 0 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}


.logo_ft{
	width: calc(470/ 1920 * 100vw) ;
}


footer nav li{
	display:inline;
	margin-right: calc(60/ 1920 * 100vw) ;
}

footer nav li a{
	color:#fff;
	font-size: calc(24/ 1920 * 100vw) ;
	text-decoration: none;
}


footer nav li:last-child{
	margin-right: 0;
}

.sub_nav{
	width:calc(1732 / 1920 * 100vw);
	margin: 0 auto;
	text-align: right;
}

.sub_nav li a{
	color:#fff;
	font-size: calc(18/ 1920 * 100vw) ;
}



footer .copy{
	color:#fff;
	text-align: center;
	font-size: calc(16/ 1920 * 100vw) ;
	padding: calc(80/ 1920 * 100vw) 0 calc(20/ 1920 * 100vw);
	margin-bottom: 0;
}


#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 0;
  bottom: 0;
  background: #3f98ef;
  opacity: 0.6;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*for Tablet*/
@media only screen and (min-width : 768px) and (max-width : 959px){
	footer{
		padding-left:15px;
		padding-right:15px;
	}
}

/*for SP*/
@media only screen and (max-width: 767px) {
	footer nav{
		display:none;
	}
	footer .copy{
		color:#fff;
		font-size:	0.714em;
		padding:0 0 30px;
		text-align:center;
	}
}

/* -----------------------------------------------------------------------
second page common parts
------------------------------------------------------------------------- */
/* mainTitle
--------------------------------------------------------*/
#mainTitle{
	background:#0080cd 0 0 no-repeat;
	padding:45px 20px;
	text-align:right;
	font-size:2em;
	letter-spacing:5px;
	color:#fff;
	position: relative;
}

.pager{
	margin:20px 0;
	overflow:hidden;
}

.pre_p{
	float:left;
}

.pre_n{
	float:right;
}



/*------------------------------------------------------------------------- */
/* 製品ページ
--------------------------------------------------------*/


.itemp_flex{
	display: flex;
	justify-content:space-between;
	margin-bottom: 50px;
}



.syousai_button{
	padding: 2%;
	width:100%;
	color:#2dade9;
	text-align: center;
	margin:0 auto;
	font-size: 18px;
	display: block;
	background:#fff;
	border:1px solid #2dade9;
}

.syousai_button:hover{
	background:  #52bced;
	color:#fff;
}


#mainImg{
	margin-bottom: 10px;
	width:100%;
}

#mainImg figure img{
	max-height: 500px;
	
}

#mainImg figure{
	width: 100%;
	text-align: center;
	margin-bottom: 50px;
}

  #subImg{
           display: flex;
	  justify-content: center;
        }
        #subImg li{
            width: calc(150/ 1920 * 100vw) ;
			height: calc(150/ 1920 * 100vw) ;
			overflow: hidden;
            border: 1px solid #ccc;
			padding-bottom: 0;
			margin:0px 10px 30px 0px!important;
			text-align: center;
        }

#subImg li img{
	height: 100%;
}

.post ul#subImg{
	margin-bottom: 0;
}


        #subImg li.current{
            border: 1px solid #00b5ea;
        }


.item_pg{
	margin-bottom: 50px;
}

.catalog_btn{
	margin: calc(20/ 1920 * 100vw) 0;
	text-align: center;
}


.catalog_btn a{
	display: block;
	width: 80%;
	margin:0 auto;
	padding: 4%;
	border:2px solid #00b5ea;
}


.catalog_btn a:hover{
	opacity: 1;
	color:#fff;
	background: #00b5ea;
}

.item_cont{
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin:calc(50/ 1920 * 100vw) 0;
}


.itemcont_pic{
	width: calc(500/ 1920 * 100vw) ;
	text-align: center;
}


.itemcont_txt{
	width: calc(1000/ 1920 * 100vw) ;
}


.item_other{
	width:100%;
}


.movie_area{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin:calc(50/ 1920 * 100vw) 0;
}

.movie_box {
	margin: 20px;
}

.movie_box iframe{
	width: calc(600/ 1920 * 100vw) ;
	height: calc(400/ 1920 * 100vw) ;
}


.left_area{
	width: calc(650/ 1920 * 100vw) ;
}

.right_area{
	width: calc(1000/ 1920 * 100vw) ;
}




/* -----------------------------------------------------------------------
Contact Form 7 
------------------------------------------------------------------------- */
.wpcf7{}

.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap textarea{
   border-radius: 5px;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   -o-border-radius: 5px;
   -ms-border-radius: 5px;
   border:#a9a9a9 1px solid;
   -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
   -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   width:300px;
   height:25px;
   padding:0 3px;
   margin:3px 0;
}
.wpcf7-form-control-wrap textarea{
   width:100%;
	height:200px;
}


.wpcf7-form-control-wrap input[type="text"],
.wpcf7-form-control-wrap input[type="email"],
.wpcf7-form-control-wrap input[type="tel"],
.wpcf7-form-control-wrap textarea, 
.wpcf7-form-control-wrap select{ 
   outline: none;
	   width: 100%;
	padding: 2%;
}

.wpcf7 input[type="submit"]{
   border-radius: 10px;
   -moz-border-radius: 5px;
   -webkit-border-radius: 5px;
   -o-border-radius: 5px;
   -ms-border-radius: 5px;
   border:#a9a9a9 1px solid;
   -moz-box-shadow: inset 0 0 5px rgba(0,0,0,0.2),0 0 2px rgba(0,0,0,0.3);
   -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2),0 0 2px rgba(0,0,0,0.3);
   padding:30px 40px;
   cursor:pointer;
	font-size: 20px;
	width: 80%;
	margin:0 auto;
   color:#fff;
   background:#088fd4;text-align: center;
	transition: 0.5s;
}


.wpcf7 input[type="submit"]:hover{
	opacity: 0.8;
}

.wp-pagenavi{
	margin: 50px 0;
}


/* common parts
--------------------------------------------------------*/
.attention{color:#FF0004;}
.attention2{background-color:#FFED00;}

.waku{border:#FF0004 1px solid; padding:10px;}


/* SP
--------------------------------------------------------*/

/*for SP*/
@media only screen and (max-width: 767px) {
	
	
	header{
		z-index: 3;
	}
	
	#titletxt h1{
		margin:0;
	}
	
	.sub-menu{
		position: relative;
		width: 100%;
		top:0;
		left:0;
		opacity: 1;
		visibility: visible;
	}
	
	.sub-menu > .menu-item a{
		padding:10px 30px;
		margin-bottom: 1px!important;
	}
	
	article section h2{
		font-size: calc(60 / 767 * 100vw);
	}
	
	.home section{
		padding: 80px 5%!important;
	}
	
	article section h2{
		display: block;
		text-align: center;
	}
	
	.h2sm {
  font-size: calc(30 /  767 * 100vw);
		display: block;
		margin-top:20px;
		text-align: center;
		padding: 0;
	}
	
	.l_pic{
		display: block;width: 100%;
	}
	
	.l_pic img{
		width: 100%;
		margin-bottom: 30px;
		text-align: center;

	}
	
	p,.pro_box p{
  line-height: 1.7;
  font-size: calc(30 / 767 * 100vw);
  margin-bottom: calc(30 / 767 * 100vw);
	}
	
	
	.aboutus{
		padding-top:90px;
	}
	
	.voice_box{
		width:100%;
		margin-bottom: 50px;
	}
	
	.voice_flex{
		display: block;
	}
	
	.voice_box figure{
		width: 100%;
		height: auto;
		display: block;
	}
	
	h3 {
  font-size: calc(40 / 767 * 100vw);
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.6;
	}
	
	
	h4 {
    font-size: calc(30 / 767 * 100vw);
	}
	
	.voice_box strong {
  font-size: calc(35 / 767 * 100vw);
  font-weight: 400;
}
	
	.pro_box{
		width: calc(500 / 767 * 100vw);
		height: calc(700 / 767 * 100vw)!important;
	}
	
	.pro_box p{
		width: 100%;
	}
	
	.pro_flex{
		display: block;
	}
	
	.pro_box figure{
		width: 100%;
		max-height: 300px;
		text-align: center;
		margin: 30px auto 30px;
	}
	
	.pro_box h3{
		font-size: calc(38/ 767 * 100vw);
		letter-spacing: 2px;
		margin-bottom: 10px;
		width:100%;
	}
	
	.pro_btn{
		position: absolute;
		z-index: 2;
		width: 80%;
		bottom:calc(30/ 767 * 100vw);
		left:calc(40/ 767 * 100vw);
		font-size: calc(20/ 767 * 100vw);
	}
	
	.pro_icon{
		flex-wrap:wrap;
	}
	
	.pro_icon li a{
		width: calc(300 / 767 * 100vw);
		height:  calc(300 / 767 * 100vw);
		font-size: calc(24/ 767 * 100vw);
		margin-bottom: 30px;
	}
	
	.news_box{
		display: block;
		padding: calc(50/ 767 * 100vw) 0;
	}
	
	.news_box:first-child{
		padding-top:0;
	}
	
	.news_box figure{
		width:100%;
		height: calc(400/ 767 * 100vw);
		display: flex;
		justify-content: center;
	}
	
	.date {
  font-size: calc(30/ 767 * 100vw);
  font-weight: 400;
  margin-right: calc(60/ 767 * 100vw);
}
	
	.news_box h3 a{
		font-size: calc(25/ 767 * 100vw);
		line-height: 1.2;
	}
	
	.news_box h3{
		line-height: 1;
	}
	
	.more {
  text-align: right;
  color: #434343;
  text-decoration: none;
  font-size: calc(30/ 767 * 100vw);
}
	
	.logo_ft{
		margin:50px auto;
	}
	
	
	h2 {
    text-align: center;
    font-size: calc(50 / 767 * 100vw);
	}
	
	.page article,.single article,.archive article{
		padding: 0 5%;
	}
	
	#topicPath{
		padding: 0 2%;
	}
	
	.item_list .pro_icon li a{
		width: calc(316/ 767 * 100vw);
    	height: calc(310/ 767 * 100vw);
		 font-size: calc(20/ 767 * 100vw);
		text-align: left;
	}
	
	.item_list figure {
    width: calc(217/ 767 * 100vw);
    height: calc(200/ 767 * 100vw);
	margin:0 auto calc(20/ 767 * 100vw);;
	}
	
	
	.report_area li a figure{
		width: calc(100/ 767 * 100vw);
    height: calc(110/ 767 * 100vw);
	}
	
	.report_area li a {
    display: flex;
    font-size: calc(25/ 767 * 100vw);
	}
	
	#subImg li{
	 width: calc(150/ 767 * 100vw);
    height: calc(150/ 767 * 100vw);
	}
	
	.itemp_flex,.item_cont,.movie_area{
		display: block;
	}
	
	.left_area,.right_area,.itemcont_pic,.itemcont_txt{
		width: 100%;
		margin-bottom: 50px;
	}
	
	.movie_box iframe{
		width: 100%;
		height: calc(400/ 767 * 100vw);
	}
	
	.movie_area{
		margin-bottom: 80px;
	}
	
	.single p,.page p{
		font-size: calc(25 / 767 * 100vw)!important;
	}
	
	.post table th,.post table td{
		width: 100%;
		display: block;
		font-size: calc(25/ 767 * 100vw);
	}

}