@charset "utf-8";
/* ===================================================================
 File Name  : page.css
 Style Info : ページに関するスタイル指定
=================================================================== */

/*----------------------------------------------------
  トップ index
--------------------------------------------------- */
#appeal_area a {
  width: 100%;
  display: block;
  color: #fff;
  background: #E5151F;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  font-weight: 500;
}
#appeal_area a:hover {
  filter: brightness(1.2);
}
#appeal_area a span {
  display: inline-block;
  line-height: 32px;
  padding-left: 35px;
  background: url("../img/common/ico/ico_pack01.png") 0 center no-repeat;
  background-size: 30px auto;
}
  @media screen and (max-width: 999px) {
    #appeal_area a {
      padding: 1.33vw 2vw;
    }
    #appeal_area a span {
      line-height: 6.66vw;
      padding-left: 8vw;
      background-size: 5.8vw auto;
    }
  }

#mainVisual {
  padding-top: 140px;
  margin-bottom: 110px;
}
.mv_box {
  position: relative;
  display: flex;
  justify-content: flex-end;
  max-width: 1600px;
  margin: 0 auto;
}
.mv_ttl {
  position: absolute;
  left: 40px;
  top: calc(50% - 180px);
  z-index: 10;
}
.mv_img {
  width: 100%;
  max-width: 1210px;
  margin-inline: auto;
  overflow: hidden;
}
.mv_slider figure img {
  width: 100%;
  height: 670px;
  object-fit: cover;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

  @media screen and (max-width: 1599px) {
    .mv_box {
      padding-left: 21%;
    }
  }
  @media screen and (max-width: 999px) {
    #mainVisual {
      padding-top: 18vw;
      margin-bottom: 13.33vw;
    }
    .mv_box {
      max-width: 100%;
    }
    .mv_ttl {
      left: 5vw;
      top: auto;
      bottom: 6.66vw;
      z-index: 10;
    }
    .mv_ttl img {
      width: 50vw;
      height: auto;
    }
    .mv_img {
      width: 100%;
    }
    .mv_slider figure img {
      min-height: auto;
      height: 58vw;
    }
  }

.slideinLeft {
  opacity: 0;
  position: relative;
  display: inline-block;
  animation: slideinLeft 1s ease 0.5s 1 forwards;
}

@keyframes slideinLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.index_business_ttl {
  position: relative;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  color: #fff;
  font-size: 3.6rem;
  margin-bottom: 45px;
}
.index_business_ttl span {
  position: relative;
  padding-left: 70px;
  display: inline-block;
  margin-right: 20px;
}
.index_business_ttl span::before {
  position: absolute;
  left: 0;
  top: 22px;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E5151F;
}
.index_business_ttl span::after {
  position: absolute;
  left: 0;
  top: 30px;
  content: "";
  width: 50px;
  height: 2px;
  background: url("../img/common/bg/dot_line01.png") 0 center repeat-x;
}
.index_business_ttl small {
  font-size: 1.4rem;
  color: #999;
  font-weight: 700;
}
.index_business_inner {
  overflow: hidden;
  padding: 0 20px 120px;
  background: url("../img/index/index_business_bg.png") center top repeat;
}
.index_business_list {
  max-width: 1200px;
  margin: 0 auto;
}
.index_business_box {
  position: relative;
  display: block;
  width: calc(25% - 12px);
  height: 346px;
  margin-right: 16px;
  border-radius: 10px;
  background: #fff;
  text-decoration: none;
  color: #000!important;
  font-size: 1.8rem;
  transition: all 0.2s ease-in-out 0s;
  letter-spacing: 0.05em;
}
.index_business_box:hover {
  color: #E5151F!important;
}
.index_business_box:nth-child(4n) {
  margin-right: 0;
}
.index_business_box figure {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.index_business_box figure img {
  width: 100%;
  height: auto;
}
.index_business_box h4 {
  position: relative;
  padding: 20px 12.5%;
  font-weight: 600;
}
.index_business_box h4::before {
  position: absolute;
  left: 0;
  top: 32px;
  content: "";
  width: 16px;
  height: 3px;
  background: #E5151F;
}
  @media screen and (max-width: 1259px) {
    .index_business_inner {
      background: none;
    }
    .index_business_box {
      height: auto;
    }
    .index_business_box::after {
      position: absolute;
      left: 0;
      top: calc(100% + 16px);
      content: "";
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
    }
  }
  @media screen and (max-width: 999px) {
    .index_business_ttl {
      max-width: 100%;
      padding: 0 5vw;
      font-size: 5.8vw;
      margin-bottom: 6.66vw;
    }
    .index_business_ttl span {
      padding-left: 15.33vw;
      margin-right: 4vw;
    }
    .index_business_ttl span::before {
      top: calc(50% - 2vw);
      width: 4vw;
      height: 4vw;
    }
    .index_business_ttl span::after {
      left: 0.66vw;
      top: 50%;
      width: 13.33vw;
    }
    .index_business_ttl small {
      font-size: 3.33vw;
    }
    .index_business_inner {
      padding: 0 5vw 9.33vw;
    }
    .index_business_list {
      max-width: 100%;
    }
    .index_business_box {
      display: flex;
      justify-content: space-between;
      width: 100%;
      margin-right: 0;
      border-radius: 1.33vw;
      font-size: 4.26vw;
      margin-bottom: 4vw;
      overflow: hidden;
    }
    .index_business_box figure {
      width: 30%;
      border-radius: 0;
    }
    .index_business_box h4 {
      display: flex;
      align-items: center;
      width: 70%;
      padding: 0;
      padding-left: 5vw;
    }
    .index_business_box h4::before {
      display: none;
    }
  }

#index_case {
  padding: 80px 0 90px;
  background: url("../img/common/bg/bg02.jpg") repeat;
}
#index_case .sub_ttl01 {
  position: relative;
  z-index: 5;
}
.index_case_wrap {
  position: relative;
}
.index_case_wrap::after {
  position: absolute;
  left: 0;
  top: 13.5%;
  content: "";
  width: 100%;
  height: 60%;
  background: #F2F2F2;
}
.index_case_box {
  position: relative;
  display: block;
  width: calc(40% - 32px);
  margin: 0 16px 36px 16px;
}
.index_case_box figure {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 10px 10px 0 rgba(0,0,0,0.15);
}
.index_case_box figure::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  width: 30px;
  height: 30px;
  background: url("../img/common/ico/ico_zoom01.png") center center no-repeat;
  background-size: 30px auto;
  z-index: 5;
}
.index_case_box figure img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  transition: all 0.4s ease-in-out 0s;
}
.index_case_box:hover figure img {
  opacity: 1!important;
  transform: scale(1.08);
}
#index_case .btn01 {
  padding-top: 20px;
}
  @media screen and (max-width: 999px) {
    #index_case {
      padding: 12vw 0 13.33vw;
    }
    .index_case_wrap::after {
      display: none;
    }
    .index_case_list {
      justify-content: space-between;
    }
    .index_case_box {
      display: block;
      width: calc(50% - 2vw);
      margin: 0 0 4vw 0;
    }
    .index_case_box figure {
      border-radius: 1.66vw;
      box-shadow: 1.66vw 1.66vw 0 rgba(0,0,0,0.15);
    }
    .index_case_box figure img {
      max-height: auto;
    }
    .index_case_box figure::after {
      width: 6vw;
      height: 6vw;
      background-size: 6vw auto;
    }
    .index_case_box:hover figure img {
      transform: scale(1);
    }
    #index_case .btn01 {
      padding-top: 6.66vw;
    }
  }

.index_case_box h3 {
  position: absolute;
  top: 20px;
  z-index: 5;
  background: #E5151F;
  color: #fff;
  width: 150px;
  text-align: center;
  padding: 13px 5px;
  font-weight: 900;
}
.index_case_box:nth-child(odd) h3 {
  left: -20px;
}
.index_case_box:nth-child(even) h3 {
  right: -20px;
}
  @media screen and (max-width: 999px) {
    .index_case_box h3 {
      top: 3vw;
      width: 24vw;
      font-size: 2.66vw;
      padding: 1.66vw;
    }
    .index_case_box:nth-child(odd) h3 {
      left: -3vw;
    }
    .index_case_box:nth-child(even) h3 {
      right: -3vw;
    }
  }

