@charset "UTF-8";
/* stylelint-disable-next-line scss/dollar-variable-pattern */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
  padding: 0; /* パディングも常に0に */
  margin: 0; /* マージンは0に */
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) { /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  line-height: 1.5; /* アクセシブルな行の高さ */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) { /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  font-size: 1em;
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(hr) { /* より一貫性のある、スタイリッシュなhr */
  block-size: 0;
  overflow: visible;
  color: inherit;
  border: none;
  -webkit-border-before: #cbcbcb 1px solid;
          border-block-start: #cbcbcb 1px solid;
}

:where(:focus-visible) { /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, #f00);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(.visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes text-motion {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes text-motion {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2rem);
            transform: translateX(-2rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes image {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes image {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
* {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* animation時のにじみ防止 */
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased; /* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale; /* animation時の文字にじみ防止 */
}

:root {
  --font-size: 62.5;
  --color-base-bg: #fff;
  --color-base-text: #000;
  --color-pri: #006f44;
  --color-pri-light: rgb(0, 177, 106);
  --color-sr: #7E705A;
  --color-gray01: #EAEDEF;
  --color-gray02: #BDC3C7;
  --color-gray03: #6C6C6C;
  --color-link: #027368;
  --color-link-hover: #84BF2C;
  --color-red: #EA0000;
  --font-jp:Noto Sans JP, sans-serif;
  --font-en:Montserrat, Noto Sans JP, sans-serif;
  --font-size1014:clamp(1rem, 0.818rem + 0.78vw, 1.4rem);
  --font-size1113:clamp(1.1rem, 1.009rem + 0.39vw, 1.3rem);
  --font-size1213:clamp(1.2rem, 1.155rem + 0.19vw, 1.3rem);
  --font-size1214:clamp(1.2rem, 1.109rem + 0.39vw, 1.4rem);
  --font-size1215:clamp(1.2rem, 1.091rem + 0.55vw, 1.5rem);
  --font-size1416:clamp(1.4rem, 1.309rem + 0.39vw, 1.6rem);
  --font-size1517:clamp(1.5rem, 1.409rem + 0.39vw, 1.7rem);
  --font-size1618:clamp(1.6rem, 1.509rem + 0.39vw, 1.8rem);
  --font-size1820:clamp(1.8rem, 1.709rem + 0.39vw, 2rem);
  /* CJK言語（中国語、日本語、韓国語）での句読点の間隔を変更。 */
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
}

html {
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  font-size: calc(var(--font-size) * 0.9%);
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  scroll-padding-top: 0;
  background: #fff;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(12, 106, 238, 0.2);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media print, screen and (min-width: 375px) {
  html {
    font-size: calc(var(--font-size) * 1%);
  }
}
@media print, screen and (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
}

html,
body {
  width: 100%;
  min-height: -webkit-fill-available;
  min-height: -moz-available;
  min-height: fill-available;
  padding: 0;
  margin: 0;
  -ms-scroll-chaining: none;
      overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}
@media print, screen and (min-width: 768px) {
  html,
  body {
    min-width: 768px;
  }
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.309rem + 0.39vw, 1.6rem);
  font-weight: 400;
  font-optical-sizing: auto;
  line-height: 1;
  color: var(--color-base-text);
  overflow-wrap: anywhere;
  background: #fff;
  -webkit-animation: fadein ease-out 0.3s both 0.1s;
          animation: fadein ease-out 0.3s both 0.1s;
}
body.is-gnav-open {
  height: 100%;
  overflow: hidden;
}
@media print, screen and (min-width: 992px) {
  body.is-gnav-open {
    height: auto;
    overflow: visible;
  }
}
body:lang(en) {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.309rem + 0.39vw, 1.6rem);
}

body:has(#js-globalnav-sp.is-open) .l-container {
  overflow: auto;
  scrollbar-gutter: stable;
}

:where(section) {
  position: relative;
  text-align: left;
  letter-spacing: min(0.5vw, 0.1em);
}

:where(p, dl, dt, dd, ol, ul, li) {
  padding: 0;
  margin: 0;
}

picture {
  display: block;
}

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

strong {
  font-weight: 700;
}

sup {
  font-size: 55%;
  vertical-align: super;
}

sub {
  font-size: 55%;
  vertical-align: sub;
}

:where(p + *) {
  margin-top: 2.4em;
}

:where(p:not(:first-child)) {
  margin-top: 2.4em;
}

a[href^="tel:"] {
  font-weight: 700;
}

@media (pointer: fine), (hover: hover) {
  a[href^="tel:"] {
    color: #000;
    text-decoration: none;
    pointer-events: none;
  }
}
a:not([class]) {
  color: #027368;
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  a:not([class]) {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  a:not([class]):hover {
    color: #84BF2C;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  a:not([class]) {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  a:not([class]):hover {
    color: #84BF2C;
  }
}
@media (hover: hover) and (pointer: fine) {
  a:not([class]) i,
  a:not([class]) img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:not([class]) i:hover,
  a:not([class]) img:hover {
    opacity: 0.6;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  a:not([class]) i,
  a:not([class]) img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  a:not([class]) i:hover,
  a:not([class]) img:hover {
    opacity: 0.6;
  }
}

:where(a:not([class])) i:first-child {
  margin-right: 0.5em;
}

picture:has([loading=lazy]) {
  overflow: hidden;
}

[loading=lazy] {
  opacity: 0;
}
[loading=lazy].is-loaded {
  -webkit-animation: imgloaded 1s ease 0.1s both;
          animation: imgloaded 1s ease 0.1s both;
}

@-webkit-keyframes imgloaded {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes imgloaded {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
a:focus-visible {
  outline: 2px solid rgb(0, 177, 106) !important;
  outline-offset: 2px !important;
  -webkit-transition: none !important;
  transition: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.l-container {
  position: relative;
  z-index: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto;
  grid-template-rows: 1fr auto;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  width: 100%;
  min-height: 100dvh;
  padding: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.l-container > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}

.l-container > *:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
}

main,
.l-main,
article,
section {
  position: relative;
  display: block;
}

.l-main {
  z-index: 3;
  grid-row: 1 2;
  line-height: 1.8;
  text-align: center;
  letter-spacing: clamp(0.05em, 0.1vw, 0.1em);
}
@media print, screen and (min-width: 768px) {
  .l-main {
    line-height: 2;
  }
}
.l-main:lang(en) {
  letter-spacing: 0;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 777777;
  width: 100%;
  height: 80px;
  background: rgb(255, 255, 255);
  opacity: 0;
  -webkit-animation: 1s fadein cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
          animation: 1s fadein cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
}
@media print, screen and (min-width: 768px) {
  .l-header {
    height: 100px;
  }
}
@media print, screen and (min-width: 768px) {
  .l-header__inner {
    position: relative;
    width: min(95%, 1900px);
    height: 100%;
    margin: 0 auto;
  }
}
.l-header__logo {
  position: absolute;
  top: 50%;
  left: 15px;
  z-index: 3;
  display: block;
  width: min(22%, 100px);
  height: auto;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: 2s fadein cubic-bezier(0.215, 0.61, 0.355, 1) 3.5s both;
          animation: 2s fadein cubic-bezier(0.215, 0.61, 0.355, 1) 3.5s both;
}
@media print, screen and (min-width: 768px) {
  .l-header__logo {
    top: 53%;
    width: min(9%, 12rem);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.l-header__logo svg {
  display: block;
  width: 100%;
  height: auto;
}

.l-footer {
  position: relative;
  z-index: 4;
  grid-row: 2 3;
  padding: min(10vw, 6.5rem) 1rem clamp(10rem, 10vw, 12rem);
  padding-top: 5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: center;
  background: #fff;
}
@media print, screen and (min-width: 768px) {
  .l-footer {
    padding: min(12vw, 12rem) 1rem;
  }
}
.l-footer__logo {
  text-align: center;
}
.l-footer__logo-camel-whole-sale {
  display: block;
  width: min(50%, 15rem);
  margin: 0 auto;
}
.l-footer__logo-camel-whole-sale svg {
  display: block;
  height: auto;
}
.l-footer__logo-camel-coffee-group {
  display: block;
  width: min(70%, 25rem);
  margin: 4rem auto 0;
}
.l-footer__logo-camel-coffee-group svg {
  display: block;
  height: auto;
}
.l-footer__copyright {
  position: relative;
  display: block;
  padding: 0;
  margin: 4rem auto;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  text-align: center;
  letter-spacing: 0;
}
@media print, screen and (min-width: 768px) {
  .l-footer__copyright {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
}

.p-globalnav-triger {
  position: fixed;
  top: 15px;
  right: 10px;
  z-index: 888889;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav-triger {
    display: none;
  }
}
.p-globalnav-triger:focus-visible {
  outline: 2px solid #84BF2C;
}
.p-globalnav-triger__ic {
  position: absolute;
  top: 10px;
  left: 5px;
  width: 40px;
  height: 30px;
  margin: 0;
}
.p-globalnav-triger__ic span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background: #006f44;
  -webkit-transition: ease-out 0.1s;
  transition: ease-out 0.1s;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
.p-globalnav-triger__ic span::before, .p-globalnav-triger__ic span::after {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: 1px;
  content: "";
  background: #006f44;
}
.p-globalnav-triger__ic span::before {
  width: 30px;
  margin-top: -8px;
  -webkit-transition: ease-out 0.4s 0.1s;
  transition: ease-out 0.4s 0.1s;
}
.p-globalnav-triger__ic span::after {
  width: 20px;
  margin-top: 7px;
  -webkit-transition: ease-out 0.3s 0.2s;
  transition: ease-out 0.3s 0.2s;
}
.p-globalnav-triger.is-open::before {
  background: #fff !important;
}
.p-globalnav-triger.is-open span {
  background: transparent !important;
}
.p-globalnav-triger.is-open span::before, .p-globalnav-triger.is-open span::after {
  top: 0%;
  left: -2.5px;
  width: 40px;
  height: 1px;
  margin-top: 0;
  background-color: #fff;
}
.p-globalnav-triger.is-open span::before {
  -webkit-transform: rotate(155deg);
          transform: rotate(155deg);
}
.p-globalnav-triger.is-open span::after {
  -webkit-transform: rotate(-155deg);
          transform: rotate(-155deg);
}
.p-globalnav-triger__text {
  position: absolute;
  top: 55%;
  left: 32px;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  letter-spacing: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
.p-globalnav-triger__text span:nth-child(1) {
  display: block;
}
.p-globalnav-triger__text span:nth-child(2) {
  display: none;
}

.p-globalnav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 888888;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  visibility: hidden;
  background: #006f44;
  opacity: 0;
  -webkit-transition: 0.5s ease 0.1s;
  transition: 0.5s ease 0.1s;
  -webkit-transform: translateX(-10em);
          transform: translateX(-10em);
}
@media print, screen and (min-width: 768px) {
  .p-globalnav {
    position: relative;
    top: auto;
    left: auto;
    z-index: 1;
    display: block;
    width: auto;
    height: 100px;
    pointer-events: all;
    visibility: visible;
    background-color: transparent;
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.p-globalnav.is-open {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media print, screen and (min-width: 768px) {
  .p-globalnav.is-open {
    display: block !important;
  }
}
.p-globalnav__inner {
  position: relative;
  display: none;
  height: 100dvh;
  padding: max(5vh, 50px) 5vw 100px;
  overflow-y: scroll;
}
.is-open .p-globalnav__inner {
  display: -ms-grid;
  display: grid;
  place-items: center;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__inner {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.p-globalnav__menu01 {
  display: -ms-grid;
  display: grid;
  gap: 1em;
  width: clamp(280px, 80%, 420px);
  margin: 1em auto 0;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0 min(1.5vw, 4rem);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    margin: 0;
  }
}
.p-globalnav__menu01 > li {
  position: relative;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 > li {
    font-size: clamp(1.2rem, 1.2vw, 1.8rem);
  }
}
.p-globalnav__menu01 a, .p-globalnav__menu01 button {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  text-underline-offset: 0.3em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: all;
  cursor: pointer;
  background-color: transparent;
  border: none;
  outline: none;
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 a, .p-globalnav__menu01 button {
    padding: 0.5em min(0.5vw, 1em);
    color: #000;
    letter-spacing: min(0.1vw, 0.1em);
  }
}
.p-globalnav__menu01 a span, .p-globalnav__menu01 button span {
  position: relative;
  z-index: 3;
  display: inline-block;
}
@media (hover: hover) and (pointer: fine) {
  .p-globalnav__menu01 a, .p-globalnav__menu01 button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .p-globalnav__menu01 a:hover, .p-globalnav__menu01 button:hover {
    color: #fff;
    text-decoration: underline;
  }
}
@media print and (hover: hover) and (pointer: fine), screen and (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .p-globalnav__menu01 a:hover, .p-globalnav__menu01 button:hover {
    color: #006f44;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .p-globalnav__menu01 a, .p-globalnav__menu01 button {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .p-globalnav__menu01 a:hover, .p-globalnav__menu01 button:hover {
    color: #fff;
    text-decoration: underline;
  }
}
@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .p-globalnav__menu01 a:hover, .p-globalnav__menu01 button:hover {
    color: #006f44;
  }
}
.p-globalnav__menu01 a .u-ic-cart, .p-globalnav__menu01 button .u-ic-cart {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1.6em;
  height: 1.6em;
  margin: 0;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2055%2040%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%3E%3Cg%20stroke-miterlimit%3D%2210%22%3E%3Cpath%20d%3D%22m2.958%208.593h39.839%22%20stroke-width%3D%221.651%22%2F%3E%3Cpath%20d%3D%22m4.68%2014.919h37%22%20stroke-width%3D%221.683%22%2F%3E%3Cpath%20d%3D%22m6.167%2021.251h33.421%22%20stroke-width%3D%221.672%22%2F%3E%3Cpath%20d%3D%22m39.175%2027.594h-31.388l-5.738-19.617%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m39.126%2027.606%205.735-25.955h7.244%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m37.179%2029.995c2.25%200%204.074%201.825%204.073%204.075%200%202.25-1.825%204.074-4.075%204.073-2.249%200-4.072-1.824-4.073-4.073%200-2.251%201.824-4.075%204.075-4.075z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m9.597%2029.995c2.25%200%204.074%201.825%204.073%204.075s-1.825%204.074-4.075%204.073c-2.249%200-4.072-1.824-4.073-4.073%200-2.251%201.824-4.075%204.075-4.075z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  -webkit-transform: translate(-125%, -55%);
          transform: translate(-125%, -55%);
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 a .u-ic-cart, .p-globalnav__menu01 button .u-ic-cart {
    position: relative;
    top: auto;
    left: auto;
    width: 1.6em;
    height: 1.6em;
    margin-right: 0.2em;
    vertical-align: 0;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2227.383%22%20viewBox%3D%220%200%2036.73%2027.383%22%20width%3D%2236.73%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20transform%3D%22translate(-1.437%20-6.308)%22%3E%3Cg%20stroke-miterlimit%3D%2210%22%3E%3Cpath%20d%3D%22m4.085%2012.541h26.288%22%20stroke-width%3D%221.651%22%2F%3E%3Cpath%20d%3D%22m5.221%2016.715h24.415%22%20stroke-width%3D%221.683%22%2F%3E%3Cpath%20d%3D%22m6.202%2020.893h22.053%22%20stroke-width%3D%221.672%22%2F%3E%3Cpath%20d%3D%22m27.983%2025.079h-20.712l-3.786-12.945%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m27.951%2025.087%203.784-17.127h4.78%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m26.666%2026.663a2.689%202.689%200%201%201%20-2.689%202.689%202.689%202.689%200%200%201%202.689-2.689z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m8.466%2026.663a2.689%202.689%200%201%201%20-2.689%202.689%202.689%202.689%200%200%201%202.689-2.689z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
  }
}
@media print, screen and (min-width: 1366px) {
  .p-globalnav__menu01 a .u-ic-cart, .p-globalnav__menu01 button .u-ic-cart {
    width: 1.8em;
    height: 1.8em;
  }
}
.p-globalnav__menu01 a .u-ic-blank, .p-globalnav__menu01 button .u-ic-blank {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.3em;
  height: 1.3em;
  margin: 0;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2233.081%22%20viewBox%3D%220%200%2034%2033.081%22%20width%3D%2234%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20d%3D%22m0%200h34v33.081h-34z%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%20opacity%3D%220%22%3E%3Cpath%20d%3D%22m0%200h34v33.081h-34z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%3E%3Cpath%20d%3D%22m23.6%2020.818v2.782h-18.1v-18.1h2.785%22%20transform%3D%22translate(2.51%202.254)%22%2F%3E%3Cpath%20d%3D%22m11.5%205.5h9.748v9.748%22%20transform%3D%22translate(4.865%202.254)%22%2F%3E%3Cpath%20d%3D%22m9.052%200-9.052%209.052%22%20transform%3D%22translate(17.061%207.754)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  -webkit-transform: translate(150%, -55%);
          transform: translate(150%, -55%);
}
@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 a .u-ic-blank, .p-globalnav__menu01 button .u-ic-blank {
    position: relative;
    top: auto;
    right: auto;
    background: url("data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2233.081%22%20viewBox%3D%220%200%2034%2033.081%22%20width%3D%2234%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20d%3D%22m0%200h34v33.081h-34z%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%20opacity%3D%220%22%3E%3Cpath%20d%3D%22m0%200h34v33.081h-34z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%3E%3Cpath%20d%3D%22m23.6%2020.818v2.782h-18.1v-18.1h2.785%22%20transform%3D%22translate(2.51%202.254)%22%2F%3E%3Cpath%20d%3D%22m11.5%205.5h9.748v9.748%22%20transform%3D%22translate(4.865%202.254)%22%2F%3E%3Cpath%20d%3D%22m9.052%200-9.052%209.052%22%20transform%3D%22translate(17.061%207.754)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
  }
}

@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 li:nth-child(1) {
    -webkit-animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.67s both;
            animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.67s both;
  }
}

@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 li:nth-child(2) {
    -webkit-animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.74s both;
            animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.74s both;
  }
}

@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 li:nth-child(3) {
    -webkit-animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.81s both;
            animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.81s both;
  }
}

@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 li:nth-child(4) {
    -webkit-animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.88s both;
            animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.88s both;
  }
}

@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 li:nth-child(5) {
    -webkit-animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.95s both;
            animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.95s both;
  }
}

@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 li:nth-child(6) {
    -webkit-animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 4.02s both;
            animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 4.02s both;
  }
}

@media print, screen and (min-width: 768px) {
  .p-globalnav__menu01 li:nth-child(7) {
    -webkit-animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 4.09s both;
            animation: fadein 2s cubic-bezier(0.215, 0.61, 0.355, 1) 4.09s both;
  }
}

.p-news-lists {
  position: relative;
  text-align: left;
}
.p-news-lists li {
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 0.2em auto;
      grid-template-areas: "tag date" "text text";
  -ms-grid-columns: 6em 1em auto;
  grid-template-columns: 6em auto;
  gap: 0.2em 1em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-news-lists li + li {
  margin-top: 2em;
}
.p-news-lists__tag {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: tag;
  padding: 0.5em;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  background-color: #7E705A;
  border-radius: 1.5em;
}
.p-news-lists__date {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: date;
  padding: 0.2em;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 1.309rem + 0.39vw, 1.6rem);
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}
.p-news-lists__text {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: text;
  margin-top: 0;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  line-height: 1.8;
  text-align: left;
  letter-spacing: 0;
}
.p-news-lists a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
@media (hover: hover) and (pointer: fine) {
  .p-news-lists a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .p-news-lists a:hover {
    color: #027368 !important;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .p-news-lists a {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .p-news-lists a:hover {
    color: #027368 !important;
  }
}

.c-title01 {
  position: relative;
  line-height: 1.25;
  color: #000;
  text-align: center;
  letter-spacing: 0;
}
.c-title01 > span {
  display: block;
  color: #fff;
  text-align: center;
}
.c-title01__text01 {
  padding: 0.1em 0;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-indent: 2em;
  letter-spacing: 2em;
}
.c-title01__text02 {
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
  text-align: center;
  letter-spacing: -0.03em;
}

:where(.c-title01 + *) {
  margin-top: clamp(3rem, 5vw, 5rem);
}

/* u-font */
.u-font-wn {
  font-weight: 400;
}
.u-font-wm {
  font-weight: 500;
}
.u-font-wb {
  font-weight: 700;
}

.u-visible-sp {
  display: inline-block;
}
@media print, screen and (min-width: 768px) {
  .u-visible-sp {
    display: none;
  }
}

.u-visible-pc {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .u-visible-pc {
    display: inline-block;
  }
}

.u-visible-s,
.u-visible-sm,
.u-visible-md,
.u-visible-lg,
.u-visible-xl {
  display: none;
}

@media print, screen and (width <= 575px) {
  .u-visible-s {
    display: inline-block;
  }
}

@media print, screen and (width >= 576px) and (width <= 767.98px) {
  .u-visible-sm {
    display: inline-block;
  }
}

@media print, screen and (width >= 768px) and (width <= 991px) {
  .u-visible-md {
    display: inline-block;
  }
}

@media print, screen and (width >= 992px) and (width <= 1199px) {
  .u-visible-lg {
    display: inline-block;
  }
}

@media print, screen and (width >= 1200px) {
  .u-visible-xl {
    display: inline-block;
  }
}

[class^=u-ic-] {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.u-ic-next {
  width: 1em;
  height: 1em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20enable-background%3D%22new%200%200%2024%2024%22%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m8.8%205.5%206.5%206.5-6.5%206.5%22%20fill%3D%22none%22%20stroke%3D%22%235084d7%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.u-ic-blank,
.u-ic-blank-w {
  width: 1.2em;
  height: 1.2em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2233.081%22%20viewBox%3D%220%200%2034%2033.081%22%20width%3D%2234%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20d%3D%22m0%200h34v33.081h-34z%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%20opacity%3D%220%22%3E%3Cpath%20d%3D%22m0%200h34v33.081h-34z%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%3E%3Cpath%20d%3D%22m23.6%2020.818v2.782h-18.1v-18.1h2.785%22%20transform%3D%22translate(2.51%202.254)%22%2F%3E%3Cpath%20d%3D%22m11.5%205.5h9.748v9.748%22%20transform%3D%22translate(4.865%202.254)%22%2F%3E%3Cpath%20d%3D%22m9.052%200-9.052%209.052%22%20transform%3D%22translate(17.061%207.754)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.u-ic-blank-b {
  width: 1.2em;
  height: 1.2em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20height%3D%2233.081%22%20viewBox%3D%220%200%2034%2033.081%22%20width%3D%2234%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%3E%3CclipPath%20id%3D%22a%22%3E%3Cpath%20d%3D%22m0%200h34v33.081h-34z%22%2F%3E%3C%2FclipPath%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%3E%3Cg%20clip-path%3D%22url(%23a)%22%20opacity%3D%220%22%3E%3Cpath%20d%3D%22m0%200h34v33.081h-34z%22%20fill%3D%22%23000%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%222%22%3E%3Cpath%20d%3D%22m23.6%2020.818v2.782h-18.1v-18.1h2.785%22%20transform%3D%22translate(2.51%202.254)%22%2F%3E%3Cpath%20d%3D%22m11.5%205.5h9.748v9.748%22%20transform%3D%22translate(4.865%202.254)%22%2F%3E%3Cpath%20d%3D%22m9.052%200-9.052%209.052%22%20transform%3D%22translate(17.061%207.754)%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.u-ic-cart,
.u-ic-cart-b {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg%20height%3D%2227.383%22%20viewBox%3D%220%200%2036.73%2027.383%22%20width%3D%2236.73%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23000%22%20stroke-linecap%3D%22round%22%20transform%3D%22translate(-1.437%20-6.308)%22%3E%3Cg%20stroke-miterlimit%3D%2210%22%3E%3Cpath%20d%3D%22m4.085%2012.541h26.288%22%20stroke-width%3D%221.651%22%2F%3E%3Cpath%20d%3D%22m5.221%2016.715h24.415%22%20stroke-width%3D%221.683%22%2F%3E%3Cpath%20d%3D%22m6.202%2020.893h22.053%22%20stroke-width%3D%221.672%22%2F%3E%3Cpath%20d%3D%22m27.983%2025.079h-20.712l-3.786-12.945%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m27.951%2025.087%203.784-17.127h4.78%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m26.666%2026.663a2.689%202.689%200%201%201%20-2.689%202.689%202.689%202.689%200%200%201%202.689-2.689z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m8.466%2026.663a2.689%202.689%200%201%201%20-2.689%202.689%202.689%202.689%200%200%201%202.689-2.689z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.u-ic-cart-w {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2055%2040%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%3E%3Cg%20stroke-miterlimit%3D%2210%22%3E%3Cpath%20d%3D%22m2.958%208.593h39.839%22%20stroke-width%3D%221.651%22%2F%3E%3Cpath%20d%3D%22m4.68%2014.919h37%22%20stroke-width%3D%221.683%22%2F%3E%3Cpath%20d%3D%22m6.167%2021.251h33.421%22%20stroke-width%3D%221.672%22%2F%3E%3Cpath%20d%3D%22m39.175%2027.594h-31.388l-5.738-19.617%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m39.126%2027.606%205.735-25.955h7.244%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m37.179%2029.995c2.25%200%204.074%201.825%204.073%204.075%200%202.25-1.825%204.074-4.075%204.073-2.249%200-4.072-1.824-4.073-4.073%200-2.251%201.824-4.075%204.075-4.075z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m9.597%2029.995c2.25%200%204.074%201.825%204.073%204.075s-1.825%204.074-4.075%204.073c-2.249%200-4.072-1.824-4.073-4.073%200-2.251%201.824-4.075%204.075-4.075z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.u-ic-mail {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2036%2036%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22m32.4%205.501h-28.796c-1.987.003-3.597%201.597-3.604%203.569v17.858c.006%201.97%201.613%203.566%203.598%203.572h28.802c1.986-.004%203.595-1.602%203.6-3.572v-17.858c-.006-1.97-1.614-3.566-3.6-3.57m-.301%209.904-13.197%207.125c-.561.303-1.239.303-1.799%200l-13.198-7.124c-.912-.493-1.25-1.627-.753-2.532s1.64-1.24%202.552-.747l12.299%206.642%2012.299-6.642c.918-.483%202.056-.137%202.543.773.48.897.148%202.011-.746%202.505%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E") no-repeat center center/contain;
}

.is-active.p-home-mission .c-title01,
.is-active.p-home-vision .c-title01,
.is-active.p-home-value .c-title01,
.is-active.p-home-catalog .c-title01,
.is-active.p-home-order .c-title01 {
  -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s both;
          animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s both;
}

.p-home-news {
  position: relative;
  z-index: 2;
  padding-top: 6em;
  background-color: rgba(0, 111, 68, 0.8);
  -webkit-backdrop-filter: blur(1rem);
          backdrop-filter: blur(1rem);
}
@media print, screen and (min-width: 768px) {
  .p-home-news {
    padding-right: 7.5vw;
  }
}
.p-home-news .c-title01 {
  padding-left: 10vw;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .p-home-news .c-title01 {
    position: absolute;
    top: 50%;
    left: 20%;
    padding-left: 0;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.p-home-news .c-title01__text01 {
  text-align: left;
  text-indent: 0.45em;
  letter-spacing: 0.7em;
}
.p-home-news .c-title01__text02 {
  text-align: left;
}
.p-home-news__inner {
  position: relative;
  z-index: 2;
  width: 90%;
  padding: 4rem 3rem 8rem;
  margin: 3rem auto 0;
  background-color: #fff;
}
@media print, screen and (min-width: 768px) {
  .p-home-news__inner {
    width: 60%;
    padding: min(4vw, 4rem) min(6vw, 6rem) min(8vw, 8rem);
    margin: 0 0 0 auto;
  }
}

.p-home-mission {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background-color: #006f44;
}
.p-home-mission__inner {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: max(100dvh, 60rem);
  padding: 10vw 5vw;
}
@media print, screen and (min-width: 768px) {
  .p-home-mission__inner {
    height: max(100dvh, 65rem);
  }
}
.p-home-mission__texts {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.p-home-mission__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  background-color: #000;
}
.p-home-mission__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-mission__text01 {
  margin-top: 0.75em;
  font-size: clamp(4.6rem, 6vw, 10rem);
  font-weight: 100;
  line-height: 1.25;
  text-align: center;
  text-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .p-home-mission__text01 {
    letter-spacing: 0.2em;
  }
}
.p-home-mission__text01 span {
  display: inline-block;
  opacity: 0;
}
.p-home-mission__text02 {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.2em;
}
.p-home-mission__text02 span {
  display: inline-block;
  opacity: 0;
}

.is-active .p-home-mission__bg {
  -webkit-animation: image 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s both;
          animation: image 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s both;
}

@-webkit-keyframes missionimg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}

@keyframes missionimg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
.is-active .p-home-mission__bg img {
  -webkit-animation: missionimg 3s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
          animation: missionimg 3s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(1) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(2) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(3) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(4) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(5) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(6) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(7) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.7s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.7s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(8) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(9) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.9s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.9s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(10) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(11) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.1s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.1s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(12) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.2s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.2s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(13) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.3s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.3s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(14) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.4s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(15) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(16) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.6s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.6s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(17) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.7s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.7s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(18) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(19) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.9s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.9s both;
}

.is-active .p-home-mission__text01 span:nth-of-type(20) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
}

.is-active .p-home-mission__text02 span:nth-of-type(1) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-mission__text02 span:nth-of-type(1) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
  }
}

.is-active .p-home-mission__text02 span:nth-of-type(2) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-mission__text02 span:nth-of-type(2) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
  }
}

.is-active .p-home-mission__text02 span:nth-of-type(3) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.1s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.1s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-mission__text02 span:nth-of-type(3) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
  }
}

.p-home-vision {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background-color: #006f44;
}
.p-home-vision::before, .p-home-vision::after {
  position: absolute;
  left: 0;
  z-index: 3;
  width: 100%;
  height: min(4dvh, 5rem);
  content: "";
  background: #004099;
  -webkit-transform-origin: top left;
          transform-origin: top left;
}
.p-home-vision::before {
  top: 0;
}
.p-home-vision::after {
  bottom: 0;
}
.p-home-vision__inner {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: max(100dvh, 60rem);
  padding: 10vw 5vw;
}
@media print, screen and (min-width: 768px) {
  .p-home-vision__inner {
    height: max(100dvh, 65rem);
  }
}
.p-home-vision__texts {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.p-home-vision__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  background-color: #4B2600;
}
.p-home-vision__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-vision__text01 {
  margin-top: 0.75em;
  font-size: clamp(4.3rem, 4vw, 7.8rem);
  font-weight: 200;
  line-height: 1.25;
  color: #FFC70B;
  text-align: center;
  text-wrap: wrap;
}
@media print, screen and (min-width: 768px) {
  .p-home-vision__text01 {
    letter-spacing: 0.2em;
  }
}
.p-home-vision__text01 span {
  display: inline-block;
  opacity: 0;
}
.p-home-vision__text02 {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.2em;
}
.p-home-vision__text02 span {
  display: inline-block;
  opacity: 0;
}

.is-active .p-home-vision__bg {
  -webkit-animation: image 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s both;
          animation: image 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s both;
}

@-webkit-keyframes visionimg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes visionimg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.3;
  }
}
.is-active .p-home-vision__bg img {
  -webkit-animation: visionimg 3s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
          animation: visionimg 3s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(1) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.05s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.05s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(2) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(3) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.15s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.15s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(4) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(5) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.25s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.25s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(6) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(7) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.35s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.35s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(8) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(9) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.45s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.45s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(10) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(11) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.55s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.55s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(12) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(13) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.65s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.65s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(14) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.7s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.7s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(15) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.75s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.75s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(16) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(17) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.85s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.85s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(18) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.9s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.9s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(19) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.95s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.95s both;
}

.is-active .p-home-vision__text01 span:nth-of-type(20) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s both;
}

.is-active .p-home-vision__text02 span:nth-of-type(1) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-vision__text02 span:nth-of-type(1) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
  }
}

.is-active .p-home-vision__text02 span:nth-of-type(2) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-vision__text02 span:nth-of-type(2) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
  }
}

