/* reset
----------------------------------------------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

button:focus {
  outline: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
}

input[type=email],
input[type=text],
input[type=search],
input[type=submit],
input[type=reset] {
  border-radius: 0;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
  outline: none;
}

input[type=submit],
input[type=reset] {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

:root {
  scroll-padding: 180px;
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic","ヒラギノ角ゴシック","Hiragino Sans", serif;
  font-weight: 400;
  font-size: 16px;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background: linear-gradient(118deg, rgb(0, 15, 85) 0%, rgb(88, 109, 205) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s linear;
}

.loading.loaded {
  opacity: 0;
  visibility: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  font-weight: 500;
  transition: 0.5s;
}
header .header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  header .header__inner {
    padding-top: 20px;
  }
}
header .header__inner .header__navi {
  display: flex;
  font-size: max(0.833vw, 14px);
  box-shadow: 0px 0px 8px rgba(30, 30, 30, 0.13);
}
header .header__inner .header__navi .globalmenu {
  display: flex;
  gap: 30px;
  padding: 20px 40px 20px 40px;
  border-radius: 5px 0px 0px 5px;
  background: linear-gradient(90deg, rgb(196, 33, 33) 0%, rgb(204, 71, 16) 100%);
}
@media screen and (max-width: 1200px) {
  header .header__inner .header__navi .globalmenu {
    gap: 2.5vw;
    padding: 1.667vw 3.333vw 1.667vw 3.333vw;
  }
}
@media screen and (max-width: 767px) {
  header .header__inner .header__navi .globalmenu {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }
}
header .header__inner .header__navi .globalmenu li {
  position: relative;
  text-align: center;
}
header .header__inner .header__navi .globalmenu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  transition: 0.3s;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  header .header__inner .header__navi .globalmenu li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  header .header__inner .header__navi .globalmenu li a {
    font-size: 12px;
    gap: 10px;
  }
}
header .header__inner .header__navi .globalmenu li a:hover {
  opacity: 0.5;
}
header .header__inner .header__navi .globalmenu li a span {
  font-size: 10px;
  line-height: 2;
}
header .header__inner .header__navi .globalmenu li .border {
  position: absolute;
  width: 1px;
  background: #fff;
  height: 100%;
}
header .header__inner .header__navi .globalmenu li span {
  width: 35px;
}
@media screen and (max-width: 767px) {
  header .header__inner .header__navi .globalmenu li span {
    width: 22px;
  }
}
header .header__inner .header__navi .globalmenu .strong {
  border-bottom: 1px solid #0068b3;
}
header .header__btns {
  background: #ef9c00;
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  header .header__btns {
    display: none;
  }
}
header .header__btns::after {
  position: absolute;
  content: "";
  top: 40%;
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  header .header__btns::after {
    top: 39%;
    right: 19px;
  }
}
header .header__btns nav {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 450px;
  background: #ef9c00;
  padding: 20px;
}
header .header__btns nav ul li {
  margin-bottom: 0px;
}
header .header__btns nav ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #fff;
}
header .header__btns nav ul li a {
  color: #fff;
}
header .header__btns nav ul li a::after {
  position: absolute;
  content: "";
  right: 25px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  header .header__btns nav ul li a::after {
    top: 39%;
    right: 19px;
  }
}
header .header__btns .header__btn__text {
  position: relative;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 60px;
  line-height: 1.4;
  color: #fff;
}
header .header__btns .header__btn__text::before {
  position: absolute;
  right: 20px;
}

.header__logo {
  position: absolute;
  width: 308px;
  padding-top: 50px;
  margin-left: 40px;
  z-index: 101;
  opacity: 1;
  transition: 0.3s;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    padding-top: 4.167vw;
    margin-left: 3.333vw;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 39.844vw;
    padding-top: 6.51vw;
    margin-left: 5.208vw;
  }
}
.header__logo a {
  display: flex;
}
.header-logo.-before {
  position: absolute;
  opacity: 1;
  transition: 2s;
}

.header-logo.headerLogoScroll.-before {
  transition: 2s;
  opacity: 0;
}

.header-logo.-after {
  position: absolute;
  opacity: 0;
  transition: 2s;
}

.header-logo.headerLogoScroll.-after {
  opacity: 1;
  transition: 2s;
}

.header__btn__inner {
  position: fixed;
  display: flex;
  bottom: 30px;
  right: 0;
  padding: 25px 25px 25px 25px;
  border-radius: 5px 0 0 5px;
  background: #fff;
  z-index: 60;
  transition: opacity 0.5s;
  box-shadow: 0px 0px 8px rgba(30, 30, 30, 0.13);
}
@media screen and (max-width: 1200px) {
  .header__btn__inner {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__btn__inner {
    flex-direction: column;
    top: auto;
    bottom: 20px;
    padding: 12px;
  }
}
.header__btn__inner .header__image {
  width: 87.3px;
  height: 100%;
  margin-right: 20px;
  border: 1px solid #e3e3e3;
}
@media screen and (max-width: 1200px) {
  .header__btn__inner .header__image {
    width: 78.8px;
  }
}
@media screen and (max-width: 767px) {
  .header__btn__inner .header__image {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.header__btn__inner .header__image img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .header__btn__inner .header__image img {
    width: 100%;
  }
}
.header__btn__inner .header__btn {
  background: linear-gradient(128deg, rgb(0, 15, 85) 45%, rgb(65, 220, 255) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 1200px) {
  .header__btn__inner .header__btn {
    font-size: 16px;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .header__btn__inner .header__btn {
    font-size: 10px;
    gap: 1.953vw;
  }
}
.header__btn__inner .header__btn .btn {
  width: 100%;
}
.header__btn__inner .header__btn .btn a {
  position: relative;
  z-index: 0;
  background: transparent;
  padding: 8px 35px 8px 35px;
  text-align: center;
  text-decoration: none;
  display: flex;
  justify-content: center;
  cursor: pointer;
  border-radius: 30px;
  transition: 0.2s;
}
@media screen and (max-width: 1200px) {
  .header__btn__inner .header__btn .btn a {
    padding: 0.667vw 2.917vw 0.667vw 2.917vw;
  }
}
@media screen and (max-width: 767px) {
  .header__btn__inner .header__btn .btn a {
    padding: 1.042vw 4.557vw 1.042vw 4.557vw;
  }
}
.header__btn__inner .header__btn .btn a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  transition: all 0.3s; /* アニメーション実行時間 */
  z-index: -1;
  background: linear-gradient(128deg, rgb(0, 15, 85) 45%, rgb(65, 220, 255) 100%);
}
.header__btn__inner .header__btn .btn a:hover::before {
  opacity: 0;
}
.header__btn__inner .header__btn .btn a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  z-index: -2;
  background: rgb(65, 220, 255);
}
.header__btn__inner .header__btn .btn a img {
  display: flex;
  width: 15px;
}

