@charset "utf-8";

/*----------------------------------------
2016.11.02
style_common.css

共通箇所を記述します。
・ヘッダー
・フッター
----------------------------------------*/

/*==========================================
 フォーム全般
===========================================*/

input, button, textarea, select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ --------------------共通--------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */
html { text-rendering: optimizeLegibility; }
.clearfix::after { content: ""; display: table; clear: both;}
a { text-decoration: none; color:#000; }

/* hoverエフェクト */
.fade,
.fade::before,
.fade::after {
  -webkit-transition: .3s;
  transition: .3s;
}

/* ----------------------- font ----------------------- */
body {
  font-family: "Noto Sans JP","Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  margin: 0;
  font-size: 15px;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

/* ----------------------- head ----------------------- */
header {
  width: 100%;
  position: fixed;
  top: 0;
}
.header__navi_list,.header__navi_list-last {
  list-style-type: none;
}

/* --------------------- contents --------------------- */
.contents {
}

/* ---------------------- footer ---------------------- */
.footer {
  background: #fff;
  font-size: 12px;
}
.footer__logobox a {
  color: #7F7F7F;
}
.footer__logobox a:hover {
  color: #aaa;
}



/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ 737px以上 -----------PC---------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */
@media only screen and (min-width: 737px) 
{ /* PC start */
body{
  overflow-x: hidden;
  min-width:980px;
}

/*----------------------------------------
    header pc
-----------------------------------------*/
header {
  background-color: rgba(255,255,255,1);
  padding: 0;
  z-index: 2;
  border-bottom: 1px solid #e5e5e5;
  z-index: 200;
  min-width: 1160px;
}
.drawer-nav {
  transform: translateZ(0) !important;
}

.drawer-navbar {
  margin-left: 20px;
  min-width: 1046px;
}
.drawer-navbar-header {
  float: left;
}
.header__logo a {
  display: inline-block;
  width: 238px;
  height: 61px;
  margin: 15px 15px 0 0 ;
  vertical-align: middle;
}
.drawer-nav .drawer-menu {
  float: right;
  text-align: center;
  text-transform: uppercase
}
.drawer-nav li {
  font-family: 'Roboto', sans-serif;
  float: left;
  margin-right: 85px;
  font-size: 18px;
  font-weight: 700;
  list-style-type: none;
  color: #000;
}
.drawer-nav li a {
  color: #000;
  vertical-align: 26%;
}
.drawer-nav li:last-child {
  margin-right: 0;
  background-color: #000;
  transition-property: all;
  transition: 0.3s linear;
}
.drawer-nav li:last-child:hover  {
  opacity: 0.6;
}
.drawer-nav li:last-child a  {
  color: #fff;
  padding: 0 50px; 
}


.drawer-menu-item_business a,
.drawer-menu-item_search a,
.drawer-menu-item_news a,
.drawer-menu-item_about a,
.drawer-menu-item_blog a,
.drawer-menu-item_contact a
{
  display: inline-block;
}
.drawer-menu-item_hide {
  display: none;
}

/* ----------------- header effects ----------------- */
.drawer-nav .drawer-menu-item a {
  position: relative;
  display: inline-block;
  transition: .3s;
  height: 90px;
  line-height: 90px;
}
.drawer-nav .drawer-menu-item a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 0;
  height: 5px;
  background-color: #000;
  transition: .2s;
}
.drawer-nav .drawer-menu-item a:hover::after {
  width: 100%;
}

.drawer-menu-item_select a{
  border-bottom: 5px solid #000;
  padding-bottom: 31px !important;
}

/*--ボタン装飾--*/
.contents_btn {
  background: #fff;
  width: 300px;
  margin: 0 auto;
}
.contents_btn a {
  font-family: 'Roboto', sans-serif;
  display: block;
  font-size: 18px;
  padding: 16px 0 18px 0;
  border: 1px solid #000;
  font-weight: 700;
  text-align: center;
  background: #fff;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 300px;
  position: relative;
  transition-property: all;
  transition: 0.3s linear;
}
.contents_btn_fs18 a {
  font-size: 18px;
  font-weight: 700;
}
.contents_btn a:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 37px;
  margin-left: -10px;
  margin-top: -1px;
  height: 1px;
  background: #000;
}
.contents_btn a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 20px;
  margin-top: -1px;
  margin-left: -2px;
  height: 1px;
  background: #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}
.contents_btn a:hover {
  color: #fff;
  background: #000;
}
.contents_btn a:hover:before{
  background: #fff;
}
.contents_btn a:hover:after {
  background: #fff;
}
/*--ボタン装飾 ここまで--*/

/*----------------------------------------
    footer pc
-----------------------------------------*/
/* --------------------- footer --------------------- */

/*--問い合わせエリア--*/
.contents__about_wrap {
  background-image: url(../img/top_about_back_pc.jpg);
  height: 499px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-width: 1160px;
}
.contents__about_inner {
  position: absolute;
  top: 260px;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  margin: auto;
  width: 1160px;
}
.contents__about_wrap .ttl {
  text-align: center;
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 30px;
}
/*--エントリーボタン装飾--*/
.enrty_btn {
  background: #000;
  width: 380px;
  margin: 0 auto 70px auto;
  transition: 0.3s linear;
  color: #fff;
}
.enrty_btn a {
  font-family: 'Roboto', sans-serif;
  display: block;
  font-size: 20px;
  padding: 20px 0 22px 0;
  font-weight: 700;
  text-align: center;
  background: #000;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 380px;
  position: relative;
  transition-property: all;
  color: #fff;
}
.enrty_btn a:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 37px;
  margin-left: -10px;
  margin-top: -1px;
  height: 1px;
  background: #fff;
}
.enrty_btn a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 20px;
  margin-top: -1px;
  margin-left: -2px;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}
