@charset "UTF-8";
/*------------------------------------------
　メディアクエリの設定
-------------------------------------------*/
:root {
  --side-padding: calc((100vw - 1521px) / 2);
}

@media (max-width: 1654px) {
  :root {
    --side-padding: 4%;
  }
}
/********************************************

　カラー関数設定

********************************************/
:root {
  --theme-white:#FFFFFF;
  --theme-black:#000000;
  --theme-black-rgb: 0, 0, 0;
  --theme-gray-1:#EAEAEA;
  --theme-gray-2:#CCCCCC;
  --theme-gray-3:#888888;
  --theme-gray-4:#F6F6F6;
  --theme-gray-5:#E8E8E8;
  --theme-gray-6:#555555;
  --theme-pink:#FFCECE;
  --theme-red:#AD0523;
}

/*------------------------------------------
　フォントの指定
-------------------------------------------*/
body {
  font-family: "Zen Kaku Gothic New", system-ui;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

/*------------------------------------------
　フォントサイズの指定
-------------------------------------------*/
/* 各要素の指定用に1remを10px(62.5%)に設定 */
html {
  font-size: 62.5%;
}

* {
  font-size: 1.5rem;
}

/*-----------------------------------------------
 font-sizeのレスポンシブ対応レイアウト関連
 デフォルト　：　最大値[rem]
 タブレット~スマホ：以下フォントサイズ計算式
 font-size: calc(A[rem] + B[px] * (100vw - C)/D);
    A・・・最小文字サイズ[rem]
    B・・・最大文字サイズ (remをpx変換)– 最小文字サイズ (remをpx変換)[px]
    C・・・最小画面幅 [px]
    D・・・最大画面幅 – 最小画面幅[px]
 スマホ：最小値[rem]
------------------------------------------------*/
/*
  テキストスタイル
*/
/*------------------------------------------
  共有関数
-------------------------------------------*/
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  13% {
    transform: translate(36px, 36px);
  }
  26% {
    transform: translate(0, 0);
  }
  39% {
    transform: translate(-24px, 24px);
  }
  52% {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(12px, 12px);
  }
  78% {
    transform: translate(0, 0);
  }
  89% {
    transform: translate(-6px, 6px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes shake2 {
  0% {
    transform: rotateZ(0deg) rotateX(0deg);
  }
  16% {
    transform: rotateZ(4deg) rotateX(2deg);
  }
  32% {
    transform: rotateZ(-5deg) rotateX(-2deg);
  }
  48% {
    transform: rotateZ(4deg) rotateX(2deg);
  }
  64% {
    transform: rotateZ(-3deg) rotateX(-2deg);
  }
  80% {
    transform: rotateZ(3deg) rotateX(2deg);
  }
  96% {
    transform: rotateZ(-2deg) rotateX(-2deg);
  }
  100% {
    transform: rotateZ(0deg) rotateX(0deg);
  }
}
@keyframes turn {
  0% {
    transform: scale(0.6) perspective(1000px) rotate3d(0, 1, 0, 0deg);
  }
  50% {
    transform: scale(0.8) perspective(1000px) rotate3d(0, 1, 0, 180deg);
  }
  100% {
    transform: scale(0.6) perspective(1000px) rotate3d(0, 1, 0, 360deg);
  }
}
/************************
　オンラインショップ
************************/
/********************************************
  css 全画面共通処理
********************************************/
/*------------------------------------------
  基本設定
-------------------------------------------*/
html, body {
  width: 100%;
  height: 100%;
  word-break: auto-phrase;
}

body {
  overflow-x: hidden;
}

/*------------------------------------------
改行の設定
-------------------------------------------*/
br.sp {
  display: none;
}
@media (max-width: 480px) {
  br.sp {
    display: inline;
  }
}

br.s-tab {
  display: none;
}
@media (max-width: 780px) {
  br.s-tab {
    display: inline;
  }
}

br.tab {
  display: none;
}
@media (max-width: 1050px) {
  br.tab {
    display: inline;
  }
}

/*------------------------------------------
  表示制御
-------------------------------------------*/
p.sp-none {
  display: block;
}
@media (max-width: 480px) {
  p.sp-none {
    display: none;
  }
}

p.sp-only {
  display: none;
}
@media (max-width: 480px) {
  p.sp-only {
    display: block;
  }
}

@media (max-width: 1050px) {
  span.tab-none {
    display: none;
  }
}

@media (max-width: 480px) {
  br.sp-none {
    display: none;
  }
}

/*------------------------------------------
  header
-------------------------------------------*/
header {
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 64px;
  transition: 0.4s;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  gap: 24px;
}
header .left-content {
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: clamp(0px, 0px + 32 * (100vw - 480px) / 920, 32px);
}
header .left-content .logo {
  display: grid;
  place-items: center;
  height: 100%;
  width: clamp(180px, 180px + 20 * (100vw - 480px) / 920, 200px);
}
header .left-content .logo picture, header .left-content .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}
header .right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}
header .right-content .navImgBox {
  display: none;
  width: clamp(180px, 40%, 270px);
  height: auto;
  aspect-ratio: 1/1;
}
header .right-content ul {
  display: flex;
  justify-content: center;
  gap: 12px clamp(0px, 0px + 32 * (100vw - 480px) / 920, 32px);
  align-items: center;
}
header .right-content ul li:last-child {
  border-left: 1px solid var(--theme-black);
  padding-left: clamp(0px, 0px + 32 * (100vw - 480px) / 920, 32px);
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1050px) {
  header .right-content ul li:last-child {
    padding-left: 0;
    border-left: none;
  }
}
header .right-content ul li a {
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
header .right-content ul li a.cart-btn {
  position: relative;
}
@media (max-width: 1050px) {
  header .right-content ul li a.cart-btn {
    display: none;
  }
}
header .right-content ul li a.cart-btn svg {
  width: 1.5em;
  aspect-ratio: 1/1;
}
header .right-content ul li a.cart-btn svg rect {
  fill: none;
}
header .right-content ul li a.cart-btn span.notification-bg, header .right-content ul li a.cart-btn span.notification {
  position: absolute;
  transform: translate(50%, -50%);
}
header .right-content ul li a.cart-btn span.notification-bg {
  bottom: -8px;
  right: -2px;
  display: inline-block;
  width: 1.2em;
  aspect-ratio: 1/1;
  background-color: var(--theme-red);
  border-radius: 50%;
  z-index: 4;
}
header .right-content ul li a.cart-btn span.notification {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--theme-white);
  font-size: 1rem;
  z-index: 1;
}
@media (max-width: 1050px) {
  header .right-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    transition: 0.4s;
    background-color: rgba(var(--theme-black-rgb), 0.5);
    color: var(--theme-white);
    font-size: 2rem;
  }
  header .right-content .navImgBox {
    display: inline-block;
  }
  header .right-content.active {
    height: 100vh;
  }
  header .right-content ul {
    flex-direction: column;
  }
  header .right-content ul li > a {
    font-size: 1.8rem;
  }
}
header .switch-target {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .switch-target .active {
  font-size: 1.5rem;
  line-height: 1.75;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: var(--theme-red);
}
@media (max-width: 1050px) {
  header .switch-target {
    display: none;
  }
}
header .switch-target.tab {
  display: none;
}
@media (max-width: 1050px) {
  header .switch-target.tab {
    display: flex;
  }
}
header.bg-blur {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
header.front-page {
  animation: navigationColor 20s 0s infinite;
}
@keyframes navigationColor {
  0% {
    color: var(--theme-black);
  }
  20% {
    color: var(--theme-black);
  }
  25% {
    color: var(--theme-white);
  }
  95% {
    color: var(--theme-white);
  }
  100% {
    color: var(--theme-black);
  }
}
header.front-page ul > li:last-child {
  animation: borderColor 20s 0s infinite;
}
@keyframes borderColor {
  0% {
    border-left: 1px solid var(--theme-black);
  }
  20% {
    border-left: 1px solid var(--theme-black);
  }
  25% {
    border-left: 1px solid var(--theme-white);
  }
  95% {
    border-left: 1px solid var(--theme-white);
  }
  100% {
    border-left: 1px solid var(--theme-black);
  }
}
@media (max-width: 1050px) {
  header.front-page ul > li:last-child {
    border-left: none !important;
  }
}
header.front-page ul > li:last-child a.cart-btn > svg > path {
  animation: fillColor 20s 0s infinite;
}
@keyframes fillColor {
  0% {
    fill: var(--theme-black);
  }
  20% {
    fill: var(--theme-black);
  }
  25% {
    fill: var(--theme-white);
  }
  95% {
    fill: var(--theme-white);
  }
  100% {
    fill: var(--theme-black);
  }
}
header.corporate {
  background-color: var(--theme-white);
}
header .hamburger-menu {
  display: none;
  z-index: 1;
  width: 32px;
  aspect-ratio: 1/1;
  position: relative;
}
header .hamburger-menu span.hamburger-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--theme-black);
  transition: 0.4s;
  animation: hamburgerColor 20s 0s infinite;
}
@keyframes hamburgerColor {
  0% {
    background-color: var(--theme-black);
  }
  20% {
    background-color: var(--theme-black);
  }
  25% {
    background-color: var(--theme-white);
  }
  95% {
    background-color: var(--theme-white);
  }
  100% {
    background-color: var(--theme-black);
  }
}
header .hamburger-menu span.hamburger-line:nth-child(1) {
  transition-delay: 0.4s;
  top: 0;
  left: 0;
}
header .hamburger-menu span.hamburger-line:nth-child(2) {
  transition-delay: 0.4s;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .hamburger-menu span.hamburger-line:nth-child(3) {
  transition-delay: 0.4s;
  bottom: 0;
  right: 0;
}
header .hamburger-menu span.hamburger-line:nth-child(4), header .hamburger-menu span.hamburger-line:nth-child(5) {
  transition-delay: 0s;
  width: 0%;
  top: 50%;
  left: 50%;
}
header .hamburger-menu span.hamburger-line:nth-child(4) {
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: var(--theme-white) !important;
}
header .hamburger-menu span.hamburger-line:nth-child(5) {
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: var(--theme-white) !important;
}
header .hamburger-menu.active span.hamburger-line:nth-child(1), header .hamburger-menu.active span.hamburger-line:nth-child(2), header .hamburger-menu.active span.hamburger-line:nth-child(3) {
  transition-delay: 0s;
  width: 0%;
}
header .hamburger-menu.active span.hamburger-line:nth-child(4), header .hamburger-menu.active span.hamburger-line:nth-child(5) {
  transition-delay: 0.4s;
  width: 140%;
}
@media (max-width: 1050px) {
  header .hamburger-menu {
    display: inline-block;
  }
}

/*------------------------------------------
  footer
-------------------------------------------*/
footer {
  background-color: var(--theme-gray-1);
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 40px 40px 16px;
}
@media (max-width: 480px) {
  footer {
    padding: 40px 5% 16px;
  }
}
footer div.footer-news-area {
  padding-bottom: 40px;
}
footer div.footer-news-area h2 {
  font-size: 1.7rem;
  line-height: 1.75;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}
footer div.footer-news-area h2::after {
  position: absolute;
  content: "";
  bottom: -2px;
  height: 1px;
  width: 0%;
  border-radius: 1px;
  background-color: var(--theme-gray-2);
  transition: 0.3s;
  left: 0;
  transform: translate(0, 0);
}
footer div.footer-news-area h2:hover::after {
  width: 100%;
}
footer div.footer-news-area article {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.75;
  position: relative;
  display: inline-block;
}
footer div.footer-news-area article:not(:last-child) {
  margin-bottom: 24px;
}
footer div.footer-news-area article::after {
  position: absolute;
  content: "";
  bottom: -2px;
  height: 1px;
  width: 0%;
  border-radius: 1px;
  background-color: var(--theme-gray-2);
  transition: 0.3s;
  left: 0;
  transform: translate(0, 0);
}
footer div.footer-news-area article:hover::after {
  width: 100%;
}
footer div.footer-news-area time {
  font-size: 1.3rem;
  line-height: 1.75;
  color: var(--theme-gray-6);
}
footer div.footer-instagram-area {
  padding-bottom: 40px;
}
footer div.footer-instagram-area h2 {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1.6rem;
}
footer div.footer-instagram-area h2 img {
  width: 60px;
}
footer div.footer-instagram-area div.instagram-article-area {
  display: flex;
  overflow: hidden;
}
footer div.footer-instagram-area div.instagram-article-area article {
  width: 20%;
}
footer div.footer-instagram-area div.instagram-article-area article img {
  min-width: 100%;
  width: auto;
  min-height: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
footer div.footer-instagram-area div.instagram-article-area time {
  color: var(--theme-gray-3);
}
footer div.footer-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  gap: 24px;
  padding: 40px 0;
}
footer div.footer-block div.footer-block_left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 24px;
}
@media (max-width: 480px) {
  footer div.footer-block div.footer-block_left {
    width: 100%;
    gap: 12px;
    flex-direction: row;
    border-bottom: 1px solid var(--theme-gray-2);
  }
}
footer div.footer-block div.footer-block_left div.footer-nav-area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  width: 100%;
}
footer div.footer-block div.footer-block_left div.footer-nav-area nav {
  width: 100%;
}
@media (max-width: 480px) {
  footer div.footer-block div.footer-block_left div.footer-nav-area nav {
    border-right: none;
    padding-bottom: 40px;
    margin-bottom: 0;
    border-bottom: 1px solid var(--theme-gray-2);
    border-bottom: none;
  }
}
footer div.footer-block div.footer-block_left div.footer-nav-area nav ul {
  display: flex;
  justify-content: flex-end;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px 24px;
}
@media (max-width: 480px) {
  footer div.footer-block div.footer-block_left div.footer-nav-area nav ul {
    flex-direction: column;
  }
}
footer div.footer-block div.footer-block_left div.footer-nav-area nav ul li {
  width: -moz-max-content;
  width: max-content;
}
footer div.footer-block div.footer-block_left div.footer-nav-area nav ul li a {
  font-size: 1.3rem;
  line-height: 1.75;
  position: relative;
  display: inline-block;
}
footer div.footer-block div.footer-block_left div.footer-nav-area nav ul li a::after {
  position: absolute;
  content: "";
  bottom: -2px;
  height: 1px;
  width: 0%;
  border-radius: 1px;
  background-color: var(--theme-black);
  transition: 0.3s;
  left: 50%;
  transform: translate(-50%, 0);
}
footer div.footer-block div.footer-block_left div.footer-nav-area nav ul li a:hover::after {
  width: 100%;
}
footer div.footer-block div.footer-company-area {
  display: flex;
  flex-wrap: wrap;
  width: 300px;
  align-content: flex-end;
}
footer div.footer-block div.footer-company-area span.shop-name {
  font-size: 1.7rem;
  line-height: 1.75;
  display: inline-block;
  text-align: left;
  width: 100%;
  margin-bottom: 16px;
}
footer div.footer-block div.footer-company-area span.shop-name span.small-ts {
  font-size: 1.3rem;
  line-height: 1.75;
}
footer div.footer-block div.footer-company-area span.shop-name a {
  position: relative;
  margin-left: 4px;
}
footer div.footer-block div.footer-company-area span.shop-name a svg {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 1.5em;
  line-height: 0.8;
  transition: 0.4s;
  fill: black;
}
@media (hover: hover) and (pointer: fine) {
  footer div.footer-block div.footer-company-area span.shop-name a:hover svg {
    fill: var(--theme-gray-3);
  }
}
footer div.footer-block div.footer-company-area span.shop-info {
  font-size: 1.3rem;
  line-height: 1.75;
  display: inline-block;
}
footer div.footer-block div.footer-company-area span.shop-info:nth-child(2n) {
  width: 130px;
  margin-right: 30px;
}
footer div.footer-block div.footer-company-area div.sns-icon-area {
  margin-top: 16px;
  display: flex;
  gap: 16px;
}
footer div.footer-block div.footer-company-area div.sns-icon-area a {
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
}
footer div.footer-block div.footer-company-area div.sns-icon-area a svg {
  width: 1.8em;
  fill: var(--theme-gray-3);
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  footer div.footer-block div.footer-company-area div.sns-icon-area a:hover svg {
    fill: var(--theme-black);
  }
}
footer hr {
  height: 1px;
  background-color: var(--theme-gray-2);
}
footer p.copyright {
  width: 100%;
  padding-top: 40px;
  text-align: right;
  font-size: 1.3rem;
  line-height: 1.75;
  color: var(--theme-gray-6);
}
@media (max-width: 480px) {
  footer p.copyright {
    text-align: center;
  }
}

