@charset "UTF-8";

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 2;
  font-family: dnp-shuei-mincho-pr6n, sans-serif;
  font-weight: 500;
  /* 600もある */
  font-style: normal;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

img {
  vertical-align: bottom;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.not-tb-only {
  display: block;
}

.tb-sp-only {
  display: none;
}

.pc-logo {
  display: block;
}

.tb-sp-logo {
  display: none;
}

#splash {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9998;
}

#splash-logo-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9998;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  width: 300px;
}

#splash-logo-img img {
  width: 80%;
  max-width: 300px;
}

#splash-logo img {
  width: 80%;
  max-width: 300px;
}

/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg {
  display: block;
  content: "";
  position: absolute;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleY(0);
  background-color: #b42636;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

body.appear .splashbg.end {
  display: none;
}

@keyframes PageAnime {
  0% {
    transform-origin: bottom;
    transform: scaleY(0);
  }

  70% {
    opacity: 1;
    transform-origin: bottom;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform-origin: top;
    transform: scaleY(1);
  }

  /* 50.001% {
    transform-origin: top;
  }
  100% {
    transform-origin: top;
    transform: scaleY(0);
  } */
}

/*画面遷移の後現れるコンテンツ設定*/

#container {
  opacity: 0;
  /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.aos-animate#top-catch {
  transition-delay: 4s;
}

/*==================================================header====================================================*/
header {
  width: 100%;
  position: fixed;
  top: 0rem;
  z-index: 50000;
  background-color: rgba(000, 000, 000, 0.8);
  display: none;
}

.wrap-header {
  font-weight: 500;
  height: 80px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  width: 200px;
  transition: 0.2s;
  margin-left: 1rem;
}

.header-logo:hover {
  opacity: 0.7;
}

.header-logo img {
  width: 100%;
}

.gnav {
  display: block;
}

.gnav ul {
  display: flex;
}

.gnav ul li {
  margin: 15px;
  text-align: center;
  position: relative;
}

.gnav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  position: relative;
  display: block;
  transition: 0.2s;
}

.gnav ul li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.gnav ul li a:hover {
  color: #999;
}

.gnav ul li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.nav-btn {
  display: none;
  width: 30px;
  height: 25px;
  position: relative;
  z-index: 2000;
  cursor: pointer;
}

.nav-btn .btn-line {
  position: absolute;
  border-top: 2px solid #b42636;
  width: 100%;
  height: 1px;
  transition: 0.2s;
}

.nav-btn .btn-line:nth-child(1) {
  top: 2px;
}

.nav-btn .btn-line:nth-child(2) {
  top: 12px;
}

.nav-btn .btn-line:nth-child(3) {
  top: 22px;
}

.nav-btn .btn-line.active:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  width: 32px;
}

.nav-btn .btn-line.active:nth-child(2) {
  opacity: 0;
}

.nav-btn .btn-line.active:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  width: 32px;
}

.to-top {
  width: 80px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 50;
  display: none;
}

.to-top img {
  width: 100%;
  transition: 0.2s;
}

.to-top img:hover {
  transform: translateY(-2rem);
}

/*==================================================/header====================================================*/

/*===================================================共通=======================================================*/
.center-item {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
}

.full-width-item {
  width: 100%;
}

section {
  margin: 18rem auto;
}

.section-title {
  font-family: dnp-shuei-shogomincho-std, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 5rem;
  line-height: 1;
  color: #b42636;
}

.section-sub-title {
  font-family: dnp-shuei-mincho-pr6n, sans-serif;
  font-size: 2rem;
  font-weight: normal;
  color: #000;
  margin-top: 2rem;
  line-height: 1.5;
}

.vertical {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.vertical .section-title {
  text-align: left;
  margin-left: 4rem;
}

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

main {
  width: 100%;
  display: block;
}

/* IEのみに適応させる */
@media all and (-ms-high-contrast: none) {
  #container {
    opacity: 1;
  }

  #splash {
    display: none;
  }

  #splash-logo-img {
    display: none;
  }

  [data-aos^="fade"][data-aos^="fade"] {
    opacity: 1 !important;
  }

  [data-aos="fade-up"] {
    transform: translate3d(0, 0, 0) !important;
  }

  .wrap-newspage main {
    display: inline;
  }

  .fade-white {
    display: none;
  }

  footer {
    position: relative;
    z-index: 3;
  }
}