/*ポップアップ*/
.mfp-bg {
  background-color: #000;
  opacity: 0.7;
}

.mfp-content {
  padding: 40px 0;
}
  @media screen and (max-width: 999px) {
    .mfp-container {
      padding: 0!important;
    }
    .mfp-content {
      padding: 5vw;
    }
  }

.popup_wrap {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  padding: 60px 6.5%;
}
  @media screen and (max-width: 999px) {
    .popup_wrap {
      max-width: 100%;
      border-radius: 1.33vw;
      padding: 10vw 7.6vw 8vw 7.6vw;
    }
  }

.popup_box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.popup_box figure img {
  width: 100%;
  max-height: 460px;
}
.popup_box p {
  margin-top: 20px;
  line-height: 1.5;
}
.popup_box .btn01 {
  margin-top: 20px;
}
  @media screen and (max-width: 999px) {
    .popup_box {
      max-width: 100%;
    }
    .popup_box figure img {
      max-height: auto;
    }
    .popup_box p {
      margin-top: 4vw;
    }
    .popup_box .btn01 {
      margin-top: 4vw;
    }
  }

.popup_wrap .mfp-close {
  position: absolute;
  width: auto;
  height: auto;
  line-height: 1;
  right: 5px;
  top: 5px;
  font-size: 5rem;
  color: #E5151F;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Verdana, sans-serif;
  font-weight: 400!important;
  transition: all 0.2s ease-in-out 0s;
  opacity: 1;
}

button.mfp-arrow::before,
button.mfp-arrow::after {
  display: none!important;
}
button.mfp-arrow {
  opacity: 1!important;
  margin: 0!important;
  top: calc(50% - 24px)!important;
  margin-top: 0!important;
  width: 24px!important;
  height: 48px!important;
}
button.mfp-arrow-left {
  left: calc(50% - 500px)!important;
  background: url("../img/common/ico/ico_prev01.svg") left center no-repeat!important;
  background-size: 24px auto;
}
button.mfp-arrow-right {
  right: calc(50% - 500px)!important;
  background: url("../img/common/ico/ico_next01.svg") right center no-repeat!important;
  background-size: 24px auto;
}
  @media screen and (max-width: 1080px) {
    button.mfp-arrow-left {
      left: 30px!important;
    }
    button.mfp-arrow-right {
      right: 30px!important;
    }
  }
  @media screen and (max-width: 999px) {
    .popup_wrap .mfp-close {
      right: 0;
      top: 0;
      font-size: 9.33vw;
    }
    button.mfp-arrow {
      top: calc(50% - 6vw)!important;
      width: 6vw!important;
      height: 12vw!important;
    }
    button.mfp-arrow-left {
      left: 6vw!important;
      background-size: 6vw auto!important;
    }
    button.mfp-arrow-right {
      right: 6vw!important;
      background-size: 6vw auto!important;
    }
  }

#index_product {
  padding: 90px 0 80px;
  background: url("../img/index/index_product.bg.png") 0 center no-repeat;
}
#index_product .sub_ttl01 span {
  color: #fff;
}
.index_product_box {
  display: block;
  background: #fff;
  border-radius: 6px;
  width: calc(20% - 8px);
  margin: 0 10px 0 0;
  padding: 12px 6px;
  text-align: center;
  text-decoration: none;
  color: #000!important;
}
.index_product_box:nth-child(5n) {
  margin-right: 0;
}
.index_product_box figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.index_product_box h4 {
  padding: 15px 0;
  min-height: 75px;
}
.index_product_bnr {
  max-width: 750px;
  margin: 80px auto 0;
  padding: 15px 0 30px;
  background: #333;
  color: #fff;
}
.index_product_bnr dt {
  font-weight: 500;
  font-size: 3.6rem;
  padding-left: 50px;
}
.index_product_bnr dd {
  position: relative;
  padding-left: 50px;
  padding-right: 260px;
}
.index_product_bnr dd p {
  letter-spacing: 0.05em;
}
.index_product_bnr dd .btn01 {
  position: absolute;
  right: -8px;
  top: 0;
}
.index_product_bnr dd .btn01 a {
  min-width: 280px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
  @media screen and (max-width: 999px) {
    #index_product {
      padding: 12vw 0 13.33vw;
      background: none;
    }
    .index_product_box {
      border-radius: 2vw;
      width: 80vw;
      margin: 0 auto 5vw auto!important;
      padding: 4vw 5vw;
    }
    .index_product_box figure img {
      border-radius: 1.33vw;
    }
    .index_product_box h4 {
      padding: 4vw 0;
      min-height: auto;
      font-size: 4vw;
    }
    .index_product_bnr {
      max-width: 100%;
      margin: 10.66vw auto 0;
      padding: 5vw 5vw 8vw 5vw;
    }
    .index_product_bnr dt {
      font-size: 5.8vw;
      padding-left: 0;
      margin-bottom: 2.66vw;
    }
    .index_product_bnr dd {
      padding-left: 0;
      padding-right: 0;
    }
    .index_product_bnr dd p {
      letter-spacing: 0.1em;
      font-size: 3.46vw;
      margin-bottom: 5.33vw;
    }
    .index_product_bnr dd .btn01 {
      right: -7vw;
      top: auto;
      bottom: -19.33vw;
    }
    .index_product_bnr dd .btn01 a {
      min-width: 62vw;
    }
  }

#index_news {
  background: #fff;
  padding: 80px 0;
}
.index_news_ttl {
  width: 150px;
  font-weight: 600;
}
.index_news_ttl span {
  display: block;
  font-size: 3rem;
}
.index_news_ttl small {
  display: block;
  font-size: 1.4rem;
  color: #999;
}
#index_news .news_post_list {
  width: calc(100% - 150px);
}
.news_post_list li {
  margin-bottom: 20px;
  border-bottom: solid 1px #ddd;
}
.news_post_list li a {
  color: #000;
  text-decoration: none;
  line-height: 1.5;
  padding-bottom: 5px;
}
.news_post_list li a:hover {
  color: #E5151F;
}
.news_post_list li time {
  display: inline-block;
  width: 114px;
  padding: 3px 5px;
  text-align: center;
  color: #fff;
  background: #E5151F;
  border-top-right-radius: 6px;
}
.news_post_list li h4 {
  font-weight: 400;
  width: calc(100% - 135px);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
  @media screen and (max-width: 999px) {
    #index_news {
      background: #fff;
      padding: 9.33vw 0;
    }
    .index_news_ttl {
      width: 100%;
      text-align: center;
      margin-bottom: 5vw;
    }
    .index_news_ttl span {
      font-size: 7.4vw;
    }
    .index_news_ttl small {
      font-size: 3.46vw;
    }
    #index_news .news_post_list {
      width: 100%;
    }
    .news_post_list li {
      margin-bottom: 4vw;
    }
    .news_post_list li a {
      padding-bottom: 2.66vw;
    }
    .news_post_list li time {
      width: 30vw;
      padding: 0.66vw 2vw;
      border-top-right-radius: 2vw;
    }
    .news_post_list li h4 {
      width: 100%;
      margin-top: 2.66vw;
    }
  }

/*----------------------------------------------------
  工業用トレー製品一覧 product
--------------------------------------------------- */
#product {
  padding: 50px 0 120px;
}
  @media screen and (max-width: 999px) {
    #product {
      padding: 8vw 0 15.33vw;
    }
  }

/*一覧*/
.product_post_box {
  display: block;
  background: #fff;
  border-radius: 6px;
  width: calc(25% - 15px);
  margin: 0 20px 20px 0;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  color: #000!important;
  border: solid 1px #ccc;
}
.product_post_box:nth-child(4n) {
  margin-right: 0;
}
.product_post_box figure img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.product_post_box h4 {
  padding: 18px 0;
}
  @media screen and (max-width: 999px) {
    .product_post_box {
      border-radius: 2vw;
      width: 80vw;
      margin: 0 auto 5vw auto!important;
      padding: 5vw;
    }
    .product_post_box figure img {
      border-radius: 1.33vw;
    }
    .product_post_box h4 {
      padding: 4vw 0;
      min-height: auto;
      font-size: 4vw;
    }
  }

