/* IMPORT RESET */
@import url("css/reset.css");
/* IMPORT 16 COLUMN RESPONSIVE GS */
@import url("css/responsive.gs.16col.css");

/*--ボディ--------------------------*/
body {
  font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
	color: #424242;
	background-color: #ffffff;
	word-wrap: break-word;
}

p {
	font-size: 100%;
	margin-bottom:10px;
	line-height: 1.6em;
}



#nocolor{
	color: #ffffff;
}

#nocolor:hover{
	color: #ffffff;
}

#nocolor2{
	color: #ffffff;
}

#nocolor2:hover{
	color: #ffffff;
}

a{
	text-decoration: none;
	padding-bottom: 2px;
	color: #3297C9;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

a:hover{
	color:#485db2;
}


label {
	font-size: 100%;
	line-height: 1.6em;
}

#g-map{
	margin-top:30px;
}

#g-map iframe{
border: 5px azure;
border-style: solid;
}


dt{
  font-weight: bold;
  float: left;
  margin-right: 10%;
}

dd{
  font-weight: bold;
  float: left;
  margin-right: 10%;
}

em{
  font-style:italic;
}

/*-- ヘッダ ディスクリプション --------------------------*/

input[type="submit"]#s-regist {
	font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	padding: 5px 0px 0px 0px;
	height: 40px;
	font-size: 120%;
	margin: 20px auto 10px;
	width: 50%;
}

.f-info {
	/*margin-bottom: -30px;*/
    height: auto;
    background: #D2E9FA;
}

.f-repo {
	/*margin-bottom: -30px;*/
    height: auto;
    background: #e6f2fa;
}

#h-img {
	position: relative;
	color: #424242;
}

#h-img-cts {
	height: 470px;
	/* background: #aaa; */
	width: 1120px;
	margin-left: auto;
	margin-right: auto;
}

#h-menu {
	background: #277e44;
	position: relative;
	color: #424242;
}

#h-menu-cts {
	height: 70px;
	margin-left: auto;
	margin-right: auto;
}

#h-menu-cts ul li {
	font-size: 18px;
	display: block;
	height: 70px;
	padding-top: 10px;
}

#h-menu-cts ul li i {
	font-size: 14px;
	margin-bottom: 10px;
}

#h-menu-cts ul li a {
	color: #ffffff;
	text-align: center;
	display: block;
}

#h-menu-cts ul li a:hover {
	background-color: #75a184;
}

li {
}

/*-- ヘッダ --------------------------*/
.h-cts {
  margin-top: 20px;
  height: 80px;
}
#h-logo {
	float:left;
	margin-top: 10px;
	position: relative;
}

#h-logo a{
	border-bottom:none;
}

#h-menu li{
	float:left;
	display:block;
}

#h-menu a{
	border:none;

}
#h-contact {
	float: right;
	margin-top: 50px;
	width: 300px;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

header {
	display: flex;
	justify-content: center;
	height: 70px;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.473);
  }
  .container-gnav {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 1200px;
	  font-size:16px;
  }
  .global-nav-title {
	font-size: 20px;
	color: rgb(0, 0, 0);
  }

  nav{
	background:#ffffff;
	color:#7a7a7a;
	text-align: center;
  }

  nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 0%;
  }

  nav ul ul{
	display: block;
  }
  
  nav ul li{
	position: relative;
  }
  
  nav ul li a{
	display: block;
	text-decoration: none;
	color: #2d708d;
	padding:20px 23px;
	transition:all .3s;
  }
  
  nav ul li li a{
	padding:10px 15px;
	text-align: center;
  }
  
  nav ul li a:hover{
	color:#3719a4; 
  }
  

  nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:15px;
	top:25px;
	width:6px;
	height:6px;
	border-top: 2px solid #999;
	  border-right:2px solid #999;
	  transform: rotate(135deg);
  }
  
  nav ul ul li.has-child::before{
	content:'';
	position: absolute;
	left:6px;
	top:17px;
	width:6px;
	height:6px;
	  border-top: 2px solid #fff;
	  border-right:2px solid #fff;
	  transform: rotate(45deg);
  }
  

  nav li.has-child ul{
	position: absolute;
	left:0;
	top:62px;
	z-index: 4;
	background:#8d8d8d;
	width:150px;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
  }
  
  nav li.has-child:hover > ul,
  nav li.has-child ul li:hover > ul,
  nav li.has-child:active > ul,
  nav li.has-child ul li:active > ul{
	visibility: visible;
	opacity: 1;
  }
  
  nav li.has-child ul li a{
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
  }
  
  nav li.has-child ul li:last-child > a{
   border-bottom:none;
  }
  
  nav li.has-child ul li a:hover,
  nav li.has-child ul li a:active{
	background:#3577CA;
  }

  nav li.has-child ul ul{
	top:0;
	left:182px;
	background:#66ADF5;
  }
  
  nav li.has-child ul ul li a:hover,
  nav li.has-child ul ul li a:active{
	background:#448ED3;
  }


  @media screen and (max-width: 768px) {
	header {
	  display: block;
	  height: auto;
	  width: 100%;
	}
  
	.container-gnav {
	display: block; 
	width: 100%;
	}
  
	nav {
	  background: #ffffff;
	  color: #878787;
	  text-align: center;
	  width: 100%; 
	}
	
	nav ul {
	  list-style: none;
	  padding: 0;
	  margin: 0;
	  width: 100%;
	}
	
	nav ul li {
	  width: 100%;
	}
	
	nav ul li a {
	  display: block;
	  text-decoration: none;
	  color: #2d708d;
	  padding: 15px;
	  transition: all .3s;
	}
  
	.global-nav-title img {
	  width: 442px;
	  height: ;
	}
  }


/* ロゴ　レスポンシブ */
.container-gnav {
    display: flex;
    align-items: center;
    padding: 10px;
  }
  
  .global-nav-title {
    display: inline-block;
  }


  .logo {
    width: 100%;
    max-width: 382px;
    height: auto;
  }


  @media (max-width: 768px) {
    .logo {
      max-width: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .logo {
      max-width: 200px;
    }
  }


/*--Q&A用 --------------------------*/


.faq-container {
	width: 800px;
	margin: 0 auto;
	padding: hidden
}

#faq-links {
	padding: 10px 20px
}

#faq-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    column-gap: 10px;
    row-gap: 5px;
    justify-items: center;
    align-items: center;
    width: auto;
    height: 350px;
    margin: 0 auto;
    padding-top: 50px;
}

