@charset "UTF-8";
/* ------------------------
    base
------------------------ */
html,
body {
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  line-height: 1.5;
  word-break: normal;
  overflow-wrap: break-word;
  line-break: strict;
}

a {
  display: inline-block;
}

img {
  width: 100%;
  height: auto;
}

textarea {
  resize: vertical;
}

/* ------------------------
    utility
------------------------ */
.u-word {
  display: inline-block;
}

.u-pc {
  display: block;
}
@media (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-grid-col2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px max(5%, 20px);
}

.u-mb-120 {
  margin-bottom: var(--mb-120);
}

:root {
  --base-font-color: #604c3f;
  --white: #fff;
  --off-white: #fcfbf6;
  --grey: #999;
  --red: #ae242f;
  --orange: #fe8602;
  --bg-orange: #f2cdaa;
  --bg-pink: #ebbdc4;
  --bg-light-blue: #b0dce2;
  --bg-beige: #f9f5e6;
  --border-grey: #c5beb9;
  --transition: 0.3s;
  --base-font-size: 17;
  --header-height: 100px;
  --radius-30: 30px;
  --radius-20: 20px;
  --mb-120: 120px;
  --mb-80: 80px;
  --fs-50: 3.125rem;
  --fs-40: 2.5rem;
  --fs-34: 2.125rem;
  --fs-30: 1.875rem;
  --fs-27: 1.6875rem;
  --fs-26: 1.625rem;
  --fs-21: 1.3125rem;
  --fs-20: 1.25rem;
  --fs-18: 1.125rem;
  --fs-15: 0.9375rem;
  --fs-14: 0.875rem;
  --fs-12: 0.75rem;
}

@media (max-width: 1200px) {
  :root {
    --fs-27: 1.5625rem;
    --fs-21: 1.125rem;
  }
}
@media (max-width: 1150px) {
  :root {
    --header-height: 75px;
  }
}
@media (max-width: 1024px) {
  :root {
    --base-font-size: 16;
    --fs-50: 2.8125rem;
    --fs-40: 2.1875rem;
    --fs-27: 1.375rem;
    --fs-21: 1.0625rem;
  }
}
@media (max-width: 768px) {
  :root {
    --base-font-size: 15;
    --header-height: 50px;
    --radius-30: 20px;
    --radius-20: 10px;
    --mb-120: 100px;
    --fs-40: 1.8125rem;
    --fs-34: 1.3125rem;
    --fs-30: 1.25rem;
    --fs-27: 1.125rem;
    --fs-26: 1.125rem;
    --fs-18: 1rem;
    --fs-15: 0.875rem;
  }
}
@media (max-width: 500px) {
  :root {
    --mb-120: 80px;
    --mb-80: 30px;
    --fs-50: 2.0625rem;
    --fs-40: 1.375rem;
  }
}
/* ------------------------
    common
------------------------ */
textarea {
  width: 100%;
  padding: 0.8em;
  background-color: var(--white);
  border: 1px solid var(--border-grey);
}

th {
  font-weight: 500;
}

body {
  padding-top: var(--header-height);
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic Medium", Meiryo, sans-serif;
  font-size: calc(var(--base-font-size) / 16 * 1rem);
  font-weight: 500;
  line-height: 2.3529411765;
  color: var(--base-font-color);
  background: url("../images/common/bg_main.jpg") repeat left top/400px;
}
@media (max-width: 768px) {
  body {
    line-height: 1.7333333333;
  }
}

.inner {
  width: 90%;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}
.inner--l {
  max-width: 1340px;
}

.section {
  padding-top: 105px;
  padding-bottom: 190px;
}
@media (max-width: 768px) {
  .section {
    padding-top: 70px;
    padding-bottom: 110px;
  }
}

.page-section {
  padding-top: 50px;
  padding-bottom: 70px;
}

.txt-container .txt + .txt {
  margin-top: 2em;
}