/*詳細*/
#product_single {
  padding-top: 50px;
}
#product_info figure {
  width: 50%;
  max-width: 600px;
}
#product_info figure img {
  width: 100%;
  height: auto;
}
.product_info_box {
  width: 47.5%;
  max-width: 560px;
}
.product_info_ttl {
  position: relative;
  font-size: 2.8rem;
  padding-left: 30px;
  padding-bottom: 12px;
  background: url("../img/common/bg/dot_line01.png") 0 bottom repeat-x;
}
.product_info_ttl::after {
  position: absolute;
  left: 0;
  top: 14px;
  content: "";
  width: 18px;
  height: 18px;
  background: #E5151F;
  border-radius: 50%;
}
.product_tag {
  margin-top: 20px;
}
.product_tag li {
  margin: 0 10px 10px 0;
}
.product_tag li a {
  display: block;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 1px 20px;
  letter-spacing: 0.05em;
  border-radius: 3px;
}
.product_tag li a:hover {
  background: #E5151F;
}
.product_info_txt {
  margin-top: 20px;
}
  @media screen and (max-width: 999px) {
    #product_single {
      padding-top: 2.66vw;
    }
    #product_info figure {
      width: 100%;
      max-width: 100%;
      margin-bottom: 4vw;
    }
    .product_info_box {
      width: 100%;
      max-width: 100%;
    }
    .product_info_ttl {
      position: relative;
      font-size: 5vw;
      padding-left: 6vw;
      padding-bottom: 3.33vw;
    }
    .product_info_ttl::after {
      top: 2.33vw;
      width: 3.8vw;
      height: 3.8vw;
    }
    .product_tag {
      margin-top: 4vw;
    }
    .product_tag li {
      margin: 0 2vw 2vw 0;
    }
    .product_tag li a {
      font-size: 3.46vw;
      padding: 0 3.33vw;
    }
    .product_info_txt {
      margin-top: 5vw;
    }
  }

.product_info_tbl {
  margin-top: 20px;
  margin-left: -10px;
  margin-right: -10px;
}
.product_info_tbl table {
  border-collapse: separate;
  border-spacing: 10px;
}
.product_info_tbl th {
  width: 130px;
  text-align: left;
  font-weight: 400;
  padding: 0 0 10px 0;
  border-bottom: solid 1px #000;
}
.product_info_tbl td {
  padding: 0 0 10px 0;
  border-bottom: solid 1px #ccc;
}
  @media screen and (max-width: 999px) {
    .product_info_tbl {
      font-size: 3.46vw;
      margin-top: 5vw;
      margin-left: -2.66vw;
      margin-right: -2.66vw;
    }
    .product_info_tbl table {
      border-spacing: 2.66vw;
    }
    .product_info_tbl th {
      width: 30%;
      padding: 0 0 2.66vw 0;
    }
    .product_info_tbl td {
      padding: 0 0 2.66vw 0;
    }
  }

#product_price {
  padding-top: 80px;
}
#product_price table {
  text-align: center;
}
#product_price tr:first-child th {
  background: #555;
  color: #fff;
  border: solid 1px #ddd;
  padding: 10px;
  font-size: 1.8rem;
}
#product_price tr:first-child th:first-child {
  width: 320px;
}
#product_price th {
  background: #eee;
  font-size: 2rem;
  padding: 18px 10px;
  border: solid 1px #ddd;
  vertical-align: middle;
}
#product_price td {
  border: solid 1px #ddd;
  padding: 18px 10px;
  letter-spacing: 0.05em;
}
#product_price td b {
  font-size: 2.4rem;
  color: #f00;
  font-weight: 700;
}
#product_price td small {
  font-size: 1.8rem;
  color: #f00;
  font-weight: 700;
}
  @media screen and (max-width: 999px) {
    #product_price {
      padding-top: 8vw;
    }
    #product_price tr:first-child th {
      padding: 2.66vw;
      font-size: 3.73vw;
    }
    #product_price tr:first-child th:first-child {
      width: 30%;
    }
    #product_price th {
      font-size: 3.73vw;
      padding: 2.66vw 2vw;
    }
    #product_price td {
      padding: 2.66vw 2vw;
      font-size: 3.46vw;
    }
    #product_price td b {
      font-size: 5vw;
    }
    #product_price td small {
      font-size: 3.73vw;
    }
  }

#product_other {
  padding-top: 80px;
}
  @media screen and (max-width: 999px) {
    #product_other {
      padding-top: 13.33vw;
    }
    #product_other .product_post_box:last-child {
      margin-bottom: 0!important;
    }
  }

/*----------------------------------------------------
  事業内容 business
--------------------------------------------------- */
.lower_lead {
  padding: 60px 0 40px;
}
.img_float_box {
  margin-bottom: 80px;
}
.img_float_box figure {
  width: 49%;
  max-width: 580px;
}
.img_float_box figure img {
  width: 100%;
  height: auto;
  box-shadow: 20px 20px 0 #F2F2F2;
}
.img_float_txt {
  width: 47%;
  max-width: 560px;
  padding-top: 40px;
}
.img_float_txt h2 {
  font-size: 2.6rem;
  margin-bottom: 30px;
}
.img_float_txt p {
  margin-bottom: 30px;
}
  @media screen and (max-width: 999px) {
    .lower_lead {
      padding: 6.66vw 0;
    }
    .img_float_box {
      margin-bottom: 5.33vw;
    }
    .img_float_box figure {
      width: 100%;
      max-width: 100%;
    }
    .img_float_box figure img {
      width: 100%;
      height: auto;
      box-shadow: 3vw 3vw 0 #F2F2F2;
    }
    .img_float_txt {
      width: 100%;
      max-width: 100%;
      padding-top: 6.66vw;
    }
    .img_float_txt h2 {
      font-size: 5.33vw;
      margin-bottom: 5vw;
    }
    .img_float_txt p {
      margin-bottom: 5vw;
    }
  }

#business_service {
  position: relative;
  padding-bottom: 80px;
  margin-bottom: 100px;
}
#business_service::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 500px;
  background: #F2F2F2;
}
.business_service_inner {
  padding-bottom: 80px;
}
.pack_gallery {
  position: relative;
  z-index: 5;
  max-width: 1920px;
  margin: 0 auto;
}
.pack_gallery figure {
  width: 300px;
  margin: 0 10px;
}
.pack_gallery img {
  width: 100%;
  height: auto;
  display: block;
}
  @media screen and (max-width: 999px) {
    #business_service {
      position: relative;
      padding: 12vw 0;
      margin-bottom: 12vw;
    }
    #business_service::after {
      height: 100%;
    }
    .business_service_inner {
      padding-bottom: 8vw;
    }
    .pack_gallery {
      max-width: 100%;
    }
    .pack_gallery figure {
      width: 50vw;
      margin: 0 1.66vw;
    }
  }

.business_staff_list {
  padding-bottom: 65px;
}
.business_staff_list dl {
  width: 48%;
  margin-bottom: 35px;
  align-items: center;
}
.business_staff_list dl dt {
  width: 244px;
}
.business_staff_list dl dt img {
  border: solid 2px #E5151F;
  border-radius: 50%;
}
.business_staff_list dl dd {
  width: calc(100% - 260px);
}
.business_staff_list dl dd p {
  letter-spacing: 0;
  font-size: 1.4rem;
}
  @media screen and (max-width: 999px) {
    .business_staff_list {
      padding-bottom: 5.33vw;
    }
    .business_staff_list dl {
      width: 100%;
      margin-bottom: 6.66vw;
      align-items: center;
    }
    .business_staff_list dl dt {
      width: 100%;
      text-align: center;
      margin-bottom: 4vw
    }
    .business_staff_list dl dt img {
      width: 58vw;
    }
    .business_staff_list dl dd {
      width: 100%;
    }
    .business_staff_list dl dd p {
      letter-spacing: 0;
      font-size: 3.46vw;
    }
  }