#faq-links div {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aeaeaf;
    cursor: pointer;
    font-weight: 700;
    text-transform: capitalize;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    text-align: center;
    height: 100px;
    width: 300px;
	font-size: 26px;
}

#faq-links div:hover {
    background-color: #aeaeaf;
    color: #ffffff;
}




#faq-links div {
    color: #aeaeaf;
    cursor: pointer;
    font-weight: 700;
    text-transform: capitalize;
    margin: 18px 0
}

.faq-group {
    padding: 0 20px 40px 20px;
    position: relative
}

.faq-group div {
    font-weight: 700;
    text-align: center;
}

.faq-group hr {
        border: 0;
    border-top: 1px solid #606060;
    clear: both;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 0;
}

.faq-group:after {
    top: 33%;
   left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-top-color: #393939;
  border-width: 15px;
  margin-left: -15px
}

.faq-accordion>li  {
    border-top: 1px solid rgba(198, 198, 198, 0.4);
    color: #666;
    padding: 1.125em 0
}

.faq-accordion li a {
    color: #666;
    padding: 1.125em;
	font-size: 25px;
}

.faq-accordion > li:last-child {
    border-bottom: 1px solid rgba(198, 198, 198, 0.4);
}

.faq-accordion > li > a:before {
    content: 'Q.';
    padding-right: 0.313em
}

.faq-accordion > li > a:after {
    color: #ff8300;
    content: '+';
    float: right;
    font-weight:300;
    margin-right: 1.25em;
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
            transform: scale(2);
    overflow-y: hidden;
}

.faq-accordion > li > a.expanded:after {
    color:  #ffa326;
    content: '\2212';
    -webkit-transform: scale(2);
    -ms-transform: scale(2);
            transform: scale(2);
}

.faq-accordion > li > a.expanded {font-weight: 700; opacity: 1 !important}

.faq-content {
    background-color: #ececec;
    margin: 20px 0 -20px;
       list-style: none;
       padding-left:0;
    
}

.faq-content p:before {
    content: 'A.';
    color: #ff8300;
    float: left;
    font-weight: 700;
  margin-right: .5em
}

.faq-content p {
    margin: 0 1.2em;
    padding: 1.250em 0

}

.faq-hide {display: none}

.faq-selected {
    color: #49494b!important;
 -webkit-transition: all 1s ease;
         transition: all 1s ease;
}


.slide-left{

  -webkit-animation-name: slide-left; 
  -moz-animation-name: slide-left;  
    animation-name: slide-left;

  
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  animation-duration: 1s; 

    
  -webkit-animation-timing-function: ease-in-out; 
  -moz-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;

}



@-webkit-keyframes slide-left {
  0% {
    -webkit-transform: translateX(150%);
  }
  50%{
    -webkit-transform: translateX(-8%);
  }
  65%{
    -webkit-transform: translateX(4%);
  }
  80%{
    -webkit-transform: translateX(-4%);
  }
  95%{
    -webkit-transform: translateX(2%);
  }     
  100% {
    -webkit-transform: translateX(0%);
  }
}

@-moz-keyframes slide-left {
  0% {
    -webkit-transform: translateX(150%);
    -moz-transform: translateX(150%);
            transform: translateX(150%);
  }
  50%{
    -webkit-transform: translateX(-8%);
    -moz-transform: translateX(-8%);
            transform: translateX(-8%);
  }
  65%{
    -webkit-transform: translateX(4%);
    -moz-transform: translateX(4%);
            transform: translateX(4%);
  }
  80%{
    -webkit-transform: translateX(-4%);
    -moz-transform: translateX(-4%);
            transform: translateX(-4%);
  }
  95%{
    -webkit-transform: translateX(2%);
    -moz-transform: translateX(2%);
            transform: translateX(2%);
  }     
  100% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
            transform: translateX(0%);
  }
}
@keyframes slide-left {
  0% {
    -webkit-transform: translateX(150%);
    -moz-transform: translateX(150%);
            transform: translateX(150%);
  }
  50%{
    -webkit-transform: translateX(-8%);
    -moz-transform: translateX(-8%);
            transform: translateX(-8%);
  }
  65%{
    -webkit-transform: translateX(4%);
    -moz-transform: translateX(4%);
            transform: translateX(4%);
  }
  80%{
    -webkit-transform: translateX(-4%);
    -moz-transform: translateX(-4%);
            transform: translateX(-4%);
  }
  95%{
    -webkit-transform: translateX(2%);
    -moz-transform: translateX(2%);
            transform: translateX(2%);
  }     
  100% {
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
            transform: translateX(0%);
  }
}

/* 960px以下のためのメディアクエリ */
@media (max-width: 959px) {
	.faq-container {
    width: 700px;
    margin: 0 auto;
    padding: hidden
  }
	
    #faq-links {
        grid-template-columns: repeat(4,1fr) ;
        grid-template-rows: 1fr;
        width: auto;
        height: 200px; 
        padding-top: 20px;
        column-gap: 10px;
        row-gap: 5px;
		font-size: 16px;
  }
    #faq-links div {
        width: 120px;
		height: 100px;
        margin-bottom: 10px;
    }
	
	.faq-accordion li a {
    color: #666;
    padding: 1.125em;
    font-size: 22px;
}
}

/* 430px以下のためのメディアクエリ */
@media (max-width: 430px) {
	.faq-container {
    width: 400px;
    margin: 0 auto;
    padding: hidden
  }
	
    #faq-links {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        width: 100%;
        height: auto;
        padding-top: 10px;
        row-gap: 10px;
		font-size: 14px;
    }
    #faq-links div {
		width: 300px;
		margin-bottom: 1px;
        height: 0;
    }
	
	.faq-accordion li a {
    color: #666;
    padding: 1.125em;
    font-size: 18px;
}
}

/*==アコーディオンのためのcss=*/

/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
  border: 1px solid #ccc;
}

/*アコーディオンタイトル*/
.title-kekka {
    position: relative;
    cursor: pointer;
    font-size:1.2em;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

.title-kekka::before,
.title-kekka::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #333;
    
}
.title-kekka::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.title-kekka::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}

.title-kekka.close::before{
  transform: rotate(45deg);
}

.title-kekka.close::after{
  transform: rotate(-45deg);
}

.box-kekka {
    display: none;
    background: #f3f3f3;
  margin:0 3% 3% 3%;
    padding: 3%;
}

