@charset "UTF-8";
/*clear fix*/
@keyframes showAnime {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

/* ------------------------------------------------
common
---------------------------------------------- */
body {
  font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  -webkit-text-size-adjust: 100%;
  color: #333;
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 500;
  word-break: break-word;
}

a {
  color: #004699;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

/* header
-------------------------*/
.header {
  height: 90px;
  box-sizing: border-box;
  padding: 25px 0 0;
  background: #221816;
}

@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0 0;
    height: 45px;
    z-index: 9999;
  }
}

.header .container::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '';
}

.header__logo {
  display: block;
  float: left;
  width: 112px;
  margin-top: -7px;
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 48px;
    margin-top: 0;
  }
}

.header__logo img {
  display: block;
  width: 100%;
}

.header__menu-btn {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__menu-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    display: block;
    width: 20px;
    height: 18px;
  }
  .header__menu-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 6px;
    width: 100%;
    height: 2px;
    background: #fff;
    content: "";
    transition: all 300ms;
  }
  .header__menu-btn::after {
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 6px;
    width: 100%;
    height: 2px;
    background: #fff;
    content: "";
    transition: all 300ms;
  }
}

.header__menu-btn-inner {
  display: block;
  position: relative;
}

.header__menu-btn-inner::before {
  position: absolute;
  top: 8px;
  left: 0;
  border-radius: 6px;
  width: 100%;
  height: 2px;
  background: #fff;
  content: "";
}

.header__menu-btn.open::before {
  top: 8px;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}