#business_advantage {
  padding-bottom: 40px;
}
  @media screen and (max-width: 999px) {
    #business_advantage {
      padding-bottom: 6.66vw;
    }
  }

.lower_case_wrap {
  background: #F2F2F2;
  padding: 100px 0;
}
.lower_case_list {
  padding-bottom: 30px;
}
  @media screen and (max-width: 999px) {
    .lower_case_wrap {
      background: #F2F2F2;
      padding: 12vw 0;
    }
    .lower_case_list {
      justify-content: space-between;
      padding-bottom: 4vw;
    }
  }

/*----------------------------------------------------
  ブリスターパック工業用トレー business01
--------------------------------------------------- */
#business_lower_advantage {
  padding-bottom: 50px;
}
.business_lower_advantage_box {
  display: block;
  text-align: center;
  width: 280px;
  margin: 0 20px 50px;
  padding-top: 20px;
  text-decoration: none;
  color: #000!important;
}
.business_lower_advantage_box:hover {
  color: #E5151F!important;
}
.business_lower_advantage_box figure {
  position: relative;
  margin-bottom: 12px;
}
.business_lower_advantage_box figure b {
  position: absolute;
  left: 0;
  top: -20px;
  z-index: 5;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 6rem;
  line-height: 1;
  color: #E5151F;
  text-shadow: -3px 0 rgba(255, 255, 255, 1), 3px 0 rgba(255, 255, 255, 1), 0 -3px rgba(255, 255, 255, 1), 0 3px rgba(255, 255, 255, 1), -3px -3px rgba(255, 255, 255, 1), -3px 3px rgba(255, 255, 255, 1), 3px -3px rgba(255, 255, 255, 1), 3px 3px rgba(255, 255, 255, 1);
}
.business_lower_advantage_box h3 {
  margin-bottom: 18px;
}
.business_lower_advantage_box h3 small {
  display: block;
  font-weight: 400;
  font-size: 2rem;
}
.business_lower_advantage_box h3 span {
  display: block;
  font-size: 2.6rem;
}
  @media screen and (max-width: 999px) {
    #business_lower_advantage {
      padding-bottom: 5vw;
    }
    .business_lower_advantage_box {
      width: 70vw;
      margin: 0 auto 7vw;
      padding-top: 5.33vw;
    }
    .business_lower_advantage_box figure {
      margin-bottom: 3.33vw;
    }
    .business_lower_advantage_box figure img {
      width: 100%;
      height: auto;
    }
    .business_lower_advantage_box figure b {
      top: -3.33vw;
      font-size: 12vw;
    }
    .business_lower_advantage_box h3 {
      margin-bottom: 3.33vw;
    }
    .business_lower_advantage_box h3 small {
      font-size: 4.26vw;
    }
    .business_lower_advantage_box h3 span {
      font-size: 6vw;
    }
  }

#business_facility {
  padding-bottom: 60px;
}
.business_facility_box {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px 40px;
}
.business_facility_box figure {
  max-width: 240px;
}
.business_facility_box h3 {
  font-size: 1.5rem;
  margin-top: 15px;
  font-weight: 500;
}
  @media screen and (max-width: 999px) {
    #business_facility {
      padding-bottom: 5vw;
    }
    .business_facility_list {
      justify-content: space-between;
    }
    .business_facility_box {
      width: 48%;
      display: block;
      padding: 0 0 7vw;
    }
    .business_facility_box figure {
      max-width: 100%;
    }
    .business_facility_box figure img {
      width: 100%;
      height: auto;
    }
    .business_facility_box h3 {
      font-size: 3.46vw;
      margin-top: 2.66vw;
    }
  }

#business_product {
  padding: 100px 0;
}
#business_product .index_product_box {
  border: solid 1px #ccc;
}
  @media screen and (max-width: 999px) {
    #business_product {
      padding: 10.66vw 0 18vw;
    }
  }

/*----------------------------------------------------
  オリジナル工業用トレーブリスターパック business02
--------------------------------------------------- */
#business_flow {
  padding-bottom: 60px;
}
.business_flow_wrap {
  max-width: 1060px;
  margin: 0 auto;
}
.business_flow_box {
  position: relative;
  min-height: 210px;
  padding-bottom: 40px;
}
.business_flow_box::after {
  position: absolute;
  left: 49px;
  top: 0;
  content: "";
  width: 2px;
  height: 100%;
  background: #e5151f;
}
.business_flow_box:last-child::after {
  display: none;
}
.business_flow_box dl {
  position: relative;
  padding-right: 280px;
}
.business_flow_box dt {
  position: relative;
  z-index: 5;
  margin-bottom: 10px;
  padding-left: 135px;
}
.business_flow_box dt span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
  color: #e5151f;
  border: solid 2px #e5151f;
  background: #fff;
  line-height: 1;
  padding: 5px;
  width: 100px;
  text-align: center;
  letter-spacing: 0;
}
.business_flow_box dt b {
  font-size: 2.4rem;
  line-height: 1.7;
}
.business_flow_box dd {
  padding-left: 135px;
}
.business_flow_box dd figure {
  position: absolute;
  right: 0;
  top: 0;
}
.business_flow_txt p {
  max-width: 600px;
  font-size: 1.5rem;
}
.business_flow_tel {
  padding-left: 70px;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0;
  background: url("../img/common/ico/ico_tel03.jpg") 0 center no-repeat;
  margin: 15px 0 5px;
}
.business_flow_tel a {
  text-decoration: none;
  color: #000;
}
  @media screen and (max-width: 999px) {
    #business_flow {
      padding-bottom: 4vw;
    }
    .business_flow_wrap {
      max-width: 100%;
    }
    .business_flow_box {
      min-height: auto;
      padding-bottom: 8vw;
    }
    .business_flow_box::after {
      display: none;
    }
    .business_flow_box dl {
      padding-right: 0;
    }
    .business_flow_box dt {
      margin-bottom: 6.66vw;
      padding-left: 26vw;
    }
    .business_flow_box dt span {
      font-size: 5.33vw;
      padding: 1.33vw;
      width: 23.33vw;
    }
    .business_flow_box dt b {
      font-size: 5vw;
      line-height: 1.7;
    }
    .business_flow_box dd {
      padding-left: 0;
    }
    .business_flow_box dd figure {
      position: static;
      margin-bottom: 4.4vw;
      text-align: center;
    }
    .business_flow_txt p {
      max-width: 100%;
      font-size: 3.46vw;
    }
    .business_flow_tel {
      padding-left: 14vw;
      font-size: 7.2vw;
      font-weight: 900;
      letter-spacing: 0;
      background: url("../img/common/ico/ico_tel03.jpg") 0 center no-repeat;
      background-size: 12vw auto;
      margin: 2.66vw 0 1.33vw;
    }
  }
/*----------------------------------------------------
  プラダン・段ボール製造・販売 business03
--------------------------------------------------- */
#business03_advantage {
  padding-bottom: 60px;
}
.business03_advantage_box {
  width: calc(33.33% - 40px);
  margin: 0 60px 40px 0;
}
.business03_advantage_box:nth-child(3n) {
  margin-right: 0;
}
.business03_advantage_box h3 {
  text-align: center;
  margin-bottom: 15px;
}
.business03_advantage_box h3 span {
  display: inline-block;
}
.business03_advantage_box h3 b {
  display: block;
  font-size: 2.6rem;
  color: #e5151f;
}
.business03_advantage_box figure {
  margin-bottom: 18px;
}
.business03_advantage_box figure img {
  width: 100%;
  height: auto;
}
.business03_advantage_box dt {
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.business03_advantage_box dd {
  font-size: 1.5rem;
}
  @media screen and (max-width: 1120px) {
    .business03_advantage_box {
      width: calc(33.33% - 20px);
      margin: 0 30px 40px 0;
    }
  }
  @media screen and (max-width: 999px) {
    #business03_advantage {
      padding-bottom: 5.33vw;
    }
    .business03_advantage_box {
      width: 100%;
      margin: 0 0 6.66vw 0;
    }
    .business03_advantage_box h3 {
      margin-bottom: 3.33vw;
    }
    .business03_advantage_box h3 span img {
      width: 13.33vw;
      height: auto;
    }
    .business03_advantage_box h3 b {
      font-size: 5.33vw;
    }
    .business03_advantage_box figure {
      margin-bottom: 4vw;
    }
    .business03_advantage_box dt {
      font-size: 4.8vw;
      margin-bottom: 2vw;
    }
    .business03_advantage_box dd {
      font-size: 3.73vw;
    }
  }