/*-- メイン --------------------------*/
main {
    background: #ffffff;
    position: relative;
}

.toptitle {
    background-image: url("https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/title.webp");
    height: 422px;
    max-width: 100%;
    width: 1120px;
    margin: 0 auto;
}

.toptitle2-1, .toptitle2-2, .toptitle2-3 {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    margin-top: 208px;
}

.toptitle2-1 {
    padding-left: 100px;
}

.toptitle2-3 {
    padding-right: 100px;
}

.toptitle img {
    max-width: 100%;
    height: auto;
}

/* メディアクエリでレスポンシブ調整 */
@media (max-width: 767px) {
    .toptitle {
        width: 100%;
        height: auto;
    }
    .toptitle2-1, .toptitle2-2, .toptitle2-3 {
        display: block;
        width: 100%;
        margin-top: 20px;
        padding-left: 0;
        padding-right: 0;
    }
    .toptitle2-1, .toptitle2-3 {
        padding: 0;
    }
}

/*-- フッダ --------------------------*/
footer {
//margin-top: 30px;
min-height: 400px;
/*ここで背景のベースカラーを指定する*/
background-color: #71AFDA;

}

.footer-banner {
    display: flex;
    justify-content: center; /* 画像を中央寄せ */
    align-items: center; /* 縦方向の位置調整 */
    height: 100%; /* 親要素に合わせる */
}

.footer-banner img {
    max-width: 100%; /* レスポンシブ対応 */
    height: auto;
}

#m-map {
	height:321px;
	background: url(img/map.png);	
}


.f-menu ul li{
	display:inline-block;	
	position: relative;
}

.f-menu ul li a {
    text-decoration: none;
    border-bottom: none;
    line-height: 1.8em;
    color: #03346c;
    font-size: 90%;
}

.f-menu ul li a:hover {
	color:#3297C9;
}

.f-menu {
    position: relative;
    top: 20px;
    padding-top: 20px;
}

.menu i {
    margin-right: 10px;
    color: #aaaaaa;
}

.f-menu li {
    width: 130px;
}
#f-des {
	margin-top: 20px;
	margin-bottom: 0px;
	color: #ffffff;
	text-align: right;
	padding-bottom: 20px;
	text-align: center;
}

/*--トップへ戻る --------------------------*/


a.radialBtn {
    -moz-border-radius: 80px;
    -webkit-border-radius: 80px;
    background-image: -moz-linear-gradient(-90deg,rgba(255,255,255,0.9),rgba(255,255,255,0));
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0,rgba(255,255,255,0.9)), color-stop(1,rgba(255,255,255,0)));
    -webkit-transition: background-color, .5s;
    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    color: #333;
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
}

#page-top {
	position: fixed;
    -moz-border-radius: 80px;
    -webkit-border-radius: 80px;
	border-radius: 80px;
    width: 100px;
    height: 100px;
	bottom: 10px;
	right: 240px;
}
#page-top a {
    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
	box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    z-index: 1000;
    background: #ffffff;
    /* color: #fff; */
    width: 80px;
    -moz-border-radius: 80px;
    -webkit-border-radius: 80px;
	border-radius: 80px;
    padding: 15px 0;
    text-align: center;
    display: block;
    border-bottom: none;
}

#page-top a:hover {
    text-decoration: none;
    background: #3297C9;
}

/*--見出し --------------------------*/
h1 {
	position: relative;
	line-height: 1.6em;
	width: 100%;
	color:#ffffff;
}

article h2 {
    text-align: -webkit-center;
    text-align: center;
    position: relative;
    line-height: 1.6em;
    /* background-color: #00b184; */
	font-weight:bold;
	font-size: 200%;
    /* font-weight: bold; */
    /* top: 10px; */
    margin: 0px 0px 20px 0px;
    /* padding: 10px 0px 10px 15px; */
    /* width: 100%; */
    color: #01233B;
}

article h2.top:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 40px;
  border-bottom: solid 4px #e63376;
}

article h2 span {
    font-size: 60%;
    /* font-weight: 100; */
    /* float: right; */
    /* margin-right: 25px; */
}
article h2 span.jp {
	color:#ffffff;	
}

article h2.left {
	font-weight:normal;
	color:#ffffff;	
}
#mail_form {
  border: solid 1px #dddddd;
  -moz-border-radius-topleft: 0px;
  -moz-border-radius-topright: 15px;
  -moz-border-radius-bottomleft: 15px;
  -moz-border-radius-bottomright: 0px;
  -webkit-border-top-left-radius: 0px;
  -webkit-border-top-right-radius: 15px;
  -webkit-border-bottom-left-radius: 15px;
  -webkit-border-bottom-right-radius: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 0px;
  position: relative;
  z-index: 100;
  padding: 15px;
  margin-top: 10px;
  background: #d1d1d1;
  background: repeating-linear-gradient(-45deg, #efc1cb, #efc1cb 30px, #f2f2f2 30px, #f2f2f2 40px, #c2e8f5 40px, #c2e8f5 70px,#f2f2f2 70px, #f2f2f2 80px);
  border-radius: 8px;
}


aside h2 {
    position: relative;
    line-height: 1.6em;
    /* background-color: #00b184; */
    font-size: 120%;
    /* font-weight: bold; */
    top: 10px;
    margin: 0px 0px 10px 0px;
    padding: 10px 0px 10px 0px;
    /* width: 100%; */
    color: #03346c;
    text-align: center;
}

aside h2:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  border-bottom: solid 1px #03346c;
  /* color: #e63376; */
}

h3 {
    position: relative;
    line-height: 1.6em;
    color: #01233B;
    /* background-color: #ffffff; */
    /* font-size: 110%; */
    font-weight: bold;
    margin: 0px 0px 20px 0px;
    padding: 10px 0px 10px 10px;
	border-bottom: 1px solid #01233B;
    /* width: 100%; */
}

.service {
    color: #eb3260;
	border-bottom: 1px solid #eb3260;
}



h3:first-letter {
	margin-right: .1em;
	font-size: 1.8em;
}

h4 {
	font-size: 110%;
	margin-bottom: 10px;
	line-height: 1.4em;
	padding: 5px 5px 5px 10px;
	border-top-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	margin-top:10px;
	background: #eeeeee;
	color: #3297C9;
}

h5 {
	font-size: 100%;
	margin-bottom: 10px;
	line-height: 1.4em;
	padding: 5px 5px 5px 10px;
	border-bottom: 1px solid #1187c2;
}