.btn-container {
  width: fit-content;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .btn-container {
    margin-top: 45px;
  }
}
.btn-container--center {
  margin-inline: auto;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .btn-group {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .btn-group {
    gap: 15px 10px;
  }
}

.btn {
  position: relative;
  display: grid;
  align-content: center;
  width: fit-content;
  min-width: 250px;
  min-height: 60px;
  padding: 0 2.3em;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  background: url("../images/common/icon_arrow-right.svg") no-repeat calc(100% - 1.1em) center/1em;
  background-color: var(--red);
  border-radius: 9999px;
  transition: background-color var(--transition);
}
@media (max-width: 1200px) {
  .btn {
    min-width: 290px;
  }
}
@media (max-width: 1024px) {
  .btn {
    min-width: 240px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .btn {
    padding: 0.6em 2.5em;
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .btn {
    min-width: 210px;
    min-height: 55px;
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover, .btn:focus {
    background-color: rgb(198.8571428571, 41.1428571429, 53.7142857143);
  }
}
@media (hover: none) {
  .btn:active {
    background-color: rgb(198.8571428571, 41.1428571429, 53.7142857143);
  }
}

.heading-container {
  margin-bottom: 3.5em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .heading-container {
    margin-bottom: 2.5em;
  }
}
.heading-container--center {
  text-align: center;
}

.sec-heading-en {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 0.3em;
  font-size: var(--fs-50);
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .sec-heading-en {
    margin-bottom: 0.2em;
  }
}
.sec-heading-en_sub {
  font-size: 0.6em;
}
.heading-container--center .sec-heading-en {
  justify-content: center;
}

.sec-heading::before {
  display: inline-block;
  width: 3.4em;
  aspect-ratio: 150/23;
  margin-right: 0.5em;
  vertical-align: 0.1em;
  content: "";
  background: url("../images/common/deco_heding.svg") no-repeat center/contain;
}

.catchphrase {
  font-size: var(--fs-40);
  writing-mode: vertical-rl;
  font-family: "Klee One", cursive;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .catchphrase {
    writing-mode: horizontal-tb;
  }
}
.catchphrase.js-fade-txt span {
  opacity: 0;
  transition: opacity 0.6s;
}
.catchphrase.js-fade-txt span:first-of-type {
  transition: opacity 1.3s;
}
.catchphrase.js-fade-txt span.js-fadeIn {
  opacity: 1;
}

.catchphrase-en {
  margin-bottom: 2em;
  font-size: var(--fs-34);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.catchphrase-zh {
  margin-bottom: 2em;
  font-size: var(--fs-27);
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
}

.lead {
  margin-bottom: 1.5em;
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .u-grid-col2 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
}

.media-txt {
  display: flex;
  gap: 1.75em;
}
@media (max-width: 768px) {
  .media-txt {
    flex-direction: column-reverse;
  }
}
.media-txt + .media-txt {
  margin-top: 110px;
}
@media (max-width: 768px) {
  .media-txt + .media-txt {
    margin-top: 50px;
  }
}
.media-txt--reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .media-txt--reverse {
    flex-direction: column-reverse;
  }
}
.media-txt_media {
  flex: 0 0 50% !important;
}
.media-txt_txt-container {
  text-align: justify;
}
.media-txt_txt-container-en {
  text-align: left;
}
.media-txt_heading {
  font-size: var(--fs-27);
  font-weight: 700;
  line-height: 1.7407407407;
}
@media (max-width: 768px) {
  .media-txt_heading {
    margin-bottom: 0.5em;
    line-height: 1.6;
  }
}

.wp-block-embed iframe {
  width: 100%;
  max-width: unset;
  height: auto;
  aspect-ratio: 16/9;
}

/* ------------------------
    header
------------------------ */
.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  height: var(--header-height);
  padding-right: 2%;
  padding-left: 2%;
  transition: background-color var(--transition);
}
.header.js-bg {
  background: rgba(249, 245, 230, 0.9);
}
.header.js-bg::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  backdrop-filter: blur(3px);
}
.header_logo-wrap {
  margin-right: auto;
}
.header_logo {
  display: grid;
  place-items: flex-end center;
  width: 175px;
  height: 200px;
  padding-bottom: 30px;
  background-color: var(--red);
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  transform-origin: 0 0;
  transition: opacity var(--transition), transform var(--transition);
}
.js-bg .header_logo {
  transform: scale(0.7);
}
@media (width <= 1500px) {
  .header_logo {
    width: 155px;
    height: 165px;
    padding-bottom: 22px;
  }
}
@media (max-width: 1200px) {
  .header_logo {
    width: 120px;
    height: 128px;
    padding-bottom: 18px;
    border-bottom-right-radius: 22px;
    border-bottom-left-radius: 22px;
  }
}
@media (max-width: 1150px) {
  .header_logo {
    margin-top: calc(var(--header-height) * -1);
  }
}
@media (max-width: 1200px) {
  body[class^=home] .header_logo {
    width: 140px;
    height: 150px;
  }
}
@media (max-width: 768px) {
  body[class^=home] .header_logo {
    width: 117px;
    height: 138px;
  }
}
@media (max-width: 768px) {
  .header_logo {
    width: 92px;
    height: 99px;
    padding-bottom: 15px;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header_logo:hover, .header_logo:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .header_logo:active {
    opacity: 0.8;
  }
}
.header_logo-img {
  width: 71%;
}

.header-nav {
  align-self: center;
  transition: transform var(--transition);
}
.header-nav_list {
  display: flex;
  gap: 0 2em;
  align-items: center;
  line-height: 1.4;
  text-align: center;
}
@media (width <= 1310px) {
  .header-nav_list {
    gap: 0 1.5em;
    font-size: 0.9375rem;
  }
}
@media (max-width: 1150px) {
  .header-nav_list {
    font-size: 1rem;
  }
}
.header-nav_item.menu-item-has-children {
  position: relative;
}
.header-nav_item.menu-item-has-children > .header-nav_link {
  position: relative;
}
@media (min-width: 1151px) {
  .header-nav_item.menu-item-has-children > .header-nav_link {
    cursor: default;
  }
  .header-nav_item.menu-item-has-children > .header-nav_link::after {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: calc(var(--header-height) / 2);
    content: "";
  }
}
@media (min-width: 1151px) and (hover: hover) and (pointer: fine) {
  .header-nav_item:hover > .sub-menu, .header-nav_item:focus > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
}
@media (min-width: 1151px) and (hover: none) {
  .header-nav_item:active > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
}
.header-nav_link {
  font-weight: 500;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_link:hover, .header-nav_link:focus {
    opacity: 0.75;
  }
}
@media (hover: none) {
  .header-nav_link:active {
    opacity: 0.75;
  }
}
.header-nav_btn > a {
  position: relative;
  display: grid;
  align-content: center;
  width: fit-content;
  min-width: 200px;
  min-height: 48px;
  padding: 0 2.3em;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
  background: url("../images/common/icon_arrow-right.svg") no-repeat calc(100% - 1.1em) center/0.92em;
  background-color: var(--red);
  border-radius: 9999px;
  transition: background-color var(--transition);
}
@media (max-width: 1200px) {
  .header-nav_btn > a {
    min-width: 157px;
    font-size: 16px;
    background-position-x: calc(100% - 0.7em);
  }
}
@media (width <= 1310px) {
  .header-nav_btn > a {
    min-width: 180px;
    font-size: 15px;
  }
}
@media (max-width: 1200px) {
  .header-nav_btn > a {
    min-width: 160px;
  }
}
@media (max-width: 1150px) {
  .header-nav_btn > a {
    min-height: 55px;
    font-size: 16px;
    background-position-x: calc(100% - 1.1em);
  }
}
@media (max-width: 768px) {
  .header-nav_btn > a {
    font-size: 15px;
  }
}
@media (max-width: 500px) {
  .header-nav_btn > a {
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav_btn > a:hover, .header-nav_btn > a:focus {
    background-color: rgb(198.8571428571, 41.1428571429, 53.7142857143);
    opacity: 1;
  }
}
@media (hover: none) {
  .header-nav_btn > a:active {
    background-color: rgb(198.8571428571, 41.1428571429, 53.7142857143);
    opacity: 1;
  }
}
.header-nav .sub-menu {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: 0 0;
  transition: transform var(--transition), visibility var(--transition), opacity var(--transition);
}
@media (min-width: 1151px) {
  .header-nav .sub-menu {
    position: absolute;
    top: calc(50% + var(--header-height) / 2);
    left: 0;
    background-color: #8c7d74;
  }
}
@media (max-width: 1150px) {
  .header-nav .sub-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
    transform: none;
  }
}
.header-nav .sub-menu .header-nav_item + .header-nav_item {
  margin-top: 1px;
}
@media (min-width: 1151px) {
  .header-nav .sub-menu .header-nav_link {
    min-width: 17em;
    padding: 1em;
    color: var(--white);
    text-align: left;
    background-color: var(--base-font-color);
  }
}

.header_lang-list {
  display: flex;
  gap: 1em;
  align-items: center;
}
@media (max-width: 1200px) {
  .header_lang-list {
    font-size: 16px;
  }
}
@media (max-width: 1150px) {
  .header_lang-list {
    position: fixed;
    top: calc(var(--header-height) / 2);
    right: calc(var(--header-height) + 5px);
    z-index: 50;
    transform: translateY(-50%);
  }
}

.lang-item {
  position: relative;
  line-height: 1.5;
  color: var(--grey);
}
.lang-item + .lang-item::before {
  position: absolute;
  top: 50%;
  left: -0.5em;
  width: 1px;
  height: 0.8em;
  content: "";
  background-color: var(--grey);
  transform: translateY(-50%);
}
.lang-item.current-lang {
  color: var(--base-font-color);
}

.hamburger {
  position: fixed;
  top: 5px;
  right: 0;
  z-index: 150;
  display: none;
  width: calc(var(--header-height) - 10px);
  height: calc(var(--header-height) - 10px);
}
.hamburger > span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 50%;
  height: 2px;
  background: var(--base-font-color);
  transform: translateX(-50%);
  transition: ease 0.4s;
}
.hamburger > span:nth-of-type(1) {
  top: 35%;
}
.hamburger > span:nth-of-type(3) {
  top: 65%;
}
.hamburger.js-close > span {
  top: 50%;
}
.hamburger.js-close > span:nth-of-type(1) {
  transform: translateX(-50%) rotate(45deg);
}
.hamburger.js-close > span:nth-of-type(2) {
  width: 0;
  opacity: 0;
}
.hamburger.js-close > span:nth-of-type(3) {
  transform: translateX(-50%) rotate(-45deg);
}

@media (max-width: 1150px) {
  .header {
    position: relative;
    padding-left: 5%;
    margin-bottom: calc(var(--header-height) * -1);
  }
  .header::before {
    position: fixed;
    inset: 0;
    z-index: 99;
    display: none;
    width: 100vh;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, 0.5);
  }
  .header.js-active::before {
    display: block;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: grid;
    align-content: center;
    width: 60%;
    min-width: 550px;
    height: 100vh;
    padding: calc(var(--header-height) - 1em) 1.6em 0;
    margin-top: 0;
    background: var(--off-white);
    transform: translateX(110%);
  }
  .js-active .header-nav {
    transform: translateX(0);
  }
  .header-nav_list {
    flex-direction: column;
    margin-top: calc(var(--header-height) * -1 - 3em);
    font-size: 1rem;
    text-align: left;
  }
  .header-nav_item {
    width: 100%;
    max-width: 500px;
  }
  .header-nav_item.is-open {
    padding-bottom: 0.5em;
    border-bottom: 1px rgba(70, 64, 59, 0.5) dashed;
  }
  .header-nav_item.is-open .header-nav_link {
    border-bottom: none;
  }
  .header-nav_item.menu-item-has-children > .header-nav_link {
    padding-right: 1em;
  }
  .header-nav_item.menu-item-has-children > .header-nav_link::after {
    position: absolute;
    top: 50%;
    right: 7px;
    display: block;
    width: 1.1em;
    aspect-ratio: 1;
    content: "";
    background: url("../images/common/icon_arrow-head.svg") no-repeat center/contain;
    transform: translateY(-50%);
  }
  .header-nav_link {
    width: 100%;
    padding: 0.8em;
    line-height: 1.8;
    border-bottom: 1px rgba(70, 64, 59, 0.5) dashed;
  }
  .header-nav_btn > a {
    min-width: 200px;
    margin: 30px auto;
  }
  .header-nav .sub-menu .header-nav_link {
    padding: 0.5em 0.8em;
    line-height: 1.1;
  }
  .header-nav .sub-menu .header-nav_link::before {
    display: inline-block;
    margin-right: 7px;
    content: "─";
  }
  .hamburger {
    display: block;
  }
}
@media (max-width: 1150px) {
  .header-nav_item.is-open > .header-nav_link::after {
    transform: translateY(-50%) scale(-1);
  }
  .header-nav_item.is-open .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
}
@media (max-width: 768px) {
  .header-nav {
    width: 90%;
    min-width: unset;
  }
}
/* ------------------------
    cta
------------------------ */
.cta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1600px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .cta {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

.cta-item-wrap .btn-container {
  margin-top: 0;
  margin-top: -30px;
}
@media (max-width: 768px) {
  .cta-item-wrap .btn-container {
    margin-top: -27px;
  }
}
@media (max-width: 1024px) {
  .cta-item-wrap .btn {
    min-width: 200px;
  }
}
@media (max-width: 768px) {
  .cta-item-wrap .btn {
    min-width: 240px;
  }
}

.cta-item {
  display: grid;
  grid-template-rows: auto 1fr;
  height: calc(100% - 20px);
  overflow: hidden;
  font-size: var(--fs-21);
  border-radius: var(--radius-20);
}
@media (max-width: 768px) {
  .cta-item {
    grid-template-rows: auto auto;
  }
}
.cta-item_img {
  padding: 15px 30px;
  background-color: var(--white);
}
.cta-item_txt {
  align-self: center;
  padding: 1em 1em 2em;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.cta-item--blog {
  background-color: var(--bg-orange);
}
.cta-item--ec {
  background-color: var(--bg-pink);
}
.cta-item--gallery {
  background-color: var(--bg-light-blue);
}

/* ------------------------
    footer
------------------------ */
.footer {
  position: relative;
  z-index: 1;
  display: grid;
  row-gap: 20px;
  justify-content: center;
  padding: 60px 10% 70px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--off-white);
  letter-spacing: 0.05em;
  background-color: var(--base-font-color);
}
@media (max-width: 1024px) {
  .footer {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .footer {
    font-size: 0.8125rem;
  }
}
@media (max-width: 500px) {
  .footer {
    font-size: 0.75rem;
  }
}
@media (min-width: 501px) {
  .footer_inner {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
  }
}
.footer_logo {
  width: max(70px, 7.9%);
  margin-left: auto;
}
@media (max-width: 500px) {
  .footer_logo {
    margin: auto;
  }
}
.footer a {
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .footer a:hover, .footer a:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .footer a:active {
    opacity: 0.8;
  }
}

.footer-nav {
  position: relative;
  z-index: 3;
}
.footer-nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 2em;
  justify-content: center;
  margin-bottom: 5px;
}
.footer-nav_item {
  position: relative;
}
.footer-nav_item::before {
  position: absolute;
  top: 50%;
  bottom: 0;
  left: -1em;
  width: 1px;
  height: 1.1em;
  content: "";
  background-color: var(--off-white);
  opacity: 0;
  transform: translate(-50%, -50%);
}
.footer-nav_item:first-child::before,
.footer-nav_item .is-first-in-row::before {
  opacity: 0;
}
.footer-nav_item:not(.is-first-in-row)::before {
  opacity: 1;
}

.sns-group {
  position: relative;
  z-index: 3;
  display: flex;
  column-gap: 25px;
  justify-content: center;
}

.sns-item {
  width: 28px;
}

.copyright {
  font-size: 0.75rem;
  text-align: center;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 0.625rem;
  }
}

/* ==========================
  front page
========================== */
/* ------------------------
  mv
------------------------ */
.mv-swiper .swiper-slide {
  aspect-ratio: 285/98;
}
@media (max-width: 768px) {
  .mv-swiper .swiper-slide {
    aspect-ratio: 5/8;
  }
}
.mv-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ------------------------
  sec-front-brand
------------------------ */
.sec-front-brand {
  position: relative;
}
.sec-front-brand::before {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  display: block;
  width: 94%;
  max-width: 1100px;
  height: 100%;
  content: "";
  background: url("../images/front/deco_01.png") no-repeat right 105px/21.6363636364%, url("../images/front/deco_02.svg") no-repeat right calc(100% - 100px)/33.0909090909%;
  transform: translateX(-50%);
}
.sec-front-brand_inner {
  display: flex;
  gap: 9%;
}
@media (max-width: 768px) {
  .sec-front-brand_inner {
    flex-direction: column;
    row-gap: 25px;
  }
}
.sec-front-brand_catchphrase {
  flex-shrink: 0;
  order: -1;
}
.sec-front-brand .catchphrase-en {
  width: 78%;
}
.sec-front-brand_txt-wrap {
  width: 66%;
}
@media (max-width: 768px) {
  .sec-front-brand_txt-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .sec-front-brand .txt-container .txt-en:last-child {
    width: 92%;
  }
}
@media (max-width: 768px) {
  .sec-front-brand .txt-container .txt-zh:last-child {
    width: 90%;
  }
}

/* ------------------------
  gallery
------------------------ */
.gallery .swiper-wrapper {
  transition-timing-function: linear;
}

/* ------------------------
  sec-front-traceability
------------------------ */
.sec-front-traceability_inner {
  padding: 80px 7%;
  background: url("../images/front/deco_03.png") no-repeat 96% 98%/32.7272727273%;
  background-color: var(--white);
  border-radius: var(--radius-30);
}
@media (max-width: 768px) {
  .sec-front-traceability_inner {
    width: 91%;
    padding-top: 55px;
    padding-bottom: 100px;
    background-size: 32%;
  }
}
.sec-front-traceability_img {
  margin-bottom: var(--mb-80);
}
.sec-front-traceability_body {
  display: flex;
  gap: 6%;
  padding-left: 5%;
}
@media (max-width: 768px) {
  .sec-front-traceability_body {
    flex-direction: column;
    padding-left: 0;
  }
}
.sec-front-traceability_catchphrase--pc {
  order: -1;
  margin-top: -4em;
}
@media (max-width: 768px) {
  .sec-front-traceability_catchphrase--pc {
    display: none;
  }
}
.sec-front-traceability_catchphrase--sp {
  display: none;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .sec-front-traceability_catchphrase--sp {
    display: block;
  }
}
.sec-front-traceability .txt-container .txt-en:last-child {
  width: 65%;
}
@media (max-width: 768px) {
  .sec-front-traceability .txt-container .txt-en:last-child {
    width: 100%;
  }
}
.sec-front-traceability .txt-container .txt-zh:last-child {
  width: 70%;
}
@media (max-width: 768px) {
  .sec-front-traceability .txt-container .txt-zh:last-child {
    width: 100%;
  }
}

/* ------------------------
  sec-front-product
------------------------ */
.sec-front-product {
  position: relative;
}
@media (max-width: 768px) {
  .sec-front-product {
    padding-bottom: 100px;
  }
}
.sec-front-product::before {
  display: block;
  width: 100%;
  max-height: 500px;
  aspect-ratio: 300/97;
  content: "";
  background: url("../images/front/bg_traceability.jpg") no-repeat center 48%/cover;
  mask-image: url("../images/front/bg_traceability-frame.svg");
  mask-repeat: no-repeat;
  mask-position: center top;
  mask-size: cover;
  transform: translateY(-105px);
}
@media (max-width: 768px) {
  .sec-front-product::before {
    margin-bottom: -50px;
  }
}
.sec-front-product::after {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 94%;
  max-width: 1280px;
  aspect-ratio: 50/21;
  content: "";
  background: url("../images/front/deco_04.svg") no-repeat left bottom/29.53125%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .sec-front-product::after {
    transform: translate(-50%, -23%);
  }
}
.sec-front-product_inner {
  display: flex;
  gap: 3%;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .sec-front-product_inner {
    flex-direction: column-reverse;
    row-gap: 50px;
  }
}
.sec-front-product_catchphrase--pc {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sec-front-product_catchphrase--pc {
    display: none;
  }
}
.sec-front-product_catchphrase--sp {
  display: none;
  margin-bottom: 1.5em;
}
@media (max-width: 768px) {
  .sec-front-product_catchphrase--sp {
    display: block;
  }
}
.sec-front-product_map {
  flex: 0 0 40.9090909091%;
}
@media (max-width: 768px) {
  .sec-front-product_map {
    align-self: center;
    width: 89%;
  }
}

/* ------------------------
  sec-front-blog
------------------------ */
.sec-front-blog_inner {
  position: relative;
  display: flex;
  gap: 3%;
}
@media (max-width: 768px) {
  .sec-front-blog_inner {
    flex-direction: column;
    row-gap: 50px;
  }
}
.sec-front-blog_inner::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 20.9090909091%;
  aspect-ratio: 107/150;
  content: "";
  background: url("../images/front/deco_05.svg") no-repeat center/contain;
  transform: translateY(-30%);
}
@media (max-width: 768px) {
  .sec-front-blog_inner::before {
    transform: translateY(58%);
  }
}
@media (max-width: 768px) {
  .sec-front-blog_inner-en::before {
    width: 16%;
    transform: translate(3%, 36%);
  }
}
@media (max-width: 500px) {
  .sec-front-blog_inner-en::before {
    width: 22%;
    transform: translate(3%, 41%);
  }
}
.sec-front-blog .catchphrase-en {
  width: 78%;
}
@media (max-width: 768px) {
  .sec-front-blog .catchphrase-en {
    width: 85%;
  }
}
.sec-front-blog .catchphrase-zh {
  width: 77%;
}
@media (max-width: 768px) {
  .sec-front-blog .catchphrase-zh {
    width: 78%;
  }
}
.sec-front-blog_txt-container {
  margin-bottom: 2em;
}
.sec-front-blog_catchphrase {
  flex-shrink: 0;
  order: -1;
  margin-top: -5.5em;
}
@media (max-width: 768px) {
  .sec-front-blog_catchphrase {
    margin-top: 0;
  }
}

