@charset "utf-8";
/* CSS Document */
/******************************************************************
Theme Name: kaiei
Autor: LeafLink Inc
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}
body {
  line-height: 1;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ul,
ol,
dl{
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
input,
select {
  vertical-align: middle;
}
/* Global WebFont reset ---------------------------- */
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: normal;
  src: local('YuGothic-Medium'), local('Yu Gothic Medium'), local('YuGothic-Regular');
}
@font-face {
  font-family: 'MyYuGothicM';
  font-weight: bold;
  src: local('YuGothic-Bold'), local('Yu Gothic');
}
@font-face {
  font-family: 'Source Code Pro', monospace;
}
/* フェードイン ---------------------------- */
.element {
  /* 最初は非表示  opacityだけだと透過はできるがリンクの判定が残ったりするのでvisibilityも入れる*/
  transform: translateY(100px);  /*ちょっと下に配置*/
  opacity: 0; /*透明*/
  visibility: hidden; /*要素分の領域は確保されたまま非表示*/	
  transition: transform 1s, opacity 1s;  /*アニメーション1sかけて下から上に・透明から不透明に*/	
}
.element2 {
  /* 最初は非表示  opacityだけだと透過はできるがリンクの判定が残ったりするのでvisibilityも入れる*/
  transform: translateX(-300px);  /*ちょっと左に配置*/
  opacity: 0; /*透明*/
  visibility: hidden; /*要素分の領域は確保されたまま非表示*/
  transition: transform 1s, opacity 1s;  /*アニメーション1sかけて下から上に・透明から不透明に*/
}
.element3 {
  /* 最初は非表示  opacityだけだと透過はできるがリンクの判定が残ったりするのでvisibilityも入れる*/
  transform: translateX(300px);  /*ちょっと左に配置*/
  opacity: 0; /*透明*/
  visibility: hidden; /*要素分の領域は確保されたまま非表示*/
  transition: transform 1s, opacity 1s;  /*アニメーション1sかけて下から上に・透明から不透明に*/
}	
/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0); /*元の配置になる*/
  opacity: 1; /*不透明*/
  visibility: visible; /*表示*/
}
@media screen and (max-width: 1000px) {
/* フェードイン 表示させたまま---------------------------- */
.element,.element2,.element3 {
	opacity: 1; /*透明なし*/
	visibility: visible; /*表示*/
	transform: none;
}}
/* Global TAG styles---------------------------- */
* {
  margin: 0;
  padding: 0;
}
a {
	text-decoration: none;
	color: #333;
	overflow: visible;
	-moz-transition-property: all;
	-moz-transition-duration: 0.3s;
	-moz-transition-timing-function: ease-in;
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-in;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: ease-in;
}
a:hover {
    color: #FF0000;
}
a:hover img {
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
  opacity: 0.7;
}
.hop:hover img {/*画像上がる*/
  transform: translateY(-8px);
  transition-duration: 0.2s;
  opacity: 1;
}
.scale-s:hover img {/*画像縮小*/
	transform: scale(0.95);
	transition-duration: 0.2s;
	opacity: 1;
}
.scale-l:hover img {/*画像拡大*/
	transform: scale(1.2);
	transition-duration: 0.3s;
	opacity: 1;
}
.clear {/*ポインターイベント解除*/
	pointer-events: none;
}
.kaigyo {
	word-break: auto-phrase;
}
.domhover {
  text-decoration: none;
  color: #2589d0;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.domhover:hover {
  opacity: 0.7;
}
.domhover:hover img {
  opacity: 1;
}
body {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  font-family: 'MyYuGothicM', 'Yu Gothic', sans-serif;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.05em;
  background: #fff;
}
strong {
  font-weight: bold;
}
img {
  max-width: 100%;
  height: auto;
}
/*両端斜め線　タイトル*/
.title-slash {
	position: relative;
	padding: 0 1.3em;
	display: inline-block;
}
.title-slash:before,.title-slash:after {
    position: absolute;
    top: 0.5rem;
    height: 2rem;
    content: '';
}
.title-slash:before {
    border-left: solid 2px;
    left: 0;
    transform: rotate(-30deg);
}
.title-slash:after {
    border-right: solid 2px;
    right: 0;
    transform: rotate(30deg);
}
.title01 {
	font-size: 36px;
	color: #333333;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-align: center;
}
.title01 span {
  display: block;
  margin: 22px;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.25em;
}
.title02 {
  font-size: 21px;
  color: #333333;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.15em;
}
.title02 span {
	display: inline-block;
	zoom: 1;
  *display: inline;
	margin-left: 10px;
	font-family: 'MyYuGothicM', 'Yu Gothic', sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #AF143E;
	letter-spacing: 0.25em;
}
.title03 {
	font-size: 21px;
	color: #333333;
	font-weight: 300;
	letter-spacing: 0.2em;
	text-align: center;
	width: 100%;
	border-bottom: 2px solid #75b46e;
	margin-bottom: 10px;
	padding-bottom: 30px;
}
.btn01 {
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
  color: #fff;
  padding: 2px 30px 3px;
  letter-spacing: 0.1em;
  font-family: 'Open Sans', sans-serif;
  font-size: 10px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  border: 1px solid #fff;
  text-align: center;
}
.btn01:after {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 12px;
  right: 5px;
  top: 50%;
  margin-top: -6px;
  background: url("/assets/img/common/icn_arr_b.png") center center no-repeat;
  background-size: 100% auto;
}
.btn01:hover {
  color: #2589d0;
  background: #fff;
  text-decoration: none;
}
.btn02 {
  display: inline-block;
  zoom: 1;
  *display: inline;
  position: relative;
  color: #333333;
  padding: 2px 30px 3px;
  margin-left: 5px;
  letter-spacing: 0.1em;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  border: 1px solid #333333;
  -moz-border-radius: 2em;
  -webkit-border-radius: 2em;
  border-radius: 2em;
  text-align: center;
}
.btn02:after {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 12px;
  right: 5px;
  top: 50%;
  margin-top: -6px;
  background: url("/assets/img/common/icn_arr_bk.png") center center no-repeat;
  background-size: 100% auto;
}
.btn02:hover {
  color: #fff;
  background: #e5893f;
  text-decoration: none;
}
.btn03 {
  display: inline-block;
  position: relative;
  color: #fff;
  padding: 2px 30px 3px;
  letter-spacing: 0.1em;
  font-size: 20px;
  line-height: 1.6;
  text-align: center;
  background: #3B70AB;
  margin-bottom: 5px;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.btn03:after {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 12px;
  right: 5px;
  top: 50%;
  margin-top: -6px;
}
.btn03:hover {
  color: #3B70AB;
  border: 1px solid #3B70AB;
  background: #fff;
  text-decoration: none;
}
.btn04 {
  display: inline-block;
  zoom: 1;  
  position: relative;
  color: #fff;
  padding: 5px 30px;
  letter-spacing: 0.1em;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  background: #3B70AB;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.btn04:after {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 12px;
  right: 5px;
  top: 50%;
  margin-top: -6px;
}
.btn04:hover {
  color: #3B70AB;
  border: 1px solid #3B70AB;
  background: #fff;
  text-decoration: none;
}
.btn05 {
  width: 60%;
  display: inline-block;
  zoom: 1;  
  position: relative;
  color: #fff;
  padding: 10px;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
  background: #009F4A;
  -moz-transition-property: all;
  -moz-transition-duration: 0.3s;
  -moz-transition-timing-function: ease-in;
  -webkit-transition-property: all;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in;
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease-in;
}
.btn05:after {
  content: '';
  display: block;
  position: absolute;
  width: 5px;
  height: 12px;
  right: 5px;
  top: 50%;
  margin-top: -6px;
}
.btn05:hover {
  color: #3B70AB;
  border: 1px solid #3B70AB;
  background: #fff;
  text-decoration: none;
}

/* Grobal Layout styles------------------------------ */
#main {
  margin: 0 auto;
  padding-top: 5.5vmax;
  text-align: left;
  clear: both;
}
#main .wrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
/* 1280px幅・850px幅 */
#main .wrap-1280 {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
#main .wrap-850 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;	
}
#main #mv img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.sectionbg {
  padding-top: 35px;
  padding-bottom: 150px;
  position: relative;
}
.sectionbg:before {
  display: block;
  position: absolute;
  top: -70px;
  left: 0;
  content: '';
  width: 100%;
  height: 70px;
  background-size: 100% auto;
}
.bg-w {
  background: #fff;
}
/*.bg-w:before {
  background-image: url("https://www.kaiei-kyowa.jp/assets/img/common/bg-wave-w.png");
}*/
.bg-b1 {
  background: #3B70AB;
  color: #fff;
}
.bg-b1:before {
  background-image: url("file:///D|/メルマガ/HP/求人/bg-wave-b1.png");
}
.bg-g {
	background-color: #E6E9EC;
}
/*.bg-gn:before {
  background-image: url("https://www.kaiei-kyowa.jp/assets/img/common/bg-wave-b2.png");
}*/
.bg-be {
  background: #f3efed;
}
.bg-be:before {
  background-image: url("https://www.kaiei-kyowa.jp/assets/img/common/bg-wave-be.png");
}
/*-----------header------------*/
header {
  width: 100%;
  height: 5.5vmax;
  position: fixed;
  background: white;
  z-index: 1000;
  box-shadow: 0 3px 9px 0 rgb(0 0 0 / 50%);
}
/*-----------navi------------*/
.navbes1 {
  width: 100%; 
}
.navbes2 {
	width: 26%;
    padding: 1% 2% 0 1%;
    float: left;
	box-sizing: border-box;
}
.navbes2 p {
	font-size: 0.9vw;
}
nav {
 width: 74%;
 box-sizing: border-box;
 float: left;
 background: #009F4A;
 } 