/*--フロントページ--------------------------*/


.toptitle2-1 img,
.toptitle2-2 img,
.toptitle2-3 img {
    width: 229px;
    height: 214px;
}

.service-heading,
.inquiry-heading,
.report-heading,
.info-heading {
    margin-bottom: 20px;
}

.btn-service-new,
.btn-service-old {
    padding: 10px;
}

.time {
    display: inline;
}

.title {
    width: 100%;
    display: inline;
    word-wrap: break-word;
}

.reportlist2 {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.reportlist2 .date {
    flex: 1; /
}

.reportlist2 .title {
    flex: 4; /
}


.reportlist2 .date {
    margin-right: 10px;
}

.reportlist2 .title {
    word-wrap: break-word;
}


/*--会社情報companyページ -------------------------- */
.row-custom-margin {
    margin-bottom: 60px;
}

.h2-custom-margin {
    margin-bottom: 20px;
}

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

.col-center-text {
    text-align: center;
}

.col-left-text-padding {
    text-align: left;
    padding: 20px;
}

.img-float-left {
    float: left;
    padding-right: 5px;
}

.ul-no-list-style {
    list-style-type: none;
    padding-left: 25px;
}

/*--ラインマーカー --------------------------*/

span.marker {
    background: linear-gradient(transparent 10%,#b0d7f7 50%);
}

/*--kenpen用 --------------------------*/

.entry-header {
  position: relative;
  padding: 1.5rem 1rem;
}

.entry-header:after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  content: '';
  background-image: -webkit-repeating-linear-gradient(135deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-image: repeating-linear-gradient(-45deg, #000, #000 1px, transparent 2px, transparent 5px);
  background-size: 7px 7px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.entry-title {
    font-size: 2em;
    color: #189bd3;
}

.box-design {
	margin: 20px auto;
	padding: 20px;
	background-color: #f3f2f3;
	border-left: 10px solid #4c9ac0;
  }


.ttl_line {
  font-weight: bold;
  padding: 0.3em;
  margin-bottom: 0.3em;
  position: relative;
}
.ttl_line::after {
  content: '';
  background-size: 10px 10px;
  background-color: #e1eef5;
  background-image: repeating-linear-gradient(-45deg, #4c9ac0 0, #4c9ac0 3px, #fff 0, #fff 50%);
  width: 100%;
  height: 7px;
  position: absolute;
  bottom: -5px;
  left: 0;
}

/*--見出し --------------------------*/

.banner{
	margin-bottom:10px;
}


p.eye-text{
    font-size: 120%;
    text-align: center;
    font-weight: bold;
    color: #01233B;
}


.box{
    display: block;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    cursor: pointer;
    color: #016d9a;
    text-align: center;
    border: solid #016d9a 2px;
    transition-duration: 1s;
	margin-bottom:20px;
}

a:hover img.hoverImg{
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter: “alpha( opacity=80 )”;
    transition-duration: 1s;
}

.box h1{
  padding: 2% 3% 1.5%;
  background-color: #016d9a;
  font-size: 1.1em;
  font-weight: normal;
	color: #fff;
}

.box h1 span{
	display:block;
	font-size:80%;
}

.box p {
    padding: 0px 3%;
    /* line-height: 2em; */
    color: #016d9a;
    margin-bottom: 0px;
}

.box p.telphone{
    font-size: 130%;
    color: #eb3260;
    font-weight: bold;
    /* text-align: center; */
}

.box p.size-bold{
    font-weight: bold;
    /* text-align: center; */
}

.box p.size-min{
    font-size: 90%;
    /* text-align: center; */
}

.btn-foot {
    display: block;
    background-color: #016d9a;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    border-bottom: none;
    transition-duration: 1s;
    padding: 10px;
}




/*--メニュー-------------------------*/
.sidemenu li{
	color:#333333;
	text-align:center;
	margin-bottom:20px;
	
}

ul.reportmenu{
	border-right:1px solid #333333;
}

.reportmenu li{
	text-align:center;
	border-collapse:collapse;
	border-left:1px solid #333333;
}

.reportmenu li a{
	color:#03346c;
}

.reportmenu li a:hover{
	color:#3297C9;
}

.reportmenu li.select a{
	color:#30acff;
}

.reportmenu li.current-menu-item a{
	color:#30acff;
}


/*--リスト --------------------------*/


.disclist ol{
	list-style-type: disc;
}

.disclist li{
	padding:5px;
}

.numlist ol{
	list-style-type: decimal;
	padding-left:10px;
}

.numlist li{
	padding:5px;
}
.reportlist li {
    /*border-bottom: 1px dashed #333333;*/
    padding-top: 7px;
    padding-bottom: 7px;
    /* list-style-image: url(https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/cheack2_2.gif); */
    list-style-position: inside;
    vertical-align: middle;
}

.reportlist2{
   border-bottom: 1px dashed #333333;
}

.reportlist2:hover{
   background-color:#c6e4fa;
}

.reportlist p.tag_repo{
	color:#FFFFFF;
	background-color:#44a7ff;
	border-radius:5px;
	padding:5px;
}

.reportlist p.tag_col{
	color:#FFFFFF;
	background-color:#eb7e4d;
	border-radius:5px;
	padding:5px;
}

.reportlist p.tag_help{
	color:#FFFFFF;
	background-color:#00ce00;
	border-radius:5px;
	padding:5px;
}

.reportlist p.tag_info{
	color:#FFFFFF;
	background-color:#00c9ae;
	border-radius:5px;
	padding:5px;
}

.reportlist p.tag_mrepo {
    color: #FFFFFF;
    background-color: #445cff;
    border-radius: 5px;
    padding: 5px;
}

.reportlist p.time{
	color:#333333;
	padding-right:10px;
	padding-left:10px;
}

/*-- ボックス --------------------------*/
.cts-box {
    padding: 10px;
    margin: 10px;
}

.cts-box-b {
	padding: 10px;
}

.cts-box-c {
	padding: 10px;
}


.cts-box-s {
	padding: 10px;
}
.cts-title{
	-webkit-box-shadow: 0px 0px 1px #777777;
	-moz-box-shadow: 0px 0px 1px #777777;
	box-shadow: 0px 0px 1px #777777;
	margin-bottom: 10px;
}

.cts-box td {
	width: 70%;
}
.cts-box th {
  text-align: center;
  /* background: #13913d; */
  vertical-align: middle;
  color: #00b184;
  font-weight: bold;
}

.cts-box #mail-form td {
//	width: 720px;
}

.cts-box ul{
	line-height:1.6em;
}

.cts-box a{
	text-decoration: none;
	padding-bottom: 2px;
	color: #3297C9;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

.cts-box a:hover{
	color:#03346c;
}

.name-box {
	background-image:url("https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/prof_t_3.gif");
	background-repeat: no-repeat;
	color:#FFFFFF;
	text-align:center;
	background-position:center center;
}

.name-box p{
	text-align:center;
}

.name-box2 {
	background-image:url("https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/name_back1.jpg");
	background-repeat: no-repeat;
	color:#FFFFFF;
	text-align:center;
	background-position:center center;
	margin:10px;
	border-radius:10px;
}

.name-box2 p{
	text-align:center;
}

.serviceex {
    background-color: #3297C9;
    color: #FFFFFF;
    text-align: left;
    margin: 10px;
    border-radius: 5px;
    padding: 15px;
    padding-left: 30px;
}

.serviceex2 {
	background-image:url("https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/kensa_back_6.gif");
	background-repeat:repeat;
	color:#FFFFFF;
	margin:10px;
	border-radius:10px;
	padding:15px;
}

/*--ピックアップボックス--------------------------*/
.pick-box {
	padding: 10px;
	background-color: #e7f2e6;
}
.pick-box p{
	padding:10px;
}
.pick-box th {
	text-align: left;
	background: #13913d;
	padding: 10px;
	color: #ffffff;
}

.pick-box td {
	width: 70%;
}
.pick-box tr {
	border-bottom: #e7f2e6 5px solid;
}

#contact th {
	text-align: center;
	width: 25%;
}


#mail_form form{
	padding:10px;
}




/*--テーブル--------------------------*/
table {
	width: 100%;
	border-collapse: collapse;
	margin-top:10px;
	margin-bottom:10px;
	table-layout: fixed;
}


table.b_guide_table {
    /* border: solid 1px #6599ff; */
    /* vertical-align: middle; */
    /* width: 100%; */
}

table.table_in {
	border: solid 0px #FFFFFF;
	vertical-align:middle;
	width:75%;
	
}

table.b_guide_table td.blue{
	background-color:#D2E9FA;
}

table.b_guide_table td.white{
	background-color:rgba(255,255,255,1.0);
}

table.b_guide_table tr {
    /* border: solid 1px #6599ff; */
}

table.b_guide_table td.b_guide_td1 {
    /* border: dotted 1px #6599ff; */
    width: 20%;
    vertical-align: middle;
}
table.b_guide_table td.b_guide_td2 {
    /* border: dotted 1px #6599ff; */
    width: 80%;
    vertical-align: middle;
}

table.b_guide_table td.b_guide_td60 {
    /* border: dotted 1px #6599ff; */
	width:60%;
	vertical-align:middle;
}

table.b_guide_table td.b_guide_td15 {
    /* border: dotted 1px #6599ff; */
	width:15%;
	vertical-align:middle;
}

table.b_guide_table td.b_guide_td30 {
    /* border: dotted 1px #6599ff; */
	width:30%;
	vertical-align:middle;
}

table.b_guide_table td.b_guide_td2-2 {
    /* border: dotted 1px #6599ff; */
	border-right:dotted 0px;
	width:200%;
	vertical-align:middle;
}

table.b_guide_table td.b_guide_td3 {
	border:dotted 0px #FFFFFF;
	vertical-align:middle;
}

table.request_form tr{
/*	border:0px;*/
}

table.request_form td.left {
    /* background-image: url(https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/category_3.gif); */
    background-color: #D2E9FA;
    /* background-repeat: repeat; */
    /* border-bottom: solid 1px #FFFFFF; */
    width: 20%;
}

table.request_form td.left div {
    /* border-left: solid 6px #FFFFFF; */
    padding-left: 5px;
    /* padding-top: 5px; */
    /* padding-bottom: 5px; */
    /* vertical-align: middle; */
}

table.request_form td.right {
    /* background-repeat: repeat; */
    /* border-bottom: dotted 1px #000000; */
    width: 80%;
    vertical-align: top;
}

table.request_form input.text{
	border:1px solid;
	margin-bottom:5px;
}

table.request_form input.zip{
	border:1px solid;
	margin-bottom:5px;
	width:70%;
}

table.request_form select.ken{
	border:1px solid;
	margin-bottom:5px;
	width:30%;
}

table.request_form input.tel{
	border:1px solid;
	margin-bottom:5px;
	width:40%;
}

table.request_form input.email{
	border:1px solid;
	margin-bottom:5px;
	width:80%;
}

table.request_form textarea.inspectiontext{
	margin-top:5px; 
	border:solid 1px #000000;
}

table.inquiry_form input.text{
	border:1px solid;
	margin-bottom:5px;
}


table.inquiry_form tr{
/*	border:0px;*/
}

table.inquiry_form td.left {
    /* background-image: url(https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/category_4.gif); */
    background-color: #D2E9FA;
    width: 25%;
}

table.inquiry_form td.left div {
    /* border-left: solid 6px #FFFFFF; */
    padding-left: 5px;
    /* padding-top: 5px; */
    /* padding-bottom: 5px; */
    vertical-align: middle;
}

table.inquiry_form td.right {
    /* background-repeat: repeat; */
    /* border-bottom: dotted 1px #000000; */
    width: 80%;
    vertical-align: top;
}

table.recruit_table{
	margin-bottom:30px;
}


table.recruit_table tr{
	border: solid 0px;
}

table.recruit_table td.recruit_td1 {
	border:0px;
	width:20%;
	vertical-align:middle;
	font-weight:bold;
}

table.recruit_table td.recruit_td2 {
	border:0px;
	width:80%;
	vertical-align:middle;
}

table.seminar_list th{
    background-color: #D2E9FA;
    color:#4d91ff
}

table.seminar_list td.left{
    background-color: #D2E9FA;
}

table.seminar_list th.semilist1{
    	border:0px;
	width:10%;
	vertical-align:middle;
}

table.seminar_list th.semilist2{
    	border:0px;
	width:20%;
	vertical-align:middle;
}

table.seminar_list th.semilist3{
    	border:0px;
	width:25%;
	vertical-align:middle;
}

table.seminar_list th.semilist4{
    	border:0px;
	width:45%;
	vertical-align:middle;
}

table.seminar_list td.semilist1{
    	border:0px;
	width:10%;
	vertical-align:middle;
}

table.seminar_list td.semilist2{
    	border:0px;
	width:20%;
	vertical-align:middle;
}

table.seminar_list td.semilist3{
    	border:0px;
	width:25%;
	vertical-align:middle;
}

table.seminar_list td.semilist4{
    	border:0px;
	width:45%;
	vertical-align:middle;
}


th {
  text-align: center;
  /* background: #037359; */
  vertical-align: middle;
  color: #ffffff;
  width: 20%;
}
td {
	background-color:#FFFFFF;
	text-align: left;
	padding: 10px;
	width: 1120px;
}
tr {
	border-bottom: #333333 1px solid;
}

.column-table {
    font-size: 70%;
}
.column-table td {
    padding: 5px;
    text-align: center;
}


/*--ボタン--------------------------*/
.btn {
	display: block;
	background-color: #4d61ff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	color: #ffffff;
	text-align: center;
	border-bottom: none;
	transition-duration:1s;
}
.btn:hover {
	background-color: #30acff;
}

.btn-title {
	display: block;
	background-color: #aaaaaa;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #ffffff;
	text-align: center;
	border-bottom: none;
	border: solid #aaaaaa 2px;
}

.btn-title-b {
	display: block;
	background-color: #888888;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #ffffff;
	text-align: center;
	border-bottom: none;
	border: solid #888888 2px;
}

.btn-pdf {
	display: block;
//	background-color: #22bd41;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	color: #eb3260;
	text-align: center;
	border: solid #eb3260 2px;
}



.btn-pdf:hover {
	border: solid #f06e8f 2px;
	color: #f06e8f;
}


.btn {
	display: block;
	background-color: #4d61ff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	color: #ffffff;
	text-align: center;
	border-bottom: none;
	transition-duration:1s;
}
.btn:hover {
	background-color: #30acff;
}

.btn-xls {
	display: block;
//	background-color: #22bd41;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	cursor: pointer;
	color: #22bd41;
	text-align: center;
	border: solid #22bd41 2px;
	transition-duration:1s;
}

.btn-xls:hover {
	border: solid #4ed469 2px;
	color: #4ed469;
}

.btn-service-old {
    line-height: 1.8em;
    font-size: 175%;
    display: block;
    background-color: #eb3260;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    transition-duration: 1s;
}
.btn-service-old:hover {
	background-color: #f06e8f;
//	border: solid #3297C9 2px;
	color: #ffffff;
}

.btn-service-new {
    line-height: 1.8em;
    font-size: 175%;
    display: block;
    background-color: #60dcdc;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
    color: #ffffff;
    text-align: center;
    transition-duration: 1s;
}
.btn-service-new:hover {
	background-color: #90eeee;
//	border: solid #3297C9 2px;
	color: #ffffff;
}

.req-btn {
	display: block;
//	background-color: #22bd41;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	color: #03346c;
	text-align: center;
	border: solid #03346c 2px;
	transition-duration:1s;
}

.req-btn:hover {
	border: solid #3297C9 2px;
	color: #3297C9;
}




#f-adr {
	margin-top: 20px;
	border-bottom: solid 2px #ffffff;
	padding-bottom: 10px;
	color: #ffffff;
}

i.big {
	font-size:110%;
}


#acMenu #acBt {
    /* text-decoration: underline; */
    padding-bottom: 2px;
    color: #01233B;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
    transition: 0.5s;
	cursor: pointer;
}

#acMenu #acBt:hover{
	color:#3297C9;
}

