@charset "UTF-8";
:root {
  --color-theme-red: #e7312f;
  --color-base: #fff;
  --color-main: #fbf0f3;
  --color-sub: #fae9ed;
  --color-gray-c8: #c8c8c8;
  --color-gray-78: #787878;
  --bg-white: #fff;
  --bg-gray: #f6f6f6;
  --bg-base: #edebda;
  --text-white: #fdfceb;
  --text-black: #3c3c3c;
  --text-link: #007bff;
  --text-link-hover: #0056b3;
  --border-gray: #ddd;
  --border-red: #ff0000;
  --button-disabled: #ddd;
  --button-error: #dc3545;
  --button-success: #28a745;
  --button-warning: #ffc107;
  --button-info: #17a2b8;
  /* font-family */
  --font-sans: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic",
  	"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic",
  	sans-serif;
  --font-zenmaru: "Zen Maru Gothic", var(--font-sans);
  /* base typography */
  --font-size-base: 14px;
  --font-weight-base: 500;
  --line-height-base: 1.7;
  --letter-spacing-base: 0.05em;
  --width: 1280;
  --px-vw: 100vw / var(--width);
}

@media screen and (max-width: 767px) {
  :root {
    --width: 375;
  }
}
/*
  ----------------
  ユーティリティー
  ----------------
*/
.container {
  position: relative;
  padding: 0 5vmin;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  height: 1px;
  width: 1px;
}

.crumb-arrow {
  display: block;
  width: 8px;
  height: 13px;
  background: url("../images/202602/crumb-arrow.svg") 0 0 no-repeat;
}

/*--------------------------------------------------
 Base
--------------------------------------------------*/
/*
  ----------------
  Base styles
  ----------------
*/
html {
  overflow-x: hidden;
}

body {
  background-color: var(--text-white);
}
body.home {
  background-color: var(--bg-base);
}

.site-wrapper {
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-top: -10px;
}

main {
  -webkit-box-flex: 1;
  flex: 1;
  overflow-x: hidden;
}

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

a::before,
a::after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

figure {
  margin: 0;
}

/*
  ----------------
  Base font settings
  ----------------
*/
body {
  color: #000;
  font-size: var(--font-size-base);
  font-family: var(--font-sans);
  font-weight: var(--font-weight-base);
  letter-spacing: var(--letter-spacing-base);
  line-height: var(--line-height-base);
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 16px;
}

* {
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
  font-size: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border: 0;
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

ul,
ol,
dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

li,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
  color: inherit;
  cursor: pointer;
}

p {
  margin-top: 0;
  margin-bottom: 0;
}

input[type=submit],
input[type=reset],
input[type=button],
button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  cursor: pointer;
}

button:focus {
  outline: 0;
}

input::-moz-focus-inner,
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

[role=button] {
  color: inherit;
  cursor: default;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  white-space: pre;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@media all and (min-width: 768px) {
  .container {
    max-width: 1030px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .sp-only {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 20px;
  }
  a[href^=tel] {
    pointer-events: none;
  }
}
@media all and (max-width: 767px) {
  .site-wrapper {
    margin-top: 0;
  }
  .pc-only {
    display: none !important;
  }
}
@media (any-hover: hover) {
  a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    cursor: pointer;
  }
  a:hover {
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
  }
}
.header {
  position: relative;
  z-index: 1;
  height: calc(204 * var(--px-vw));
  padding: 0 40px;
}
.header .inner {
  position: relative;
  z-index: 1;
  max-width: 1015px;
  margin: 0 auto;
  padding-top: 34px;
}

.nami {
  position: relative;
}
.nami::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: url("../../assets/images/202602/wave-red.svg") center top/100% 100% no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}
.nami__wrap {
  position: relative;
  z-index: 1;
}

.footer {
  background-color: #fdfceb;
  padding-inline: 40px;
}
.footer__wrap {
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  -webkit-filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  margin-inline: auto;
  padding-block: 28px 18px;
  max-width: 1280px;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
}
.footer__logo {
  margin-inline: auto;
  max-width: 140px;
  width: 100%;
}
.footer__copy {
  color: #814444;
  font-size: 10px;
}

