
/*---ドロップシャドウ付きフレーム---*/
#frame{
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  width: calc(100% - 30px);
  max-width: 1000px;
  margin: 0 auto;
  background-color: transparent;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 60;
  pointer-events: none;
}


/*---メイン画像---*/
section#top{
  background: url(../images/top_bg.jpg) center top / cover no-repeat;
}
  section#top .cage{
    width: calc(100% - 30px);
    height: calc(100% - 70px);
    background: url(../images/top_image.jpg) center top / cover no-repeat;
    margin-top: 70px;
  }
  section#top .rightLine{ /*右側の装飾ライン*/
    position: absolute;
    top: 0;
    right: -15px;
    width: 15px;
    height: 70%;
    background-color: #87c600;
    z-index: 50;
  }
  section#top .leftLine{ /*左側の装飾ライン*/
    position: absolute;
    bottom: 0;
    left: -15px;
    width: 15px;
    height: 70%;
    background-color: #299dbd;
    z-index: 50;
  }
  section#top .message{
    position: relative;
    top: 30%;
    left: 0;
    width: calc(90% - 40px);
    max-width: 520px;
    padding: 20px;
    text-align: center;
    background-color: rgba(255,255,255,0.8);
  }
    section#top .message h1{
      margin-bottom: 10px;
    }
      section#top .message h1 img.logo{
        width: 80px;
        height: auto;
      }
    section#top .message h2{
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #616161;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      line-height: 1.4em;
    }
      section .message h2 span{
        white-space: nowrap;
      }
    section#top .message p{
      display: inline-block;
      margin: 0 auto;
      text-align: left;
      font-size: 14px;
      line-height: 1.6em;
      color: #505050;
    }
    @media screen and (max-width:600px){
      section#top .message h2{
        font-size: 24px;
      }
      section#top .message p{
        font-size: 13px;
        line-height: 1.5em;
      }
    }


/*---経営理念 と 3つのお約束---*/
section#philosophy,
section#promise{
  display: flex;
  flex-wrap: wrap;
}
section#philosophy{
  flex-direction: row-reverse;
}
  /*イメージ画像*/
  section#philosophy .image,
  section#promise .image{
    width: 50%;
    min-height: 380px;
    background-color:rgba(255,255,255,1);
    background-blend-mode:lighten;
  }
  section#philosophy .image{
    background: url(../images/philosophy_image.jpg) center center / cover no-repeat;
  }
  section#promise .image{
    background: url(../images/promise_image.jpg) center center / cover no-repeat;
  }
  /*----- バララックス -----*/
  section#philosophy .image.delighter,
  section#promise .image.delighter{
    transition: all 1.5s ease-out;
    background-color:rgba(255,255,255,1);
  }
  section#philosophy .image.delighter.started,
  section#promise .image.delighter.started{
    transform: none;
    background-color:rgba(255,255,255,0);
  }
  section#philosophy .image.delighter.ended,
  section#promise .image.delighter.ended{
    transform: none;
    background-color:rgba(255,255,255,0);
  }
  /*----------------------*/
  /*内容*/
  section#philosophy .content,
  section#promise .content{
    width: 50%;
    min-height: 380px;
    display: flex;
    align-items: center;
  }
  section#philosophy .content{
    background: url(../images/philosophy_bg.jpg) center center / cover no-repeat;
    justify-content: flex-end;
  }
  section#promise .content{
    background: url(../images/promise_bg.jpg) center center / cover no-repeat;
  }
    section#philosophy .content>div,
    section#promise .content>div{
      max-width: 400px;
      padding: 50px;
      text-align: center;
    }
    section#philosophy .content>div{
      margin-left: 15px;
    }
    section#promise .content>div{
      margin-right: 15px;
    }
      section#philosophy .content .icon,
      section#promise .content .icon{
        border-radius: 50%;
        height: 85px;
        width: 85px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      section#philosophy .content .icon{
        background-color: #299dbd;
      }
      section#promise .content .icon{
        background-color: #f5b33c;
      }
      section#philosophy .content h2,
      section#promise .content h2{
        font-size: 20px;
        margin: 20px 0;
      }
      section#philosophy .content p,
      section#promise .content p{
        text-align: left;
        line-height: 1.8em;
        font-size: 13.5px;
        letter-spacing: -0.05em;
      }
      /*----- バララックス -----*/
      section#philosophy .content>div.delighter,
      section#promise .content>div.delighter{
        transition: all 1s ease-out;
        transform: translateY(10%);
        opacity: 0;
      }
      section#philosophy .content>div.delighter.started,
      section#promise .content>div.delighter.started{
        transform: none;
        opacity: 1;
      }
      section#philosophy .content>div.delighter.ended,
      section#promise .content>div.delighter.ended{
        transform: none;
        opacity: 1;
      }
      /*----------------------*/