#acMenu #acList{
	margin-top:20px;
	margin-bottom:20px;
	display:none;
    }

/*--ボタン--------------------------*/
.c-btn {
	display: block;
	background-color:#1a542d;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	color: #ffffff;
	text-align: center;
	vertical-align: middle;
	line-height: 1.8em;
	font-size: 140%;
	border-bottom: none;
}
.c-btn:hover {
	color: #ffffff;
	background-color: #139c42;
}

.h-cts a{
	margin-top:2%;
}

#s-btn {
	font-size: 120%;
	margin: 0 auto 10px;
	width: 50%;
}

#s-btn span {
	font-size: 160%;
	font-weight: bold;
}

#regist {
	text-align: center;
	vertical-align: middle;
	line-height: 1.8em;
	font-size: 140%;
}



input[type="text"], input[type="password"], input[type="email"],textarea, select {
font-family: Verdana, Arial, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif;
background-color: #ffffff;
outline: none;
/* display: block; */
padding: 4px 8px;
border: 1px dashed #dbdbdb;
color: #3f3f3f;
font-size: 14px;
border-radius: 2px;
transition: background 0.2s linear, box-shadow 0.6s linear;
width: 100%;
}

input[type="submit"] {
    font-family: Verdana, Arial, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif;
    /* padding: 5px 0px 0px 0px; */
	color:#ffffff;
	background-color: #4d61ff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
    height: 40px;
    font-size: 120%;
    /* margin: 20px auto 10px; */
    width: 50%;
	text-align: center;
	border-bottom: none;
	transition-duration:1s;
}