#business03_facility {
  padding-bottom: 60px;
}
.business03_facility_box {
  display: block;
  width: calc(25% - 19px);
  margin: 0 25px 40px 0;
}
.business03_facility_box:nth-child(4n) {
  margin-right: 0;
}
.business03_facility_box figure img {
  width: 100%;
  height: auto;
}
.business03_facility_txt h3 {
  padding: 10px 0;
  border-bottom: solid 1px #ddd;
  line-height: 1.4;
  font-size: min(1.66vw,2rem);
  letter-spacing: 0.01em;
  margin-bottom: 15px;
}
.business03_facility_txt p {
  font-size: 1.4rem;
  letter-spacing: 0;
  line-height: 1.7;
  font-feature-settings: "palt";
}
  @media screen and (max-width: 999px) {
    #business03_facility {
      padding-bottom: 5.33vw;
    }
    .business03_facility_box {
      width: 100%;
      margin: 0 0 6.66vw 0;
    }
    .business03_facility_txt h3 {
      padding: 2.66vw 0;
      font-size: 4.26vw;
      margin-bottom: 3.33vw;
    }
    .business03_facility_txt p {
      font-size: 3.46vw;
    }
  }

/*----------------------------------------------------
  パックスターの事例 case
--------------------------------------------------- */
.case_list {
  padding: 60px 0 0 0;
}
.case_box {
  margin-bottom: 100px;
}
.case_box:last-child {
  margin-bottom: 0;
}
.case_box figure {
  position: relative;
  width: 48.5%;
  max-width: 580px;
}
.case_box figcaption {
  position: absolute;
  left: -20px;
  top: 20px;
  z-index: 5;
  background: #E5151F;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0;
  text-align: center;
  min-width: 190px;
  padding: 15px;
}
.case_txt {
  width: 46.7%;
  max-width: 560px;
}
.case_txt h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
  letter-spacing: 0.02em;
}
.case_cat {
  margin-bottom: 25px;
}
.case_cat span {
  display: inline-block;
  background: #F2F2F2;
  padding: 2px 20px;
  font-size: 1.5rem;
}
.case_detail dl {
  padding-bottom: 20px;
}
.case_detail dt {
  border-bottom: solid 1px #ddd;
  padding-bottom: 3px;
  margin-bottom: 12px;
}
.case_detail dt span {
  display: inline-block;
}
.case_detail dt b {
  display: inline-block;
  font-size: 1.7rem;
  font-weight: 500;
}
.case_detail dd {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
.case_txt .btn02 {
  margin-top: 12px;
}
  @media screen and (max-width: 999px) {
    .case_list {
      padding: 5.33vw 0 0 0;
    }
    .case_box {
      margin-bottom: 10.66vw;
    }
    .case_box figure {
      width: 100%;
      max-width: 100%;
      margin-bottom: 4vw;
    }
    .case_box figcaption {
      position: absolute;
      left: -2.66vw;
      top: 2.66vw;
      font-size: 4vw;
      min-width: 33.33vw;
      padding: 2.33vw;
    }
    .case_txt {
      width: 100%;
      max-width: 100%;
    }
    .case_txt h2 {
      font-size: 5.33vw;
      margin-bottom: 3.33vw;
    }
    .case_cat {
      margin-bottom: 4vw;
    }
    .case_cat span {
      padding: 0.66vw 4vw;
      font-size: 3.46vw;
    }
    .case_detail dl {
      padding-bottom: 5vw;
    }
    .case_detail dt {
      padding-bottom: 1.33vw;
      margin-bottom: 2.66vw;
    }
    .case_detail dt span img {
      width: 6.66vw;
      height: auto;
    }
    .case_detail dt b {
      font-size: 4.26vw;
      font-weight: 500;
    }
    .case_detail dd {
      font-size: 3.46vw;
    }
    .case_txt .btn02 {
      margin-top: 1.33vw;
    }
  }

/*----------------------------------------------------
  パックスターの強み advantage
--------------------------------------------------- */
.advantage_list {
  padding-bottom: 20px;
}
.advantage_box {
  padding-bottom: 50px;
}
.advantage_box .img_float_box {
  margin-bottom: 30px;
}
.advantage_box .img_float_txt {
  width: 48%;
  max-width: 580px;
  padding-top: 0;
}
.advantage_box .img_float_txt h2 {
  margin-bottom: 20px;
}
.advantage_box .img_float_box figure img {
  box-shadow: none;
}
.advantage_no {
  display: inline-block;
  margin-bottom: 22px;
  border: solid 1px #e5151f;
  color: #e5151f;
  padding: 3px 35px;
  font-size: 2.4rem;
  font-weight: 600;
}
  @media screen and (max-width: 999px) {
    .advantage_list {
      padding-bottom: 3.33vw;
    }
    .advantage_box {
      padding-bottom: 3.33vw;
    }
    .advantage_box .img_float_box {
      margin-bottom: 6.66vw;
    }
    .advantage_box .img_float_txt {
      width: 100%;
      max-width: 100%;
    }
    .advantage_box .img_float_txt p {
      letter-spacing: 0.01em;
    }
    .advantage_box .img_float_txt h2 {
      margin-bottom: 5vw;
    }
    .advantage_no {
      margin-bottom: 5vw;
      padding: 0.33vw 6.66vw;
      font-size: 5.8vw;
    }
  }

/*----------------------------------------------------
  企業情報 company
--------------------------------------------------- */
#company {
  padding-top: 60px;
}
.company01_box {
  padding-bottom: 60px;
}
.company01_box dl {
  width: 48%;
  max-width: 580px;
  margin: 0 18px 40px;
  border: solid 1px #ddd;
  padding: 10px;
}
.company01_box dt {
  background: #F0F0F0;
  padding: 3px 20px;
  font-size: 2.2rem;
}
.company01_box dd {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 15px;
  min-height: 150px;
}
.company01_box dd figure {
  text-align: center;
}
.company01_box dd li {
  font-size: 1.5rem;
  padding-left: 17px;
  text-indent: -17px;
}
  @media screen and (max-width: 999px) {
    #company {
      padding-top: 6.66vw;
    }
    .company01_box {
      padding-bottom: 6.66vw;
    }
    .company01_box dl {
      width: 100%;
      max-width: 100%;
      margin: 0 0 5.33vw;
      padding: 2.66vw;
    }
    .company01_box dt {
      padding: 1.33vw 4vw;
      font-size: 4.26vw;
    }
    .company01_box dd {
      display: block;
      padding: 5vw 0 2.66vw;
      min-height: auto;
    }
    .company01_box dd figure img {
      width: 60vw;
      height: auto;
    }
    .company01_box dd li {
      font-size: 3.46vw;
      letter-spacing: 0;
      padding-left: 3.73vw;
      text-indent: -3.73vw;
    }
  }

.company02_box {
  max-width: 1140px;
  margin: 0 auto 100px;
}
.company02_box figure {
  max-width: 250px;
}
.company02_box figure img {
  width: 100%;
  height: auto;
}
.company01_txt {
  width: calc(100% - 280px);
}
.company01_txt p {
  line-height: 2;
  letter-spacing: 0.05em;
}
.company01_txt .ceo_name {
  margin-top: 30px;
}
  @media screen and (max-width: 999px) {
    .company02_box {
      max-width: 100%;
      margin: 0 0 10.66vw 0;
    }
    .company02_box figure {
      max-width: 100%;
      text-align: center;
      margin-bottom: 5.33vw;
    }
    .company02_box figure img {
      width: 50vw;
    }
    .company01_txt {
      width: 100%;
    }
    .company01_txt p {
      line-height: 1.8;
      letter-spacing: 0;
    }
    .company01_txt .ceo_name {
      margin-top: 4.4vw;
      text-align: right;
    }
    .company01_txt .ceo_name img {
      width: 52vw;
      height: auto;
    }
  }