.enrty_btn a:hover {
  background-color: #666666;
}
/*--エントリーボタン装飾 ここまで--*/


/*--お問い合わせボタン装飾--*/
.contact_btn {
  background: #fff;
  width: 380px;
  margin: 0 auto;
}
.contact_btn a {
  display: block;
  font-size: 18px;
  padding: 20px 0 22px 0;
  border: 3px solid #000;
  font-weight: 700;
  text-align: center;
  background: #fff;
  opacity: 1;
  cursor: pointer;
  transition: opacity 0.3s;
  width: 380px;
  position: relative;
  transition-property: all;
  transition: 0.3s linear;
}
.contact_btn a:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 37px;
  margin-left: -10px;
  margin-top: -1px;
  height: 1px;
  background: #000;
}
.contact_btn a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 20px;
  margin-top: -1px;
  margin-left: -2px;
  height: 1px;
  background: #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}
.contact_btn a:hover {
  color: #fff;
  background: #000;
}
.contact_btn a:hover:before{
  background: #fff;
}
.contact_btn a:hover:after {
  background: #fff;
}
/*--お問い合わせボタン装飾 ここまで--*/


footer {
  clear: both;
  min-width: 1160px;
}

.footer__btn_pagetop {
  position: relative;
  margin: 0 auto;
  max-width: 1160px;
}
.footer__btn_pagetop_pc {
  right: 0px;
  top: -32px;
  position: absolute;
  z-index: 2;
}
.footer__btn_pagetop a {
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  border-radius: 5px 5px 0 0 ;
  line-height: 20px;
  padding: 14px 20px;
  vertical-align: middle;
}
.footer__btn_pagetop a:before {
  font-family: "FontAwesome"; 
  font-weight: normal;
  content: "\f106";
  line-height: 25px;
  font-size: 25px;
  vertical-align: middle;
  margin-right: 10px;
} 
.footer__btn_pagetop a:hover {
  text-decoration: none !important;
}

.footer__inner {
  margin: 0 auto;
  max-width: 1160px;
  min-width: 1160px;
  padding-top: 70px;
}
.footer__right {
  float: right;
}
.footer__right img {
  width: 400px;
}
.footer__left {
  display: table-cell;
  margin-right: 238px;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
}
.footer__left .logo {
  height: 50px;
  margin-bottom: 20px;
}
.footer__left {
  font-size: 14px;
}
.footer__navi a:hover {
  text-decoration: underline;
}
.footer__navi ul {
  list-style: none;
  margin:  0 0 0 60px;
  padding: 0;
}
.footer__navi li {
  margin-bottom: 10px;
}
.footer__left_inner {
  display: inline-block;
  margin-right: 100px;
}
.footer__left_inner .address {
  font-size: 12px;
  line-height: 1.6;
}
.footer__navi_left {
  display: inline-block;
  font-weight: 600;
  vertical-align: top;
  margin-right: 60px;
}
.footer__navi_right {
  display: inline-block;
  font-weight: 600;
  vertical-align: top;
}
.footer__copyright {
  clear: both;
  text-align: center;
  padding: 30px 0 40px 0;
}


/* ページトップボタン */
.footer__btn_pagetop {
  position: fixed;
  right: -20px;
  bottom: 0;
  z-index: 99;
}
.footer__btn_pagetop a {
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 20px;
  vertical-align: middle;
  opacity: 0.6;
}
.footer__btn_pagetop a:before {
  font-family: "FontAwesome"; 
  font-weight: normal;
  content: "\f106";
  line-height: 25px;
  font-size: 25px;
  vertical-align: middle;
  margin-right: 20px;
} 
.footer__btn_pagetop a:hover {
  text-decoration: none !important;
}

} /* PC end --------------------------- */