@media screen and (max-width:600px){
  /*イメージ画像*/
  section#philosophy .image,
  section#promise .image{
    width: 100%;
    height: 200px;
    min-height: 200px;
  }
  /*内容*/
  section#philosophy .content,
  section#promise .content{
    width: 100%;
    justify-content: center;
  }
}


/*---ごあいさつ---*/
section#message{
  width: 100%;
  padding: 120px 0;
  background: url(../images/message_bg.jpg) center center / cover no-repeat;
}
  section#message>div{
    max-width: 820px;
    margin: 0 auto;
  }
    section#message .comment{
      position: relative;
      width: calc(100% - 60px);
      padding: 50px 0 80px 0;
      margin: 0 auto;
      background-color: rgba(0,0,0,0.7);
    }
      section#message .comment h2{
        position: absolute;
        top: -25px;
        left: 20px;
        /*width: 150px;*/
        width: auto;
        padding: 5px 20px;
        border: solid 1px #fff;
        color: #fff;
        font-size: 25px;
        font-weight: bold;
        text-align: center;
        white-space: nowrap;
        background-color: #69ade2;
      }
      @media screen and (max-width:460px){
        section#message .comment h2.en{
          font-size: 20px;
        }
      }
      @media screen and (max-width:400px){
        section#message .comment h2.en{
          top: -20px;
          font-size: 16px;
        }
      }
      /*----- バララックス -----*/
      section#message .comment h2.delighter{
        transition: all 1s ease-out;
        transform: translateY(-25%);
        opacity: 0;
      }
      section#message .comment h2.delighter.started{
        transform: none;
        opacity: 1;
      }
      section#message .comment h2.delighter.ended{
        transform: none;
        opacity: 1;
      }
      /*----------------------*/
      section#message .comment p{
        width: 80%;
        margin: 0 auto 20px auto;
        font-size: 14px;
        line-height: 2.2em;
        letter-spacing: -0.05em;
        color: #fff;
      }
      /*----- バララックス -----*/
      section#message .comment p.delighter{
        transition: all 1s ease-out;
        transform: translateX(-10%);
        opacity: 0;
      }
      section#message .comment p.delighter.started{
        transform: none;
        opacity: 1;
      }
      section#message .comment p.delighter.ended{
        transform: none;
        opacity: 1;
      }
      /*----------------------*/
      section#message .comment .signature{
        position: absolute;
        bottom: 25px;
        right: 25px;
      }
        section#message .comment .signature img{
          width: 110px;
        }
        section#message .comment .signature.en img{
          width: 250px;
        }
        @media screen and (max-width:699px){
          section#message .comment .signature img{
            width: 95px;
          }
        }
        @media screen and (max-width:400px){
          section#message .comment .signature.en img{
            width: 200px;
          }
        }
      /*----- バララックス -----*/
      section#message .comment .signature.delighter{
        transition: all 1s ease-out;
        transform: translateY(25%);
        opacity: 0;
      }
      section#message .comment .signature.delighter.started{
        transform: none;
        opacity: 1;
      }
      section#message .comment .signature.delighter.ended{
        transform: none;
        opacity: 1;
      }
      /*----------------------*/