.header__menu-btn.open::after {
  bottom: 8px;
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.header__menu-btn.open .header__menu-btn-inner::before {
  display: none;
}

/* gnav
-------------------------*/
.gnav {
  margin-left: 300px;
}

@media screen and (max-width: 768px) {
  .gnav {
    display: none;
    position: fixed;
    top: 45px;
    left: 0;
    margin-left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
  }
}

@media screen and (max-width: 768px) {
  .gnav__inner {
    overflow: auto;
    height: 100%;
  }
}

@media screen and (max-width: 768px) {
  .gnav__list {
    margin-bottom: 20px;
  }
}

.gnav__item {
  position: relative;
  float: left;
  text-align: center;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .gnav__item {
    float: none;
    text-align: left;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

.gnav__item:first-child {
  border-left: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .gnav__item:first-child {
    border-left: none;
  }
}

@media screen and (max-width: 768px) {
  .gnav__item--parent .gnav__link::before {
    right: 14px;
    -ms-transform: rotate(0);
        transform: rotate(0);
    width: 12px;
    height: 1px;
    border-right: none;
  }
  .gnav__item--parent .gnav__link::after {
    position: absolute;
    top: 20px;
    right: 19px;
    width: 1px;
    height: 12px;
    border-right: 2px solid #999;
    content: "";
  }
}

.gnav__item--parent.open .gnav__link {
  color: #db1a1e;
}

@media screen and (max-width: 768px) {
  .gnav__item--parent.open .gnav__link::after {
    display: none;
  }
}

.gnav__item--parent.open .subnav__list {
  display: block;
  animation: showAnime 300ms;
}

.gnav__item.current .gnav__link {
  background: transparent;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$start-color', endColorstr='$end-color',GradientType=0 );
  font-weight: bold;
  color: #db1a1e;
}

@media screen and (max-width: 768px) {
  .gnav__item.current .gnav__link {
    background: transparent;
    color: #333;
  }
}

.gnav__link {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 10px 30px 30px;
  transition: all 300ms;
  cursor: pointer;
  font-weight: normal;
  outline: none;
}

.gnav__item.current .gnav__link {
	background: transparent;
	background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$start-color', endColorstr='$end-color',GradientType=0 );
	font-weight: bold;
	color: #db1a1e;
}

button.gnav__link {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	text-align: left;
	background: none;
	border: none;
	font-size: 14px;
	line-height: 1.8;
	box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .gnav__link {
    color: #333;
    padding: 12px 30px 12px 15px;
    font-weight: bold;
  }
  .gnav__link::before {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    -ms-transform: rotate(45deg) translateY(-50%);
        transform: rotate(45deg) translateY(-50%);
    content: "";
  }
}

.gnav__link:hover {
  background: transparent;
  background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.3) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$start-color', endColorstr='$end-color',GradientType=0 );
  color: #db1a1e;
}

.gnav__link--blank {
  padding: 10px 30px 30px 47px;
}

.gnav__link--blank::after {
  position: absolute;
  top: 17px;
  left: 30px;
  width: 13px;
  height: 11px;
  background-image: url(/img/common/ico_link_wt_1.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  transition: all 300ms;
}

@media screen and (max-width: 768px) {
  .gnav__link--blank::after {
    display: none;
  }
}

.gnav__link--blank:hover::after {
  background-image: url(/img/common/ico_link_br_1.png);
}

@media screen and (max-width: 768px) {
  .gnav__link--blank {
    background: none;
    padding: 12px 30px 12px 15px;
  }
  .gnav__link--blank::before {
    border: none;
    right: 15px;
    width: 13px;
    height: 11px;
    background-repeat: no-repeat;
    background-position: left top;
    background-image: url(/img/common/ico_link_gr_1.png);
    background-size: 13px auto;
    -ms-transform: rotate(0) translateY(-50%);
        transform: rotate(0) translateY(-50%);
  }
}

.gnav__btns {
  position: relative;
  margin-left: 25px;
  float: left;
}

@media screen and (max-width: 768px) {
  .gnav__btns {
    float: none;
    margin-left: 0;
    padding: 0 15px;
  }
}

.gnav__btn {
  display: block;
  width: 130px;
  float: left;
  box-sizing: border-box;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .gnav__btn {
    width: 100%;
    float: none;
  }
}

.gnav__btn--contact {
  border: 1px solid #db1a1e;
  border-radius: 4px;
  background-color: #db1a1e;
  text-align: center;
  padding: 4px 0 4px 20px;
  background-image: url(/img/common/ico_link_wt_1.png);
  background-repeat: no-repeat;
  background-position: 11px center;
  background-size: 13px auto;
}

@media screen and (max-width: 768px) {
  .gnav__btn--contact {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    padding: 10px 0 10px 28px;
    background-color: #db1a1e;
    border: 1px solid #876a27;
    text-align: left;
  }
}

.subnav__list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 300px;
  text-align: left;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.02);
}

@media screen and (max-width: 768px) {
  .subnav__list {
    position: relative;
    top: 0;
    width: 100%;
    border-top: 1px solid #eee;
  }
}

.subnav__list::before {
  position: absolute;
  top: -10px;
  left: 53px;
  border-bottom: 10px solid #fff;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: "";
}

@media screen and (max-width: 768px) {
  .subnav__list::before {
    display: none;
  }
}

.subnav__item {
  border-top: 1px solid #eee;
}

.subnav__item:first-child {
  border-top: none;
}

.subnav__link {
  position: relative;
  display: block;
  padding: 13px 10px 13px 40px;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .subnav__link {
    padding: 12px 30px 12px 30px;
    background: #f6f6f6;
  }
}

.subnav__link::before {
  position: absolute;
  top: 20px;
  left: 20px;
  border-left: 8px solid #999;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  content: "";
}

@media screen and (max-width: 768px) {
  .subnav__link::before {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .subnav__link::after {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #999;
    border-right: 2px solid #999;
    -ms-transform: rotate(45deg) translateY(-50%);
        transform: rotate(45deg) translateY(-50%);
    content: "";
  }
}

.subnav__link--pdf::before {
  border: none;
  width: 13px;
  top: 50%;
  margin-top: -8px;
  height: 17px;
  background-image: url(/img/common/ico_pdf_1.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 13px auto;
}

@media screen and (max-width: 768px) {
  .subnav__link--pdf::before {
    display: block;
    left: inherit;
    right: 15px;
  }
}

@media screen and (max-width: 768px) {
  .subnav__link--pdf::after {
    display: none;
  }
}

/* breadcrumb
-------------------------*/
.breadcrumb {
  padding: 9px 0;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb__item {
  display: inline-block;
}

.breadcrumb__item::after {
  content: ">";
}

.breadcrumb__item:first-child a {
  padding: 0 10px 0 0;
}

.breadcrumb__item a {
  padding: 0 10px 0 5px;
  text-decoration: none;
}

.breadcrumb__item a:hover {
  text-decoration: underline;
}

.breadcrumb__item:last-child {
  padding-left: 5px;
}

.breadcrumb__item:last-child::after {
  display: none;
}

.contents-body {
  background: #eee9e5;
}

/* footer
-------------------------*/
.footer {
  position: relative;
  padding-top: 30px;
  border-top: 10px solid #221816;
  background-color: #eee9e5;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-top: 15px;
    border-top: 5px solid #221816;
  }
}

.footer__pagetop {
  position: absolute;
  top: -70px;
  right: 0;
  width: 130px;
  height: 40px;
  border-radius: 6px;
  background: #221816;
  color: #fff;
  box-sizing: border-box;
  padding-top: 7px;
  padding-left: 35px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footer__pagetop {
    top: -50px;
    width: 100px;
    right: 15px;
    font-size: 12px;
    padding-top: 5px;
    padding-left: 24px;
    height: 35px;
  }
}

.footer__pagetop::before {
  position: absolute;
  top: 16px;
  left: 18px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  width: 8px;
  height: 8px;
  content: "";
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .footer__pagetop::before {
    top: 14px;
    left: 10px;
    width: 6px;
    height: 6px;
  }
}

.footer .container {
  position: relative;
}

.footer__bnrs {
  margin-left: -20px;
  margin-bottom: 30px;
}

.footer__bnrs::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '';
}

@media screen and (max-width: 768px) {
  .footer__bnrs {
    margin-bottom: 5px;
    margin-left: 0;
    padding: 0 6px;
  }
}

.footer__bnr {
  float: left;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .footer__bnr {
    position: relative;
    width: 50%;
    margin-left: 0;
    margin-bottom: 10px;
  }
  .footer__bnr:nth-child(odd) {
    left: -6px;
    clear: both;
  }
  .footer__bnr:nth-child(even) {
    left: 6px;
  }
}

.footer__bnr img {
  display: block;
  width: 100%;
}

.footer__txt {
  padding: 30px 0;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .footer__txt {
    padding: 0 0 15px;
  }
}

.footer__txt .container::after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: '';
}

.footer__logo {
  position: absolute;
  top: 0;
  right: 0;
  width: 75px;
}

@media screen and (max-width: 768px) {
  .footer__logo {
    position: relative;
    width: 38px;
    margin: 0 auto;
  }
}

.footer__logo img {
  display: block;
  width: 100%;
}

.footer__link {
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .footer__link {
    margin: 0 -15px;
  }
}

.footer__link li {
  display: inline-block;
  border-left: 1px solid #333;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .footer__link li {
    display: block;
    border-left: none;
    border-bottom: 1px solid #eee;
  }
}

.footer__link li:first-child {
  border-left: none;
}

.footer__link li:first-child a {
  padding: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
  .footer__link li:first-child a {
    padding: 17px 15px;
  }
}

.footer__link a {
  padding: 0 10px;
  color: #333;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .footer__link a {
    display: block;
    padding: 17px 15px;
  }
}

.footer__link a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer__link a:hover {
    text-decoration: none;
  }
}

.footer__copyright {
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-bottom: 10px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track::before, .slick-track::after {
  content: "";
  display: table;
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}
