@charset "utf-8";
/* body
------------------------------------------------ */
body {
}



/* screens smaller than 767px
--------------------------------------------------- */
@media only screen and (max-width:767px) {
body {
  padding-top: 50px;
}

body.toppage {
  padding-top: 0;
}

  }
/* /screens smaller than 767px */




/* header
------------------------------------------------ */
/* header */
.header_block {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}

.h_content {
  position: relative;
}

.header {
  height: 100px;
}


.h_logo {
  position: absolute;
  top: 29px;
  left: 33px;
}

.h_logo a img {
  vertical-align: top;
  max-width: 100%;
}

.h_navi_block {
  position: absolute;
  top: 0;
  right: 33px;
}

.h_navi {
  display: table;
  height: 100px;
}

.h_navi li {
  display: table-cell;
  width: 110px;
  height: 100px;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 300;
}

.h_navi li.wide {
  width: 130px;
}

a.h_navi_link {
  color: #000000;
  display: block;
  height: 100%;
  margin: 0 5px;
  padding: 40px 0 0;
  box-sizing: border-box;
  transition : all 0.5s;
  position: relative;
}

.h_navi_inlink {
  display: block;
}

.h_navi_link:after {
  opacity: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #1F1F1F;
  position: absolute;
  left: 0;
  bottom: 48px;
  transition : all 0.5s;
}

.h_navi_txt_jp {
  display: none;
  font-size: 14px;
}

.h_navi_txt_en {
}

a.h_navi_link:hover {
  text-decoration: none;
}

a.h_navi_link:hover:after {
  opacity: 1;
  bottom: 34px;
}

a.h_navi_link:hover .h_navi_txt_en {
  display: none;
}

a.h_navi_link:hover .h_navi_txt_jp {
  display: inline;
}


/* screens smaller than 767px
--------------------------------------------------- */
@media only screen and (max-width:767px) {
.header {
  height: 69px;
}

.h_logo {
  top: 16px;
  left: 16px;
}
.h_logo img {
  height: 37px;
}

.h_content {
  height: 69px;
}

.h_navi_block {
  display: none;
}

  }
/* /screens smaller than 767px */


/* content
------------------------------------------------ */
.content {
  width: 1262px;
  margin: 0 auto;
  text-align: left;
}

/* screens smaller than 1272px
--------------------------------------------------- */
@media only screen and (max-width:1272px) {
.content {
  width: 100%;
}

  }
/* /screens smaller than 1262px */


/* footer
------------------------------------------------ */
.footer {
  background-color: #141414;
  color: #fff;
}

.f_bg {
  position: relative;
}

.f_bg:before {
  opacity: 0;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  background-position: center bottom;
  background: url(../img/common/f_bg.jpg) no-repeat 0 65%;
  background-size: 100% auto;
}
@media screen and (min-width: 769px) {
  .f_bg:hover:before{
    opacity: 1;
  }
}/* min-width: 769px */


.f_content {
  padding: 45px 0 45px 0;
  position: relative;
}

.f_block {
  margin: 0 0 0 33px;
}

.f_contact_block {
  width: 18.4%;
}

.f_contact_ttl {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 25px;
}

.f_contact_txt{
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
}

.f_tel_block {
  position: absolute;
  bottom: 40px;
  right: 35.8%;
}

.f_tel_box {
  background: url(../img/common/icon_tel.svg) no-repeat 0 center;
  padding: 0 0 0 66px;
}

.f_tel_link {
  display: none;
}

.f_tel_txt {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 5px;
}
.f_tel_txt .large_txt {
  font-size: 26px;
}
.f_tel_time {
  font-size: 12px;
  font-weight: 300;
}

.f_mail_block {
  position: absolute;
  bottom: 30px;
  right: 2.6%;
  width: 30.1%;
}

.f_mail_box {
  border: 1px solid #fff;
  position: relative;
  transition: 0.5s;
  overflow: hidden;
  box-sizing: border-box;
}

.f_mail_box:after {
  content: '';
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 15px;
  transition: 0.5s;
  background: url(../img/common/icon_arrow_w.png) no-repeat 0 center;
  z-index: 2;
}


.f_mail_box:before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  content: '';
  background: #fff;
  transition: .5s;
  width: 0;
  height: 100%;
}