/* responsible ---------------------------------------------
  ----------------------------------------------------------
 ★ 736px以下 -----------SP---------------------------------
  ----------------------------------------------------------
 -------------------------------------------------------- */
@media only screen and (max-width: 736px) 
{ /* SP start */
body { background: #fff; }

input { 
  padding: 0;
} 

/*----------------------------------------
    header sp
-----------------------------------------*/
header {
  z-index: 300;
}
.header__logo a {
  width: 130px;
  padding: 15px 15px 13px 0;
  margin: 0 auto;
  display: inline-block;
}
.header__logo p {
  display: none;
}
.drawer-open {
  overflow: hidden!important;
}
.drawer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.drawer-menu-item,
.drawer-menu-item_select
 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  font-size: 16px;
  color: #222;
  border-bottom: 1px solid #D1D5DE;
}
.drawer-menu-item:last-child {
  background-color: #000;
}
.drawer-menu-item:last-child a {
  color: #fff;
}
.drawer-menu-item a,
.drawer-menu-item_select a{
  display: block;
  padding: 22px 20px;
}
.drawer-navbar .drawer-navbar-header {
  background-color: #fff;
  border-bottom: 1px solid #e5e5e5;
}
.drawer-menu-item_head {
  padding: 0;
  height: 60px;
  background: #D7000F;
}
.drawer-nav {
  position: fixed;
  z-index: 2;
  top: 60px;
  overflow: hidden;
  width: 16.25rem;
  height: 100%;
  color: #222;
  background-color: #fff;
}
.drawer-navbar-header {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 60px;
  padding: 0 15px;
  /*z-index: 102;*/
}
.drawer--right .drawer-nav {
  right: -16.25rem;
  -webkit-transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: right .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
}

.drawer--right.drawer-open .drawer-nav,
.drawer--right .drawer-hamburger,
.drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
  right: 0;
}
.drawer--right.drawer-open .drawer-hamburger {
  right: 16.25rem;
  border-right: 1px  solid #D1D5DE;
}
.drawer-hamburger {
  position: absolute;
  z-index: 4;
  top: 0;
  display: block;
  box-sizing: content-box;
  width: 2rem;
  padding: 0;
  padding: 18px 1rem 30px;
  -webkit-transition: all .6s cubic-bezier(.19, 1, .22, 1);
  transition: all .6s cubic-bezier(.19, 1, .22, 1);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  border: 0;
  outline: 0;
  background-color: transparent;
}
.drawer-overlay {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 34, 34, .5);
}
.drawer-open .drawer-overlay {
  display: block;
}
.drawer--left .drawer-nav {
  left: -16.25rem;
  -webkit-transition: left .6s cubic-bezier(.19, 1, .22, 1);
  transition: left .6s cubic-bezier(.19, 1, .22, 1);
}
.drawer-hamburger:hover {
  cursor: pointer;
  background-color: transparent;
}
.drawer-hamburger-icon {
  position: relative;
  display: block;
  margin-top: 10px;
}
.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  width: 100%;
  height: 1px;
  -webkit-transition: all .6s cubic-bezier(.19, 1, .22, 1);
  transition: all .6s cubic-bezier(.19, 1, .22, 1);
  background-color: #000;
}
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
  position: absolute;
  top: -10px;
  left: 0;
  content: " ";
}
.drawer-hamburger-icon:after {
  top: 10px;
}
.drawer-open .drawer-hamburger-icon {
  background-color: transparent;
}
.drawer-open .drawer-hamburger-icon:after,
.drawer-open .drawer-hamburger-icon:before {
  top: 0;
}
.drawer-open .drawer-hamburger-icon:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.drawer-open .drawer-hamburger-icon:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.sr-only {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}

/*--ボタン装飾--*/
.contents_btn a {
  font-family: 'Roboto', sans-serif;
  display: block;
  font-size: 14px;
  padding: 12px 0;
  width: 85%;
  border: 1px solid #000;
  margin: 0 auto;
  font-weight: 600;
  text-align: center;
  background: #fff;
  position: relative;
  transition-property: all;
  transition: 0.3s linear;
}
.contents_btn a:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 27px;
  margin-left: -10px;
  margin-top: -1px;
  height: 1px;
  background: #000;
}
.contents_btn a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 12px;
  margin-top: -1px;
  margin-left: -2px;
  height: 1px;
  background: #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}
.contents_btn a:hover {
  color: #fff;
  background: #000;
}
.contents_btn a:hover:before{
  background: #fff;
}
.contents_btn a:hover:after {
  background: #fff;
}
/*--ボタン装飾ここまで--*/


