/**  Mixins */
/*------------------------------------*\
    breakpoint vars
\*------------------------------------*/
/*------------------------------------*\
    breakpoint mixin
\*------------------------------------*/
/** Break desktop first**/
/** Global **/
*,
*::before,
*::after {
  box-sizing: border-box; }

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: left; }

[tabindex="-1"]:focus {
  outline: 0 !important; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none; }

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small {
  font-size: 80%; }

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline; }

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #6096C4;
  text-decoration: none; }
  a:hover {
    opacity: .8; }

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none; }

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none; }

a:not([href]):not([tabindex]):focus {
  outline: 0; }

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em; }

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto; }

figure {
  margin: 0;
  padding: 0; }

img {
  vertical-align: middle;
  border-style: none; }

svg {
  overflow: hidden;
  vertical-align: middle; }

table {
  border-collapse: collapse; }

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom; }

th {
  text-align: inherit; }

label {
  display: inline-block;
  margin-bottom: 0.5rem; }

button {
  border-radius: 0; }

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color; }

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit; }

button,
input {
  overflow: visible; }

button,
select {
  text-transform: none; }

select {
  word-wrap: normal; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer; }

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none; }

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0; }

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox; }

textarea {
  overflow: auto;
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal; }

progress {
  vertical-align: baseline; }

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none; }

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button; }

output {
  display: inline-block; }

summary {
  display: list-item;
  cursor: pointer; }

template {
  display: none; }

[hidden] {
  display: none !important; }

:root {
  --white: #ffffff;
  --black: #000000;
  --smoke: #F4F5EF;
  --gray: #E5E5E5;
  --primary: #009144;
  --second: #D75E5B;
  --text-body: #282828;
  --radius: 5px; }

/* Base Setting
---------------------------------------- */
body {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  overflow-wrap: break-word;
  font-weight: 400;
  color: var(--text-body);
  overflow-x: hidden;
  line-height: 1.5;
  position: relative;
  width: 100%;
  background: var(--white); }

a {
  transition: all 0.3s;
  color: var(--primary);
  outline: none !important; }
  a:hover {
    opacity: 1;
    color: var(--second); }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: var(--primary); }

h1 {
  font-size: 2.25rem;
  line-height: 1.3; }
  @media (min-width: 48em) {
    h1 {
      font-size: 2.875rem; } }

h2 {
  font-size: 2.5rem;
  line-height: 1.15; }
  @media (min-width: 48em) {
    h2 {
      font-size: 3.5rem; } }

h3 {
  font-size: 2.125rem;
  line-height: 1.16; }
  @media (min-width: 48em) {
    h3 {
      font-size: 2.5rem; } }

h4 {
  font-size: 1.75rem;
  line-height: 1.16; }
  @media (min-width: 48em) {
    h4 {
      font-size: 2.25rem; } }

h5 {
  font-size: 1.25rem;
  line-height: 1.2; }
  @media (min-width: 48em) {
    h5 {
      font-size: 1.5rem; } }

h6 {
  font-size: 1.125rem;
  line-height: 1.3; }
  @media (min-width: 48em) {
    h6 {
      font-size: 1.25rem; } }

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

@media screen and (min-width: 1024px) {
  .pcbr {
    display: block; }

  .spbr {
    display: none; } }
@media screen and (max-width: 1024px) {
  .pcbr {
    display: none; }

  .spbr {
    display: block; } }
@media screen and (min-width: 1024px) {
  .pc {
    display: block; }

  .sp {
    display: none; } }
@media screen and (max-width: 1024px) {
  .pc {
    display: none; }

  .sp {
    display: block; } }
.container, .container-fluid {
  width: 100%;
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative; }

.breadcrumb ul, .header__container nav ul, .footer .container nav ul, .company .block-content .block-list ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.plant__item--content h2, .product__item h2, .company .block-content .title-block h2 {
  font-size: 24px;
  font-weight: 400;
  border-left: 6px solid var(--primary);
  padding-left: 16px;
  margin: 0 0 20px;
  color: #231916;
  letter-spacing: 5px; }

.service-section__list article figure img, .corporate-section__list article figure img {
  width: 100%; }