/*---会社概要---*/
section#company{
  background: #fff url(../images/company_bg.jpg) center top / 100% auto no-repeat;
}
  section#company h2{
    font-size: 45px;
    color: #5c6e79;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 80px 0 70px 0;
    margin: 40px 0;
    background: url(../images/logo_watermark.svg) center center / auto 100% no-repeat;
  }
    section#company h3{
      display: block;
      width: 100%;
      padding-bottom: 40px;
      background: url(../images/arrow_white_under.svg) center bottom / 40px 44px no-repeat;
    }
    /*----- バララックス -----*/
    section#company h3.delighter{
      transition: all 1s ease-out;
      transform: translateY(-25%);
      opacity: 0;
    }
    section#company h3.delighter.started{
      transform: none;
      opacity: 1;
    }
    section#company h3.delighter.ended{
      transform: none;
      opacity: 1;
    }
    /*----------------------*/
      section#company h3 span{
        display: block;
        width: 100%;
        text-align: center;
        padding: 35px 0 30px 0;
        margin: 0;
        background-color: #fff;
        font-size: 22px;
        color: #2d3234;
      }


  /*事業内容*/
  section#company #business{
    background-color: #dadada;
  }
    section#company #business ul.business_list{
      width: calc(100% - 80px);
      padding: 15px 40px 60px;
      overflow: hidden;
    }
      section#company #business ul.business_list>li{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        margin-bottom: 2%;
      }
      section#company #business ul.business_list>li:nth-child(2n-1){
        flex-direction: row;
      }
      section#company #business ul.business_list>li.business02,
      section#company #business ul.business_list>li.business04,
      section#company #business ul.business_list>li.business06{
        flex-direction: row-reverse;
      }
        /*番号とタイトル*/
        section#company #business ul.business_list>li .title{
          width: calc(33% - 50px);
          padding: 25px;
          
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          align-items: center;
          align-content: center;
        }
          section#company #business ul.business_list>li .title img{
            width: 75%;
            padding-bottom: 20px;
          }
          section#company #business ul.business_list>li .title p{
            width: 100%;
            color: #f6fbd8;
            font-size: 18px;
          }
        section#company #business ul.business_list>li.business01 .title{
          background-color: #1b9abd;
        }
        section#company #business ul.business_list>li.business02 .title{
          background-color: #75b200;
        }
        section#company #business ul.business_list>li.business03 .title{
          background-color: #f6ab1a;
        }
        section#company #business ul.business_list>li.business04 .title{
          background-color: #f10060;
        }
        section#company #business ul.business_list>li.business05 .title{
          background-color: #666666;
        }
        section#company #business ul.business_list>li.business06 .title{
          background-color: #1b9abd;
        }
        section#company #business ul.business_list>li.business07 .title{
          background-color: #75b200;
        }
        /*イメージ画像*/
        section#company #business ul.business_list>li .image{
          width: 65%;
        }
        section#company #business ul.business_list>li.business01 .image{
          background: url(../images/business01.jpg) center center / cover no-repeat;
        }
        section#company #business ul.business_list>li.business02 .image{
          background: url(../images/business02.jpg) center center / cover no-repeat;
        }
        section#company #business ul.business_list>li.business03 .image{
          background: url(../images/business03.jpg) center center / cover no-repeat;
        }
        section#company #business ul.business_list>li.business04 .image{
          background: url(../images/business04.jpg) center center / cover no-repeat;
        }
        section#company #business ul.business_list>li.business05 .image{
          background: url(../images/business05.jpg) center center / cover no-repeat;
        }
        section#company #business ul.business_list>li.business06 .image{
          background: url(../images/business06.jpg) center center / cover no-repeat;
        }
        section#company #business ul.business_list>li.business07 .image{
          background: url(../images/business07.jpg) center center / cover no-repeat;
        }
        /*MOREボタン*/
        .btn_more{
          width: 250px;
          border: solid 1px #f6fbd8;
          margin: 20px auto 0 auto;
          text-align: center;
        }
          .btn_more a{
            display: block;
            width: 100%;
            height: calc(100% - 20px);
            padding: 10px 0;
            font-size: 15px;
            color: #f6fbd8;
            text-decoration: none;
        
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
          }
          .btn_more a:hover{
            background-color: #f6fbd8;
            color: #666;
          }
        /*CLOSEボタン*/
        .btn_close{
          width: 250px;
          border: solid 1px #666;
          margin: 20px auto 0 auto;
          text-align: center;
        }
          .btn_close a{
            display: block;
            width: 100%;
            height: calc(100% - 20px);
            padding: 10px 0;
            font-size: 15px;
            color: #666;
            text-decoration: none;
        
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
          }
          .btn_close a:hover{
            background-color: #666;
            color: #fff;
          }
        /*詳細内容*/
        section#company #business ul.business_list .detail{
          display: none;

          font-size: 14px;
          width: calc(100% - 40px);
          padding: 20px 20px 30px;
          margin: -2% auto 2% auto;
          background-color: #fff;
          -webkit-border-bottom-left-radius : 10px;
          -webkit-border-bottom-right-radius: 10px;
             -moz-border-bottom-left-radius : 10px;
             -moz-border-bottom-right-radius: 10px;
                  border-bottom-left-radius : 10px;
                  border-bottom-right-radius: 10px;
          transition: all 0.4s ease;
          -webkit-transition: all 0.4s ease;
          -moz-transition: all 0.4s ease;
          -o-transition: all 0.4s ease;
        }
        section#company #business ul.business_list .detail.selected{
          display: block;
        }
          section#company #business ul.business_list .detail h4{
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 0.5em;
          }
          section#company #business ul.business_list .detail h5{
            font-size: 14px;
            font-weight: bold;
            margin: 1em 0 0.5em 0;
          }
          section#company #business ul.business_list .detail ul{
            list-style: disc;
            margin: 0 0 1em 2em;
          }
          section#company #business ul.business_list .detail li{
            line-height: 1.8em;
          }