.blog-swiper-wrap {
  padding-top: 20px;
  overflow: hidden;
}

.blog-swiper {
  overflow: visible;
}
.blog-swiper .swiper-wrapper {
  padding-bottom: 50px;
}
.blog-swiper .swiper-slide {
  height: auto;
}
.blog-swiper .swiper-scrollbar-drag {
  background: var(--orange);
}

.blog-card {
  --ttl-hight: calc(var(--fs-18) * 2 * 1.5);
  display: grid;
  grid-template-rows: auto auto var(--ttl-hight) auto;
  gap: 0.875rem;
  height: 100%;
  padding: 22px;
  line-height: 1.5;
  background-color: var(--white);
  border-radius: var(--radius-20);
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .blog-card:hover .blog-card_thumb img, .blog-card:focus .blog-card_thumb img {
    transform: scale(1.05);
  }
}
@media (hover: none) {
  .blog-card:active .blog-card_thumb img {
    transform: scale(1.05);
  }
}
@media (max-width: 768px) {
  .blog-card {
    grid-template-rows: repeat(4, auto);
    gap: 9px;
  }
}
.blog-card_link {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  display: block;
  content: "";
}
.blog-card_thumb {
  aspect-ratio: 385/260;
  overflow: hidden;
}
.blog-card_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.blog-card_category-group {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 7px;
  align-items: flex-start;
}
.blog-card_category {
  position: relative;
  z-index: 2;
  padding: 0.4em 1em;
  font-size: 0.875rem;
  color: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .blog-card_category {
    font-size: 0.75rem;
  }
}
.blog-card_ttl {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  font-size: var(--fs-18);
  font-weight: 600;
  pointer-events: none;
  transition: opacity var(--transition);
  -webkit-box-orient: vertical;
}
@media (hover: hover) and (pointer: fine) {
  .blog-card_ttl:hover, .blog-card_ttl:focus {
    cursor: pointer;
    opacity: 0.8;
  }
}
@media (hover: none) {
  .blog-card_ttl:active {
    cursor: pointer;
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .blog-card_ttl {
    margin-bottom: 9px;
  }
}
.blog-card_info {
  display: grid;
  grid-template-areas: "avatar name" "avatar time";
  grid-template-columns: 50px 1fr;
  gap: 0 10px;
}
.blog-card_author-avatar {
  position: relative;
  z-index: 2;
  grid-area: avatar;
}
.blog-card_author-name {
  position: relative;
  z-index: 2;
  grid-area: name;
  font-size: var(--fs-14);
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .blog-card_author-name:hover, .blog-card_author-name:focus {
    opacity: 0.8;
  }
}
@media (hover: none) {
  .blog-card_author-name:active {
    opacity: 0.8;
  }
}
@media (max-width: 768px) {
  .blog-card_author-name {
    align-self: center;
  }
}
.blog-card_date {
  grid-area: time;
  font-size: var(--fs-12);
  font-weight: 400;
  color: var(--grey);
}
.blog-card_date::before {
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  margin-right: 0.3em;
  content: "";
  background: url("../images/common/icon_clock.svg") no-repeat center/contain;
  transform: translateY(0.15em);
}

/* ------------------------
  front-lot-search
------------------------ */
.front-lot-search {
  position: fixed;
  right: 20px;
  bottom: 20%;
  z-index: 30;
  max-width: 335px;
  padding: 1.5em 1.4em;
  line-height: 1.6470588235;
  text-align: center;
  background-color: var(--white);
  border-radius: var(--radius-20);
  box-shadow: 0 0 2px #e5e5e5;
  transform-origin: 100% 100%;
  transition: transform var(--transition);
}
.front-lot-search_close {
  position: absolute;
  top: -12px;
  right: -9px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  background: url("../images/common/icon_close.svg") no-repeat center/10px, var(--border-grey);
  border-radius: 50%;
}
.front-lot-search.js-scale {
  transform: scale(0.75);
}
@media (max-width: 768px) {
  .front-lot-search.js-scale {
    transform: scale(0.6);
  }
}
.front-lot-search.js-hidden {
  transform: scale(0.6);
}
@media (max-width: 768px) {
  .front-lot-search.js-hidden {
    transform: scale(0.45);
  }
}
.front-lot-search.js-hidden-btn {
  display: none;
}
@media (max-width: 768px) {
  .front-lot-search {
    right: 10px;
    bottom: 10px;
    transform: scale(0.75);
  }
}
.front-lot-search::before {
  display: block;
  width: 57.8313253012%;
  aspect-ratio: 43/19;
  margin-inline: auto;
  margin-top: -19%;
  content: "";
  background: url("../images/front/deco_06.png") no-repeat center/contain;
}
.front-lot-search .btn-container {
  margin-top: 13px;
}
.front-lot-search .btn {
  font-weight: 500;
}

/* ==========================
  page
========================== */
.page-template-default:not(.home) .section {
  padding-top: 70px;
  padding-bottom: 170px;
}

.kv {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .kv {
    margin-bottom: 80px;
  }
}

/* ------------------------
  sec-product
------------------------ */
.sec-product_inner {
  display: flex;
  gap: 8%;
  align-items: flex-start;
  padding-bottom: 320px;
  margin-bottom: 120px;
  background: url("../images/product/deco_01.svg") no-repeat 9% bottom/35%;
}
@media (max-width: 1200px) {
  .sec-product_inner {
    background-size: 24%;
  }
}
@media (max-width: 768px) {
  .sec-product_inner {
    flex-direction: column-reverse;
    row-gap: 45px;
    background-size: min(35%, 190px);
  }
}
.sec-product_map {
  flex: 0 0 46.3636363636%;
}
@media (max-width: 768px) {
  .sec-product_map {
    align-self: center;
    width: 90%;
  }
}
.sec-product_media-text-group {
  margin-bottom: var(--mb-120);
}
.sec-product_line-up-heading {
  margin-bottom: 1.5em;
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: 1.75;
}
.sec-product_line-up-banner {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  background-color: var(--white);
  border-radius: var(--radius-20);
}
@media (max-width: 768px) {
  .sec-product_line-up-banner {
    min-height: unset;
    padding-top: 3px;
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .sec-product_line-up-banner > img {
    width: 115%;
  }
}
.sec-product_line-up-banner .btn {
  position: absolute;
  right: 2.5%;
  bottom: 10%;
}
@media (max-width: 768px) {
  .sec-product_line-up-banner .btn {
    position: static;
    margin-inline: auto;
  }
}

/* ------------------------
  sec-about
------------------------ */
.sec-about_heading {
  margin-bottom: 1.2em;
  font-size: var(--fs-20);
  font-weight: 700;
}
.sec-about_heading::before {
  display: inline-block;
  width: 0.55em;
  aspect-ratio: 1;
  margin-right: 0.25em;
  vertical-align: 0.1em;
  content: "";
  background-color: var(--red);
  border-radius: 50%;
}

.sec-about-intro {
  background: url("../images/about/deco_01.png") no-repeat 91% 50px/21.6363636364%, url("../images/about/deco_02.svg") no-repeat 99% 260px/33.0909090909%;
}
@media (max-width: 768px) {
  .sec-about-intro {
    background-position: 100% 0, 100% 100%;
    background-size: 25%, 31%;
  }
}
@media (min-width: 769px) {
  .sec-about-intro-en {
    background-position: 91% 50px, 99% 84%;
  }
}
.sec-about-intro-zh {
  background-position: 97% 15px, 99% 100%;
  background-size: 21%, 27%;
}
@media (max-width: 768px) {
  .sec-about-intro-zh {
    background-position: 95% 0, 99% 100%;
  }
}
.sec-about-intro .lead-en {
  width: 76%;
}
.sec-about-intro .lead-zh {
  width: 75%;
}
.sec-about-intro_txt-container {
  width: 70%;
}
@media (max-width: 768px) {
  .sec-about-intro_txt-container {
    width: 100%;
  }
}
.sec-about-intro_txt-container .txt-en:last-child {
  width: 92%;
}
@media (max-width: 768px) {
  .sec-about-intro_txt-container-zh {
    width: 80%;
  }
}
@media (max-width: 500px) {
  .sec-about-intro_txt-container-zh {
    width: 100%;
  }
  .sec-about-intro_txt-container-zh .txt:last-child {
    width: 93%;
  }
}

.sec-about-message {
  margin-top: 100px;
}
.sec-about-message_sub-heading {
  margin-bottom: 1em;
  font-size: var(--fs-30);
  font-weight: 700;
  line-height: 1.2;
}
.sec-about-message_txt-container {
  text-align: justify;
}
.sec-about-message_txt-container::after {
  clear: both;
  display: block;
  content: "";
}
.sec-about-message_txt-container-en {
  text-align: left;
}
.sec-about-message_txt-container-img {
  float: right;
  width: 44.5454545455%;
  max-width: 457px;
  margin-top: 0.5em;
  margin-bottom: 2em;
  margin-left: 4em;
}
@media (max-width: 768px) {
  .sec-about-message_txt-container-img {
    margin-bottom: 1em;
    margin-left: 2em;
  }
}
.sec-about-message_txt-container-img-en {
  margin-bottom: 1em;
  margin-left: 1em;
}

.sec-company-profile {
  padding-bottom: 0;
}

.company-profile-table {
  width: 94%;
  margin-inline: auto;
  line-height: 1.4;
}
.company-profile-table tr {
  display: grid;
  grid-template-columns: 12em 1fr;
  padding-top: 1em;
  padding-bottom: 1em;
  border-top: 1px solid var(--border-grey);
}
@media (max-width: 768px) {
  .company-profile-table tr {
    grid-template-columns: 9em 1fr;
  }
}
.company-profile-table tr:last-of-type {
  border-bottom: 1px solid var(--border-grey);
}
.company-profile-table th {
  display: grid;
  place-content: center;
  padding-right: 1em;
  padding-left: 1em;
  text-align: center;
}

/* ------------------------
  sec-brand
------------------------ */
.sec-brand_message {
  background: url("../images/about/brand/deco_01.svg") no-repeat 98% 80%/23.5454545455%;
}
@media (max-width: 768px) {
  .sec-brand_message {
    padding-bottom: 116px;
    margin-bottom: -100px;
    background-position-y: 100%;
    background-size: 134px;
  }
}
.sec-brand_message .txt-container {
  width: 71%;
}
@media (max-width: 768px) {
  .sec-brand_message .txt-container {
    width: 100%;
  }
}

/* ------------------------
  sec-traceability
------------------------ */
.sec-traceability-intro {
  margin-bottom: 130px;
  background: url("../images/traceability/deco_01.svg") no-repeat 91% 100%/29.0909090909%;
}
@media (max-width: 768px) {
  .sec-traceability-intro {
    padding-bottom: 100px;
    margin-bottom: 60px;
    background-position: 98% 98%;
  }
}
.sec-traceability-intro_txt-container {
  width: 64%;
}
@media (max-width: 768px) {
  .sec-traceability-intro_txt-container {
    width: 100%;
  }
}
.sec-traceability-intro-en {
  background-size: min(29%, 260px);
}
@media (max-width: 768px) {
  .sec-traceability-intro-en {
    padding-bottom: 130px;
    background-size: min(33%, 180px);
  }
}
.sec-traceability-intro-zh {
  background-size: min(29%, 260px);
}
@media (max-width: 768px) {
  .sec-traceability-intro-zh {
    padding-bottom: 130px;
    background-size: min(33%, 180px);
  }
}

.sec-traceability-search {
  padding: 90px 45px 65px;
  border-radius: var(--radius-30);
}
@media (max-width: 768px) {
  .sec-traceability-search {
    padding: 50px 35px 15px;
  }
}
.sec-traceability-search_heading {
  margin-bottom: 1.2em;
  font-size: var(--fs-34);
  font-weight: 700;
  line-height: 1.85;
  text-align: center;
}

.lot-search-box {
  display: grid;
  grid-template-columns: 1fr 11em;
  max-width: 670px;
  margin-inline: auto;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .lot-search-box {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.lot-search-box_input {
  padding: 0.8em;
  background-color: var(--bg-beige);
  border: 1px solid var(--base-font-color);
}
.lot-search-box_input::placeholder {
  color: #a89e81;
}
.lot-search-box_btn {
  padding: 0.5em;
  color: var(--white);
  text-align: center;
  background: url("../images/common/icon_arrow-right.svg") no-repeat calc(100% - 0.9em) center/0.95em;
  background-color: var(--red);
  border: 1px solid var(--red);
}
@media (max-width: 768px) {
  .lot-search-box_btn {
    width: 210px;
    padding: 0.9em;
    margin-inline: auto;
    border-radius: 9999px;
  }
}

.lot-search-table {
  line-height: 1.5;
  border-top: 1px solid var(--base-font-color);
}
@media (max-width: 500px) {
  .lot-search-table {
    width: 116% !important;
    margin-left: -8%;
  }
}
.lot-search-table tr {
  display: grid;
  grid-template-columns: 11em 1fr;
  border-bottom: 1px solid var(--base-font-color);
}
@media (max-width: 500px) {
  .lot-search-table tr {
    grid-template-columns: 6em 1fr;
  }
}
.lot-search-table th {
  place-content: center;
  text-align: center;
  background-color: var(--bg-beige);
}
.lot-search-table th,
.lot-search-table td {
  padding: 1em 1.5em;
}
@media (max-width: 500px) {
  .lot-search-table th,
  .lot-search-table td {
    padding: 1em 0.5em;
  }
}
.lot-search-table a {
  display: block;
}

/* ------------------------
  sec-contact
------------------------ */
.wpcf7-form [type=text],
.wpcf7-form [type=email],
.wpcf7-form [type=url],
.wpcf7-form [type=tel] {
  width: 100%;
  padding: 0.8em;
  background-color: var(--white);
  border: 1px solid var(--border-grey);
}
.wpcf7-form ::placeholder {
  color: #c5beb9;
}
.wpcf7-form .required::before {
  display: inline-block;
  padding: 0.2em 1.5em;
  margin-right: 0.5em;
  font-size: 0.85em;
  line-height: 1.5;
  color: var(--white);
  content: "必須";
  background-color: var(--red);
  border-radius: 9999px;
}
.wpcf7-form .any::before {
  display: inline-block;
  padding: 0.2em 1.5em;
  margin-right: 0.5em;
  font-size: 0.85em;
  line-height: 1.5;
  content: "任意";
  border: 1px solid currentcolor;
  border-radius: 9999px;
}
.section-contact-en .wpcf7-form .required::before {
  content: "Required";
}
.section-contact-en .wpcf7-form .any::before {
  content: "Optional";
}
.section-contact-zh .wpcf7-form .required::before {
  content: "必填";
}
.section-contact-zh .wpcf7-form .any::before {
  content: "選填";
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.5em;
}
.wpcf7-form label:not(.wpcf7-radio label) {
  display: block;
  margin-bottom: 1.8em;
  font-size: 1.1875rem;
}
@media (max-width: 768px) {
  .wpcf7-form label:not(.wpcf7-radio label) {
    font-size: 1.0625rem;
  }
}
.wpcf7-form .wpcf7-list-item-label {
  font-size: 1.0625rem;
}
@media (max-width: 768px) {
  .wpcf7-form .wpcf7-list-item-label {
    font-size: 0.9375rem;
  }
}
.wpcf7-form [data-name=privacy-policy] {
  width: fit-content;
  margin-inline: auto;
}
.wpcf7-form .wpcf7-list-item {
  line-height: 1;
}
.wpcf7-form [data-name=privacy-policy] .wpcf7-list-item {
  display: block;
}
.wpcf7-form .wpcf7-list-item + .wpcf7-list-item {
  margin-top: 8px;
}
.wpcf7-form input[type=checkbox] {
  display: none;
}
.wpcf7-form .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  height: 26px;
  padding-left: 37px;
  line-height: 26px;
}
.wpcf7-form [type=radio] + .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  height: 21px;
  padding-left: 28px;
  margin-right: 1em;
  line-height: 21px;
}
.wpcf7-form [type=radio] + .wpcf7-list-item-label::before {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 21px;
  aspect-ratio: 1;
  content: "";
  background: #fff;
  border: 2px solid var(--red);
  border-radius: 50%;
}
.wpcf7-form [type=radio]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 13px;
  aspect-ratio: 1;
  content: "";
  background-color: var(--red);
  border-radius: 50%;
}
.wpcf7-form [type=checkbox] + .wpcf7-list-item-label::before {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  display: block;
  width: 26px;
  aspect-ratio: 1;
  content: "";
  background: #fff;
  border: 2px solid var(--red);
}
.wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: var(--red);
}
.wpcf7-form input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 5px;
  left: 6px;
  display: block;
  width: 14px;
  height: 10px;
  content: "";
  border-top: 3px solid var(--white);
  border-right: 3px solid var(--white);
  transform: rotate(135deg);
}