/*----------------------------------------
    footer sp
-----------------------------------------*/

/*--問い合わせ--*/
.contents__about_wrap {
  background-image: url(../img/top_about_back_sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; 
}
.contents__about_inner {
  padding: 60px 4%;
}
.contents__about_wrap .ttl {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 15px;
}

/*--エントリーボタン装飾--*/
.enrty_btn {
  margin-bottom: 40px;
}

.enrty_btn a {
  font-family: 'Roboto', sans-serif;
  display: block;
  font-size: 14px;
  padding: 16px 0;
  width: 92%;
  border: 1px solid #000;
  margin: 0 auto;
  font-weight: 600;
  text-align: center;
  background: #000;
  position: relative;
  transition-property: all;
  transition: 0.3s linear;
  color: #fff;
}
.enrty_btn a:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 27px;
  margin-left: -10px;
  margin-top: -1px;
  height: 1px;
  background: #fff;
}
.enrty_btn a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 12px;
  margin-top: -1px;
  margin-left: -2px;
  height: 1px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}
.enrty_btn a:hover {
  background-color: #666666;
}
/*--エントリーボタン装飾ここまで--*/

/*--お問い合わせボタン装飾--*/
.contact_btn a {
  font-family: 'Roboto', sans-serif;
  display: block;
  font-size: 14px;
  padding: 16px 0;
  width: 92%;
  border: 3px solid #000;
  margin: 0 auto;
  font-weight: 600;
  text-align: center;
  background: #fff;
  position: relative;
  transition-property: all;
  transition: 0.3s linear;
}
.contact_btn a:before {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 27px;
  margin-left: -10px;
  margin-top: -1px;
  height: 1px;
  background: #000;
}
.contact_btn a:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 59%;
  width: 12px;
  margin-top: -1px;
  margin-left: -2px;
  height: 1px;
  background: #000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -ms-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
}
.contact_btn a:hover {
  color: #fff;
  background: #000;
}
.contact_btn a:hover:before{
  background: #fff;
}
.contact_btn a:hover:after {
  background: #fff;
}
/*--お問い合わせボタン装飾ここまで--*/


/* footer */
footer {
  background: #fff;
}

.footer {
  font-size: 16px;
  margin: 0;
}
.footer__btn_pagetop {
  display: none;
}
.footer__inner {
  margin: 40px auto 0;
}
.footer__right_inner {
  width: 90%;
  margin: 0 5%;
}
.footer__right img {
  width: 100%;
}
.footer__left{
  font-size: 14px;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}
.footer__left .logo{
  width: 40%;
  margin: 0 10% 20px;
}
.footer__left {
  font-size: 14px;
  margin-top: 40px;
}
.footer__navi a:hover {
  text-decoration: underline;
}
.footer__navi ul {
  list-style: none;
  margin:  0 0 0 60px;
  padding: 0;
}
.footer__navi li {
  margin-bottom: 20px;
}
.footer__left_inner {
}
.footer__left_inner .address {
  /*display: none;*/
  text-align: left;
  display: inline-block;
  line-height: 2;
  margin-bottom: 30px;
  font-size: 12px;
}
.footer__navi_left {
  font-weight: 600;
  vertical-align: top;
  display: inline-block;
  text-align: left;
  margin-right: 15px;

}
.footer__navi_right {
  font-weight: 600;
  vertical-align: top;
  display: inline-block;
  text-align: left;
  margin-left: 25px;
}
.footer__copyright {
  clear: both;
  text-align: center;
  padding: 40px 0;
  font-size: 10px;
}

/* ページトップボタン */
.footer__btn_pagetop {
  position: fixed;
  right: -20px;
  bottom: 10px;
  z-index: 99;
}
.footer__btn_pagetop a {
  background: #fff;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 14px 20px;
  vertical-align: middle;
  opacity: 0.6;
}
.footer__btn_pagetop a:before {
  font-family: "FontAwesome"; 
  font-weight: normal;
  content: "\f106";
  line-height: 25px;
  font-size: 25px;
  vertical-align: middle;
  margin-right: 20px;
} 
.footer__btn_pagetop a:hover {
  text-decoration: none !important;
}
.br-sp {
  display: none;
}

} /* SP end --------------------------- */




@media all and (min-width: 737px)  {
/* //    |- PC  */
  .elmSP {  display:none !important;  }
}
@media all and (max-width: 736px)  {
/* //    |- SP  */
  .elmPC{ display:none !important;  }
}



/*  ------------ 共通 --------------- */
.normaltext {
  font-size: 16px;
  line-height: 2;
}

@media only screen and (max-width: 736px) {
.normaltext {
  font-size: 15px;
  line-height: 2;
}
}