.company03_box {
  max-width: 1140px;
  margin: 0 auto 100px;
}
.tbl01 {
  letter-spacing: 0.05em;
}
.tbl01 th {
  width: 280px;
  padding: 18px 25px;
  text-align: left;
  font-weight: 500;
  background: #F0F0F0;
  border-top: dotted 1px #ccc;
  border-bottom: dotted 1px #ccc;
}
.tbl01 td {
  padding: 18px 25px;
  border-top: dotted 1px #ccc;
  border-bottom: dotted 1px #ccc;
}
#gmap {
  margin-top: 20px;
}
  @media screen and (max-width: 999px) {
    .company03_box {
      max-width: 100%;
      margin: 0 0 10.66vw 0;
    }
    .tbl01,
    .tbl01 tbody,
    .tbl01 tr,
    .tbl01 th,
    .tbl01 td {
      display: block;
      width: 100%;
    }
    .tbl01 {
      letter-spacing: 0;
    }
    .tbl01 th {
      padding: 2.66vw 4vw;
      border: none;
      font-size: 4vw;
    }
    .tbl01 td {
      padding: 4vw 0;
      border: none;
    }
    #gmap {
      margin-top: 3.33vw;
    }
    #gmap iframe {
      height: 70vw;
    }
  }

.company04_box {
  max-width: 1140px;
  margin: 0 auto 100px;
}
.company04_box dl {
  position: relative;
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.05em;
  padding-bottom: 20px;
}
.company04_box dl::after {
  position: absolute;
  left: 163px;
  top: 10px;
  content: "";
  width: 1px;
  height: calc(100%);
  background: #eee;
}
.company04_box dl:last-child::after {
  display: none;
}
.company04_box dt {
  position: relative;
  width: 170px;
}
.company04_box dt::after {
  position: absolute;
  right: 0;
  top: 9px;
  z-index: 5;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #999;
}
.company04_box dd {
  width: calc(100% - 200px);
}
  @media screen and (max-width: 999px) {
    .company04_box {
      max-width: 100%;
      margin: 0 auto 8vw;
    }
    .company04_box dl {
      display: block;
      letter-spacing: 0;
      padding-bottom: 4vw;
    }
    .company04_box dl::after {
      left: 1.45vw;
      top: 2.13vw;
    }
    .company04_box dt {
      width: 100%;
      padding-left: 5vw;
    }
    .company04_box dt::after {
      right: auto;
      left: 0;
      top: 2vw;
      width: 3vw;
      height: 3vw;
    }
    .company04_box dd {
      width: 100%;
      padding-left: 5vw;
    }
  }

/*----------------------------------------------------
  お問い合わせ contact
--------------------------------------------------- */
#contact {
  padding: 60px 0 120px;
}
  @media screen and (max-width: 999px) {
    #contact {
      padding: 6.66vw 0 12vw;
    }
  }

#contact_lead {
  padding-bottom: 50px;
}
.contact_lead_txt {
  text-align: center;
  font-weight: 500;
  font-size: 1.8rem;
}
.contact_lead_txt p {
  margin-bottom: 30px;
}
  @media screen and (max-width: 999px) {
    #contact_lead {
      padding-bottom: 8vw;
    }
    .contact_lead_txt {
      text-align: left;
      font-size: 3.73vw;
    }
    .contact_lead_txt p {
      margin-bottom: 3.33vw;
    }
  }

.contact_lead_number > div {
  padding-left: 70px;
  font-size: 3.4rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 20px;
}
.contact_lead_tel {
  background: url("../img/common/ico/ico_tel03.jpg") 0 center no-repeat;
}
.contact_lead_tel a {
  text-decoration: none;
  color: #000;
}
.contact_lead_fax {
  background: url("../img/common/ico/ico_fax01.jpg") 0 center no-repeat;
}
  @media screen and (max-width: 999px) {
    .contact_lead_number {
      text-align: center;
    }
    .contact_lead_number > div {
      display: inline-block;
      padding-left: 14vw;
      margin: 0 2.66vw;
      font-size: 7.2vw;
      font-weight: 900;
      letter-spacing: 0;
    }
    .contact_lead_tel {
      background: url("../img/common/ico/ico_tel03.jpg") 0 center no-repeat;
      background-size: 12vw auto;
    }
    .contact_lead_fax {
      background: url("../img/common/ico/ico_fax01.jpg") 0 center no-repeat;
      background-size: 12vw auto;
    }
  }

#contact_form {
  max-width: 1000px;
  margin: 0 auto;
}
.form_area table {
  margin-bottom: 40px;
  line-height: 1.6;
}
.form_area th {
  width: 300px;
  padding: 18px 20px;
  text-align: left;
  font-weight: 500;
  vertical-align: middle;
  border-bottom: dotted 1px #ddd;
  border-top: dotted 1px #ddd;
  background: #eeeeee;
}
.form_area th > span {
  display:block;
  position:relative;
  padding-right: 50px;
}
.form_area .require {
  position: absolute;
  color:#fff;
  background: #E5151F;
  font-style:normal;
  display:inline-block;
  font-size: 1.3rem;
  border-radius: 2px;
  width: 48px;
  line-height: 24px;
  text-align: center;
  right: 0;
  top: 2px;
}
.form_area td {
  padding: 18px 20px;
  border-bottom: dotted 1px #ddd;
  border-top: dotted 1px #ddd;
}
.form_area td .wpcf7-text, 
.form_area td textarea {
  padding: 13px 15px;
  background: #fff;
  border: solid 1px #ddd;
  border-radius: 0;
  width: 100%;
  margin: 8px 0;
  outline: none;
}
.form_area td textarea {
  height: 250px;
}
.form_area td .wpcf7-list-item {
  display: block;
  margin: 5px 0;
}
.form_area td .wpcf7-list-item-label {
  margin: 0 0 0 5px;
}
  @media screen and (max-width: 999px) {
    .form_area {
      max-width: 100%;
      padding: 0;
    }
    .form_area table,
    .form_area tbody,
    .form_area tr,
    .form_area th,
    .form_area td {
      display: block;
      width: 100%!important;
    }
    .form_area table {
      margin-bottom: 2.66vw;
    }
    .form_area th {
      max-width: 100%;
      padding: 2.66vw 3vw;
      font-size: 4vw;
    }
    .form_area th span {
      margin: 0;
      padding-right: 12vw;
    }
    .form_area .require {
      font-size: 3.46vw;
      width: 10vw;
      line-height: 6vw;
    }
    .form_area th .require {
      right: 0;
      top: calc(50% - 3vw);
    }
    .form_area td {
      padding: 3vw 0;
      border: none;
    }
    .form_area td .wpcf7-text,
    .form_area td textarea {
      padding: 2vw 3vw;
      margin: 0;
      font-size:max(3.46vw,1.6rem);
    }
    .form_area td textarea {
      height: 54vw;
    }
  }

.contact_files {
  padding: 8px 0;
}
.contact_note {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-top: 5px;
}
.entry_none {
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
}
.consent_box {
  margin-bottom: 40px;
}
.consent_box .wpcf7-list-item {
  margin: 0;
}
.consent_box .wpcf7-list-item-label {
  margin-left: 5px;
}
  @media screen and (max-width: 999px) {
    .form_area input[type="radio"],
    .form_area input[type="checkbox"] {
      transform: scale(1.5);
      vertical-align: middle;
    }
    .contact_files {
      padding: 2vw 0;
      font-size: 3.46vw;
    }
    .contact_note {
      font-size: 3.46vw;
      letter-spacing: 0;
      margin-top: 1.33vw;
    }
    .consent_box {
      margin-bottom: 6.66vw;
    }
  }
  @media screen and (max-width: 500px) {
    .form_area input[type="radio"],
    .form_area input[type="checkbox"] {
      transform: scale(1);
    }
  }