.scrollTop {
  display: inline-block;
  position: fixed;
  bottom: 24px;
  right: 0;
  width: 160px;
  z-index: 100;
  filter: drop-shadow(0px 0px 6px #333);
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
@media (max-width: 480px) {
  .scrollTop {
    width: 150px;
    bottom: 0px;
  }
}
.scrollTop img {
  width: 100%;
}
@media (hover: hover) and (pointer: fine) {
  .scrollTop img:hover {
    animation: shake2 0.4s ease;
  }
}

/*------------------------------------------
  TOP
-------------------------------------------*/
body.home > main .firstView {
  width: 100%;
  height: 65.4296875vw;
  max-height: 1000px;
  position: relative;
}
body.home > main .firstView div.firstView-imgArea {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: none;
}
@keyframes firstView {
  0% {
    opacity: 0;
    z-index: 0;
  }
  5% {
    opacity: 1;
    z-index: 1;
  }
  25% {
    opacity: 1;
    z-index: 1;
  }
  30% {
    z-index: 0;
    z-index: 0;
  }
  100% {
    opacity: 0;
    z-index: 0;
  }
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block:nth-child(1) {
  opacity: 1;
  z-index: 1;
  animation: firstView 20s -1s infinite;
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block:nth-child(2) {
  opacity: 0;
  z-index: 0;
  animation: firstView 20s 4s infinite;
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block:nth-child(3) {
  opacity: 0;
  z-index: 0;
  animation: firstView 20s 9s infinite;
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block:nth-child(4) {
  opacity: 0;
  z-index: 0;
  animation: firstView 20s 14s infinite;
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block picture {
  width: 100%;
  height: 100%;
  grid-area: 1/1/2/3;
  overflow: hidden;
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block picture.half:nth-child(1) {
  grid-area: 1/1/2/2;
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block picture.half:nth-child(2) {
  grid-area: 1/2/2/3;
}
@media (max-width: 480px) {
  body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block picture.half:nth-child(2) {
    grid-area: 2/1/3/2;
  }
}
body.home > main .firstView div.firstView-imgArea div.firstView-imgArea_block picture img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (max-width: 480px) {
  body.home > main .firstView {
    height: 100vh;
  }
  body.home > main .firstView div.firstView-imgArea > div.firstView-imgArea_block {
    grid-template-columns: none;
    grid-template-rows: 1fr 1fr;
  }
  body.home > main .firstView div.firstView-imgArea > div.firstView-imgArea_block picture {
    grid-area: 1/1/3/2;
  }
  body.home > main .firstView div.firstView-imgArea > div.firstView-imgArea_block picture.half:nth-child(1) {
    grid-area: 1/1/2/2;
  }
  body.home > main .firstView div.firstView-imgArea > div.firstView-imgArea_block picture.half:nth-child(2) {
    grid-area: 2/1/3/2;
  }
}
body.home > main .firstView h1.catchphrase {
  width: 100%;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: var(--theme-white);
}
body.home > main .firstView h1.catchphrase span.catchphrase-text {
  display: inline-block;
  padding: 8px 4px;
  color: var(--theme-white);
  font-size: 3.2rem;
  line-height: 1.4;
  filter: drop-shadow(1px 1px 2px var(--theme-black));
}

/*------------------------------------------
  COMPANY
-------------------------------------------*/
body.page-template-page-company > main {
  position: relative;
}
body.page-template-page-company > main::after {
  position: absolute;
  content: "";
  background-image: url("../images/design/company-bg.png");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 20%;
  top: 0%;
  left: 0;
  z-index: -1;
}
body.page-template-page-company > main .company-sc-1 {
  width: min(790px, 92%);
  margin: 0 auto;
  padding: 160px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 0;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-1 {
    padding: 120px 0 0;
  }
}
body.page-template-page-company > main .company-sc-1 h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  width: 240px;
}
body.page-template-page-company > main .company-sc-1 span {
  width: min(535px, 100%);
  flex-grow: 1;
  font-size: 1.5rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-2 {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 160px;
  align-items: flex-start;
  gap: 24px 72px;
  justify-content: flex-start;
}
body.page-template-page-company > main .company-sc-2 div.img-box {
  width: min(750px, 54%);
  aspect-ratio: 11/8;
  position: relative;
  overflow: hidden;
}
body.page-template-page-company > main .company-sc-2 div.img-box picture.parallax-img {
  display: inline-block;
  position: absolute;
  top: -10%;
  left: 0%;
  width: 120%;
  height: 120%;
}
body.page-template-page-company > main .company-sc-2 div.img-box picture.parallax-img img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
body.page-template-page-company > main .company-sc-2 div.content-box {
  background-color: transparent;
  width: 370px;
  text-align: left;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
body.page-template-page-company > main .company-sc-2 div.content-box p, body.page-template-page-company > main .company-sc-2 div.content-box span {
  display: inline-block;
  width: 100%;
}
body.page-template-page-company > main .company-sc-2 div.content-box span.tag {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-2 div.content-box h3.caption {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-2 div.content-box .label {
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-company > main .company-sc-2 div.content-box p.comment {
  font-size: 1.5rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-2 div.content-box .btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-gray-3);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
body.page-template-page-company > main .company-sc-2 div.content-box .btn:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}
@media (max-width: 1050px) {
  body.page-template-page-company > main .company-sc-2 {
    justify-content: center;
  }
  body.page-template-page-company > main .company-sc-2 div.img-box {
    width: min(750px, 100%);
  }
  body.page-template-page-company > main .company-sc-2 div.content-box {
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-2 {
    padding-top: 120px;
  }
}
body.page-template-page-company > main .company-sc-3 {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 160px;
  align-items: flex-start;
  gap: 24px 72px;
  justify-content: flex-end;
}
body.page-template-page-company > main .company-sc-3 div.img-box {
  width: min(750px, 54%);
  aspect-ratio: 11/8;
  position: relative;
  overflow: hidden;
}
body.page-template-page-company > main .company-sc-3 div.img-box picture.parallax-img {
  display: inline-block;
  position: absolute;
  top: -10%;
  left: 0%;
  width: 120%;
  height: 120%;
}
body.page-template-page-company > main .company-sc-3 div.img-box picture.parallax-img img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
body.page-template-page-company > main .company-sc-3 div.content-box {
  background-color: transparent;
  width: 370px;
  text-align: left;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
body.page-template-page-company > main .company-sc-3 div.content-box p, body.page-template-page-company > main .company-sc-3 div.content-box span {
  display: inline-block;
  width: 100%;
}
body.page-template-page-company > main .company-sc-3 div.content-box span.tag {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-3 div.content-box h3.caption {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-3 div.content-box .label {
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-company > main .company-sc-3 div.content-box p.comment {
  font-size: 1.5rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-3 div.content-box .btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-gray-3);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
body.page-template-page-company > main .company-sc-3 div.content-box .btn:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}
@media (max-width: 1050px) {
  body.page-template-page-company > main .company-sc-3 {
    justify-content: center;
  }
  body.page-template-page-company > main .company-sc-3 div.img-box {
    width: min(750px, 100%);
  }
  body.page-template-page-company > main .company-sc-3 div.content-box {
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-3 {
    padding-top: 120px;
  }
}
@media (max-width: 1050px) {
  body.page-template-page-company > main .company-sc-3 .img-box {
    order: 1;
  }
  body.page-template-page-company > main .company-sc-3 .content-box {
    order: 2;
  }
}
body.page-template-page-company > main .company-sc-4 {
  padding-top: 120px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
body.page-template-page-company > main .company-sc-4 h2.section-header {
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
  opacity: 0;
  scale: 1.15;
  width: min(1280px, 92%);
  margin: 0 auto;
}
body.page-template-page-company > main .company-sc-4 figure.gallery-box {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(24px, 24px + 16 * (100vw - 480px) / 920, 40px);
  opacity: 0;
}
body.page-template-page-company > main .company-sc-4 figure.gallery-box picture {
  width: min(40%, 600px);
  height: auto;
  flex-grow: 1;
  aspect-ratio: 3/2;
}
body.page-template-page-company > main .company-sc-4 figure.gallery-box picture img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-page-company > main .company-sc-4 figure.gallery-box figcaption {
  width: 50%;
  font-size: 1.4rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-4 figure.gallery-box:nth-of-type(1) > figcaption {
  padding-right: 4%;
}
body.page-template-page-company > main .company-sc-4 figure.gallery-box:nth-of-type(2) > figcaption {
  padding-left: 4%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-4 figure.gallery-box:nth-of-type(1) {
    flex-direction: column;
  }
  body.page-template-page-company > main .company-sc-4 figure.gallery-box:nth-of-type(1) figcaption {
    width: 100%;
    padding-left: 4%;
  }
  body.page-template-page-company > main .company-sc-4 figure.gallery-box:nth-of-type(1) picture {
    width: 100%;
  }
  body.page-template-page-company > main .company-sc-4 figure.gallery-box:nth-of-type(2) {
    flex-direction: column-reverse;
  }
  body.page-template-page-company > main .company-sc-4 figure.gallery-box:nth-of-type(2) figcaption {
    width: 100%;
    padding-right: 4%;
  }
  body.page-template-page-company > main .company-sc-4 figure.gallery-box:nth-of-type(2) picture {
    width: 100%;
  }
}
body.page-template-page-company > main .company-sc-5 {
  padding-top: 96px;
  overflow-x: hidden;
  width: min(600px, 92%);
  margin: 0 auto;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-5 {
    padding-top: 56px;
  }
  body.page-template-page-company > main .company-sc-5 div.about-us-area {
    width: calc(100% - 80px);
  }
  body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box {
    width: 100%;
  }
}
body.page-template-page-company > main .company-sc-5 h2.section-header {
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  scale: 1.15;
}
body.page-template-page-company > main .company-sc-5 div.about-us-area {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  gap: clamp(40px, 40px + 24 * (100vw - 480px) / 920, 64px);
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box {
  opacity: 0;
  width: 250px;
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box picture.img-box {
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box picture.img-box img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
@media (hover: hover) and (pointer: fine) {
  body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box picture.img-box img:hover {
    transform: scale(1.2);
  }
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box figcaption {
  padding-top: 24px;
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box figcaption p.job-title {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box figcaption p.name {
  font-size: 2rem;
  line-height: 1.6;
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box figcaption p.name-en {
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box figcaption p.shop-name {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-5 div.about-us-area figure.about-us-box figcaption p.description {
  font-size: 1.5rem;
  line-height: 1.75;
}
body.page-template-page-company > main .company-sc-6 {
  width: min(1024px, 100%);
  margin: 0 auto;
  padding: 160px 0 0;
  overflow-x: hidden;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 {
    padding: 120px 0 0;
  }
}
body.page-template-page-company > main .company-sc-6 h2.section-header {
  font-size: 3.2rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 64px;
  opacity: 0;
  scale: 1.15;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 h2.section-header {
    margin-bottom: 108px;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram {
  width: 80%;
  margin: 0 auto;
  aspect-ratio: 2/12;
  position: relative;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram {
    width: 100%;
    aspect-ratio: 2/20;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box {
  opacity: 0;
  background-color: var(--theme-white);
  width: 50%;
  position: absolute;
  z-index: 1;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box {
    width: 100%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box::before {
  position: absolute;
  top: 0;
  transform: translate(0%, -70%);
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 100;
  z-index: 1;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(2n-1) {
  left: 0;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(2n-1)::before {
  left: 8px;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(2n) {
  right: 0;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(2n)::before {
  right: 8px;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(2n)::before {
    right: auto;
    left: 8px;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(1) {
  top: 0;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(1)::before {
  content: "1946";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(2) {
  top: 10%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(2) {
    top: 10.5%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(2)::before {
  content: "1947";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(3) {
  top: 20%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(3) {
    top: 21%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(3)::before {
  content: "1969";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(4) {
  top: 30%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(4) {
    top: 31.5%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(4)::before {
  content: "1972";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(5) {
  top: 40%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(5) {
    top: 42%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(5)::before {
  content: "1972";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(6) {
  top: 50%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(6) {
    top: 52.5%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(6)::before {
  content: "1994";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(7) {
  top: 60%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(7) {
    top: 63%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(7)::before {
  content: "1998";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(8) {
  top: 70%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(8) {
    top: 73.5%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(8)::before {
  content: "2012";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(9) {
  top: 80%;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(9) {
    top: 84%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box:nth-of-type(9)::before {
  content: "2022";
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box picture {
  display: inline-block;
  width: 100%;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box picture img {
  vertical-align: top;
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box figcaption {
  font-size: 1.5rem;
  line-height: 1.75;
  width: 100%;
}
@media (max-width: 1050px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram figure.img-box figcaption {
    padding: 0 40px;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border {
  position: absolute;
  width: 46%;
  aspect-ratio: 6/5;
  border-top: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(2n-1) {
  left: 27%;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(2n) {
  right: 27%;
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(1) {
  top: 4%;
  border-right: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(2) {
  top: 14%;
  border-left: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(3) {
  top: 24%;
  border-right: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(4) {
  top: 34%;
  border-left: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(5) {
  top: 44%;
  border-right: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(6) {
  top: 54%;
  border-left: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(7) {
  top: 64%;
  border-right: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(8) {
  top: 74%;
  border-left: 1px solid var(--theme-black);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(9) {
  top: 84%;
  aspect-ratio: 4/3;
  border-right: 1px solid var(--theme-black);
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(9) {
    top: 86.5%;
  }
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(9)::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 25%;
  border-left: 1px solid var(--theme-black);
  border-top: 1px solid var(--theme-black);
  right: 0;
  bottom: 1px;
  transform: translate(0, 100%);
}
body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:nth-of-type(9)::after {
  position: absolute;
  content: "NOW";
  font-size: 4rem;
  left: 50%;
  bottom: -25%;
  transform: translate(-50%, 100%);
  font-weight: 100;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 480px) {
  body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:not(:last-child) {
    display: none;
  }
  body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:last-child {
    aspect-ratio: unset;
    height: 1px;
  }
  body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:last-child::before {
    height: 300px;
  }
  body.page-template-page-company > main .company-sc-6 div.flow-diagram div.flow-border:last-child::after {
    bottom: -325px;
  }
}

/*------------------------------------------
  MEAT PAPA
-------------------------------------------*/
body.page-template-page-meat-papa > main {
  position: relative;
}
body.page-template-page-meat-papa > main::after {
  position: absolute;
  content: "";
  background-color: #ffe5e5;
  width: 50%;
  height: 100%;
  background-repeat: repeat-y;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}
body.page-template-page-meat-papa > main .meat-papa-sc-1 {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  background-color: var(--theme-white);
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-1 {
    height: 100vh;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-1 div.meat-papa-centerContent {
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.page-template-page-meat-papa > main .meat-papa-sc-1 div.meat-papa-centerContent picture {
  display: inline-block;
  width: min(90%, 400px);
  aspect-ratio: 1/1;
  margin-bottom: clamp(4px, 2vw, 64px);
}
body.page-template-page-meat-papa > main .meat-papa-sc-1 div.meat-papa-centerContent picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body.page-template-page-meat-papa > main .meat-papa-sc-1 div.meat-papa-centerContent span.textBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
body.page-template-page-meat-papa > main .meat-papa-sc-1 div.meat-papa-centerContent span.textBox span {
  font-size: 2.4rem;
  line-height: 1.45;
  text-align: center;
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-1 div.meat-papa-centerContent span.textBox span {
    display: inline-block;
    width: 100%;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-1 div.meat-papa-centerContent svg > path {
  stroke-dasharray: 3px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 {
  width: min(1024px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 160px;
  align-items: flex-start;
  gap: 24px 72px;
  position: relative;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.img-box {
  width: min(750px, 54%);
  aspect-ratio: 11/8;
  position: relative;
  overflow: hidden;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.img-box picture.parallax-img {
  display: inline-block;
  position: absolute;
  top: -10%;
  left: 0%;
  width: 120%;
  height: 120%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.img-box picture.parallax-img img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box {
  background-color: transparent;
  width: 370px;
  text-align: left;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box p, body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box span {
  display: inline-block;
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box span.tag {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box h3.caption {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box .label {
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box p.comment {
  font-size: 1.5rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box .btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-gray-3);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box .btn:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}
@media (max-width: 1050px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-2 {
    justify-content: center;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-2 div.img-box {
    width: min(750px, 100%);
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box {
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-2 {
    padding-top: 120px;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.img-box {
  aspect-ratio: 1/1;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.img-box picture.point-4 {
  position: absolute;
  top: 50%;
  left: 35%;
  z-index: 10;
  width: 30%;
  opacity: 0;
  scale: 0.1;
}
body.page-template-page-meat-papa > main .meat-papa-sc-2 div.content-box {
  padding-top: 40px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-3 {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 160px 0 0;
  text-align: center;
  padding-bottom: 0;
}
body.page-template-page-meat-papa > main .meat-papa-sc-3 span {
  display: inline-block;
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-3 span.tag {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-3 h2.label {
  font-size: 2.4rem;
  line-height: 1.45;
  margin-bottom: 2.4rem;
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-3 {
    padding: 80px 0 0;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-3 figure {
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-3 figure picture.img-box {
  display: inline-block;
  width: 100%;
  margin-bottom: 24px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-3 figure picture.img-box img {
  vertical-align: top;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
body.page-template-page-meat-papa > main .meat-papa-sc-3 figure figcaption {
  text-align: left;
  margin-bottom: 2.4rem;
  font-size: 1.5rem;
  line-height: 1.75;
}
@media (max-width: 1050px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-3 figure figcaption {
    padding: 0 40px;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 {
  width: min(580px, 92%);
  margin: 0 auto;
  padding: 160px 0 0;
  text-align: center;
  padding: 256px 0 0px;
  position: relative;
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 span {
  display: inline-block;
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 span.tag {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 h2.label {
  font-size: 2.4rem;
  line-height: 1.45;
  margin-bottom: 2.4rem;
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 picture.point-1 {
  position: absolute;
  top: 120px;
  left: calc(50% - 84px);
  width: 168px;
  height: auto;
  z-index: 9;
  filter: drop-shadow(0px 0px 6px #555);
}
@media (hover: hover) and (pointer: fine) {
  body.page-template-page-meat-papa > main .meat-papa-sc-4 picture.point-1:hover {
    animation: shake2 0.4s ease;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 picture.point-1 img {
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 div.doubleBox {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 div.doubleBox div.doubleBox-imageArea {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-4 div.doubleBox div.doubleBox-imageArea {
    width: 100%;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 div.doubleBox div.doubleBox-imageArea picture {
  width: 205px;
  aspect-ratio: 1/1;
  display: inline-block;
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-4 div.doubleBox div.doubleBox-imageArea picture {
    width: calc(50% - 5px);
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 div.doubleBox div.doubleBox-imageArea picture img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-page-meat-papa > main .meat-papa-sc-4 div.doubleBox div.doubleBox-content {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: left;
  padding: 24px 20px 0;
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 160px;
  align-items: flex-start;
  gap: 24px 72px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.img-box {
  width: min(750px, 54%);
  aspect-ratio: 11/8;
  position: relative;
  overflow: hidden;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.img-box picture.parallax-img {
  display: inline-block;
  position: absolute;
  top: -10%;
  left: 0%;
  width: 120%;
  height: 120%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.img-box picture.parallax-img img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box {
  background-color: transparent;
  width: 370px;
  text-align: left;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box p, body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box span {
  display: inline-block;
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box span.tag {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box h3.caption {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box .label {
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box p.comment {
  font-size: 1.5rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box .btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-gray-3);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box .btn:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}
@media (max-width: 1050px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-5 {
    justify-content: center;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-5 div.img-box {
    width: min(750px, 100%);
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box {
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-5 {
    padding-top: 120px;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-5 div.content-box {
  padding-top: 40px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  padding-top: 160px;
  align-items: flex-start;
  gap: 24px 72px;
  justify-content: flex-end;
  position: relative;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.img-box {
  width: min(750px, 54%);
  aspect-ratio: 11/8;
  position: relative;
  overflow: hidden;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.img-box picture.parallax-img {
  display: inline-block;
  position: absolute;
  top: -10%;
  left: 0%;
  width: 120%;
  height: 120%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.img-box picture.parallax-img img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box {
  background-color: transparent;
  width: 370px;
  text-align: left;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box p, body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box span {
  display: inline-block;
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box span.tag {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box h3.caption {
  width: 100%;
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box .label {
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box p.comment {
  font-size: 1.5rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box .btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-gray-3);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box .btn:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}
@media (max-width: 1050px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-6 {
    justify-content: center;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-6 div.img-box {
    width: min(750px, 100%);
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box {
    width: 92%;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-6 {
    padding-top: 120px;
  }
}
@media (max-width: 1050px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-6 {
    padding: 40px 0 0px;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 div.content-box {
  background-color: transparent;
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 picture.point-2 {
  position: absolute;
  bottom: 136px;
  left: 44%;
  width: 110px;
  height: auto;
  z-index: 9;
}
@media (max-width: 1050px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-6 picture.point-2 {
    left: calc(20% - 55px);
  }
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-6 picture.point-2 {
    right: 10%;
    left: auto;
    top: 20px;
    bottom: auto;
  }
}
@media (hover: hover) and (pointer: fine) {
  body.page-template-page-meat-papa > main .meat-papa-sc-6 picture.point-2:hover {
    animation: shake 0.4s ease;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-6 picture.point-2 img {
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 {
  width: min(1024px, 100%);
  margin: 0 auto;
  padding: 160px 0 0;
  text-align: center;
  padding-bottom: 160px;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 span {
  display: inline-block;
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 span.tag {
  font-size: 1.3rem;
  line-height: 1.75;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 h2.label {
  font-size: 2.4rem;
  line-height: 1.45;
  margin-bottom: 2.4rem;
}
@media (max-width: 1050px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-7 {
    padding-bottom: 20px;
  }
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-7 {
    padding-top: 120px;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 {
  display: grid;
  gap: 5px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 4fr 2fr 2fr 3fr 1fr 1fr 6fr;
  justify-content: space-around;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 4fr 2fr 3fr 5fr 4fr 2fr 6fr 1fr 5fr;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture {
  display: inline-block;
  width: 100%;
  height: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(1) {
  grid-area: 1/1/3/2;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(2) {
  grid-area: 1/2/2/3;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(3) {
  grid-area: 1/3/4/4;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(4) {
  grid-area: 3/1/5/2;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(5) {
  grid-area: 2/2/6/3;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(6) {
  grid-area: 4/3/7/4;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(7) {
  grid-area: 5/1/8/2;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(8) {
  grid-area: 6/2/8/3;
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(9) {
  grid-area: 7/3/8/4;
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(1) {
    grid-area: 1/1/3/2;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(2) {
    grid-area: 1/2/2/3;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(3) {
    grid-area: 3/1/5/2;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(4) {
    grid-area: 2/2/4/3;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(5) {
    grid-area: 4/2/6/3;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(6) {
    grid-area: 5/1/7/2;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(7) {
    grid-area: 6/2/8/3;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(8) {
    grid-area: 7/1/9/2;
  }
  body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture:nth-child(9) {
    grid-area: 8/2/10/3;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-7 div.grid-gallery-2 picture img {
  vertical-align: top;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.page-template-page-meat-papa > main .meat-papa-sc-8 {
  position: relative;
  width: 100%;
}
body.page-template-page-meat-papa > main .meat-papa-sc-8 div.walkBox {
  overflow: hidden;
  position: absolute;
  z-index: 9;
  bottom: -80px;
  left: 0;
  width: 100%;
}
@media (max-width: 480px) {
  body.page-template-page-meat-papa > main .meat-papa-sc-8 div.walkBox {
    bottom: -30px;
  }
}
body.page-template-page-meat-papa > main .meat-papa-sc-8 div.walkBox picture.point-3 {
  display: inline-block;
  width: 30vw;
  transform: translate(-30vw, 0);
}
body.page-template-page-meat-papa > main .meat-papa-sc-8 div.walkBox picture.point-3 img {
  width: 100%;
  transform: rotateY(180deg);
}

/*------------------------------------------
  NEWS
-------------------------------------------*/
section.news-sc-1 {
  width: min(790px, 92%);
  margin: 0 auto;
  padding: 160px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 0;
}
@media (max-width: 480px) {
  section.news-sc-1 {
    padding: 120px 0 0;
  }
}
section.news-sc-1 h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  width: 240px;
}
section.news-sc-1 span {
  width: min(535px, 100%);
  flex-grow: 1;
  font-size: 1.5rem;
  line-height: 1.75;
}

section.news-sc-2 div.newsList {
  width: min(1024px, 92%);
  margin: 0 auto;
  padding: 120px 0 100px;
}
section.news-sc-2 div.newsList article {
  border-top: 1px solid var(--theme-gray-1);
}
section.news-sc-2 div.newsList article:last-child {
  border-bottom: 1px solid var(--theme-gray-1);
}
section.news-sc-2 div.newsList article a {
  display: flex;
  flex-wrap: wrap;
  padding: 12px;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  section.news-sc-2 div.newsList article a:hover {
    background-color: var(--theme-pink);
  }
}
section.news-sc-2 div.newsList article a div.newsList_eyeCatch {
  width: 30%;
  aspect-ratio: 4/3;
  max-height: 170px;
}
@media (max-width: 780px) {
  section.news-sc-2 div.newsList article a div.newsList_eyeCatch {
    max-height: 100%;
    width: 100%;
  }
}
section.news-sc-2 div.newsList article a div.newsList_eyeCatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.news-sc-2 div.newsList div.newsList_content {
  width: 70%;
  padding: 8px 24px;
}
@media (max-width: 780px) {
  section.news-sc-2 div.newsList div.newsList_content {
    width: 100%;
  }
}
section.news-sc-2 div.newsList div.newsList_content time.newsList_time {
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--theme-gray-6);
}
section.news-sc-2 div.newsList div.newsList_content h3.newsList_title {
  font-size: 1.7rem;
  line-height: 1.75;
}
section.news-sc-2 div.newsList div.newsList_content p {
  margin-top: 12px;
  font-size: 1.5rem;
  line-height: 1.75;
}
section.news-sc-2 div.newsList div.newsList_content p span.more {
  display: inline-block;
  border: 1px solid gray;
  padding: 0px 4px;
  border-radius: 8px;
  background-color: var(--theme-white);
}
section.news-sc-2 nav.navigation {
  margin-bottom: 120px;
}
section.news-sc-2 nav.navigation div.nav-links {
  width: min(1024px, 92%);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
section.news-sc-2 nav.navigation div.nav-links .page-numbers {
  width: 32px;
  height: 32px;
  margin: 0 2px;
  display: grid;
  justify-items: center;
  align-items: center;
  border: 1px solid var(--theme-black);
}
section.news-sc-2 nav.navigation div.nav-links span.page-numbers:not(.dots) {
  background-color: var(--theme-black);
  color: var(--theme-white);
}

section.singleNews-sc {
  width: min(1024px, 100%);
  margin: 0 auto;
  padding-bottom: 120px;
}
section.singleNews-sc div.singleNews-headline {
  width: min(790px, 92%);
  margin: 0 auto;
  margin-bottom: 60px;
}
section.singleNews-sc div.singleNews-headline time.singleNews-headline_time span {
  font-size: 1.5rem;
  line-height: 1.75;
  color: var(--theme-gray-6);
}
section.singleNews-sc div.singleNews-headline h2 {
  font-size: 2.4rem;
  line-height: 1.45;
}
section.singleNews-sc div.singleNews-headline_eyeCatch {
  width: min(790px, 100%);
  margin: 0 auto;
  aspect-ratio: 5/3;
  margin: 0 auto 40px;
}
section.singleNews-sc div.singleNews-headline_eyeCatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.singleNews-sc div.singleNews-body {
  border-top: 1px solid var(--theme-gray-6);
  width: min(790px, 92%);
  margin: 0 auto;
}
section.singleNews-sc div.singleNews-body div.singleNews-body_content {
  padding: 40px 0 120px;
}
section.singleNews-sc div.singleNews-btn-area {
  text-align: center;
}
section.singleNews-sc div.singleNews-btn-area a.btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-gray-3);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
  margin-bottom: 120px;
}
section.singleNews-sc div.singleNews-btn-area a.btn:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}

/*------------------------------------------
  CONTACT
-------------------------------------------*/
section.contact-sc-1 {
  width: min(790px, 92%);
  margin: 0 auto;
  padding: 160px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 0;
}
@media (max-width: 480px) {
  section.contact-sc-1 {
    padding: 120px 0 0;
  }
}
section.contact-sc-1 h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  width: 240px;
}
section.contact-sc-1 span {
  width: min(535px, 100%);
  flex-grow: 1;
  font-size: 1.5rem;
  line-height: 1.75;
}
section.contact-sc-1.thanks {
  padding-bottom: 220px;
}
section.contact-sc-1.thanks p {
  padding-top: 20px;
}

section.contact-sc-2 {
  margin: 100px 0 0;
  width: 100%;
  background-color: var(--theme-gray-4);
  display: flex;
  flex-direction: column;
  align-items: center;
}
section.contact-sc-2 h2 {
  font-size: 2rem;
  line-height: 1.6;
  margin: 40px auto;
  width: -moz-max-content;
  width: max-content;
}
section.contact-sc-2 div.contactForm {
  display: flex;
  margin: 0 auto;
}
@media (max-width: 780px) {
  section.contact-sc-2 div.contactForm {
    width: calc(100% - 80px);
    margin: 0 40px;
  }
}
section.contact-sc-2 div.contactForm div.contactForm-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
section.contact-sc-2 div.contactForm div.contactForm-line:not(:nth-child(2)) {
  margin-top: 40px;
}
section.contact-sc-2 div.contactForm div.contactForm-line label {
  min-width: 150px;
  padding-bottom: 8px;
  margin-right: 40px;
  text-align: right;
  height: -moz-min-content;
  height: min-content;
  font-size: 1.4rem;
  line-height: 1.75;
}
@media (max-width: 780px) {
  section.contact-sc-2 div.contactForm div.contactForm-line label {
    min-width: 100%;
    margin-right: 0;
    text-align: left;
  }
}
section.contact-sc-2 div.contactForm div.contactForm-line label span {
  position: relative;
  display: inline-block;
  padding-right: 38px;
}
section.contact-sc-2 div.contactForm div.contactForm-line label span::after {
  position: absolute;
  color: var(--theme-red);
  font-size: 1.3rem;
  line-height: 1.75;
  content: "必須";
  top: 0;
  right: 0;
}
section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea {
  display: flex;
  width: 452px;
  justify-content: space-between;
}
@media (max-width: 780px) {
  section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea {
    width: 100%;
    margin-right: 0;
    text-align: left;
  }
}
section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea div.contactForm-line_inputArea_double {
  width: 218px;
}
@media (max-width: 780px) {
  section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea div.contactForm-line_inputArea_double {
    width: calc(50% - 8px);
  }
}
section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span {
  display: inline-block;
  width: 100%;
}
section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span input {
  font-size: 1.4rem;
  line-height: 1.75;
  height: 48px;
}
section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span textarea {
  height: 157px;
}
section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span input, section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span textarea {
  width: 100%;
  padding: 14px 20px;
  border: 3px solid var(--theme-gray-5);
  background-color: var(--theme-white);
  border-radius: 8px;
}
section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span input::-moz-placeholder, section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span textarea::-moz-placeholder {
  color: var(--theme-gray-2);
}
section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span input::placeholder, section.contact-sc-2 div.contactForm div.contactForm-line div.contactForm-line_inputArea span textarea::placeholder {
  color: var(--theme-gray-2);
}
section.contact-sc-2 div.contactForm div.contactForm-btnArea {
  flex-direction: column-reverse;
  align-items: center;
  display: flex;
  padding: 0 0 56px 0;
}
section.contact-sc-2 div.contactForm div.contactForm-btnArea input {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-gray-3);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
section.contact-sc-2 div.contactForm div.contactForm-btnArea input:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}

/*------------------------------------------
  オンラインショップ 共通
-------------------------------------------*/
div.wc-btnArea {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
div.wc-btnArea.sp {
  display: none;
}
@media (max-width: 480px) {
  div.wc-btnArea.sp {
    display: flex;
  }
}
div.wc-btnArea a.btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-black);
  color: var(--theme-white);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
  border: 1px solid var(--theme-black);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
div.wc-btnArea a.btn:hover {
  background-color: var(--theme-white);
  color: var(--theme-black);
}
div.wc-btnArea a.btn span.item-cnt {
  display: grid;
  aspect-ratio: 1/1;
  width: 1.8em;
  place-items: center;
  border-radius: 50%;
  background-color: var(--theme-gray-3);
  color: var(--theme-white);
}

div.wc-fixed-btn {
  display: none;
  position: fixed;
  left: 24px;
  bottom: 12px;
  z-index: 1;
}
@media (max-width: 1050px) {
  div.wc-fixed-btn {
    display: inline-block;
    opacity: 0;
  }
}
div.wc-fixed-btn a.btn {
  background-color: var(--theme-white);
  padding: 0;
  width: 80px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border-radius: 40px;
  filter: drop-shadow(1px 3px 3px #333);
}
div.wc-fixed-btn a.btn svg {
  width: 1.8em;
  aspect-ratio: 1/1;
}
div.wc-fixed-btn a.btn svg rect {
  fill: none;
}

/*------------------------------------------
  オンラインショップ 商品一覧
-------------------------------------------*/
.shop-sc-1 {
  width: 100%;
  padding: clamp(64px, 12vw, 120px) 0;
  background-image: url("../images/design/shop-header.png");
  background-size: cover;
  background-position: 60% 50%;
}
.shop-sc-1 div.shop-header_content {
  width: min(780px, 80%);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 8px 40px;
  align-items: center;
}
@media (max-width: 780px) {
  .shop-sc-1 div.shop-header_content {
    flex-direction: column;
    align-items: flex-start;
  }
}
.shop-sc-1 div.shop-header_content h1 {
  font-size: 3.2rem;
  line-height: 1.4;
}
.shop-sc-1 div.shop-header_content div.content {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.shop-sc2 {
  width: min(1280px, 90%);
  margin: 0 auto 120px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.shop-sc2 div.side-menu-wrapper {
  padding-top: 160px;
  width: 250px;
  position: relative;
  background-color: var(--theme-white);
}
.shop-sc2 div.side-menu-wrapper div.side-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 120px;
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.category-area {
  flex-grow: 1;
  margin-bottom: 40px;
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.category-area div.label {
  font-size: 2.4rem;
  line-height: 1.45;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--theme-gray-2);
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul {
  display: flex;
  flex-direction: column;
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li {
  border-bottom: 1px solid var(--theme-gray-2);
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li a span {
  color: var(--theme-gray-3);
  transition: 0.4s;
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li a svg {
  width: 1.2em;
}
@media (hover: hover) and (pointer: fine) {
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li a:hover span {
    color: var(--theme-black);
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li a:hover svg {
    transform: rotateX(180deg);
    animation: arrow-animation 3s infinite;
  }
  @keyframes arrow-animation {
    0% {
      transform: rotateX(0deg);
    }
    100% {
      transform: rotateX(360deg);
    }
  }
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li a.active span {
  color: var(--theme-black);
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.wc-btnArea a.btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-white);
  color: var(--theme-black);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.wc-btnArea a.btn:hover {
  background-color: var(--theme-black);
  color: var(--theme-white);
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.wc-btnArea a.btn svg {
  transition: 0.4s;
  fill: var(--theme-black);
  width: 1.5em;
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.wc-btnArea a.btn span.cart_count {
  display: grid;
  place-items: center;
  width: 24px;
  aspect-ratio: 1/1;
  background-color: var(--theme-red);
  color: var(--theme-white);
  font-size: 1rem;
  border-radius: 50%;
}
@media (hover: hover) and (pointer: fine) {
  .shop-sc2 div.side-menu-wrapper div.side-menu div.wc-btnArea a.btn:hover svg {
    fill: var(--theme-white);
  }
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.supplement-area {
  text-align: right;
}
.shop-sc2 div.side-menu-wrapper div.side-menu div.supplement-area span {
  font-size: 1.2rem;
}
@media (max-width: 1050px) {
  .shop-sc2 div.side-menu-wrapper {
    padding-top: 40px;
    width: 100%;
    position: sticky;
    top: -84px;
    padding-bottom: 12px;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu {
    flex-direction: row;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area {
    margin-bottom: 0;
    overflow-x: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area::-webkit-scrollbar {
    display: none;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area div.label {
    display: none;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul {
    flex-direction: row;
    width: -moz-max-content;
    width: max-content;
    gap: 0 20px;
    border-bottom: 1px solid var(--theme-gray-2);
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li {
    border-bottom: none;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li.active {
    border-bottom: 1px solid var(--theme-black);
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li svg {
    display: none;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.category-area ul li a {
    text-align: center;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.wc-btnArea {
    display: none;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu div.supplement-area {
    display: none;
  }
}
@media (max-width: 480px) {
  .shop-sc2 div.side-menu-wrapper {
    padding-top: 24px;
    position: relative;
    padding-top: 0;
    top: auto;
  }
  .shop-sc2 div.side-menu-wrapper div.side-menu {
    flex-direction: column;
  }
}
.shop-sc2 div.shop-list {
  padding-top: 160px;
  width: calc(100% - 274px);
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 32px 24px;
}
@media (max-width: 1050px) {
  .shop-sc2 div.shop-list {
    width: 100%;
    padding-top: 0px;
  }
}
.shop-sc2 div.shop-list div.item-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  flex-grow: 1;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper a.img-box {
  width: 100%;
  aspect-ratio: 1/1;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper a.img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info {
  display: flex;
  flex-direction: column;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info .title {
  font-size: 1.6rem;
  padding-bottom: 8px;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info .variation_list {
  display: flex;
  gap: 8px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  height: 100%;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info .variation_list select.variation_select {
  min-width: 120px;
  line-height: 1.8em;
  padding: 4px;
  border: 1px solid var(--theme-gray-2);
  -moz-appearance: menulist-button;
  -webkit-appearance: menulist-button;
  appearance: menulist-button;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info .variation_list div.price {
  display: none;
  flex-direction: row;
  gap: 4px;
  display: none;
  align-items: flex-end;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info .variation_list div.price.on {
  display: flex;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info .variation_list div.price span.sale {
  display: inline-block;
  padding: 0 8px;
  color: var(--theme-red);
  border: 1px solid var(--theme-red);
  background-color: var(--theme-white);
  margin-bottom: 0.4em;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info .variation_list div.price span.dispPrice {
  font-size: 1.4em;
  margin-bottom: 0.12em;
}
.shop-sc2 div.shop-list div.item-box .info-wrapper .item-info .variation_list div.price del {
  text-decoration: line-through;
  color: var(--theme-gray-3);
  margin-bottom: 0.2em;
}
.shop-sc2 div.shop-list div.item-box form.cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.shop-sc2 div.shop-list div.item-box form.cart input {
  margin-left: 8px;
  min-width: 45px;
  line-height: 1.8em;
  text-align: right;
  padding: 0 0 0 4px;
  border: 1px solid var(--theme-gray-2);
}
.shop-sc2 div.shop-list div.item-box form.cart button {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-black);
  color: var(--theme-white);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
  border: 1px solid var(--theme-black);
}
.shop-sc2 div.shop-list div.item-box form.cart button:hover {
  background-color: var(--theme-white);
  color: var(--theme-black);
}
.shop-sc2 div.shop-list div.item-box form.toggle-btn {
  display: none;
}
.shop-sc2 div.shop-list div.item-box form.toggle-btn.on {
  display: flex;
}
.shop-sc2 div.shop-list div.item-box .sold-out {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  padding: 16px;
  border: 1px solid var(--theme-gray-3);
  background-color: var(--theme-gray-3);
  color: var(--theme-white);
}

/*------------------------------------------
  オンラインショップ個別商品
-------------------------------------------*/
.shop-product-sc-2 {
  width: min(1024px, 90%);
  margin: 0 auto;
  position: relative;
}
@media (max-width: 480px) {
  .shop-product-sc-2 {
    padding-top: 80px;
  }
}
.shop-product-sc-2 .product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.shop-product-sc-2 .product-container div.product-name {
  padding-top: 160px;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.45;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container div.product-name {
    padding-top: 160px;
  }
}
@media (max-width: 480px) {
  .shop-product-sc-2 .product-container div.product-name {
    padding-top: 24px;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper {
    grid-template-columns: 1fr;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .img-box {
  grid-area: 1/1/2/2;
  width: 100%;
  height: auto;
}
.shop-product-sc-2 .product-container .product-main-wrapper .img-box img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.shop-product-sc-2 .product-container .product-main-wrapper .img-box .woocommerce-product-gallery-img {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
.shop-product-sc-2 .product-container .product-main-wrapper .img-box .woocommerce-product-gallery-img .gallery-img {
  cursor: pointer;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper {
  grid-area: 1/2/3/3;
  background-color: var(--theme-white);
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper {
    grid-area: 2/1/3/2;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info {
  position: sticky;
  top: 120px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 24px;
  width: 100%;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info {
    padding-top: 40px;
    grid-template-columns: 3fr 1fr;
    position: relative;
    top: auto;
  }
}
@media (max-width: 480px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info {
    grid-template-columns: 1fr;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-content {
    grid-area: 1/1/2/2;
  }
}
@media (max-width: 480px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-content {
    grid-area: 1/1/2/2;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-content div.product-short_description {
  width: 100%;
  line-height: 210%;
  letter-spacing: 0.4px;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-content div.product-short_description strong {
  font-weight: 500;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation {
    grid-area: 2/1/3/2;
  }
}
@media (max-width: 480px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation {
    grid-area: 2/1/3/2;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation .variation_list {
  width: 100%;
  gap: 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation .variation_list select.variation_select {
  line-height: 1.8em;
  padding: 4px;
  border: 1px solid var(--theme-gray-2);
  -moz-appearance: menulist-button;
  -webkit-appearance: menulist-button;
  appearance: menulist-button;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation .variation_list div.price {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  display: none;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation .variation_list div.price {
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation .variation_list div.price.on {
  display: flex;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation .variation_list div.price span.sale {
  display: inline-block;
  padding: 0 8px;
  color: var(--theme-red);
  border: 1px solid var(--theme-red);
  background-color: var(--theme-white);
  margin-bottom: 0.4em;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation .variation_list div.price span.dispPrice {
  font-size: 1.4em;
  margin-bottom: 0.12em;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.product-info-variation .variation_list div.price del {
  text-decoration: line-through;
  color: var(--theme-gray-3);
  margin-bottom: 0.2em;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea {
  justify-content: flex-end;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea {
    grid-area: 1/2/3/3;
  }
}
@media (max-width: 480px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea {
    grid-area: 3/1/4/2;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea form.cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea form.cart {
    grid-area: 2/2/3/3;
    align-items: end;
  }
}
@media (max-width: 480px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea form.cart {
    grid-area: 3/1/4/2;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea form.cart input {
  line-height: 1.8em;
  min-width: 100px;
  text-align: right;
  padding: 0 0 0 4px;
  border: 1px solid var(--theme-gray-2);
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea form.cart button {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-black);
  color: var(--theme-white);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
  width: 100%;
  border: 1px solid var(--theme-black);
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea form.cart button:hover {
  background-color: var(--theme-white);
  color: var(--theme-black);
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea form.cart.toggle-btn {
  display: none;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea form.cart.toggle-btn.on {
  display: flex;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea .sold-out {
  width: 100%;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  padding: 16px;
  border: 1px solid var(--theme-gray-3);
  background-color: var(--theme-gray-3);
  color: var(--theme-white);
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea a.btn {
    display: none;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea div.faq-link {
  width: 100%;
  text-align: right;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea div.faq-link a {
  font-size: 1.2rem;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea div.supplement-area {
  text-align: right;
}
.shop-product-sc-2 .product-container .product-main-wrapper .product-info-wrapper .product-info div.wc-btnArea div.supplement-area span {
  font-size: 1.2rem;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box {
  grid-area: 2/1/3/2;
  width: 100%;
  white-space: pre-line;
  padding: 40px 0;
  line-height: 210%;
  letter-spacing: 0.4px;
}
@media (max-width: 1050px) {
  .shop-product-sc-2 .product-container .product-main-wrapper .description-box {
    grid-area: 3/1/4/2;
  }
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box h1 {
  font-size: 3rem;
  line-height: 145%;
  letter-spacing: 0.5px;
  padding: 8px;
  background-color: #FFCECE;
  color: #2f4f4f;
  border-radius: 8px;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box h2 {
  font-size: 2.4rem;
  line-height: 1.45;
  padding: 8px;
  border-left: 8px solid var(--theme-pink);
  border-bottom: 1px solid var(--theme-pink);
  margin-bottom: 4px;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box h2:not(:first-child) {
  margin-top: 64px;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box p {
  display: block;
  padding: 0.5em 0;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box b {
  margin: 1em 0;
  font-weight: 600;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box em {
  font-style: italic;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box ul {
  padding-left: 1em;
  list-style: disc;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box ol {
  padding-left: 1em;
  list-style: decimal;
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box a {
  position: relative;
  padding: 2px 2em 2px 4px;
  border-bottom: 1px solid var(--theme-black);
}
.shop-product-sc-2 .product-container .product-main-wrapper .description-box a::after {
  position: absolute;
  content: "→";
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
}

.shop-product-btn-area {
  width: min(1024px, 90%);
  margin: 0 auto;
  margin: 120px auto;
  display: flex;
  justify-content: center;
}
.shop-product-btn-area a.btn {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-white);
  color: var(--theme-black);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
  width: 200px;
  border: 1px solid var(--theme-black);
}
.shop-product-btn-area a.btn:hover {
  background-color: var(--theme-black);
  color: var(--theme-white);
}

.woocommerce-message {
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.woocommerce-message::before {
  top: 50%;
  transform: translate(0, -50%);
}
.woocommerce-message::after {
  display: none;
}
.woocommerce-message a.button {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-black);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
.woocommerce-message a.button:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}

/*------------------------------------------
  店舗
-------------------------------------------*/
section.shop-default {
  padding-bottom: 200px;
}
section.shop-default h1 {
  width: min(900px, 90%);
  margin: 0 auto;
  font-size: 3.2rem;
  line-height: 1.4;
  padding: 160px 0;
}
@media (max-width: 480px) {
  section.shop-default h1 {
    padding: 120px 0 40px;
  }
}
section.shop-default div.shop-default-content {
  width: min(900px, 90%);
  margin: 0 auto;
}
section.shop-default div.shop-default-content .woocommerce {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section.shop-default div.shop-default-content .woocommerce a.button {
  font-size: 1.5rem;
  line-height: 1.75;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  align-items: center;
  padding: 16px;
  background-color: var(--theme-pink);
  color: var(--theme-black);
  transition: 0.4s;
  cursor: pointer;
  min-width: 180px;
  max-width: 230px;
}
section.shop-default div.shop-default-content .woocommerce a.button:hover {
  background-color: var(--theme-pink);
  color: var(--theme-red);
}
section.shop-default div.shop-default-content .woocommerce .wc-backward {
  width: 180px;
}

.woocommerce {
  /************************************************
    共通
  ***********************************************/
  /************************************************
    カート画面
  ***********************************************/
  /************************************************
    決済画面
  ***********************************************/
}
.woocommerce .wp-element-button {
  background-color: var(--theme-black) !important;
  border-radius: 0 !important;
  font-weight: normal !important;
  color: var(--theme-white) !important;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .woocommerce .wp-element-button:hover:not(:disabled) {
    color: var(--theme-white) !important;
  }
}
.woocommerce .wp-element-button:disabled {
  background-color: var(--theme-gray-1) !important;
}
.woocommerce .woocommerce-info {
  border: none;
  background-color: var(--theme-gray-1);
  color: var(--theme-black);
}
.woocommerce .woocommerce-info::before {
  top: 50%;
  transform: translate(0, -50%);
  color: var(--theme-red);
}
.woocommerce form.woocommerce-cart-form input[type=number], .woocommerce form.woocommerce-cart-form input[type=text] {
  margin-left: 8px;
  min-width: 45px;
  line-height: 1.8em;
  text-align: right;
  padding: 0 0 0 6px;
  border: 1px solid var(--theme-gray-2);
}
.woocommerce form.woocommerce-cart-form input[type=number]::-moz-placeholder, .woocommerce form.woocommerce-cart-form input[type=text]::-moz-placeholder {
  color: var(--theme-gray-3);
}
.woocommerce form.woocommerce-cart-form input[type=number]::placeholder, .woocommerce form.woocommerce-cart-form input[type=text]::placeholder {
  color: var(--theme-gray-3);
}
.woocommerce form.woocommerce-cart-form .coupon {
  display: flex;
  align-items: center;
  align-items: stretch;
}
.woocommerce form.woocommerce-cart-form .coupon #coupon_code {
  min-width: 150px;
}
.woocommerce form.woocommerce-cart-form .coupon #coupon_code::-moz-placeholder {
  color: var(--theme-gray-3);
}
.woocommerce form.woocommerce-cart-form .coupon #coupon_code::placeholder {
  color: var(--theme-gray-3);
}
.woocommerce form.woocommerce-cart-form button {
  line-height: 1.6em;
}
.woocommerce .wc-proceed-to-checkout div.faq-link {
  text-align: right;
}
.woocommerce .wc-proceed-to-checkout div.faq-link a {
  position: relative;
  display: inline-block;
}
.woocommerce .wc-proceed-to-checkout div.faq-link a::after {
  position: absolute;
  content: "";
  bottom: -2px;
  height: 1px;
  width: 0%;
  border-radius: 1px;
  background-color: var(--theme-black);
  transition: 0.3s;
  left: 50%;
  transform: translate(-50%, 0);
}
.woocommerce .wc-proceed-to-checkout div.faq-link a:hover::after {
  width: 100%;
}
.woocommerce .shipping-calculator-form input[type=text] {
  margin-left: 8px;
  min-width: 45px;
  line-height: 1.8em;
  text-align: right;
  padding: 2px 4px;
  border-radius: 4px;
  border: 1px solid #abb8c3;
}
.woocommerce form.checkout input[type=number], .woocommerce form.checkout input[type=text], .woocommerce form.checkout input[type=tel], .woocommerce form.checkout input[type=email], .woocommerce form.checkout textarea {
  border: 1px solid var(--theme-gray-2);
  line-height: 1.8em;
  padding: 2px 6px;
}
.woocommerce form.checkout input[type=number]::-moz-placeholder, .woocommerce form.checkout input[type=text]::-moz-placeholder, .woocommerce form.checkout input[type=tel]::-moz-placeholder, .woocommerce form.checkout input[type=email]::-moz-placeholder, .woocommerce form.checkout textarea::-moz-placeholder {
  color: var(--theme-gray-3);
}
.woocommerce form.checkout input[type=number]::placeholder, .woocommerce form.checkout input[type=text]::placeholder, .woocommerce form.checkout input[type=tel]::placeholder, .woocommerce form.checkout input[type=email]::placeholder, .woocommerce form.checkout textarea::placeholder {
  color: var(--theme-gray-3);
}
.woocommerce form.checkout .select2-selection--single {
  border: 1px solid var(--theme-gray-2);
  height: auto;
  border-radius: 0;
}
.woocommerce form.checkout .select2-selection--single .select2-selection__rendered {
  line-height: 2.1em !important;
}
.woocommerce form.checkout textarea#order_comments {
  height: 140px;
}
.woocommerce form.checkout_coupon input[type=text] {
  border: 1px solid var(--theme-gray-2);
  line-height: 1.8em;
  padding: 2px 6px;
}

/*------------------------------------------
  店舗情報系
-------------------------------------------*/
section.information-sc-1 {
  width: min(790px, 92%);
  margin: 0 auto;
  padding: 160px 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 0;
}
@media (max-width: 480px) {
  section.information-sc-1 {
    padding: 120px 0 0;
  }
}
section.information-sc-1 h1 {
  font-size: 3.2rem;
  line-height: 1.4;
  width: 240px;
}
section.information-sc-1 span {
  width: min(535px, 100%);
  flex-grow: 1;
  font-size: 1.5rem;
  line-height: 1.75;
}
@media (max-width: 480px) {
  section.information-sc-1 {
    width: 90%;
  }
  section.information-sc-1 h1 {
    font-size: 3rem;
  }
}
section.information-sc-1 h1 {
  padding-right: 0;
}

section.information-sc-2 {
  width: min(790px, 90%);
  margin: 0 auto;
  padding: 80px 0;
  /****************************
    特定商取引法に基づく表記
  ****************************/
  /****************************
    プライバシーポリシー
  ****************************/
}
section.information-sc-2 div.legal-tbl {
  display: flex;
  flex-direction: column;
  padding-bottom: 120px;
}
section.information-sc-2 div.legal-tbl .legal-tbl-tr {
  width: 100%;
  border-bottom: 1px solid var(--theme-gray-2);
  display: flex;
  padding: 20px;
  gap: 8px 24px;
  flex-wrap: wrap;
}
section.information-sc-2 div.legal-tbl .legal-tbl-tr .legal-tbl-tr_th {
  width: 30%;
}
@media (max-width: 480px) {
  section.information-sc-2 div.legal-tbl .legal-tbl-tr .legal-tbl-tr_th {
    width: 100%;
  }
}
section.information-sc-2 div.legal-tbl .legal-tbl-tr .legal-tbl-tr_td {
  width: calc(70% - 24px);
}
@media (max-width: 480px) {
  section.information-sc-2 div.legal-tbl .legal-tbl-tr .legal-tbl-tr_td {
    width: 100%;
  }
}
section.information-sc-2 div.shipping-charges h2 {
  font-size: 1.7rem;
  line-height: 1.75;
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl {
  display: flex;
  flex-direction: column;
  padding: 12px 0 120px;
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr {
  width: 100%;
  border: 1px solid var(--theme-gray-2);
  border-bottom: none;
  display: flex;
  flex-direction: row;
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr:nth-child(2n+1) {
  background-color: var(--theme-gray-4);
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr:last-child {
  border-bottom: 1px solid var(--theme-gray-2);
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_th, section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_td {
  padding: 12px 20px;
}
@media (max-width: 480px) {
  section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_th, section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_td {
    padding: 12px;
  }
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_th:nth-child(1), section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_td:nth-child(1) {
  width: 75%;
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_th:nth-child(2), section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_td:nth-child(2) {
  text-align: center;
  width: 25%;
  border-left: 1px solid var(--theme-gray-2);
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_th {
  background-color: var(--theme-gray-2);
}
section.information-sc-2 div.shipping-charges .shipping-charges_tbl .shipping-charges-tbl-tr .shipping-charges-tbl-tr_th:nth-child(2) {
  border-left: 1px solid var(--theme-white);
}
section.information-sc-2 div.privacy-policy-headline {
  padding-bottom: 80px;
}
section.information-sc-2 div.privacy-policy-block {
  display: flex;
  flex-direction: column;
  padding: 40px 0 24px;
  gap: 12px;
}
section.information-sc-2 div.privacy-policy-block h2 {
  font-size: 1.7rem;
  line-height: 1.75;
}

/*------------------------------------------
  CORPORATE
-------------------------------------------*/
body.page-template-page-corporate > main .corporate-fv {
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
  max-height: 950px;
  display: grid;
  justify-items: center;
  padding-top: 64px;
  margin-bottom: 100px;
  grid-template-columns: minmax(300px, 400px) 1fr 1fr;
  grid-template-rows: 4fr 3fr;
  align-items: end;
}
body.page-template-page-corporate > main .corporate-fv .container {
  grid-area: 1/1/2/2;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
body.page-template-page-corporate > main .corporate-fv .container h1 {
  font-size: clamp(2.4rem, 2vw, 4rem);
  font-weight: 600;
  color: var(--theme-red);
}
body.page-template-page-corporate > main .corporate-fv .container p {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-corporate > main .corporate-fv picture.smile {
  grid-area: 2/1/3/2;
  width: 100%;
  height: auto;
  padding: 0 24px;
}
body.page-template-page-corporate > main .corporate-fv picture.smile img {
  vertical-align: top;
  width: 100%;
  height: 100%;
}
body.page-template-page-corporate > main .corporate-fv picture.appearance {
  width: 100%;
  height: 100%;
}
body.page-template-page-corporate > main .corporate-fv picture.appearance img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
body.page-template-page-corporate > main .corporate-fv picture.appearance:nth-of-type(2) {
  grid-area: 1/2/3/3;
}
body.page-template-page-corporate > main .corporate-fv picture.appearance:nth-of-type(3) {
  grid-area: 1/3/3/4;
}
@media (max-width: 1050px) {
  body.page-template-page-corporate > main .corporate-fv {
    grid-template-columns: minmax(300px, 400px) 1fr;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance {
    height: 350px;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance:nth-of-type(2) {
    grid-area: 1/2/2/3;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance:nth-of-type(3) {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 780px) {
  body.page-template-page-corporate > main .corporate-fv {
    grid-template-columns: 1fr 1fr;
  }
  body.page-template-page-corporate > main .corporate-fv .container {
    grid-area: 1/2/2/3;
    padding: 40px 40px 24px 12px;
    width: min(100%, 350px);
  }
  body.page-template-page-corporate > main .corporate-fv picture.smile {
    grid-area: 1/1/2/2;
    padding: 0 12px 0 40px;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance {
    height: 350px;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance:nth-of-type(2) {
    grid-area: 2/1/3/2;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance:nth-of-type(3) {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 620px) {
  body.page-template-page-corporate > main .corporate-fv .container {
    grid-area: 1/1/2/3;
    padding: 40px 4%;
  }
  body.page-template-page-corporate > main .corporate-fv picture.smile {
    grid-area: 2/1/3/3;
    width: min(100%, 350px);
    padding: 0 4%;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance:nth-of-type(2) {
    grid-area: 3/1/4/2;
  }
  body.page-template-page-corporate > main .corporate-fv picture.appearance:nth-of-type(3) {
    grid-area: 3/2/4/3;
  }
}
body.page-template-page-corporate > main .corporate-sc-1 {
  width: min(1280px, 92%);
  margin: 0 auto;
  padding-bottom: 100px;
}
body.page-template-page-corporate > main .corporate-sc-1 .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 100px;
}
body.page-template-page-corporate > main .corporate-sc-1 .section-header span {
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-corporate > main .corporate-sc-1 .section-header h2 {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--theme-red);
}
body.page-template-page-corporate > main .corporate-sc-1 .quality {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel {
  width: 32%;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--theme-red);
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-header {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 24px 12px;
  gap: 32px;
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-header h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-header h3 span {
  color: var(--theme-red);
  font-weight: 600;
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-header h3 span:nth-of-type(1) {
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-header h3 span:nth-of-type(2) {
  font-size: clamp(24px, 24px + 8 * (100vw - 480px) / 920, 32px);
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-header .content {
  font-size: 1.7rem;
  line-height: 1.75;
  font-weight: 600;
  text-align: center;
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-body {
  background-color: var(--theme-red);
  color: var(--theme-white);
  padding: 24px 12px;
  text-align: center;
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel:nth-child(2) {
  margin-top: 40px;
}
body.page-template-page-corporate > main .corporate-sc-1 .quality .panel:nth-child(3) {
  margin-top: 80px;
}
@media (max-width: 1050px) {
  body.page-template-page-corporate > main .corporate-sc-1 .quality {
    flex-direction: column;
  }
  body.page-template-page-corporate > main .corporate-sc-1 .quality .panel {
    width: 100%;
    flex-direction: row;
  }
  body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-header {
    width: 300px;
  }
  body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-body {
    width: 300px;
    flex-grow: 1;
  }
  body.page-template-page-corporate > main .corporate-sc-1 .quality .panel:nth-child(2), body.page-template-page-corporate > main .corporate-sc-1 .quality .panel:nth-child(3) {
    margin-top: 0;
  }
}
@media (max-width: 620px) {
  body.page-template-page-corporate > main .corporate-sc-1 .quality .panel {
    width: 100%;
    flex-direction: column;
  }
  body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-header {
    width: 100%;
    aspect-ratio: unset;
  }
  body.page-template-page-corporate > main .corporate-sc-1 .quality .panel .panel-body {
    width: 100%;
  }
}
body.page-template-page-corporate > main .corporate-sc-2 {
  width: min(1400px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 100px;
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper {
  display: grid;
  justify-items: center;
  align-content: center;
  width: 90%;
  height: auto;
  aspect-ratio: 2/1;
  gap: 24px;
  background-size: cover;
  padding: 40px;
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper h3 span:nth-child(1) {
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper h3 span:nth-child(2) {
  font-size: 3.2rem;
  line-height: 1.4;
  display: inline-block;
  transform: rotate(-15deg);
  transform-origin: left bottom;
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper p {
  font-size: 1.7rem;
  line-height: 1.75;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  text-align: center;
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper:nth-child(2n-1) {
  margin: 0 0 0 auto;
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper:nth-child(2n) {
  margin: 0 auto 0 0;
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper:nth-child(1) {
  background-image: url(../images/design/firstView-l-1.webp);
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper:nth-child(2) {
  background-image: url(../images/design/firstView-l-2.webp);
}
body.page-template-page-corporate > main .corporate-sc-2 .wrapper:nth-child(3) {
  background-image: url(../images/design/firstView-l-3.webp);
}
body.page-template-page-corporate > main .corporate-sc-3 {
  width: min(1280px, 92%);
  margin: 0 auto;
  padding-bottom: 160px;
}
body.page-template-page-corporate > main .corporate-sc-3 picture, body.page-template-page-corporate > main .corporate-sc-3 img {
  display: inline-block;
  width: 100%;
  height: auto;
  aspect-ratio: 2/1;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}

/*------------------------------------------
  CASE STUDIES
-------------------------------------------*/
body.page-template-page-case-studies > main .case-studies-fv {
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
  max-height: 950px;
  display: grid;
  justify-items: center;
  padding-top: 64px;
  margin-bottom: 100px;
  grid-template-columns: 1fr 1fr minmax(300px, 400px);
  grid-template-rows: 4fr 3fr;
  align-items: end;
}
body.page-template-page-case-studies > main .case-studies-fv .container {
  grid-area: 1/3/2/4;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
body.page-template-page-case-studies > main .case-studies-fv .container h1 {
  font-size: clamp(2.4rem, 2vw, 4rem);
  font-weight: 600;
  color: var(--theme-red);
}
body.page-template-page-case-studies > main .case-studies-fv .container p {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.75;
}
body.page-template-page-case-studies > main .case-studies-fv picture.smile {
  grid-area: 2/3/3/4;
  width: 100%;
  height: auto;
  padding: 0 24px;
}
body.page-template-page-case-studies > main .case-studies-fv picture.smile img {
  vertical-align: top;
  width: 100%;
  height: 100%;
}
body.page-template-page-case-studies > main .case-studies-fv picture.appearance {
  width: 100%;
  height: 100%;
}
body.page-template-page-case-studies > main .case-studies-fv picture.appearance img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
body.page-template-page-case-studies > main .case-studies-fv picture.appearance:nth-of-type(1) {
  grid-area: 1/1/3/2;
}
body.page-template-page-case-studies > main .case-studies-fv picture.appearance:nth-of-type(2) {
  grid-area: 1/2/3/3;
}
@media (max-width: 1050px) {
  body.page-template-page-case-studies > main .case-studies-fv {
    grid-template-columns: 1fr minmax(300px, 400px);
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance {
    height: 350px;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance:nth-of-type(1) {
    grid-area: 1/1/2/2;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance:nth-of-type(2) {
    grid-area: 2/1/3/2;
  }
  body.page-template-page-case-studies > main .case-studies-fv .container {
    grid-area: 1/2/2/3;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.smile {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 780px) {
  body.page-template-page-case-studies > main .case-studies-fv {
    grid-template-columns: 1fr 1fr;
  }
  body.page-template-page-case-studies > main .case-studies-fv .container {
    grid-area: 1/2/2/3;
    padding: 40px 40px 24px 12px;
    width: min(100%, 350px);
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.smile {
    grid-area: 1/1/2/2;
    padding: 0 12px 0 40px;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance {
    height: 350px;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance:nth-of-type(1) {
    grid-area: 2/1/3/2;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance:nth-of-type(2) {
    grid-area: 2/2/3/3;
  }
}
@media (max-width: 620px) {
  body.page-template-page-case-studies > main .case-studies-fv .container {
    grid-area: 1/1/2/3;
    padding: 40px 4%;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.smile {
    grid-area: 2/1/3/3;
    width: min(100%, 350px);
    padding: 0 4%;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance:nth-of-type(1) {
    grid-area: 3/1/4/2;
  }
  body.page-template-page-case-studies > main .case-studies-fv picture.appearance:nth-of-type(2) {
    grid-area: 3/2/4/3;
  }
}
body.page-template-page-case-studies > main .case-studies-sc-1 {
  width: min(1280px, 92%);
  margin: 0 auto;
  padding-bottom: 160px;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 100px;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .section-header span {
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .section-header h2 {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 600;
  color: var(--theme-red);
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box {
  display: flex;
  flex-direction: row;
  gap: clamp(12px, 12px + 68 * (100vw - 480px) / 920, 80px);
  align-items: center;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .img-area {
  width: 300px;
  flex-grow: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 4fr 1fr;
  gap: 8px;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .img-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .img-area img:nth-of-type(1) {
  grid-area: 1/1/2/5;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .img-area img:nth-of-type(2) {
  grid-area: 2/1/3/2;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .img-area img:nth-of-type(3) {
  grid-area: 2/2/3/3;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .img-area img:nth-of-type(4) {
  grid-area: 2/3/3/4;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .img-area img:nth-of-type(5) {
  grid-area: 2/4/3/5;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .content {
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .content h3 {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: 600;
  -webkit-font-smoothing: antialiased;
  color: var(--theme-red);
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .content blockquote {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .content blockquote cite {
  display: flex;
  flex-direction: column;
  font-size: 2.4rem;
  line-height: 1.45;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box:nth-of-type(2) .img-area {
  order: 2;
}
body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box:nth-of-type(2) .content {
  order: 1;
}
@media (max-width: 1050px) {
  body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box {
    flex-direction: column;
  }
  body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .img-area, body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box .content {
    width: 100%;
  }
  body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box:nth-of-type(2) .img-area {
    order: 1;
  }
  body.page-template-page-case-studies > main .case-studies-sc-1 .wrapper .flex-box:nth-of-type(2) .content {
    order: 2;
  }
}/*# sourceMappingURL=style.css.map */