/* ==========================
  archive
========================== */
/* ------------------------
  blog
------------------------ */
.author-introduction {
  padding-top: 50px;
}
.author-introduction_heading {
  width: fit-content;
  padding: 0.2em 2em;
  background-color: #c5beb9;
}
.author-introduction_author-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .author-introduction_author-group {
    grid-template-columns: 1fr;
  }
}
.author-introduction_author {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 10px;
  padding: 30px 15px 20px 30px;
  font-size: var(--fs-15);
  border: 1px solid var(--border-grey);
}
@media (max-width: 768px) {
  .author-introduction_author {
    grid-template-columns: 80px 1fr;
    padding: 20px 10px 20px 16px;
  }
}
.author-introduction_author:nth-child(2n) {
  border-left-width: 0;
}
@media (max-width: 768px) {
  .author-introduction_author:nth-child(2n) {
    border-left-width: 1px;
  }
}
@media (max-width: 768px) {
  .author-introduction_author + .author-introduction_author {
    border-top-width: 0;
  }
}
.author-introduction_author-name {
  display: inline-block;
  margin-right: 1em;
  font-size: 1.5em;
}
@media (max-width: 768px) {
  .author-introduction_author-name {
    font-size: 1.4em;
  }
}
.author-introduction_author-ttl {
  display: inline-block;
}
.author-introduction_author-desc {
  display: -webkit-box;
  margin-bottom: 0.5em;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.author-introduction_link {
  display: block;
  width: fit-content;
  margin-left: auto;
}
.author-introduction_link::after {
  display: inline-block;
  width: 1.1em;
  aspect-ratio: 1;
  margin-left: 5px;
  vertical-align: -0.1em;
  content: "";
  background-color: currentColor;
  mask-image: url("../images/common/icon_arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
}

.blog-category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 75px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-category_list {
    gap: 10px;
    padding-bottom: 40px;
  }
}
.blog-category_btn {
  min-width: 6.5em;
  padding: 0.5em 1.8em;
  text-align: center;
  background-color: var(--white);
  border: 1px solid #a99e97;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .blog-category_btn {
    padding: 0.5em 1.1em;
  }
}
.blog-category_btn.is-active {
  color: var(--white);
  background-color: var(--red);
  border-color: var(--red);
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px 30px;
}
@media (max-width: 1024px) {
  .blog-list {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
@media (max-width: 768px) {
  .blog-list {
    gap: 20px;
  }
}

.pagination {
  margin: 40px 0;
  text-align: center;
}
.pagination ul {
  display: inline-flex;
  gap: 10px;
}
.pagination ul li .page-numbers {
  display: grid;
  place-content: center;
  width: 60px;
  aspect-ratio: 1;
  text-align: center;
  background-color: var(--white);
  border: 1px solid var(--border-grey);
  border-radius: 50%;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}
.pagination ul li .page-numbers.next {
  position: relative;
}
.pagination ul li .page-numbers.next::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  content: "";
  background-color: currentColor;
  mask-image: url("../images/common/icon_arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px;
}
.pagination ul li .page-numbers.prev {
  position: relative;
}
.pagination ul li .page-numbers.prev::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  content: "";
  transform: scale(-1);
  background-color: currentColor;
  mask-image: url("../images/common/icon_arrow-right.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px;
}
@media (hover: hover) and (pointer: fine) {
  .pagination ul li .page-numbers:hover, .pagination ul li .page-numbers:focus {
    color: #fff;
    background-color: var(--red);
    border-color: var(--red);
  }
}
@media (hover: none) {
  .pagination ul li .page-numbers:active {
    color: #fff;
    background-color: var(--red);
    border-color: var(--red);
  }
}
.pagination ul li .page-numbers.current {
  font-weight: 700;
  color: #fff;
  background-color: var(--red);
  border-color: var(--red);
}

/* ==========================
  author
========================== */
.author {
  border-bottom: 1px solid var(--border-grey);
}
.author_heading {
  padding: 0.1em 2em;
  margin-bottom: 40px;
  font-size: var(--fs-30);
  font-weight: 700;
  text-align: center;
  background-color: #c5beb9;
}
.author_body {
  width: 80%;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .author_body {
    width: 90%;
  }
}
.author_avatar {
  width: 140px;
  margin-inline: auto;
}
.author_name {
  font-weight: 700;
  text-align: center;
}
.author_ttl {
  margin-bottom: 8px;
  font-size: var(--fs-15);
  text-align: center;
}
.author_sns-group {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.author_sns {
  width: 20px;
}
@media (max-width: 768px) {
  .author_sns {
    width: 18px;
  }
}
.author_desc {
  margin-top: 50px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .author_desc {
    margin-top: 30px;
    margin-bottom: 50px;
  }
}

.blog-list-ttl {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  font-size: var(--fs-26);
  font-weight: 700;
  text-align: center;
}

/* ==========================
  single
========================== */
.section-article_heading {
  margin-bottom: 0.7em;
  font-size: var(--fs-30);
}
.section-article_date {
  font-weight: 400;
  color: var(--grey);
}
.section-article_date::before {
  display: inline-block;
  width: 1em;
  aspect-ratio: 1;
  margin-right: 0.3em;
  content: "";
  background: url("../images/common/icon_clock.svg") no-repeat center/contain;
  transform: translateY(0.15em);
}
.section-article_thumb {
  width: 85%;
  max-width: 850px;
  margin-inline: auto;
  margin-bottom: 60px;
  overflow: hidden;
  border-radius: 10px;
}
.section-article_content {
  padding-bottom: 130px;
}
.section-article_content .wp-block-heading {
  margin-bottom: 1em;
  font-size: var(--fs-30);
}
.section-article_content .wp-block-heading:not(:first-child) {
  margin-top: 2.5em;
}
.section-article .author-introduction_author {
  gap: 20px;
  border-left-width: 1px;
}
.section-article .author-introduction_author-desc {
  padding-right: 1em;
}
.section-article .author_sns-group {
  justify-content: flex-end;
}
.section-article .author-introduction_row-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 2em;
  align-items: center;
  justify-content: space-between;
}

.related-articles {
  margin-top: var(--mb-120);
}
.related-articles_heading {
  font-size: var(--fs-30);
  font-weight: 700;
  text-align: center;
}
.related-articles_none {
  text-align: center;
}

/* ------------------------
  blog
------------------------ */
.section-blog-article .blog-card_category-group {
  margin-bottom: 17px;
}/*# sourceMappingURL=style.css.map */