.is-active .p-home-vision__text02 span:nth-of-type(3) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.1s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.1s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-vision__text02 span:nth-of-type(3) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
  }
}

.p-home-value {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  background-color: #006f44;
}
.p-home-value__inner {
  position: relative;
  z-index: 2;
  display: -ms-grid;
  display: grid;
  place-content: center;
  height: max(100dvh, 60rem);
  padding: 10vw 5vw;
}
@media print, screen and (min-width: 768px) {
  .p-home-value__inner {
    height: max(100dvh, 65rem);
  }
}
.p-home-value__texts {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.p-home-value__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  background-color: #000;
}
.p-home-value__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-home-value .c-title01__text01 {
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
}
.p-home-value .c-title01__text02 {
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
}
.p-home-value__text01 {
  margin-top: 0.75em;
  font-size: clamp(4.8rem, 5vw, 9rem);
  font-weight: 100;
  line-height: 1.25;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
}
.p-home-value__text01 span {
  display: inline-block;
  opacity: 0;
}
.p-home-value__text02 {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
  letter-spacing: 0.2em;
}
.p-home-value__text02 span {
  display: inline-block;
  opacity: 0;
}

.is-active .p-home-value__bg {
  -webkit-animation: image 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s both;
          animation: image 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s both;
}

@-webkit-keyframes valueimg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