nav ul {
	list-style: none;
	position: relative;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
}
nav li {
	flex-grow: 1;
	text-align: center;
	height: 5.5vmax;
}
nav li:after {
    content: "";
    display: block;
    height: 60%;
    width: 0;
    border-right: 1px solid #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
nav li:first-of-type:after,
nav li:last-of-type:after{
    content: none;
}
nav li a {
  display: inline-block;
  font-size: 1vw;
  font-weight: bold;
  font-family: 'Meiryo';
  text-decoration: none;
  color: white;
  box-sizing: border-box;
  padding-top: 1.4vmax;
    height: 5.5vmax;
    width: 100%;
 }
nav li a span {
	display: block;
	font-size: 0.7vw;
	font-weight: normal;
}
nav li a:hover {
	color: #F7FF00;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
} 
nav li:last-of-type img {
	width: 30%;
}
nav li:last-of-type {
    background: #0071BC;
    width: 8%;
}
nav li:last-of-type a {
  padding-top: 0.9vmax;
}
nav li:last-of-type a:hover {
	background: #ff0000;
	color: white;
	-webkit-transition: all .2s ease;
    transition: all .2s ease;
}
nav li:last-of-type a:hover img{
	opacity: 1;
}
.head--menu {
  display: none;
}
.head--menu__close {
  display: none;
}
/*プルダウンサブメニュー*/
li.menu__single {
    position: relative;
}
li.menu__single dl.menu__second-level {
	    visibility: hidden;
    opacity: 0;
	background: #009F4A;
    position: absolute;
    top: 5.6vmax;
	left: -28%;
	width: 150%;
	padding-bottom: 1rem;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
li.menu__single:hover dl.menu__second-level {
    visibility: visible;/*要素を表示する*/
    opacity: 1;
}
li.menu__single .menu__second-level dt a {
	padding: 1rem 0;
	height: 0;
	font-weight: normal;
}
li.menu__single .menu__second-level dt a:hover {
	color: #F7FF00;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
/*-----------under------------*/
#sv {
  position: relative;
}
#sv img {
	width:100%; 
}
#panList {
  z-index: 1;
  position: absolute;
  margin-top: 10px;
  left: 0;
  right: 0;
  text-align: right;
  font-size: 12px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
#panList #panListInner {
  max-width: 450px;
  margin-left: auto;
}
#panList li {
  display: inline-block;
  zoom: 1;
  *display: inline;
  line-height: 1.4;
}
/* --------------------------------------------
 *					Footer
 * -------------------------------------------- */