input[type="submit"]:hover {
	background-color: #30acff;
}

input[type="reset"] {
    font-family: Verdana, Arial, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif;
    /* padding: 5px 0px 0px 0px; */
	color:#ffffff;
	background-color: #4d61ff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
    height: 40px;
    font-size: 120%;
    /* margin: 20px auto 10px; */
    width: 50%;
	text-align: center;
	border-bottom: none;
	transition-duration:1s;
}
input[type="reset"]:hover{
	background-color: #30acff;
}


input[type="button"] {
    font-family: Verdana, Arial, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'メイリオ', 'ＭＳ Ｐゴシック', sans-serif;
    /* padding: 5px 0px 0px 0px; */
	color:#ffffff;
	background-color: #4d61ff;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
    height: 40px;
    font-size: 120%;
    /* margin: 20px auto 10px; */
    width: 50%;
	text-align: center;
	border-bottom: none;
	transition-duration:1s;
}

input[type="button"]:hover{
	background-color: #30acff;
}


/*--検索ナビゲーション--------------------------*/
#nav-above1 {
	margin:10px 10px 10px 10px;	
}

#nav-above1 a{
	border: none;
}

.list_simple_box {
/* margin: 0px 0px 10px 0px; */
padding: 0px 10px 0px 10px;
}
/* 表下部・現況優先但書 */
.list_detail_bottom_info{
	margin: 15px 0px 10px 0px;
	color: #EFB727;
	font-size: 110%;
}
.list_picsam {
	margin: 0px 0px 10px 0px;
}