@media screen and (min-width:601px){
  /*----- バララックス -----*/
  section#company #business ul.business_list>li.business01 .title.delighter,
  section#company #business ul.business_list>li.business03 .title.delighter,
  section#company #business ul.business_list>li.business05 .title.delighter,
  section#company #business ul.business_list>li.business07 .title.delighter{
    transition: all 1s ease-out;
    transform: translateX(-15%);
    opacity: 0;
  }
  section#company #business ul.business_list>li.business01 .title.delighter.started,
  section#company #business ul.business_list>li.business03 .title.delighter.started,
  section#company #business ul.business_list>li.business05 .title.delighter.started,
  section#company #business ul.business_list>li.business07 .title.delighter.started{
    transform: none;
    opacity: 1;
  }
  section#company #business ul.business_list>li.business01 .title.delighter.ended,
  section#company #business ul.business_list>li.business03 .title.delighter.ended,
  section#company #business ul.business_list>li.business05 .title.delighter.ended,
  section#company #business ul.business_list>li.business07 .title.delighter.ended{
    transform: none;
    opacity: 1;
  }
  /*----------------------*/
  section#company #business ul.business_list>li.business02 .title.delighter,
  section#company #business ul.business_list>li.business04 .title.delighter,
  section#company #business ul.business_list>li.business06 .title.delighter{
    transition: all 1s ease-out;
    transform: translateX(15%);
    opacity: 0;
  }
  section#company #business ul.business_list>li.business02 .title.delighter.started,
  section#company #business ul.business_list>li.business04 .title.delighter.started,
  section#company #business ul.business_list>li.business06 .title.delighter.started{
    transform: none;
    opacity: 1;
  }
  section#company #business ul.business_list>li.business02 .title.delighter.ended,
  section#company #business ul.business_list>li.business04 .title.delighter.ended,
  section#company #business ul.business_list>li.business06 .title.delighter.ended{
    transform: none;
    opacity: 1;
  }
  /*----------------------*/
  section#company #business ul.business_list>li.business01 .image.delighter,
  section#company #business ul.business_list>li.business03 .image.delighter,
  section#company #business ul.business_list>li.business05 .image.delighter,
  section#company #business ul.business_list>li.business07 .image.delighter{
    transition: all 2s ease-out;
    transform: translateX(15%);
    opacity: 0;
  }
  section#company #business ul.business_list>li.business01 .image.delighter.started,
  section#company #business ul.business_list>li.business03 .image.delighter.started,
  section#company #business ul.business_list>li.business05 .image.delighter.started,
  section#company #business ul.business_list>li.business07 .image.delighter.started{
    transform: none;
    opacity: 1;
  }
  section#company #business ul.business_list>li.business01 .image.delighter.ended,
  section#company #business ul.business_list>li.business03 .image.delighter.ended,
  section#company #business ul.business_list>li.business05 .image.delighter.ended,
  section#company #business ul.business_list>li.business07 .image.delighter.ended{
    transform: none;
    opacity: 1;
  }
  /*----------------------*/
  section#company #business ul.business_list>li.business02 .image.delighter,
  section#company #business ul.business_list>li.business04 .image.delighter,
  section#company #business ul.business_list>li.business06 .image.delighter{
    transition: all 2s ease-out;
    transform: translateX(-15%);
    opacity: 0;
  }
  section#company #business ul.business_list>li.business02 .image.delighter.started,
  section#company #business ul.business_list>li.business04 .image.delighter.started,
  section#company #business ul.business_list>li.business06 .image.delighter.started{
    transform: none;
    opacity: 1;
  }
  section#company #business ul.business_list>li.business02 .image.delighter.ended,
  section#company #business ul.business_list>li.business04 .image.delighter.ended,
  section#company #business ul.business_list>li.business06 .image.delighter.ended{
    transform: none;
    opacity: 1;
  }
  /*----------------------*/
}
@media screen and (max-width:600px){
  section#company #business ul.business_list>li{
    flex-direction: column-reverse;
    margin-bottom: 20px;
  }
  /*タイトル*/
  section#company #business ul.business_list>li .title{
    width: calc(100% - 50px);
    padding: 25px;
  }
  section#company #business ul.business_list>li .title img{
    max-width: 200px;
  }
  /*イメージ画像*/
  section#company #business ul.business_list>li .image{
    width: 100%;
    height: 200px;
  }
  /*詳細内容*/
  section#company #business ul.business_list .detail{
    margin-top: -20px;
    margin-bottom: 20px;
  }
  /*----- バララックス -----*/
  section#company #business ul.business_list>li.business01 .title.delighter,
  section#company #business ul.business_list>li.business03 .title.delighter,
  section#company #business ul.business_list>li.business05 .title.delighter,
  section#company #business ul.business_list>li.business07 .title.delighter{
    transition: all 1s ease-out;
    transform: translateY(-10%);
    opacity: 0;
  }
  section#company #business ul.business_list>li.business01 .title.delighter.started,
  section#company #business ul.business_list>li.business03 .title.delighter.started,
  section#company #business ul.business_list>li.business05 .title.delighter.started,
  section#company #business ul.business_list>li.business07 .title.delighter.started{
    transform: none;
    opacity: 1;
  }
  section#company #business ul.business_list>li.business01 .title.delighter.ended,
  section#company #business ul.business_list>li.business03 .title.delighter.ended,
  section#company #business ul.business_list>li.business05 .title.delighter.ended,
  section#company #business ul.business_list>li.business07 .title.delighter.ended{
    transform: none;
    opacity: 1;
  }
  /*----------------------*/
  section#company #business ul.business_list>li.business02 .title.delighter,
  section#company #business ul.business_list>li.business04 .title.delighter,
  section#company #business ul.business_list>li.business06 .title.delighter{
    transition: all 1s ease-out;
    transform: translateY(-10%);
    opacity: 0;
  }
  section#company #business ul.business_list>li.business02 .title.delighter.started,
  section#company #business ul.business_list>li.business04 .title.delighter.started,
  section#company #business ul.business_list>li.business06 .title.delighter.started{
    transform: none;
    opacity: 1;
  }
  section#company #business ul.business_list>li.business02 .title.delighter.ended,
  section#company #business ul.business_list>li.business04 .title.delighter.ended,
  section#company #business ul.business_list>li.business06 .title.delighter.ended{
    transform: none;
    opacity: 1;
  }
  /*----------------------*/
  section#company #business ul.business_list>li.business01 .image.delighter,
  section#company #business ul.business_list>li.business03 .image.delighter,
  section#company #business ul.business_list>li.business05 .image.delighter,
  section#company #business ul.business_list>li.business07 .image.delighter{
    transition: all 1s ease-out;
    opacity: 0;
  }
  section#company #business ul.business_list>li.business01 .image.delighter.started,
  section#company #business ul.business_list>li.business03 .image.delighter.started,
  section#company #business ul.business_list>li.business05 .image.delighter.started,
  section#company #business ul.business_list>li.business07 .image.delighter.started{
    transform: none;
    opacity: 1;
  }
  section#company #business ul.business_list>li.business01 .image.delighter.ended,
  section#company #business ul.business_list>li.business03 .image.delighter.ended,
  section#company #business ul.business_list>li.business05 .image.delighter.ended,
  section#company #business ul.business_list>li.business07 .image.delighter.ended{
    transform: none;
    opacity: 1;
  }
  /*----------------------*/
  section#company #business ul.business_list>li.business02 .image.delighter,
  section#company #business ul.business_list>li.business04 .image.delighter,
  section#company #business ul.business_list>li.business06 .image.delighter{
    transition: all 1s ease-out;
    opacity: 0;
  }
  section#company #business ul.business_list>li.business02 .image.delighter.started,
  section#company #business ul.business_list>li.business04 .image.delighter.started,
  section#company #business ul.business_list>li.business06 .image.delighter.started{
    transform: none;
    opacity: 1;
  }
  section#company #business ul.business_list>li.business02 .image.delighter.ended,
  section#company #business ul.business_list>li.business04 .image.delighter.ended,
  section#company #business ul.business_list>li.business06 .image.delighter.ended{
    transform: none;
    opacity: 1;
  }
  /*----------------------*/
}


  /*主要取引金融機関*/
  section#company #bank{
    background: url(../images/bank_bg.jpg) center center / cover no-repeat;
    padding-bottom: 80px;
  }
    section#company #bank>div{
      text-align: center;
      margin-top: 50px;
    }
    section#company #bank ul{
      display: inline-block;
      font-size: 15px;
      color: #fff;
      text-align: left;
    }
      section#company #bank li{
        margin-bottom: 10px;
      }


  /*主要取引先*/
  section#company #client{
    background: url(../images/client_bg.jpg) center center / cover no-repeat;
    padding-bottom: 80px;
  }
    section#company #client>div{
      text-align: center;
      margin-top: 50px;
      padding: 0 20px;
    }
    section#company #client ul{
      font-size: 15px;
      color: #fff;
      max-width: 600px;
      text-align: left;
      margin: 0 auto;
      padding: 0 10px;
    }
      section#company #client li{
        margin-bottom: 10px;
        margin-right: 1em;
        display: inline-block;
        white-space: nowrap;
      }
      section#company #client li a:link   { text-decoration:none; color: rgba(255,255,255,1); }
      section#company #client li a:visited{ text-decoration:none; color: rgba(255,255,255,1); }
      section#company #client li a:active { text-decoration:none; color: rgba(255,255,255,1); }
      section#company #client li a:hover  { text-decoration:none; color: rgba(255,255,255,0.8); }
  @media screen and (max-width:500px){
    section#company #client ul{
      font-size: 14px;
      letter-spacing: -0.05em;
    }
  }