@keyframes valueimg {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}
.is-active .p-home-value__bg img {
  -webkit-animation: valueimg 3s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
          animation: valueimg 3s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
}

.is-active .p-home-value__text01 span:nth-of-type(1) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.1s both;
}

.is-active .p-home-value__text01 span:nth-of-type(2) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.2s both;
}

.is-active .p-home-value__text01 span:nth-of-type(3) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.3s both;
}

.is-active .p-home-value__text01 span:nth-of-type(4) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.4s both;
}

.is-active .p-home-value__text01 span:nth-of-type(5) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.5s both;
}

.is-active .p-home-value__text01 span:nth-of-type(6) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.6s both;
}

.is-active .p-home-value__text01 span:nth-of-type(7) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.7s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.7s both;
}

.is-active .p-home-value__text01 span:nth-of-type(8) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.8s both;
}

.is-active .p-home-value__text01 span:nth-of-type(9) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.9s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 1.9s both;
}

.is-active .p-home-value__text01 span:nth-of-type(10) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2s both;
}

.is-active .p-home-value__text01 span:nth-of-type(11) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.1s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.1s both;
}

.is-active .p-home-value__text01 span:nth-of-type(12) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.2s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.2s both;
}

.is-active .p-home-value__text02 span:nth-of-type(1) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.5s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-value__text02 span:nth-of-type(1) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
  }
}