/* 表下部・現況優先但書 */
.list_detail_image_info{
	margin: 10px 0px 10px 0px;
	color: #EFB727;
	font-size: 100%;
}

/* 表下部・現況優先但書 */
.list_detail p{
	margin-bottom:10px;
}

/*--お問い合わせフォーム--------------------------*/
.screen-reader-response{
	color:#FF0000;
	
}

.wpcf7-not-valid-tip{
	margin-left:10px;
	color:#FF0000;
}

.wpcf7-form{
	margin-top:10px;
}


.banner {
	margin-bottom: 10px;
	width: 100%;
}

#InspStartDate{
	border:solid 1px;
	padding:4px;
}

/* 07.リボン型の見出し（切りっぱなし） */
#heading07{
	position:relative;
	padding:10px;
	background:#88ccef;
	box-shadow:
		10px 0 0 0 #88ccef,
		-10px 0 0 0 #88ccef,
		0 3px 3px 0 rgba(0,0,0,0.1);
}
#heading07:before{
	content:" ";
	position:absolute;
	top:100%;
	left:-10px;
	width:0;
	height:0;
	border-width:0 10px 10px 0;
	border-style:solid;
	border-color:transparent;
	border-right-color:#7bb8d8;
}
#heading07:after{
	content:" ";
	position:absolute;
	top:0px;
	left:100%;
	width:0;
	height:0;
	border-width:20px 10px;
	border-style:solid;
	border-color:#88ccef;
	border-right-color:transparent;
}

.red{
	color:#1087c0;
	font-weight:bold;
}
.big{
	font-size:110%;
}
.google-maps {
position: relative;
padding-bottom: 75%; /*これが縦横比*/
height: 0;
overflow: hidden;
}
.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}

#f-logo {
margin-top: 30px;
}

/*--- ページネーション ---*/
.page-pagination {
	clear: both;
	padding: 20px 0;
	position: relative;
	font-size: 14px;
	line-height: 14px;
        text-align: center;
}
.pagination-box {
	display: inline-block;
}
.page-pagination span, .page-pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 10px 15px 10px 15px;
	text-decoration: none;
	width: auto;
	color: #fff; /* 文字色 */
	background: #3297C9; /* 背景色 */
}
.page-pagination a:hover{
	color: #fff; /* マウスホバー時の文字色 */
	background: #485db2; /* マウスホバー時の背景色 */
}
.page-pagination .current{
	padding: 10px 15px 10px 15px;
	color: #fff; /* 現在のページの文字色 */
	background: #485db2; /* 現在のページの背景色 */
}

a:hover img.hoverImg{
	opacity:0.8;
	filter:alpha(opacity=80);
	-ms-filter: “alpha( opacity=80 )”;
    transition-duration: 1s;
}


a.btn1 {
    /* background-color: #e00; */
    /* border: solid 1px #933; */
    color: #294861;
}

ul.menu2 li a{
	color:#ffffff;
	
}

ul.menu2 li i {
    color: #ffffff;
    margin-right: 10px;
    /* margin-left: 5px; */
}
.container-wide {
    margin: 0 auto;
}.test {

}

ul.cts-info li{
	margin-bottom:5px;
}



/*--- レスポンシブルール PC ビュー ---*/
@media ( min-width : 768px ){

	.frontmenu a {
    -moz-border-radius: 80px;
    -webkit-border-radius: 80px;
	border-radius: 80px;
    background-image: -moz-linear-gradient(-90deg,rgba(255,255,255,0.9),rgba(255,255,255,0));
    /* background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0,rgba(255,255,255,0.9)), color-stop(1,rgba(255,255,255,0))); */
    -webkit-transition: background-color, .5s;
 -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
	box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    color: #01233B;
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
}

.frontmenu a:hover {
	background-color:#D2E9FA;
	color: #01233B;
}

.frontmenu li.none {
	visibility:hidden;
}
}

/*--- レスポンシブルール スマホ ビュー(1000px) ---*/
@media screen and (max-width: 1000px){

.toptitle{
	background-image:none;
	height:auto;
}

.toptitle2-1, .toptitle2-2, .toptitle2-3{
	margin:0px;
	padding:0px;
}

}

/*--- レスポンシブルール スマホ ビュー ---*/
@media screen and (max-width: 767px) {

.c-btn {
	display: block;
	background-color:#0c5daa;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	cursor: pointer;
	color: #ffffff;
	text-align: center;
	vertical-align: middle;
	line-height: 1.8em;
	font-size: 140%;
	border-bottom: none;
}

article h2 {
    text-align: -webkit-center;
    text-align: center;
    position: relative;
    line-height: 1.6em;
    /* background-color: #00b184; */
	font-weight:bold;
	font-size: 200%;
    /* font-weight: bold; */
    /* top: 10px; */
    /* margin: 0px 0px 20px 0px; */
    /* padding: 10px 0px 10px 15px; */
    /* width: 100%; */
    color: #01233B;
}

article h2.top:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  margin-top: 40px;
  border-bottom: solid 4px #e63376;
}

.f-menu {
    position: relative;
    top: 10px;
    padding-top: 0px;
}

	td {
	    background-color: #FFFFFF;
	    text-align: left;
	    padding: 10px;
	    width: 1120px;
	    display: block;
	}

	table.b_guide_table td.b_guide_td1 {
	    /* border: dotted 1px #6599ff; */
	    width: 100%;
	    vertical-align: middle;
	}	

	table.b_guide_table td.b_guide_td2 {
	    /* border: dotted 1px #6599ff; */
	    width: 100%;
	    vertical-align: middle;
	}	

table.inquiry_form td.left {
    /* background-image: url(https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/category_4.gif); */
    background-color: #D2E9FA;
    width: 100%;
}	

	
table.inquiry_form td.right {
    /* background-repeat: repeat; */
    /* border-bottom: dotted 1px #000000; */
    width: 100%;
    vertical-align: top;
}	
table.request_form td.left {
    /* background-image: url(https://www.chubueisei.co.jp/wp-content/themes/tyubu/img/category_3.gif); */
    background-color: #D2E9FA;
    /* background-repeat: repeat; */
    /* border-bottom: solid 1px #FFFFFF; */
    width: 100%;
	
}
	table.request_form td.right {
    /* background-repeat: repeat; */
    /* border-bottom: dotted 1px #000000; */
    width: 100%;
    vertical-align: top;

	}


	.frontmenu a {
    -moz-border-radius: 80px;
    -webkit-border-radius: 80px;
    border-radius: 80px;
    background-image: -moz-linear-gradient(-90deg,rgba(255,255,255,0.9),rgba(255,255,255,0));
    /* background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0,rgba(255,255,255,0.9)), color-stop(1,rgba(255,255,255,0))); */
    /* -webkit-transition: background-color, .5s; */
    /* -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.6); */
    -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    color: #01233B;
    display: block;
    text-decoration: none;
    /* text-align: center; */
    /* line-height: 100px; */
    /* width: 100px; */
    margin-bottom: 10px;
    text-align: center;
    /* height: 100px; */
    /* padding: 10px; */
}
	
