@charset "UTF-8";
/* CSS Document */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul {
  list-style-type: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 0px;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  image-rendering: -webkit-optimize-contrast;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  font-size: 62.5%;
}

body {
  letter-spacing: 0.1em;
  overflow-x: hidden;
  font-family: "Public Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 600;
}

/* ファーストビュー */
@keyframes grow-progress {
  from {
    scale: 1 0;
  }
  to {
    scale: 1 1;
  }
}
.animationElement {
  /* スタイリング */
  position: fixed;
  width: 100px;
  height: 100px;
  background: royalblue;
  transform-origin: bottom;
  /* 下部を変形の基準にしておく */
  /* スクロールアニメーションの設定 */
  animation: reveal-image linear both;
  animation-timeline: view();
  animation-range: contain 0% contain 50%;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 992px) {
  .grid-container {
    grid-template-columns: 1fr 500px 1fr;
  }
}
.grid-container .main {
  background-color: #ffffff;
  overflow: hidden;
}
.grid-container .side {
  display: none;
}
@media (min-width: 992px) {
  .grid-container .side {
    display: block;
  }
}
.grid-container .left .side__left__logo {
  display: flex;
  justify-content: center;
  position: sticky;
  padding-top: 50%;
  top: 0;
}
.grid-container .left .side__left__logo img {
  width: 150px;
}
.grid-container .right {
  display: none;
}
@media (min-width: 992px) {
  .grid-container .right {
    display: flex;
    justify-content: center;
    position: sticky;
    padding-top: 30%;
    top: 0;
    height: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.grid-container .side__right__wp {
  transform: translateY(-50%);
}

/* PC背景
-------------------------------------------------------------- */
.hero {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/topimg01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -10;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero__logo {
  width: 200px;
  max-width: 60vw;
}

.top__img__pc {
  display: none;
  position: relative;
  width: 100vw;
  overflow: hidden;
}
@media (min-width: 992px) {
  .top__img__pc {
    display: block;
  }
}

.top__img {
  width: 100%;
  height: 100%;
}

.top__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top__img__logo {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 2;
}
.top__img__logo img {
  width: 12%;
}

.hero__logo {
  width: 250px;
  max-width: 60%;
  height: auto;
}

/* movie
-------------------------------------------------------------- */
.square-video {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.square-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-top: 1px solid #003126;
  border-bottom: 1px solid #003126;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* drawer
-------------------------------------------------------------- */
.nav_wp {
  position: fixed;
  z-index: 999;
}
@media (min-width: 992px) {
  .nav_wp {
    display: none;
  }
}

.menu {
  width: 40px;
  height: 40px;
  position: fixed;
  right: 1.5rem;
  top: 1.5rem;
  z-index: 999;
}

.menu_text {
  display: none;
}

.drawer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6rem;
}
.drawer__logo img {
  text-align: center;
  width: 150px;
}

.drawer_01 {
  z-index: 800;
  position: fixed;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
  width: 100%;
  height: 100vh;
  margin-right: -500px;
}
.drawer_01 a {
  text-decoration: none;
}
.drawer_01 .menu {
  display: flex;
  justify-content: space-between;
}
.drawer_01 .menu a {
  padding: 5px;
  height: 35px;
}
.drawer_01 .submenu {
  opacity: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all 0.5s ease;
  padding: 1.5rem;
  height: 100vh;
  background-color: #ffffff;
}
.drawer_01 .submenu .submenu-container {
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1.5rem 0px;
  font-size: 1.5rem;
  margin-top: 50px;
  margin-bottom: 50px;
  line-height: 2;
}
.drawer_01 .submenu .submenu-container .sns a {
  color: #003126;
}
.drawer_01 .submenu .submenu-container .global__nav__pc {
  font-size: 1.5rem;
  font-weight: 600;
}
.drawer_01 .submenu .submenu-container .global__nav__pc a {
  color: #003126;
}
.drawer_01 .submenu.open {
  transition: all 0.1s ease;
  opacity: 1;
  min-height: 500px;
  margin-right: 0px;
}
@media (min-width: 768px) {
  .drawer_01 {
    width: 500px;
  }
}

.drawer_01.dark {
  margin-right: 0px;
}

.menu-icon-box {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.menu-icon {
  height: 2px;
  width: 25px;
  background-color: #ffffff;
  position: relative;
  transition: all 0.3s ease;
  transform-origin: top center;
  transform-style: preserve-3d;
}

.menu-icon-box.open .menu-icon:first-child {
  position: absolute;
  transform: rotate(45deg);
  background-color: #9dacad;
}
.menu-icon-box.open .menu-icon:nth-child(2) {
  display: none;
}
.menu-icon-box.open .menu-icon:last-child {
  transform: rotate(-45deg);
  background-color: #9dacad;
}

.overlay.overlaydark {
  transition: all 0.8s ease;
  background-color: #000000;
  opacity: 0.8;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 4;
}
@media (min-width: 992px) {
  .overlay.overlaydark {
    display: none;
  }
}

.drawer__company__menu {
  font-size: 1.3rem;
  margin-top: 6rem;
}

.drawer__small {
  font-size: 1.1rem;
}

.global__nav__pc {
  font-size: clamp(1.6rem, 0.769rem + 1.442vw, 2.5rem);
}
.global__nav__pc li {
  margin: 2rem 0;
}
.global__nav__pc li a {
  color: #211815;
  text-decoration: none;
  transition: all 0.3s ease;
}
.global__nav__pc li a:hover {
  color: #211815;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.global__nav {
  font-size: clamp(1.6rem, 0.769rem + 1.442vw, 2.5rem);
}
.global__nav li {
  margin: 3rem 0;
}
.global__nav li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.global__nav li a:hover {
  color: #211815;
  opacity: 0.6;
  transition: all 0.3s ease;
}

/* animation
-------------------------------------------------------------- */
.ef-fade01 {
  opacity: 0;
  transform: translate(0, 25px);
  transition: 1.5s;
  transition-delay: 0.5s;
  animation-duration: 2s;
}

.fade01 {
  transform: translate(0, 0);
  opacity: 1;
}

/* youtube
-------------------------------------------------------------- */
.youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* slick-
-------------------------------------------------------------- */
.slider__wp {
  width: 100%;
  overflow: hidden;
}

.slider img {
  width: 100%;
  height: auto;
  display: block;
}

.slick_wp {
  margin: 1.5rem 0;
}

.slick-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

img.slick-arrow {
  width: 30px;
}

.slick-slide:focus {
  outline: none;
}

.prev-arrow {
  left: 0;
  z-index: 2;
}
@media (min-width: 992px) {
  .prev-arrow {
    left: 15px;
  }
}

.next-arrow {
  right: 0;
  z-index: 2;
}
@media (min-width: 992px) {
  .next-arrow {
    right: 15px;
  }
}

.thumbnail3 {
  width: 80%;
  margin: 0 auto;
}

.thumbnail-img {
  width: 90% !important;
}

.slick-prev::before {
  content: none;
}

.slick-next::before {
  content: none;
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
}

.slide_w a:hover img {
  opacity: 1;
}

/* swiper
-------------------------------------------------------------- */
.swiper--wrapper {
  /* wrapperのサイズを調整 */
  width: 100%;
  height: 300px;
}

.swiper-slide {
  /* スライドのサイズを調整、中身のテキスト配置調整、背景色 */
  border-top: 1px solid #003126;
  border-bottom: 1px solid #003126;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
  text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}

/* background
-------------------------------------------------------------- */
.bg_01 {
  background-image: url(../img/pro_bg_img01.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
  width: 100vw;
  height: auto;
  min-height: 480px;
}

.bg01 {
  background-color: #c6c5bd;
}

.bg-mask {
  height: 100%;
  min-height: 480px;
  background: rgba(0, 0, 0, 0);
}
@media (min-width: 992px) {
  .bg-mask {
    min-height: 1000px;
  }
}

.bg_col_01 {
  padding: 3rem;
  background-color: #9dacad;
}

.bg_col_02 {
  padding: 3rem;
  background-color: #003126;
}

/* btn
-------------------------------------------------------------- */
.btn-wrap {
  text-align: center;
  margin: 3rem 0;
  width: 100%;
}

.btn-wrap02 {
  text-align: center;
  margin: 0;
  width: 100%;
}

.btn01 {
  width: 80%;
  display: inline-block;
  padding: 1rem 3rem;
  border: 0;
  background-color: #003126;
  border-radius: 0;
  text-decoration: none;
  font-size: 1.8rem;
}

a.btn01 {
  color: #ffffff;
  transition: all 0.3s ease;
}

a.btn01:hover {
  color: #ffffff;
  border: 0;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.btn02 {
  width: 80%;
  display: inline-block;
  padding: 1rem 3rem;
  border: 1px solid #003126;
  background-color: #ffffff;
  border-radius: 0;
  text-decoration: none;
  font-size: 1.8rem;
}

a.btn02 {
  color: #003126;
  transition: all 0.3s ease;
}

a.btn02:hover {
  color: #003126;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.btn03 {
  width: 260px;
  display: inline-block;
  padding: 1.5rem 2rem;
  border: 0;
  background-color: #006dcd;
  border-radius: 0;
  text-decoration: none;
  font-size: 1.8rem;
}

a.btn03 {
  color: #003126;
  transition: all 0.3s ease;
}

a.btn03:hover {
  color: #003126;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.cart__btn__sp {
  z-index: 3;
  position: fixed;
  bottom: 0;
  right: 0;
}
@media (min-width: 992px) {
  .cart__btn__sp {
    display: none;
  }
}

/* section
-------------------------------------------------------------- */
.container__inner {
  padding: 0;
}

.section02 {
  padding: 6rem 0;
}
@media (min-width: 992px) {
  .section02 {
    padding: 10rem 0;
  }
}

.section03 {
  padding: 5rem 0;
}

.mg01 {
  margin-top: 5rem;
}

.mg_img01 {
  margin: 3rem 0;
}

.mg_img02 {
  width: 200px;
  margin: 0 auto;
  margin-bottom: 3rem;
}

hr.hr01 {
  border-top: 1px solid #333333;
  width: 30%;
  margin: 6rem auto;
  height: 1px;
}

/* img
-------------------------------------------------------------- */
.img_i01 {
  width: 80%;
  margin: 5% auto 0 0;
  z-index: 1;
  position: relative;
}
@media (min-width: 992px) {
  .img_i01 {
    width: 60%;
    margin: 5% auto 0 10%;
  }
}

.img_i02 {
  margin: 5% 0 0 20%;
}
@media (min-width: 992px) {
  .img_i02 {
    width: 50%;
    margin: 5% 10% 10% auto;
  }
}

.img_i03 {
  margin: 15% 0 0 20%;
  z-index: 1;
  position: relative;
}
@media (min-width: 992px) {
  .img_i03 {
    width: 65%;
    margin: 0 0 auto auto;
  }
}

.img_i04 {
  width: 80%;
  margin: 5% auto 0 0;
}
@media (min-width: 992px) {
  .img_i04 {
    width: 30%;
    margin: -40% auto 30% 0;
  }
}

/* font
-------------------------------------------------------------- */
.pc__footer {
  display: none;
  width: 320px;
  position: fixed;
  bottom: 3rem;
  right: 3rem;
}
@media (min-width: 992px) {
  .pc__footer {
    display: block;
  }
}
.pc__footer .sns {
  display: flex;
  justify-content: end;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.pc__footer .sns a {
  color: #ffffff;
}
.pc__footer .small {
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  justify-content: end;
  margin-top: 3rem;
  line-height: 0;
}

.pc__footer__wp {
  bottom: 20px;
}

.pc__footer__menu {
  display: flex;
  justify-content: end;
  gap: 15px;
}

.pc__footer__menu a {
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: nowrap;
}

.sp__footer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 992px) {
  .sp__footer {
    display: none;
  }
}

.small {
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-weight: normal;
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  line-height: 0;
}

.copyright__mark {
  font-size: 1.6rem;
  line-height: 0;
  margin-right: 0.2rem;
}

.sp__footer__wp {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.sp__footer__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sp__footer__menu {
  display: flex;
  gap: 20px;
}

.sp__footer__menu a {
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  white-space: nowrap;
}

.sns {
  display: flex;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}
.sns a {
  color: #ffffff;
}

.container p {
  color: #211815;
  font-size: 1.3rem;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .container p {
    font-size: 1.4rem;
  }
}

.container a {
  color: #211815;
}

.text_title01 {
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  margin: 3rem 0;
}
@media (min-width: 992px) {
  .text_title01 {
    font-size: 1.8rem;
  }
}

.text_title_read {
  font-size: 1.4rem;
  text-align: center;
  margin: 3rem 0;
}
@media (min-width: 992px) {
  .text_title_read {
    font-size: 1.5rem;
  }
}

.text_title02 {
  margin-top: 15rem;
  font-size: 1.4rem;
  text-align: center;
}
@media (min-width: 992px) {
  .text_title02 {
    font-size: 1.4rem;
  }
}

.text_title04 {
  font-size: 1.5rem;
  text-align: center;
  margin: 3rem 0;
}
@media (min-width: 992px) {
  .text_title04 {
    font-size: 1.8rem;
  }
}

.text_read06 {
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2.5;
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 992px) {
  .text_read06 {
    font-size: 1.7rem;
  }
}

.text_read08 {
  font-family: "Zen Old Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 2.5;
  font-size: 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  .text_read08 {
    font-size: 1.5rem;
  }
}

.text_title06 {
  font-size: 1.3rem;
  margin: 1rem 0;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .text_title06 {
    font-size: 1.6rem;
  }
}

.text_pro_title01 {
  font-size: 1.6rem;
  margin: 6rem 0;
  text-align: center;
  text-decoration: underline;
}
@media (min-width: 992px) {
  .text_pro_title01 {
    font-size: 2rem;
  }
}

.text_pro_title02 {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 992px) {
  .text_pro_title02 {
    font-size: 1.4rem;
  }
}

.text_comm {
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .text_comm {
    font-size: 1.8rem;
  }
}

.recipi_01 {
  font-size: 1.3rem;
}
.recipi_01 li {
  text-indent: -1em;
  padding-left: 1em;
}
@media (min-width: 992px) {
  .recipi_01 {
    font-size: 1.4rem;
  }
}

.text_plice {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .text_plice {
    font-size: 1.3rem;
  }
}

.text_pro_limited {
  font-size: 1.2rem;
  letter-spacing: 0;
}

.text_pro_new {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #ffffff;
  background-color: #9dacad;
  line-height: 2;
  letter-spacing: 0;
  padding: 0.1rem 2rem;
  display: inline-block;
}

.text_small02 {
  line-height: 1.5;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.text_white {
  color: #ffffff;
}

.text-bold {
  font-weight: bold;
}

.br_sp {
  display: block;
}
@media (min-width: 992px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media (min-width: 992px) {
  .br_pc {
    display: block;
  }
}

@media (min-width: 992px) {
  .text_center_pc {
    text-align: center;
  }
}

.text_title_bnr_01 {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .text_title_bnr_01 {
    font-size: 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */
