@charset "UTF-8";
@import url("https://fonts.googleapis.com/earlyaccess/notosansjapanese.css");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
@import url("https://fonts.googleapis.com/css?family=Vollkorn:400,600,700,900");
/* font */
/* color */
/* mediaquery  */
/* レスポンシブサイト掲燕幣 */
/* PCのみ */
@media screen and (max-width: 959px) {
  .pc {
    display: none !important;
  }
}

/* タブレット?PC */
@media screen and (max-width: 639px) {
  .pctb {
    display: none !important;
  }
}

/* タブレット?SP */
@media screen and (min-width: 960px) {
  .tbsp {
    display: none !important;
  }
}

/* タブレットのみ */
@media screen and (min-width: 640px) and (max-width: 959px) {
  .tb {
    display: none !important;
  }
}

/* SPのみ */
@media screen and (min-width: 640px) {
  .sp {
    display: none !important;
  }
}

/* hover */
.header {
  z-index: 9999;
  width: 100%;
  height: 162px;
  background-color: #FFFFFF;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 960px) {
  #top .header {
    height: 160px;
  }
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  .header {
    position: fixed;
    top: 0px;
    left: 0;
    height: 90px;
  }
}

@media screen and (max-width: 639px) {
  .header {
    position: fixed;
    top: 0px;
    left: 0;
    height: 58px;
  }
}

.header.open > .wrapper-base {
  background-color: white;
}

.header > .wrapper-base {
  position: relative;
  height: 100px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  .header > .wrapper-base {
    height: 90px;
    z-index: 9980;
  }
}

@media screen and (max-width: 639px) {
  .header > .wrapper-base {
    height: 58px;
    padding-left: 0;
    padding-right: 0;
    z-index: 9980;
  }
}

.header-logo {
  position: absolute;
  top: 21px;
  left: 0px;
  width: 260px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  .header-logo {
    top: 20px;
    left: 12px;
  }
}

@media screen and (max-width: 639px) {
  .header-logo {
    top: 10px;
    left: 5px;
    width: 57vw;
    max-width: 200px;
  }
}

.header-logo a {
  display: block;
  height: 58px;
  /*@include media_sp{
			}*/
}

.header-logo__tit {
  width: 100%;
  text-indent: -9999px;
  background-image: url(/common/logo.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 260px auto;
  overflow: hidden;
/*
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
*/
}

@media screen and (max-width: 639px) {
  .header-logo__tit {
    background-size: 100% auto;
  }
}

.header__menu#menu {
  float: right;
  display: block;
  width: 90px;
  height: 90px;
  color: #FFFFFF;
  font-size: 100%;
  text-align: center;
  cursor: pointer;
  z-index: 9960;
  background-image: url(/common/icon_menu_off.png);
  background-position: center top 21px;
  background-repeat: no-repeat;
  background-size: 39px auto;
  background-color: #b2243c;
  padding-top: 55px;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 639px) {
  .header__menu#menu {
    width: 60px;
    height: 58px;
    font-size: 92%;
    background-position: center top 13px;
    background-size: 24px auto;
    padding-top: 38px;
  }
}

.open .header__menu#menu {
  background-image: url(/common/icon_menu_on.png);
}

.header__menu-sp {
  display: none;
  position: absolute;
  top: 0px;
  left: 0;
  bottom: 12px;
  width: 100%;
  height: 100vh;
  background-color: #b2243c;
  padding-top: 90px;
  margin-top: 0px;
  box-sizing: border-box;
}

@media screen and (max-width: 639px) {
  .header__menu-sp {
    padding-top: 58px;
  }
}

.header__menu-sp__inr {
  overflow-y: scroll;
  max-height: 100%;
  padding: 0px 0 50px 0;
  box-sizing: border-box;
}

.open .header__menu-sp {
  z-index: 9970;
  position: fixed;
}

