@charset "UTF-8";
* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  font-size: 16px;
  width: 100%;
  height: 100%;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #404040;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  position: relative;
}
body::before {
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
  background: transparent;
}
body.is-hidden {
  overflow: hidden;
}
body.is-hidden::before {
  opacity: 1;
  visibility: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background: #fff;
}

article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

hr {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

p {
  color: #404040;
}

a {
  text-decoration: none;
}

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

@media print, screen and (min-width:769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
sup {
  vertical-align: super;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 100%;
}

input,
select,
textarea {
  letter-spacing: 0.03rem;
}
@media screen and (max-width:768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #d1d1d1;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #d1d1d1;
}

button,
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[id] {
  scroll-margin-top: 100px;
}
@media screen and (max-width:768px) {
  [id] {
    scroll-margin-top: 80px;
  }
}

@media screen and (max-width:768px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width:769px) {
  .pc {
    display: block;
  }
}

@media screen and (max-width:768px) {
  .sp {
    display: block;
  }
}
@media print, screen and (min-width:769px) {
  .sp {
    display: none !important;
  }
}

.__none {
  opacity: 0.5;
}

/* hover animation */
.__opacity05 {
  transition: opacity 0.3s;
}
.__opacity05:hover {
  opacity: 0.5;
}

.__opacity07 {
  transition: opacity 0.3s;
}
.__opacity07:hover {
  opacity: 0.7;
}

/* inview animation */
.is-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-fade.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.is-fadeleft {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-fadeleft.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.is-faderight {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-faderight.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.anime-up {
  animation: showText 1s backwards;
}

.anime-up.displayed span {
  opacity: 0;
}

.anime-up.displayed.is-inview span {
  opacity: 1;
  animation: showText 1s backwards;
  display: inline-block;
}

.anime-up.displayed.is-inview > span {
  overflow: hidden;
}

.anime-up.displayed.is-inview > span > span {
  animation: showTextFade 0.7s backwards;
}

.is-bounce {
  opacity: 0;
  transform: scale(0.3);
  transition: 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-bounce.is-inview {
  opacity: 1;
  transform: scale(1);
}

@keyframes mvcatch {
  0% {
    filter: blur(0.2em);
    opacity: 0;
  }
  50% {
    filter: blur(0.05em);
    opacity: 1;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes move {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes move-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes move-right {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes moveRotate {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  25% {
    transform: rotate(90deg) translate(20px, -20px);
  }
  50% {
    transform: rotate(180deg) translate(0, -40px);
  }
  75% {
    transform: rotate(270deg) translate(-20px, -20px);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}
@keyframes banh {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1, 0.9);
  }
  60% {
    transform: scaleY(1.2);
  }
}
@keyframes bounce {
  0% {
    transform: scale(1) rotate(0deg) translate(0);
  }
  10% {
    transform: scale(1.06, 1.02) rotate(8deg) translateY(-6%);
  }
  20% {
    transform: scale(1.04, 1.1) rotate(-6deg) translateY(2%);
  }
  30% {
    transform: scale(1.1, 1.02) rotate(12deg) translateY(-20%);
  }
  46%, 100% {
    transform: scale(1) rotate(0deg) translate(0);
  }
}
@keyframes vibration {
  0%, 50%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25%, 75% {
    transform: scale(1.2, 0.9) rotate(10deg);
  }
}
@keyframes vibration-up {
  0% {
    transform: translate(0);
  }
  33% {
    transform: translateY(-80%);
  }
  56% {
    transform: translateY(30%);
  }
  100% {
    transform: translate(0);
  }
}
.c_btn {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
  color: #404040;
  background: #fff;
  width: 240px;
  padding: 15px 24px;
  margin: 0 auto;
  border: 2px solid #DE0C0C;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  position: relative;
}
.c_btn::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/11;
  background: url(../img/common/ico_arrow-red.svg) no-repeat center/100%;
  position: absolute;
  right: 24px;
  transition: all 0.3s;
}
.c_btn:hover {
  color: #fff;
  background: #DE0C0C;
}
.c_btn:hover::after {
  background: url(../img/common/ico_arrow.svg) no-repeat center/100%;
  right: 18px;
}

.tel_link {
  font-weight: 700;
  color: #DE0C0C;
}

.l-page-contents .c-mv {
  width: min(1840px, 95%);
  padding-top: 80px;
  margin-left: auto;
}
@media screen and (max-width:1200px) {
  .l-page-contents .c-mv {
    padding-top: 131px;
  }
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv {
    width: 90%;
    padding-top: 80px;
    margin: 0 auto;
  }
}
.l-page-contents .c-mv__img {
  width: 100%;
  height: 480px;
  aspect-ratio: 1840/480;
  margin-bottom: 40px;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv__img {
    height: 160px;
    border-radius: 16px;
  }
}
.l-page-contents .c-mv__img.news_img {
  background: url(../img/news/bg_mv.png) no-repeat center/cover;
}
.l-page-contents .c-mv__img.company_img {
  background: url(../img/company/bg_mv.png) no-repeat center/cover;
}
.l-page-contents .c-mv__img.services_img {
  background: url(../img/services/bg_mv.png) no-repeat center/cover;
}
.l-page-contents .c-mv__img.recruit_img {
  background: url(../img/recruit/bg_mv.png) no-repeat center/cover;
}
.l-page-contents .c-mv__img.foods_img {
  background: url(../img/foods/bg_mv.png) no-repeat center/cover;
}
.l-page-contents .c-mv__img.contact_img {
  background: url(../img/contact/bg_mv.png) no-repeat center/cover;
}
.l-page-contents .c-mv__img.safety-system_img {
  background: url(../img/safety-system/bg_mv.png) no-repeat center/cover;
}
.l-page-contents .c-info {
  width: min(1280px, 90%);
  margin: 0 auto 160px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-info {
    margin: 0 auto 60px;
    flex-direction: column;
  }
}
.l-page-contents .c-info .c_ttl {
  font-size: clamp(0.938rem, 0.68rem + 0.54vw, 1.25rem);
  margin-bottom: 0;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-info .c_ttl {
    margin-bottom: 45px;
  }
}
.l-page-contents .c-info .c_ttl::before {
  font-size: clamp(3rem, 1.764rem + 2.58vw, 4.5rem);
}
.l-page-contents .c-info__breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.l-page-contents .c-info__breadcrumb__link {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #DE0C0C;
  border-radius: 20px;
  padding: 8px 15px;
  margin-right: 45px;
  position: relative;
}
.l-page-contents .c-info__breadcrumb__link::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #404040;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -45px;
  margin: auto;
}
.l-page-contents .c-info__breadcrumb__list {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: #878787;
  border-radius: 20px;
  padding: 8px 15px;
}
.l-page-contents .c-info.no-mv {
  padding-top: 280px;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-info.no-mv {
    padding-top: 150px;
  }
}

.c_ttl {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
  color: #404040;
  padding-left: 58px;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c_ttl {
    font-size: 0.9375rem;
    padding-left: 40px;
    margin-bottom: 30px;
    gap: 12px;
  }
}
.c_ttl::before {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(3rem, 1.785rem + 2.53vw, 4rem);
  color: #DE0C0C;
  content: attr(data-en) "";
}
@media screen and (max-width:768px) {
  .c_ttl::before {
    font-size: 2.5rem;
  }
}
.c_ttl::after {
  content: "";
  width: 48px;
  aspect-ratio: 1;
  background: url(../img/common/ico_contents-ttl.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 13px;
}
@media screen and (max-width:768px) {
  .c_ttl::after {
    width: 30px;
    top: 8px;
  }
}

.c-company {
  margin-bottom: 200px;
}
@media screen and (max-width:768px) {
  .c-company {
    margin-bottom: 80px;
  }
}
.c-company-message {
  width: min(1760px, 90%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-company-message__inner {
  width: min(1520px, 100%);
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width:768px) {
  .c-company-message__inner {
    flex-direction: column;
  }
}
.c-company-message-info__txt {
  font-weight: 700;
  line-height: 2;
}
.c-company-message-info__catch {
  font-family: "Yuji Syuku", serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.25rem, 0.339rem + 1.9vw, 2rem);
  line-height: 1.75;
  color: #DE0C0C;
  margin: 35px 0;
}
@media screen and (max-width:768px) {
  .c-company-message-pre {
    width: min(500px, 100%);
    margin: 0 auto;
  }
}
.c-company-message-pre__name {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-company-message-pre__name .__sub {
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
}
.c-company-message-pre__name .__sub02 {
  width: 180px;
}
.c-company-bg {
  position: relative;
  z-index: 0;
}
.c-company-bg__inner {
  width: 100%;
  height: calc(100% + 180px);
  background: #F8F4E0;
  position: absolute;
  left: 0;
  top: -180px;
  z-index: -1;
}
.c-company-bg__inner::before {
  content: "";
  width: 100%;
  aspect-ratio: 640/17;
  background: url(../img/safety-system/bg_yellow-wave.png) no-repeat center/100%;
  position: absolute;
  top: -1.5%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-company-bg__inner::before {
    top: -0.4%;
  }
}
.c-company-bg__inner::after {
  content: "";
  width: 100%;
  aspect-ratio: 640/17;
  background: url(../img/safety-system/bg_yellow-wave.png) no-repeat center/100%;
  transform: rotate(180deg);
  position: absolute;
  bottom: -1.5%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-company-bg__inner::after {
    bottom: -0.4%;
  }
}
.c-company-bg::before {
  content: "";
  width: 299px;
  aspect-ratio: 299/480;
  background: url(../img/common/pic_octopus-left.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 40%;
  z-index: 0;
}
@media screen and (max-width:1024px) {
  .c-company-bg::before {
    width: 200px;
  }
}
@media screen and (max-width:768px) {
  .c-company-bg::before {
    display: none;
  }
}
.c-company-bg::after {
  content: "";
  width: 394px;
  aspect-ratio: 394/480;
  background: url(../img/common/pic_octopus-right.svg) no-repeat center/100%;
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-company-bg::after {
    width: 200px;
  }
}
@media screen and (max-width:768px) {
  .c-company-bg::after {
    display: none;
  }
}
.c-company-bg.is-inview::before {
  animation: move-left 1s backwards;
  animation-delay: 2s;
}
.c-company-bg.is-inview::after {
  animation: move-right 1s backwards;
  animation-delay: 2.5s;
}
.c-company-profile {
  width: min(1280px, 90%);
  padding: 170px 0 0;
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}
@media screen and (max-width:1024px) {
  .c-company-profile {
    gap: 30px;
  }
}
@media screen and (max-width:768px) {
  .c-company-profile {
    padding: 60px 0 0;
    margin: 0 auto 60px;
    flex-direction: column;
    gap: 0;
  }
}
.c-company-profile__ttl {
  width: 330px;
}
@media screen and (max-width:768px) {
  .c-company-profile__ttl {
    margin-right: auto;
  }
}
.c-company-profile-table {
  width: calc(100% - 410px);
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .c-company-profile-table {
    width: 100%;
  }
}
.c-company-profile-table__block {
  width: 100%;
  padding: 25px 0;
  border-bottom: 1px solid #BEBEBE;
  display: flex;
  align-items: center;
}
@media screen and (max-width:768px) {
  .c-company-profile-table__block {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.c-company-profile-table__block:first-of-type {
  padding: 0 0 25px;
}
@media screen and (max-width:768px) {
  .c-company-profile-table__block:first-of-type {
    padding: 0 0 20px;
  }
}
.c-company-profile-table__block .c-company-profile-table__dt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  line-height: 2;
  text-shadow: 0px 0px 6px #fff;
  width: 200px;
}
@media screen and (max-width:1024px) {
  .c-company-profile-table__block .c-company-profile-table__dt {
    width: 110px;
    flex-shrink: 0;
  }
}
.c-company-profile-table__block .c-company-profile-table__dd {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  line-height: 2;
  text-shadow: 0px 0px 6px #fff;
}
.c-company-profile-table__block .c-company-profile-table__dd .__tel {
  color: #404040;
}
.c-company-access {
  width: min(1280px, 90%);
  padding-bottom: 160px;
  margin: 0 auto 160px;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-company-access {
    padding-bottom: 60px;
    margin: 0 auto 60px;
    flex-direction: column;
    gap: 30px;
  }
}
.c-company-access-map {
  width: 62.5%;
  aspect-ratio: 800/450;
}
@media screen and (max-width:768px) {
  .c-company-access-map {
    width: 100%;
  }
}
.c-company-access-map .__frame {
  width: 100%;
  height: 100%;
}
@media screen and (max-width:768px) {
  .c-company-access__ttl {
    width: 100%;
  }
}
.c-company-access__ttl .c_ttl {
  text-shadow: 0px 0px 6px #fff;
}
@media screen and (max-width:768px) {
  .c-company-access__ttl .c_ttl {
    margin-bottom: 20px;
  }
}
.c-company-access__ttl .c-company-access__address {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 45px;
}
@media screen and (max-width:768px) {
  .c-company-access__ttl .c-company-access__address {
    margin-bottom: 25px;
  }
}
.c-company-access__ttl .c-company-access__map {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #404040;
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-company-access__ttl .c-company-access__map::before {
  content: "";
  width: 20px;
  aspect-ratio: 10/13;
  background: url(../img/common/ico_pin.svg) no-repeat center/100%;
}
.c-company-history {
  width: min(960px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 120px;
}
@media screen and (max-width:1024px) {
  .c-company-history {
    gap: 80px;
  }
}
@media screen and (max-width:768px) {
  .c-company-history {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.c-company-history-list {
  position: relative;
}
.c-company-history-list::before {
  content: "";
  width: 4px;
  height: 0;
  background: #F3A5A5;
  position: absolute;
  top: 0;
  left: 129px;
  z-index: -1;
  transition: all 1s;
  transition-delay: 0.5s;
}
@media screen and (max-width:768px) {
  .c-company-history-list::before {
    width: 2px;
    left: 90px;
  }
}
.c-company-history-list__block {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.c-company-history-list__block .c-company-history-list__year {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  color: #DE0C0C;
  font-size: clamp(1.75rem, 0.839rem + 1.9vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 15px;
}
.c-company-history-list__block .c-company-history-list__year::after {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  background: #800000;
  border-radius: 20px;
}
.c-company-history-list__block .c-company-history-list__year .__sub {
  width: 110px;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .c-company-history-list__block .c-company-history-list__year .__sub {
    width: 70px;
  }
}
.c-company-history-list__block .c-company-history-list__info {
  font-weight: 700;
  line-height: 1.35;
}
.c-company-history-list__block:first-of-type::before {
  content: "";
  width: 10px;
  height: 30px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 126px;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .c-company-history-list__block:first-of-type::before {
    width: 5px;
    left: 90px;
  }
}
.c-company-history-list.is-inview::before {
  height: 100%;
}

.c-contact {
  margin: 0 0 200px;
}
.c-contact-ttl {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-contact-ttl::before {
  content: "";
  width: 34px;
}
.c-contact-tel {
  width: min(960px, 90%);
  margin: 0 auto 160px;
  padding: 55px 0;
  border-top: 2px solid #D3D3D3;
  border-bottom: 2px solid #D3D3D3;
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-contact-tel {
    padding: 30px 0;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
}
.c-contact-tel .c-contact-ttl::before {
  content: "";
  aspect-ratio: 1;
  background: url(../img/contact/ico_tel.svg) no-repeat center/100%;
}
.c-contact-tel__info .c-contact-tel__link {
  font-size: clamp(2.5rem, 1.285rem + 2.53vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: #DE0C0C;
  margin-bottom: 15px;
  display: block;
}
.c-contact-tel__info .c-contact-quote {
  line-height: 1;
  text-align: center;
}
.c-contact-form {
  width: min(960px, 90%);
  margin: 0 auto;
}
.c-contact-form .c-contact-ttl {
  margin-bottom: 80px;
}
.c-contact-form .c-contact-ttl::before {
  content: "";
  aspect-ratio: 34/24;
  background: url(../img/contact/ico_mail.svg) no-repeat center/100%;
}
.c-contact-form-step {
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.c-contact-form-step__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-contact-form-step__item .__sub {
  width: 80px;
  aspect-ratio: 80/101;
}
@media screen and (max-width:768px) {
  .c-contact-form-step__item .__sub {
    width: 60px;
  }
}
.c-contact-form-step__item.__first .__sub {
  background: url(../img/contact/pic_step1.svg) no-repeat center/100%;
}
.c-contact-form-step__item.__second .__sub {
  background: url(../img/contact/pic_step2-off.svg) no-repeat center/100%;
}
.c-contact-form-step__item.__last .__sub {
  background: url(../img/contact/pic_step3-off.svg) no-repeat center/100%;
}
.c-contact-form-step__item::after {
  content: "";
  width: 46px;
  aspect-ratio: 46/10;
  background: url(../img/contact/pic_step-after.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-contact-form-step__item::after {
    width: 36px;
  }
}
.c-contact-form-step__item:last-of-type::after {
  content: none;
}
.c-contact-form-step.__confirm-step .c-contact-form-step__item.__first::after {
  background: url(../img/contact/pic_step-active.svg) no-repeat center/100%;
}
.c-contact-form-step.__confirm-step .c-contact-form-step__item.__second .__sub {
  background: url(../img/contact/pic_step2.svg) no-repeat center/100%;
}
.c-contact-form-step.__complete-step .c-contact-form-step__item.__first::after {
  background: url(../img/contact/pic_step-active.svg) no-repeat center/100%;
}
.c-contact-form-step.__complete-step .c-contact-form-step__item.__second::after {
  background: url(../img/contact/pic_step-active.svg) no-repeat center/100%;
}
.c-contact-form-step.__complete-step .c-contact-form-step__item.__second .__sub {
  background: url(../img/contact/pic_step2.svg) no-repeat center/100%;
}
.c-contact-form-step.__complete-step .c-contact-form-step__item.__last .__sub {
  background: url(../img/contact/pic_step3.svg) no-repeat center/100%;
}
.c-contact-form-detail__catch {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 30px;
}
.c-contact-form-detail__sub {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  line-height: 1.35;
  margin-bottom: 30px;
}
.c-contact-form-detail__txt {
  font-size: clamp(0.875rem, 0.799rem + 0.16vw, 0.938rem);
  line-height: 2;
  margin-bottom: 60px;
}
.c-contact-form-detail__txt .__tel {
  color: #404040;
}
.c-contact-form-block {
  margin-bottom: 80px;
}
.c-contact-form-block__parts {
  margin-bottom: 45px;
}
.c-contact-form-block__parts:last-of-type {
  margin-bottom: 0;
}
.c-contact-form-block__parts .c-contact-form-block__ttl {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
  font-weight: 700;
  color: #DE0C0C;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-contact-form-block__parts .c-contact-form-block__ttl p {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
  font-weight: 700;
  color: #DE0C0C;
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-contact-form-block__parts .c-contact-form-block__item__quote {
  font-size: clamp(0.875rem, 0.799rem + 0.16vw, 0.938rem);
  margin: 15px 0 0;
}
.c-contact-form-block__parts .c-contact-form-block__item__number {
  display: flex;
  align-items: center;
  gap: 13px;
}
.c-contact-form-block__parts .c-contact-form-block__item__number::before {
  content: "〒";
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
}
.c-contact-form-block__parts .c-contact-form-block__item__number + .c-contact-form-block__item__quote {
  margin-bottom: 20px;
}
.c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__txt {
  line-height: 1.35;
  border-radius: 4px;
  width: 100%;
  padding: 15px 20px;
  background: #EBEBEB;
}
.c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__txt.w50 {
  width: 50%;
}
@media screen and (max-width:768px) {
  .c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__txt.w50 {
    width: 100%;
  }
}
.c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__txt.w40 {
  width: 40%;
}
@media screen and (max-width:768px) {
  .c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__txt.w40 {
    width: 100%;
  }
}
.c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__txtarea {
  line-height: 1.35;
  border-radius: 4px;
  width: 100%;
  padding: 15px 20px;
  background: #EBEBEB;
}
.c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__policytxt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 2;
  margin-bottom: 25px;
}
.c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__policytxt .__link {
  text-decoration: underline;
  font-weight: 700;
  color: #DE0C0C;
}
.c-contact-form-block__parts .c-contact-form-block__item .wpcf7-checkbox .wpcf7-list-item, .c-contact-form-block__parts .c-contact-form-block__item .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.c-contact-form-block__parts .c-contact-form-block__item .wpcf7-checkbox .wpcf7-list-item input[type=checkbox], .c-contact-form-block__parts .c-contact-form-block__item .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  aspect-ratio: 1;
  background: url(../img/common/ico_check.svg) no-repeat center/100%;
  transition: all 0.2s;
}
.c-contact-form-block__parts .c-contact-form-block__item .wpcf7-checkbox .wpcf7-list-item input[type=checkbox]:checked, .c-contact-form-block__parts .c-contact-form-block__item .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked {
  background: url(../img/common/ico_check-after.svg) no-repeat center/100%;
}
.c-contact-form-block__parts .c-contact-form-block__item .wpcf7-checkbox .wpcf7-list-item label, .c-contact-form-block__parts .c-contact-form-block__item .wpcf7-acceptance .wpcf7-list-item label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-contact-form-block__parts .c-contact-form-block__item .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label, .c-contact-form-block__parts .c-contact-form-block__item .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  font-weight: 700;
}
.c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__check {
  display: flex;
  row-gap: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  flex-wrap: wrap;
}
.c-contact-form-block__parts .c-contact-form-block__item .wpcf7-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  font-size: clamp(1.063rem, 0.987rem + 0.16vw, 1.125rem);
  line-height: 1.35;
}
.c-contact-form-block__parts .c-contact-form-block__item .c-contact-form-block__item__quote {
  line-height: 1.35;
}
.c-contact-form .required {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  background: #404040;
  color: #fff;
  padding: 3px;
  border-radius: 4px;
}
.c-contact-form-submit {
  width: 300px;
  height: 54px;
}
.c-contact-form-submit__btn {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  text-align: left;
  background: transparent;
  color: #404040;
  padding: 15px 24px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  cursor: pointer;
}
.c-contact-form-submit:hover .c-contact-form-submit__btn {
  color: #fff;
}
.c-contact-form-submit .wpcf7-spinner {
  /*display: none;*/
}
.c-contact-form-return {
  width: 240px;
  height: 48px;
  margin: 30px auto 0;
  border-color: #444CAA;
}
.c-contact-form-return__btn {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  text-align: right;
  width: 100%;
  height: 100%;
  padding: 0 24px;
  background: transparent;
  color: #404040;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer;
}
.c-contact-form-return::after {
  background: url(../img/common/ico_arrow-blue.svg) no-repeat center/100%;
  right: unset;
  left: 24px;
  transform: rotate(180deg);
}
.c-contact-form-return:hover {
  background: #444CAA;
}
.c-contact-form-return:hover .c-contact-form-return__btn {
  color: #fff;
}
.c-contact-form-return:hover::after {
  left: 18px;
  right: unset;
}
.c-contact-form-confirm__txt {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 60px;
}
.c-contact-form-confirm .c-contact-form-block__ttl {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
}
.c-contact-form-confirm .c-contact-form-block__item {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
}
.c-contact-form-complete__ttl {
  font-size: clamp(1.5rem, 0.285rem + 2.53vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #DE0C0C;
  margin-bottom: 40px;
}
.c-contact-form-complete__txt {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  line-height: 2;
  text-align: center;
  margin-bottom: 70px;
}

.l-contents {
  overflow: clip;
}
.l-contents .c-index-visual {
  padding: 90px 0 0 80px;
  margin-bottom: 200px;
  position: relative;
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-visual {
    padding: 60px 0 0 60px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual {
    height: 540px;
    padding: 60px 15px 0;
    margin-bottom: 60px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-slider {
    height: 100%;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-slider .slick-list {
    height: 100%;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-slider .slick-track {
    height: 100%;
  }
}
.l-contents .c-index-visual-slider .__img {
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-slider .__img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 16px;
  }
}
.l-contents .c-index-visual-catch {
  font-size: clamp(2rem, -0.43rem + 5.06vw, 4rem);
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  position: absolute;
  left: 200px;
  bottom: 70px;
  transition: all 0.3s;
}
@media screen and (max-width:1200px) {
  .l-contents .c-index-visual-catch {
    left: 120px;
    bottom: 50px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-catch {
    bottom: unset;
    top: 100px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }
}
.l-contents .c-index-visual-catch.item01 {
  text-shadow: 0 0 10px rgb(115, 165, 220), 0 0 20px rgba(115, 165, 220, 0.5), 0 0 40px rgba(115, 165, 220, 0.5);
}
.l-contents .c-index-visual-catch.item02 {
  text-shadow: 0 0 10px rgb(175, 12, 12), 0 0 20px rgba(175, 12, 12, 0.5), 0 0 40px rgba(175, 12, 12, 0.5);
}
.l-contents .c-index-visual-catch.item03 {
  text-shadow: 0 0 10px rgb(100, 72, 43), 0 0 20px rgba(100, 72, 43, 0.5), 0 0 40px rgba(100, 72, 43, 0.5);
}
.l-contents .c-index-visual-menu {
  position: absolute;
  right: 150px;
  top: 200px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(0.938rem, -0.35rem + 2.68vw, 2.5rem);
}
@media screen and (max-width:1200px) {
  .l-contents .c-index-visual-menu {
    right: 100px;
    top: 120px;
  }
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-visual-menu {
    right: 50px;
    top: 90px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-menu {
    display: none;
  }
}
.l-contents .c-index-visual-menu__inner {
  font-size: clamp(1.063rem, 0.835rem + 0.47vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #800000;
  border: 2px solid #800000;
  width: -moz-fit-content;
  width: fit-content;
  padding: 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-visual-menu__inner {
    font-size: 1rem;
  }
}
.l-contents .c-index-visual-menu__inner::before {
  content: "";
  width: 17px;
  aspect-ratio: 17/11;
  order: 1;
}
.l-contents .c-index-visual-menu__inner::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/11;
  background: url(../img/common/ico_arrow.svg) no-repeat center/100%;
  transition: all 0.3s;
  order: 2;
  position: absolute;
  right: 17px;
}
.l-contents .c-index-visual-menu__inner:hover {
  background: #fff;
  color: #DE0C0C;
}
.l-contents .c-index-visual-menu__inner:hover::after {
  background: url(../img/common/ico_arrow-red.svg) no-repeat center/100%;
  right: 12px;
}
.l-contents .c-index-visual-menu__inner.menu_contact {
  width: 160px;
  aspect-ratio: 1;
  background: #fff;
  color: #DE0C0C;
  border: 2px solid #800000;
  border-radius: 200px;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s;
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-visual-menu__inner.menu_contact {
    width: 135px;
  }
}
.l-contents .c-index-visual-menu__inner.menu_contact::before {
  content: none;
}
.l-contents .c-index-visual-menu__inner.menu_contact::after {
  width: 28px;
  aspect-ratio: 28/20;
  background: url(../img/common/ico_mail.svg) no-repeat center/100%;
  order: unset;
  position: unset;
  transition: all 0.3s;
}
.l-contents .c-index-visual-menu__inner.menu_contact:hover {
  background: #800000;
  color: #fff;
}
.l-contents .c-index-visual-menu__inner.menu_contact:hover::after {
  background: url(../img/common/ico_mail-white02.svg) no-repeat center/100%;
}
.l-contents .c-index-visual-animation.animation01 {
  width: min(1120px, 58%);
  position: absolute;
  bottom: -25%;
  left: -24%;
  animation: move 1s backwards;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-animation.animation01 {
    left: -15%;
    bottom: -20px;
  }
}
.l-contents .c-index-visual-animation.animation02 {
  width: min(1280px, 66%);
  aspect-ratio: 1280/1230;
  position: absolute;
  top: 0;
  right: -35%;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-animation.animation02 {
    top: unset;
    bottom: -60px;
    right: -28%;
  }
}
.l-contents .c-index-news {
  width: min(1280px, 90%);
  margin: 0 auto 120px;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news {
    width: 100%;
    margin: 0 auto 60px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news .c_ttl {
    width: 90%;
    margin: 0 auto 45px;
  }
}
.l-contents .c-index-news-list {
  margin-bottom: 45px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-news-list {
    flex-wrap: wrap;
  }
}
.l-contents .c-index-news-list__item {
  width: calc((100% - 120px) / 4);
  background: #fff;
  border: 2px solid #8FD4D7;
  border-radius: 2px;
  box-shadow: 10px 10px 0 0px #8FD4D7;
  transition: all 0.3s;
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-news-list__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news-list__item {
    margin: 0 10px 5px;
    box-shadow: 5px 5px 0 0px #8FD4D7;
  }
}
.l-contents .c-index-news-list__item .c-index-news-list__link {
  padding: 60px 20px 20px;
  display: block;
  position: relative;
}
.l-contents .c-index-news-list__item .c-index-news-list__link::before {
  content: "";
  width: 95%;
  height: 2px;
  background: #8FD4D7;
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  margin: auto;
}
.l-contents .c-index-news-list__item .c-index-news-list__link::after {
  content: "";
  width: 95%;
  height: 2px;
  background: #8FD4D7;
  position: absolute;
  top: 33px;
  left: 0;
  right: 0;
  margin: auto;
}
.l-contents .c-index-news-list__item .c-index-news-list__img {
  aspect-ratio: 242/181;
  border-radius: 4px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.l-contents .c-index-news-list__item .c-index-news-list__info {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-contents .c-index-news-list__item .c-index-news-list__info .c-index-news-list__day {
  font-weight: 700;
  color: #878787;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news-list__item .c-index-news-list__info .c-index-news-list__day {
    font-size: 0.9375rem;
  }
}
.l-contents .c-index-news-list__item .c-index-news-list__info .c-index-news-list__category {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: #800000;
  padding: 5px 10px;
  border-radius: 30px;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news-list__item .c-index-news-list__info .c-index-news-list__category {
    font-size: 0.8125rem;
  }
}
.l-contents .c-index-news-list__item .c-index-news-list__ttl {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.l-contents .c-index-news-list__item .c-index-news-list__ttl::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/11;
  background: url(../img/common/ico_arrow-red.svg) no-repeat center/100%;
  flex-shrink: 0;
}
.l-contents .c-index-news-list__item:hover {
  box-shadow: none;
}
.l-contents .c-index-news-list__item:hover .c-index-news-list__img {
  opacity: 0.5;
}
.l-contents .c-index-services {
  width: min(1680px, 95%);
  padding-left: 40px;
  margin: 0 auto 0 0;
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services {
    padding: 0;
    margin: 0 auto;
    flex-direction: column;
    gap: 25px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__info {
    padding-bottom: 50px;
  }
}
.l-contents .c-index-services__info .c-index-services__txt {
  font-weight: 700;
  line-height: 2;
  margin-bottom: 60px;
}
.l-contents .c-index-services__info .c_btn {
  margin: 0 auto 0 0;
}
.l-contents .c-index-services::before {
  content: "";
  width: min(312px, 16%);
  aspect-ratio: 312/266;
  background: url(../img/top/pic_service-shrimp.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  animation: bounce 2.8s infinite;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services::before {
    width: 105px;
  }
}
.l-contents .c-index-services::after {
  content: "";
  width: min(318px, 17%);
  aspect-ratio: 318/298;
  background: url(../img/top/pic_service-squid.svg) no-repeat center/100%;
  position: absolute;
  right: -120px;
  bottom: 0;
  z-index: 1;
  animation: bounce 2.8s infinite;
  animation-delay: 1s;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services::after {
    width: 105px;
    right: 0;
    bottom: -10%;
  }
}
.l-contents .c-index-foods {
  background: #F8F4E0;
  padding: 205px 0 160px;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-foods {
    padding: 0 0 115px;
    margin: 100px 0 0;
  }
}
.l-contents .c-index-foods .c_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 45px;
}
.l-contents .c-index-foods::before {
  content: "";
  width: 100%;
  aspect-ratio: 1920/240;
  background: url(../img/top/pic_food-wave-before.png) no-repeat center/100%;
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-foods::before {
    top: -80px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-foods::before {
    top: unset;
    bottom: 100%;
  }
}
.l-contents .c-index-foods::after {
  content: "";
  width: 100%;
  aspect-ratio: 1920/80;
  background: url(../img/top/pic_food-wave-after.png) no-repeat center/100%;
  position: absolute;
  bottom: -3%;
  left: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-foods::after {
    bottom: -2%;
  }
}
.l-contents .c-index-foods-slider {
  margin-bottom: 60px;
}
.l-contents .c-index-foods-slider__item {
  width: 340px;
  height: auto;
  margin: 0 30px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-foods-slider__item {
    width: 270px;
  }
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__link {
  padding: 20px 0 0;
  display: block;
  position: relative;
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__category {
  font-weight: 700;
  width: 80px;
  background: #DE0C0C;
  color: #fff;
  aspect-ratio: 1;
  border-radius: 100px;
  position: absolute;
  top: 0;
  left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-foods-slider__item .c-index-foods-slider__category {
    width: 68px;
  }
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__category::before {
  content: "";
  width: 60px;
  aspect-ratio: 60/28;
  background: url(../img/top/pic_food-category.svg) no-repeat center/100%;
  position: absolute;
  bottom: -24px;
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__category.category-frozen {
  font-size: 0.8125rem;
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__category.category-other {
  background: #444CAA;
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__category.category-other::before {
  content: "";
  width: 46px;
  aspect-ratio: 46/24;
  background: url(../img/top/pic_food-category-other.svg) no-repeat center/100%;
  bottom: -20px;
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__img {
  width: 100%;
  margin-bottom: 20px;
  max-height: 250px;
  overflow: hidden;
  aspect-ratio: 8/5;
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-foods-slider__item .c-index-foods-slider__img {
    max-height: 180px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-foods-slider__item .c-index-foods-slider__img {
    max-height: 150px;
  }
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__img .__img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__ttl {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  color: #404040;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-contents .c-index-foods-slider__item .c-index-foods-slider__ttl::after {
  content: "";
  width: 17px;
  aspect-ratio: 17/11;
  background: url(../img/common/ico_arrow-red.svg) no-repeat center/100%;
}
.l-contents .c-index-bottom {
  margin: 0 0 160px;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-bottom {
    margin: 0 0 60px;
  }
}
.l-contents .c-index-bottom__item {
  width: min(1280px, 90%);
  padding: 45px 45px 45px 80px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #DE0C0C;
  box-shadow: 10px 10px 0 0px #DE0C0C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-bottom__item {
    padding: 25px 20px;
    box-shadow: 5px 5px 0 0px #DE0C0C;
    flex-direction: column-reverse;
    gap: 20px;
  }
}
.l-contents .c-index-bottom__item:last-of-type {
  padding: 45px 80px 45px 45px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-bottom__item:last-of-type {
    padding: 25px 20px;
    flex-direction: column;
  }
}
.l-contents .c-index-bottom__item .c-index-bottom__img {
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-bottom__item .c-index-bottom__img {
    width: min(300px, 100%);
  }
}
.l-contents .c-index-bottom__item .c-index-bottom__info .c-index-bottom__txt {
  line-height: 2;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-bottom__item .c-index-bottom__info .c-index-bottom__txt {
    margin-bottom: 40px;
  }
}
.l-contents .c-index-bottom__item .c-index-bottom__info .c_btn {
  margin: 0 auto 0 0;
}
.l-contents .c-index-bottom__item:first-of-type {
  margin-bottom: 80px;
  border: 2px solid #444CAA;
  box-shadow: 10px 10px 0 0px #444CAA;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-bottom__item:first-of-type {
    margin-bottom: 40px;
    box-shadow: 5px 5px 0 0px #444CAA;
  }
}
.l-contents .c-index-bottom__item:first-of-type .c-index-bottom__info .c_ttl::before {
  color: #444CAA;
}
.l-contents .c-index-bottom__item:first-of-type .c-index-bottom__info .c_ttl::after {
  background: url(../img/common/ico_contents-ttl-blue.svg) no-repeat center/100%;
}
.l-contents .c-index-bottom__item:first-of-type .c-index-bottom__info .c_btn {
  border: 2px solid #444CAA;
}
.l-contents .c-index-bottom__item:first-of-type .c-index-bottom__info .c_btn::after {
  background: url(../img/common/ico_arrow-blue.svg) no-repeat center/100%;
}
.l-contents .c-index-bottom__item:first-of-type .c-index-bottom__info .c_btn:hover {
  background: #444CAA;
}
.l-contents .c-index-bottom__item:first-of-type .c-index-bottom__info .c_btn:hover::after {
  background: url(../img/common/ico_arrow.svg) no-repeat center/100%;
}
.l-contents .c-index-bottom::before {
  content: "";
  width: 299px;
  aspect-ratio: 299/480;
  background: url(../img/common/pic_octopus-left.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-bottom::before {
    width: 40%;
  }
}
.l-contents .c-index-bottom::after {
  content: "";
  width: 394px;
  aspect-ratio: 394/480;
  background: url(../img/common/pic_octopus-right.svg) no-repeat center/100%;
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-bottom::after {
    width: 42%;
    top: 10%;
  }
}
.l-contents .c-index-bottom.is-inview::before {
  animation: move-left 1s backwards;
  animation-delay: 0.5s;
}
.l-contents .c-index-bottom.is-inview::after {
  animation: move-right 1s backwards;
  animation-delay: 1s;
}
.l-contents .c-index-recruit {
  padding: 90px 0;
  margin-bottom: 200px;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit {
    padding: 40px 0 65%;
    margin-bottom: 65px;
  }
}
.l-contents .c-index-recruit::before {
  content: "";
  aspect-ratio: 1120/640;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #E9F0F5;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit::before {
    width: 100%;
    height: 90%;
    bottom: unset;
  }
}
.l-contents .c-index-recruit::after {
  content: "";
  aspect-ratio: 1214/640;
  width: 64%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  background: url(../img/top/pic_recruit.png) no-repeat left center/cover;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit::after {
    width: 100%;
    background: url(../img/top/pic_recruit-sp.png) no-repeat right bottom/100%;
    top: unset;
  }
}
.l-contents .c-index-recruit__inner {
  width: min(1280px, 90%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.l-contents .c-index-recruit__inner .c-index-recruit__info {
  width: 560px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit__inner .c-index-recruit__info {
    width: 100%;
  }
}
.l-contents .c-index-recruit__inner .c-index-recruit__info .c-index-recruit__catch {
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 700;
  line-height: 2;
  color: #DE0C0C;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px #fff;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit__inner .c-index-recruit__info .c-index-recruit__catch {
    line-height: 1.35;
  }
}
.l-contents .c-index-recruit__inner .c-index-recruit__info .c-index-recruit__txt {
  font-weight: 700;
  line-height: 2;
  margin-bottom: 30px;
  text-shadow: 1px 1px 4px #fff;
  width: 400px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-recruit__inner .c-index-recruit__info .c-index-recruit__txt {
    font-size: 0.9375rem;
    width: 100%;
  }
}
.l-contents .c-index-recruit__inner .c-index-recruit__info .c_btn {
  margin: 0 auto 0 0;
}

.c-policy {
  width: min(960px, 90%);
  margin: 0 auto 200px;
}
@media screen and (max-width:768px) {
  .c-policy {
    margin: 0 auto 80px;
  }
}
.c-policy__txt {
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .c-policy__txt {
    margin-bottom: 40px;
  }
}
.c-policy-list__ttl {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: #DE0C0C;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .c-policy-list__ttl {
    margin-bottom: 15px;
  }
}
.c-policy-list__txt {
  line-height: 2;
  margin-bottom: 50px;
}
@media screen and (max-width:768px) {
  .c-policy-list__txt {
    margin-bottom: 30px;
  }
}
.c-policy-last {
  text-align: right;
}

.c-services {
  margin-bottom: 200px;
}
@media screen and (max-width:768px) {
  .c-services {
    margin-bottom: 80px;
  }
}
.c-services-catch {
  width: min(1600px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:1024px) {
  .c-services-catch {
    flex-direction: column;
    gap: 30px;
  }
}
.c-services-catch__inner {
  width: 520px;
  padding: 70px 0 0;
  margin: 0 auto;
  flex-shrink: 0;
}
@media screen and (max-width:1024px) {
  .c-services-catch__inner {
    padding: 0;
  }
}
@media screen and (max-width:768px) {
  .c-services-catch__inner {
    width: 100%;
  }
}
.c-services-catch__img {
  width: 370px;
  margin: 0 auto 50px;
}
@media screen and (max-width:1024px) {
  .c-services-catch__img {
    margin-bottom: 30px;
  }
}
@media screen and (max-width:768px) {
  .c-services-catch__img {
    width: 270px;
  }
}
.c-services-catch__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
.c-services-catch::before {
  content: "";
  width: min(500px, 31.25%);
  aspect-ratio: 1;
  background: url(../img/services/bg_services-top01.png) no-repeat center/100%;
}
@media screen and (max-width:1024px) {
  .c-services-catch::before {
    margin-right: auto;
  }
}
@media screen and (max-width:768px) {
  .c-services-catch::before {
    width: 250px;
  }
}
.c-services-catch::after {
  content: "";
  width: min(556px, 34.75%);
  padding: 70px 0 0;
  aspect-ratio: 556/450;
  background: url(../img/services/bg_services-top02.png) no-repeat center/100%;
}
@media screen and (max-width:1024px) {
  .c-services-catch::after {
    margin-left: auto;
    padding: 0;
  }
}
@media screen and (max-width:768px) {
  .c-services-catch::after {
    width: 250px;
  }
}
.c-services-business {
  background: #F8F4E0;
  padding: 190px 0 160px;
  margin: -60px 0 160px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-services-business {
    padding: 60px 0;
    margin: 0 0 60px;
  }
}
.c-services-business .c_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width:768px) {
  .c-services-business .c_ttl {
    margin: 0 auto 30px;
  }
}
.c-services-business-list {
  width: min(1280px, 90%);
  margin: 0 auto 100px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  counter-reset: order 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .c-services-business-list {
    margin: 0 auto 80px;
    flex-direction: column;
  }
}
.c-services-business-list__item {
  width: 48%;
}
@media screen and (max-width:768px) {
  .c-services-business-list__item {
    width: 100%;
  }
}
.c-services-business-list__item .c-services-business-list__ttl {
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 700;
  color: #DE0C0C;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width:768px) {
  .c-services-business-list__item .c-services-business-list__ttl {
    margin-bottom: 25px;
  }
}
.c-services-business-list__item .c-services-business-list__ttl::before {
  counter-increment: order 1;
  content: "0" counter(order);
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 0.785rem + 2.53vw, 3rem);
  margin-top: -15px;
}
.c-services-business-list__item .c-services-business-list__img {
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .c-services-business-list__item .c-services-business-list__img {
    margin-bottom: 20px;
  }
}
.c-services-business-list__item .c-services-business-list__catch {
  width: min(390px, 65%);
  margin: 0 auto 40px;
}
@media screen and (max-width:768px) {
  .c-services-business-list__item .c-services-business-list__catch {
    width: 290px;
    margin-bottom: 20px;
  }
}
.c-services-business-list__item .c-services-business-list__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 0 1px #fff;
}
.c-services-business-bottom {
  width: min(650px, 90%);
  margin: 0 auto;
  padding: 30px 40px 35px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 8px 8px 0 0 #BC9E75;
  position: relative;
  z-index: 1;
  counter-reset: order 0;
}
@media screen and (max-width:768px) {
  .c-services-business-bottom {
    box-shadow: 5px 5px 0 0 #BC9E75;
  }
}
.c-services-business-bottom__item {
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.c-services-business-bottom__item:last-of-type {
  margin-bottom: 0;
}
.c-services-business-bottom__item::before {
  counter-increment: order 1;
  content: "0" counter(order);
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 1.544rem + 0.95vw, 2.375rem);
  color: #DE0C0C;
  margin-top: -15px;
}
.c-services-business-bottom::before {
  content: "";
  width: 72px;
  aspect-ratio: 1;
  background: url(../img/services/pic_features.svg) no-repeat center/100%;
  position: absolute;
  top: -20px;
  left: -40px;
}
@media screen and (max-width:768px) {
  .c-services-business-bottom::before {
    top: -40px;
    left: 20px;
  }
}
.c-services-business-bottom.is-inview::before {
  animation: banh 0.6s forwards 1.5s;
}
.c-services-business-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-services-business-bg::before {
  content: "";
  width: 100%;
  aspect-ratio: 640/17;
  background: url(../img/safety-system/bg_yellow-wave.png) no-repeat center/100%;
  position: absolute;
  top: -1.5%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-services-business-bg::before {
    top: -0.4%;
  }
}
.c-services-business-bg::after {
  content: "";
  width: 100%;
  aspect-ratio: 640/17;
  background: url(../img/safety-system/bg_yellow-wave.png) no-repeat center/100%;
  transform: rotate(180deg);
  position: absolute;
  bottom: -1.5%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-services-business-bg::after {
    bottom: -0.4%;
  }
}
.c-services-business::before {
  content: "";
  width: 299px;
  aspect-ratio: 299/480;
  background: url(../img/common/pic_octopus-left.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  bottom: 10%;
  z-index: 0;
}
@media screen and (max-width:1024px) {
  .c-services-business::before {
    width: 200px;
  }
}
@media screen and (max-width:768px) {
  .c-services-business::before {
    display: none;
  }
}
.c-services-business::after {
  content: "";
  width: 394px;
  aspect-ratio: 394/480;
  background: url(../img/common/pic_octopus-right.svg) no-repeat center/100%;
  position: absolute;
  right: 0;
  bottom: 20%;
  z-index: 0;
}
@media screen and (max-width:1024px) {
  .c-services-business::after {
    width: 200px;
  }
}
@media screen and (max-width:768px) {
  .c-services-business::after {
    display: none;
  }
}
.c-services-business.is-inview::before {
  animation: move-left 1s backwards;
  animation-delay: 2s;
}
.c-services-business.is-inview::after {
  animation: move-right 1s backwards;
  animation-delay: 2.5s;
}
.c-services-strength__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-services-strength__ttl::before {
  content: "";
  width: 126px;
  aspect-ratio: 20/13;
  background: url(../img/services/pic_reasons.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-services-strength__ttl::before {
    width: 120px;
  }
}
.c-services-strength__ttl .c_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
.c-services-strength__ttl.is-inview::before {
  animation: banh 0.6s forwards 1.5s;
}
.c-services-strength-list {
  width: min(1120px, 90%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  counter-reset: order 0;
}
@media screen and (max-width:768px) {
  .c-services-strength-list {
    flex-direction: column;
    gap: 40px;
  }
}
.c-services-strength-list__item {
  width: calc(50% - 40px);
}
@media screen and (max-width:768px) {
  .c-services-strength-list__item {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .c-services-strength-list__item .c-services-strength-list__img {
    width: 90%;
    margin: 0 auto;
  }
}
.c-services-strength-list__reason {
  font-size: clamp(1.063rem, 0.683rem + 0.79vw, 1.375rem);
  font-weight: 700;
  text-align: center;
  line-height: 2;
  display: flex;
  flex-direction: column;
  margin-top: -30px;
}
.c-services-strength-list__reason::before {
  counter-increment: order 1;
  content: "0" counter(order);
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  line-height: 1;
  color: #DE0C0C;
  margin-bottom: 20px;
}

.c-foods {
  width: min(1280px, 90%);
  margin: 0 auto 200px;
}
@media screen and (max-width:768px) {
  .c-foods {
    margin: 0 auto 80px;
  }
}
.c-foods-category {
  margin-bottom: 100px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-foods-category {
    margin-bottom: 50px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
}
.c-foods-category__ttl {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #DE0C0C;
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-foods-category__ttl::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url(../img/common/ico_contents-ttl.svg) no-repeat center/100%;
}
.c-foods-category__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-foods-category__list {
    width: 300px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
}
.c-foods-category__link {
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  width: 80px;
  margin-bottom: 20px;
  aspect-ratio: 1;
  border-radius: 100px;
  background: #DE0C0C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0.5;
  transition: all 0.3s;
}
.c-foods-category__link::after {
  content: "";
  background: url(../img/foods/pic_category.svg) no-repeat center/100%;
  width: 60px;
  aspect-ratio: 60/28;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
.c-foods-category__link.category-all::after {
  background: url(../img/foods/pic_category-all.svg) no-repeat center/100%;
  width: 78px;
  aspect-ratio: 78/34;
  bottom: -20px;
}
.c-foods-category__link.category-other {
  background: #444CAA;
}
.c-foods-category__link.category-other::after {
  background: url(../img/foods/pic_other.svg) no-repeat center/100%;
  width: 46px;
  aspect-ratio: 46/24;
  bottom: -20px;
}
.c-foods-category__link.category-frozen {
  font-size: 0.8125rem;
}
.c-foods-category__link.__current {
  opacity: 1;
}
.c-foods-category__link:hover {
  opacity: 1;
}
.c-foods-list {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 80px;
}
@media screen and (max-width:768px) {
  .c-foods-list {
    margin-bottom: 40px;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
    margin-left: 3%;
  }
}
@media screen and (max-width:415px) {
  .c-foods-list {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.c-foods-list__item {
  width: calc((100% - 120px) / 3);
  position: relative;
}
@media screen and (max-width:768px) {
  .c-foods-list__item {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width:415px) {
  .c-foods-list__item {
    width: 100%;
  }
}
.c-foods-list__item .c-foods-list__slider {
  margin-bottom: 24px;
}
.c-foods-list__item .c-foods-list__slider__inner {
  margin-bottom: 0;
}
.c-foods-list__item .c-foods-list__slider .c-foods-list__img {
  border-radius: 24px;
  max-height: 250px;
  overflow: hidden;
  aspect-ratio: 8/5;
}
@media screen and (max-width:1024px) {
  .c-foods-list__item .c-foods-list__slider .c-foods-list__img {
    max-height: 180px;
  }
}
@media screen and (max-width:768px) {
  .c-foods-list__item .c-foods-list__slider .c-foods-list__img {
    max-height: 150px;
  }
}
.c-foods-list__item .c-foods-list__slider .c-foods-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-foods-list__item .c-foods-list__slider__dots {
  margin: 24px 0 0;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.c-foods-list__item .c-foods-list__slider__dots li {
  color: transparent;
  width: 16px;
  aspect-ratio: 1;
  background: #F3A5A5;
  border-radius: 20px;
  cursor: pointer;
}
.c-foods-list__item .c-foods-list__slider__dots li.slick-active {
  background: #DE0C0C;
}
.c-foods-list__item .c-foods-list__slider__dots li button {
  opacity: 0;
}
.c-foods-list__item .c-foods-list__ttl {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: #DE0C0C;
  margin-bottom: 20px;
}
.c-foods-list__item .c-foods-list__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 20px;
}
.c-foods-list__item .c-foods-list__txt a {
  color: #404040;
  text-decoration: underline;
  overflow-wrap: anywhere;
}
.c-foods-list__item .c-foods-list__example {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.35;
  font-weight: 700;
  text-align: center;
  padding: 10px 15px;
  box-sizing: border-box;
  border: 2px solid #F3A5A5;
  border-radius: 4px;
}
.c-foods-list__item .c-foods-list__category {
  font-size: clamp(0.875rem, 0.723rem + 0.32vw, 1rem);
  font-weight: 700;
  width: 72px;
  aspect-ratio: 1;
  color: #fff;
  background: #DE0C0C;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -20px;
  top: -20px;
}
@media screen and (max-width:768px) {
  .c-foods-list__item .c-foods-list__category {
    width: 56px;
  }
}
.c-foods-list__item .c-foods-list__category::after {
  content: "";
  background: url(../img/foods/pic_category.svg) no-repeat center/100%;
  width: 60px;
  aspect-ratio: 60/28;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
}
.c-foods-list__item .c-foods-list__category.category-other {
  background: #444CAA;
}
.c-foods-list__item .c-foods-list__category.category-other::after {
  background: url(../img/foods/pic_other.svg) no-repeat center/100%;
  width: 46px;
  aspect-ratio: 46/24;
  bottom: -20px;
}
.c-foods-list__item .c-foods-list__category.category-frozen {
  font-size: 0.8125rem;
}
@media screen and (max-width:768px) {
  .c-foods-list__item .c-foods-list__category.category-frozen {
    font-size: 0.625rem;
  }
}
.c-foods-list__item.category-all::after {
  background: url(../img/foods/pic_category-all.svg) no-repeat center/100%;
  width: 78px;
  aspect-ratio: 78/34;
  bottom: -20px;
}
.c-foods-list__item.category-other {
  background: #444CAA;
}
.c-foods-list__item.category-other::after {
  background: url(../img/foods/pic_other.svg) no-repeat center/100%;
  width: 46px;
  aspect-ratio: 46/24;
  bottom: -20px;
}
.c-foods-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width:768px) {
  .c-foods-pager {
    gap: 20px;
  }
}
.c-foods-pager-number__list {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width:768px) {
  .c-foods-pager-number__list {
    gap: 8px;
  }
}
.c-foods-pager-number__list .c-foods-pager-number__item {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: url(../img/news/bg_news-pager.png) no-repeat center/100%;
  width: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
@media screen and (max-width:768px) {
  .c-foods-pager-number__list .c-foods-pager-number__item {
    font-size: 1.25rem;
    width: 40px;
  }
}
.c-foods-pager-number__list .c-foods-pager-number__item.__current {
  opacity: 1;
}
.c-foods-pager__prev {
  width: 31px;
  aspect-ratio: 31/20;
  background: url(../img/common/ico_arrow-lightgray.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-foods-pager__prev {
    width: 25px;
  }
}
.c-foods-pager__next {
  width: 31px;
  aspect-ratio: 31/20;
  background: url(../img/common/ico_arrow-red.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-foods-pager__next {
    width: 25px;
  }
}

.c-safety {
  margin-bottom: 200px;
}
@media screen and (max-width:768px) {
  .c-safety {
    margin-bottom: 80px;
  }
}
.c-safety-catch {
  width: min(1280px, 90%);
  margin: 0 auto 130px;
}
@media screen and (max-width:768px) {
  .c-safety-catch {
    margin: 0 auto 65px;
  }
}
.c-safety-catch__main {
  width: min(580px, 100%);
  margin: 0 auto 60px;
}
@media screen and (max-width:768px) {
  .c-safety-catch__main {
    width: min(400px, 100%);
    margin: 0 auto 24px;
  }
}
.c-safety-catch__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
.c-safety-list {
  background: #F8F4E0;
  margin-bottom: 130px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-safety-list {
    margin-bottom: 80px;
  }
}
.c-safety-list::before {
  content: "";
  width: 100%;
  aspect-ratio: 640/17;
  background: url(../img/safety-system/bg_yellow-wave.png) no-repeat center/100%;
  position: absolute;
  top: -1%;
  left: 0;
}
@media screen and (max-width:768px) {
  .c-safety-list::before {
    top: -0.3%;
  }
}
.c-safety-list::after {
  content: "";
  width: 100%;
  aspect-ratio: 640/17;
  background: url(../img/safety-system/bg_yellow-wave.png) no-repeat center/100%;
  transform: rotate(180deg);
  position: absolute;
  bottom: -1%;
  left: 0;
}
@media screen and (max-width:768px) {
  .c-safety-list::after {
    bottom: -0.3%;
  }
}
.c-safety-list__inner {
  width: min(1280px, 90%);
  padding: 100px 0;
  margin: 0 auto;
  counter-reset: order 0;
}
@media screen and (max-width:768px) {
  .c-safety-list__inner {
    padding: 40px 0;
  }
}
.c-safety-list__inner .c-safety-list__item {
  margin-bottom: 100px;
  display: flex;
  align-items: center;
  gap: 80px;
}
@media screen and (max-width:768px) {
  .c-safety-list__inner .c-safety-list__item {
    margin-bottom: 45px;
    flex-direction: column;
    gap: 25px;
  }
}
.c-safety-list__inner .c-safety-list__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
  .c-safety-list__inner .c-safety-list__item:nth-child(even) {
    flex-direction: column;
  }
}
.c-safety-list__inner .c-safety-list__item:last-of-type {
  margin-bottom: 0;
}
.c-safety-list__inner .c-safety-list__item .c-safety-list__img {
  width: calc(50% - 40px);
}
@media screen and (max-width:768px) {
  .c-safety-list__inner .c-safety-list__item .c-safety-list__img {
    width: 100%;
  }
}
.c-safety-list__inner .c-safety-list__item .c-safety-list__info {
  width: calc(50% - 40px);
}
@media screen and (max-width:768px) {
  .c-safety-list__inner .c-safety-list__item .c-safety-list__info {
    width: 100%;
  }
}
.c-safety-list__inner .c-safety-list__item .c-safety-list__info .c-safety-list__ttl {
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-safety-list__inner .c-safety-list__item .c-safety-list__info .c-safety-list__ttl::before {
  content: "0" counter(order);
  counter-increment: order 1;
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 0.785rem + 2.53vw, 3rem);
  line-height: 1;
  color: #DE0C0C;
  margin-bottom: 10px;
}
.c-safety-list__inner .c-safety-list__item .c-safety-list__info .c-safety-list__catch {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: #DE0C0C;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .c-safety-list__inner .c-safety-list__item .c-safety-list__info .c-safety-list__catch {
    margin-bottom: 25px;
  }
}
.c-safety-list__inner .c-safety-list__item .c-safety-list__info .c-safety-list__detail {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-safety-list__inner .c-safety-list__item .c-safety-list__info .c-safety-list__detail__list {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  line-height: 1.35;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 15px;
  border-radius: 4px;
  background: #fff;
}
.c-safety-flow {
  width: min(1280px, 90%);
  margin: 0 auto;
}
.c-safety-flow .c_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
.c-safety-flow-list {
  counter-reset: order 0;
}
.c-safety-flow-list__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-safety-flow-list__inner {
    flex-direction: column;
  }
}
.c-safety-flow-list__inner .c-safety-flow-list__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
.c-safety-flow-list__inner .c-safety-flow-list__item:first-of-type {
  animation-delay: 0.5s;
}
.c-safety-flow-list__inner .c-safety-flow-list__item:nth-of-type(2) {
  animation-delay: 1.5s;
}
.c-safety-flow-list__inner .c-safety-flow-list__item:nth-of-type(3) {
  animation-delay: 2.5s;
}
.c-safety-flow-list__inner .c-safety-flow-list__item:nth-of-type(4) {
  animation-delay: 3.5s;
}
.c-safety-flow-list__inner .c-safety-flow-list__item::before {
  content: "0" counter(order);
  counter-increment: order 1;
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, 0.785rem + 2.53vw, 3rem);
  line-height: 1;
  width: 80px;
  height: 48px;
  padding: 10px 0 22px;
  background: #DE0C0C;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .c-safety-flow-list__inner .c-safety-flow-list__item::before {
    width: 64px;
    height: 32px;
    position: absolute;
    left: 0;
    top: 0;
  }
}
.c-safety-flow-list__inner .c-safety-flow-list__item .c-safety-flow-list__ttl {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
}
@media screen and (max-width:768px) {
  .c-safety-flow-list__inner .c-safety-flow-list__item .c-safety-flow-list__ttl {
    padding-left: 88px;
  }
}
@media screen and (max-width:768px) {
  .c-safety-flow-list__inner .c-safety-flow-list__item .c-safety-flow-list__img {
    padding-left: 88px;
  }
}
.c-safety-flow-list__inner:first-of-type {
  padding-right: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .c-safety-flow-list__inner:first-of-type {
    padding: 0;
    margin-bottom: 30px;
  }
}
.c-safety-flow-list__inner:last-of-type {
  padding-left: 80px;
  animation-delay: 1s;
}
@media screen and (max-width:768px) {
  .c-safety-flow-list__inner:last-of-type {
    padding: 0;
  }
}
.c-safety-flow-list__inner:last-of-type .c-safety-flow-list__item:last-of-type::after {
  content: "";
  width: calc(100% - 75px);
  height: 10px;
  background: #fff;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-safety-flow-list__inner:last-of-type .c-safety-flow-list__item:last-of-type::after {
    width: calc(100% - 60px);
    top: 30px;
  }
}
.c-safety-flow-list__inner::before {
  content: "";
  background: #F3A5A5;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: -1;
  transition: all 2s;
}
@media print, screen and (min-width:769px) {
  .c-safety-flow-list__inner::before {
    width: 0;
    height: 4px;
  }
}
@media screen and (max-width:768px) {
  .c-safety-flow-list__inner::before {
    width: 4px;
    height: 0;
    top: 32px;
    left: 32px;
  }
}
@media print, screen and (min-width:769px) {
  .c-safety-flow-list__inner.is-inview::before {
    width: 100%;
    height: 4px;
  }
}
@media screen and (max-width:768px) {
  .c-safety-flow-list__inner.is-inview::before {
    width: 4px;
    height: 100%;
  }
}

.c-news {
  width: min(1280px, 90%);
  margin: 0 auto 200px;
}
@media screen and (max-width:768px) {
  .c-news {
    margin: 0 auto 80px;
  }
}
.c-news-category {
  margin-bottom: 60px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-news-category {
    flex-direction: column;
    gap: 24px;
  }
}
.c-news-category__ttl {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  color: #DE0C0C;
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-news-category__ttl::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url(../img/common/ico_contents-ttl.svg) no-repeat center/100%;
}
.c-news-category__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width:768px) {
  .c-news-category__list {
    flex-wrap: wrap;
  }
}
.c-news-category__link {
  font-weight: 700;
  line-height: 1;
  padding: 10px 20px;
  color: #404040;
  border: 2px solid #DE0C0C;
  border-radius: 50px;
  background: #fff;
  transition: all 0.4s;
}
.c-news-category__link:hover {
  background: #DE0C0C;
  color: #fff;
}
.c-news-category__link.__current {
  background: #DE0C0C;
  color: #fff;
}
.c-news-list {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-news-list {
    margin-bottom: 40px;
    gap: 20px;
  }
}
@media screen and (max-width:768px) {
  .c-news-list .c-index-news-list__item {
    width: 100%;
  }
}
.c-news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width:768px) {
  .c-news-pager {
    gap: 20px;
  }
}
.c-news-pager-number__list {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media screen and (max-width:768px) {
  .c-news-pager-number__list {
    gap: 8px;
  }
}
.c-news-pager-number__list .c-news-pager-number__item {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background: url(../img/news/bg_news-pager.png) no-repeat center/100%;
  width: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}
@media screen and (max-width:768px) {
  .c-news-pager-number__list .c-news-pager-number__item {
    font-size: 1.25rem;
    width: 40px;
  }
}
.c-news-pager-number__list .c-news-pager-number__item.__current {
  opacity: 1;
}
.c-news-pager__prev {
  width: 31px;
  aspect-ratio: 31/20;
  background: url(../img/common/ico_arrow-lightgray.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-news-pager__prev {
    width: 25px;
  }
}
.c-news-pager__next {
  width: 31px;
  aspect-ratio: 31/20;
  background: url(../img/common/ico_arrow-red.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-news-pager__next {
    width: 25px;
  }
}

.c-news-detail {
  width: min(1118px, 90%);
  margin: 0 auto 200px;
}
@media screen and (max-width:768px) {
  .c-news-detail {
    margin: 0 auto 80px;
  }
}
.c-news-detail-contents {
  padding: 105px 80px 80px;
  margin-bottom: 60px;
  border: 2px solid #8FD4D7;
  border-radius: 2px;
  box-shadow: 10px 10px 0 0 #8FD4D7;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-news-detail-contents {
    padding: 60px 20px 45px;
    margin-bottom: 30px;
    box-shadow: 5px 5px 0 0 #8FD4D7;
  }
}
.c-news-detail-contents::before {
  content: "";
  width: 95%;
  height: 2px;
  background: #8FD4D7;
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  margin: auto;
}
.c-news-detail-contents::after {
  content: "";
  width: 95%;
  height: 2px;
  background: #8FD4D7;
  position: absolute;
  top: 33px;
  left: 0;
  right: 0;
  margin: auto;
}
.c-news-detail-contents__info {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .c-news-detail-contents__info {
    margin-bottom: 15px;
  }
}
.c-news-detail-contents__info .c-news-detail-contents__day {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
  font-weight: 700;
  line-height: 1;
  color: #878787;
}
.c-news-detail-contents__info .c-news-detail-contents__category {
  font-size: clamp(0.875rem, 0.723rem + 0.32vw, 1rem);
  font-weight: 700;
  line-height: 1;
  padding: 5px 15px;
  background: #800000;
  color: #fff;
  border-radius: 50px;
}
.c-news-detail-contents__ttl {
  font-size: clamp(1.25rem, 0.339rem + 1.9vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  color: #DE0C0C;
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .c-news-detail-contents__ttl {
    margin-bottom: 30px;
  }
}
.c-news-detail-contents__img {
  width: min(800px, 100%);
  aspect-ratio: 800/530;
  margin: 0 auto 80px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .c-news-detail-contents__img {
    margin: 0 auto 30px;
  }
}
.c-news-detail-contents__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  line-height: 2;
}
.c-news-detail-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-news-detail-pager__prev {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .c-news-detail-pager__prev .__sub {
    display: none;
  }
}
.c-news-detail-pager__prev::before {
  content: "";
  width: 31px;
  aspect-ratio: 31/20;
  background: url(../img/common/ico_arrow-red.svg) no-repeat center/100%;
  transform: rotate(180deg);
}
.c-news-detail-pager__back {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.c-news-detail-pager__back::before {
  content: "";
  width: 48px;
  aspect-ratio: 48/50;
  background: url(../img/news/pic_news-return.svg) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-news-detail-pager__back::before {
    width: 38px;
  }
}
.c-news-detail-pager__next {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  color: #000;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .c-news-detail-pager__next .__sub {
    display: none;
  }
}
.c-news-detail-pager__next::after {
  content: "";
  width: 31px;
  aspect-ratio: 31/20;
  background: url(../img/common/ico_arrow-red.svg) no-repeat center/100%;
}

.c-recruit {
  margin-bottom: 200px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-recruit {
    margin-bottom: 80px;
  }
}
.c-recruit-message {
  width: min(1120px, 90%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.c-recruit-message .c_ttl {
  margin: -80px 0 45px;
}
@media screen and (max-width:768px) {
  .c-recruit-message .c_ttl {
    margin: -40px 0 30px;
  }
}
.c-recruit-message__txt {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  line-height: 2;
}
.c-recruit-number {
  background: #F8F4E0;
  padding: 320px 0 160px;
  margin: -160px 0 160px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-recruit-number {
    padding: 160px 0 120px;
    margin: -80px 0 60px;
  }
}
.c-recruit-number .c_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
.c-recruit-number-list {
  width: min(1280px, 90%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .c-recruit-number-list {
    width: 90%;
  }
}
.c-recruit-number-list__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-recruit-number-list__inner {
    gap: 15px;
  }
}
.c-recruit-number-list__item {
  background: #fff;
  border-radius: 16px;
  width: calc((100% - 80px) / 3);
  padding: 40px 30px 45px;
  box-sizing: border-box;
}
@media screen and (max-width:768px) {
  .c-recruit-number-list__item {
    width: calc((100% - 15px) / 2);
    padding: 15px 10px;
  }
}
.c-recruit-number-list__item .c-recruit-number-list__ttl {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: #DE0C0C;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .c-recruit-number-list__item .c-recruit-number-list__ttl {
    line-height: 1.35;
    margin-bottom: 15px;
  }
}
.c-recruit-number-list__item .c-recruit-number-list__img {
  margin-bottom: 30px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-recruit-number-list__item .c-recruit-number-list__img {
    margin-bottom: 15px;
  }
}
.c-recruit-number-list__item .c-recruit-number-list__img .__position01 {
  position: absolute;
  left: 1%;
  top: 0;
}
@media screen and (max-width:768px) {
  .c-recruit-number-list__item .c-recruit-number-list__img .__position01 {
    top: 5%;
  }
}
@media screen and (max-width:415px) {
  .c-recruit-number-list__item .c-recruit-number-list__img .__position01 {
    top: 1%;
  }
}
.c-recruit-number-list__item .c-recruit-number-list__img .__position02 {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width:768px) {
  .c-recruit-number-list__item .c-recruit-number-list__img .__position02 {
    right: 7%;
    top: 5%;
  }
}
@media screen and (max-width:415px) {
  .c-recruit-number-list__item .c-recruit-number-list__img .__position02 {
    top: 1%;
    right: 0;
  }
}
.c-recruit-number-list__item .c-recruit-number-list__move {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width:768px) {
  .c-recruit-number-list__item .c-recruit-number-list__move {
    gap: 5px;
  }
}
@media screen and (max-width:415px) {
  .c-recruit-number-list__item .c-recruit-number-list__move {
    gap: 3px;
  }
}
.c-recruit-number-list__item .c-recruit-number-list__move .__num {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(2rem, -0.43rem + 5.06vw, 4rem);
  color: #DE0C0C;
}
.c-recruit-number-list__item .c-recruit-number-list__move .__unit {
  font-size: clamp(1.25rem, 0.339rem + 1.9vw, 2rem);
  font-weight: 700;
  line-height: 1;
  color: #DE0C0C;
}
.c-recruit-number-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.c-recruit-number-bg::before {
  content: "";
  width: 100%;
  aspect-ratio: 640/17;
  background: url(../img/safety-system/bg_yellow-wave.png) no-repeat center/100%;
  position: absolute;
  top: -1%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-recruit-number-bg::before {
    top: -0.7%;
  }
}
.c-recruit-number-bg::after {
  content: "";
  width: 100%;
  aspect-ratio: 640/17;
  background: url(../img/safety-system/bg_yellow-wave.png) no-repeat center/100%;
  transform: rotate(180deg);
  position: absolute;
  bottom: -1%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-recruit-number-bg::after {
    bottom: -0.7%;
  }
}
.c-recruit-number::after {
  content: "";
  width: min(1120px, 58%);
  aspect-ratio: 786/449;
  background: url(../img/common/pic_octopus-legs-left02.svg) no-repeat center/100%;
  position: absolute;
  right: -23%;
  bottom: 5%;
}
@media screen and (max-width:768px) {
  .c-recruit-number::after {
    display: none;
  }
}
.c-recruit-number.is-inview::after {
  animation: move-right 1s backwards;
  animation-delay: 3s;
}
@media screen and (max-width:768px) {
  .c-recruit-number.is-inview::after {
    display: none;
  }
}
.c-recruit-schedule {
  width: min(1280px, 90%);
  margin: 0 auto 160px;
}
.c-recruit-schedule .c_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width:768px) {
  .c-recruit-schedule .c_ttl {
    margin: 0 auto 70px;
  }
}
.c-recruit-schedule-list {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width:768px) {
  .c-recruit-schedule-list {
    flex-direction: column;
  }
}
.c-recruit-schedule-list__item {
  width: calc((100% - 80px) / 2);
  padding: 0 40px 40px;
  background: #F4F4F4;
  border-radius: 24px;
}
@media screen and (max-width:768px) {
  .c-recruit-schedule-list__item {
    width: min(500px, 100%);
    margin: 0 auto;
  }
}
.c-recruit-schedule-list__item .c-recruit-schedule-list__ttl {
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
  text-align: center;
  line-height: 1;
  font-weight: 700;
  width: 120px;
  margin: -40px auto 80px;
  aspect-ratio: 1;
  background: #DE0C0C;
  color: #fff;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-recruit-schedule-list__item .c-recruit-schedule-list__ttl {
    width: 72px;
  }
}
.c-recruit-schedule-list__item .c-recruit-schedule-list__ttl::after {
  content: "";
  background: url(../img/foods/pic_category.svg) no-repeat center/100%;
  width: 90px;
  aspect-ratio: 60/28;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width:768px) {
  .c-recruit-schedule-list__item .c-recruit-schedule-list__ttl::after {
    width: 60px;
    bottom: -20px;
  }
}
.c-recruit-interview {
  width: min(1280px, 90%);
  margin: 0 auto;
  position: relative;
}
.c-recruit-interview .c_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
.c-recruit-interview-list {
  margin-bottom: 100px;
}
.c-recruit-interview-list__item {
  margin-bottom: 70px;
  display: flex;
  justify-content: center;
  gap: 18px;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item {
    margin-bottom: 45px;
  }
}
.c-recruit-interview-list__item:last-of-type {
  margin-bottom: 0;
}
.c-recruit-interview-list__item .c-recruit-interview-list__center {
  width: calc(100% - 490px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width:1200px) {
  .c-recruit-interview-list__item .c-recruit-interview-list__center {
    width: calc(100% - 410px);
  }
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item .c-recruit-interview-list__center {
    width: calc(100% - 210px);
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item .c-recruit-interview-list__center {
    width: 100%;
  }
}
.c-recruit-interview-list__item .c-recruit-interview-list__question {
  font-size: clamp(1rem, -0.215rem + 2.53vw, 2rem);
  line-height: 1.35;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item .c-recruit-interview-list__question {
    gap: 10px;
  }
}
.c-recruit-interview-list__item .c-recruit-interview-list__question::before {
  content: "Q";
  font-weight: 700;
  line-height: 1;
  color: #fff;
  width: 80px;
  aspect-ratio: 1;
  background: url(../img/common/pic_sircle-red.svg) no-repeat center/100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item .c-recruit-interview-list__question::before {
    width: 60px;
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item .c-recruit-interview-list__question::before {
    width: 40px;
  }
}
.c-recruit-interview-list__item .c-recruit-interview-list__answer {
  padding: 25px 30px;
  box-sizing: border-box;
  background: #F8F4E0;
  border-radius: 24px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item .c-recruit-interview-list__answer {
    padding: 15px;
    border-radius: 16px;
  }
}
.c-recruit-interview-list__item .c-recruit-interview-list__answer .c-recruit-interview-list__answer__txt {
  font-size: clamp(0.813rem, 0.509rem + 0.63vw, 1.063rem);
  font-weight: 700;
  line-height: 2;
  margin-bottom: 20px;
}
.c-recruit-interview-list__item .c-recruit-interview-list__answer .c-recruit-interview-list__answer__name {
  font-size: clamp(0.75rem, 0.446rem + 0.63vw, 1rem);
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  border-radius: 50px;
  background: #DE0C0C;
  color: #fff;
  line-height: 1.35;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item .c-recruit-interview-list__answer .c-recruit-interview-list__answer__name {
    padding: 8px 16px;
  }
}
.c-recruit-interview-list__item .c-recruit-interview-list__answer .c-recruit-interview-list__answer__name .__sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.875rem, 0.723rem + 0.32vw, 1rem);
}
.c-recruit-interview-list__item .c-recruit-interview-list__answer .c-recruit-interview-list__answer__name .__sub::after {
  content: "";
  width: 2px;
  height: 24px;
  background: #F3A5A5;
}
.c-recruit-interview-list__item::before {
  content: "";
  width: 240px;
  aspect-ratio: 240/273;
}
@media screen and (max-width:1200px) {
  .c-recruit-interview-list__item::before {
    width: 200px;
  }
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item::before {
    width: 100px;
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item::before {
    margin-top: 80px;
  }
}
.c-recruit-interview-list__item::after {
  content: "";
  width: 240px;
  aspect-ratio: 240/273;
}
@media screen and (max-width:1200px) {
  .c-recruit-interview-list__item::after {
    width: 200px;
  }
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item::after {
    width: 100px;
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item::after {
    margin-top: 80px;
  }
}
.c-recruit-interview-list__item:first-of-type::before {
  background: url(../img/recruit/pic_interview01.png) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item:first-of-type::after {
    content: none;
  }
}
.c-recruit-interview-list__item:first-of-type .c-recruit-interview-list__answer::before {
  content: "";
  width: 48px;
  background: url(../img/recruit/pic_bubble-left.png) no-repeat center/100%;
  aspect-ratio: 48/40;
  position: absolute;
  top: 40px;
  left: -48px;
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item:first-of-type .c-recruit-interview-list__answer::before {
    width: 24px;
    left: -24px;
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item:nth-of-type(2)::before {
    content: none;
  }
}
.c-recruit-interview-list__item:nth-of-type(2)::after {
  background: url(../img/recruit/pic_interview02.png) no-repeat center/100%;
}
.c-recruit-interview-list__item:nth-of-type(2) .c-recruit-interview-list__answer::after {
  content: "";
  width: 48px;
  background: url(../img/recruit/pic_bubble-right.png) no-repeat center/100%;
  aspect-ratio: 48/40;
  position: absolute;
  top: 40px;
  right: -48px;
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item:nth-of-type(2) .c-recruit-interview-list__answer::after {
    width: 24px;
    right: -24px;
  }
}
.c-recruit-interview-list__item:nth-of-type(3)::before {
  background: url(../img/recruit/pic_interview03.png) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item:nth-of-type(3)::after {
    content: none;
  }
}
.c-recruit-interview-list__item:nth-of-type(3) .c-recruit-interview-list__answer::before {
  content: "";
  width: 48px;
  background: url(../img/recruit/pic_bubble-left.png) no-repeat center/100%;
  aspect-ratio: 48/40;
  position: absolute;
  top: 40px;
  left: -48px;
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item:nth-of-type(3) .c-recruit-interview-list__answer::before {
    width: 24px;
    left: -24px;
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item:nth-of-type(4)::before {
    content: none;
  }
}
.c-recruit-interview-list__item:nth-of-type(4)::after {
  background: url(../img/recruit/pic_interview04.png) no-repeat center/100%;
}
.c-recruit-interview-list__item:nth-of-type(4) .c-recruit-interview-list__answer::after {
  content: "";
  width: 48px;
  background: url(../img/recruit/pic_bubble-right.png) no-repeat center/100%;
  aspect-ratio: 48/40;
  position: absolute;
  top: 40px;
  right: -48px;
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item:nth-of-type(4) .c-recruit-interview-list__answer::after {
    width: 24px;
    right: -24px;
  }
}
.c-recruit-interview-list__item:nth-of-type(5)::before {
  background: url(../img/recruit/pic_interview05.png) no-repeat center/100%;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item:nth-of-type(5)::after {
    content: none;
  }
}
.c-recruit-interview-list__item:nth-of-type(5) .c-recruit-interview-list__answer::before {
  content: "";
  width: 48px;
  background: url(../img/recruit/pic_bubble-left.png) no-repeat center/100%;
  aspect-ratio: 48/40;
  position: absolute;
  top: 40px;
  left: -48px;
}
@media screen and (max-width:1024px) {
  .c-recruit-interview-list__item:nth-of-type(5) .c-recruit-interview-list__answer::before {
    width: 24px;
    left: -24px;
  }
}
.c-recruit-interview-list__item.__wide .c-recruit-interview-list__answer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-recruit-interview-list__item.__wide .c-recruit-interview-list__answer .c-recruit-interview-list__answer__txt {
  margin: 0;
}
.c-recruit-interview-list__item.__wide .c-recruit-interview-list__answer:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item.__wide .c-recruit-interview-list__center {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item.__wide::before {
    content: none;
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item.__wide::after {
    content: none;
  }
}
@media screen and (max-width:768px) {
  .c-recruit-interview-list__item {
    align-items: flex-start;
  }
}
.c-recruit-interview-btn {
  width: min(640px, 90%);
  padding: 40px 45px;
  margin: 0 auto;
  line-height: 1.35;
  transition-delay: unset !important;
}
@media screen and (max-width:768px) {
  .c-recruit-interview-btn {
    padding: 25px 40px;
  }
}
.c-recruit::before {
  content: "";
  width: 299px;
  aspect-ratio: 299/480;
  background: url(../img/common/pic_octopus-left.svg) no-repeat center/100%;
  position: absolute;
  left: 0;
  bottom: 1%;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-recruit::before {
    width: 200px;
  }
}
@media screen and (max-width:768px) {
  .c-recruit::before {
    display: none;
  }
}
.c-recruit::after {
  content: "";
  width: 394px;
  aspect-ratio: 394/480;
  background: url(../img/common/pic_octopus-right.svg) no-repeat center/100%;
  position: absolute;
  right: 0;
  bottom: 5%;
  z-index: -1;
}
@media screen and (max-width:1024px) {
  .c-recruit::after {
    width: 200px;
  }
}
@media screen and (max-width:768px) {
  .c-recruit::after {
    display: none;
  }
}
.c-recruit.is-inview::before {
  animation: move-left 1s backwards;
  animation-delay: 2s;
}
.c-recruit.is-inview::after {
  animation: move-right 1s backwards;
  animation-delay: 2.5s;
}

.c-contact-bottom {
  width: min(960px, 90%);
  margin: 0 auto 120px;
}
.c-contact-bottom-info {
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-info {
    padding-bottom: 40px;
    flex-direction: column;
    gap: 0;
  }
}
.c-contact-bottom-info__txt {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-info__txt {
    font-size: 0.9375rem;
    text-align: center;
  }
}
.c-contact-bottom-contents {
  border-top: 1px solid #D3D3D3;
  border-bottom: 1px solid #D3D3D3;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-contents {
    flex-direction: column;
  }
}
.c-contact-bottom-contents__mail {
  width: calc(50% - 1px);
  padding: 45px 0;
  border-right: 1px solid #D3D3D3;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-contents__mail {
    width: 100%;
    padding: 30px 0;
    border-right: none;
    border-bottom: 1px solid #D3D3D3;
  }
}
.c-contact-bottom-contents__mail .c_btn {
  color: #DE0C0C;
  width: 280px;
  padding: 21px 24px 21px 35px;
  border: 2px solid #800000;
  flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-contents__mail .c_btn {
    width: min(300px, 100%);
    padding: 15px 24px 15px 60px;
    justify-content: center;
  }
}
.c-contact-bottom-contents__mail .c_btn::after {
  width: 28px;
  aspect-ratio: 28/20;
  background: url(../img/common/ico_mail.svg) no-repeat center/100%;
  left: 32px;
  right: unset;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-contents__mail .c_btn::after {
    left: 15%;
  }
}
.c-contact-bottom-contents__mail .c_btn:hover {
  color: #fff;
}
.c-contact-bottom-contents__mail .c_btn:hover::after {
  background: url(../img/common/ico_mail-white01.svg) no-repeat center/100%;
}
.c-contact-bottom-contents__tel {
  width: 50%;
  padding: 45px 0;
}
@media screen and (max-width:768px) {
  .c-contact-bottom-contents__tel {
    width: 100%;
    padding: 30px 0;
  }
}
.c-contact-bottom-contents__tel .tel_link {
  font-size: clamp(2.5rem, 1.892rem + 1.27vw, 3rem);
  text-align: center;
  line-height: 1;
  display: block;
  margin-bottom: 15px;
}
.c-contact-bottom-contents__tel .c-contact-bottom-contents__quote {
  font-weight: 500;
  text-align: center;
}
.c-contact-bottom-contents__ttl {
  font-size: clamp(1.25rem, 0.946rem + 0.63vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.c-error-info {
  flex-wrap: wrap;
  gap: 45px;
}
@media screen and (max-width:768px) {
  .c-error-info {
    gap: 0;
  }
}

.c-error {
  width: min(960px, 90%);
  margin: 0 auto 200px;
}
@media screen and (max-width:768px) {
  .c-error {
    margin: 0 auto 80px;
  }
}
.c-error.no-mv {
  padding-top: 280px;
}
.c-error .c_txt {
  font-size: clamp(1.5rem, 0.285rem + 2.53vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #DE0C0C;
  margin: 0 auto 45px;
}
.c-error__ttl {
  font-size: clamp(1.75rem, 0.839rem + 1.9vw, 2.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: #DE0C0C;
  margin: 0 auto 45px;
}
.c-error__txt {
  line-height: 2;
  text-align: center;
  margin-bottom: 80px;
}

@media print, screen and (min-width:769px) {
  .l-contents._col2_ .l-contents__inner {
    display: grid;
    grid-template-columns: 1fr 240px;
    grid-template-rows: auto;
    gap: 0 40px;
    grid-template-areas: "body side";
  }
}
@media screen and (max-width:768px) {
  .l-contents._col2_ .l-contents__inner {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    gap: 60px 0;
    grid-template-areas: "body" "side";
  }
}
.l-contents._col2_ .l-contents__body {
  grid-area: body;
}
.l-contents._col2_ .l-contents__side {
  grid-area: side;
}
@media print, screen and (min-width:1025px) {
  .l-contents._col3_ .l-contents__inner {
    display: grid;
    grid-template-columns: minmax(200px, 25%) 1fr minmax(200px, 25%);
    grid-template-rows: auto;
    gap: 0 30px;
    grid-template-areas: "left main right";
  }
}
@media screen and (max-width:1024px) {
  .l-contents._col3_ .l-contents__inner {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    gap: 50px 0;
    grid-template-areas: "main" "right" "left";
  }
}
.l-contents._col3_ .l-contents__body {
  grid-area: main;
}
.l-contents._col3_ .l-contents__left {
  grid-area: left;
}
.l-contents._col3_ .l-contents__right {
  grid-area: right;
}

.l-header {
  width: 100%;
  position: absolute;
  z-index: 5;
  transition: all 0.3s;
  /*menu open*/
}
.l-header__inner {
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width:1200px) {
  .l-header__inner {
    padding: 30px 0 0 30px;
  }
}
@media screen and (max-width:768px) {
  .l-header__inner {
    padding: 15px 0 0 15px;
  }
}
.l-header-logo {
  width: 460px;
}
@media screen and (max-width:1200px) {
  .l-header-logo {
    width: 320px;
  }
}
@media screen and (max-width:1024px) {
  .l-header-logo {
    width: 245px;
  }
}
.l-header-nav__list {
  display: none;
}
.l-header-nav__list .l-header-nav__inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width:1400px) {
  .l-header-nav__list .l-header-nav__inner {
    gap: 20px;
  }
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav__link {
  font-size: clamp(0.875rem, 0.669rem + 0.43vw, 1.125rem);
  font-weight: 700;
  color: #404040;
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-contact .l-header-nav__link {
  padding: 14px 38px;
  color: #DE0C0C;
  border: 2px solid #800000;
  border-radius: 50px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-contact .l-header-nav__link::before {
  content: "";
  width: 28px;
  aspect-ratio: 28/20;
  background: url(../img/common/ico_mail.svg) no-repeat center/100%;
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-policy {
  display: none;
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-btn {
  display: none;
  cursor: pointer;
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-sub {
  display: none;
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-sub__link {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #DB4949;
}
.l-header-nav__toggle {
  width: 64px;
  aspect-ratio: 1;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  cursor: pointer;
}
@media screen and (max-width:768px) {
  .l-header-nav__toggle {
    display: block;
  }
}
.l-header-nav__toggle .__sub {
  width: 32px;
  height: 2px;
  background: #DE0C0C;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s;
}
.l-header-nav__toggle .__sub:first-of-type {
  top: 15px;
}
.l-header-nav__toggle .__sub:nth-of-type(2) {
  top: 23px;
}
.l-header-nav__toggle .__sub:last-of-type {
  top: 31px;
}
.l-header-nav__toggle::after {
  content: "Menu";
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.65px;
  text-align: center;
  position: absolute;
  top: 37px;
  right: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s;
}
.l-header-nav__toggle.is-close .__sub:first-of-type {
  transform: rotate(45deg);
  top: 21px;
}
.l-header-nav__toggle.is-close .__sub:nth-of-type(2) {
  opacity: 0;
}
.l-header-nav__toggle.is-close .__sub:last-of-type {
  transform: rotate(-45deg);
  top: 21px;
}
.l-header-nav__toggle.is-close::after {
  content: "Close";
}
.l-header.header_fix, .l-header.is-page {
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
}
.l-header.header_fix .l-header__inner, .l-header.is-page .l-header__inner {
  padding: 10px 40px;
}
@media screen and (max-width:1400px) {
  .l-header.header_fix .l-header__inner, .l-header.is-page .l-header__inner {
    padding: 8px 16px;
  }
}
@media screen and (max-width:1200px) {
  .l-header.header_fix .l-header__inner, .l-header.is-page .l-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.l-header.header_fix .l-header-logo, .l-header.is-page .l-header-logo {
  width: 245px;
}
@media screen and (max-width:768px) {
  .l-header.header_fix .l-header-logo, .l-header.is-page .l-header-logo {
    width: 200px;
  }
}
@media screen and (max-width:1200px) {
  .l-header.header_fix .l-header-nav, .l-header.is-page .l-header-nav {
    margin-left: auto;
  }
}
.l-header.header_fix .l-header-nav__list, .l-header.is-page .l-header-nav__list {
  display: block;
}
@media screen and (max-width:768px) {
  .l-header.header_fix .l-header-nav__list, .l-header.is-page .l-header-nav__list {
    display: none;
  }
}
@media screen and (max-width:1024px) {
  .l-header.header_fix .l-header-nav__list .l-header-nav__inner, .l-header.is-page .l-header-nav__list .l-header-nav__inner {
    gap: 13px;
  }
}
@media screen and (max-width:1400px) {
  .l-header.header_fix .l-header-nav__list .l-header-nav__item .l-header-nav__link, .l-header.is-page .l-header-nav__list .l-header-nav__item .l-header-nav__link {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width:1024px) {
  .l-header.header_fix .l-header-nav__list .l-header-nav__item .l-header-nav__link, .l-header.is-page .l-header-nav__list .l-header-nav__item .l-header-nav__link {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width:1024px) {
  .l-header.header_fix .l-header-nav__list .l-header-nav__item.h-contact .l-header-nav__link, .l-header.is-page .l-header-nav__list .l-header-nav__item.h-contact .l-header-nav__link {
    padding: 10px 15px;
    gap: 5px;
  }
}
@media screen and (max-width:1024px) {
  .l-header.header_fix .l-header-nav__list .l-header-nav__item.h-contact .l-header-nav__link::before, .l-header.is-page .l-header-nav__list .l-header-nav__item.h-contact .l-header-nav__link::before {
    width: 22px;
  }
}
.l-header-nav.is-open .l-header-nav__list {
  display: block;
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  width: 95%;
  margin: 20px auto 0;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner {
  flex-direction: column;
  align-items: flex-start;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item {
  width: 100%;
  position: relative;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav__link {
  font-size: 1rem;
  font-weight: 700;
  padding: 30px 0 15px;
  border-bottom: 2px solid #D3D3D3;
  display: flex;
  align-items: center;
  gap: 4px;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav__link::before {
  content: "";
  width: 17px;
  aspect-ratio: 17/11;
  background: url(../img/common/ico_arrow-black.svg) no-repeat center/100%;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-contact .l-header-nav__link {
  border: none;
  border-bottom: 2px solid #D3D3D3;
  border-radius: 0;
  color: #404040;
  justify-content: flex-start;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-policy {
  text-align: center;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: inline-block;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-policy .l-header-nav__link {
  border: none;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-policy .l-header-nav__link::before {
  content: none;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-btn {
  width: 32px;
  aspect-ratio: 1;
  background: #DB4949;
  border-radius: 50px;
  display: block;
  position: absolute;
  right: 8px;
  top: 25px;
  margin: auto;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-btn::before {
  content: "";
  background: #fff;
  width: 12px;
  height: 2px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-btn::after {
  content: "";
  background: #fff;
  width: 2px;
  height: 12px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-btn.__move::after {
  transform: rotate(90deg);
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-sub {
  padding: 15px 0 0;
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav-sub.submenu-open {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.is-hidden .l-header {
  height: 100%;
  overflow-y: scroll;
}

.l-footer {
  background: #444CAA;
  padding: 0 0 60px;
  margin: 25% 0 0;
  position: relative;
}
@media screen and (max-width:415px) {
  .l-footer {
    margin: 60% 0 0;
  }
}
.l-footer::before {
  content: "";
  width: 100%;
  aspect-ratio: 1920/390;
  background: url(../img/common/bg_wave.png) no-repeat center/100%;
  position: absolute;
  bottom: 100%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width:415px) {
  .l-footer::before {
    aspect-ratio: 750/390;
    background: url(../img/common/bg_wave-sp.png) no-repeat center/100%;
  }
}
.l-footer-top {
  width: min(1280px, 90%);
  margin: 0 auto 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .l-footer-top {
    margin: 0 auto 40px;
    flex-direction: column;
  }
}
.l-footer-top-info {
  width: 260px;
  flex-shrink: 0;
  gap: 50px;
}
@media screen and (max-width:768px) {
  .l-footer-top-info {
    width: 100%;
  }
}
.l-footer-top-info__logo {
  width: 245px;
  margin-bottom: 20px;
  display: block;
}
.l-footer-top-info__ttl {
  font-size: clamp(0.875rem, 0.799rem + 0.16vw, 0.938rem);
  color: #fff;
  margin-bottom: 20px;
}
.l-footer-top-info__address {
  font-size: 0.9375rem;
  line-height: 2;
  color: #fff;
}
.l-footer-top-info__address .__tel {
  color: #fff;
}
.l-footer-top-nav__inner {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width:1400px) {
  .l-footer-top-nav__inner {
    flex-wrap: wrap;
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 40px;
  }
}
@media screen and (max-width:768px) {
  .l-footer-top-nav__inner {
    row-gap: 0;
  }
}
.l-footer-top-nav__list {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width:1400px) {
  .l-footer-top-nav__list {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width:1024px) {
  .l-footer-top-nav__list {
    width: 60%;
    margin-left: auto;
  }
}
@media screen and (max-width:768px) {
  .l-footer-top-nav__list {
    width: 100%;
  }
}
@media screen and (max-width:768px) {
  .l-footer-top-nav__list__inner {
    position: relative;
  }
}
.l-footer-top-nav__list .l-footer-top-nav__item {
  font-weight: 600;
  color: #fff;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.3s;
}
@media screen and (max-width:768px) {
  .l-footer-top-nav__list .l-footer-top-nav__item {
    border-bottom: 2px solid #D3D3D3;
    padding: 0 0 15px;
    margin-bottom: 30px;
  }
}
.l-footer-top-nav__list .l-footer-top-nav__item::before {
  content: "";
  width: 17px;
  aspect-ratio: 17/11;
  background: url(../img/common/ico_arrow.svg) no-repeat center/100%;
}
.l-footer-top-nav__list .l-footer-top-nav__item.__has-child {
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .l-footer-top-nav__list .l-footer-top-nav__item.__has-child {
    margin-bottom: 30px;
  }
}
.l-footer-top-nav__list .l-footer-top-nav__item:hover {
  opacity: 0.5;
}
.l-footer-top-nav__list .l-footer-top-nav__btn {
  display: none;
  width: 32px;
  aspect-ratio: 1;
  border-radius: 30px;
  background: #8FD4D7;
  position: absolute;
  top: -10px;
  right: 8px;
  cursor: pointer;
}
@media screen and (max-width:768px) {
  .l-footer-top-nav__list .l-footer-top-nav__btn {
    display: block;
  }
}
.l-footer-top-nav__list .l-footer-top-nav__btn::before {
  content: "";
  width: 12px;
  height: 2px;
  background: #444CAA;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.l-footer-top-nav__list .l-footer-top-nav__btn::after {
  content: "";
  width: 2px;
  height: 12px;
  background: #444CAA;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  transition: all 0.4s;
}
.l-footer-top-nav__list .l-footer-top-nav__btn.__move::after {
  transform: rotate(90deg);
}
.l-footer-top-nav__list .l-footer-top-nav__sub {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .l-footer-top-nav__list .l-footer-top-nav__sub {
    display: none;
  }
}
.l-footer-top-nav__list .l-footer-top-nav__sub__item {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #D8FDFF;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20px;
}
.l-footer-top-nav__list .l-footer-top-nav__sub.__has-next {
  margin-bottom: 45px;
}
@media screen and (max-width:768px) {
  .l-footer-top-nav__list .l-footer-top-nav__sub.submenu-open {
    margin-bottom: 30px;
    display: flex;
  }
}
.l-footer-bottom {
  width: min(1280px, 90%);
  height: 140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-footer-bottom {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
}
.l-footer-bottom__policy {
  font-weight: 700;
  text-decoration: underline;
  color: #fff;
}
@media screen and (max-width:768px) {
  .l-footer-bottom__policy {
    margin-bottom: 50px;
  }
}
.l-footer-bottom__copyright {
  font-size: clamp(0.813rem, 0.737rem + 0.16vw, 0.875rem);
  color: #fff;
}
@media screen and (max-width:768px) {
  .l-footer-bottom__copyright {
    text-align: center;
    line-height: 2;
    margin-bottom: 40px;
  }
}
.l-footer-bottom__return {
  width: 138px;
  aspect-ratio: 138/96;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width:1400px) {
  .l-footer-bottom__return {
    bottom: 25%;
  }
}
@media screen and (max-width:768px) {
  .l-footer-bottom__return {
    position: unset;
  }
}
.l-footer-bottom__return::before {
  content: "";
  width: 130px;
  aspect-ratio: 130/24;
  background: url(../img/common/pagetop-before.svg) no-repeat center/100%;
}
.l-footer-bottom__return:hover::before {
  animation: vibration-up 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.l-footer-bottom__return:hover .__img {
  animation: vibration 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@media screen and (max-width:415px) {
  .u-xs-min {
    display: none !important;
  }
}

@media print, screen and (min-width:416px) {
  .u-xs-max {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  .u-sm-min {
    display: none !important;
  }
}

@media print, screen and (min-width:769px) {
  .u-sm-max {
    display: none !important;
  }
}

@media screen and (max-width:1024px) {
  .u-md-min {
    display: none !important;
  }
}

@media print, screen and (min-width:1025px) {
  .u-md-max {
    display: none !important;
  }
}

@media screen and (max-width:1200px) {
  .u-lg-min {
    display: none !important;
  }
}

@media print, screen and (min-width:1201px) {
  .u-lg-max {
    display: none !important;
  }
}/*# sourceMappingURL=common.css.map */