/*---お問い合わせ---*/
section#contact{
  background: url(../images/contact_bg.jpg) center top / cover no-repeat;
}
section#contact h2{
  color: #79796e;
  font-size: 40px;
  text-align: center;
  margin: 70px 0 50px 0;
}
  section#contact .cage{
    margin-bottom: 100px;
  }
  /*フォーム*/
  section#contact #input_form{
    max-width: 420px;
    margin: 0 auto;
    padding: 0 20px;
  }
  section#contact #input_form input,
  section#contact #input_form textarea{
    width: calc(100% - 22px);
    border: solid 1px #a9aaa4;
    background-color: #fdfff0;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #666;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "平成ゴシック", arial, helvetica, clean, sans-serif;
  }
  section#contact #input_form .err{
    width: calc(100% - 20px);
    color: #fff;
    background-color: #ff3939;
    padding: 5px 10px;
    margin: 0 auto 5px auto;
    -webkit-border-radius: 5px;
       -moz-border-radius: 5px;
            border-radius: 5px;
  }
  /*確認画面*/
  section#contact #confirmation{
    max-width: 420px;
    margin: 0 auto;
    padding: 0 20px;
  }
  section#contact #confirmation p{
    text-align: center;
    padding: 15px 10px;
    font-size: 16px;
    font-weight: bold;
    background-color: rgba(255,255,255,0.5);
    -webkit-border-radius: 10px;
       -moz-border-radius: 10px;
            border-radius: 10px;
  }
  section#contact #confirmation dl{
    width: 100%;
    font-size: 18px;
    text-align: left;
    margin: 20px auto 0 auto;
  }
  section#contact #confirmation dt{
    padding: 10px;
    color: #fff;
    background-color: #9f978b;
    border: solid 1px #9f978b;
    -webkit-border-top-left-radius : 5px;
    -webkit-border-top-right-radius: 5px;
       -moz-border-top-left-radius : 5px;
       -moz-border-top-right-radius: 5px;
            border-top-left-radius : 5px;
            border-top-right-radius: 5px;
  }
  section#contact #confirmation dd{
    padding: 10px;
    background-color: #fff;
    border: solid 1px #9f978b;
    margin-bottom: 20px;
    -webkit-border-bottom-left-radius : 5px;
    -webkit-border-bottom-right-radius: 5px;
       -moz-border-bottom-left-radius : 5px;
       -moz-border-bottom-right-radius: 5px;
            border-bottom-left-radius : 5px;
            border-bottom-right-radius: 5px;
  }
  section#contact #confirmation dd:last-child{
    margin-bottom: 0;
  }
  /*送信完了画面*/
  section#contact #sended_msg{
    width: calc(100% - 70px);
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
  }
  section#contact #sended_info{
    text-align: left;
  }
  section#contact #sended_info h3{
    font-size: 20px;
    margin-top: 2em;
    padding-bottom: 5px;
    border-bottom: solid 1px #999;
  }
  section#contact #sended_info h4{
    font-size: 17px;
    margin-top: 1em;
  }
  section#contact #sended_info p{
    font-size: 14px;
    margin-top: 1em;
  }
  /*ボタン共通*/
  section#contact .btn{
    width: 140px;
    margin: 0 auto;
    padding: 5px 0 5px 0;
    color: #fff;
    text-align: center;
    font-size: 15px;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
  }
  section#contact .btn:hover{
    background-color: #666;
  }
  section#contact .btn a{
    display: block;
    padding: 5px;
    /*font-size: 14px;*/
  }
  section#contact .btn a:link   { text-decoration:none; color: #ffffff; }
  section#contact .btn a:visited{ text-decoration:none; color: #ffffff; }
  section#contact .btn a:active { text-decoration:none; color: #ffffff; }
  section#contact .btn a:hover  { text-decoration:none; color: #ffffff; }
  /*確認ボタン*/
  section#contact .check{
    background-color: #b8312b;
  }
  section#contact .check:hover{
    background-color: #666;
  }
  /*戻るボタン*/
  section#contact .back{
    background-color: #8c8d84;
    margin-right: 5px;
  }
  section#contact .back:hover{
    background-color: #666;
  }
  /*送信ボタン*/
  section#contact .send{
    background-color: #b8312b;
  }
  section#contact .send:hover{
    background-color: #666;
  }
  /*戻るボタン と 送信ボタン*/
  section#contact ul.btn_set{
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
  section#contact ul.btn_set li{
    display: inline-block;
  }