/*プレースホルダー*/
::-webkit-input-placeholder { color:#999; opacity: 1; }
:-moz-placeholder { color:#999; opacity: 1; }
::-moz-placeholder { color:#999; opacity: 1; }

:focus::-webkit-input-placeholder { color:transparent; }
:focus:-moz-placeholder { color:transparent; }
:focus::-moz-placeholder { color:transparent; }

  @media screen and (max-width: 999px) {
    ::-webkit-input-placeholder { color:#aaa; font-size: 3.46vw; }
    :-moz-placeholder { color:#666; font-size: 3.46vw; }
    ::-moz-placeholder { color:#666; font-size: 3.46vw; }
  }

/*ボタン*/
.submit-btn {
  position: relative;
  display: block;
  text-align: center;
}
.submit-btn input {
  display: inline-block;
  min-width: 320px;
  line-height: 60px;
  padding: 0 12px;
  border-radius: 30px;
  background-color: #E5151F;
  border: solid 1px #E5151F;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.08em;
  transition: all 0.2s ease-in-out 0s;
}
.submit-btn input:hover {
  background-color: #fff;
  color: #E5151F;
}
.submit-btn [disabled] {
  color: #999!important;
  opacity: 1!important;
  border: solid 1px #ccc!important;
  background-color: #ccc!important;
}
  @media screen and (max-width: 999px) {
    .submit-btn input {
      min-width: 74vw;
      line-height: 12.8vw;
      padding: 0 2.66vw;
      border-radius: 6.66vw;
      font-size: 4vw;
    }
  }

.wpcf7 .wpcf7-spinner {
  position: absolute;
  right: calc(50% - 35px)!important;
  bottom: -35px!important;
}
.wpcf7 .wpcf7-response-output {
  text-align: center!important;
}

.custom-wpcf7cp-confirm.wpcf7cp-form-hide > * {
  height: 0;
  padding: 0;
  margin: 0;
}
div#wpcf7cpcnf {
  position: relative!important;
}
div#wpcf7cpcnf table {
  margin-bottom: 40px;
}
div#wpcf7cpcnf th {
  width: 320px;
  padding: 18px 20px;
  text-align: left;
  font-weight: 500;
  vertical-align: middle;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
  background: #eeeeee;
}
div#wpcf7cpcnf th p {
  margin: 0;
}
div#wpcf7cpcnf td {
  padding: 18px 20px;
  border-bottom: solid 1px #ddd;
  border-top: solid 1px #ddd;
}
  @media screen and (max-width: 999px) {
    div#wpcf7cpcnf table,
    div#wpcf7cpcnf tbody,
    div#wpcf7cpcnf tr,
    div#wpcf7cpcnf th,
    div#wpcf7cpcnf td {
      display: block;
      width: 100%;
    }
    div#wpcf7cpcnf table {
      margin-bottom: 6.66vw;
    }
    div#wpcf7cpcnf th {
      padding: 2.66vw 4vw;
    }
    div#wpcf7cpcnf td {
      padding: 4vw 0;
    }
  }

.wpcf7cp-btns {
  text-align: center;
}
.wpcf7cp-btns button {
  display: inline-block;
  min-width: 320px;
  line-height: 60px;
  padding: 0 12px;
  margin: 0 15px;
  border-radius: 30px;
  background-color: #E5151F;
  border: solid 1px #E5151F;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 600;
  font-style: normal;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.08em;
  transition: all 0.2s ease-in-out 0s;
}
.wpcf7cp-btns button:hover {
  background-color: #fff;
  color: #E5151F;
}
.wpcf7cp-btns .wpcf7cp-cfm-edit-btn {
	background-color: #999;
  border: solid 1px #999;
}
.wpcf7cp-btns .wpcf7cp-cfm-edit-btn:hover {
  color: #999;
}
  @media screen and (max-width: 999px) {
    .wpcf7cp-btns button {
      min-width: 74vw;
      line-height: 12.8vw;
      padding: 0 2.66vw;
      border-radius: 6.66vw;
      font-size: 4vw;
      margin-bottom: 4vw;
    }
  }

/*----------------------------------------------------
  プライバシーポリシー privacy
--------------------------------------------------- */
#privacy {
  padding: 60px 0;
}
  @media screen and (max-width: 999px) {
    #privacy {
      padding: 6.66vw 0;
    }
  }

.privacy_lead {
  padding-bottom: 20px;
}
.privacy_lead p {
  margin-bottom: 30px;
}
.privacy_box {
  margin-bottom: 40px;
}
.privacy_box p {
  margin-bottom: 20px;
}
.privacy_box p:last-child {
  margin-bottom: 0;
}
  @media screen and (max-width: 999px) {
    .privacy_lead {
      padding-bottom: 3.33vw;
    }
    .privacy_lead p {
      margin-bottom: 5vw;
    }
    .privacy_box {
      margin-bottom: 6.66vw;
      letter-spacing: 0.01em;
    }
    .privacy_box p {
      margin-bottom: 3.33vw;
    }
    .privacy_box p:last-child {
      margin-bottom: 0;
    }
  }

/*----------------------------------------------------
  ページ名 slug
--------------------------------------------------- */
  @media screen and (max-width: 999px) {
  }

/*----------------------------------------------------
  お知らせ news
--------------------------------------------------- */

#news {
  padding: 60px 0 120px;
}
  @media screen and (max-width: 999px) {
    #news {
      padding: 6.66vw 0 12vw;
    }
  }

/*一覧*/
.news_archive_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 20px;
}
.news_post_box {
  position: relative;
  display: block;
  width: 100%;
  text-decoration: none;
  color: #000!important;
  padding: 12px 12px 40px;
  border: solid 1px #ddd;
  border-radius: 5px;
}
.news_post_box::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: url("../img/common/ico/ico_arrow02b.png") #E5151F center center no-repeat;
  background-size: 16px auto;
  z-index: 5;
}
.news_post_box figure {
  margin-bottom: 10px;
}
.news_post_box figure img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.news_post_txt time {
  color: #999;
  font-size: 1.5rem;
}
.news_post_txt h4 {
  letter-spacing: 0.05em;
  transition: all 0.2s ease-in-out 0s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.news_post_box:hover .news_post_txt h4 {
  color: #E5151F;
}
  @media screen and (max-width: 1159px) {
    .news_archive_list {
      gap: 30px;
    }
  }
  @media screen and (max-width: 999px) {
    .news_archive_list {
      grid-template-columns: 1fr;
      gap: 5.33vw;
      padding-bottom: 2.66vw;
    }
    .news_post_box {
      width: 100%;
      padding: 3vw 3vw 9.33vw;
    }
    .news_post_box::after {
      right: 2.66vw;
      bottom: 2.66vw;
      width: 6vw;
      height: 6vw;
      background-size: 4vw auto;
    }
    .news_post_box figure {
      margin-bottom: 2.66vw;
    }
    .news_post_txt time {
      font-size: 3.46vw;
    }
  }

/*詳細*/
.news_single_ttl {
  position: relative;
  font-size: 2.8rem;
  margin-bottom: 45px;
}
.news_single_ttl span {
  position: relative;
  padding-left: 58px;
  display: inline-block;
  margin-right: 20px;
}
.news_single_ttl span::before {
  position: absolute;
  left: 0;
  top: 14px;
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #E5151F;
}
.news_single_ttl span::after {
  position: absolute;
  left: 0;
  top: 22px;
  content: "";
  width: 50px;
  height: 2px;
  background: url("../img/common/bg/dot_line01.png") 0 center repeat-x;
}
  @media screen and (max-width: 999px) {
    .news_single_ttl {
      font-size: 4.8vw;
      margin-bottom: 5.33vw;
    }
    .news_single_ttl span {
      padding-left: 8vw;
      margin-right: 4vw;
    }
    .news_single_ttl span::before {
      top: 2.33vw;
      width: 3.33vw;
      height: 3.33vw;
    }
    .news_single_ttl span::after {
      top: 3.66vw;
      width: 7.4vw;
      height: 1px;
      background: url("../img/common/bg/dot_line01.png") right center repeat-x;
      background-size: auto 1px;
    }
  }

#news_single {
  max-width: 1000px;
  margin: 0 auto;
}
.news_single_head time {
  display: block;
  margin-bottom: 5px;
  color: #999;
}
.news_single_img {
  margin-bottom: 50px;
}
.news_single_img img {
  width: 100%;
  height: auto;
}
  @media screen and (max-width: 999px) {
    #news_single {
      max-width: 100%;
    }
    .news_single_head time {
      margin-bottom: 1.33vw;
    }
    .news_single_img {
      margin-bottom: 6.66vw;
    }
  }