.header__menu-sp__home {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.header__menu-sp__home a {
  display: block;
  color: #FFFFFF;
  font-size: 84%;
  text-align: center;
  text-decoration: none;
  background-image: url(/common/icon_home02.png);
  background-position: center top 15px;
  background-repeat: no-repeat;
  background-size: 18px auto;
  padding: 32px 20px 10px 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header__menu-sp__contact {
  padding: 10px 10px 20px 10px;
}

.header__menu-sp__contact a {
  display: block;
  color: #b2243c;
  text-decoration: none;
  text-align: center;
  background-color: white;
  line-height: 48px;
  font-weight: 600;
  font-size: 142%;
}

.header__menu-sp__search {
  background-color: #6E1C2A;
  padding: 15px 20px;
}

.header__menu-sp__search form {
  position: relative;
}

.header__menu-sp__search input[type="text"] {
  height: 30px;
  width: 100%;
  border: none;
  border-radius: 3px;
  padding: 8px 35px 8px 10px;
  box-sizing: border-box;
}

.header__menu-sp__search .btnSearch {
  position: absolute;
  top: 7px;
  right: 10px;
  padding: 0;
  margin: 0;
}

.header__menu-sp__menu {
  overflow: hidden;
  width: 100%;
  font-size: 117%;
}

.header__menu-sp__menu li {
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-sizing: border-box;
}

.header__menu-sp__menu li.sub__menu {
  position: relative;
  padding-left: 30px;
}

.header__menu-sp__menu li.sub__menu::before, .header__menu-sp__menu li.sub__menu::after {
  position: absolute;
  content: '';
  left: 20px;
  background-color: rgba(255, 255, 255, 0.6);
}

.header__menu-sp__menu li.sub__menu::before {
  top: 20px;
  width: 4px;
  height: 6px;
}

.header__menu-sp__menu li.sub__menu::after {
  top: 26px;
  width: 10px;
  height: 4px;
}

.header__menu-sp__menu a {
  display: block;
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  padding: 15px 32px 15px 20px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header__menu-sp__menu a::before, .header__menu-sp__menu a::after {
  position: absolute;
  content: '';
  top: 20px;
  left: calc(100% - 30px);
  background: transparent;
  margin: auto;
}

.header__menu-sp__menu a::before {
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #FFFFFF;
}

.header__menu-sp__menu a::after {
  border-top: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 4px solid #b2243c;
}

.header__textsize {
  float: right;
  width: 168px;
  height: 34px;
  background-image: url(/common/font_ttl.png);
  background-position: left top 14px;
  background-repeat: no-repeat;
  padding: 8px 20px 0 76px;
  box-sizing: border-box;
}

.header__textsize ul li {
  float: left;
  display: inline;
}

.header__textsize ul li a {
  display: block;
  width: 36px;
  height: 26px;
  text-indent: -9999px;
  line-height: 0;
  background-position: left top;
  background-repeat: no-repeat;
}

.header__textsize ul li.medium a {
  background-image: url(/common/font_medium_off.gif);
}

.header__textsize ul li.medium a.textresizer-active {
  background-image: url(/common/font_medium_on.gif);
}

.header__textsize ul li.large a {
  background-image: url(/common/font_large_off.gif);
}

.header__textsize ul li.large a.textresizer-active {
  background-image: url(/common/font_large_on.gif);
}

.header__search {
  float: right;
  display: block;
  background-color: #E5697E;
}

.header__search__btn {
  float: right;
  background-image: url(/common/icon_search.png);
  background-position: left 9px top 11px;
  background-repeat: no-repeat;
  background-size: 17px auto;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header__search__btn a {
  display: block;
  width: 74px;
  height: 42px;
  color: #FFFFFF;
  font-size: 117%;
  text-decoration: none;
  text-align: center;
  padding: 9px 0 0 15px;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header__search__btn a:hover {
  text-decoration: underline;
}

.header__search__btn.close {
  background-image: url(/common/icon_search_close.png);
}

.header__search__box {
  display: none;
  position: relative;
  float: right;
  padding: 7px 0px 0px 12px;
}

.header__search__box input[type="text"] {
  height: 18px;
  width: 120px;
  border: none;
  padding: 5px 30px 5px 7px;
}

.header__search__box input[type="submit"] {
  position: absolute;
  top: 8px;
  left: 139px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0px;
  background-image: url(/common/icon_search02.png);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 17px auto;
  background-color: #FFFFFF;
  text-indent: -9999px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

.header-cv {
  float: right;
  height: 42px;
  background-color: #707070;
  padding: 8px 18px 0;
  box-sizing: border-box;
}

@media all and (-ms-high-contrast: none) {
  .header-cv {
    padding: 10px 18px 0;
  }
}

.header-cv__item {
  float: left;
  margin-right: 20px;
}

.header-cv__item:last-child {
  margin-right: 0;
}

.header-cv__item a {
  display: inline-block;
  color: #FFFFFF;
  font-size: 117%;
  background-position: left center;
  background-repeat: no-repeat;
}

.header-cv__english a {
  background-image: url(/common/icon_english.png);
  background-size: 19px auto;
  padding-left: 23px;
}

.header-cv__access a {
  background-image: url(/common/icon_access.png);
  background-size: 15px auto;
  padding-left: 19px;
}

.header-cv__request a {
  background-image: url(/common/icon_pamphlet.png);
  background-size: 12px auto;
  padding-left: 16px;
}

.header__target {
  position: absolute;
  top: 61px;
  right: 0;
}

.header__target ul li {
  float: left;
  margin-right: 20px;
}

.header__target ul li:last-child {
  margin-right: 0;
}

.header__target ul li a {
  position: relative;
  display: inline-block;
  color: #000000;
  font-size: 117%;
  padding-left: 12px;
}

.header__target ul li a::after {
  position: absolute;
  content: '';
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 5px;
  height: 5px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header__english {
  float: right;
  display: block;
  width: 90px;
  height: 90px;
  font-size: 100%;
  text-align: center;
  cursor: pointer;
  z-index: 9960;
  background-image: url(/common/icon_english02.png);
  background-repeat: no-repeat;
  border-left: rgba(178, 36, 60, 0.3) solid 1px;
  padding-top: 56px;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 640px) and (max-width: 959px) {
  .header__english {
    background-position: center top 20px;
    background-size: 39px auto;
  }
}

@media screen and (max-width: 639px) {
  .header__english {
    width: 60px;
    height: 58px;
    font-size: 92%;
    background-position: center top 11px;
    background-size: 28px auto;
    padding-top: 38px;
  }
}

.header__english a {
  color: #b2243c;
  text-decoration: none;
}

.header__parts {
  position: absolute;
  top: 0px;
  right: 0px;
}

.header .global {
  width: 100%;
  height: 60px;
  background-color: #E5E5E5;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (min-width: 960px) {
  .header .global {
    border-bottom: 3px solid #b2243c;
  }
  #top .header .global {
    border-bottom: 0;
  }
}

.header .global-nav {
  width: 100%;
}

.header .global-nav__menu {
  display: table;
  float: left;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header .global-nav__menu:first-child {
  width: 6.7%;
  text-indent: -9999px;
  overflow: hidden;
}

.header .global-nav__menu:first-child a {
  background-image: url(/common/icon_home.png);
  background-position: center top 50%;
  background-repeat: no-repeat;
  background-size: 18px auto;
}

.header .global-nav__menu:first-child a:hover {
  background-image: url(/common/icon_home02.png);
}

.header .global-nav__menu:first-child.active a {
  background-image: url(/common/icon_home02.png);
}

.header .global-nav__menu:nth-child(2) {
  width: 10.8%;
}

.header .global-nav__menu:nth-child(3) {
  width: 8.3%;
}

.header .global-nav__menu:nth-child(4) {
  width: 10%;
}

.header .global-nav__menu:nth-child(5) {
  width: 10.8%;
}

.header .global-nav__menu:nth-child(6) {
  width: 15.8%;
}

.header .global-nav__menu:nth-child(7) {
  width: 10.8%;
}

.header .global-nav__menu:nth-child(8) {
  width: 15.8%;
}

.header .global-nav__menu:nth-child(9) {
  width: 10.9%;
  border-right: none;
}

.header .global-nav__menu:nth-child(9) a::after {
  display: none;
}

.header .global-nav__menu a {
  position: relative;
  display: table-cell;
  color: #000000;
  height: 60px;
  font-size: 134%;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header .global-nav__menu a::after {
  position: absolute;
  content: '';
  top: 15px;
  right: 0;
  width: 1px;
  height: 30px;
  border-right: #000000 dotted 1px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.header .global-nav__menu a:hover {
  color: #FFFFFF;
  background-color: #b2243c;
}

.header .global li.active a {
  color: #FFFFFF;
  background-color: #b2243c;
}

.f1 {
  font-size: 77%;
}

.f2 {
  font-size: 87%;
}

/*# sourceMappingURL=header.css.map */