.f_mail_inbox {
  position: relative;
  background: url(../img/common/icon_mail.png) no-repeat 16.5% center;
  padding: 18px 18.4% 15px 33.6%;
  transition: 0.5s;
  z-index: 2;
}

.f_mail_ttl {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 5px;
  transition: 0.5s;
}
.f_mail_time {
  font-size: 12px;
  font-weight: 300;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .f_bg:hover .f_mail_box:after {
    background: url(../img/common/icon_arrow_b2.png) no-repeat 0 center;
  }

  .f_bg:hover .f_mail_box:before {
    width: 100%;
  }

  .f_bg:hover .f_mail_inbox {
    background-image: url(../img/common/icon_mail_b.png);
  }

  .f_bg:hover .f_mail_ttl, 
  .f_bg:hover .f_mail_time {
    color: #141414;
  }
}/* min-width: 769px */


.f_mail_link {
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.f_btm_block {
  border-top: 1px solid #fff;
}

.f_btm_content {
  position: relative;
}

.f_btm_tbl {
  display: table;
}

.f_btm_contact {
  display: table-cell;
  width: 202px;
  border-right: 1px solid #323232;
  vertical-align: middle;
  box-sizing: border-box;
}

.f_btm_contact_link {
  display: block;
  box-sizing: border-box;
  padding: 24px 0 23px 0px;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  text-align: center;
}

.f_btm_contact_link:before {
  position: absolute;
  top: 0;
  left: -10px;
  z-index: 1;
  content: '';
  background: #fff;
  transition: .5s;
  width: 0;
  height: 100%;
}

.f_btm_contact_link:hover:before {
  width: calc(100% + 10px);
}
.f_btm_contact_img, 
.f_btm_contact_img_hover {
  position: relative;
  z-index: 2;
}

.f_btm_contact_img_hover {
  display: none;
}

.f_btm_contact_link:hover .f_btm_contact_img {
  display: none;
}

.f_btm_contact_link:hover .f_btm_contact_img_hover {
  display: inline;
}


.f_btm_other {
  display: table-cell;
  vertical-align: middle;
  padding: 24px 0 23px 55px;
}

.f_btm_sp_other {
  display: none;
}

.f_btm_other_link {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  padding-left: 10px;
}

.f_btm_other_link a {
  color: #fff;
  position: relative;
  text-decoration: none;
}

.f_btm_other_link a:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 45%;
  width: .3em;
  height: .3em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-transform: rotate(45deg) translate(0, -50%);
  transform: rotate(45deg) translate(0, -50%);
  transition: 0.5s;
}

.f_btm_other_link a:hover:before {
  left: -10px;
}

.f_cpy_block {
  font-size: 12px;
  font-weight: 300;
  text-align: right;
  position: absolute;
  top: 23px;
  right: 33px;
}

.light_f_cpy_block {
  font-size: 12px;
  font-weight: 300;
  text-align: right;
  padding: 24px 33px;
}

/* screens smaller than 767px
--------------------------------------------------- */
@media only screen and (max-width:767px) {
.f_content {
  padding: 50px 0 35px 0;
}

.f_block {
  position: relative;
  margin: 0 39px;
}

.f_contact_block {
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
}

.f_contact_ttl {
  font-size: 26px;
  margin-bottom: 15px;
}

.f_contact_txt{
  font-size: 14px;
  line-height: 1.6;
}

.f_tel_block {
  position: static;
  margin-bottom: 13px;
}

.f_tel_box {
  border: 1px solid #fff;
  padding: 0 0 0 0;
  position: relative;
  background-image: none;
}

.f_tel_box:after {
  content: '';
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 15px;
  transition: 0.5s;
  background: url(../img/common/icon_arrow_w.png) no-repeat 0 center;
  z-index: 2;
}

.f_tel_inbox {
  background: url(../img/common/icon_tel.svg) no-repeat 12.3% center;
  background-size: 25px auto;
  padding: 14px 21.1% 12px 26%;
}

.f_tel_link {
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}

f_tel_txt {
  display: none;
}
.f_tel_time {
  font-size: 10px;
}

.f_mail_block {
  position: static;
  width: 100%;
}

.f_mail_box {
  border: 1px solid #fff;
  position: relative;
}

.f_mail_inbox {
  background: url(../img/common/icon_mail_w.svg) no-repeat 12.3% center;
  background-size: 25px auto;
  padding: 14px 21.1% 12px 26%;
}

.f_mail_ttl {
  font-size: 14px;
  margin-bottom: -2px;
}
.f_mail_time {
  font-size: 10px;
}

.f_btm_tbl {
  display: table;
}

.f_btm_contact {
  display: table-cell;
  width: 80px;
  vertical-align: middle;
  text-align: center;
  box-sizing: border-box;
}

.f_btm_contact_link {
  box-sizing: border-box;
  padding: 24px 0 23px 0px;
}

.f_btm_other {
  display: block;
  position: absolute;
  top: -10px;
  right: 20px;
}

.f_btm_other_link {
  color: #fff;
  font-size: 10px;
}

.f_cpy_block {
  font-size: 10px;
  text-align: right;
  position: absolute;
  top: 33px;
  right: 20px;
}

.light_f_cpy_block {
  font-size: 10px;
  text-align: right;
  padding: 10px 20px;
}

  }