#relation_archive {
  padding-top: 90px;
}
#relation_archive .btn01 {
  padding-top: 40px;
}
  @media screen and (max-width: 999px) {
    #relation_archive {
      padding-top: 12vw;
      padding-bottom: 2.66vw;
    }
    #relation_archive .btn01 {
      padding-top: 5vw;
    }
  }

/*----------------------------------------------------
  共通WP
--------------------------------------------------- */
/* img */
.aligncenter {
  display: block;
  margin: 0 auto;
  text-align: center;
}
.alignright { float: right; }
.alignleft { float: left; }
img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}
img.alignleft {
  margin-right: 25px;
}
img.alignright {
  margin-left: 25px;
}

/*投稿詳細用*/

.entry-content:after {
  content: ""; 
  display: block; 
  clear: both;
}
.entry-content h1 {
  font-size: 2.4rem;
  color: #fff;
  background: #E5151F;
  padding: 8px 20px;
  margin-bottom: 30px;
}
  @media screen and (max-width: 999px) {
    .entry-content h1 {
      font-size: 4.4vw;
      padding: 2.66vw 3.33vw;
      margin-bottom: 4.6vw;
    }
  }

.entry-content h2 {
  font-size: 2.4rem;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: solid 2px #E5151F;
}
  @media screen and (max-width: 999px) {
    .entry-content h2 {
      font-size: 4.4vw;
      padding-bottom: 2.66vw;
      margin-bottom: 4.6vw;
      border-bottom: solid 2px #E5151F;
    }
  }

.entry-content h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
  @media screen and (max-width: 999px) {
    .entry-content h3 {
      font-size: 4.4vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content h4 {
  font-size: 2.1rem;
  margin-bottom: 15px;
}
  @media screen and (max-width: 999px) {
    .entry-content h4 {
      font-size: 4.2vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content h5 {
  font-size: 2rem;
  margin-bottom: 15px;
}
  @media screen and (max-width: 999px) {
    .entry-content h5 {
      font-size: 4.1vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content h6 {
  font-size: 1.9rem;
  margin-bottom: 15px;
}
  @media screen and (max-width: 999px) {
    .entry-content h6 {
      font-size: 4vw;
      margin-bottom: 3.33vw;
    }
  }

.entry-content p {
  margin-bottom: 30px;
}
  @media screen and (max-width: 999px) {
    .entry-content p {
      margin-bottom: 5vw;
    }
  }

.entry-content img {
  margin-bottom:30px;
}
  @media screen and (max-width: 999px) {
    .entry-content img {
      margin-bottom: 5vw;
    }
  }

.entry-content ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.entry-content ul li {
  list-style-type: disc;
}
.entry-content ul li ul {
  margin-bottom: 10px;
  font-size: 93%;
}
.entry-content ul li ul li {
  list-style-type:circle;
}
  @media screen and (max-width: 999px) {
    .entry-content ul {
      margin-bottom: 5vw;
      padding-left: 5.4vw;
    }
    .entry-content ul li ul {
      margin-bottom: 2vw;
    }
  }

.entry-content ol {
  counter-reset: section;
  margin-bottom: 30px;
}
.entry-content ol li {
  list-style: none;
}
.entry-content ol > li:before {
  content : counters(section, '-') '. ';
  counter-increment : section;
}
.entry-content ol li ol {
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 93%;
}
  @media screen and (max-width: 999px) {
    .entry-content ol {
      margin-bottom: 5vw;
    }
    .entry-content ol li ol {
      padding-left: 5.4vw;
      margin-bottom: 2vw;
    }
  }

.entry-content table {
  width:100%;
  margin:0 0 35px 0;
}
.entry-content th {
  text-align: left;
  padding:7px 10px;
  border:solid 1px #ddd;
}
.entry-content td {
  padding:7px 10px;
  border:solid 1px #ddd;
}
  @media screen and (max-width: 999px) {
    .entry-content table {
      margin:0 0 5vw 0;
      font-size: 93%;
    }
    .entry-content th {
      padding:2vw;
    }
    .entry-content td {
      padding:2vw;
    }
  }

.entry-content table img {
  margin-bottom: 0;
}

.entry-content blockquote {
  position: relative;
  border: solid 4px #d7d7d7;
  padding: 20px 20px 20px 55px;
  margin-bottom: 35px;
}
.entry-content blockquote::before {
  position: absolute;
  left: 18px;
  top: 20px;
  content: "“";
  line-height: 1;
  font-size: 6rem;
  color: #d7d7d7;
}
  @media screen and (max-width: 999px) {
    .entry-content blockquote {
      border: solid 3px #d7d7d7;
      padding: 4vw 3.33vw 4vw 9.33vw;
      margin-bottom: 5vw;
    }
    .entry-content blockquote::before {
      left: 2vw;
      top: 4vw;
      font-size: 12.33vw;
    }
  }

.entry-content u {
  text-decoration: underline;
}

.entry-content .wp-caption.alignright {
  margin-left: 25px;
}
.entry-content .wp-caption.alignleft {
  margin-right: 25px;
}
  @media screen and (max-width: 999px) {
    .entry-content .wp-caption {
      width: 100%!important;
      float: none!important;
      margin: 0 0 5vw 0!important;
    }
  }

.entry-content .wp-caption img {
  margin-bottom: 5px;
}
.entry-content .wp-caption p {
  font-size: 90%;
  color: #757575;
  font-style: italic;
}
  @media screen and (max-width: 999px) {
    .entry-content .wp-caption img {
      margin-bottom: 2vw;
    }
  }

/*ページ分割ナビ*/
.wp-pagenavi {
  padding: 80px 0 0 0;
  text-align: center;
  overflow: hidden;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: inline-block;
  width: 46px;
  line-height: 44px;
  background: #fff;
  border: 1px solid #000;
  color: #000;
  margin: 0 4px 12px 4px;
  text-decoration: none;
  font-size: 2rem;
}
.wp-pagenavi span {
  background: #000;
  color: #fff;
}
.wp-pagenavi a:hover {
  background: #000;
  color: #fff;
  border: 1px solid #000;
}
.wp-pagenavi .first, .wp-pagenavi .last {
  line-height: 1;
  width: auto;
  border: none;
}
.wp-pagenavi .first:hover, .wp-pagenavi .last:hover {
  border: none;
  color: #333;
  background: none;
  text-decoration: underline;
}
.wp-pagenavi .extend {
  line-height: 1;
  width: auto;
  border: none;
  color: #333;
  background: none;
}
  @media screen and (max-width: 999px) {
    .wp-pagenavi {
      padding: 8vw 0 0 0;
    }
    .wp-pagenavi a, .wp-pagenavi span {
      width: 8vw;
      line-height: 8vw;
      margin: 0 0.33vw 2.33vw 0.33vw;
      font-size: 4vw;
    }
  }

/*記事詳細ナビ*/
.wp-detailnavi {
  position: relative;
  padding: 80px 0 0 0;
  text-align: center;
}
.wp-detailnavi a {
  display: block;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.wp-detailnavi a:hover {
  color: #E5151F;
}
.prev_link {
  position: absolute;
  left: 0;
  bottom: 0;
}
.next_link {
  position: absolute;
  right: 0;
  bottom: 0;
}
  @media screen and (max-width: 999px) {
    .wp-detailnavi {
      padding-top: 12vw;
    }
  }

/*----------------------------------------------------
  404 Not Found
--------------------------------------------------- */
#notfound {
  padding-bottom: 60px;
}
#notfound p {
  padding-bottom: 20px;
}
#notfound .btn01 {
  margin-top: 40px;
}
  @media screen and (max-width: 999px) {
    #notfound {
      padding-bottom: 10.66vw;
    }
    #notfound p {
      padding-bottom: 4vw;
    }
    #notfound .btn01 {
      margin-top: 6.66vw;
    }
  }