/*===================================================/共通=======================================================*/

/*===================================================main=======================================================*/
/*===================トップページ=====================*/
.wrap-top-header {
  background-color: #fff;
  position: relative;
  z-index: 5;
  width: 100%;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
}

.top-header ul {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  padding: 2rem 0;
}

.top-header ul li {
  margin: 0 4rem;
}

.top-header ul li a {
  color: #000;
  transition: 0.2s;
  padding: 0 1rem;
  position: relative;
  display: inline-block;
}

.top-header ul li a.not-current::after {
  position: absolute;
  top: 0;
  right: 0px;
  content: "";
  width: 2px;
  height: 100%;
  background: #b42636;
  transform: scale(1, 0);
  transform-origin: right top;
  transition: transform 0.3s;
}

.top-header ul li a.not-current:hover::after {
  transform-origin: top bottom;
  transform: scale(1, 1);
}

.top-header ul li a.current {
  border-right: 2px solid #b42636;
}

.top-logo {
  width: 100%;
  max-width: 300px;
}

.top-logo a {
  transition: 0.2s;
}

.top-logo a:hover {
  opacity: 0.7;
}

.top-logo img {
  width: 100%;
}

.blur-top {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.wrap-video {
  position: relative;
}

.wrap-top-catch {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
}

@media all and (-ms-high-contrast: none) {
  .wrap-top-catch {
    top: 57%;
  }
}

.wrap-video h1 {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 5rem;
  line-height: 3;
  letter-spacing: 5px;
  white-space: nowrap;
}

.wrap-top-img {
  width: 100%;
  height: 90vh;
  position: relative;
}

.top-img {
  width: 100%;
  height: 90vh;
  position: absolute;
  top: 3vh;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.top-img video {
  height: 90vh;
  max-height: 1100px;
  width: 100%;
  object-fit: cover;
}

.top-img scroll {
  position: absolute;
  bottom: 10vh;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
}

.top-img scroll span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #b42636;
  border-bottom: 1px solid #b42636;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }

  20% {
    -webkit-transform: rotate(-45deg) translate(-10px, 10px);
  }

  40% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
  }
}

@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }

  20% {
    transform: rotate(-45deg) translate(-10px, 10px);
  }

  40% {
    transform: rotate(-45deg) translate(0, 0);
  }
}

.wrap-top-content {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 9rem 0 0;
}

@media all and (-ms-high-contrast: none) {
  .wrap-top-content {
    padding: 9rem 0;
  }
}

.top-slider {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  padding: 3rem;
  position: relative;
}

.top-slider-item {
  width: 50%;
  max-width: 850px;
  padding: 2rem;
}

.top-slider-item img {
  width: 100%;
}

.prev,
.next {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  position: absolute;
  top: -3rem;
}

.next {
  right: 1rem;
  background-size: 3rem 3rem;
  background: url(../img/top/right.svg) no-repeat;
}

.prev {
  background-size: 3rem 3rem;
  background: url(../img/top/left.svg) no-repeat;
  right: 5rem;
}

.slide-dots {
  margin: 0;
  padding: 0;
  text-align: left;
  position: absolute;
  top: -3rem;
}

.slide-dots li {
  display: inline-block;
  margin: 0 1rem 0 0;
  position: relative;
}

.slide-dots li button {
  text-indent: -9999px;
}

.slide-dots li button::before {
  /* background-image: url(/assets/img/top/right.svg);
  background-repeat: no-repeat;
  background-size: contain; */
  background-color: #fff;
  border: 1px solid #b42636;
  border-radius: 50%;
  content: "";
  cursor: pointer;
  height: 1.2rem;
  left: 0;
  margin: auto;
  position: absolute;
  width: 1.2rem;
}

.slide-dots li.slick-active button::before {
  background-color: #b42636;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0 7px;
}

.commitment {
  color: #b42636;
  display: flex;
  justify-content: center;
}