footer {
	clear: both;
	width: 100%;
	padding: 70px 20px 20px;
	box-sizing: border-box;
	text-align: left;
	background-color: #FFFFFF;
	border-top: 5px solid #009F4A;
	color: #666666;
}
footer #toparr {
	opacity: 0.6;
	display: block;
	position: fixed;
	bottom: 30px;
	right: 30px;
	background-size: 12px auto;
	width: 40px;
	height: 40px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	z-index: 1;
	background-color: #3b70ab;
	background-image: url(/assets/img/common/icn_totop_w.png);
	background-repeat: no-repeat;
	background-position: center 16px;
}
footer #toparr:hover {
  opacity: 1;
}
footer .wrap {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
}
footer #footer--sitemap {
	background: #ffffff;
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
	font-size: 0.8rem;
}
footer #footer--sitemap dl {
  display: block;
  box-sizing: border-box;
  padding-left: 3%;
  flex-grow: 1;
}
footer #footer--sitemap dl dt {
  position: relative;
  margin-bottom: 50px;
  font-weight: bold;
}
footer #footer--sitemap dl dd {
  display: block;
  margin-bottom: 12px;
}
footer .footer--cta {
	width: 80%;
	overflow: hidden;
	margin: 6% auto 3%;
	font-size: 0.9rem;
}
footer .footer--cta .cont1 {
	float: left;
	width: 45%;
}
footer .footer--cta .cont1 img {
	width: 60%;
}
footer .footer--cta .cont1 span {
	display: inline-block;
	margin-left: 2%;
}	
footer .footer--cta .cont2 {
	float: left;
	overflow: hidden;
	width: 50%;
	position: relative;
}
footer .footer--cta .cont2>div{
	background: #E6E9EC;
	text-align: center;
    margin-bottom: 10px;
}
footer .footer--cta .cont2 ul {
	float: left;
	width: 50%;
}
footer .footer--cta .cont2 ul:after {
    content: "";
    display: block;
    height: 90%;
    width: 0;
    border-right: 1px solid #cccccc;
    position: absolute;
    top: 20%;
    left: 50%;
}
footer .footer--cta .cont2 li {
	position: relative;
	display: block;
}
footer .footer--cta .cont2 ul li span {
	position: absolute;
	left: 40%;
}footer .footer--cta .cont2 ul:last-of-type li span {
	position: absolute;
	left: 40%;
}
footer .footer--cta .cont2 ul:last-of-type {
	float: right;
	width: 45%;
}
#footer--rights {
  text-align: center;
  padding: 15px;
  font-size: 11px;
}
.section {
  margin-bottom: 50px;
}
.onlypc {
  display: inherit;
}
.onlysp {
  display: block;
  display: none;
}