.service-section__list article h3, .corporate-section__list article h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--primary);
  margin: 0 0 15px;
  letter-spacing: 5px; }
.service-section__list article .article-content, .corporate-section__list article .article-content {
  font-size: 14px;
  line-height: 28px; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="phone"],
input[type="search"],
textarea,
select {
  border: 1px solid var(--gray);
  border-radius: var(--radius);
  padding: 15px 24px;
  outline: none !important; }

.btn,
button,
input[type="button"],
input[type="submit"] {
  transition: all 0.3s;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  outline: none !important;
  background: var(--primary);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px 6px 28px;
  white-space: nowrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 50px;
  min-height: 33px; }
  @media only screen and (min-width: 768px) {
    .btn,
    button,
    input[type="button"],
    input[type="submit"] {
      font-size: 14px; } }
  .btn:hover,
  button:hover,
  input[type="button"]:hover,
  input[type="submit"]:hover {
    opacity: 0.9;
    color: var(--white); }
  .btn img,
  button img,
  input[type="button"] img,
  input[type="submit"] img {
    max-width: 8px;
    margin-left: 10px; }
  .btn.btn-white,
  button.btn-white,
  input[type="button"].btn-white,
  input[type="submit"].btn-white {
    color: var(--primary);
    background: var(--white); }

.btn-outline {
  transition: all 0.3s;
  color: var(--primary);
  padding: 15px 25px;
  min-width: 230px;
  text-align: center;
  font-weight: 700;
  display: inline-block;
  outline: none !important;
  border-radius: var(--radius);
  background: none;
  text-transform: uppercase;
  border: 1px solid var(--primary); }
  .btn-outline:hover {
    opacity: 0.9;
    color: var(--white); }
  .btn-outline svg {
    margin-right: 15px;
    max-height: 20px; }
  .btn-outline.btn-white {
    border-color: var(--white);
    color: var(--white); }

.container-fluid {
  max-width: 1920px; }
  @media (min-width: 48em) {
    .container-fluid {
      padding: 0 64px; } }