.IE-wrap-commitment {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.commitment-item {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1s;
  animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: 0.5s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}

.commitment .section-title {
  font-size: 4.2rem;
  margin-left: 4rem;
  text-align: start;
}

.commitment .commitment-text {
  font-size: 2rem;
}

.wrap-business {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

.business-item {
  width: 25%;
  text-align: center;
}

.business-item h3 {
  background-color: #b42636;
  color: #fff;
  font-size: 2rem;
  padding: 1rem 2rem;
  border-radius: 3rem;
  display: inline-block;
  margin-bottom: 3rem;
}

.business-item img {
  width: 100%;
  max-width: 300px;
}

.business-btn {
  font-size: 2rem;
  display: inline-block;
  padding: 0.5rem 2rem;
  border: 2px solid #b42636;
  color: #b42636;
  margin-top: 5rem;
  transition: 0.2s;
}

.business-btn:hover {
  background-color: #b42636;
  color: #fff;
}

.wrap-product {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.product-item {
  width: 28%;
  text-align: center;
}

.product-img {
  display: block;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
}

.product-img img {
  width: 100%;
  max-width: 350px;
  height: 350px;
  transition: 0.2s;
  object-fit: cover;
  height: 100%;
}

.product-img:hover img {
  transform: scale(1.1);
}

.product-item-text {
  margin-top: 3rem;
}

.product-item-text h3 {
  font-size: 2.4rem;
  color: #b42636;
}

.product-item-text p {
  font-size: 1.6rem;
  margin: 2rem 0;
  line-height: 3rem;
}

.product-item a.btn {
  font-size: 2rem;
  color: #b42636;
  display: inline-block;
  border: 2px solid #b42636;
  padding: 0.5rem 1rem;
  transition: 0.2s;
}

.product-item a.btn:hover {
  background-color: #b42636;
  color: #fff;
}

.top-news .section-title {
  margin-left: -40rem;
  margin-bottom: 3rem;
}

.wrap-top-news {
  text-align: center;
  display: block;
  font-size: 1.6rem;
}

.wrap-top-news ul {
  display: inline-block;
}

.wrap-top-news ul li {
  text-align: left;
}

.wrap-top-news ul li a h3 {
  font-weight: normal;
  color: #000;
}

.wrap-top-news ul li a h3:hover {
  opacity: 0.6;
}

.wrap-top-news ul li a h3 span {
  margin-right: 2rem;
}

.company {
  font-size: 1.8rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.company-right {
  width: 55%;
  position: relative;
  overflow: hidden;
}

.fade-white {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.fade-white.active {
  animation: fadewhite 1s forwards;
}

@keyframes fadewhite {
  0% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

.company-right img {
  width: 100%;
}

.company-left {
  width: 40%;
}

.company .vertical .section-title {
  margin-left: 2rem;
}

.company-text {
  padding: 5rem 0 0;
  text-align: left;
  text-orientation: upright;
}

.company-text p {
  text-align: left;
  white-space: nowrap;
}

.company-text a {
  display: block;
  margin-right: 2rem;
  font-size: 2rem;
  color: #000;
  transition: 0.2s;
}

.company-text a:hover {
  transform: translateY(1rem);
}

.arrow {
  margin-top: 0.5rem;
  position: relative;
  display: inline-block;
  padding: 0 0 0 16px;
  color: #000;
  vertical-align: middle;
  text-decoration: none;
  font-size: 15px;
}

.arrow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -7px;
  margin: auto;
  content: "";
  vertical-align: middle;
  box-sizing: border-box;
  width: 2rem;
  height: 2rem;
  border: 1px solid #b42636;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.arrow::after {
  position: absolute;
  top: 5px;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  left: 0px;
  box-sizing: border-box;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 1px solid #b42636;
  border-bottom: 1px solid #b42636;
  transform: rotate(45deg);
}

#top-page .recruit .section-title {
  margin-left: -60rem;
}

.wrap-recruit {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: flex-end;
  font-size: 2rem;
}

.wrap-recruit a {
  margin-left: 2rem;
  font-size: 2rem;
  border: 2px solid #b42636;
  padding: 0.5rem 1rem;
  color: #b42636;
  transition: 0.2s;
}

.wrap-recruit a:hover {
  background-color: #b42636;
  color: #fff;
}

.wrap-contact {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}

.wrap-contact .section-title {
  margin-bottom: 0;
}

.contact-item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.contact-item:hover {
  opacity: 0.6;
}

.contact-img {
  width: 100%;
  max-width: 100px;
  margin-right: 1rem;
}

.contact-img img {
  width: 100%;
}

.contact-text {
  font-size: 1.6rem;
}

.contact-tell {
  font-size: 4rem;
}

.contact-form {
  font-size: 3rem;
}

/*===================会社概要=====================*/
.wrap-ceo {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.ceo-item {
  position: relative;
  margin: 0 2rem;
  width: 50%;
}

.ceo-item img {
  width: 100%;
  max-width: 600px;
}

.title-bottom-line {
  display: inline-block;
  font-size: 2rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 3px solid #b42636;
}

.ceo-text {
  font-size: 1.5rem;
}

.ceo-sign {
  font-family: vdl-pengentle, sans-serif;
  font-size: 5rem;
  margin-top: 0rem;
  text-align: right;
  line-height: 1.2;
}

.ceo-sign span {
  font-size: 2rem;
}

.wrap-quality {
  width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.quality-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quality-item:nth-of-type(n + 2) {
  margin-top: 5rem;
}

.quality-item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  width: 100px;
  height: 100px;
  background-color: #b42636;
  border-radius: 50%;
  color: #fff;
}

.quality-item p {
  margin-left: 2rem;
  font-size: 1.6rem;
}

.company-overview {
  width: 100%;
  max-width: 900px;
  margin: 30px auto;
  line-height: 3;
}

.company-overview td {
  padding: 1rem;
  border-bottom: 1px solid #999;
}

.company-overview tr:first-child>td {
  border-top: 1px solid #999;
}

.company-overview td:first-child {
  width: 30%;
  min-width: 150px;
  vertical-align: middle;
  text-align: left;
}

.wrap-map {
  max-width: 900px;
  width: 95%;
  margin: 0 auto;
}

.wrap-map .section-title {
  text-align: left;
}

.map {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.wrap-map p {
  font-size: 2rem;
}

/*===================飲食店・給食事業者様へ=====================*/
.section-title-text {
  text-align: center;
  font-size: 2rem;
}

.policy-title {
  font-size: 2rem;
  background-color: #b42636;
  color: #fff;
  display: inline-block;
  padding: 0rem 2rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.policy-above,
.policy-below {
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-above img {
  width: 100%;
  max-width: 230px;
  margin-right: 2rem;
}

.policy-below {
  margin-top: 5rem;
}

.policy-below img {
  width: 100%;
  max-width: 500px;
  margin-right: 2rem;
}

.policy-below-right {
  align-self: stretch;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.m-left {
  margin-left: 1.6rem;
}

.policy-below-left {
  overflow: hidden;
  position: relative;
}

/*===================求人情報=====================*/
.center-text {
  text-align: center;
}

.center-text .section-title-text {
  margin-bottom: 3rem;
}

.wrap-recruit-item {
  width: 100%;
  max-width: 900px;
  margin: 5rem auto;
}

.tab-group {
  display: flex;
  justify-content: space-between;
}

.tab {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 48%;
  border: 4px solid #b42636;
  transition: 0.2s;
  padding: 2rem;
  cursor: pointer;
}

.tab img {
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
}

.tab h3 {
  font-size: 2rem;
  color: #b42636;
}

.panel {
  display: none;
}

.img-white {
  display: none;
}

.tab.is-active {
  background-color: #b42636;
}

.tab.is-active .img-red {
  display: none;
}

.tab.is-active .img-white {
  display: block;
}

.tab.is-active h3 {
  color: #fff;
}

.tab.is-active+.tab h3 {
  color: #b42636;
}

.panel-group .company-overview tr td:nth-child(2) {
  text-align: left;
}

.panel.is-show {
  display: block;
}

/*===================一般小売販売=====================*/
.retail-top-btn {
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}

.retail-top-btn a h2 {
  font-size: 2rem;
  padding: 1rem 2rem;
  background-color: #b42636;
  display: inline-block;
  border-radius: 3rem;
  border: 2px solid #b42636;
  color: #fff;
  font-weight: normal;
  transition: 0.2s;
}

.retail-top-btn a:nth-of-type(n + 2) h2 {
  margin: 2rem auto;
}

.retail-top-btn a h2:hover {
  background-color: #fff;
  color: #b42636;
}

.wrap-retail-title {
  font-size: 3rem;
}

.retail-cate {
  position: sticky;
  top: 10rem;
  z-index: 5;
  display: flex;
  justify-content: space-between;
}

.retail-cate a {
  font-size: 2rem;
  width: 32%;
  text-align: center;
  border: 1px solid #b42636;
  color: #b42636;
  background-color: #fff;
  transition: 0.2s;
}

.retail-cate a:hover {
  color: #fff;
  background-color: #b42636;
}

.retail {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.retail-item {
  width: 26%;
  margin-top: 5rem;
  color: #000;
  transition: 0.2s;
}

.retail-item img:first-child {
  width: 300px;
  height: 200px;
  object-fit: cover;
}

.retail-item:hover {
  opacity: 0.5;
}

.retail::after {
  content: "";
  display: block;
  width: 26%;
  height: 0;
}

.wrap-retail-img {
  position: relative;
}

.retail-item .retail-item-img {
  width: 100%;
}

.retail-item-buy {
  position: absolute;
  width: 100px;
  bottom: -10%;
  right: -10%;
  transition: 0.2s;
}

.retail-item-text {
  margin-top: 2rem;
  text-align: center;
}

.retail-item-text h3 {
  font-size: 2rem;
  line-height: 1.5;
}

.wrap-retail {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.wrap-retail-item {
  display: flex;
  justify-content: space-between;
}

.wrap-retail img {
  width: 95%;
  margin: 0 auto 2rem;
  max-width: 600px;
}

.retail-right {
  align-self: stretch;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.buy-btn {
  width: 120px;
  transition: 0.2s;
}

.buy-btn:hover {
  opacity: 0.7;
}

/*===================お問い合わせ=====================*/

.inquiry {
  width: 80%;
  margin: 0 auto 3rem;
  max-width: 900px;
}

.inquiry input[type="text"],
.inquiry input[type="email"],
.inquiry input[type="tel"],
.inquiry select,
.inquiry textarea {
  border: 1px solid #333;
  width: 100%;
  padding: 1rem;
  margin: 1rem 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.inquiry th {
  text-align: left;
  font-size: 1.6rem;
  color: #444;
  width: 20%;
  vertical-align: middle;
  white-space: nowrap;
  padding-right: 5px;
}

.inquiry td {
  width: 80%;
  font-size: 1.6rem;
}

.haveto {
  color: #b42636;
  margin-left: 5px;
}

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

#formbtn {
  cursor: pointer;
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #b42636;
  border: 1px solid #b42636;
  color: #fff;
  font-size: 1.6rem;
  transition: 0.2s;
}

#formbtn:hover {
  background-color: #fff;
  color: #b42636;
}

.privacy-box {
  height: 200px;
  overflow: scroll;
  padding: 1rem;
  border: 1px solid #777;
  margin: 2rem auto 0rem;
}

.wrap-text {
  margin-bottom: 1rem;
}

.privacy-title {
  color: #b42636;
}

.precautions {
  border-top: 1px solid #b42636;
  border-bottom: 1px solid #b42636;
  margin-top: 5rem;
  padding: 3rem 5rem;
  font-size: 1.4rem;
}

.precautions ul {
  list-style: disc;
  list-style-position: inside;
}

/*===================お知らせ=====================*/
.wrap-newspage {
  width: 100%;
}

.news-main {
  display: flex;
  justify-content: space-between;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.news-main aside {
  width: 20%;
  min-width: 250px;
  margin-left: 5rem;
}

.news-main main {
  width: 100%;
}

.news-content img {
  width: 100%;
  height: auto;
}

.news-text {
  margin-top: 2rem;
}

.news-text p {
  margin-bottom: 1em;
}

aside ul li {
  line-height: 1.5;
  padding: 1rem;
  border-bottom: 1px solid #999;
}

aside ul li a {
  color: #000;
}

.side-date {
  font-size: 1.4rem;
}

.news-title h2 {
  font-size: 2rem;
}

.news-item {
  margin-bottom: 5rem;
}

.news-item:nth-of-type(n + 2) {
  padding-top: 5rem;
  border-top: 1px solid #999;
}

.wp-pagenavi {
  width: 90%;
  max-width: 900px;
  margin: 5rem auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.wp-pagenavi>* {
  display: inline-block;
  color: #000;
}

.wp-pagenavi a {
  text-decoration: none;
  color: #000;
  font-size: 1.6rem;
  position: relative;
  display: block;
  transition: 0.2s;
}

.wp-pagenavi a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #b42636;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}

.wp-pagenavi a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
  color: #b42636;
}

.wp-pagenavi .page,
.wp-pagenavi span {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi .current {
  background-color: rgba(166, 102, 110, 0.3);
}

.back-btn {
  margin: 5rem auto;
  display: block;
  text-align: center;
  color: #b42636;
}

/*===================================================/main=======================================================*/

.pan_nav {
  width: 100%;
  margin-left: 5px;
  margin-bottom: 5px;
  font-size: 0.8em;
}

/*===================================================footer=======================================================*/
footer {
  width: 100%;
  background-color: #000;
  padding: 5rem;
}

footer ul {
  display: flex;
  justify-content: space-around;
}

footer ul li a {
  color: #fff;
  font-size: 1.6rem;
  transition: 0.2s;
}

footer ul li a:hover {
  color: #999;
}

.footer-logo {
  width: 200px;
  margin: 0 auto 3rem;
}

.footer-text {
  color: #fff;
  text-align: center;
  margin-top: 10rem;
}

.footer-tell {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-tell a {
  color: #fff;
  margin-right: 2rem;
}

/*===================================================/footer=======================================================*/

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

  .tb-sp-logo {
    display: block;
  }

  .not-tb-only {
    display: none;
  }

  .tb-sp-only {
    display: block;
  }

  /*大体のiPadとかのデザイン*/
  header {
    z-index: 4;
    display: block;
    background-color: #fff;
  }

  .wrap-header {
    height: 60px;
  }

  .wrap-nav {
    display: block;
    height: 100%;
    width: 0%;
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    background-color: #b42636;
    overflow-x: hidden;
    transition: 0.5s;
    margin-top: 60px;
  }

  .wrap-nav.active {
    width: 100%;
  }

  .gnav ul {
    display: block;
    text-align: center;
  }

  .gnav ul li:first-child {
    border-top: 1px solid #fff;
  }

  .gnav ul li {
    display: block;
    padding: 10px 10px;
    margin: 0;
    border-bottom: 1px solid #fff;
    position: relative;
  }

  .gnav ul li a {
    font-size: 1.4rem;
    padding: 10px 0;
    width: 100%;
    color: #fff;
  }

  .gnav ul li a:hover {
    color: tomato;
  }

  .wrap-nav-btn {
    /* background-color: #b42636; */
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-btn {
    display: block;
  }

  /*===================================================main900px=======================================================*/
  /*=======================900pxトップページ==============================*/
  .wrap-top-header {
    display: none;
  }

  .wrap-top-content {
    padding: 9rem 0;
  }

  .wrap-top-img {
    height: 100vh;
  }

  .top-img {
    top: 4rem;
    height: 100vh;
  }

  .top-img video {
    height: 100vh;
  }

  .commitment .section-title {
    font-size: 3rem;
    margin-left: 2rem;
  }

  .commitment .commitment-text {
    font-size: 1.8rem;
  }

  .top-slider {
    padding: 1rem;
  }

  .top-slider-item {
    padding: 0rem;
  }

  .business-item {
    width: 100%;
    text-align: center;
  }

  .wrap-business .business-item:nth-of-type(n + 2) {
    margin-top: 3rem;
  }

  .business-item h3 {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto 2rem;
    font-size: 1.6rem;
  }

  .business-btn {
    font-size: 1.6rem;
  }

  .product-item {
    width: 80%;
    text-align: center;
  }

  .wrap-product .product-item:nth-of-type(n + 2) {
    margin-top: 3rem;
  }

  .product-item-text {
    margin-top: 1rem;
  }

  .product-item-text h3 {
    font-size: 2rem;
  }

  .product-item-text p {
    margin: 1rem 0;
    line-height: 1.5;
  }

  .product-item a {
    font-size: 1.6rem;
  }

  .top-news .section-title {
    margin-left: -20rem;
    margin-bottom: 2rem;
  }

  .wrap-top-news {
    width: 90%;
    margin: 0 auto;
    font-size: 1.5rem;
  }

  .wrap-top-news ul li a h3 span {
    margin-right: 1rem;
  }

  .company {
    font-size: 1.6rem;
  }

  .company-right {
    width: 100%;
    order: 0;
  }

  .company-left {
    width: auto;
    order: 1;
    margin-top: 2rem;
  }

  .company-text {
    padding: 2rem 0 0;
    text-align: left;
    text-orientation: upright;
  }

  .company-text a {
    font-size: 1.6rem;
    margin-right: 1rem;
  }

  .wrap-recruit {
    font-size: 1.6rem;
  }

  .recruit .section-title {
    margin-bottom: 3rem;
    margin-left: -35rem;
  }

  .wrap-recruit a {
    margin-top: 1rem;
    margin-left: 1rem;
    font-size: 1.6rem;
  }

  .wrap-contact .section-title {
    width: 100%;
    margin-bottom: 2rem;
  }

  .contact-item {
    width: 100%;
    max-width: 500px;
    margin-top: 2rem;
  }

  .contact-img {
    width: 100%;
    max-width: 50px;
  }

  .contact-text {
    font-size: 1.4rem;
  }

  .contact-tell {
    margin-right: 1rem;
    font-size: 3rem;
  }

  .contact-form {
    font-size: 2rem;
  }

  /*=======================900px会社概要==============================*/
  .wrap-ceo {
    flex-wrap: wrap;
  }

  .ceo-item {
    width: 100%;
  }

  .ceo-item img {
    display: block;
    max-width: 400px;
    margin: 0 auto;
  }

  .title-bottom-line {
    margin-top: 1rem;
  }

  .ceo-sign {
    font-size: 4rem;
  }

  .wrap-quality {
    width: 530px;
  }

  .quality-item h3 {
    font-size: 2rem;
    width: 60px;
    height: 60px;
  }

  /*=======================900px飲食店・給食事業者様へ==============================*/
  .section-title-text {
    font-size: 1.6rem;
  }

  .policy-above img {
    margin-right: 0;
  }

  .policy-above-right {
    text-align: center;
    margin-top: 1rem;
  }

  .policy-above,
  .policy-below {
    flex-wrap: wrap;
  }

  .policy-below-right {
    margin-top: 2rem;
  }

  .policy-below-below {
    margin-top: 1rem;
  }

  /*=======================900px求人情報==============================*/
  .tab-group {
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
  }

  .tab {
    border: 3px solid #b42636;
    margin-top: 1rem;
  }

  .tab img {
    max-width: 100px;
  }

  .tab h3 {
    font-size: 1.6rem;
  }

  .panel-group .company-overview {
    width: 95%;
  }

  /*=======================900px一般小売販売==============================*/

  .retail-top-btn a h2 {
    font-size: 1.6rem;
    padding: 0.5rem 1rem;
  }

  .wrap-retail-title {
    font-size: 2.4rem;
    text-align: center;
  }

  .retail-cate {
    position: sticky;
    top: 7rem;
  }

  .retail-cate a {
    font-size: 1.6rem;
  }

  .retail {
    justify-content: space-around;
  }

  .retail-item {
    width: 45%;
    margin-top: 3rem;
  }

  .retail-item img:first-child {
    width: 100%;
    height: 200px;
  }

  .retail::after {
    width: 35%;
  }

  .retail-item-buy {
    width: 70px;
  }

  .retail-item-text h3 {
    font-size: 1.6rem;
  }

  .wrap-retail {
    position: relative;
  }

  .wrap-retail-item {
    flex-wrap: wrap;
    justify-content: center;
  }

  .wrap-retail img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 0;
  }

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

  .buy-btn {
    position: absolute;
    top: 0;
    right: 0;
  }

  /*=======================900pxお問い合わせ==============================*/
  .inquiry {
    width: 95%;
  }

  .inquiry td {
    padding: 0 0 1rem 0;
  }

  .inquiry th,
  .inquiry td {
    display: block !important;
    width: 100% !important;
    border-top: none !important;
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
  }

  .privacy-box {
    height: 300px;
    font-size: 1.4rem;
  }

  .acceptance span {
    font-size: 1.4rem;
  }

  .precautions {
    padding: 2rem;
  }

  /*=======================900pxお知らせ==============================*/
  .news-main {
    flex-wrap: wrap;
  }

  .news-main aside {
    width: 100%;
    min-width: 250px;
    margin-left: 0rem;
    margin-bottom: 2rem;
  }

  /*=======================900pxfooter==============================*/

  footer ul {
    display: none;
  }

  .footer-text {
    margin-top: 0;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 480px) {

  /*スマホのデザイン*/
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .not-tb-only {
    display: block;
  }

  .to-top {
    width: 50px;
  }

  .section-title {
    margin-bottom: 2rem;
  }

  .wrap-video h1 {
    font-size: 3rem;
  }

  /*=======================480pxトップページ==============================*/
  .commitment .section-title {
    font-size: 2.2rem;
    margin-left: 1rem;
  }

  .commitment .commitment-text {
    font-size: 1.5rem;
    white-space: nowrap;
  }

  .top-slider {
    padding: 1rem;
  }

  .top-slider-item {
    padding: 0rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-sub-title {
    font-size: 1.6rem;
  }

  .news-main .section-title {
    text-align: left;
    width: 90%;
    margin: 0 auto 2rem;
  }

  .wrap-news ul {
    display: block;
  }

  .business-item h3 {
    max-width: 250px;
  }

  .business-item img {
    max-width: 200px;
  }

  .product-item-text p {
    font-size: 1.4rem;
  }

  .recruit .section-title {
    width: 90%;
    margin: 0 auto 2rem;
    text-align: left;
  }

  .wrap-recruit {
    width: 90%;
    font-size: 1.6rem;
  }

  .recruit-text {
    width: auto;
    font-size: 1.6rem;
  }

  .contact-text {
    font-size: 1.2rem;
  }

  .contact-tell {
    font-size: 2rem;
  }

  .contact-form {
    font-size: 1.95rem;
  }

  .contact-img {
    max-width: 40px;
  }

  /*=======================480px会社概要==============================*/
  .title-bottom-line {
    font-size: 1.6rem;
    padding-bottom: 0;
  }

  .ceo-text {
    font-size: 1.4rem;
  }

  .ceo-sign {
    font-size: 2rem;
    margin-top: 1rem;
  }

  .ceo-sign span {
    font-size: 1.4rem;
  }

  .wrap-quality {
    width: 95%;
  }

  .quality-item {
    flex-wrap: wrap;
  }

  .quality-item:nth-of-type(n + 2) {
    margin-top: 3rem;
  }

  .quality-item h3 {
    font-size: 1.6rem;
    width: 50px;
    height: 50px;
  }

  .quality-item p {
    margin-left: 0rem;
    margin-top: 1rem;
    font-size: 1.4rem;
  }

  .company-overview {
    font-size: 1.4rem;
  }

  .company-overview td:first-child {
    width: 20%;
    min-width: 50px;
    white-space: nowrap;
  }

  .map {
    padding-bottom: 150%;
  }

  /*=======================480px飲食店・給食事業者様へ==============================*/
  .policy-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }

  .policy-above-right,
  .policy-below-right {
    font-size: 1.4rem;
  }

  /*=======================480px求人情報==============================*/
  .tab {
    padding: 1rem;
  }

  .tab h3 {
    margin-top: 1rem;
    line-height: 1.25;
  }

  .panel-group .company-overview td {
    display: block;
    width: 100%;
  }

  .panel-group .company-overview td:nth-child(1) {
    border-bottom: none;
  }

  .panel-group .company-overview td:nth-child(2) {
    border-top: 1px solid #ddd;
  }

  /*=======================480px一般小売販売==============================*/
  .retail-cate {
    top: 6.5rem;
  }

  .retail-cate a {
    font-size: 1.4rem;
  }

  .retail-item {
    width: 45%;
    margin-top: 2rem;
  }

  .retail-item-buy {
    width: 50px;
    bottom: -5%;
    right: -5%;
  }

  .retail-item-text h3 {
    font-size: 1.4rem;
  }

  .retail-item-text {
    line-height: 1.5;
    font-size: 1.2rem;
  }

  .retail-item img:first-child {
    height: 120px;
  }

  /*=======================480pxお問い合わせ==============================*/
  .inquiry th {
    font-size: 1.4rem;
  }

  #formbtn {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
  }

  .privacy-box {
    font-size: 1.2rem;
  }

  /*=======================480pxお知らせ==============================*/
  .news-title h2 {
    font-size: 1.6rem;
  }

  .news-text {
    font-size: 1.2rem;
  }

  .wp-pagenavi>a,
  .wp-pagenavi>span {
    font-size: 1.4rem;
  }

  .wp-pagenavi .page,
  .wp-pagenavi span {
    width: 25px;
    height: 25px;
  }

  /*=======================480pxfooter==============================*/
  .footer-tell a {
    margin-right: 0;
  }

  .footer-text {
    white-space: nowrap;
  }
}