.header__btn__inner.js_close {
  display: none;
}

.header_btn_close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 12px;
  top: 12px;
  cursor: pointer;
  border: 1px solid #000f55;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .header_btn_close {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
    border: 1px solid #000f55;
    border-radius: 30px;
  }
}

.header__hum {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  aspect-ratio: 1/1;
  transition: gap 0.2s;
  cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
  .header__hum:hover {
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .header__hum {
    display: flex;
  }
}
.header__hum span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: all 0.2s;
  transform-origin: center center;
}

@media (min-width: 560px) {
  .header__hum span {
    width: 60%;
  }
}
.header__hum.is-open {
  gap: 0;
}

.header__hum.is-open span:nth-child(1) {
  transform: rotate(30deg) translateY(1px);
}

.header__hum.is-open span:nth-child(2) {
  transform: scale(0);
}

.header__hum.is-open span:nth-child(3) {
  transform: rotate(-30deg) translateY(-1px);
}

.overlayNavi {
  position: fixed;
  margin-top: var(--headerHeight);
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.4s;
}

@media (max-width: 767px) {
  .overlayNavi.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}
.overlayNavi__title {
  display: inline-block;
  font-family: var(--ff-en);
  font-size: 14px;
  font-weight: 700;
}

.overlayNavi__menu {
  margin-bottom: 40px;
  width: 80%;
}

@media (max-width: 560px) {
  .overlayNavi__menu {
    margin-bottom: 20px;
  }
}
.overlayNavi__menu .globalmenu {
  display: flex;
  flex-direction: column;
}

.overlayNavi__menu .globalmenu li {
  border-bottom: 1px solid #ddd;
}