.hamburger {
  position: relative;
  width: 46px;
  height: 46px;
  line-height: 1;
  cursor: pointer;
  display: block;
  right: 0;
  z-index: 99;
  align-self: flex-end;
  border: 0;
  opacity: 1; }
  @media only screen and (min-width: 768px) {
    .hamburger {
      display: none; } }
  @media only screen and (max-width: 767px) {
    .hamburger {
      right: -10px;
      top: -5px; } }
  .hamburger__line {
    width: 29px;
    height: 3px;
    background: var(--white);
    backface-visibility: hidden;
    position: absolute;
    display: block;
    margin: auto;
    transition: 0.3s all ease;
    transform: rotate(0deg);
    border-radius: 5px;
    top: calc(50% - 1.5px);
    left: calc(50% - 14.5px); }
    .hamburger__line::before, .hamburger__line::after {
      content: '';
      transform-origin: center center;
      width: 29px;
      height: 3px;
      background: var(--white);
      backface-visibility: hidden;
      position: absolute;
      left: 0;
      top: 10px;
      transition: 0.3s all ease;
      border-radius: 5px;
      opacity: 1; }
    .hamburger__line::after {
      top: -10px; }
  .hamburger.active .hamburger__line {
    transform: rotate(225deg); }
    .hamburger.active .hamburger__line::before {
      transform: rotate(-90deg);
      top: 0; }
    .hamburger.active .hamburger__line::after {
      opacity: 0; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.page-title {
  padding: 30px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover; }
  .page-title h1 {
    color: var(--white);
    font-size: 36px;
    font-size: 700;
    text-align: center;
    letter-spacing: 12px; }
    @media only screen and (max-width: 767px) {
      .page-title h1 {
        font-size: 30px; } }

.section {
  padding: 60px 0; }
  @media only screen and (min-width: 768px) {
    .section {
      padding: 80px 0; } }
  .section__heading {
    text-align: center;
    margin-bottom: 35px; }
    @media only screen and (min-width: 768px) {
      .section__heading {
        margin-bottom: 55px; } }
    .section__heading h2 {
      font-size: 24px;
      font-weight: 700;
      color: #231916;
      position: relative;
      padding-bottom: 20px;
      margin: 0 0 18px;
      letter-spacing: 7px; }
      @media only screen and (min-width: 768px) {
        .section__heading h2 {
          font-size: 31px;
          margin: 0 0 25px; } }
      .section__heading h2::after {
        content: '';
        width: 24px;
        height: 5px;
        position: absolute;
        left: calc(50% - 12px);
        bottom: 0;
        background: #231916; }
        @media only screen and (min-width: 768px) {
          .section__heading h2::after {
            height: 8px; } }
    .section__heading h3 {
      font-size: 19px;
      line-height: 30px;
      font-weight: 700;
      color: var(--primary);
      margin: 0;
      letter-spacing: 5px;
      padding: 0 15px; }
      @media only screen and (min-width: 768px) {
        .section__heading h3 {
          font-size: 32px;
          line-height: 51px; } }

.breadcrumb {
  margin-bottom: 50px; }
  .breadcrumb ul {
    padding: 13px 0; }
    .breadcrumb ul li {
      display: inline-block;
      color: #231916;
      font-size: 14px; }
      .breadcrumb ul li + li::before {
        content: '>';
        display: inline-block;
        margin: 0 10px; }
      .breadcrumb ul li a {
        color: #231916; }

.content-image {
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .content-image {
      margin-bottom: 60px; } }
  @media only screen and (min-width: 768px) {
    .content-image__inner {
      display: flex;
      margin: 0 -15px; } }
  .content-image__content {
    font-size: 14px;
    line-height: 28px;
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .content-image__content {
        width: 65%;
        padding: 0 15px;
        margin-bottom: 0; } }
  .content-image__image {
    text-align: center; }
    @media only screen and (min-width: 768px) {
      .content-image__image {
        width: 35%;
        padding: 0 15px;
        text-align: right; } }
    .content-txt{
        font-size: 14px;
    line-height: 28px;
    margin-bottom: 40px;
    }
    .content-ps{
        display: flex;
    justify-content: flex-end;
    align-items: center;
    }
.slick-arrow {
  z-index: 20; }
  .slick-arrow.slick-prev {
    left: 15px; }
  .slick-arrow.slick-next {
    right: 15px; }

#wpadminbar {
  position: fixed;
  top: 0; }

body.show-nav .header {
  background: var(--primary); }
  body.show-nav .header nav {
    opacity: 1;
    visibility: visible; }

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 84px;
  z-index: 99;
  display: flex;
  align-items: center;
  transition: all 0.3s; }
  @media only screen and (min-width: 768px) {
    .header {
      min-height: 84px; } }
  @media only screen and (max-width: 767px) {
    .header {
      height: 54px; } }
  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 30px;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .header__container {
        padding-inline: 15px; } }
    .header__container img {
      width: 128px;
      height: auto;
      object-fit: contain; }
    @media only screen and (max-width: 767px) {
      .header__container nav {
        position: absolute;
        left: 0;
        width: 100%;
        padding: 30px 30px 150px;
        background: var(--white);
        height: calc(100vh - 80px);
        text-align: center;
        background: var(--primary);
        top: 100%;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s; } }
    @media only screen and (min-width: 768px) {
      .header__container nav ul {
        display: flex;
        justify-content: flex-end; } }
    @media only screen and (max-width: 767px) {
      .header__container nav ul li {
        margin-bottom: 5px; } }
    .header__container nav ul li a {
      display: block;
      padding: 5px 0;
      font-size: 14px;
      color: #fff; }
      @media only screen and (min-width: 768px) {
        .header__container nav ul li a {
          padding: 0 5px;
          font-size: 12px;
          border-right: 1px solid #fff; } }
    .header__container nav ul li:last-child a {
      padding-right: 0;
      border-right: none; }

.footer {
  background-color: #403632;
  min-height: 165px;
  padding-top: 25px;
  padding-bottom: 30px;
  font-size: 12px;
  text-align: center;
  color: #fff; }
  .footer a {
    color: #fff; }
  .footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 10px; }
    .footer .container figure {
      width: 128px;
      height: 53px; }
      .footer .container figure img {
        width: 100%;
        height: auto;
        object-fit: contain; }
    .footer .container nav ul {
      display: flex; }
      .footer .container nav ul li a {
        display: block;
        padding-inline: 5px;
        border-right: 1px solid #fff; }
      .footer .container nav ul li:last-child a {
        padding-right: 0;
        border-right: none; }
  .footer .btt {
    text-transform: uppercase;
    top: -50px;
    color: #231916;
    position: absolute;
    right: 15px; }

/** Pages */
.banner {
  background: url("../images/banner.jpg") no-repeat 50% 50%/cover;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 768px) {
    .banner {
      min-height: 421px;
      max-width: 100%; } }
  .banner video {
    width: 100%;
    transform: scale(2); }
  .banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 145, 68, 0.6);
    width: 100%;
    height: 100%; }
  .banner .container {
    position: absolute;
    z-index: 2; }
  .banner__inner {
    display: inline-block; }
    .banner__inner img {
      width: 500px; }
      @media only screen and (max-width: 768px) {
        .banner__inner img {
          width: 200px; } }
  .banner h1 {
    font-size: 43px;
    font-weight: 700;
    color: var(--white);
    line-height: 74px;
    letter-spacing: 6px;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      .banner h1 {
        font-size: 47px;
        line-height: 65px; } }
  .banner h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    line-height: 45px;
    letter-spacing: 10px;
    margin: 0; }
    @media only screen and (min-width: 768px) {
      .banner h2 {
        font-size: 23px;
        line-height: 40px; } }
  .banner figure {
    position: relative;
    margin: 10px 0 5px; }
    @media only screen and (min-width: 768px) {
      .banner figure {
        margin: 10px 0 0; } }
    .banner figure::before, .banner figure::after {
      content: '';
      width: calc(50% - 15px);
      border-bottom: 1px solid var(--white);
      position: absolute;
      top: 50%;
      left: 0; }
    .banner figure::after {
      left: auto;
      right: 0; }
    .banner figure img {
      width: 30px; }
  .banner .scroll {
    position: absolute;
    bottom: 0;
    z-index: 1;
    text-align: center;
    padding: 20px 0; }
    @media (min-width: 48em) {
      .banner .scroll {
        bottom: 30px; } }
    .banner .scroll img {
      width: 100%;
      max-width: 38px; }

.service-section {
  background: url("../images/bg-service.png") no-repeat 100% 0;
  padding-bottom: 40px; }
  .service-section .section__heading {
    margin-bottom: 35px; }
    @media only screen and (min-width: 768px) {
      .service-section .section__heading {
        margin-bottom: 55px; } }
  .service-section .video {
    text-align: center;
    margin-bottom: 60px; }
    .service-section .video iframe {
      max-width: 100%; }
      @media only screen and (max-width: 768px) {
        .service-section .video iframe {
          width: 100%;
          height: 250px; } }
  @media only screen and (min-width: 768px) {
    .service-section__list {
      display: flex;
      margin: 0 -15px;
      flex-wrap: wrap; } }
  @media only screen and (min-width: 1200px) {
    .service-section__list {
      margin: 0 -30px; } }
  .service-section__list article {
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .service-section__list article {
        padding: 0 15px;
        width: 50%; } }
    @media only screen and (min-width: 1200px) {
      .service-section__list article {
        padding: 0 30px;
        margin-bottom: 50px; } }

.corporate-section {
  background: #F0ECE4; }
  @media only screen and (min-width: 768px) {
    .corporate-section__list {
      display: flex;
      margin: 0 -15px;
      flex-wrap: wrap; } }
  @media only screen and (min-width: 1200px) {
    .corporate-section__list {
      margin: 0 -20px; } }
  .corporate-section__list article {
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .corporate-section__list article {
        padding: 0 15px;
        width: 33.33%;
        margin-bottom: 0; } }
    @media only screen and (min-width: 1200px) {
      .corporate-section__list article {
        padding: 0 20px; } }

.plant {
  padding-bottom: 30px; }
  .plant__item {
    margin-bottom: 40px; }
    @media only screen and (min-width: 768px) {
      .plant__item {
        margin-bottom: 30px; } }
    @media only screen and (min-width: 768px) {
      .plant__item--inner {
        display: flex;
        margin: 0 -15px; } }
    @media only screen and (min-width: 768px) {
      .plant__item--content {
        width: 50%;
        padding: 0 15px; } }
    .plant__item--content h3 {
      font-size: 14px;
      font-weight: 400;
      color: #231916;
      margin: 0 0 28px; }
    .plant__item--map {
      margin-bottom: 24px; }
      @media only screen and (min-width: 768px) {
        .plant__item--map {
          width: 50%;
          padding: 0 15px; } }
    .plant__item--images {
      display: flex;
      margin: 0 -12px;
      flex-wrap: wrap; }
      @media only screen and (min-width: 768px) {
        .plant__item--images {
          max-width: 462px; } }
      .plant__item--images figure {
        padding: 0 12px;
        margin-bottom: 24px;
        width: 50%; }
        .plant__item--images figure img {
          width: 100%; }

.products {
  padding-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .products {
      padding-bottom: 40px; } }
  @media only screen and (min-width: 1200px) {
    .products {
      padding-bottom: 40px; } }
  @media only screen and (min-width: 768px) {
    .products__inner {
      display: flex;
      margin: 0 -15px;
      flex-wrap: wrap; } }
  @media only screen and (min-width: 1200px) {
    .products__inner {
      margin: 0 -30px; } }

.product__item {
  margin-bottom: 40px; }
  @media only screen and (min-width: 768px) {
    .product__item {
      width: 50%;
      padding: 0 15px;
      margin-bottom: 30px; } }
  @media only screen and (min-width: 1200px) {
    .product__item {
      width: 33.33%;
      padding: 0 30px;
      margin-bottom: 60px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start; } }
  .product__item h2 {
    line-height: 30px;
    margin-bottom: 20px;
    height: 100%;
    display: flex;
    align-items: center; }
    @media only screen and (min-width: 1200px) {
      .product__item h2 {
        height: 50px; } }
  .product__item--content {
    font-size: 14px;
    color: #231916;
    line-height: 21px;
    margin: 0 0 20px; }
    @media only screen and (min-width: 1200px) {
      .product__item--content {
        height: 50px; } }
  .product__item--images {
    margin-bottom: 20px; }
  .product__item figure img {
    width: 100%; }
  .product__item .popup-video {
    position: relative;
    display: block; }
    .product__item .popup-video::before {
      content: '';
      background: url("../images/play.svg") no-repeat 50% 50%;
      width: 50px;
      height: 50px;
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%); }

.company {
  padding-bottom: 30px; }
  .company .block-content {
    margin-bottom: 50px; }
    .company .block-content .title-block {
      margin: 0 0 20px;
      display: flex;
      align-items: center; }
      .company .block-content .title-block h2 {
        display: inline-block;
        margin: 0; }
      .company .block-content .title-block .btn {
        margin-left: 15px; }
    .company .block-content .block-text {
      font-size: 14px;
      line-height: 28px; }
      .company .block-content .block-text h3 {
        font-size: 21px;
        font-weight: 400;
        color: #231916;
        margin: 0 0 27px; }
      @media only screen and (min-width: 768px) {
        .company .block-content .block-text--image {
          display: flex;
          margin: 0 -15px; } }
      @media only screen and (min-width: 768px) {
        .company .block-content .block-text--image .block__description {
          padding: 0 15px;
          width: 67%; } }
      @media only screen and (min-width: 768px) {
        .company .block-content .block-text--image figure {
          padding: 0 15px;
          width: 33%; } }
      .company .block-content .block-text--image figure img {
        width: 100%; }
      .company .block-content .block-text--image figure .figcaption {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin: 10px 0; }
        .company .block-content .block-text--image figure .figcaption img {
          margin-left: 15px; }
          .company .block-content .block-text--image figure .figcaption img.sign {
            width: 100px; }
    .company .block-content .block-list {
      font-size: 14px;
      line-height: 28px; }
      @media only screen and (min-width: 768px) {
        .company .block-content .block-list {
          display: flex;
          flex-wrap: wrap; } }
      @media only screen and (min-width: 768px) {
        .company .block-content .block-list ul {
          padding: 0 15px;
          width: 50%; } }
      .company .block-content .block-list ul li {
        display: flex;
        margin: 0 -15px;
        justify-content: space-between; }
        .company .block-content .block-list ul li label {
          padding: 0 15px; }
        .company .block-content .block-list ul li p {
          padding: 0 15px;
          width: calc(100% - 150px);
          margin: 0; }
        .company .block-content .block-list ul li.text-justify label {
          display: inline-block;
          text-align: justify;
          text-align-last: justify;
          min-width: 145px; }

body .wpcf7 {
  border: 0;
  background: none;
  margin-bottom: 80px; }

.wpcf7-form .row {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
  .wpcf7-form .row:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.07); }
  .wpcf7-form .row:last-child {
    border-bottom: 0; }
  .wpcf7-form .row.last {
    border-bottom: 0; }
  .wpcf7-form .row .left {
    width: 220px;
    font-weight: 600;
    display: flex;
    align-items: center; }
  .wpcf7-form .row .right {
    width: calc(100% - 220px); }
  .wpcf7-form .row .right.delivery {
    display: flex;
    align-items: center; }
    .wpcf7-form .row .right.delivery input {
      width: 70px;
      text-align: center; }
.wpcf7-form input.wpcf7-form-control {
  box-sizing: border-box;
  display: block;
  width: 100%;
  max-width: 300px;
  height: 36px;
  margin: 0;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  .wpcf7-form input.wpcf7-form-control:-moz-placeholder {
    color: rgba(0, 0, 0, 0.2); }
.wpcf7-form input[type="checkbox"]:checked ~ .wpcf7-list-item-label::before {
  border-color: #000;
  background: #000; }
.wpcf7-form input[type="checkbox"]:checked ~ .wpcf7-list-item-label::after {
  opacity: 1; }
.wpcf7-form input[type="submit"] {
  transition: all 0.3s;
  color: var(--white);
  text-align: center;
  font-weight: 700;
  outline: none !important;
  background: var(--primary);
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 20px 6px 28px;
  white-space: nowrap;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 50px;
  min-height: 40px; }
  @media only screen and (max-width: 768px) {
    .wpcf7-form input[type="submit"] {
      font-size: 14px; } }
.wpcf7-form .content-consultation input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  margin: 0;
  padding: 0;
  border: none;
  background: 0 0;
  opacity: 0; }
.wpcf7-form .your-add1 input {
  width: 70px;
  text-align: center; }
.wpcf7-form .your-add2 input {
  width: 70px;
  text-align: center; }
.wpcf7-form .your-add3 input {
  max-width: none; }
.wpcf7-form .wpcf7-select {
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  height: 36px;
  margin: 0;
  padding: 5px 15px;
  border-radius: 0;
  background: 0 0;
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.5px;
  outline: 0;
  cursor: pointer; }
.wpcf7-form .wpcf7-textarea {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 200px;
  margin: 0;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 2.77;
  letter-spacing: 0.5px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0;
  background: 0 0; }
  .wpcf7-form .wpcf7-textarea::placeholder {
    color: rgba(0, 0, 0, 0.2); }
  .wpcf7-form .wpcf7-textarea::-moz-placeholder {
    color: rgba(0, 0, 0, 0.2); }
.wpcf7-form .prefix {
  margin-right: 10px; }
.wpcf7-form .suffix {
  margin-left: 10px; }
.wpcf7-form .separate {
  margin: 0 10px;
  margin: 0 10px; }
.wpcf7-form .item {
  display: flex;
  align-items: center;
  margin-bottom: 20px; }
  .wpcf7-form .item:last-child {
    margin-bottom: 0px; }
.wpcf7-form .acceptance {
  display: flex;
  justify-content: center; }
  .wpcf7-form .acceptance a.linelink {
    margin: 0 5px; }
.wpcf7-form p.submit {
  margin-top: 40px; }

input.wpcf7-form-control::placeholder {
  color: rgba(0, 0, 0, 0.2); }

.wpcf7-form-control.wpcf7-radio {
  display: flex; }
  .wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
    padding-right: 10px; }
    .wpcf7-form-control.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label {
      position: relative; }
  .wpcf7-form-control.wpcf7-radio input[type="radio"] {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    border: none;
    background: 0 0;
    opacity: 0; }
    .wpcf7-form-control.wpcf7-radio input[type="radio"]:checked ~ .wpcf7-list-item-label::after {
      opacity: 1; }
  .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::after {
    content: "";
    display: block;
    position: absolute;
    top: 6px;
    left: 4px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #000;
    opacity: 0; }
  .wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label::before {
    content: "";
    box-sizing: border-box;
    display: block;
    position: absolute;
    top: 1px;
    left: 0;
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%; }

.wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  line-height: 35px; }
  .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item {
    padding-right: 20px;
    position: relative; }
    .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
      top: 10px;
      left: 0;
      width: 14px;
      height: 14px;
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-top-color: rgba(0, 0, 0, 0.2);
      border-right-color: rgba(0, 0, 0, 0.2);
      border-bottom-color: rgba(0, 0, 0, 0.2);
      border-left-color: rgba(0, 0, 0, 0.2); }
    .wpcf7-form-control.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::after {
      transform: rotate(-45deg);
      top: 12px;
      left: 2px;
      width: 10px;
      height: 6px;
      border-left: 2px solid #fff;
      border-bottom: 2px solid #fff;
      opacity: 0; }

