@charset "UTF-8";
@import url("grid.css");

img {
  max-width:100%;
  height: auto;
  display: block;
}
a {
  display:block;
  color: #666;
  text-decoration-line: none;
}
a:hover { 
  color: #999;
}
.bold {
  font-weight: bold;
}

/*ヘッダー
-------------------------------------*/
.header{
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}
.logo{
  width: 1200px;
  background: #fff;
  padding: 10px 0;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
.logo h1.title {
  width: 1200px;
  margin: auto;
}
.logo h1.title img {
}
.logo .tel_box {
  font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
  color: #3e3a39;
  font-size: 2.4rem;
  line-height: 2.4rem;
  font-weight: bold;
  background: -moz-linear-gradient(top, #fff, #cede55);
  background: -webkit-linear-gradient(top, #fff, #cede55);
  background: linear-gradient(to bottom, #fff, #cede55);
  border: 1px solid #cede55;
  border-radius: 6px;
  padding: 6px;
  position: absolute;
  top: 20px;
  right: 0;
}
.logo .tel_box a {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  color: #3e3a39;
}
.logo .tel_box a:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/telephone.png) no-repeat;
  background-size: contain;
  margin: 0 6px 0 0;
}
/* sp */
@media only screen and (max-width: 768px) {
  .nav {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100vh;
    padding-top: 60px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }
  .hamburger {
    position: absolute;
    right: 15px;
    top: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .nav_item {
    text-align: center;
    padding: 0 14px;
    margin: 0;
  }
  .nav_item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #3e3a39;
  }
  .nav_item a:hover {
    background-color: #cede55;
  }
  .hamburger_border {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 2px;
    background-color: #3e3a39;
    transition: all .6s;
  }
  .hamburger_border_top {
    top: 14px;
  }
  .hamburger_border_center {
    top: 20px;
  }
  .hamburger_border_bottom {
    top: 26px;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger_border {
    background-color: #3e3a39;
  }
  .nav-open .hamburger_border_top {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    transform: rotate(-45deg);
    top: 20px;
  }
}
/* pc */
@media only screen and (min-width: 769px) {
  .header_inner {
    position: relative;
    padding: 0;
    background: #fff;
    height: 40px;
    box-sizing: border-box;
  }
  .header_inner {
    border-top: 1px solid #3e3a39;
    border-bottom: 1px solid #3e3a39;
  }
  .nav {
    width: 1200px;
    margin: auto;
  }
  .nav_list{
    display: flex;
    text-align: center;
    margin-bottom: 0;
    list-style: none;
  }
  .nav_list li{
    flex: 1;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  .nav_list li a{
    color: #3e3a39;
    font-weight: bold;
    padding: 6px;
  }
  .nav_list li a.current{
    color: #3e3a39;
    background:#cede55;
  }
  .nav_list li a:hover:not(.current){
    text-decoration: underline;;
  }
}
/*パンくず*/
.breadcrumb {
  width: 1200px;
  margin: 0 auto;
  padding: 130px 0 10px;
  list-style: none;
}
.breadcrumb li {
  display: inline;
  list-style: none;
  font-size: 1.2rem;
}
.breadcrumb li:after {
  content: '>';
  padding: 0 0.2em;
  color: #555;
}
.breadcrumb li:last-child:after {
  content: '';
}
.breadcrumb li a {
  display: inline;
  text-decoration: none;
  color: #3e3a39;
}
.breadcrumb li a:hover {
  text-decoration: underline;
}
.breadcrumb li a.b_current {
  font-weight: bold;
  color: #3e3a39;
}

/*メイン画像・キャッチコピー
-------------------------------------*/
.mainimg {
  width: 1200px;
  margin: 20px auto;
}
.home .mainimg {
  padding-top: 110px;
}
.mainimg img {
  width: 100%;
  height: auto;
}
.catch {
    text-align: center;
}
.catch h2 {
  padding-bottom: 1rem;
  margin-top: 2rem;
  letter-spacing: 0.05em;
  font-size: 2.6rem;
  font-weight: bold;
  color: #3e3a39;
}

/*メインコンテンツ
-------------------------------------*/
main {
  width: 900px;
  margin: 0 auto;
}
section {
  margin: 3rem 0 6rem;
}
section h3 {
  color: #3e3a39;
  font-size: 2rem;
  font-weight: bold;
  background: #cede55;
  padding: 8px 12px;
  margin: 10px 0 25px;
}
section h4 {
  color: #3e3a39;
  font-size: 1.8rem;
  font-weight: bold;
  border-bottom: 3px solid #cede55;
  padding: 8px 12px;
  margin: 10px 0 20px;
}
.col img {
  margin: auto;
}
/*HOME*/
p.sign {
  text-align: right;
  margin-top: 3rem;
}
.bn_box {
  margin-bottom: .5rem;
}
.bn_box img {
  width: 100%;
  max-width: 350px;
  height: auto;
}
p.tel {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 0;
}

/*商品案内*/
.product_box {
  margin-bottom: 30px;
}
.seiretsu span {
  display: inline-block;
  width: 120px;
}
/*会社案内*/
table.outline th {
  background: #cede55;
  text-align: left;
}
table.outline td {
  text-align: left;
}
.map {
  margin-bottom: 30px;
}
/*faq*/
dl.faq {
  margin: 10px 0 20px;
  padding: 0;
}
dl.faq dt, dl.faq dd {
  margin: 0;
  padding: 6px 0 6px 36px;
  position: relative;
}
dl.faq dt {
  color: #168d00;
  font-size: 1.8rem;
  font-weight: bold;
}
dl.faq dt:before {
  content: "Ｑ：";
  position: absolute;
  left: 0;
  top: 6px;
}
dl.faq dd:before {
  content: "Ａ：";
  position: absolute;
  left: 0;
  top: 6px;
}
.sub {
  text-align: center;
  font-weight: bold;
}
.f_tel_box {
  font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
  color: #3e3a39;
  font-size: 3rem;
  line-height: 3rem;
  font-weight: bold;
  background: -moz-linear-gradient(top, #fff, #cede55);
  background: -webkit-linear-gradient(top, #fff, #cede55);
  background: linear-gradient(to bottom, #fff, #cede55);
  border: 1px solid #cede55;
  border-radius: 6px;
  padding: 6px;
  display: block;
  width: 240px;
  margin: 30px auto;
  text-align: center;
}
.f_tel_box a {
  position: relative;
  display: inline-block;
  vertical-align: bottom;
  color: #3e3a39;
}
.f_tel_box a:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: url(../img/telephone.png) no-repeat;
  background-size: contain;
  margin: 0 6px 3px 0;
}
/*フッター
-------------------------------------*/
footer {
  padding: 2rem 0 1rem;
}
.footer_navi {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
  justify-content: center;
}
.footer_navi li {
  text-align: center;
  padding: 0 20px;
  margin: 0;
}
.footer_navi li a {
  position: relative;
  font-size: 1.4rem;
  color: #3e3a39;
}
.footer_navi li a:before {
  content: "\25B6";
  position: relative;
  padding-right: 2px;
  text-decoration: none;
}
.footer_navi li a span {
  text-decoration: underline;
}
.footer_navi li a:hover span {
  text-decoration: none;
}

/*コピーライト
-------------------------------------*/
.copyright {
  text-align: center;
  padding: 1rem 0;
  color: #fff;
  background-color: #cede55;
}
/*ページトップ
-------------------------------------*/
#pagetop {
  position: fixed;
  bottom: 10px;
  right: 10px;
  margin: 0;
}
#pagetop a {
  display: block;
  background: #3e3a39;
  color: #fff;
  width: 50px;
  height: 50px;
  padding: 12px;
  text-align: center;
  position: relative;
  border-radius: 50px;
}
#pagetop a:before {
  content: "▲";
}
#pagetop a:hover {
  background: #cede55;
}

/* 幅768px以下の表示
-------------------------------------*/
@media screen and (max-width: 768px){
  .header {
    height: 60px;
  }
  .logo {
    width: 100%;
    height: 60px;
    border-bottom: 1px solid #3e3a39;
  }
  .logo h1.title {
    width: 100%;
    padding: 0 1rem;
  }
  .logo h1.title img {
    width: 240px;
    height: auto;
  }
  .logo .tel_box {
    top: 15px;
    right: 60px;
  }
  .logo .tel_box span {
    display: none;
  }
  .breadcrumb {
    width: 100%;
    padding: 60px 0 0 20px;
  }
  .mainimg {
    width: 100%;
    margin-top: 0;
  }
  .home .mainimg {
    padding-top: 60px;
  }
  main {
    width: 100%;
  }
  .catch h2 {
    font-size: 2rem;
  }
  section {
    margin: 3rem 0;
    padding: 0 2rem;
  }
  table.flat th, table.flat td, 
  table.outline th, table.outline td{
    display: block;
  }
  table.flat th {
    font-weight: bold;;
  }
  .footer_navi {
    width: 100%;
  }
  .footer_navi li {
    padding: 0 3px;
  }
  .footer_navi li a {
    font-size: 1rem;
  }
  .copyright {
    font-size: 1.2rem;
  }
  #pagetop {
    bottom: 5px;
  }
  #pagetop a {
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 40px;
  }
}
/*tel*/
@media (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
 }
  .sp_only {
    display: none;
  }
}