.overlayNavi__menu .globalmenu li a {
  padding: 10px 0;
  display: block;
  font-weight: 600;
  color: #0068b3;
  line-height: 1.5;
  font-size: 18px;
}

.overlayNavi__menu .globalmenu li a span {
  padding: 0;
  display: block;
  font-weight: 600;
  font-size: 10px;
  text-align: left;
}

.overlayNavi__data {
  width: 80%;
  overflow: hidden;
}

.overlayNavi__title {
  margin-bottom: 20px;
}

.overlayNavi__data .dataBlock ul li {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px;
}
.overlayNavi__data .dataBlock ul li:not(:last-child) {
  margin-bottom: 10px;
  border-bottom: 1px solid #ffe2ab;
  padding-bottom: 10px;
}
.overlayNavi__data .dataBlock ul li a {
  line-height: 1.25;
  color: #ef9c00;
}

.overlayNavi__data .dataBlock__text {
  color: var(--cl-black);
}

.cn-footer {
  font-family: メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "HIragino Kaku Gothic Pro W3", "HIragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
}
.cn-footer__inner {
  padding: 40px 0;
}
.cn-footer__logo {
  margin: 0 auto 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 560px) {
  .cn-footer__logo {
    margin-bottom: 20px;
    max-width: 150px;
  }
}
@media (max-width: 560px) {
  .cn-footer__nav {
    display: flex;
    justify-content: center;
  }
}
.cn-footer__navList {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  color: #0068b3;
}
@media (max-width: 560px) {
  .cn-footer__navList {
    flex-direction: column;
    justify-content: flex-start;
    gap: 10px;
  }
}
.cn-footer__navItem::before {
  margin-right: 10px;
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  background: url(/cp/lp/foodfactory/img/footer_arrow@2x.png) no-repeat center center/contain;
}
.cn-footer__navItem a {
  color: #0068b3;
  text-decoration: underline;
}
.cn-footer__navItem a:hover {
  color: red;
}

.cn-copyright {
  padding: 15px;
  font-size: 14px;
  font-weight: bold;
  border-top: 1px solid #ccc;
  text-align: center;
  letter-spacing: normal;
}

.cn-container {
  margin: 0 auto;
  padding: 0 40px;
  max-width: 1100px;
  position: relative;
}

.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.s-sp {
  display: none !important;
}
@media screen and (max-width: 450px) {
  .s-sp {
    display: block !important;
  }
}

.fadeIn-down {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll-in {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.fadein-01 {
  opacity: 0;
  animation-name: fadein-01;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-01 {
  0% {
    opacity: 0;
    transform: translate(-300px, 520px);
    animation-duration: 1s;
  }
  100% {
    opacity: 1;
    transform: translate(0px);
  }
}
.fadein-02 {
  opacity: 0;
  animation-name: fadein-02;
  animation-duration: 1.75s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-02 {
  0% {
    opacity: 0;
    transform: translate(-300px, 520px);
    animation-duration: 1.75s;
  }
  100% {
    opacity: 1;
    transform: translate(0px);
  }
}
.fadein-03 {
  opacity: 0;
  animation-name: fadein-03;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-03 {
  0% {
    opacity: 0;
    transform: translate(-300px, 520px);
    animation-duration: 2s;
  }
  100% {
    opacity: 1;
    transform: translate(0px);
  }
}
.fadein-img {
  opacity: 0;
  animation-name: fadein-img;
  animation-duration: 1s;
  animation-delay: 1.75s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-img {
  0% {
    opacity: 0;
    transform: translateY(30px);
    animation-duration: 1s;
    animation-delay: 1.75s;
  }
  100% {
    opacity: 1;
    transform: translate(0px);
  }
}
.fadein-title {
  opacity: 0;
  animation-name: fadein-title;
  animation-duration: 1s;
  animation-delay: 0.75s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-title {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    animation-duration: 1s;
    animation-delay: 0.75s;
  }
  100% {
    opacity: 1;
    transform: translate(0px);
  }
}
.fadein-hd {
  opacity: 0;
  animation-name: fadein-hd;
  animation-duration: 1s;
  animation-delay: 2.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadein-hd {
  0% {
    opacity: 0;
    animation-duration: 1s;
    animation-delay: 2.5s;
  }
  100% {
    opacity: 1;
  }
}/*# sourceMappingURL=common.css.map */