@media all and (max-width: 767px) {
  .header {
    height: calc(78 * var(--px-vw));
    padding: 0;
  }
  .header .inner {
    padding: calc(10 * var(--px-vw)) calc(17 * var(--px-vw));
  }
  .header .inner a {
    width: calc(80 * var(--px-vw));
  }
  .nami:before {
    background-image: url("../../assets/images/202602/wave-red-sp.svg");
  }
  .footer {
    padding: calc(59 * var(--px-vw)) calc(20 * var(--px-vw)) 0;
  }
  .footer__wrap {
    padding: calc(29 * var(--px-vw)) calc(18 * var(--px-vw));
  }
  .footer__logo {
    width: calc(136 * var(--px-vw));
  }
}
/* ========================================
  ヒーローセクション
======================================== */
.hero {
  position: relative;
}
.hero__wrap {
  position: relative;
  padding-inline: 58px;
}
.hero__image {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  margin-inline: auto;
  height: auto;
  max-width: 1280px;
  width: 100%;
  aspect-ratio: 1280/852;
}
.hero__content {
  padding: 4.285vw 58px 0;
  text-align: center;
  height: 100%;
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: start;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hero__title {
  -webkit-filter: drop-shadow(2.9374px 2.9374px 11.7498px #897651);
  filter: drop-shadow(2.9374px 2.9374px 11.7498px #897651);
  max-width: 885px;
  width: 63.21vw;
}
.hero__catch {
  color: var(--text-white);
  font-family: var(--font-zenmaru);
  font-weight: bold;
  font-size: 1.714vw;
  margin-top: 3vw;
}
.hero__banner {
  margin-top: 2.1428vw;
  max-width: 28.57vw;
  width: 100%;
}
.hero__icon {
  width: 13px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* === 紹介セクション（ヒーロー下） ===================== */
.intro {
  position: relative;
}
.intro::before {
  background: url(../../assets/images/intro_bg.webp) 50%/contain no-repeat;
  content: "";
  aspect-ratio: 1;
  width: 57.142vw;
  position: absolute;
  bottom: -50px;
  right: 38px;
}
.intro__wrap {
  padding: 90px 40px 145px;
  max-width: 980px;
  margin: 0 auto;
}
.intro__title {
  color: var(--text-white);
  font-family: var(--font-zenmaru);
  font-weight: bold;
  letter-spacing: 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.intro__title-l {
  font-size: 67px;
  line-height: 1.6;
}
.intro__title-m {
  font-weight: bold;
  font-size: 43px;
  letter-spacing: 0.2px;
}
.intro__body {
  padding-top: 20px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 27px;
}
.intro__lead {
  color: var(--text-white);
  font-family: var(--font-zenmaru);
  font-weight: bold;
  font-size: 22px;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

/* === おいしさの秘密セクション ===================== */
.secret__wrap {
  max-width: 1000px;
  margin: 0 auto;
  padding: 53px 40px 156px;
}
.secret__list {
  padding-top: 45px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 60px;
}
.secret__item {
  background: #fff;
  border-radius: 40px;
  -webkit-filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  padding: 60px;
  display: grid;
  grid-template-columns: 256px 1fr;
  gap: 32px;
}
.secret__item.--reverse {
  grid-template-columns: 1fr 256px;
}
.secret__item-title {
  color: #dc4836;
  font-family: var(--font-zenmaru);
  font-size: 30px;
  font-weight: bold;
  line-height: 1;
  text-align: left;
}
.secret__item-text {
  color: #814444;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: -1px;
  margin-top: 30px;
  text-align: left;
}

/* === フレーバー紹介セクション ===================== */
.flavor {
  margin-inline: auto;
  max-width: 1400px;
  width: 100%;
}
.flavor__wrap {
  padding: 48px 40px 165px;
  max-width: 1080px;
  margin: 0 auto;
}
.flavor__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.flavor__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}
.flavor__item.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.flavor__item.--reverse .flavor__item-image {
  margin-left: 0;
}
.flavor__item-image {
  width: 100%;
}
.flavor__item-body {
  max-width: 540px;
  width: 100%;
}
.flavor__item-title {
  color: #fdfceb;
  font-family: var(--font-zenmaru);
  font-size: 32px;
  font-weight: bold;
}
.flavor__item-text {
  color: #fdfceb;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -1px;
  margin-top: 16px;
}
.flavor__item-note {
  color: #fdfceb;
  font-size: 14px;
  margin-top: 16px;
}
/* === Our Story セクション ===================== */
.story {
  background: #fdfceb;
}
.story__wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 40px 0;
}
.story__list {
  padding-top: 66px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 80px;
}
.story__item {
  display: -webkit-box;
  display: flex;
  gap: 40px;
}
.story__item-image {
  width: 100%;
}
.story__item-body {
  max-width: 480px;
  width: 100%;
}
.story__item-title {
  color: #dc4836;
  font-family: var(--font-zenmaru);
  font-size: 26px;
  font-weight: bold;
}
.story__item-text {
  color: #814444;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -1px;
  margin-top: 16px;
}
.story__item-note {
  font-size: 14px;
}
.story__item-link {
  color: #dc4836;
  font-size: 14px;
}
/* === NEWS セクション ===================== */
.news__wrap {
  padding: 32px 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px;
}
.news__box {
  background: #fff;
  border-radius: 40px;
  -webkit-filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  filter: drop-shadow(8px 8px 16px rgba(81, 78, 57, 0.08));
  padding: 25px 60px;
}
.news__title {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #d10000;
}
.news__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  padding: 15px 0;
  position: relative;
}
.news__item + .news__item::before {
  background-image: -webkit-radial-gradient(circle, #948782 1px, transparent 1px);
  background-image: radial-gradient(circle, #948782 1px, transparent 1px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 10px 2px;
  content: "";
  height: 2px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.news__date {
  color: #dc4836;
  font-size: 14px;
}
.news__text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-left: 16px;
}
.news .heading {
  display: flex;
  justify-content: space-between;
}
.news .heading__title {
  margin-left: -2px;
}
.news .heading .more {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-theme-red);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  margin-top: 1.7em;
}

/* === 背景セクション ===================== */
.bg-section {
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.bg-section.--01 {
  background-image: url(../../assets/images/bg01_pc.webp);
  background-position: 50% 100%;
}
.bg-section.--02 {
  background-color: #e7312e;
  background-image: url(../../assets/images/bg02_pc.webp);
  background-position: 50% 100%;
}
.bg-section.--03 {
  background-color: #fdfceb;
  background-image: url(../../assets/images/bg03_pc.webp);
  background-position: 50% 100%;
}
.bg-section.--04 {
  background-color: #fdfceb;
}

/* === 見出し ===================== */
.heading {
  display: grid;
  place-items: center;
}
.heading__icon {
  width: 32px;
}
.heading__title {
  color: #dc4836;
  font-weight: bold;
  font-family: var(--font-zenmaru);
  font-size: 46px;
}
.heading__title-sub {
  color: #814444;
  font-family: var(--font-zenmaru);
  font-size: 32px;
  font-weight: bold;
}
.heading__lead {
  color: #814444;
  font-family: var(--font-zenmaru);
  font-size: 28px;
  font-weight: bold;
}

.flavor .heading__title {
  color: #fdfceb;
}

/* ==================================================
  Media Queries（まとめ）
================================================== */
@media all and (min-width: 1401px) {
  .hero__content {
    padding-top: 60px;
  }
  .hero__catch {
    font-size: 24px;
    margin-top: 42px;
  }
  .hero__banner {
    margin-top: 30px;
    max-width: 400px;
  }
  .intro::before {
    width: 800px;
  }
}
@media all and (min-width: 768px) {
  .secret__item.--reverse .secret__item-image {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
  .secret__item.--reverse .secret__item-body {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
  .flavor__item.--reverse {
    margin-top: -24px;
  }
  .flavor__item:nth-child(3) {
    margin-top: -44px;
  }
  .flavor__item-image {
    margin-left: calc((700px - 50%) * -1);
    max-width: 684px;
    -webkit-transform: translateY(-35px);
    transform: translateY(-35px);
  }
  .flavor__item.--reverse .flavor__item-image {
    margin-right: calc((700px - 50%) * -1);
    max-width: 644px;
  }
  .flavor__item-body {
    margin-left: -25px;
  }
  .story__item.--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }
  .story__item-image {
    max-width: 360px;
  }
}
@media all and (max-width: 767px) {
  .hero__image {
    aspect-ratio: 375/667;
  }
  .hero__wrap {
    padding-inline: 0;
  }
  .hero__content {
    -webkit-box-pack: center;
    justify-content: center;
    padding: 0 0 20.26vw;
  }
  .hero__title {
    width: 84vw;
  }
  .hero__catch {
    font-size: 4.53vw;
    margin-top: 9vw;
  }
  .hero__banner {
    margin-top: 16vw;
    max-width: 46.93vw;
  }
  .hero__icon {
    bottom: -40px;
  }
  .intro::before {
    bottom: -9px;
    right: 50%;
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
    width: 387px;
  }
  .intro__wrap {
    padding: 32px 20px 330px 40px;
  }
  .intro__title-l {
    font-size: 44px;
  }
  .intro__title-m {
    font-size: 28px;
  }
  .intro__body {
    gap: 15px;
    padding-top: 25px;
  }
  .intro__lead {
    font-size: 13px;
  }
  .secret__wrap {
    padding: 40px 0 70px;
  }
  .secret__list {
    gap: 50px;
    padding-top: 32px;
  }
  .secret__item {
    border-radius: 0 40px 40px 0;
    margin-right: 20px;
    padding: 40px 30px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    flex-direction: column-reverse;
    gap: 26px;
  }
  .secret__item.--reverse {
    border-radius: 40px 0 0 40px;
    margin-right: 0;
    margin-left: 20px;
  }
  .secret__item-image {
    display: grid;
    place-items: center;
  }
  .secret__item-image img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 232px;
    max-width: 250px;
  }
  .secret__item-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .secret__item:nth-child(n+2) .secret__item-title {
    text-align: center;
  }
  .secret__item-text {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -1.2px;
    margin-top: 20px;
  }
  .flavor__wrap {
    padding: 52px 0 75px;
  }
  .flavor__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .flavor__item.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .flavor__item-image {
    margin-top: -50px;
    overflow-x: hidden;
  }
  .flavor__item:nth-child(3) .flavor__item-image {
    margin-top: -30px;
  }
  .flavor__image-photo {
    min-width: calc(100% + 70px);
  }
  .flavor__item.--reverse .flavor__image-photo {
    min-width: calc(100% + 30px);
    margin-left: -18px;
  }
  .flavor__item:nth-child(3) .flavor__image-photo {
    min-width: calc(100% + 15px);
  }
  .flavor__item.--reverse .flavor__item-image {
    margin-left: 0;
    margin-top: -10px;
  }
  .flavor__item-body {
    padding-inline: 28px;
  }
  .flavor__item.--reverse .flavor__item-body {
    margin-top: -25px;
  }
  .flavor__item-title {
    font-size: 24px;
  }
  .flavor__item.--reverse .flavor__item-title {
    text-align: right;
  }
  .flavor__item-text {
    font-size: 14px;
    line-height: 1.7;
    margin-top: 9px;
  }
  .flavor__item-note {
    font-size: 12px;
    margin-top: 9px;
  }
  .story__wrap {
    padding: 54px 20px;
  }
  .story__list {
    padding: 40px 20px;
    gap: 20px;
  }
  .story__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 10px;
  }
  .story__item-title {
    font-size: 20px;
    text-align: center;
  }
  .story__item-text {
    margin-top: 10px;
  }
  .news__wrap {
    padding: 0 20px;
    padding-bottom: 40px;
  }
  .news__box {
    padding: 12px 24px 30px;
  }
  .news__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 21px 0 16px;
  }
  .news__item:first-of-type {
    padding-top: 6px;
  }
  .news__text {
    margin-left: 0;
    line-height: 1.6;
    font-size: 14px;
  }
  .news .heading {
    align-items: center;
  }
  .news .heading__title {
    font-size: 24px;
  }
  .news .heading .more {
    font-size: 14px;
    margin-top: 0;
  }
  .bg-section.--01 {
    background-image: url(../../assets/images/bg01_sp.webp);
  }
  .bg-section.--02 {
    background-image: url(../../assets/images/bg02_sp.webp);
  }
  .bg-section.--03 {
    background-image: url(../../assets/images/bg03_sp.webp);
  }
  .heading__icon {
    width: 22px;
  }
  .heading__title {
    font-size: 28px;
  }
  .heading__title-sub {
    font-size: 18px;
    letter-spacing: 0;
  }
  .heading__lead {
    font-size: 18px;
    margin-top: 8px;
  }
}
/* ========================================
  News Archive (archive.php)
======================================== */
.news-archive {
  background: var(--text-white);
  padding: 0 40px 40px;
}
.news-archive__wrap {
  max-width: 1000px;
  margin: 0 auto;
}
.news-archive__header {
  display: block;
  margin-bottom: 12px;
}
.news-archive__title {
  color: var(--color-theme-red);
  font-family: var(--font-zenmaru);
  font-weight: bold;
  font-size: 58px;
  line-height: 1.1;
}
.news-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 47px 50px;
  margin: 0;
  padding: 0;
}
.news-archive__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  list-style: none;
}
.news-archive__empty {
  padding: 24px 0;
  color: #814444;
  font-size: 16px;
  line-height: 1.8;
  text-align: center;
}
.news-archive__pager {
  margin-top: 74px;
}
.news-archive__pager ul {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-archive__pager .page-numbers li {
  display: flex;
  justify-content: center;
  place-items: center;
  text-align: center;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--color-gray-78);
  color: var(--color-gray-78);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.news-archive__pager .page-numbers li:has(.current) {
  background: var(--color-theme-red);
  border-color: var(--color-theme-red);
  color: #fff;
}
.news-archive__pager .page-numbers li.dots {
  border: 0;
  min-width: auto;
  padding: 0 6px;
}
.news-archive__pager .page-numbers li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.news-archive__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 53px;
  font-size: 13px;
}
.news-archive__crumb {
  text-decoration: none;
}
.news-archive__crumb-sep {
  opacity: 0.8;
}
.news-archive__crumb-current {
  opacity: 0.9;
}

/* ----------------
  Card
  ---------------- */
.news-card {
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 37px;
}
.news-card__thumb {
  aspect-ratio: 300/168;
  background: var(--color-gray-c8);
  overflow: hidden;
  border-radius: 20px;
}
.news-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-card__ph {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(220, 72, 54, 0.08), rgba(129, 68, 68, 0.08));
}
.news-card__date {
  display: block;
  color: var(--color-theme-red);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 12px 0 0;
}
.news-card__text {
  color: var(--text-black);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  margin: 10px 0 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.news-card__more {
  position: absolute;
  bottom: 0;
  right: 0;
  float: right;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  margin: 14px 0 0;
  opacity: 0.95;
}
.news-card__arrow {
  color: var(--color-theme-red);
  font-weight: bold;
}

.news-card__arrow {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 17px;
  height: 17px;
  background: url("../images/202602/arrow.svg") 0 0 no-repeat;
}

/* ----------------
  SP
  ---------------- */
@media all and (max-width: 767px) {
  .news-archive {
    padding: calc(22 * var(--px-vw)) calc(38 * var(--px-vw)) 0;
  }
  .news-archive__header {
    margin-bottom: calc(18 * var(--px-vw));
  }
  .news-archive__title {
    font-size: calc(32 * var(--px-vw));
  }
  .news-archive__grid {
    grid-template-columns: 1fr;
    gap: calc(8 * var(--px-vw));
  }
  .news-archive__pager {
    margin-top: calc(47 * var(--px-vw));
  }
  .news-archive__pager .page-numbers {
    justify-content: center;
    font-size: calc(13 * var(--px-vw));
    gap: calc(14 * var(--px-vw));
  }
  .news-archive__pager .page-numbers li {
    min-width: calc(36 * var(--px-vw));
    height: calc(36 * var(--px-vw));
  }
  .news-archive__breadcrumb {
    margin-top: calc(20 * var(--px-vw));
    font-size: calc(12 * var(--px-vw));
  }
  .news-card {
    padding-bottom: calc(18 * var(--px-vw));
  }
  .news-card__date {
    margin: calc(12 * var(--px-vw)) 0 0;
    font-size: calc(13 * var(--px-vw));
  }
  .news-card__text {
    margin: calc(8 * var(--px-vw)) 0 0;
    font-size: calc(14 * var(--px-vw));
  }
  .news-card__more {
    position: relative;
    margin: calc(16 * var(--px-vw)) 0 0;
    font-size: calc(12 * var(--px-vw));
  }
}
.news-single__lead {
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}
.news-single__lead > * + * {
  margin-top: 1.2em;
}
.news-single__lead h1, .news-single__lead h2, .news-single__lead h3, .news-single__lead h4, .news-single__lead h5, .news-single__lead h6 {
  line-height: 1.35;
  margin: 1.6em 0 0.6em;
  font-weight: 700;
}
.news-single__lead h1 {
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.1rem);
}
.news-single__lead h2 {
  font-size: clamp(1.35rem, 1.1rem + 0.6vw, 1.7rem);
}
.news-single__lead h3 {
  font-size: 1rem;
}
.news-single__lead h4 {
  font-size: 0.95rem;
}
.news-single__lead h5 {
  font-size: 0.925rem;
}
.news-single__lead h6 {
  font-size: 0.915rem;
}
.news-single__lead h1 {
  margin-top: 2em;
}
.news-single__lead p {
  margin: 0;
}
.news-single__lead a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: from-font;
}
.news-single__lead a:hover {
  text-decoration-thickness: 0.14em;
}
.news-single__lead strong {
  font-weight: 700;
}
.news-single__lead em {
  font-style: italic;
}
.news-single__lead code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  padding: 0.15em 0.35em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
}
.news-single__lead kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  padding: 0.15em 0.35em;
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.news-single__lead var {
  font-style: italic;
}
.news-single__lead cite {
  font-style: normal;
  opacity: 0.85;
}
.news-single__lead q {
  quotes: "「" "」" "『" "』";
}
.news-single__lead sub, .news-single__lead sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
.news-single__lead sup {
  top: -0.5em;
}
.news-single__lead sub {
  bottom: -0.2em;
}
.news-single__lead blockquote {
  margin: 1.6em 0;
  padding: 1em 1.2em;
  border-left: 4px solid rgba(0, 0, 0, 0.18);
  background: rgba(0, 0, 0, 0.04);
}
.news-single__lead blockquote > * + * {
  margin-top: 0.8em;
}
.news-single__lead blockquote p {
  margin: 0;
}
.news-single__lead blockquote cite {
  display: block;
  margin-top: 0.6em;
  font-size: 0.95em;
  opacity: 0.8;
}
.news-single__lead ul, .news-single__lead ol {
  padding-left: 1.4em;
  margin: 1.2em 0;
}
.news-single__lead ul li, .news-single__lead ol li {
  margin: 0.4em 0;
}
.news-single__lead ul ul, .news-single__lead ul ol, .news-single__lead ol ul, .news-single__lead ol ol {
  margin: 0.6em 0;
}
.news-single__lead ul {
  list-style: disc;
}
.news-single__lead ol {
  list-style: decimal;
}
.news-single__lead li {
  list-style: unset;
}
.news-single__lead dl {
  margin: 1.4em 0;
}
.news-single__lead dt {
  font-weight: 700;
  margin-top: 1em;
}
.news-single__lead dt:first-child {
  margin-top: 0;
}
.news-single__lead dd {
  margin: 0.4em 0 0 1em;
}
.news-single__lead table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.6em 0;
  overflow: hidden;
  font-size: 0.95em;
}
.news-single__lead th, .news-single__lead td {
  padding: 0.75em 0.8em;
  border: 1px solid rgba(0, 0, 0, 0.12);
  vertical-align: top;
  text-align: left;
}
.news-single__lead thead th {
  font-weight: 700;
  background: rgba(0, 0, 0, 0.05);
}
.news-single__lead tbody th {
  font-weight: 700;
}
.news-single__lead pre {
  margin: 1.6em 0;
  padding: 1em 1.2em;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.06);
  overflow: auto;
  white-space: pre;
  font-size: 0.95em;
  line-height: 1.6;
}
.news-single__lead pre code {
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.news-single__lead address {
  font-style: normal;
  padding: 0.9em 1.1em;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
}
.news-single__lead address p {
  margin: 0;
}
.news-single__lead address > * + * {
  margin-top: 0.4em;
}
.news-single__lead hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
  margin: 2em 0;
}