.wpcf7-list-item-label {
  padding-left: 20px; }

.wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute; }
.wpcf7-list-item .wpcf7-list-item-label::before {
  content: "";
  box-sizing: border-box;
  display: block;
  position: absolute; }

@media (max-width: 767px) {
  .wpcf7-form .row {
    padding: 15px 0; }
    .wpcf7-form .row .left {
      width: 100%;
      margin-bottom: 20px; }
    .wpcf7-form .row .right {
      width: 100%; }
  .wpcf7-form input.wpcf7-form-control {
    max-width: unset; }
  .wpcf7-form .wpcf7-form-control.wpcf7-submit {
    margin-left: 0 !important; }

  body .wpcf7 select {
    font-size: 12px;
    line-height: 1.2; }
  body .wpcf7 .wpcf7-list-item-label {
    font-size: 12px;
    line-height: 1.2; } }
/** Section**/
.scrolldown3 {
  position: absolute;
  bottom: 10px;
  right: 50%;
  animation: mousemove 1.6s ease-in-out infinite; }

@keyframes mousemove {
  0% {
    bottom: 10px; }
  50% {
    bottom: 5px; }
  100% {
    bottom: 10px; } }
.scrolldown3 span {
  position: absolute;
  left: -15px;
  bottom: 45px;
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em; }