.is-active .p-home-value__text02 span:nth-of-type(2) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-value__text02 span:nth-of-type(2) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
  }
}

.is-active .p-home-value__text02 span:nth-of-type(3) {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.1s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 3.1s both;
}
@media print, screen and (min-width: 768px) {
  .is-active .p-home-value__text02 span:nth-of-type(3) {
    -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
            animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 2.8s both;
  }
}

.is-active .p-home-value__text02 span:nth-of-type(4) {
  -webkit-animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3.7s both;
          animation: text-motion 3s cubic-bezier(0.215, 0.61, 0.355, 1) 3.7s both;
}

.p-home-catalog-order {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
.p-home-catalog-order__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  clip-path: inset(0 100% 0 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.51)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(rgba(0, 0, 0, 0.51) 0%, rgba(0, 0, 0, 0.9) 100%);
}
.p-home-catalog-order__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
  -webkit-filter: blur(3px);
          filter: blur(3px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.p-home-catalog {
  position: relative;
  z-index: 2;
  width: 90%;
  padding: min(20vw, 15rem) min(5vw, 5rem) 0;
  margin: 0 auto;
}
.p-home-catalog__inner {
  position: relative;
  z-index: 3;
}
.p-home-catalog__texts {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.p-home-catalog .c-title01__text01 {
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
}
.p-home-catalog .c-title01__text02 {
  font-size: clamp(4.5rem, 7vw, 7rem);
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
}
.p-home-catalog__text01 {
  margin-top: 2.5em;
  text-align: left;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
}
@media print, screen and (min-width: 768px) {
  .p-home-catalog__text01 {
    text-align: center;
  }
}
.p-home-catalog__text02 {
  text-align: left;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
}
@media print, screen and (min-width: 768px) {
  .p-home-catalog__text02 {
    text-align: center;
  }
}
.p-home-catalog p + p {
  margin: 0;
}
.p-home-catalog__banners {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  width: min(100%, 35rem);
  margin: 2.5em auto 0;
}
@media print, screen and (min-width: 768px) {
  .p-home-catalog__banners {
    -ms-grid-columns: 1fr min(5vw, 6rem) 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 min(5vw, 6rem);
    width: min(90%, 116rem);
  }
}
.p-home-catalog__banners a {
  display: inline-block;
  -webkit-box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
}
.p-home-catalog__banners img {
  width: 100%;
  height: auto;
}

.p-home-order {
  position: relative;
  z-index: 2;
  width: 90%;
  margin: min(20vw, 10rem) auto;
}
@media print, screen and (min-width: 768px) {
  .p-home-order {
    margin-top: min(10vw, 10rem);
  }
}
.p-home-order__inner {
  position: relative;
  z-index: 3;
}
.p-home-order__texts {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
.p-home-order__text01 {
  margin-top: 2em;
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
  letter-spacing: 0.5em;
}
.p-home-order .c-title01__text02 {
  font-size: clamp(4rem, 5vw, 5.8rem);
  text-shadow: rgba(0, 0, 0, 0.5) 0 0 0.5em;
}
.p-home-order .c-title01__text02 span {
  font-size: 80%;
  vertical-align: 6%;
}
.p-home-order__banners {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  width: min(100%, 35rem);
  margin: 2.5em auto 0;
}
@media print, screen and (min-width: 768px) {
  .p-home-order__banners {
    width: min(40%, 55rem);
  }
}
.p-home-order__banners a {
  display: inline-block;
  -webkit-box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
}
.p-home-order__banners img {
  width: 100%;
  height: auto;
}

.is-active .p-home-catalog-order__bg {
  -webkit-animation: image 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s both;
          animation: image 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 0s both;
}

.p-home-catalog.is-active .p-home-catalog__text01 {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s both;
}

.p-home-catalog.is-active .p-home-catalog__text02 {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.6s both;
}

.p-home-order.is-active .p-home-order__text01 {
  -webkit-animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s both;
          animation: text-motion 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s both;
}

.p-home-catalog.is-active .p-home-catalog__banners {
  -webkit-animation: fadein 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
          animation: fadein 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
}

.p-home-order.is-active .p-home-order__banners {
  -webkit-animation: fadein 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
          animation: fadein 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) 1s both;
}

.p-home-company-contact {
  position: relative;
  z-index: 4;
  display: -ms-grid;
  display: grid;
  width: 100%;
  padding: 10vw 5vw;
  text-align: center;
  background-color: rgba(0, 111, 68, 0.92);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media print, screen and (min-width: 768px) {
  .p-home-company-contact {
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
    padding: 0;
    background-color: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
.p-home-company-contact::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  content: "";
  background: #006f44;
  -webkit-transform-origin: top right;
          transform-origin: top right;
}
.p-home-company-contact__logo {
  position: relative;
  z-index: 2;
}
@media print, screen and (min-width: 768px) {
  .p-home-company-contact__logo {
    position: sticky;
    top: 17rem;
  }
}
.p-home-company-contact__title-area {
  position: relative;
  width: 90%;
  padding: min(20vw, 10rem) 0;
  margin: 0 auto;
  text-align: center;
  background-color: rgb(255, 255, 255);
}
@media print, screen and (min-width: 768px) {
  .p-home-company-contact__title-area {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
  }
}
.p-home-company-contact__title-area svg {
  width: min(70%, 30rem);
  height: auto;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .p-home-company-contact__title-area svg {
    position: sticky;
    width: min(60%, 40rem);
  }
}
.p-home-company-contact__contents-area {
  position: relative;
  color: #fff;
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-home-company-contact__contents-area {
    background-color: rgba(0, 111, 68, 0.85);
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
  }
}
.p-home-company-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
@media print, screen and (min-width: 768px) {
  .p-home-company-contact .c-title01__text02 {
    font-size: min(5.5vw, 8rem);
  }
}

.p-home-company {
  position: relative;
  z-index: 2;
  width: 90%;
  padding: min(12vw, 10rem) 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .p-home-company {
    padding-bottom: min(3vw, 3rem);
  }
}
.p-home-company table {
  margin: 2.5em auto 0;
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
  border-spacing: 0;
  border-collapse: collapse;
}
.p-home-company th {
  width: 7.5em;
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  font-weight: 500;
  text-align: right;
  vertical-align: top;
  border-bottom: rgba(255, 255, 255, 0.3) solid 1px;
}
.p-home-company td {
  padding-top: 1em;
  padding-right: 1em;
  padding-bottom: 1em;
  font-weight: 500;
  border-bottom: rgba(255, 255, 255, 0.3) solid 1px;
}

.p-home-group {
  position: relative;
  z-index: 2;
  width: 90%;
  padding: min(12vw, 10rem) 0;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .p-home-group {
    width: min(88%, 90rem);
    padding-bottom: min(3vw, 3rem);
  }
}
.p-home-group__grid {
  display: -ms-grid;
  display: grid;
  gap: 1rem;
  width: min(100%, 40rem);
  margin: 4em auto 0;
}
@media print, screen and (min-width: 768px) {
  .p-home-group__grid {
        grid-template-areas: "text pict";
    -ms-grid-columns: auto 2rem min(27%, 24rem);
    grid-template-columns: auto min(27%, 24rem);
    gap: 2rem;
    width: 100%;
  }
  .p-home-group__grid > .p-news-lists__text {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
}
.p-home-group__pict-area {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .p-home-group__pict-area {
    grid-area: pict;
  }
}
.p-home-group__pict-area a {
  display: inline-block;
  width: min(100%, 50rem);
  margin: 0 auto;
}
.p-home-group__pict-area img {
  width: 100%;
  height: auto;
  aspect-ratio: 240/180;
}
.p-home-group__text-area {
  position: relative;
  z-index: 2;
  padding: 0;
  text-align: left;
}
@media print, screen and (min-width: 768px) {
  .p-home-group__text-area {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-area: text;
    padding: 0;
    text-align: left;
  }
  @media print, screen and (min-width: 768px){
  .p-home-group__pict-area {
      -ms-grid-row: 1;
      -ms-grid-column: 3;
  }
  .p-home-group__grid > .p-home-group__text-area {
      -ms-grid-row: 1;
      -ms-grid-column: 1;
      -ms-grid-column-span: 1;
  }
  }
}
.p-home-group__title02 {
  font-size: 1.8rem;
}
@media print, screen and (min-width: 768px) {
  .p-home-group__title02 {
    font-size: clamp(1.7rem, 1.55vw, 2.2rem);
  }
}
.p-home-group__title02 .u-ic-blank {
  margin-left: 0.2em;
  font-size: 120%;
}
.p-home-group .c-title01__text02 {
  margin-top: 0.25em;
  font-size: clamp(3.5rem, 9.5vw, 8rem);
}
@media print, screen and (min-width: 768px) {
  .p-home-group .c-title01__text02 {
    font-size: min(5vw, 6.5rem);
  }
}
.p-home-group__text01 {
  margin-top: 1em;
  font-size: 1.4rem;
  line-height: 1.714;
}
@media print, screen and (min-width: 768px) {
  .p-home-group__text01 {
    font-size: clamp(1.3rem, 1.3vw, 1.5rem);
    line-height: 2;
  }
}
.p-home-group__text02 {
  margin-top: 1em;
  font-size: 1.8rem;
  line-height: 1.714;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 768px) {
  .p-home-group__text02 {
    font-size: clamp(1.6rem, 1.4vw, 2.2rem);
    line-height: 2;
    letter-spacing: min(0.4vw, 0.3em);
  }
}

.p-home-contact {
  position: relative;
  z-index: 2;
  padding: min(12vw, 10rem) 0;
}
.p-home-contact .c-title01__text01 {
  text-indent: 1em;
  letter-spacing: 1em;
}
.p-home-contact p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.5em;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.p-home-contact p:nth-of-type(1) {
  margin-top: 3em;
}
.p-home-contact p:nth-of-type(3) {
  margin-top: 3em;
}

.is-active.p-home-company-contact::after {
  -webkit-animation: company-contact-layer 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s both;
          animation: company-contact-layer 2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s both;
}

@-webkit-keyframes company-contact-layer {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}

@keyframes company-contact-layer {
  0% {
    width: 100%;
  }
  100% {
    width: 0%;
  }
}
.p-home-fixed-banner {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  z-index: 666666;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(90%, 40rem);
  height: 7rem;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  pointer-events: none;
  background-color: #006f44;
  -webkit-box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
  opacity: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: fixed-banner 1s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
          animation: fixed-banner 1s cubic-bezier(0.215, 0.61, 0.355, 1) 3s both;
}
@media print, screen and (min-width: 768px) {
  .p-home-fixed-banner {
    right: 2rem;
    bottom: 2rem;
    left: auto;
    width: min(45%, 40rem);
    height: 9rem;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
}
.p-home-fixed-banner > span {
  position: relative;
  padding-left: 2em;
  font-family: "Montserrat", "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
@media print, screen and (min-width: 768px) {
  .p-home-fixed-banner > span {
    font-size: 2.3rem;
  }
}
.p-home-fixed-banner .u-ic-cart {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2em;
  height: 2em;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg%20viewBox%3D%220%200%2055%2040%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%3E%3Cg%20stroke-miterlimit%3D%2210%22%3E%3Cpath%20d%3D%22m2.958%208.593h39.839%22%20stroke-width%3D%221.651%22%2F%3E%3Cpath%20d%3D%22m4.68%2014.919h37%22%20stroke-width%3D%221.683%22%2F%3E%3Cpath%20d%3D%22m6.167%2021.251h33.421%22%20stroke-width%3D%221.672%22%2F%3E%3Cpath%20d%3D%22m39.175%2027.594h-31.388l-5.738-19.617%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3Cpath%20d%3D%22m39.126%2027.606%205.735-25.955h7.244%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m37.179%2029.995c2.25%200%204.074%201.825%204.073%204.075%200%202.25-1.825%204.074-4.075%204.073-2.249%200-4.072-1.824-4.073-4.073%200-2.251%201.824-4.075%204.075-4.075z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3Cpath%20d%3D%22m9.597%2029.995c2.25%200%204.074%201.825%204.073%204.075s-1.825%204.074-4.075%204.073c-2.249%200-4.072-1.824-4.073-4.073%200-2.251%201.824-4.075%204.075-4.075z%22%20stroke-miterlimit%3D%2210%22%20stroke-width%3D%223.303%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E") no-repeat center center/contain;
  -webkit-transform: translateY(-55%);
          transform: translateY(-55%);
}
@media (hover: hover) and (pointer: fine) {
  .p-home-fixed-banner {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .p-home-fixed-banner:hover {
    background-color: #699c1c;
  }
}
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .p-home-fixed-banner {
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
  .p-home-fixed-banner:hover {
    background-color: #699c1c;
  }
}
.p-home-fixed-banner .u-ic-blank {
  width: 1.2em;
  height: 1.2em;
  -webkit-transform: translateY(-5%);
          transform: translateY(-5%);
}

@-webkit-keyframes fixed-banner {
  0% {
    pointer-events: none;
    opacity: 0;
  }
  100% {
    pointer-events: auto;
    opacity: 1;
  }
}

@keyframes fixed-banner {
  0% {
    pointer-events: none;
    opacity: 0;
  }
  100% {
    pointer-events: auto;
    opacity: 1;
  }
}