.frontmenu a:hover {
	background-color:#D2E9FA;
	color: #01233B;
}

.frontmenu li.none {
	visibility:hidden;
}
	
}



/* Facebook Like Box width:100% */
.fbcomments,
.fb_iframe_widget,
.fb_iframe_widget[style],
.fb_iframe_widget iframe[style],
.fbcomments iframe[style],
.fb_iframe_widget span{
    width: 100%! important;
}


a.radialBtn {
    -moz-border-radius: 80px;
    -webkit-border-radius: 80px;
    background-image: -moz-linear-gradient(-90deg,rgba(255,255,255,0.9),rgba(255,255,255,0));
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0,rgba(255,255,255,0.9)), color-stop(1,rgba(255,255,255,0)));
    -webkit-transition: background-color, .5s;
    -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    -moz-box-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    color: #333;
    display: block;
    text-decoration: none;
    text-align: center;
    line-height: 100px;
    width: 100px;
    height: 100px;
}

a.radialBtn:hover {
	background-color: orange;
	color: #333;
}


/* CSS - Cascading Style Sheet */
/* Palette color codes */
/* Palette URL: http://paletton.com/#uid=73w0u0kgsO25vZ9brUpkHG6oGxk */

/* Feel free to copy&paste color codes to your application */


/* As hex codes */

.color-primary-0 { color: #71AFDA }	/* Main Primary color */
.color-primary-1 { color: #D2E9FA }
.color-primary-2 { color: #9DCBEC }
.color-primary-3 { color: #4D92C3 }
.color-primary-4 { color: #2E75A7 }

.color-secondary-1-0 { color: #7E80E0 }	/* Main Secondary color (1) */
.color-secondary-1-1 { color: #D6D7FB }
.color-secondary-1-2 { color: #A6A8EF }
.color-secondary-1-3 { color: #5C5FCD }
.color-secondary-1-4 { color: #3E41B5 }

.color-secondary-2-0 { color: #FFDE7C }	/* Main Secondary color (2) */
.color-secondary-2-1 { color: #FFF4D3 }
.color-secondary-2-2 { color: #FFE8A4 }
.color-secondary-2-3 { color: #FFD55A }
.color-secondary-2-4 { color: #FFCD3A }

.color-complement-0 { color: #FFC67C }	/* Main Complement color */
.color-complement-1 { color: #FFECD3 }
.color-complement-2 { color: #FFD7A4 }
.color-complement-3 { color: #FFB75A }
.color-complement-4 { color: #FFA93A }


/* CSS - Cascading Style Sheet */
/* Palette color codes */
/* Palette URL: http://paletton.com/#uid=73w0u0kJSAQfQPbqWK1L7nrS1bC */

/* Feel free to copy&paste color codes to your application */


/* As hex codes */

.color-primary-0 { color: #066CB4 }	/* Main Primary color */
.color-primary-1 { color: #77B3DD }
.color-primary-2 { color: #2C8BCF }
.color-primary-3 { color: #044878 }
.color-primary-4 { color: #01233B }

.color-secondary-1-0 { color: #0F14C0 }	/* Main Secondary color (1) */
.color-secondary-1-1 { color: #8385E3 }
.color-secondary-1-2 { color: #3C40D6 }
.color-secondary-1-3 { color: #090D82 }
.color-secondary-1-4 { color: #030441 }

.color-secondary-2-0 { color: #FFBE00 }	/* Main Secondary color (2) */
.color-secondary-2-1 { color: #FFDF81 }
.color-secondary-2-2 { color: #FFC828 }
.color-secondary-2-3 { color: #BB8B00 }
.color-secondary-2-4 { color: #5D4500 }

.color-complement-0 { color: #FF9000 }	/* Main Complement color */
.color-complement-1 { color: #FFC881 }
.color-complement-2 { color: #FFA228 }
.color-complement-3 { color: #BB6A00 }
.color-complement-4 { color: #5D3400 }



/* As RGBa codes */

.rgba-primary-0 { color: rgba(  6,108,180,1) }	/* Main Primary color */
.rgba-primary-1 { color: rgba(119,179,221,1) }
.rgba-primary-2 { color: rgba( 44,139,207,1) }
.rgba-primary-3 { color: rgba(  4, 72,120,1) }
.rgba-primary-4 { color: rgba(  1, 35, 59,1) }

.rgba-secondary-1-0 { color: rgba( 15, 20,192,1) }	/* Main Secondary color (1) */
.rgba-secondary-1-1 { color: rgba(131,133,227,1) }
.rgba-secondary-1-2 { color: rgba( 60, 64,214,1) }
.rgba-secondary-1-3 { color: rgba(  9, 13,130,1) }
.rgba-secondary-1-4 { color: rgba(  3,  4, 65,1) }

.rgba-secondary-2-0 { color: rgba(255,190,  0,1) }	/* Main Secondary color (2) */
.rgba-secondary-2-1 { color: rgba(255,223,129,1) }
.rgba-secondary-2-2 { color: rgba(255,200, 40,1) }
.rgba-secondary-2-3 { color: rgba(187,139,  0,1) }
.rgba-secondary-2-4 { color: rgba( 93, 69,  0,1) }

.rgba-complement-0 { color: rgba(255,144,  0,1) }	/* Main Complement color */
.rgba-complement-1 { color: rgba(255,200,129,1) }
.rgba-complement-2 { color: rgba(255,162, 40,1) }
.rgba-complement-3 { color: rgba(187,106,  0,1) }
.rgba-complement-4 { color: rgba( 93, 52,  0,1) }



/* Generated by Paletton.com ﾂｩ 2002-2014 */
/* http://paletton.com */

/* Generated by Paletton.com ﾂｩ 2002-2014 */
/* http://paletton.com */