.news-single {
  background: var(--text-white);
}
.news-single__wrap {
  max-width: 910px;
  margin: 0 auto;
  padding: 0 40px;
}
.news-single__header {
  padding-top: 31px;
}
.news-single__date {
  color: var(--color-theme-red);
  font-size: 14px;
  display: inline-block;
  margin-bottom: 18px;
}
.news-single__title {
  color: var(--text-black);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
}
.news-single__lead {
  margin-top: 30px;
  color: var(--text-black);
  font-size: 16px;
  line-height: 2;
  letter-spacing: -0.01em;
}
.news-single__lead * {
  max-width: 100%;
}
.news-single__lead p {
  text-align: justify;
}
.news-single__lead img {
  width: auto;
  max-width: 100%;
}
.news-single__lead h2 {
  font-size: 18px;
}
.news-single__lead .wp-block-heading {
  margin-top: 48px;
  font-weight: 700;
}
.news-single__lead .wp-block-image {
  margin-top: 43px;
}
.news-single__lead > * + * {
  margin-top: 11px;
}
.news-single__media {
  margin-top: 33px;
}
.news-single__thumb {
  background: #d3d3d3;
  border-radius: 36px;
  overflow: hidden;
  width: 100%;
  height: auto;
  display: block;
  place-items: center;
}
.news-single__thumb.is-placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.news-single__img {
  width: 100%;
  height: 100%;
  max-height: 587px;
  object-fit: cover;
  display: block;
}
.news-single__ph-text {
  font-size: 12px;
  letter-spacing: 0.05em;
}
.news-single__breadcrumb {
  margin-top: 60px;
  padding-bottom: 60px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--text-black);
  font-size: 12px;
}
.news-single__crumb {
  text-decoration: none;
}
.news-single__crumb-sep {
  opacity: 0.8;
}
.news-single__crumb-current {
  opacity: 0.9;
}