/*---アクセス---*/
section#access{
  background: #2b2b2b url(../images/access_bg.jpg) center top / auto 100% no-repeat;
}
section#access h2{
  color: #c0b784;
  font-size: 40px;
  text-align: center;
  margin: 50px 0 40px 0;
}
  section#access .cage{
    max-width: 1030px;
    margin-bottom: 100px;
  }
    section#access #map_canvas{
      width: 100%;
      margin-bottom: 135px;
      height: 500px;
    }
    section#access #address{
      text-align: center;
    }
      section#access #address p{
        display: inline-block;
        text-align: left;
        color: #c0b784;
        font-size: 18px;
      }
        section#access #address p .companyName{
          font-size: 20px;
          
        }

      section#access #address .zip a:link{text-decoration: none; color:#c0b784;}
      section#access #address .zip a:visited{text-decoration: none; color:#c0b784;}
      section#access #address .zip a:active{text-decoration: none; color:#c0b784;}
      section#access #address .zip a:hover{text-decoration: none; color:#c0b784;}

      section#access #address .tel a:link{text-decoration: none; color:#fff;}
      section#access #address .tel a:visited{text-decoration: none; color:#fff;}
      section#access #address .tel a:active{text-decoration: none; color:#fff;}
      section#access #address .tel a:hover{text-decoration: none; color:#fff;}
      
      @media screen and (max-width:600px){
        section#access #address{
          padding: 0 30px;
        }
        section#access #address p{
          font-size: 15px;
        }
      }