.bule{
	color: #3b70ab;
}

/*WP-Members*/
.link-text-username {
	display: none;
}
.cad-login-wrap {
	max-width: 980px;
	margin: 20px auto 70px;
	padding: 30px;
}
/* メルマガボタン 2カラムの各営業所一覧*/ 
.btn-flat-simple {
  display: inline-block;
  width: 200px;
  text-align: center;
  font-weight: bold;
  padding: 10px 24px;
  text-decoration: none;
  color: white;
  background: #1741a0;
  margin: 2px 15px;
  transition: .4s;
}
.btn-flat-simple:hover {
  background: #ECECEC;
    color: #1741a0;
}  
 /* メルマガ全体 */         
#mailmg {
	margin-right:auto;
	margin-left:auto; 
  width: 100%;
  max-width: 600px;
}
#mailmg800 {/*パラペット用*/ 
width: 100%;
max-width: 800px;
text-align: center;
margin: 0 auto; 
}	
#mailmg800 .mail-2columns {
display: flex;    
box-sizing: border-box;
width: 75%;
margin: auto;
}
#mailmg800 .mail-2columns div:first-child {
flex-basis:75%;
margin: auto;		
}
#mailmg800 .mail-2columns div {
flex-basis:25%;		
}
/* 施工実績 隠し文字*/
.search-keyword {
	color: white;
	font-size: 12px;
}

/* for PC1366pX -------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 1366px) {
#main .wrap-1280 {
  max-width: 980px;
}
footer .footer--cta .cont1{
	width: 40%;
	padding-left: 3%;
}
footer .footer--cta {
	width: 100%;
}
footer .footer--cta .cont2 {
    width: 55%;
}}
/* for smartphone -------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 980px) {
  * {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  body {
    line-height: 1.5;
    border: none;
  }
  img {
    width: 100%;
  }
  h2 {
    margin: 20px 0 10px;
    position: relative;
  }  
/*両端斜め線　タイトル*/
.title-slash:before,.title-slash:after {
    top: 0.3rem;
    height: 1.2rem;
}	
  .title01 {
    font-size: 24px;
    background: url("/assets/img/common/bg-h2.png") center 1.6em no-repeat;
    background-size: 30px auto;
  }
  .title01 span {
    margin: 12px 0 20px;
    font-size: 11px;
  }
  .btn01 a {
    color: #fff;
    padding: 10px;
  }	  
  #main {
    padding-top: 54px;
  }
  #main .wrap {
    margin: 20px;
  }
/*スマホ製品ページ等img画像中央揃え拡大*/	
#main #sv {
    padding-bottom: 30px;
    overflow: hidden;
    display: flex;
	justify-content: center;
  }
