/*------------------------------------------------------------
manufactur_chiba
------------------------------------------------------------*/
html.overflow::-webkit-scrollbar {
  width: auto;
}
html.overflow::-webkit-scrollbar-track {
  background: #f1f1f1;
}
html.overflow::-webkit-scrollbar-thumb {
  display: none;
}

/*
------------------------------------------------------------*/
body {
  background: #fff;
  overflow-x: hidden;
}

/*animation
------------------------------------------------------------*/
.animatedright {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-name: faderight;
          animation-name: faderight;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

@-webkit-keyframes faderight {
  from {
    width: 100%;
    background: #fff;
  }
  to {
    width: 0;
    background: #fff;
  }
}

@keyframes faderight {
  from {
    width: 100%;
    background: #fff;
  }
  to {
    width: 0;
    background: #fff;
  }
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/*
------------------------------------------------------------*/
#accordion_menu {
  width: 100%;
  height: auto;
  line-height: 32px;
  background-color: #141414;
}

.c-navSP {
  position: fixed;
  top: 72px;
  z-index: 1;
}
.c-navSP__header {
  position: relative;
  letter-spacing: 1px;
  padding: 10px 0 0 16px;
  font-size: 1.4rem;
  color: #FFF;
  border-bottom: 1px solid #595758;
}
.c-navSP__header--txt01 {
  font-size: 0.7rem;
  line-height: 1;
}
.c-navSP__header--txt02 {
  font-size: 1.3rem;
}
.c-navSP__header:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  right: 15px;
  top: 40%;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  -webkit-transform: translate(-50%) rotate(45deg);
          transform: translate(-50%) rotate(45deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-navSP__header.is-active:after {
  -webkit-transform: translate(-50%) rotate(-135deg);
          transform: translate(-50%) rotate(-135deg);
}
.c-navSP__categoryitems {
  width: 92%;
  margin: 0 auto;
  font-size: 1.2rem;
  padding: 7px 0;
}
.c-navSP__categoryitems a {
  color: #fff;
  text-decoration: none;
}
.c-navSP__categoryitems .category_02 {
  color: #fff;
  border-bottom: 1px solid #595758;
  background-color: #141414;
  margin: 0 auto;
  padding: 3px 0;
  position: relative;
}
.c-navSP__categoryitems .category_02:before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  right: 5px;
  top: 10px;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-navSP__categoryitems .last-item {
  border-bottom: none;
}
.c-navSP__categoryitems .category_03 {
  padding: 3px 20px 3px 13%;
  color: #fff;
  border-bottom: 1px solid #595758;
  background-color: #141414;
  position: relative;
}
.c-navSP__categoryitems .category_03:after {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 8%;
  top: 15px;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*
------------------------------------------------------------*/
.c-load {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: #fff;
}
.c-load__icon {
  width: 42px;
  height: 42px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.c-load__icon:before, .c-load__icon:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border-width: 6px;
  border-style: solid;
  border-color: transparent;
  border-bottom-color: #22252c;
}
.c-load__icon:before {
  border-left-color: #22252c;
  -webkit-animation: spinner 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
          animation: spinner 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.c-load__icon:after {
  border-right-color: #22252c;
  -webkit-animation: spinner 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.05s infinite;
          animation: spinner 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0.05s infinite;
}

.is-scroll {
  -webkit-transition: -webkit-transform 2.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: -webkit-transform 2.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 2.5s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: transform 2.5s cubic-bezier(0.39, 0.575, 0.565, 1), -webkit-transform 2.5s cubic-bezier(0.39, 0.575, 0.565, 1);
}
.is-scroll.scroll-top {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .is-scroll {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/*
------------------------------------------------------------*/
.p-manufactur_chiba {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba {
    padding-top: 122px;
  }
}
.p-manufactur_chiba__body {
  overflow-x: inherit;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba__body {
    overflow-x: hidden;
  }
}
.p-manufactur_chiba .l-container {
  max-width: 980px;
  width: 100%;
}
.p-manufactur_chiba .c-mainvisual {
  background: url("../image/story/manufactur_chiba/118.jpg") no-repeat center;
  background-size: cover;
  height: 745px;
  padding: 150px 0;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-mainvisual {
    height: auto;
    padding: 0;
    margin-top: 0px;
    background: none;
    position: relative;
  }
}
.p-manufactur_chiba .c-mainvisual__content {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  left: -9px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-mainvisual__content {
    width: 100%;
    height: 100%;
    padding: 40px 0;
    max-width: 980px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1;
  }
}
.p-manufactur_chiba .c-mainvisual__title {
  font-size: 5.2rem;
  line-height: 77.19px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  max-width: 690px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-mainvisual__title {
    font-size: 1.4rem;
    line-height: 20px;
    letter-spacing: 0.025em;
    max-width: 315px;
  }
}
.p-manufactur_chiba .c-mainvisual__text {
  font-size: 2.5rem;
  line-height: 47px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  max-width: 690px;
  margin-top: 11px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-mainvisual__text {
    font-size: 0.67rem;
    line-height: normal;
    letter-spacing: 0.025em;
    margin-top: 5px;
    max-width: 315px;
  }
}
.p-manufactur_chiba .c-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-share {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-manufactur_chiba .c-share__tit {
  font-size: 2rem;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.085em;
  position: relative;
  top: -1px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-share__tit {
    font-size: 1rem;
    letter-spacing: 0.0425em;
  }
}
.p-manufactur_chiba .c-share__link {
  display: block;
}
.p-manufactur_chiba .c-share__link:nth-of-type(1) {
  margin-left: 27px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-share__link:nth-of-type(1) {
    margin-left: 14px;
    margin-right: 15px;
  }
}
.p-manufactur_chiba .c-share__link:nth-of-type(1) img {
  width: 28px;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-share__link:nth-of-type(1) img {
    width: 14px;
    height: 12px;
  }
}
.p-manufactur_chiba .c-share__link:nth-of-type(2) {
  margin-left: 28px;
  margin-right: -7px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-share__link:nth-of-type(2) {
    margin-left: 0;
    margin-right: 0;
  }
}
.p-manufactur_chiba .c-share__link:nth-of-type(2) img {
  width: 15px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-share__link:nth-of-type(2) img {
    width: 7.5px;
    height: 15px;
  }
}
.p-manufactur_chiba .c-block01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block01 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 38px;
  }
}
.p-manufactur_chiba .c-block01__img {
  width: 296px;
  margin-left: 27px;
  margin-right: -20px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block01__img {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    text-align: center;
    margin-top: 19px;
  }
  .p-manufactur_chiba .c-block01__img img {
    width: 151px;
    position: relative;
    left: 6px;
  }
}
.p-manufactur_chiba .c-block01__title {
  font-size: 3.5rem;
  letter-spacing: 0.1em;
  line-height: 63.25px;
  font-weight: bold;
  position: relative;
  top: 14px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block01__title {
    width: 100%;
    top: 0;
    font-size: 1.8rem;
    line-height: 31px;
    letter-spacing: 0.05em;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block02 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-manufactur_chiba .c-block02 + .c-title01 {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block02 + .c-title01 {
    margin-top: 32px;
  }
}
.p-manufactur_chiba .c-block02__img {
  width: 480px;
  float: left;
  margin-right: 34px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block02__img {
    width: 100%;
    float: none;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: 7px;
  }
}
.p-manufactur_chiba .c-block02__content {
  position: relative;
  top: -8px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block02__content {
    top: 0;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.p-manufactur_chiba .c-block02__text01 {
  font-size: 1.4rem;
  letter-spacing: 0.13em;
  line-height: 24.5px;
  font-weight: 400;
  color: #6D6D6D;
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block02__text01 {
    font-size: 1.2rem;
    line-height: 21px;
    margin-top: 5px;
  }
}
.p-manufactur_chiba .c-block02__text02 {
  font-size: 1.7rem;
  letter-spacing: 0.13em;
  line-height: 29.75px;
  font-weight: 400;
  color: #4A4A4A;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block02__text02 {
    font-size: 1.2rem;
    line-height: 21px;
    letter-spacing: 0.075em;
  }
}
.p-manufactur_chiba .c-block02 .align-right {
  display: block;
  text-align: right;
}
.p-manufactur_chiba .c-title01 {
  font-size: 2.8rem;
  letter-spacing: 0.13em;
  line-height: 44px;
  font-weight: bold;
  margin-bottom: 38px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-title01 {
    font-size: 1.4rem;
    line-height: 21px;
    letter-spacing: 0.08em;
    margin-bottom: 9px;
  }
}
.p-manufactur_chiba .c-slide01 {
  position: relative;
}
.p-manufactur_chiba .c-slide01 li {
  height: 612.5px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-slide01 li {
    height: auto;
  }
}
.p-manufactur_chiba .c-slide01 .slick-arrow {
  position: absolute;
  top: 50%;
  width: 30px;
  height: 60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-slide01 .slick-arrow {
    width: 12px;
    height: 24px;
  }
}
.p-manufactur_chiba .c-slide01 .slick-prev {
  left: 22px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-slide01 .slick-prev {
    left: 7px;
  }
}
.p-manufactur_chiba .c-slide01 .slick-next {
  right: 22px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-slide01 .slick-next {
    right: 7px;
  }
}
.p-manufactur_chiba .c-text01 {
  font-size: 1.4rem;
  line-height: 24.5px;
  letter-spacing: 0.13em;
  font-weight: 400;
  color: #6D6D6D;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-text01 {
    font-size: 1.2rem;
    line-height: 21px;
    letter-spacing: 0.075em;
  }
}
.p-manufactur_chiba .c-block03 {
  background: #F2F2F2;
  padding: 17px;
  max-width: 686px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block03 {
    width: 100%;
    padding: 8px;
  }
}
.p-manufactur_chiba .c-block03__inner {
  background: #fff;
  padding: 43px 47px 39px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block03__inner {
    padding: 22px 23px 19px;
  }
}
.p-manufactur_chiba .c-block03__content {
  position: relative;
  top: -6px;
  padding-left: 43px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block03__content {
    padding-left: 21px;
    top: -5px;
  }
}
.p-manufactur_chiba .c-block03__img {
  width: 217.5px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block03__img {
    width: 109px;
  }
}
.p-manufactur_chiba .c-block03__title {
  font-size: 1.6rem;
  line-height: 30px;
  letter-spacing: 0.13em;
  font-weight: bold;
  color: #3E3A39;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block03__title {
    font-size: 0.8rem;
    line-height: normal;
    letter-spacing: 0.075em;
  }
}
.p-manufactur_chiba .c-block03__text {
  font-size: 1.4rem;
  line-height: 30px;
  letter-spacing: 0.13em;
  font-weight: 400;
  color: #00CAFF;
  margin-top: -1px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block03__text {
    font-size: 0.8rem;
    line-height: normal;
    letter-spacing: 0.075em;
    margin-top: 2px;
  }
}
.p-manufactur_chiba .c-block04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 63px;
  margin-top: 80px;
  border-top: 1px solid #CCCCCC;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block04 {
    display: block;
    margin-top: 30px;
    padding-top: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block04__img {
    text-align: center;
  }
}
.p-manufactur_chiba .c-block04__img img {
  width: 398px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block04__img img {
    width: 272px;
  }
}
.p-manufactur_chiba .c-block04__content {
  width: calc(100% - 398px);
  padding: 10px 0 0 52px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block04__content {
    width: 100%;
    padding: 0;
    margin-top: 23px;
  }
}
.p-manufactur_chiba .c-block04__title {
  font-size: 1.6rem;
  line-height: 28px;
  letter-spacing: 0.13em;
  font-weight: bold;
  color: #3E3A39;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block04__title {
    font-size: 1.4rem;
    line-height: 24px;
    letter-spacing: 0.08em;
  }
}
.p-manufactur_chiba .c-block04__text {
  font-size: 1.4rem;
  line-height: 24.5px;
  letter-spacing: 0.13em;
  font-weight: 400;
  color: #6D6D6D;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block04__text {
    font-size: 1.2rem;
    line-height: 21px;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }
}
.p-manufactur_chiba .c-block04__btn {
  margin-top: 33px;
}
.p-manufactur_chiba .c-block04__btn a {
  display: block;
  text-align: center;
  background: #E8E8E8;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 400;
  color: #3e3a39;
  width: 300px;
  padding: 22px 0;
  letter-spacing: 0.13em;
  margin: 0 auto;
  position: relative;
  left: -31px;
  text-indent: -10px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block04__btn a {
    width: 209px;
    font-size: 1.2rem;
    letter-spacing: 0.08em;
    left: 0;
    text-indent: 0;
    padding: 15px 0;
  }
}
.p-manufactur_chiba .c-block04__btn a::after {
  content: "";
  position: absolute;
  top: 25px;
  right: 94px;
  width: 11px;
  height: 11px;
  background: url("../image/story/manufactur_chiba/ic-arrow.svg") no-repeat center;
  background-size: 11px 11px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-block04__btn a::after {
    top: 18px;
    right: 64px;
    width: 8px;
    height: 8px;
    background-size: 8px 8px;
  }
}
.p-manufactur_chiba .c-video {
  text-align: center;
  margin-top: 76px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-video {
    margin-top: 35px;
  }
}
.p-manufactur_chiba .c-video iframe {
  width: 650px;
  height: 433px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba .c-video iframe {
    width: 100%;
    height: 224px;
  }
}
.p-manufactur_chiba__01 {
  padding: 37px 0;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba__01 {
    padding: 31px 0 0;
  }
}
.p-manufactur_chiba__02 {
  padding: 42px 0 60px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba__02 {
    padding: 36px 0 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba__02 .c-title01:nth-of-type(2) {
    margin-bottom: 16px;
  }
}
.p-manufactur_chiba__03 {
  padding-bottom: 42px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba__03 {
    padding-bottom: 73px;
  }
}
.p-manufactur_chiba__03 .c-text01 {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba__03 .c-text01 {
    margin-top: 1px;
  }
}
.p-manufactur_chiba__03 .c-block03 {
  margin-top: 97px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba__03 .c-block03 {
    margin-top: 14px;
    margin-left: -3px;
    margin-right: -3px;
  }
}
.p-manufactur_chiba__03 .c-share {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 47px;
  position: relative;
  left: -3px;
}
@media screen and (max-width: 767px) {
  .p-manufactur_chiba__03 .c-share {
    margin-top: 24px;
    left: 1px;
  }
}