@charset "UTF-8";
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
a,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

html {
  scroll-behavior: smooth;
}

.container {
  overflow: hidden;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP", sans-serif;
  color: #292626;
  position: relative;
  padding-top: 75px;
}
.container a {
  display: block;
}
.container img {
  -o-object-fit: cover;
     object-fit: cover;
}
.container .cta .ctaBtn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #E6001C;
  border: 1px solid #E6001C;
  padding: 8px 20px;
  border-radius: 50px;
}
.container .commonSection {
  margin-bottom: 45px;
}
.container .commonSection .commonHeading {
  font-size: 40px;
  color: #E6001C;
}
.container .commonSection .commonHeading span {
  color: #000000;
}
.container .commonSection .commonSub {
  font-size: 12px;
  line-height: 1;
}
@media (max-width: 480px) {
  .container .commonSection {
    margin-bottom: 25px;
  }
  .container .commonSection .commonHeading {
    font-size: 28px;
  }
}
.container .pageHeading {
  font-size: 24px;
  border-top: 2px solid #292626;
  border-bottom: 2px solid #292626;
  text-align: center;
  padding: 12px 0;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .container .pageHeading {
    font-size: 20px;
    padding: 8px 0;
    margin-bottom: 20px;
  }
}

.header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 10;
}
.header .headerInner {
  width: calc(100% - 50px);
  max-width: 1750px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  padding: 0 25px;
  gap: 8px;
  position: relative;
}
.header .headerInner .headerLogo {
  width: 350px;
  height: auto;
  margin-right: auto;
}
.header .headerInner .headerList {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: 12px;
}
.header .headerInner .headerList .headerItem {
  position: relative;
}
.header .headerInner .headerList .headerItem a {
  font-size: 14px;
  font-weight: 500;
  padding: 28px 0;
}
.header .headerInner .headerList .headerItem a:hover + .headerItem_child,
.header .headerInner .headerList .headerItem .headerItem_child:hover {
  display: block;
}
.header .headerInner .headerList .headerItem .headerItem_child {
  position: absolute;
  top: 76px;
  left: -39px;
  transition: all 1s;
  background-color: #fff;
  display: none;
}
.header .headerInner .headerList .headerItem .headerItem_child li {
  padding: 0;
}
.header .headerInner .headerList .headerItem .headerItem_child li a {
  display: block;
  text-align: center;
  padding: 12px 10px;
  border-bottom: 1px solid #444;
  font-size: 12px;
  font-weight: bold;
  width: 110px;
}
.header .headerInner .headerList .headerItem .headerItem_child li a:hover {
  background-color: #dcdcdc;
}
.header .headerInner .headerSearch {
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.header .headerInner .headerSearch .headerSearchMain {
  display: flex;
  gap: 20px;
  visibility: hidden;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #fff;
  padding: 24px 0;
  position: absolute;
  bottom: -125px;
  left: 0;
  transition: 0.3s;
}
.header .headerInner .headerSearch .headerSearchMain .headersearchItem .headerSearchText {
  text-align: center;
  margin-bottom: 5px;
}
.header .headerInner .headerSearch .headerSearchMain.show {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}
.header .headerInner .headerLanguage {
  border: 1px solid #B6B6B6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
}
.header .headerInner .headerLanguage span {
  color: rgba(0, 0, 0, 0.3019607843);
}
.header .headerInner .headerLanguage .en {
  color: rgba(0, 0, 0, 0.3019607843);
}
.header .headerInner .headerMenu {
  display: none;
}
.header .headerInner .headerMenu .openbtn1 {
  position: relative;
  background-color: #E40117;
  cursor: pointer;
  width: 75px;
  height: 75px;
}
.header .headerInner .headerMenu .openbtn1 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 65%;
}
.header .headerInner .headerMenu .openbtn1 span:nth-of-type(1) {
  top: 26px;
}
.header .headerInner .headerMenu .openbtn1 span:nth-of-type(2) {
  top: 38px;
}
.header .headerInner .headerMenu .openbtn1 span:nth-of-type(3) {
  top: 50px;
}
.header .headerInner .headerMenu .openbtn1.active span:nth-of-type(1) {
  top: 30px;
  left: 16px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.header .headerInner .headerMenu .openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.header .headerInner .headerMenu .openbtn1.active span:nth-of-type(3) {
  top: 42px;
  left: 16px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}
.header .headerInner .cta .ctaBtn {
  padding: 0;
}
.header .headerInner .cta .ctaBtn span:nth-child(1) {
  text-align: center;
  display: inline-block;
  background-color: #E6001C;
  padding: 11px 10px;
  color: #fff;
  border-radius: 50px 0 0 50px;
  font-size: 12px;
}
.header .headerInner .cta .ctaBtn span:nth-child(2) {
  text-align: center;
  display: inline-block;
  background-color: #ffffff;
  padding: 11px 10px;
  padding-left: 4px;
  border-radius: 0 50px 50px 0;
  font-size: 12px;
}

@media (max-width: 1400px) {
  .header .headerInner .headerLogo {
    width: 250px;
  }
  .header .headerInner .headerList .headerItem a {
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .header .headerInner {
    width: calc(100% - 25px);
    padding-right: 0;
  }
  .header .headerInner .headerLogo {
    width: 200px;
  }
  .header .headerInner .headerList {
    display: none;
  }
  .header .headerInner .cta {
    display: none;
  }
  .header .headerInner .headerMenu {
    display: block;
  }
}
@media (max-width: 768px) {
  .header .headerInner .headerSearch .headerSearchMain {
    bottom: -223px;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .header .headerInner .headerSearch {
    display: none;
  }
  .header .headerInner .headerLanguage {
    display: none;
  }
}
.menu {
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 75px;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  z-index: 8;
}
.menu .menuInner {
  width: 100%;
  padding: 12px;
  text-align: center;
}
.menu .menuInner .menuSearch {
  display: none;
}
.menu .menuInner .menuSearch .menuSearchMain {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  background-color: #fff;
  padding: 24px 0;
}
.menu .menuInner .menuSearch .menuSearchMain .menusearchItem .menuSearchText {
  font-size: 16px;
  margin-bottom: 5px;
}
.menu .menuInner .menuLanguage {
  border: 1px solid #B6B6B6;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
  display: none;
}
.menu .menuInner .menuLanguage span {
  color: rgba(0, 0, 0, 0.3019607843);
}
.menu .menuInner .menuLanguage .en {
  color: rgba(0, 0, 0, 0.3019607843);
}
.menu .menuInner .menuList {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}
.menu .menuInner .menuList .menuItem {
  font-size: 16px;
  color: #E40117;
}
.menu .menuInner .cta {
  display: inline-flex !important;
  border-radius: 50px !important;
  margin-top: 30px;
  padding: 10px 30px;
}

.menu.active {
  display: flex;
}

@media (max-width: 480px) {
  .menu .menuInner {
    padding: 16px;
  }
  .menu .menuInner .menuSearch {
    display: block;
  }
  .menu .menuInner .menuLanguage {
    display: inline-flex;
  }
}
.fv {
  width: 100vw;
  max-width: 1800px;
  margin: auto;
  height: 500px;
}
.fv .fvInner {
  height: 100%;
}
.fv .fvInner .slick-list {
  height: 100%;
}
.fv .fvInner .fvSlider {
  width: 100%;
  height: 100%;
}
.fv .fvInner .fvSlider .fvItem {
  width: 100vw;
  height: 500px;
  position: relative;
}
.fv .fvInner .fvSlider .fvItem .fvBg {
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 30%;
  transform: translateY(-50%);
}
.fv .fvInner .fvSlider .fvItem .fvBg img {
  height: 100%;
}
.fv .fvInner .fvSlider .fvItem .fvHeading {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-size: 45px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 4px 8px 24px #382617;
}

@media (max-width: 1280px) {
  .fv {
    height: 400px;
  }
  .fv .fvInner .fvSlider .fvItem {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .fv {
    margin-bottom: 0;
    height: 70vh;
  }
  .fv .fvInner .fvSlider .fvItem {
    height: 70vh;
  }
  .fv .fvInner .fvSlider .fvItem .fvBg {
    height: 100vh;
  }
  .fv .fvInner .fvSlider .fvHeading {
    font-size: 32px;
  }
  .fv .fvInner .fvSlider .fvHeading .tab {
    display: block;
  }
}
@media (max-width: 480px) {
  .fv {
    height: 50vh;
  }
  .fv .fvInner .fvSlider .fvItem {
    height: 50vh;
  }
  .fv .fvInner .fvSlider .fvItem .fvHeading {
    font-size: 25px;
    left: auto;
    padding: 20px;
  }
  .fv .fvInner .fvSlider .fvItem .fvHeading .sp {
    display: block;
  }
}
.overlay {
  position: fixed;
  right: 0;
  bottom: 15px;
  z-index: 7;
}
.overlay .overlayList {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.overlay .overlayList .overlayItem {
  width: 150px;
  height: 44px;
  display: flex;
  align-items: center;
}
.overlay .overlayList .overlayItem .overlayIcon {
  width: 35px;
  height: 44px;
  background-color: #f6f4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px 0px 0px 4px;
}
.overlay .overlayList .overlayItem .overlayIcon img {
  width: 20px;
  height: auto;
}
.overlay .overlayList .overlayItem .overlayHeading {
  width: calc(100% - 59px);
  height: 100%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0 12px;
}

.fv.commonPage {
  height: 200px;
  background-image: url(../image/commonPageBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(0);
  margin-bottom: 0;
}
.fv.commonPage .fvInner {
  align-items: center;
  justify-content: center;
  display: flex;
}
.fv.commonPage .fvInner .fvHeading {
  text-shadow: none;
  font-size: 45px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 768px) {
  .fv.commonPage .fvInner .fvHeading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .fv.commonPage {
    height: 150px;
  }
  .fv.commonPage .fvInner .fvHeading {
    font-size: 28px;
  }
}
.info {
  width: 100%;
  max-width: 1800px;
  margin: auto;
  padding: 80px 0;
}
.info .infoInner {
  text-align: center;
}
.info .infoInner .infoList {
  width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 45px;
}
.info .infoInner .infoList .infoItem {
  width: calc(33% - 28px);
  position: relative;
}
.info .infoInner .infoList .infoItem .infoLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.info .infoInner .infoList .infoItem .infoImg {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}
.info .infoInner .infoList .infoItem .infoDetail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.info .infoInner .infoList .infoItem .infoDetail .infoDate {
  font-size: 12px;
  color: #949292;
}
.info .infoInner .infoList .infoItem .infoDetail .infoCategory {
  font-size: 12px;
  color: #949292;
  border: 1px solid #949292;
  border-radius: 2px;
  padding: 2px 12px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.info .infoInner .infoList .infoItem .infoText {
  font-size: 18px;
  text-align: left;
}

@media (max-width: 1080px) {
  .info .infoInner .infoList {
    width: 96%;
    gap: 24px;
  }
  .info .infoInner .infoList .infoItem {
    width: 33%;
  }
  .info .infoInner .infoList .infoItem .infoText {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .info .infoInner .infoList {
    flex-direction: column;
    max-width: 80%;
    margin: auto;
    gap: 45px;
  }
  .info .infoInner .infoList .infoItem {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .info {
    padding: 40px 0;
  }
  .info .infoInner .infoList {
    max-width: 90%;
  }
}
.news {
  width: 96%;
  max-width: 800px;
  margin: auto;
  padding: 80px 0;
}
.news .newsInner .newsTop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
}
.news .newsInner .newsTop .commonSection {
  margin-bottom: 0;
}
.news .newsInner .newsTop .newsDetail {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news .newsInner .newsTop .newsDetail img {
  width: 16px;
  height: 16px;
  transform: translateY(1px);
}
.news .newsInner .newsList {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.news .newsInner .newsList .newsItem {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.news .newsInner .newsList .newsItem .newsLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news .newsInner .newsList .newsItem .newsDetail {
  display: flex;
  align-items: center;
  gap: 24px;
}
.news .newsInner .newsList .newsItem .newsDetail .newsDate {
  font-size: 12px;
  color: #949292;
}
.news .newsInner .newsList .newsItem .newsDetail .newsCategory {
  font-size: 12px;
  color: #949292;
  border: 1px solid #949292;
  border-radius: 2px;
  padding: 2px 12px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.news .newsInner .newsList .newsItem .newsHeading {
  width: 75%;
  font-size: 16px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .news {
    max-width: 80%;
  }
  .news .newsInner .newsList .newsItem .newsDetail {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .news .newsInner .newsList .newsItem .newsHeading {
    width: 85%;
  }
}
@media (max-width: 480px) {
  .news {
    padding: 40px 0;
    max-width: 90%;
  }
  .news .newsInner .newsList .newsItem .newsHeading {
    font-size: 14px;
  }
}
.product {
  width: 100%;
  max-width: 1800px;
  margin: auto;
  padding: 80px 0;
  background-image: url(../image/productBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.product .productInner {
  max-width: 820px;
  margin: auto;
  text-align: center;
}
.product .productInner .productBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.product .productInner .productBox .productBoxItem {
  width: calc(50% - 23px);
}
.product .productInner .productBox .productBoxItem .commonSection {
  margin-bottom: 30px;
}
.product .productInner .productBox .productBoxItem .commonSection .commonSub {
  text-align: left;
  font-size: 20px;
  border-left: 5px solid #E6001C;
  line-height: 2;
  padding-left: 12px;
}
.product .productInner .productBox .productBoxItem .subCategoryList {
  text-align: left;
}
.product .productInner .productBox .productBoxItem .subCategoryList li a {
  padding-left: 1em;
  text-indent: -1em;
}
.product .productInner .productBox .productBoxItem .subCategoryList_heading {
  display: inline-block;
  border-bottom: solid 3px #E6001C;
  padding-bottom: 2px;
}
.product .productInner .productBox .productBoxItem .subCategoryList_last {
  margin-top: 30px;
}
.product .productInner .productBox.green-business {
  width: 750px;
  margin: auto;
}
.product .productInner .productBox.green-business .productBoxItem {
  width: calc(50% - 15px);
}
.product .productInner .productBox.overseas-business {
  width: auto;
  margin: auto;
  justify-content: center;
}
.product .productInner .productBox.overseas-business .productBoxItem {
  width: auto;
}

@media (max-width: 1200px) {
  .product .productInner {
    max-width: 700px;
  }
  .product .productInner .productBox.green-business {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .product .productInner {
    max-width: 80%;
    flex-direction: column;
    align-items: center;
  }
  .product .productInner .productTop {
    text-align: center;
  }
  .product .productInner .productTop .cta {
    display: none;
  }
  .product .productInner .cta.sp {
    display: block;
    margin-top: 50px;
  }
  .product .productInner .productBox {
    flex-direction: column;
  }
  .product .productInner .productBox .productBoxItem {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .product {
    background-position: left;
    background-size: inherit;
    padding: 40px 0;
  }
  .product .productInner {
    max-width: 90%;
  }
  .product .productInner .productBox {
    gap: 20px;
  }
  .product .productInner .productBox .productBoxItem {
    line-height: 1.8;
  }
  .product .productInner .productBox .productBoxItem .commonSection .commonSub {
    font-size: 20px;
  }
  .product .productInner .productBox .productBoxItem .subCategoryList {
    font-size: 18px;
  }
  .product .productInner .productBox .productBoxItem .subCategoryList li a .br {
    display: block;
  }
  .product .productInner .productBox .productBoxItem .subCategoryList .subCategoryList_heading {
    font-size: 20px;
  }
  .product .productInner .productBox.green-business {
    gap: 10px;
  }
  .product .productInner .productBox.green-business .productBoxItem {
    width: calc(50% - 5px);
  }
}
.search {
  width: 96%;
  max-width: 1200px;
  margin: auto;
  padding: 80px 0;
}
.search .searchInner {
  position: relative;
  margin-bottom: 100px;
}
.search .searchInner .commonSection {
  position: absolute;
  top: 0;
  left: 0;
  width: 600px;
  text-align: left;
  margin-bottom: 0;
}
.search .searchInner .commonSection .searchSub {
  font-size: 16px;
  margin-top: 40px;
}
.search .searchInner .searchMap {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
}
.search .searchInner .searchMap .mapArea {
  display: inline-block;
  text-align: center;
  position: relative;
}
.search .searchInner .searchMap .mapArea .areaBtn {
  display: inline-block;
  font-size: 14px;
  color: #fff;
  padding: 2px 12px;
  margin-bottom: 5px;
}
.search .searchInner .searchMap .mapArea .areaList {
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}
.search .searchInner .searchMap .mapArea .areaList .areaItem {
  font-size: 12px;
}
.search .searchInner .searchMap .mapArea .areaList.col1 .areaItem {
  width: 100%;
}
.search .searchInner .searchMap .mapArea .areaList.col2 .areaItem {
  width: 50%;
}
.search .searchInner .searchMap .mapArea .areaList.col3 .areaItem {
  width: 33%;
}
.search .searchInner .searchMap .mapArea.hokkaido {
  position: absolute;
  top: 170px;
  right: 80px;
}
.search .searchInner .searchMap .mapArea.hokkaido .areaBtn {
  background-color: #004B8C;
}
.search .searchInner .searchMap .mapArea.hokkaido .areaBorder1 {
  width: 19px;
  height: 2px;
  background-color: #004B8C;
  position: absolute;
  top: 13px;
  left: -19px;
  border-bottom-left-radius: 50px;
}
.search .searchInner .searchMap .mapArea.hokkaido .areaBorder2 {
  width: 66px;
  height: 2px;
  background-color: #004B8C;
  position: absolute;
  top: -15px;
  left: -66px;
  transform: rotate(62deg);
  border-bottom-right-radius: 50px;
}
.search .searchInner .searchMap .mapArea.tohoku {
  position: absolute;
  top: 310px;
  right: 120px;
}
.search .searchInner .searchMap .mapArea.tohoku .areaBtn {
  background-color: #007A75;
}
.search .searchInner .searchMap .mapArea.tohoku .areaBorder1 {
  width: 25px;
  height: 2px;
  background-color: #007A75;
  position: absolute;
  top: 13px;
  left: -19px;
  border-bottom-left-radius: 50px;
}
.search .searchInner .searchMap .mapArea.tohoku .areaBorder2 {
  width: 36px;
  height: 2px;
  background-color: #007A75;
  position: absolute;
  top: 29px;
  left: -43px;
  transform: rotate(-68deg);
  border-bottom-right-radius: 50px;
}
.search .searchInner .searchMap .mapArea.chubu {
  position: absolute;
  top: 310px;
  right: 430px;
}
.search .searchInner .searchMap .mapArea.chubu .areaBtn {
  background-color: #D2A400;
}
.search .searchInner .searchMap .mapArea.chubu .areaBorder1 {
  width: 46px;
  height: 2px;
  background-color: #D2A400;
  position: absolute;
  top: 13px;
  right: -40px;
  border-top-right-radius: 50px;
}
.search .searchInner .searchMap .mapArea.chubu .areaBorder2 {
  width: 169px;
  height: 2px;
  background-color: #D2A400;
  position: absolute;
  top: 95px;
  right: -105px;
  transform: rotate(103deg);
  border-top-left-radius: 50px;
}
.search .searchInner .searchMap .mapArea.kanto {
  position: absolute;
  top: 480px;
  right: 170px;
}
.search .searchInner .searchMap .mapArea.kanto .areaBtn {
  background-color: #519C2D;
}
.search .searchInner .searchMap .mapArea.kanto .areaBorder1 {
  width: 25px;
  height: 2px;
  background-color: #519C2D;
  position: absolute;
  top: 13px;
  left: -19px;
  border-bottom-left-radius: 50px;
}
.search .searchInner .searchMap .mapArea.kanto .areaBorder2 {
  width: 24px;
  height: 2px;
  background-color: #519C2D;
  position: absolute;
  top: 3px;
  left: -34px;
  transform: rotate(70deg);
  border-bottom-right-radius: 50px;
}
.search .searchInner .searchMap .mapArea.kinki {
  position: absolute;
  top: 620px;
  right: 390px;
}
.search .searchInner .searchMap .mapArea.kinki .areaBtn {
  background-color: #E16000;
}
.search .searchInner .searchMap .mapArea.kinki .areaBorder1 {
  width: 110px;
  height: 2px;
  background-color: #E16000;
  position: absolute;
  top: -47px;
  left: 5px;
  transform: rotate(80deg);
}
.search .searchInner .searchMap .mapArea.chugoku {
  position: absolute;
  top: 450px;
  right: 650px;
}
.search .searchInner .searchMap .mapArea.chugoku .areaBtn {
  background-color: #DB1F1E;
}
.search .searchInner .searchMap .mapArea.shikoku {
  position: absolute;
  top: 670px;
  right: 540px;
}
.search .searchInner .searchMap .mapArea.shikoku .areaBtn {
  background-color: #EF7EBB;
}
.search .searchInner .searchMap .mapArea.kyusyu {
  position: absolute;
  top: 640px;
  right: 700px;
}
.search .searchInner .searchMap .mapArea.kyusyu .areaBtn {
  background-color: #8743B7;
}
.search .searchInner .searchMap .mapArea.kyusyu .areaBorder1 {
  width: 19px;
  height: 2px;
  background-color: #8743B7;
  position: absolute;
  top: 14px;
  right: -13px;
  border-top-right-radius: 50px;
}
.search .searchInner .searchMap .mapArea.kyusyu .areaBorder2 {
  width: 85px;
  height: 2px;
  background-color: #8743B7;
  position: absolute;
  top: -27px;
  right: -62px;
  transform: rotate(100deg);
  border-bottom-right-radius: 50px;
}

@media (max-width: 1280px) {
  .search .searchInner .commonSection {
    position: static;
    width: 100%;
    margin-bottom: 50px;
  }
  .search .searchInner .searchMap {
    max-width: 550px;
  }
  .search .searchInner .searchMap .mapArea.hokkaido {
    top: 120px;
    right: 20px;
  }
  .search .searchInner .searchMap .mapArea.hokkaido .areaBorder1 {
    width: 12px;
    top: 13px;
    left: -12px;
  }
  .search .searchInner .searchMap .mapArea.hokkaido .areaBorder2 {
    width: 49px;
    top: -10px;
    left: -42px;
    transform: rotate(75deg);
  }
  .search .searchInner .searchMap .mapArea.tohoku {
    top: 210px;
    right: 50px;
  }
  .search .searchInner .searchMap .mapArea.tohoku .areaBorder1 {
    width: 11px;
    top: 12px;
    left: -5px;
  }
  .search .searchInner .searchMap .mapArea.tohoku .areaBorder2 {
    width: 24px;
    top: 23px;
    left: -19px;
    transform: rotate(-75deg);
  }
  .search .searchInner .searchMap .mapArea.chubu {
    top: 190px;
    right: 350px;
  }
  .search .searchInner .searchMap .mapArea.chubu .areaBorder1 {
    width: 39px;
    top: 13px;
    right: -33px;
    border-top-right-radius: 50px;
  }
  .search .searchInner .searchMap .mapArea.chubu .areaBorder2 {
    width: 134px;
    top: 79px;
    right: -110px;
    transform: rotate(81deg);
  }
  .search .searchInner .searchMap .mapArea.kanto {
    top: 340px;
    right: 80px;
  }
  .search .searchInner .searchMap .mapArea.kanto .areaBorder1 {
    width: 13px;
    top: 14px;
    left: -7px;
    border-bottom-left-radius: 50px;
  }
  .search .searchInner .searchMap .mapArea.kanto .areaBorder2 {
    width: 31px;
    top: -1px;
    left: -24px;
    transform: rotate(80deg);
    border-bottom-right-radius: 50px;
  }
  .search .searchInner .searchMap .mapArea.kinki {
    top: 420px;
    right: 240px;
  }
  .search .searchInner .searchMap .mapArea.kinki .areaBorder1 {
    width: 70px;
    top: -29px;
    left: 24px;
    transform: rotate(77deg);
  }
  .search .searchInner .searchMap .mapArea.chugoku {
    top: 300px;
    right: 430px;
  }
  .search .searchInner .searchMap .mapArea.shikoku {
    top: 470px;
    right: 350px;
  }
  .search .searchInner .searchMap .mapArea.kyusyu {
    top: 450px;
    right: 490px;
  }
  .search .searchInner .searchMap .mapArea.kyusyu .areaBorder1 {
    width: 20px;
    top: 13px;
    right: -14px;
    border-top-right-radius: 50px;
  }
  .search .searchInner .searchMap .mapArea.kyusyu .areaBorder2 {
    width: 73px;
    top: -22px;
    right: -57px;
    transform: rotate(102deg);
    border-bottom-right-radius: 50px;
  }
}
@media (max-width: 768px) {
  .search {
    max-width: 90%;
  }
  .search .searchInner {
    margin-bottom: 50px;
  }
  .search .searchInner .searchMap {
    max-width: 100%;
  }
  .search .searchInner .searchMap .mapList {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px 0;
    margin-top: 50px;
  }
  .search .searchInner .searchMap .mapList .mapArea {
    width: 33%;
    position: static !important;
  }
  .search .searchInner .searchMap .mapList .mapArea .areaBtn {
    padding: 2px 10px;
  }
  .search .searchInner .searchMap .mapList .mapArea .areaList {
    width: auto;
    justify-content: center;
    white-space: nowrap;
  }
  .search .searchInner .searchMap .mapList .mapArea .areaList.col2 .areaItem {
    width: calc(50% - 12px);
  }
  .search .searchInner .searchMap .mapList .mapArea .areaList.col3 .areaItem {
    width: calc(50% - 12px);
  }
  .search .searchInner .searchMap .mapArea .areaBorder1 {
    display: none;
  }
  .search .searchInner .searchMap .mapArea .areaBorder2 {
    display: none;
  }
}
@media (max-width: 480px) {
  .search {
    padding: 40px 0;
    max-width: 90%;
  }
  .search .searchInner .searchMap .mapList .mapArea {
    width: 50%;
  }
}
.case {
  width: 100%;
  background-color: #F6F4F4;
  padding: 80px 0;
}
.case .caseInner {
  max-width: 1000px;
  margin: auto;
}
.case .caseInner .commonSection {
  text-align: center;
}
.case .caseInner .caseList {
  width: 1000px;
  margin: auto;
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
}
.case .caseInner .caseList .caseItem {
  width: calc(33% - 28px);
  position: relative;
}
.case .caseInner .caseList .caseItem .caseLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.case .caseInner .caseList .caseItem .caseImg {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}
.case .caseInner .caseList .caseItem .caseDetail {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.case .caseInner .caseList .caseItem .caseDetail .caseDate {
  font-size: 12px;
  color: #949292;
}
.case .caseInner .caseList .caseItem .caseDetail .caseCategory {
  font-size: 12px;
  color: #949292;
  border: 1px solid #949292;
  border-radius: 2px;
  padding: 2px 12px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
.case .caseInner .caseList .caseItem .caseText {
  font-size: 18px;
  text-align: left;
}
.case .caseInner .cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1080px) {
  .case .caseInner {
    max-width: none;
  }
  .case .caseInner .caseList {
    width: 96%;
    gap: 24px;
  }
  .case .caseInner .caseList .caseItem {
    width: calc(33% - 14px);
  }
  .case .caseInner .caseList .caseItem .caseText {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .case .caseInner .caseList {
    flex-direction: column;
    max-width: 80%;
    margin: auto;
    gap: 45px;
  }
  .case .caseInner .caseList .caseItem {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .case {
    padding: 40px 0;
  }
  .case .caseInner .caseList {
    max-width: 90%;
  }
}
.ir {
  width: 100%;
  max-width: 1800px;
  margin: auto;
}
.ir .irInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ir .irInner .irTop {
  width: 50%;
  max-width: 570px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 0 64px;
}
.ir .irInner .irTop .irList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}
.ir .irInner .irTop .irList .irItem {
  width: calc(33% - 10px);
  background-color: #F6F4F4;
  color: #000000;
  text-align: center;
  padding: 16px 0;
}
.ir .irInner .irImg {
  width: 50%;
}

@media (max-width: 1360px) {
  .ir {
    padding: 80px 0;
  }
  .ir .irInner {
    flex-direction: column;
    gap: 50px;
  }
  .ir .irInner .irTop {
    max-width: none;
    width: 700px;
    padding: 0;
  }
  .ir .irInner .irImg {
    width: 700px;
  }
}
@media (max-width: 768px) {
  .ir .irInner .irTop {
    width: 80%;
  }
  .ir .irInner .irTop .irList .irItem {
    width: calc(50% - 10px);
  }
  .ir .irInner .irImg {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .ir {
    padding: 40px 0;
  }
  .ir .irInner {
    gap: 30px;
  }
  .ir .irInner .irTop {
    width: 90%;
  }
  .ir .irInner .irImg {
    width: 90%;
  }
}
@media (max-width: 375px) {
  .ir .irInner .irTop .irList {
    gap: 8px;
  }
  .ir .irInner .irTop .irList .irItem {
    width: calc(50% - 4px);
    font-size: 14px;
  }
}
.footer {
  background-color: #CC0022;
  width: 100%;
  max-width: 1800px;
  margin: auto;
  padding: 50px 0;
}
.footer .footerInner {
  width: 90%;
  max-width: 900px;
  margin: auto;
  margin-bottom: 80px;
}
.footer .footerInner .footerTop {
  width: 280px;
  height: auto;
  margin-bottom: 20px;
}
.footer .footerInner .footerMain {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
}
.footer .footerInner .footerMain .footerMainList {
  width: 280px;
}
.footer .footerInner .footerMain .footerMainList .footerMainItem {
  border-bottom: 0.5px solid #fff;
  color: #fff;
}
.footer .footerInner .footerMain .footerMainList .footerMainItem a {
  padding: 15px 0;
  position: relative;
}
.footer .footerInner .footerMain .footerMainList .footerMainItem a::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.footer .footerInner .footerMain .footerSubBox {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.footer .footerInner .footerMain .footerSubBox .footerSubBoxItem .footerSubHeading {
  display: inline-block;
  padding: 5px 10px;
  font-size: 18px;
  color: #fff;
  border-left: 0.5px solid #fff;
  border-bottom: 0.5px solid #fff;
  margin-bottom: 20px;
}
.footer .footerInner .footerMain .footerSubBox .footerSubBoxItem .footerSubList {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 12px;
}
.footer .footerInner .footerMain .footerSubBox .footerSubBoxItem .footerSubList .footerSubItem {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.footer .footerInner .footerMain .footerSubBox .footerSubBoxItem .footerSubList .footerSubItem ul {
  display: flex;
  flex-direction: column;
  grid-area: 10px;
  margin-top: 10px;
  padding-left: 2em;
}
.footer .footerText {
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

@media (max-width: 960px) {
  .footer .footerInner .footerTop {
    margin: auto;
    margin-bottom: 20px;
  }
  .footer .footerInner .footerMain {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 600px) {
  .footer .footerInner .footerMain .footerSubBox {
    flex-direction: column;
    align-items: center;
    width: 280px;
  }
  .footer .footerInner .footerMain .footerSubBox .footerSubBoxItem {
    width: 100%;
  }
}
.dummy {
  position: relative;
  display: none;
}

.dummy:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9;
}

.breadcrumbs {
  width: 90%;
  max-width: 1800px;
  margin: auto;
  padding: 15px 0;
  color: #555;
  font-size: 14px;
}
.breadcrumbs a {
  display: inline-block;
  cursor: pointer;
}

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0 !important;
  border-color: #b7b5b5 !important;
}
.wp-pagenavi .current {
  background-color: #CC0022;
  color: #fff;
  border-color: #CC0022 !important;
}

.companyCategory {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding-top: 50px;
}
.companyCategory .categoryList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.companyCategory .categoryList .categoryItem {
  width: calc(25% - 10px);
  background-color: #F6F4F4;
  color: #000000;
  text-align: center;
  padding: 16px 0;
}

@media (max-width: 1080px) {
  .companyCategory {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .companyCategory .categoryList {
    flex-wrap: wrap;
    justify-content: center;
  }
  .companyCategory .categoryList .categoryItem {
    width: calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .companyCategory .categoryList .categoryItem {
    padding: 12px 0;
  }
}
.companyMessage {
  padding: 50px 0 100px;
  padding-top: 150px;
  margin-top: -100px;
}
.companyMessage .commonSection {
  text-align: center;
}
.companyMessage .commonSection .commonHeading {
  color: #292626;
}
.companyMessage .messageInner {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.companyMessage .messageInner .messageImg {
  width: 40%;
}
.companyMessage .messageInner .messageMain {
  width: 60%;
}
.companyMessage .messageInner .messageMain .messageHeading {
  font-size: 24px;
  margin-bottom: 20px;
}
.companyMessage .messageInner .messageMain .messageText {
  font-weight: 500;
  margin-bottom: 20px;
}
.companyMessage .messageInner .messageMain .messageName {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  color: #949292;
}

@media (max-width: 1200px) {
  .companyMessage {
    max-width: 90%;
    margin: auto;
  }
}
@media (max-width: 960px) {
  .companyMessage .messageInner {
    flex-direction: column;
    gap: 30px;
  }
  .companyMessage .messageInner .messageImg {
    width: 100%;
  }
  .companyMessage .messageInner .messageMain {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .companyMessage {
    padding: 40px 0;
  }
  .companyMessage .messageInner .messageMain .messageHeading {
    font-size: 20px;
  }
}
.companyOverview {
  width: 100%;
  max-width: 960px;
  margin: auto;
  padding-top: 100px;
  margin-top: -100px;
}
.companyOverview .commonSection {
  text-align: center;
}
.companyOverview .commonSection .commonHeading {
  color: #292626;
}
.companyOverview .overviewList {
  display: flex;
  flex-direction: column;
}
.companyOverview .overviewList .overviewItem {
  border-bottom: 2px solid #D3D3D3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.companyOverview .overviewList .overviewItem .overviewHeading {
  font-size: 18px;
  color: #B6B6B6;
  width: 20%;
  text-align: center;
}
.companyOverview .overviewList .overviewItem .overviewText {
  width: 80%;
}
.companyOverview .overviewList .overviewItem:first-child {
  border-top: 2px solid #D3D3D3;
}

@media (max-width: 1080px) {
  .companyOverview {
    max-width: 90%;
  }
  .companyOverview .overviewList .overviewItem .overviewHeading {
    width: 25%;
  }
  .companyOverview .overviewList .overviewItem .overviewText {
    width: 75%;
  }
}
@media (max-width: 480px) {
  .companyOverview {
    padding-top: 40px;
  }
  .companyOverview .overviewList .overviewItem {
    gap: 12px;
  }
  .companyOverview .overviewList .overviewItem .overviewHeading {
    font-size: 16px;
  }
}
.companyOther {
  width: 100%;
  max-width: 1800px;
  margin: auto;
}
.companyOther .otherList {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.companyOther .otherList .otherItem {
  width: 33.333%;
  position: relative;
}
.companyOther .otherList .otherItem .otherImg {
  width: 100%;
  height: 100%;
}
.companyOther .otherList .otherItem .otherImgLayer {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: rgba(148, 146, 146, 0.4);
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.companyOther .otherList .otherItem .otherHeading {
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 768px) {
  .companyOther .otherList .otherItem {
    width: 50%;
  }
}
@media (max-width: 480px) {
  .companyOther .otherList .otherItem .otherHeading {
    font-size: 18px;
  }
  .companyOther .otherList .otherItem .otherImgLayer {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
.office {
  padding: 80px 0;
  padding-top: 180px;
  margin-top: -100px;
}
.office .officeInner .commonSection {
  margin-bottom: 80px;
  text-align: center;
}
.office .officeInner .commonSection .commonHeading {
  color: #292626;
}
.office .officeInner .officeTop {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 20px;
  font-size: 20px;
}
.office .officeInner .officeMain {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0;
}
.office .officeInner .officeMain .officeImg {
  width: calc(100% - 260px);
}
.office .officeInner .officeMain .officeList {
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.office .officeInner .officeMain .officeList .officeItem .officeHeading {
  font-size: 20px;
  color: #fff;
  background-color: #E6001C;
  padding: 10px 30px;
  margin-bottom: 10px;
  text-align: center;
}
.office .officeInner .officeMain .officeList .officeItem .officeDetail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  font-size: 16px;
}
.office .officeInner .officeMain .officeList .officeItem .officeDetail a {
  border-bottom: 2px solid #0000ee;
}
.office .officeInner .officeMain .officeList .officeItem .officeDetail a:hover {
  animation: zoom 0.3s;
}

@media (max-width: 1080px) {
  .office .officeInner .officeMain .officeList {
    gap: 30px;
  }
  .office .officeInner .officeMain .officeList .officeItem .officeDetail {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .office .officeInner .officeMain {
    flex-direction: column;
  }
  .office .officeInner .officeMain .officeImg {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .office {
    padding: 40px 0;
  }
  .office .officeInner .officeMain {
    gap: 30px;
  }
  .office .officeInner .officeMain .officeList .officeItem .officeHeading {
    font-size: 18px;
  }
}
.mission {
  width: 100%;
  max-width: 1800px;
  margin: auto;
  padding: 0 0 80px;
  padding-top: 100px;
  margin-top: -100px;
}
.mission .missionInner .commonSection {
  text-align: center;
}
.mission .missionInner .commonSection .commonHeading {
  color: #292626;
}
.mission .missionInner .missionHeading {
  font-size: 24px;
  color: #E6001C;
  text-align: center;
  line-height: 2;
  margin-bottom: 80px;
}
.mission .missionInner .missionBox {
  width: calc(90% - 100px);
  max-width: 800px;
  position: relative;
  padding: 50px 50px 35px;
  border: 1px solid #949292;
  margin: auto;
}
.mission .missionInner .missionBox .missionCatch {
  font-size: 20px;
  color: #382617;
  border: 1px solid #949292;
  padding: 5px 25px;
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  white-space: nowrap;
}
.mission .missionInner .missionBox .missionText {
  font-size: 16px;
  line-height: 1.8;
  color: #382617;
}

@media (max-width: 768px) {
  .mission .missionInner .missionHeading {
    font-size: 20px;
  }
  .mission .missionInner .missionHeading .br-tab {
    display: block;
  }
}
@media (max-width: 480px) {
  .mission {
    padding: 0 0 40px;
    padding-top: 100px;
  }
  .mission .missionInner .missionHeading {
    font-size: 18px;
  }
  .mission .missionInner .missionHeading .br-sp {
    display: block;
  }
  .mission .missionInner .missionBox {
    width: calc(90% - 60px);
    padding: 40px 30px 30px;
  }
  .mission .missionInner .missionBox .missionCatch {
    font-size: 18px;
    top: -22px;
  }
}
@media (max-width: 400px) {
  .mission .missionInner .missionBox .missionCatch {
    text-align: center;
    top: -38px;
  }
  .mission .missionInner .missionBox .missionCatch .br-sp {
    display: block;
  }
}
.history {
  width: 100%;
  max-width: 1800px;
  margin: auto;
  padding: 0 0 80px;
  padding-top: 100px;
  margin-top: -100px;
}
.history .historyInner .commonSection {
  text-align: center;
}
.history .historyInner .commonSection .commonHeading {
  color: #292626;
}
.history .historyInner .historyCatch {
  width: 90%;
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  font-size: 16px;
  color: #382617;
}
.history .historyInner .historyBox {
  width: calc(90% - 200px);
  max-width: 900px;
  background-color: #F6F4F4;
  padding: 50px 100px 50px 100px;
  margin: auto;
}
.history .historyInner .historyBox .historyList .historyItem {
  border-left: 1px solid #949292;
  padding: 20px 0;
  padding-left: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}
.history .historyInner .historyBox .historyList .historyItem .title {
  font-size: 18px;
  font-weight: 700;
  width: 130px;
}
.history .historyInner .historyBox .historyList .historyItem .detail {
  width: calc(100% - 130px);
  font-size: 14px;
}
.history .historyInner .historyBox .historyList .historyItem:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #E6001C;
  top: 50%;
  left: -6.5px;
  transform: translateY(-50%);
  position: absolute;
}

@media (max-width: 1080px) {
  .history .historyInner .historyBox {
    width: calc(90% - 140px);
    padding: 50px 70px 50px 70px;
  }
}
@media (max-width: 768px) {
  .history .historyInner .historyBox {
    width: calc(90% - 80px);
    padding: 30px 40px 30px 40px;
  }
  .history .historyInner .historyBox .historyList .historyItem {
    padding-left: 20px;
  }
  .history .historyInner .historyBox .historyList .historyItem .title {
    font-size: 16px;
    width: 120px;
  }
  .history .historyInner .historyBox .historyList .historyItem .detail {
    width: calc(100% - 120px);
  }
}
@media (max-width: 480px) {
  .history {
    padding: 0 0 40px;
    padding-top: 100px;
  }
  .history .historyInner .historyCatch {
    margin-bottom: 30px;
  }
  .history .historyInner .historyBox {
    width: calc(90% - 60px);
    padding: 30px;
  }
  .history .historyInner .historyBox .historyList .historyItem {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .history .historyInner .historyBox .historyList .historyItem .title {
    width: 100%;
    font-size: 18px;
  }
  .history .historyInner .historyBox .historyList .historyItem .detail {
    width: 100%;
  }
}
@keyframes zoom {
  50% {
    transform: scale(1.05);
  }
}
.productCategory {
  padding-top: 50px;
  width: 90%;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 50px;
}
.productCategory .commonSection {
  text-align: center;
}
.productCategory .commonSection .commonHeading {
  color: #292626;
}
.productCategory .categoryList {
  max-width: 800px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 24px;
  flex-wrap: wrap;
}
.productCategory .categoryList .categoryItem {
  width: calc(25% - 18px);
  background-color: #F6F4F4;
  color: #000000;
  text-align: center;
  padding: 16px 0;
}

@media (max-width: 1080px) {
  .productCategory .categoryList {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .productCategory .categoryList {
    gap: 10px;
  }
  .productCategory .categoryList .categoryItem {
    width: calc(33% - 6px);
  }
}
@media (max-width: 480px) {
  .productCategory {
    padding-top: 40px;
    margin-bottom: 50px;
  }
  .productCategory .categoryList .categoryItem {
    width: calc(50% - 5px);
    padding: 12px 0;
  }
}
.productAll {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-bottom: 80px;
  padding-top: 50px;
}
.productAll .productWrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
}
.productAll .productWrap .productSub {
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.productAll .productWrap .productSub .productBox {
  background-color: #F6F4F4;
  border-top: 2px solid #292626;
  border-bottom: 2px solid #292626;
  padding: 20px 15px;
}
.productAll .productWrap .productSub .productBox .commonSection {
  margin-bottom: 30px;
}
.productAll .productWrap .productSub .productBox .commonSection .commonHeading {
  font-size: 24px;
  color: #292626;
}
.productAll .productWrap .productSub .productBox .commonSection .commonSub {
  font-size: 10px;
}
.productAll .productWrap .productSub .productBox .subCategoryList {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 16px;
}
.productAll .productWrap .productSub .productBox .subCategoryList .child {
  padding-left: 15px;
}
.productAll .productWrap .productSub .productBox .subCategoryList .subCategoryItem.current {
  background-color: #f8dee1;
  color: #E6001C;
}
.productAll .productWrap .productMain {
  padding-top: 0;
  margin: 0 auto;
}
.productAll .productWrap .productMain .productSubTitle {
  font-size: 20px;
  border-left: 5px solid #000;
  padding-left: 10px;
  margin-bottom: 15px;
}
.productAll .productWrap .productMain .allList {
  display: flex;
  justify-content: flex-start;
  gap: 40px 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.productAll .productWrap .productMain .allList .allItem {
  width: calc(25% - 19px);
  position: relative;
}
.productAll .productWrap .productMain .allList .allItem .allLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.productAll .productWrap .productMain .allList .allItem .allImg {
  margin-bottom: 10px;
  position: relative;
}
.productAll .productWrap .productMain .allList .allItem .allImg .allCategoryList {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}
.productAll .productWrap .productMain .allList .allItem .allImg .allCategoryList .allCategory {
  display: inline-block;
  font-size: 10px;
  color: #949292;
  border: 1px solid #949292;
  padding: 1px 10px;
  border-radius: 2px;
  background-color: #fff;
}
.productAll .productWrap .productMain .allList .allItem .allImg img {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}
.productAll .productWrap .productMain .allList .allItem .allName {
  text-align: left;
}
.productAll .productWrap .productMain .allList:last-child {
  margin-bottom: 0;
}

.productAll.pt0 {
  padding-top: 0;
}

@media (max-width: 1200px) {
  .productAll {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .productAll .productWrap {
    flex-direction: column-reverse;
  }
  .productAll .productWrap .productSub {
    width: 100%;
  }
  .productAll .productWrap .productSub .productBox {
    padding: 30px;
  }
  .productAll .productWrap .productMain {
    width: 100%;
    max-width: 100%;
  }
  .productAll .productWrap .productMain .allList .allItem {
    width: calc(33% - 16px);
  }
  .productAll .productWrap.productSingle {
    flex-direction: column-reverse;
  }
}
@media (max-width: 480px) {
  .productAll {
    padding-bottom: 40px;
  }
  .productAll .productWrap .productMain .productSubTitle {
    font-size: 18px;
  }
  .productAll .productWrap .productMain .allList {
    gap: 15px 10px;
  }
  .productAll .productWrap .productMain .allList .allItem {
    width: calc(50% - 5px);
  }
}
.productMain {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding-top: 60px;
}
.productMain .productTitle {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.productMain .productImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
  position: relative;
}
.productMain .productImg .productCategoryList {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
}
.productMain .productImg .productCategoryList .productCategory {
  width: auto;
  display: inline-block;
  font-size: 10px;
  color: #949292;
  border: 1px solid #949292;
  padding: 1px 10px;
  border-radius: 2px;
  margin: 0;
  background-color: #fff;
}
.productMain .productContent .productItem {
  margin-bottom: 50px;
}
.productMain .productContent .productItem h4 {
  padding: 15px;
  font-size: 20px;
  background-color: #F6F4F4;
  margin-bottom: 30px;
}
.productMain .productContent .productItem h5 {
  font-size: 20px;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  margin-bottom: 30px;
}
.productMain .productContent .productItem h5:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #949292;
  position: absolute;
  top: 0;
  left: 0;
}
.productMain .productContent .productItem p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
.productMain .productContent .productItem img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}
.productMain .productContent .table-text {
  display: none;
}
.productMain .productContact {
  background-color: #F6F4F4;
  padding: 40px;
  margin-bottom: 10px;
}
.productMain .productContact .contactBox {
  background-color: #fff;
  padding: 32px 0;
  text-align: center;
}
.productMain .productContact .contactBox .commonSection {
  margin-bottom: 30px;
}
.productMain .productContact .contactBox .commonSection .commonHeading {
  color: #292626;
}
.productMain .productContact .contactBox .cta .ctaBtn {
  padding: 8px 40px;
}

@media (max-width: 1080px) {
  .productMain {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .productMain {
    padding-top: 40px;
  }
  .productMain .productTitle {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .productMain .productImg {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
  }
  .productMain .productImg img {
    margin-bottom: 0 !important;
  }
  .productMain .productContent .table-text {
    display: inline-block;
    background-color: #E6001C;
    color: #fff;
    padding: 0.1em 0.2em;
    margin-bottom: 10px !important;
  }
}
.productIntroduction .productInner .productMain {
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding-top: 50px;
  padding-bottom: 50px;
}
.productIntroduction .productInner .productMain .productHeading {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent .productHeading {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent h2 {
  border-left: 5px solid #E6001C;
  padding-left: 10px;
  font-size: 24px;
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .productContent h3 {
  font-size: 18px;
  color: #E6001C;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .productContent p {
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent p.link a {
  color: #0000EE;
}
.productIntroduction .productInner .productMain .productContent img {
  display: block;
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent img.classify-img {
  max-width: 500px;
  margin: auto;
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent .wp-block-table {
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent .wp-block-video {
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent .pdfemb-viewer {
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent .wp-block-media-text__content p {
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .productContent .wp-block-buttons {
  text-align: center;
}
.productIntroduction .productInner .productMain .productContent .wp-block-button {
  margin-bottom: 50px;
}
.productIntroduction .productInner .productMain .productContent .wp-block-button__link.wp-element-button {
  background-color: #E6001C;
}
.productIntroduction .productInner .productMain .product_hc .hcHeading {
  font-size: 32px;
  color: #292626;
  background: linear-gradient(transparent 70%, #E3F5B9 70%);
  margin-bottom: 12px;
}
.productIntroduction .productInner .productMain .product_hc .hcSubHeading {
  font-size: 20px;
  color: #3E8A5B;
}
.productIntroduction .productInner .productMain .product_hc .hcFeature {
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_hc .hcFeature .featureList {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.productIntroduction .productInner .productMain .product_hc .hcFeature .featureList .featureItem {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_hc .hcFeature .featureList .featureItem p {
  margin-bottom: 0;
  text-indent: -1em;
  padding-left: 1em;
}
.productIntroduction .productInner .productMain .product_hc .hcFeature .featureList .featureItem p span {
  color: #439860;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand {
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable thead {
  background-color: #a8dadc;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable thead th {
  padding: 12px 15px;
  text-align: center;
  background-color: #BDEDF4;
  border-right: 2px solid #E2F6EA;
  border-top: 2px solid #E2F6EA;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable thead th:first-child {
  border-left: 2px solid #E2F6EA;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr {
  border-bottom: 2px solid #E2F6EA;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr:nth-child(1) {
  background-color: #F8FEFD;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr:nth-child(2) {
  background-color: #FDFEFA;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr:nth-child(3) {
  background-color: #fff;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr:nth-child(4) {
  background-color: #FCFEEB;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr:nth-child(5) {
  background-color: #F9EFF8;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr:nth-child(6) {
  background-color: #F8FEFD;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr:nth-child(7) {
  background-color: #FCF5F7;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
  border-right: 2px solid #E2F6EA;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable tbody tr td:first-child {
  border-left: 2px solid #E2F6EA;
}
.productIntroduction .productInner .productMain .product_hc .hcBrand .brandTable td:first-child {
  width: 25%;
}
.productIntroduction .productInner .productMain .product_hc .hcElution {
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_hc .hcElution .elutionBox {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.productIntroduction .productInner .productMain .product_hc .hcElution .elutionBox .elutionImg {
  width: 60%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_hc .hcElution .elutionBox .elutionText {
  width: 40%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_hc .hcMechanism {
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_hc .hcMechanism .mechanismTop {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.productIntroduction .productInner .productMain .product_hc .hcMechanism .mechanismTop .mechanismImg {
  width: 60%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_hc .hcMechanism .mechanismTop .mechanismText {
  width: 40%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_hc .hcMechanism .mechanismText {
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .product_hc .hcMechanism .mechanismBox {
  display: flex;
  gap: 15px;
}
.productIntroduction .productInner .productMain .product_hc .hcMechanism .mechanismBox .mechanismItem .mechanismImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_hc .hcMechanism .mechanismBox .mechanismItem .mechanismText {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_hc .hcEffect .effectBox {
  display: flex;
  gap: 15px;
}
.productIntroduction .productInner .productMain .product_hc .hcEffect .effectBox .effextItem {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_hc .hcEffect .effectBox .effextItem .effectImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_hc .hcEffect .effectBox .effextItem .effectText {
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .product_hc .hcEffect .effectText {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ms .msHeading {
  font-size: 24px;
  color: #585656;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.productIntroduction .productInner .productMain .product_ms .msHeading span {
  background-color: #4470B3;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 15px;
  color: #fff;
}
.productIntroduction .productInner .productMain .product_ms .msSubheading {
  color: #585656;
  margin-bottom: 15px;
}
.productIntroduction .productInner .productMain .product_ms .msSubheading span {
  color: #4470B3;
}
.productIntroduction .productInner .productMain .product_ms .msAbout {
  background-color: #F4F8DF;
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_ms .msAbout .aboutType {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_ms .msAbout .aboutType .typeHeading {
  display: inline-block;
  font-size: 18px;
  background-color: #E38832;
  padding: 12px 20px;
  border-radius: 15px;
  color: #fff;
  margin-bottom: 0;
  white-space: nowrap;
}
.productIntroduction .productInner .productMain .product_ms .msAbout .aboutType .typeList .typeItem {
  color: #585656;
}
.productIntroduction .productInner .productMain .product_ms .msAbout .aboutType .typeList .typeItem span {
  color: #E38832;
}
.productIntroduction .productInner .productMain .product_ms .msAbout .aboutBox {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background-color: #fff;
  border-radius: 15px;
  padding: 15px 20px;
}
.productIntroduction .productInner .productMain .product_ms .msAbout .aboutBox .aboutText {
  color: #585656;
  width: 40%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ms .msAbout .aboutBox .aboutText .aboutTitle {
  display: block;
  font-size: 18px;
}
.productIntroduction .productInner .productMain .product_ms .msAbout .aboutBox .aboutImg {
  width: 60%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ms .msManure {
  background-color: #F4F8DF;
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_ms .msManure .manureList {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-top: 30px;
}
.productIntroduction .productInner .productMain .product_ms .msManure .manureList .manureItem {
  width: 50%;
  color: #585656;
}
.productIntroduction .productInner .productMain .product_ms .msManure .manureList .manureItem .aboutImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ms .msManure .manureList .manureItem span:last-child {
  display: table;
  margin-left: auto;
}
.productIntroduction .productInner .productMain .product_ms .msManure .manureList .manureItem .manureText {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ms .msManure .manureList .manureItem .manureText span {
  color: #4470B3;
}
.productIntroduction .productInner .productMain .product_ms .msFilm {
  background-color: #F4F8DF;
  padding: 20px 25px;
  border-radius: 15px;
}
.productIntroduction .productInner .productMain .product_ms .msFilm .filmText {
  color: #585656;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ms .msFilm .filmImg {
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .product_ms .msFilm .filmTable {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_ms .msFilm thead th {
  padding: 12px 15px;
  text-align: center;
  font-weight: bold;
  color: #585656;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.productIntroduction .productInner .productMain .product_ms .msFilm tbody tr td {
  padding: 12px 15px;
  border-bottom: 1px solid #ddd;
}
.productIntroduction .productInner .productMain .product_ms .msFilm tbody tr td.step {
  background-color: #467ab3;
  color: white;
  font-weight: bold;
  text-align: center;
  width: 25%;
}
.productIntroduction .productInner .productMain .product_ms .msFilm tbody tr td .highlight {
  color: #E18930;
  font-weight: bold;
}
.productIntroduction .productInner .productMain .product_ms .msFilm tbody tr td .note {
  font-size: 0.9em;
  color: #585656;
}
.productIntroduction .productInner .productMain .product_ic .icHeading {
  font-size: 24px;
  color: #585656;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.productIntroduction .productInner .productMain .product_ic .icHeading span {
  background-color: #4470B3;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 15px;
  color: #fff;
}
.productIntroduction .productInner .productMain .product_ic .icSubheading {
  color: #585656;
  margin-bottom: 15px;
}
.productIntroduction .productInner .productMain .product_ic .icSubheading span.orange {
  color: #E59B37;
}
.productIntroduction .productInner .productMain .product_ic .icSubheading span.blue {
  color: #4470B4;
}
.productIntroduction .productInner .productMain .product_ic .icDifference {
  background-color: #F7F3E5;
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem .differenceHeading {
  color: #585656;
  background-color: #fff;
  padding: 2px 0;
  text-align: center;
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem .differenceBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem .differenceBox .differenceImg {
  width: 30%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem .differenceBox .differenceMain {
  width: 70%;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem .differenceBox .differenceMain .differenceText {
  color: #585656;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem .differenceBox .differenceMain .differenceTitle {
  font-size: 24px;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem:first-child .differenceHeading {
  border: 2px solid #75BCE5;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem:first-child .differenceBox .differenceMain .differenceText span {
  color: #75BCE5;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem:first-child .differenceBox .differenceMain .differenceTitle {
  color: #75BCE5;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem:last-child .differenceHeading {
  border: 2px solid #E59B37;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem:last-child .differenceBox .differenceMain .differenceText span {
  color: #E59B37;
}
.productIntroduction .productInner .productMain .product_ic .icDifference .differenceList .differenceItem:last-child .differenceBox .differenceMain .differenceTitle {
  color: #E59B37;
}
.productIntroduction .productInner .productMain .product_ic .icAbout {
  background-color: #F7F3E5;
  padding: 20px 25px;
  border-radius: 15px;
  margin-bottom: 80px;
}
.productIntroduction .productInner .productMain .product_ic .icAbout .aboutImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ic .icAbout .aboutText {
  color: #585656;
  text-align: center;
  margin-bottom: 0;
  font-size: 20px;
}
.productIntroduction .productInner .productMain .product_ic .icAbout .aboutText span.orange {
  color: #E59B37;
}
.productIntroduction .productInner .productMain .product_ic .icAbout .aboutText span.blue {
  color: #4470B4;
}
.productIntroduction .productInner .productMain .product_ic .icAbout .border {
  width: 100%;
  height: 1px;
  background-color: transparent;
  border-top: 1px dotted #585656;
  border-width: 3px;
  margin: 20px 0;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace {
  margin-bottom: 60px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .gwHeading {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  background-color: #8BC0E8;
  margin-bottom: 15px;
  padding: 5px 40px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceText {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceText span {
  color: #8BC0E8;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceText.normal {
  text-indent: 0;
  padding-left: 0;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceImg {
  margin-bottom: 0;
  display: block;
  max-width: 200px;
  margin: 24px auto;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceImg_full {
  max-width: 100%;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable caption {
  text-align: left;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable th,
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable td {
  border: 1px solid #ccc;
  vertical-align: middle;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable thead th {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable tbody tr td {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable2 {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable2 thead th {
  background-color: #e0e0e0;
  vertical-align: middle;
  border: 1px solid #ccc;
  padding: 4px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable2 tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable2 tbody tr:nth-child(even) {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable2 tbody td {
  border: 1px solid #ccc;
  vertical-align: middle;
  padding: 4px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceTable2 tbody td:first-child {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceColumn {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceItem {
  width: 50%;
}
@media (max-width: 768px) {
  .productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox .woodaceItem {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceBox {
    flex-direction: column;
  }
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceText {
  margin-bottom: 40px;
  text-indent: -1em;
  padding-left: 1em;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceText.normal {
  text-indent: 0;
  padding-left: 0;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceTitle {
  font-size: 20px;
  color: #727070;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .gwBoxheading {
  width: 100%;
  margin-bottom: 20px;
  margin-top: 24px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .gwBoxheading h4 {
  display: inline-block;
  background-color: #8BC0E8;
  padding: 2px 12px;
  color: #fff;
  font-size: 18px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .gwBoxheading:first-of-type {
  margin-top: 0;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceSlider {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceSlider img {
  width: calc(20% - 20px);
  margin: 0;
}
@media (max-width: 768px) {
  .productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceSlider img {
    width: 90%;
    max-width: 250px;
  }
}
@media (max-width: 768px) {
  .productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceSlider {
    flex-direction: column;
  }
}
.productIntroduction .productInner .productMain .product_ic .gwWoodace .woodaceItem_full {
  width: 100% !important;
}
.productIntroduction .productInner .productMain .product_gw .gwHeading {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  background-color: #DD7989;
  margin-bottom: 15px;
  padding: 5px 40px;
}
.productIntroduction .productInner .productMain .product_gw .gwSubheading {
  color: #DD7989;
  margin-bottom: 15px;
  font-size: 22px;
}
.productIntroduction .productInner .productMain .product_gw .gwBoxheading {
  width: 100%;
  background-color: #F9F7EB;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_gw .gwBoxheading h4 {
  display: inline-block;
  background-color: #DD7989;
  padding: 2px 12px;
  color: #fff;
  font-size: 18px;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile {
  margin-bottom: 60px;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileText {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileText span {
  color: #DD7989;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileText.normal {
  text-indent: 0;
  padding-left: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-top: 10px;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable caption {
  text-align: left;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable thead th {
  background-color: #e0e0e0;
  border: 1px solid #ccc;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable tbody td {
  width: 30%;
  background-color: #F9F7EB;
  border: 1px solid #ccc;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 thead th {
  vertical-align: middle;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 thead th:nth-child(1) {
  width: 10%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 thead th:nth-child(2), .productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 thead th:nth-child(4) {
  width: 10%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 thead th:nth-child(3) {
  width: 15%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 thead th:nth-child(5) {
  width: 15%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 thead th:nth-child(6) {
  width: 35%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr:nth-child(1) td, .productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr:nth-child(3) td {
  background-color: #fff;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr td {
  vertical-align: middle;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr td:nth-child(1) {
  width: 20%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr td:nth-child(2), .productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr td:nth-child(3), .productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr td:nth-child(4) {
  width: 10%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr td:nth-child(5) {
  width: 15%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable2 tbody tr td:nth-child(6) {
  width: 35%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable3 {
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable3 thead th {
  vertical-align: middle;
  width: 16.6666666667%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable3 tbody tr:nth-child(odd) td {
  background-color: #fff;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileTable3 tbody tr td {
  vertical-align: middle;
  width: 16.6666666667%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileItem:first-child {
  width: 65%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileBox .greenpileItem:last-child {
  width: 35%;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileText {
  margin-bottom: 40px;
  text-indent: -1em;
  padding-left: 1em;
}
.productIntroduction .productInner .productMain .product_gw .gwGreenpile .greenpileImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace {
  margin-bottom: 60px;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceText {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceText span {
  color: #DD7989;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceText.normal {
  text-indent: 0;
  padding-left: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable caption {
  text-align: left;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable th,
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable td {
  border: 1px solid #ccc;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable thead th {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable tbody tr td {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable tbody tr td:first-child {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable2 {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable2 thead th {
  background-color: #e0e0e0;
  vertical-align: middle;
  border: 1px solid #ccc;
  padding: 4px;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable2 tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable2 tbody tr:nth-child(even) {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable2 tbody td {
  border: 1px solid #ccc;
  vertical-align: middle;
  padding: 4px;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceTable2 tbody td:first-child {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceColumn {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceColumn .woodaceLeft {
  width: 60%;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceColumn .woodaceRight {
  width: 40%;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceBox .woodaceItem {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceText {
  margin-bottom: 40px;
  text-indent: -1em;
  padding-left: 1em;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceText.normal {
  text-indent: 0;
  padding-left: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwWoodace .woodaceTitle {
  font-size: 20px;
  color: #727070;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce {
  margin-bottom: 60px;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceText {
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceText span {
  color: #DD7989;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceText.normal {
  text-indent: 0;
  padding-left: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceText.normal .ibonceTextItem {
  color: #000;
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable caption {
  text-align: left;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable th,
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable td {
  border: 1px solid #ccc;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable thead th {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable tbody tr td {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable tbody tr td:first-child {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable6 tbody tr td:first-child, .productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable7 tbody tr td:first-child {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable2 {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable2 thead th {
  background-color: #e0e0e0;
  vertical-align: middle;
  border: 1px solid #ccc;
  padding: 4px;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable2 tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable2 tbody tr:nth-child(even) {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable2 tbody td {
  border: 1px solid #ccc;
  vertical-align: middle;
  padding: 4px;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceTable2 tbody td:first-child {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceColumn {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceColumn .ibonceLeft {
  width: 60%;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceColumn .ibonceRight {
  width: 40%;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceColumn .ibonceImg_column {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBox .ibonceItem {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceText {
  margin-bottom: 40px;
  text-indent: -1em;
  padding-left: 1em;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceText.normal {
  text-indent: 0;
  padding-left: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceText.mb {
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceImg {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceTitle {
  font-size: 20px;
  color: #727070;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .caption {
  color: #727070;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBoxTop {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBoxTop .ibonceItem:first-child {
  width: 30%;
}
.productIntroduction .productInner .productMain .product_gw .gwIbonce .ibonceBoxTop .ibonceItem:last-child {
  width: 70%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical {
  margin-bottom: 60px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfHeading {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  background-color: #B59FC3;
  margin-bottom: 15px;
  padding: 5px 40px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfHeading_orange {
  background-color: #EEB64F;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfHeading_green {
  background-color: #AFC362;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfMainheading {
  width: 100%;
  background-color: #F9F7EB;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfMainheading h4 {
  display: inline-block;
  background-color: #B59FC3;
  padding: 2px 12px;
  color: #fff;
  font-size: 18px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfMainheading_orange h4 {
  background-color: #EEB64F;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfMainheading_green h4 {
  background-color: #AFC362;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfImg {
  width: 30%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain {
  width: 70%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfText {
  text-indent: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfText .nfTextItem {
  color: #000;
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfText .nfTextItem span {
  color: #B59FC3;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfText .nfTextItem_orange span {
  color: #EEB64F;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfText .nfTextItem_green span {
  color: #AFC362;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable caption {
  text-align: left;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable th,
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable td {
  border: 1px solid #ccc;
  vertical-align: middle;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable thead th {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable tbody tr td {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable1 thead th {
  width: 20%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable1 tbody td {
  width: 20%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable2 thead th {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable2 tbody td {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable4 thead th {
  width: 33%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable4 tbody td {
  width: 33%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable4 .caption {
  margin-bottom: 32px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable5 thead th {
  width: 25%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable5 tbody td {
  width: 25%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable5 .caption {
  margin-bottom: 32px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable6 thead th {
  width: 20%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable6 tbody td {
  width: 20%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain .nfTable6 .caption {
  margin-bottom: 32px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfContent .nfMain_full {
  width: 100%;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical .nfItem {
  margin-bottom: 40px;
}
.productIntroduction .productInner .productMain .product_nf .nfChemical_top {
  margin-top: 32px;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfHeading {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  background-color: #8D9BAD;
  margin-bottom: 15px;
  padding: 5px 40px;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfMainheading {
  width: 100%;
  background-color: #F9F7EB;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfMainheading h4 {
  display: inline-block;
  background-color: #8D9BAD;
  padding: 2px 12px;
  color: #fff;
  font-size: 18px;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfImg {
  width: 30%;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain {
  width: 70%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfText {
  text-indent: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfText .nfTextItem {
  color: #000;
  text-indent: -1em;
  padding-left: 1em;
  display: block;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfText .nfTextItem span {
  color: #8D9BAD;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfText .nfTextItem_green span {
  color: #AFC362;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  color: #727070;
  margin-bottom: 20px;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable caption {
  text-align: left;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable th,
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable td {
  border: 1px solid #ccc;
  vertical-align: middle;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable thead th {
  background-color: #e0e0e0;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable tbody tr td {
  background-color: #F9F7EC;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable1 thead th {
  width: 20%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable1 tbody td {
  width: 20%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable2 thead th {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable2 tbody td {
  width: 50%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable3 thead th {
  width: 25%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable3 tbody td {
  width: 25%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable4 thead th {
  width: 33%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfContent .nfMain .nfTable4 tbody td {
  width: 33%;
}
.productIntroduction .productInner .productMain .product_nf .nfVarious .nfItem {
  margin-bottom: 40px;
}
.productIntroduction .productInner .productMain .product_pf .pfHeading {
  color: #478C43;
  border-left: none;
  font-size: 32px;
  border-bottom: 2px solid #478C43;
}
.productIntroduction .productInner .productMain .product_pf .pfItem {
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.productIntroduction .productInner .productMain .product_pf .pfItem:last-child {
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfItemHeading {
  font-size: 24px;
  color: #fff;
  padding: 10px 15px;
  margin-bottom: 0;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfItemHeading.blue {
  background-color: #489FE3;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfItemHeading.orange {
  background-color: #DD732C;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfItemHeading.green {
  background-color: #478C43;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfItemHeading span {
  display: table;
  margin-left: auto;
  text-align: right;
  font-size: 14px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfItemHeadingColumn {
  display: flex;
  align-items: center;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain {
  background-color: #fffde6;
  padding: 20px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfText {
  font-size: 18px;
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfText .pfTextItem {
  text-indent: -1em;
  padding-left: 1em;
  display: block;
  color: #595756;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfText .pfTextItem span {
  font-size: 20px;
  border-radius: 50px;
  margin-right: 5px;
  font-weight: bold;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfText .pfTextItem.blue span {
  color: #479EE2;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfText .pfTextItem.orange span {
  color: #DD732C;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfText.small {
  font-size: 16px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfImg {
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfSubHeading {
  font-size: 18px;
  margin-bottom: 10px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfSubHeading.blue {
  color: #489FE3;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfSubHeading.orange {
  color: #DD732C;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfSubHeading.green {
  color: #3F4A26;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pfCaption {
  font-size: 16px;
  color: #595756;
  margin-bottom: 0;
  margin-top: 10px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-family: Arial, sans-serif;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable th, .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td {
  border: 1px solid #ddd;
  padding: 8px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable th:nth-child(2), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(2) {
  width: 10%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable th:nth-child(3), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(3) {
  width: 5%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable th:nth-child(4), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(4) {
  width: 15%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable th {
  background-color: #6b8e23;
  color: white;
  font-weight: bold;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td {
  background-color: #f9f9f9;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable tr:nth-child(even) td {
  background-color: #e5e5e5;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable tr:nth-child(odd) td {
  background-color: #f9f9f9;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable th {
  padding: 10px;
  font-size: 14px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td {
  font-size: 14px;
  padding: 12px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td, .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable th {
  text-align: center;
  vertical-align: middle;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(1) {
  width: 15%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(2), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(3) {
  width: 10%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(4), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(5), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(6), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable td:nth-child(7) {
  width: 8%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable tr td:first-child {
  text-align: left;
  background-color: #57653A;
  color: #fff;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable2 th:nth-child(1), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable2 td:nth-child(1) {
  width: 55%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable2 th:nth-child(2), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable2 td:nth-child(2) {
  width: 25%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable2 th:nth-child(3), .productIntroduction .productInner .productMain .product_pf .pfItem .pfMain .pftableWrapper .pftable2 td:nth-child(3) {
  width: 10%;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMainColumn {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}
.productIntroduction .productInner .productMain .product_pf .pfItem .pfMainItem {
  width: 50%;
}
.productIntroduction .productInner .productMain.greenbusiness {
  max-width: 1000px;
}
.productIntroduction .has-fixed-layout td {
  vertical-align: middle;
}

@media (max-width: 768px) {
  .productIntroduction .productInner .productMain .productContent .product_hc .hcHeading {
    font-size: 25px;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcBrand .brandTableWrapper {
    overflow-x: auto;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcBrand .brandTableWrapper .brandTable {
    min-width: 800px;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcElution .elutionBox {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcElution .elutionBox .elutionImg {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcElution .elutionBox .elutionText {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcMechanism .mechanismTop {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcMechanism .mechanismTop .mechanismText {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcMechanism .mechanismTop .mechanismImg {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcMechanism .mechanismBox {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcMechanism .mechanismBox .mechanismItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcEffect .effectBox {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_hc .hcEffect .effectBox .effextItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msHeading {
    font-size: 20px;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msAbout .aboutType {
    flex-direction: column;
    align-items: flex-start;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msAbout .aboutBox {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msAbout .aboutBox .aboutText {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msAbout .aboutBox .aboutImg {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msManure .manureList {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msManure .manureList .manureItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_ic .icDifference .differenceList {
    flex-direction: column;
    gap: 30px;
  }
  .productIntroduction .productInner .productMain .productContent .product_ic .icDifference .differenceList .differenceItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_ic .icDifference .differenceList .differenceItem .differenceBox {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_ic .icDifference .differenceList .differenceItem .differenceBox .differenceMain {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_ic .icDifference .differenceList .differenceItem .differenceBox .differenceMain .differenceText {
    margin-bottom: 20px;
  }
  .productIntroduction .productInner .productMain .productContent .product_ic .icDifference .differenceList .differenceItem .differenceBox .differenceMain .differenceTitle {
    font-size: 20px;
  }
  .productIntroduction .productInner .productMain .productContent .product_ic .icAbout .aboutText {
    font-size: 16px;
  }
  .productIntroduction .productInner .productMain .productContent .product_ic .icAbout .aboutText .br-sp {
    display: block;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwGreenpile .greenpileBox {
    flex-direction: column;
    gap: 15px;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwGreenpile .greenpileBox .greenpileTableWrapper {
    overflow-x: auto;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwGreenpile .greenpileBox .greenpileTableWrapper .greenpileTable2, .productIntroduction .productInner .productMain .productContent .product_gw .gwGreenpile .greenpileBox .greenpileTableWrapper .greenpileTable3 {
    min-width: 800px;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwGreenpile .greenpileItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwGreenpile .greenpileItem:first-child {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwGreenpile .greenpileItem:last-child {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwWoodace .woodaceBox {
    flex-direction: column;
    gap: 15px;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwWoodace .woodaceBox .woodaceTableWrapper {
    overflow-x: auto;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwWoodace .woodaceBox .woodaceTableWrapper .woodaceTable {
    min-width: 500px;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwWoodace .woodaceBox .woodaceTableWrapper .woodaceTable2 {
    min-width: 700px;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwWoodace .woodaceItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBoxTop {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBoxTop .ibonceBox {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBoxTop .ibonceItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBoxTop .ibonceBox {
    width: 100%;
    gap: 15px;
    margin-bottom: 15px;
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBoxTop .ibonceBox .ibonceTableWrapper {
    overflow-x: auto;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBox {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBox .ibonceItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBox .ibonceColumn {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBox .ibonceColumn .ibonceImg_column {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBox .ibonceColumn .ibonceLeft {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_gw .gwIbonce .ibonceBox .ibonceColumn .ibonceRight {
    width: 70%;
    margin: auto;
  }
  .productIntroduction .productInner .productMain .productContent .product_nf .nfChemical .nfItem .nfContent {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_nf .nfChemical .nfItem .nfContent .nfImg {
    width: 50%;
    margin: auto;
  }
  .productIntroduction .productInner .productMain .productContent .product_nf .nfChemical .nfItem .nfContent .nfMain {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_nf .nfVarious .nfItem .nfContent {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_nf .nfVarious .nfItem .nfContent .nfImg {
    width: 50%;
    margin: auto;
  }
  .productIntroduction .productInner .productMain .productContent .product_nf .nfVarious .nfItem .nfContent .nfMain {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfHeading {
    font-size: 25px;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfItem .pfItemHeading {
    font-size: 20px;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfItem .pfItemHeadingColumn {
    flex-direction: column;
    gap: 15px;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfItem .pfMain .pftableWrapper {
    overflow-x: auto;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfItem .pfMain .pftableWrapper .pftable {
    min-width: 1000px;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfItem .pfMain .pftableWrapper .pftable2 {
    min-width: 420px;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfItem .pfMainColumn {
    flex-direction: column;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfItem .pfMainItem {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .product_pf .pfItem .pfMainColumn {
    width: 100%;
  }
  .productIntroduction .productInner .productMain .productContent .wp-block-table table {
    max-width: 800px;
    min-width: 100%;
  }
}
@media (max-width: 480px) {
  .productIntroduction .productInner .productMain {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .productIntroduction .productInner .productMain .productHeading {
    font-size: 25px;
  }
  .productIntroduction .productInner .productMain .productContent h2 {
    font-size: 20px;
  }
  .productIntroduction .productInner .productMain .productContent .wp-block-table table {
    min-width: 700px;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msHeading {
    flex-direction: column;
    align-items: flex-start;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msFilm thead tr th .br-sp {
    display: block;
  }
  .productIntroduction .productInner .productMain .productContent .product_ms .msFilm tbody tr td.step {
    width: 30%;
  }
}
.single-product_introduction .image-text {
  margin-top: -40px;
  font-size: 14px;
}

.irInfo {
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding-top: 50px;
}
.irInfo .infoList {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.irInfo .infoList .infoItem {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.irInfo .infoList .infoItem .infoLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.irInfo .infoList .infoItem .infoDetail {
  display: flex;
  align-items: center;
  gap: 24px;
}
.irInfo .infoList .infoItem .infoDetail .infoDate {
  font-size: 12px;
  color: #949292;
}
.irInfo .infoList .infoItem .infoDetail .infoCategory {
  font-size: 12px;
  color: #949292;
  border: 1px solid #949292;
  border-radius: 2px;
  padding: 2px 12px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.irInfo .infoList .infoItem .infoHeading {
  width: 75%;
  font-size: 16px;
  margin-left: auto;
  border: none;
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .irInfo .infoList .infoItem .infoDetail {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .irInfo .infoList .infoItem .infoHeading {
    width: 85%;
  }
}
@media (max-width: 480px) {
  .irInfo {
    padding: 40px 0;
  }
  .irInfo .infoList .infoItem .infoHeading {
    font-size: 14px;
  }
}
.irCategory {
  width: 90%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 80px;
}
.irCategory .pageHeading {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.irCategory .categoryList {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.irCategory .categoryList .categoryItem {
  width: calc(33% - 8px);
  color: #000000;
  text-align: center;
  position: relative;
}
.irCategory .categoryList .categoryItem .categoryImg {
  width: 100%;
  height: 100%;
}
.irCategory .categoryList .categoryItem .categoryImgLayer {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: rgba(148, 146, 146, 0.4);
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.irCategory .categoryList .categoryItem .categoryHeading {
  width: 100%;
  font-size: 20px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media (max-width: 1080px) {
  .irCategory .categoryList .categoryItem {
    width: calc(50% - 5px);
  }
}
@media (max-width: 768px) {
  .irCategory .categoryList .categoryItem .categoryHeading {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .irCategory {
    padding: 40px 0;
  }
  .irCategory .categoryList .categoryItem .categoryImgLayer {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
  .irCategory .categoryList .categoryItem .categoryHeading {
    font-size: 14px;
  }
  .irCategory .categoryList .categoryItem .categoryHeading .br-sp {
    display: block;
  }
}
.irMain {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding: 60px 0;
}
.irMain .irTitle {
  font-size: 32px;
  margin-bottom: 12px;
}
.irMain .irDetail {
  margin-bottom: 50px;
}
.irMain .irDetail .irDate {
  font-size: 12px;
  color: #949292;
}
.irMain .irDetail .irCategory {
  width: auto;
  display: inline-block;
  font-size: 12px;
  color: #949292;
  border: 1px solid #949292;
  border-radius: 2px;
  padding: 2px 12px;
  line-height: 1.2;
  white-space: nowrap;
}
.irMain .irContent h2 {
  border-left: 5px solid #e6001c;
  padding-left: 10px;
  font-size: 24px;
  margin-bottom: 30px;
}
.irMain .irContent h3 {
  font-size: 18px;
  color: #e6001c;
  margin-bottom: 20px;
}
.irMain .irContent h4 {
  padding: 15px;
  font-size: 20px;
  background-color: #F6F4F4;
  margin-bottom: 30px;
}
.irMain .irContent h5 {
  font-size: 20px;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  margin-bottom: 30px;
}
.irMain .irContent h5:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #949292;
  position: absolute;
  top: 0;
  left: 0;
}
.irMain .irContent p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
.irMain .irContent img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

@media (max-width: 1080px) {
  .irMain {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .irMain {
    padding-top: 40px;
  }
  .irMain .irTitle {
    font-size: 26px;
  }
}
.suggestTop {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 80px;
  padding-top: 50px;
}
.suggestTop .topCaseList {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1px;
}
.suggestTop .topCaseList .topCaseItem {
  width: auto;
  position: relative;
  cursor: pointer;
  background-color: #949292;
  padding: 8px 30px;
  border-radius: 8px 8px 0px 0px;
}
.suggestTop .topCaseList .topCaseItem .topHeading {
  text-align: center;
  font-size: 10px;
  color: #fff;
}
.suggestTop .topCaseList .topCaseItem.current {
  background-color: #E6001C;
  padding: 10px 30px;
}
.suggestTop .topCaseList .topCaseItem.current .topHeading {
  font-size: 14px;
}
.suggestTop .topContentList {
  width: 100%;
  max-width: 1100px;
  margin: auto;
  padding-top: 40px;
  padding-bottom: 100px;
  border: 2px solid #E6001C;
  border-radius: 12px;
}
.suggestTop .topContentList .topContent {
  max-width: 800px;
  margin: auto;
  flex-direction: column;
  gap: 80px;
  display: none;
}
.suggestTop .topContentList .topContent .topItem .topSubHeading {
  font-size: 20px;
  padding-left: 28px;
  position: relative;
  margin-bottom: 20px;
}
.suggestTop .topContentList .topContent .topItem .topSubHeading:before {
  content: "";
  width: 12px;
  height: 12px;
  background-color: #E6001C;
  border-radius: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.suggestTop .topContentList .topContent .topItem .topText {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 50px;
}
.suggestTop .topContentList .topContent .topItem .topTable {
  width: 100%;
  margin-bottom: 50px;
}
.suggestTop .topContentList .topContent .topItem .topProductList {
  display: flex;
  justify-content: space-between;
  gap: 40px 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.suggestTop .topContentList .topContent .topItem .topProductList .topProductItem {
  width: calc(25% - 20px);
  position: relative;
}
.suggestTop .topContentList .topContent .topItem .topProductList .topProductItem .topProductLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.suggestTop .topContentList .topContent .topItem .topProductList .topProductItem .topImg {
  position: relative;
  margin-bottom: 10px;
}
.suggestTop .topContentList .topContent .topItem .topProductList .topProductItem .topImg .topCategory {
  display: inline-block;
  font-size: 10px;
  color: #949292;
  border: 1px solid #949292;
  padding: 1px 10px;
  border-radius: 2px;
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 3;
}
.suggestTop .topContentList .topContent .topItem .cta {
  text-align: center;
}
.suggestTop .topContentList .topContent.show {
  display: flex;
}

@media (max-width: 1200px) {
  .suggestTop {
    max-width: 90%;
  }
  .suggestTop .topCaseList {
    width: 100%;
    overflow-x: scroll;
    justify-content: flex-start;
  }
  .suggestTop .topCaseList .topCaseItem {
    white-space: nowrap;
  }
  .suggestTop .topCaseList .topCaseItem .topHeading {
    font-size: 14px;
  }
}
@media (max-width: 960px) {
  .suggestTop .topContentList .topContent {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .suggestTop .topContentList {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .suggestTop .topContentList .topContent {
    gap: 50px;
  }
  .suggestTop .topContentList .topContent .topItem .topProductList .topProductItem {
    width: calc(50% - 20px);
  }
}
@media (max-width: 480px) {
  .suggestTop {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .suggestTop .topContentList {
    padding-bottom: 40px;
    padding-top: 30px;
  }
  .suggestTop .topContentList .topContent {
    max-width: 80%;
  }
  .suggestTop .topContentList .topContent .topItem .topProductList {
    gap: 20px 15px;
  }
  .suggestTop .topContentList .topContent .topItem .topProductList .topProductItem {
    width: calc(50% - 8px);
  }
}
.container_recruit {
  padding-top: 106px;
}
.container_recruit .commonSection {
  position: relative;
  margin-bottom: 30px;
}
.container_recruit .commonSection .commonHeading {
  color: #E6001C;
  font-size: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.container_recruit .commonSection .commonSub {
  font-size: 90px;
  color: #FEF5F6;
  letter-spacing: normal;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap;
}

@media (max-width: 1200px) {
  .container_recruit .commonSection .commonHeading {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .container_recruit {
    padding-top: 75px;
  }
  .container_recruit .commonSection .commonHeading {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .container_recruit .commonSection .commonSub {
    font-size: 50px;
    bottom: 20px;
  }
}
.header_recruit .headerInner {
  height: 106px;
}
.header_recruit .headerInner .headerLogo {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header_recruit .headerInner .headerLogo span {
  color: #fff;
  background-color: #E6001C;
  padding: 2px 12px;
  display: inline-block;
  white-space: nowrap;
}
.header_recruit .headerInner .headerMain {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}
.header_recruit .headerInner .headerMain .headerMainItem {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header_recruit .headerInner .headerMain .headerMainItem .headerLanguage {
  border: 1px solid #B6B6B6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
}
.header_recruit .headerInner .headerMain .headerMainItem .headerLanguage span {
  color: rgba(0, 0, 0, 0.3019607843);
}
.header_recruit .headerInner .headerMain .headerMainItem .headerLanguage .chn {
  color: rgba(0, 0, 0, 0.3019607843);
}
.header_recruit .headerInner .headerMain .headerMainItem .headerList .headerItem a {
  padding: 0;
}
.header_recruit .headerInner .headerMain .headerMainItem .cta {
  background-color: #E6001C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 20px;
}
.header_recruit .headerInner .headerMain .headerMainItem .cta .ctaBtn {
  color: #fff;
  padding: 0;
}
.header_recruit .headerInner .headerMain .headerMainItem .cta .ctaArrow {
  width: 16px;
  height: auto;
}

@media (max-width: 1360px) {
  .header_recruit .headerInner {
    height: 75px;
  }
  .header_recruit .headerInner .headerMain {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .header_recruit .headerInner .headerMain .headerMainItem .headerLanguage {
    display: none;
  }
  .header_recruit .headerInner .headerMain .headerMainItem .cta {
    display: none;
  }
}
@media (max-width: 480px) {
  .header_recruit .headerInner {
    width: 98%;
    padding-left: 2%;
  }
  .header_recruit .headerInner .headerLogo {
    width: 160px;
    gap: 8px;
  }
  .header_recruit .headerInner .headerLogo span {
    font-size: 12px;
    padding: 2px 8px;
  }
}
.fv_recruit {
  background-image: url(../image/recruit_fvBg.webp);
  position: relative;
  background-position: center bottom;
  background-size: cover;
}
.fv_recruit .fvInner {
  display: flex;
  align-items: center;
  padding: 0 10%;
}
.fv_recruit .fvInner .fvHeading {
  display: inline;
  color: #fff;
  text-shadow: none;
  position: relative;
  z-index: 2;
  font-size: 45px;
  font-weight: 700;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.fv_recruit .fvInner .fvHeading span {
  display: inline-block;
}

.fv_recruit:before {
  content: "";
  width: 20%;
  height: 100%;
  background-color: #E6001C;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

@media (max-width: 960px) {
  .fv_recruit .fvInner {
    padding: 0 5%;
  }
  .fv_recruit .fvInner .fvHeading {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .fv_recruit .fvInner .fvHeading {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .fv_recruit .fvInner .fvHeading {
    font-size: 20px;
  }
  .fv_recruit .fvInner .fvHeading span {
    padding: 10px 16px;
  }
}
.menu .menuInner .menuLanguage {
  border: 1px solid #B6B6B6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0;
  display: none;
}
.menu .menuInner .menuLanguage span {
  color: rgba(0, 0, 0, 0.3019607843);
}
.menu .menuInner .menuLanguage .chn {
  color: rgba(0, 0, 0, 0.3019607843);
}
.menu .menuInner .cta {
  background-color: #E6001C;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 5px 20px;
  margin-bottom: 30px;
  display: none;
}
.menu .menuInner .cta .ctaBtn {
  color: #fff;
  padding: 0;
}
.menu .menuInner .cta .ctaArrow {
  width: 16px;
  height: auto;
}
.menu .menuInner .menuList {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .menu .menuInner .menuLanguage {
    display: flex;
  }
  .menu .menuInner .cta {
    display: flex;
  }
}
.vision {
  padding: 100px 0 80px;
}
.vision .visionInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  max-width: 1100px;
  margin: auto;
}
.vision .visionInner .visionImg {
  width: 40%;
}
.vision .visionInner .visionMain {
  width: 60%;
}
.vision .visionInner .visionMain .commonSection .commonHeading {
  text-align: left;
}
.vision .visionInner .visionMain .visionText {
  font-weight: 500;
}

@media (max-width: 1200px) {
  .vision .visionInner {
    gap: 50px;
    width: 90%;
  }
}
@media (max-width: 960px) {
  .vision .visionInner {
    flex-direction: column-reverse;
    gap: 30px;
  }
  .vision .visionInner .visionImg {
    width: 100%;
  }
  .vision .visionInner .visionMain {
    width: 100%;
  }
  .vision .visionInner .visionMain .commonSection .commonHeading {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .vision {
    padding-bottom: 40px;
  }
}
.about {
  padding: 180px 0 150px;
  background-image: url(../image/recruit_aboutBg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about .aboutInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 100px;
  max-width: 1100px;
  margin: auto;
}
.about .aboutInner .aboutTop {
  width: 50%;
}
.about .aboutInner .aboutTop .commonSection .commonSub {
  color: #fff;
  opacity: 0.7;
}
.about .aboutInner .aboutTop .aboutText {
  font-size: 14px;
  font-weight: 500;
}
.about .aboutInner .aboutList {
  width: 50%;
  display: flex;
  justify-content: center;
  gap: 20px 25px;
  flex-wrap: wrap;
}
.about .aboutInner .aboutList .aboutItem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(50% - 32px);
  border: 1px solid #E6001B;
  background-color: #fff;
  padding: 8px;
  gap: 8px;
}
.about .aboutInner .aboutList .aboutItem .aboutImg {
  width: 46px;
  height: auto;
}
.about .aboutInner .aboutList .aboutItem .aboutHeading {
  font-size: 16px;
  color: #000000;
}
.about .aboutInner .aboutList .aboutItem .aboutArrow {
  width: 16px;
  height: auto;
  margin-left: auto;
}

@media (max-width: 1200px) {
  .about .aboutInner {
    width: 90%;
    gap: 50px;
  }
  .about .aboutInner .aboutList {
    gap: 10px 15px;
  }
  .about .aboutInner .aboutList .aboutItem {
    width: calc(50% - 26px);
    gap: 3px;
  }
  .about .aboutInner .aboutList .aboutItem .aboutImg {
    width: 36px;
  }
  .about .aboutInner .aboutList .aboutItem .aboutHeading {
    font-size: 14px;
  }
}
@media (max-width: 960px) {
  .about {
    padding-bottom: 80px;
  }
  .about .aboutInner {
    flex-direction: column;
  }
  .about .aboutInner .aboutTop {
    width: 100%;
  }
  .about .aboutInner .aboutTop .commonSection .commonHeading {
    text-align: center;
  }
  .about .aboutInner .aboutList {
    width: 440px;
  }
  .about .aboutInner .aboutList .aboutItem {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 120px 0 40px;
  }
  .about .aboutInner .aboutList {
    flex-direction: column;
    align-items: center;
  }
  .about .aboutInner .aboutList .aboutItem {
    width: 200px;
  }
}
.occupation {
  padding: 180px 0 50px;
}
.occupation .occupationInner .commonSection {
  margin-bottom: 50px;
}
.occupation .occupationInner .occupationList {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
.occupation .occupationInner .occupationList .occupationItem {
  width: 33%;
}
.occupation .occupationInner .occupationList .occupationItem .occupationImg {
  position: relative;
  margin-bottom: 20px;
}
.occupation .occupationInner .occupationList .occupationItem .occupationImg .occupationCategory {
  font-size: 12px;
  color: #fff;
  background-color: #E6001C;
  padding: 3px 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.occupation .occupationInner .occupationList .occupationItem .occupationBox {
  margin-bottom: 30px;
}
.occupation .occupationInner .occupationList .occupationItem .occupationBox .occupationBoxItem h3 {
  font-size: 20px;
  font-weight: 600;
  border-left: 5px solid #E6001C;
  padding-left: 10px;
  margin-bottom: 20px;
}
.occupation .occupationInner .occupationList .occupationItem .occupationBox .occupationBoxItem p {
  margin-bottom: 30px;
}
.occupation .occupationInner .occupationList .occupationItem .occupationBox .occupationBoxItem p:last-child {
  margin-bottom: 0;
}
.occupation .occupationInner .occupationList .occupationItem .occupationCta {
  background-color: #E6001C;
  text-align: center;
  padding: 10px 0;
}
.occupation .occupationInner .occupationList .occupationItem .occupationCta span {
  color: #fff;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .occupation .occupationInner .occupationList {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .occupation {
    padding-top: 120px;
  }
  .occupation .occupationInner .commonSection .commonSub {
    font-size: 90px;
  }
  .occupation .occupationInner .occupationList {
    flex-direction: column;
    align-items: center;
    gap: 80px;
  }
  .occupation .occupationInner .occupationList .occupationItem {
    width: 400px;
  }
}
@media (max-width: 480px) {
  .occupation {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .occupation .occupationInner .commonSection .commonSub {
    font-size: 70px;
  }
  .occupation .occupationInner .occupationList {
    gap: 50px;
  }
  .occupation .occupationInner .occupationList .occupationItem {
    width: 90%;
  }
}
@media (max-width: 375px) {
  .occupation .occupationInner .commonSection .commonSub {
    font-size: 56px;
  }
}
.interview {
  padding: 180px 0 100px;
}
.interview .interviewInner .interviewText {
  max-width: 90%;
  margin: auto;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 50px;
}
.interview .interviewInner .interviewList {
  width: 100%;
  max-width: 1800px;
  margin: auto;
}
.interview .interviewInner .interviewList .interviewItem {
  width: 280px;
  position: relative;
  margin: 0 20px;
}
.interview .interviewInner .interviewList .interviewItem .interviewLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.interview .interviewInner .interviewList .interviewItem .interviewImg {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.interview .interviewInner .interviewList .interviewItem .interviewHeading {
  font-size: 16px;
  color: #000000;
  margin-bottom: 5px;
}
.interview .interviewInner .interviewList .interviewItem .interviewDetail {
  font-size: 12px;
  color: #949292;
  text-align: right;
}

@media (max-width: 768px) {
  .interview {
    padding-top: 120px;
  }
  .interview .interviewInner .commonSection .commonSub {
    font-size: 90px;
  }
}
@media (max-width: 480px) {
  .interview {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .interview .interviewInner .commonSection .commonSub {
    font-size: 70px;
  }
}
@media (max-width: 375px) {
  .interview .interviewInner .commonSection .commonSub {
    font-size: 56px;
  }
}
.recruit {
  padding: 180px 0 150px;
  background-color: #E6001C;
}
.recruit .recruitInner .commonSection .commonHeading {
  color: #fff;
}
.recruit .recruitInner .commonSection .commonSub {
  color: #E6001C;
  text-shadow: 0.5px 0.5px 0 #fff, -0.5px -0.5px 0 #fff, -0.5px 0.5px 0 #fff, 0.5px -0.5px 0 #fff, 0.5px 0 0 #fff, -0.5px 0 0 #fff, 0 0.5px 0 #fff, 0 -0.5px 0 #fff;
}
.recruit .recruitInner .recruitText {
  max-width: 90%;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}
.recruit .recruitInner .recruitList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.recruit .recruitInner .recruitList .recruitItem {
  width: 240px;
  background-color: #fff;
  text-align: center;
  color: #E6001C;
  padding: 15px 0;
  position: relative;
}
.recruit .recruitInner .recruitList .recruitItem img {
  position: absolute;
  top: 50%;
  right: 15px;
  width: 16px;
  height: auto;
  transform: translateY(-48%);
}

@media (max-width: 960px) {
  .recruit .recruitInner .recruitList {
    width: 90%;
    margin: auto;
    gap: 15px;
  }
  .recruit .recruitInner .recruitList .recruitItem {
    width: 33%;
  }
}
@media (max-width: 768px) {
  .recruit {
    padding: 150px 0 80px;
  }
  .recruit .recruitInner .recruitList {
    flex-direction: column;
  }
  .recruit .recruitInner .recruitList .recruitItem {
    width: 240px;
  }
}
@media (max-width: 480px) {
  .recruit {
    padding: 120px 0 40px;
  }
}
.blog {
  padding: 180px 0 80px;
}
.blog .blogInner {
  width: 100%;
  max-width: 900px;
  margin: auto;
}
.blog .blogInner .blogTop {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 45px;
}
.blog .blogInner .blogTop .commonSection {
  margin-bottom: 0;
}
.blog .blogInner .blogTop .commonSection .commonHeading {
  text-align: left;
}
.blog .blogInner .blogTop .blogDetail {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #E6001C;
  padding-bottom: 3px;
}
.blog .blogInner .blogTop .blogDetail img {
  width: 16px;
  height: 16px;
  transform: translateY(1px);
}
.blog .blogInner .blogTop.blogArchive {
  justify-content: center;
}
.blog .blogInner .blogList {
  display: flex;
  justify-content: space-between;
  gap: 50px 40px;
  flex-wrap: wrap;
}
.blog .blogInner .blogList .blogItem {
  width: calc(33% - 24px);
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #949292;
}
.blog .blogInner .blogList .blogItem .blogLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.blog .blogInner .blogList .blogItem .blogImg {
  width: 100%;
  height: auto;
  position: relative;
  margin-bottom: 25px;
}
.blog .blogInner .blogList .blogItem .blogImg .blogCategory {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #FFFFFF;
  background-color: #E6001C;
  padding: 2px 12px;
  position: absolute;
  left: 0;
  bottom: -11px;
}
.blog .blogInner .blogList .blogItem .blogHeading {
  font-size: 18px;
  margin-bottom: 10px;
}
.blog .blogInner .blogList .blogItem .blogDate {
  font-size: 12px;
  color: #949292;
  text-align: right;
}

@media (max-width: 1200px) {
  .blog .blogInner .blogTop .commonSection .commonSub {
    left: -20px;
    transform: translateX(0);
  }
  .blog .blogInner .blogTop.blogArchive .commonSection .commonSub {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 960px) {
  .blog .blogInner {
    width: 90%;
  }
  .blog .blogInner .blogList {
    gap: 40px 30px;
  }
  .blog .blogInner .blogList .blogItem {
    width: calc(33% - 18px);
  }
}
@media (max-width: 768px) {
  .blog {
    padding-top: 150px;
  }
  .blog .blogInner .blogList .blogItem {
    width: calc(50% - 18px);
  }
}
@media (max-width: 480px) {
  .blog {
    padding: 120px 0 40px;
  }
  .blog .blogInner .blogTop .commonSection .commonSub {
    left: -10px;
  }
  .blog .blogInner .blogList {
    flex-direction: column;
  }
  .blog .blogInner .blogList .blogItem {
    width: 100%;
  }
}
.occupationMain {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding-top: 60px;
}
.occupationMain .occupationTitle {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.occupationMain .occupationImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
}
.occupationMain .occupationDetail {
  margin-bottom: 50px;
}
.occupationMain .occupationDetail .occupationDate {
  font-size: 12px;
  color: #949292;
}
.occupationMain .occupationDetail .occupationCategory {
  width: auto;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background-color: #E6001C;
  padding: 2px 12px;
  line-height: 1.2;
  white-space: nowrap;
}
.occupationMain .occupationContent h4 {
  padding: 15px;
  font-size: 20px;
  background-color: #F6F4F4;
  margin-bottom: 30px;
}
.occupationMain .occupationContent h3 {
  font-size: 20px;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  margin-bottom: 30px;
}
.occupationMain .occupationContent h3:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #E6001C;
  position: absolute;
  top: 0;
  left: 0;
}
.occupationMain .occupationContent p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
.occupationMain .occupationContent img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

@media (max-width: 1080px) {
  .occupationMain {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .occupationMain {
    padding-top: 40px;
  }
  .occupationMain .occupationTitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .occupationMain .occupationImg {
    margin-bottom: 30px;
  }
}
.entry {
  padding: 180px 0 100px;
  background-color: #F6F4F4;
}
.entry .entryInner .commonSection .commonSub {
  color: #F6F4F4;
  text-shadow: 0.5px 0.5px 0 rgba(230, 0, 28, 0.3019607843), -0.5px -0.5px 0 rgba(230, 0, 28, 0.3019607843), -0.5px 0.5px 0 rgba(230, 0, 28, 0.3019607843), 0.5px -0.5px 0 rgba(230, 0, 28, 0.3019607843), 0.5px 0 0 rgba(230, 0, 28, 0.3019607843), -0.5px 0 0 rgba(230, 0, 28, 0.3019607843), 0 0.5px 0 rgba(230, 0, 28, 0.3019607843), 0 -0.5px 0 rgba(230, 0, 28, 0.3019607843);
}
.entry .entryInner .entryList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
}
.entry .entryInner .entryList .entryItem {
  width: auto;
  height: 60px;
}
.entry .entryInner .entryList .entryItem img {
  height: 100%;
}

@media (max-width: 768px) {
  .entry {
    padding: 150px 0 80px;
  }
  .entry .entryInner .entryList {
    gap: 30px;
  }
  .entry .entryInner .entryList .entryItem {
    height: 50px;
  }
}
@media (max-width: 480px) {
  .entry {
    padding: 120px 0 40px;
  }
  .entry .entryInner .entryList {
    width: 70%;
    margin: auto;
    flex-direction: column;
    align-items: center;
  }
  .entry .entryInner .entryList .entryItem {
    height: auto;
  }
}
.newsMain {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding-top: 60px;
}
.newsMain .newsTitle {
  font-size: 32px;
  margin-bottom: 12px;
}
.newsMain .newsImg {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
}
.newsMain .newsDetail {
  margin-bottom: 50px;
}
.newsMain .newsDetail .newsDate {
  font-size: 12px;
  color: #949292;
}
.newsMain .newsDetail .newsCategory {
  display: inline-block;
  font-size: 12px;
  color: #949292;
  border: 1px solid #949292;
  border-radius: 2px;
  padding: 2px 12px;
  line-height: 1.2;
  white-space: nowrap;
}
.newsMain .newsContent h2 {
  font-size: 24px;
  padding-left: 10px;
  border-left: 5px solid #E6001C;
  margin-bottom: 30px;
}
.newsMain .newsContent h3 {
  font-size: 18px;
  color: #E6001C;
}
.newsMain .newsContent h4 {
  padding: 15px;
  font-size: 20px;
  background-color: #F6F4F4;
  margin-bottom: 30px;
}
.newsMain .newsContent h5 {
  font-size: 20px;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  margin-bottom: 30px;
}
.newsMain .newsContent h5:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #949292;
  position: absolute;
  top: 0;
  left: 0;
}
.newsMain .newsContent p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
.newsMain .newsContent img, .newsMain .newsContent video {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

@media (max-width: 1080px) {
  .newsMain {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .newsMain {
    padding-top: 40px;
  }
  .newsMain .newsTitle {
    font-size: 26px;
  }
}
.caseMain {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding-top: 60px;
}
.caseMain .caseTitle {
  font-size: 32px;
  margin-bottom: 12px;
}
.caseMain .caseImg {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
}
.caseMain .caseDetail {
  margin-bottom: 50px;
}
.caseMain .caseDetail .caseDate {
  font-size: 12px;
  color: #949292;
}
.caseMain .caseDetail .caseCategory {
  display: inline-block;
  font-size: 12px;
  color: #949292;
  border: 1px solid #949292;
  border-radius: 2px;
  padding: 2px 12px;
  line-height: 1.2;
  white-space: nowrap;
}
.caseMain .caseContent h2 {
  border-left: 5px solid #e6001c;
  padding-left: 10px;
  font-size: 24px;
  margin-bottom: 30px;
}
.caseMain .caseContent h3 {
  font-size: 18px;
  color: #e6001c;
  margin-bottom: 20px;
}
.caseMain .caseContent h4 {
  padding: 15px;
  font-size: 20px;
  background-color: #F6F4F4;
  margin-bottom: 30px;
}
.caseMain .caseContent h5 {
  font-size: 20px;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  margin-bottom: 30px;
}
.caseMain .caseContent h5:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #949292;
  position: absolute;
  top: 0;
  left: 0;
}
.caseMain .caseContent p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
.caseMain .caseContent img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}
.caseMain .caseVideo_heading {
  border-left: 5px solid #e6001c;
  padding-left: 10px;
  font-size: 24px;
  margin-bottom: 30px;
}
.caseMain .caseVideo {
  position: relative;
  margin-bottom: 40px;
}
.caseMain .caseVideo video {
  width: 100%;
}

@media (max-width: 1080px) {
  .caseMain {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .caseMain {
    padding-top: 40px;
  }
  .caseMain .caseTitle {
    font-size: 26px;
  }
}
.interviewMain {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding-top: 60px;
}
.interviewMain .interviewTitle {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.interviewMain .interviewImg {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
}
.interviewMain .interviewImg_recruit {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
}
.interviewMain .interviewDetail {
  font-size: 12px;
  color: #949292;
  text-align: right;
  margin-bottom: 30px;
}
.interviewMain .interviewContent h2 {
  border-left: 5px solid #e6001c;
  padding-left: 10px;
  font-size: 24px;
  margin-bottom: 30px;
}
.interviewMain .interviewContent h3 {
  font-size: 18px;
  color: #e6001c;
  margin-bottom: 20px;
}
.interviewMain .interviewContent h4 {
  padding: 15px;
  font-size: 20px;
  background-color: #F6F4F4;
  margin-bottom: 30px;
}
.interviewMain .interviewContent h5 {
  font-size: 20px;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  margin-bottom: 30px;
}
.interviewMain .interviewContent h5:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #949292;
  position: absolute;
  top: 0;
  left: 0;
}
.interviewMain .interviewContent p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
.interviewMain .interviewContent img {
  display: block;
  width: 100%;
  margin: auto;
  margin-bottom: 50px;
}

@media (max-width: 1080px) {
  .interviewMain {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .interviewMain {
    padding-top: 40px;
  }
  .interviewMain .interviewTitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .interviewMain .interviewImg {
    margin-bottom: 30px;
  }
  .interviewMain .interviewContent h2 {
    font-size: 20px;
  }
}
.blogMain {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding-top: 60px;
}
.blogMain .blogTitle {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.blogMain .blogImg {
  display: block;
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
}
.blogMain .blogDetail {
  margin-bottom: 50px;
}
.blogMain .blogDetail .blogDate {
  font-size: 12px;
  color: #949292;
}
.blogMain .blogDetail .blogCategory {
  width: auto;
  display: inline-block;
  font-size: 12px;
  color: #fff;
  background-color: #E6001C;
  padding: 2px 12px;
  line-height: 1.2;
  white-space: nowrap;
}
.blogMain .blogContent h2 {
  border-left: 5px solid #e6001c;
  padding-left: 10px;
  font-size: 24px;
  margin-bottom: 30px;
}
.blogMain .blogContent h3 {
  font-size: 18px;
  color: #e6001c;
  margin-bottom: 20px;
}
.blogMain .blogContent h3:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #949292;
  position: absolute;
  top: 0;
  left: 0;
}
.blogMain .blogContent p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
.blogMain .blogContent img {
  display: block;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

@media (max-width: 1080px) {
  .blogMain {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .blogMain {
    padding-top: 40px;
  }
  .blogMain .blogTitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .blogMain .blogImg {
    margin-bottom: 30px;
  }
}
.fvOffice {
  width: 100%;
  max-width: 1800px;
  height: 260px;
  margin: auto;
  background-color: rgba(217, 217, 217, 0.2);
}
.fvOffice .fvInner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.fvOffice .fvInner .commonSection .commonSub {
  bottom: -130px;
  color: #fff;
}

@media (max-width: 768px) {
  .fvOffice {
    height: 180px;
  }
  .fvOffice .fvInner .commonSection .commonSub {
    bottom: -100px;
  }
}
.officeMain {
  width: 90%;
  max-width: 700px;
  margin: auto;
  padding: 60px 0 100px;
}
.officeMain .officeInner .officeName {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
}
.officeMain .officeInner .officeMap {
  width: 100%;
  margin-bottom: 50px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
}
.officeMain .officeInner .officeMap iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 170px);
  margin-top: -170px;
}
.officeMain .officeInner .officeList {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.officeMain .officeInner .officeList .officeItem {
  display: flex;
  justify-content: space-between;
}
.officeMain .officeInner .officeList .officeItem .officeTitle {
  padding: 30px 15px;
  width: 25%;
  border-top: 1px solid #E6001C;
  font-size: 18px;
  line-height: 1.2;
}
.officeMain .officeInner .officeList .officeItem .officeTitle .sm {
  font-size: 12px;
}
.officeMain .officeInner .officeList .officeItem .officeText {
  padding: 30px 15px;
  width: 75%;
  border-top: 1px solid rgba(56, 38, 23, 0.2);
  font-size: 14px;
  font-weight: 500;
}
.officeMain .officeInner .officeList .officeItem .officeText a {
  color: #0000EE;
}
.officeMain .officeInner .officeList .officeItem:last-child .officeTitle {
  border-bottom: 1px solid #E6001C;
}
.officeMain .officeInner .officeList .officeItem:last-child .officeText {
  border-bottom: 1px solid rgba(56, 38, 23, 0.2);
}
.officeMain .officeInner .officeOther {
  background-color: #F7F7F7;
  padding: 40px 50px;
}
.officeMain .officeInner .officeOther .otherInner .otherbox .otherItem {
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(56, 38, 23, 0.2);
}
.officeMain .officeInner .officeOther .otherInner .otherbox .otherItem .otherHeading {
  font-size: 20px;
  color: #E6001C;
  margin-bottom: 15px;
}
.officeMain .officeInner .officeOther .otherInner .otherbox .otherItem .otherList {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px 20px;
  flex-wrap: wrap;
}
.officeMain .officeInner .officeOther .otherInner .otherbox .otherItem .otherList .otherItem {
  font-size: 16px;
  font-weight: 500;
  border-bottom: none;
  padding-top: 0;
  padding-bottom: 0;
}
.officeMain .officeInner .officeOther .otherInner .otherbox .otherItem:first-child {
  padding-top: 0;
}
.officeMain .cta {
  text-align: center;
  margin-top: 40px;
}
.officeMain .cta .ctaBtn {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #e6001c;
  border: 1px solid #e6001c;
  padding: 10px 60px;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .officeMain {
    padding: 50px 0;
  }
  .officeMain .officeInner .officeList .officeItem .officeTitle {
    width: 30%;
  }
  .officeMain .officeInner .officeList .officeItem .officeText {
    width: 70%;
  }
  .officeMain .officeInner .officeMap iframe {
    height: calc(100% + 130px);
    margin-top: -130px;
  }
  .officeMain .officeInner .officeOther {
    padding: 30px;
  }
}
@media (max-width: 480px) {
  .officeMain .officeInner .officeList .officeItem {
    flex-direction: column;
  }
  .officeMain .officeInner .officeList .officeItem .officeTitle {
    padding: 20px;
    width: calc(100% - 40px);
    font-size: 16px;
  }
  .officeMain .officeInner .officeList .officeItem .officeTitle .br-sp {
    display: block;
  }
  .officeMain .officeInner .officeList .officeItem .officeText {
    padding: 20px;
    width: calc(100% - 40px);
  }
  .officeMain .officeInner .officeList .officeItem:last-child .officeTitle {
    border-bottom: none;
  }
  .officeMain .officeInner .officeList .officeItem:last-child .officeText {
    border-bottom: 1px solid #e6001c;
  }
  .officeMain .cta .ctaBtn {
    font-size: 14px;
    padding: 10px 50px;
  }
}
@media (max-width: 440px) {
  .officeMain .officeInner .officeMap iframe {
    height: calc(100% + 80px);
    margin-top: -80px;
  }
}
.agriculture .agricultureInner {
  padding: 40px 0;
  width: 90%;
  max-width: 1080px;
  margin: auto;
}
.agriculture .agricultureInner form label {
  font-size: 20px;
  margin-right: 5px;
}
.agriculture .agricultureInner form .select_wrapper {
  display: inline-block;
  position: relative;
}
.agriculture .agricultureInner form .select_wrapper::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}
.agriculture .agricultureInner form select {
  width: 200px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 18px;
  padding: 15px 10px;
  background-color: #E6001C;
  color: #fff;
  border: none;
  border-radius: 8px;
}
.agriculture .agricultureInner form button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.agriculture .agricultureInner form input {
  width: 178px;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 18px;
  padding: 13px 10px;
  background-color: transparent;
  border: 1px solid #777777;
  border-radius: 8px;
}
.agriculture .agricultureInner form .agricultureKeyword {
  margin-top: 20px;
}
.agriculture .agricultureInner .agricultureList {
  padding: 40px 0;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.agriculture .agricultureInner .agricultureList .agricultureItem {
  width: calc(25% - 23px);
  position: relative;
}
.agriculture .agricultureInner .agricultureList .agricultureItem .agricultureLink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.agriculture .agricultureInner .agricultureList .agricultureItem .agricultureImg {
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.agriculture .agricultureInner .agricultureList .agricultureItem .agricultureHeading {
  text-align: left;
}
.agriculture .agricultureInner .agricultureList .agricultureItem .agricultureExcerpt {
  margin-top: 12px;
}
.agriculture .agricultureInner .agricultureList .agricultureItem .agricultureExcerpt mark {
  background-color: #FFFF00;
}
.agriculture .agricultureInner .agricultureList .agricultureSubList {
  display: flex;
  justify-content: flex-start;
  gap: 30px;
  flex-wrap: wrap;
}
.agriculture .agricultureInner .agricultureList .taxonomyHeading {
  display: inline;
  width: 100%;
  font-size: 22px;
  color: #E6001C;
  padding: 0.5em 10px;
  border-top: solid 3px #E6001C;
  border-bottom: solid 3px #E6001C;
}

@media (max-width: 768px) {
  .agriculture .agricultureInner form label {
    font-size: 18px;
  }
  .agriculture .agricultureInner form select {
    padding: 10px;
    width: 170px;
  }
  .agriculture .agricultureInner form input {
    padding: 9px 10px;
    width: 148px;
  }
  .agriculture .agricultureInner .agricultureList .agricultureItem {
    width: calc(50% - 15px);
  }
}
@media (max-width: 480px) {
  .agriculture .agricultureInner .agricultureList {
    gap: 20px;
  }
  .agriculture .agricultureInner .agricultureList .agricultureItem {
    width: calc(50% - 10px);
  }
  .agriculture .agricultureInner .agricultureList .agricultureItem .agricultureHeading {
    font-size: 12px;
  }
}
.agricultureMain {
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
.agricultureMain .agricultureBorder {
  margin-bottom: 40px;
}
.agricultureMain .agricultureTitle {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
}
.agricultureMain .agriculturePreview {
  width: 100%;
  height: 500px;
  overflow: scroll;
  padding-top: 80px;
  margin-top: -80px;
}
.agricultureMain .agriculturePreview .pdfjs-fullscreen {
  display: none;
}
.agricultureMain .agriculturePdf {
  display: inline-block;
  margin-bottom: 30px;
  border-bottom: double 5px #E6001C;
}
.agricultureMain .agricultureImg {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
  margin-bottom: 50px;
}
.agricultureMain .agricultureDetail {
  font-size: 12px;
  color: #949292;
  text-align: right;
  margin-bottom: 30px;
}
.agricultureMain .agricultureContent h2 {
  border-left: 5px solid #e6001c;
  padding-left: 10px;
  font-size: 24px;
  margin-bottom: 30px;
}
.agricultureMain .agricultureContent h3 {
  font-size: 18px;
  color: #e6001c;
  margin-bottom: 20px;
}
.agricultureMain .agricultureContent h4 {
  padding: 15px;
  font-size: 20px;
  background-color: #F6F4F4;
  margin-bottom: 30px;
}
.agricultureMain .agricultureContent h5 {
  font-size: 20px;
  padding: 8px 0;
  padding-left: 16px;
  position: relative;
  margin-bottom: 30px;
}
.agricultureMain .agricultureContent h5:before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #949292;
  position: absolute;
  top: 0;
  left: 0;
}
.agricultureMain .agricultureContent p {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 40px;
}
.agricultureMain .agricultureContent img {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: auto;
  margin-bottom: 50px;
}

@media (max-width: 1080px) {
  .agricultureMain {
    max-width: 90%;
  }
}
@media (max-width: 480px) {
  .agricultureMain {
    padding-top: 40px;
  }
  .agricultureMain .agricultureTitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .agricultureMain .agricultureImg {
    margin-bottom: 30px;
  }
  .agricultureMain .agricultureContent h2 {
    font-size: 20px;
  }
}
.searchResult {
  padding: 80px 0;
  margin: auto;
}
.searchResult .searchText {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  margin-bottom: 50px;
}

@media (max-width: 480px) {
  .searchResult {
    padding: 40px 0;
  }
  .searchResult .searchText {
    margin-bottom: 30px;
  }
}
.searchform {
  width: 350px;
  height: 45px;
  position: relative;
  border: 1px solid #949292;
  border-radius: 50px;
  background-color: #F6F4F4;
}
.searchform .searchfield {
  width: calc(100% - 24px);
  height: 100%;
  border: none;
  border-radius: 50px;
  padding: 0 12px;
  background-color: transparent;
}
.searchform .searchIcon {
  width: 36px;
  height: 36px;
}
.searchform .searchsubmit {
  position: absolute;
  top: 50%;
  right: 0.75em;
  display: block;
  padding: 0;
  cursor: pointer;
  transform: translateY(-50%);
  color: #000;
  border: none;
  background: transparent;
}
.searchform .searchsubmit:hover {
  opacity: 0.6;
}

.productCategory.searchResult {
  padding-top: 50px;
  width: 100%;
}

.trp_language_switcher_shortcode .trp-ls-shortcode-language {
  width: auto !important;
  display: block !important;
  padding: 0;
}
.trp_language_switcher_shortcode .trp-ls-shortcode-current-language {
  display: none !important;
}
.trp_language_switcher_shortcode .trp-language-switcher {
  width: auto;
  height: auto;
}
.trp_language_switcher_shortcode .trp-language-switcher .trp-ls-shortcode-language {
  position: static;
  height: auto;
  padding: 0;
  max-height: none;
  display: flex !important;
  align-items: center;
  gap: 12px;
  visibility: visible;
}
.trp_language_switcher_shortcode .trp-language-switcher a:last-child {
  color: rgba(0, 0, 0, 0.3019607843);
  position: relative;
}
.trp_language_switcher_shortcode .trp-language-switcher a:last-child:before {
  content: "/";
  position: absolute;
  top: 48%;
  left: -10px;
  transform: translateY(-50%);
  color: rgba(0, 0, 0, 0.3019607843);
}
.trp_language_switcher_shortcode .trp-language-switcher > div {
  padding: 0;
  border: none;
  background-image: none;
}
.trp_language_switcher_shortcode .trp-language-switcher > div > a {
  padding: 0;
}
.trp_language_switcher_shortcode .trp-language-switcher > div > a img {
  vertical-align: middle;
}
.trp_language_switcher_shortcode .trp-language-switcher > div > a:hover {
  background-color: transparent;
}
.trp_language_switcher_shortcode .trp-language-switcher:hover {
  width: auto;
}
.trp_language_switcher_shortcode .trp-language-switcher:hover .trp-ls-shortcode-language {
  position: static;
  height: auto;
  padding: 0;
  max-height: none;
  display: flex !important;
  align-items: center;
}

/*ContactForm7カスタマイズ*/
.form {
  /*入力欄*/
  /*「必須」文字*/
  /*「任意」文字*/
}
.form table.CF7_table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border: 3px solid #e5e5e5;
}
.form table.CF7_table tr {
  border-top: 1px solid #e5e5e5;
}
.form table.CF7_table tr th {
  vertical-align: middle;
  text-align: left;
  padding: 20px 10px;
}
.form table.CF7_table tr th p {
  margin: 0;
}
.form table.CF7_table tr th .sm {
  font-size: 12px;
}
.form table.CF7_table tr td {
  vertical-align: middle;
  text-align: left;
  padding: 20px 10px;
}
.form table.CF7_table tr td p {
  margin-bottom: 0;
}
.form .single .entry-content table.CF7_table,
.form .page .entry-content table.CF7_table {
  display: table;
}
.form .CF7_table input, .form .CF7_table textarea {
  border: 1px solid #d8d8d8;
  width: calc(100% - 6px);
  height: 30px;
}
.form .CF7_table textarea {
  height: auto;
}
.form .CF7_table ::-moz-placeholder {
  color: #797979;
}
.form .CF7_table ::placeholder {
  color: #797979;
}
.form .CF7_req {
  font-size: 0.9em;
  padding: 5px;
  background: #f79034; /*オレンジ*/
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
}
.form .CF7_unreq {
  font-size: 0.9em;
  padding: 5px;
  background: #bdbdbd; /*グレー*/
  color: #fff;
  border-radius: 3px;
  margin-right: 1em;
}

.consent {
  margin-top: 20px;
}
.consent p {
  display: flex;
  justify-content: center;
}
.consent p .wpcf7-list-item {
  margin: 0;
  vertical-align: middle;
}
.consent p .wpcf7-list-item input {
  margin: 0;
  margin-right: 4px;
}

/* タイトル列 */
@media screen and (min-width: 768px) {
  .CF7_table th {
    width: 30%; /*横幅*/
    background-color: #ffedef; /*ブルーグレー*/
  }
}
/* レスポンシブ */
@media screen and (max-width: 768px) {
  .form table.CF7_table {
    width: 95%;
  }
  .form table.CF7_table tr, .form table.CF7_table td, .form table.CF7_table th {
    display: block;
    width: 100%;
    line-height: 2.5em;
  }
  .form table.CF7_table tr th {
    background-color: #ffedef;
    width: calc(100% - 20px);
    padding: 15px 10px;
  }
  .form table.CF7_table tr td {
    width: calc(100% - 20px);
    padding: 15px 10px;
  }
}
/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
  background-color: #f79034; /* オレンジ*/
  border: 0;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 auto;
  padding: 12px 40px;
}

.CF7_btn {
  text-align: center;
  margin-top: 40px;
}

.wpcf7-spinner {
  display: none !important;
}

.thanks {
  padding: 80px 0;
}
.thanks .thanksInner {
  text-align: center;
}
.thanks .thanksInner .thanksText {
  font-size: 18px;
}

@media (max-width: 480px) {
  .thanks {
    padding: 40px 0;
  }
  .thanks .thanksInner {
    width: 90%;
    margin: auto;
  }
  .thanks .thanksInner .thanksText {
    text-align: left;
    font-size: 16px;
  }
}
.privacy {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 80px 0;
}
.privacy .privacyInner .privacyText {
  line-height: 2.2;
  margin-bottom: 40px;
}
.privacy .privacyInner .privacyText a {
  display: inline-block;
  color: #0000ee;
  text-decoration: underline;
}
.privacy .privacyInner .privacyText:last-child {
  margin-bottom: 0;
}
.privacy .privacyInner .privacyHeading {
  font-size: 24px;
  padding-left: 10px;
  border-left: 5px solid #e6001c;
  margin-bottom: 40px;
}

@media (max-width: 480px) {
  .privacy {
    padding: 40px 0;
  }
  .privacy .privacyInner .privacyHeading {
    font-size: 20px;
  }
  .privacy .privacyInner .privacyText {
    line-height: 1.8;
  }
}
.organization {
  width: 90%;
  max-width: 1000px;
  margin: auto;
  padding: 80px 0;
}/*# sourceMappingURL=style.css.map */