#main #sv img {
    max-width: 200%;
    width: 200%;	
}	

  .sectionbg {
    margin-top: -30px;
    padding-top: 30px;
    padding-bottom: 90px;
    position: relative;
  }
  .sectionbg:before {
    display: block;
    position: absolute;
    top: -30px;
    left: 0;
    content: '';
    width: 100%;
    height: 40px;
    background-size: 100% auto;
  }
  section > .wrap {
    padding: 0 3%;
  }
  section > .wrap-1280 {
    padding: 0 3%;
  }
/*-----------header------------*/
header {
    height: 54px;
	background: #ffffff;
    top: 0;
    overflow: hidden; 
}
/*-----------navi------------*/
.navbes2 {
    width: 75%;
    padding: 1% 0 0 3%;
}
.navbes2 img {
	width:260px;
}
.navbes2 p {
	font-size: 0.8rem;
}	
header .head--menu {
    display: block;
    background: url("http://www.kaiei-kyowa.jp/assets/img/common/ico_menubtn.png") no-repeat center center;
    background-size: 50% auto;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
}
nav {
	width: 100%;
	height: 100%;
	position: fixed;
	overflow: auto;
	top: 0;
	padding: 0;
	background-size: 50px auto;
	-moz-transition-property: all;
	-moz-transition-duration: 0.6s;
	-moz-transition-timing-function: cubic-bezier(0, 0.37, 0.45, 0.94);
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.6s;
	-webkit-transition-timing-function: cubic-bezier(0, 0.37, 0.45, 0.94);
	transition-property: all;
	transition-duration: 0.6s;
	transition-timing-function: cubic-bezier(0, 0.37, 0.45, 0.94);
	opacity: 0;
	left: auto;
	right: -100%;
	  z-index: 910;
  }
  nav.open {
    opacity: 1;
    right: 0;
  }
  nav > ul {
    margin: 80px 0 40px;    
	width: auto;
  } 
nav li {
	height:auto;
	}
nav li:after {
	display: none;
}	
 nav li a {
	color: #ffffff;
	width:100%;
	display: block;
	padding: 25px 20px;
	font-size: 1.1rem;
	border:none;
	position: relative;
	height: inherit;
}
nav li a span {
	font-size: 0.8rem;
}
  nav .head--menu {
    display: block;
    width: 50px;
    height: 50px;
    background: url("http://www.kaiei-kyowa.jp/assets/img/common/icn_close_w.png") center center no-repeat;
    background-size: 45% auto;
    position: absolute;
    top: 0;
    right: 0;
  }
  #head--menu>ul {
    display: none;
  }
  #head--menu.open>ul {
    display: block;
  }  
dl.menu__second-level {
	display: none;
 }
nav li:last-of-type {
    background: transparent;
	width: 100%;
}
nav li:last-of-type img {
	width: 70px;
}
/*-----------under------------*/
   #panList {
    display: none;
  }
  footer {
    width: 100%;
    padding: 30px 10px 0;
  }
  footer #toparr {
    right: 10px;
    bottom: 10px;
  }
footer .footer--cta .cont2 {
	display: none;
}
footer .footer--cta .cont1{
	width: 100%;
	float: none;
}
footer .footer--cta .cont1 img {
	width: 80%;
}	
footer .footer--cta {
    text-align: center;
}  
  footer #footer--sitemap {
    display: none;
  }
  footer #footer--rights {
    text-align: center;
    padding: 25px;
    font-size: 10px;
  }
  .section {
    margin-bottom: 50px;
  }
  .onlypc {
    display: none;
  }
  .onlysp {
    display: inherit;
  }
/*メルマガ */
#mailmg800 .mail-2columns {	
	display: none;
}
/*各製品ページ*/
.product-each .point-area {
	margin-bottom: 60px;
}		
#slick-product-wrap .slick-dots li button:before {/* ●大きさ　*/
	font-size: 10px;
}	
#product-each-wrap .sidebar {
	display: none;
	}
#product-each-wrap .product-each-inner {
	width: 100%;
	padding: 15px;
}

#product-each-wrap .heading .title09 {
	width: 100%;
	padding-top: 15px;
	font-size: 22px;
}
#product-each-wrap .heading ul {
	width: 100%;
	font-size: 16px;
	padding-left: 10px;
}
#product-each-wrap .product-icon_group img {
	width: auto;
	height: 50px;
}
#product-each-wrap .product-series {
	display: none;
}
#product-each-wrap .title05 {
	font-size: 23px;
}}