.scrolldown3 span::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 17px;
  width: 1px;
  height: 15px;
  background: #eee;
  animation: mousepathmove 1.4s linear infinite;
  opacity: 0; }

@keyframes mousepathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0; }
  50% {
    height: 15px;
    opacity: 1; }
  100% {
    height: 0;
    top: 30px;
    opacity: 0; } }
.scrolldown3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 25px;
  height: 37px;
  border-radius: 50px;
  border: 1px solid #eee; }

.scrolldown3:after {
  content: "";
  position: absolute;
  bottom: 26px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid #eee; }

/*# sourceMappingURL=styles.css.map */
 @media only screen and (min-width: 1024px){
	.page-id-23 .content-image {
	  margin-bottom: 100px;
	}
	.page-id-23 .content-image__inner {
	  justify-content: space-between;margin:0;
	}
	.page-id-23 .content-image__inner .content-image__content {margin-bottom: 0;}
	.page-id-23 .food-safety-policy {margin-bottom: 80px;}
}
.btn-video{
    display: block;
    width: 260px;
    margin: 15px auto 0;
    border-radius: 50px;
    font-size: 16px;
    line-height: 32px;
    padding: 6px 12px;
    background: var(--primary);
    color: #fff;
    white-space: nowrap;
}
.btn-video:hover{
    color: #fff;
    opacity: 0.7;
}
.service-section .video .modal-video{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    display: none;
}
.service-section .video .modal-video.active{
    display: block;
}
.service-section .video .modal-video video{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%) scale(0);
    transition: all 0.5s;
    max-width: 80%;
}
.service-section .video .modal-video.active video{
    transform: translate(-50%,-50%) scale(1);
}
.service-section .video .modal-video .btn-close{
    position: absolute;
    right: 30px;
    top: 30px;
    z-index: 9;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}