.single__pager {
  margin-top: 88px;
  margin-bottom: 86px;
  padding: 0 20px;
}
.single__pager-inner {
  width: 828px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
}
.single__pager-link {
  position: relative;
  font-size: 16px;
  margin: 0 -1.7em;
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.single__pager-link .link__icon {
  overflow: hidden;
  position: relative;
  left: 0;
  display: flex;
  width: 1em;
  height: 1em;
}
.single__pager-link .link__icon:before, .single__pager-link .link__icon:after {
  content: "→";
  font-size: 11px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  transition: all 0.3s;
}
.single__pager-link .link__icon:after {
  right: 0;
}
.single__pager-link:hover .link__icon:before, .single__pager-link:hover .link__icon:after {
  transform: translateX(100%);
}
.single__pager-link--prev {
  flex-direction: row-reverse;
}
.single__pager-link--prev .link__icon:before, .single__pager-link--prev .link__icon:after {
  content: "←";
  transform: translateX(100%);
}
.single__pager-link--prev .link__icon:after {
  right: 0;
}
.single__pager-link--prev:hover .link__icon:before, .single__pager-link--prev:hover .link__icon:after {
  transform: translateX(0);
}
.single__pager-link--archive {
  background: var(--color-theme-red);
  color: white;
  border-radius: 6px;
  width: 154px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 0.5em;
  gap: 0.3em;
}
.single__pager-link-outer {
  display: flex;
  align-items: center;
}
.single__pager-link-outer.archive {
  justify-content: center;
}
.single__pager-link-outer.next {
  justify-content: flex-end;
}
.single__pager-label {
  line-height: 1.3;
  border-bottom: 1px solid var(--text-black);
}

@media screen and (max-width: 767px) {
  .news-single__wrap {
    padding: 0 38px;
  }
  .news-single__header {
    padding-top: 37px;
  }
  .news-single__date {
    font-size: 12px;
    margin-bottom: 23px;
  }
  .news-single__title {
    font-size: 16px;
    line-height: 1.7;
  }
  .news-single__lead {
    line-height: 2;
    font-size: 14px;
    margin-top: 21px;
    letter-spacing: 0;
  }
  .news-single__lead .wp-block-image {
    margin-top: 27px;
  }
  .news-single__lead h2 {
    font-size: 16px;
  }
  .news-single__thumb {
    border-radius: 26px;
    aspect-ratio: 4/3;
  }
  .news-single__breadcrumb {
    flex-wrap: wrap;
    row-gap: 6px;
  }
  .single__pager {
    margin: 60px auto 0;
    padding: 0 38px;
  }
  .single__pager-inner {
    width: 100%;
  }
  .single__pager-label {
    display: none;
  }
  .single__pager-link {
    margin: 0;
    gap: 0;
  }
  .single__pager-link .link__icon {
    overflow: visible;
  }
  .single__pager-link .link__icon:before {
    font-size: 17px;
    font-weight: 600;
    transform: none;
    right: 0;
  }
  .single__pager-link .link__icon:after {
    content: none;
  }
  .single__pager-link--archive {
    gap: 0.3em;
  }
  .single__pager-link--archive .link__icon:before {
    font-size: 11px;
  }
}
