@charset "UTF-8";

.l-inner {
  width: 1110px;
  margin: 0 auto;
}

@media only screen and (max-width: 1110px) {
  .l-inner {
    width: 90%;
  }
}

/* ///////////// パンくず ///////////// */
.c-breadcrumb {
  border-top: solid 1px #ddd;
}
.c-breadcrumb-list {
  width: 1040px;
  margin: 0 auto;
  padding: 3px 0 6px;
  list-style: none;
}
.c-breadcrumb-list > li {
  margin-left: 0;
  display: inline;
}
.c-breadcrumb-list > li + li {
  margin-left: 8px;
}
.c-breadcrumb-list > li:nth-child(n + 2):before {
  content: ">";
  margin-right: 8px;
  font-size: 10px;
  color: #aaa;
}
.c-breadcrumb-list > li > span,
.c-breadcrumb-list > li > a {
  font-size: 10px;
  font-weight: normal;
  display: inline;
  color: #777;
}

@media screen and (max-width: 1110px) {
  .c-breadcrumb-list {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    display: none;
  }
}

/* ///////////// title ///////////// */
c-title-main {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 233px;
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  background-image: url('../img/title_main_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-width: 479px) {
  #c-title-main {
    font-size: 27px;
    height: 147px;
  }
}

/* 1カラムヘッダー */

.column-header .c-breadcrumb-list {
  width: initial;
  padding: 0;
  font-size: 0;
}

.column-header .c-breadcrumb {
  border-top: none;
}

.column-header .c-breadcrumb-list > li > a {
  border-bottom: 1px solid #777;
  padding-bottom: 2px;
  letter-spacing: -1px;
}

.column-header .c-breadcrumb-list > li + li {
  margin-left: 16px;
}

.column-header .c-breadcrumb-list > li:nth-child(n + 2):before {
  margin-right: 16px;
}

.column-header .c-breadcrumb-list > li:last-child {
  margin-right: 10px;
}

.column-header .c-breadcrumb-list > li:last-child span {
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .column-header .c-breadcrumb {
    display: none;
  }
}