/* /screens smaller than 767px */


/* SP MENU
------------------------------------------------ */
.drawer--top .drawer-hamburger {
  z-index: 105;
  width: 26px;
  padding: 0;
  box-sizing: border-box;
}

.drawer--top .drawer-hamburger, 
.drawer--top.drawer-open .drawer-hamburger {
  top: 20px;
  right: 20px;
}

.drawer--top.drawer-open .drawer-hamburger {
/*
  width: 36px;
*/
}

.drawer-hamburger-icon, 
.drawer-hamburger-icon:after, 
.drawer-hamburger-icon:before {
  background-color: #8A8A8A;
}

.drawer-hamburger-icon:before {
  top: -10px;
}
.drawer-hamburger-icon:after {
  top: 10px;
}

.drawer-overlay {
/*
  background-color: rgba(0,0,0,.85);
*/
  background-color: #fff;
  z-index: 101;
}

.drawer-open .drawer-overlay {

}

.drawer--top .drawer-nav {
box-sizing: border-box;
height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  z-index: 103;
  background-color: transparent;
  box-sizing: border-box;
  text-align: left;
}

.drawer-menu {
  width: 100%;
  box-sizing: border-box;
  padding: 0 40px;
}

a.sp_menu_link {
  display: block;
  text-align: center;
  padding: 14px 10px;
  text-decoration: none;
  color: #8A8A8A;
}

.spmenu_tel_block {
  padding-top: 23px;
  margin-bottom: 13px;
}

.spmenu_tel_box {
  border: 1px solid #141414;
  padding: 0 0 0 0;
  position: relative;
}

.spmenu_tel_box:after {
  content: '';
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 15px;
  transition: 0.5s;
  background: url(../img/common/icon_arrow_b2.png) no-repeat 0 center;
  z-index: 2;
}

.spmenu_tel_inbox {
  background: url(../img/common/icon_tel_b.svg) no-repeat 12.3% center;
  background-size: 25px auto;
  padding: 14px 17.1% 12px 26%;
}

.spmenu_tel_txt {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0px;
}

.spmenu_tel_time {
  font-size: 10px;
  font-weight: 300;
}

.spmenu_tel_link {
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}

.spmenu_mail_box {
  border: 1px solid #141414;
  padding: 0 0 0 0;
  position: relative;
}

.spmenu_mail_box:after {
  content: '';
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 15px;
  transition: 0.5s;
  background: url(../img/common/icon_arrow_b2.png) no-repeat 0 center;
  z-index: 2;
}

.spmenu_mail_inbox {
  background: url(../img/common/icon_mail_b.png) no-repeat 12.3% center;
  background-size: 25px auto;
  padding: 14px 17.1% 12px 26%;
}

.spmenu_mail_txt {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 0px;
}

.spmenu_mail_time {
  font-size: 10px;
  font-weight: 300;
}

.spmenu_mail_link {
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}


/* PAGE NAVI
------------------------------------------------ */
.page_navi_box {
  position: relative;
}

.page_navi {
  position: absolute;
  top: -100px;
}

/* screens smaller than 767px
--------------------------------------------------- */
@media only screen and (max-width:767px) {
.page_navi {
  position: absolute;
  top: -65px;
}

  }
/* /screens smaller than 767px */
