/* ========================================
   Single Post Page Styles (converted from single.scss)
   PC: 1920px base / SP: 375px base / Breakpoint: 768px
======================================== */

/* ========================================
   投稿詳細：ヒーロー（.p-archive__hero / single-newsで使用）
======================================== */
.p-single {
  background-color: #EAF2F4;
}
.p-archive__hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .p-archive__hero {
    height: calc(547 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-archive__hero {
    height: calc(287 / 375 * 100vw);
  }
}

.p-archive__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-archive__hero-bg img,
.p-archive__hero-bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-archive__hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: calc(50 / 1920 * 100vw);
}

.p-archive__hero-title-en {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .p-archive__hero-title-en {
    font-size: calc(50 / 1920 * 100vw);
    letter-spacing: 0.08em;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-archive__hero-title-en {
    font-size: calc(40 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
}

.p-archive__hero-title-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #FFFFFF;
}

@media screen and (min-width: 769px) {
  .p-archive__hero-title-ja {
    font-size: calc(18 / 1920 * 100vw);
    letter-spacing: 0.05em;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  .p-archive__hero-title-ja {
    font-size: calc(16 / 375 * 100vw);
  }
}

/* ========================================
   投稿詳細：コンテンツエリア（PDFレイアウト）
   タイトル → 日付 → 本文 → 画像 の流れ、中央寄せ・最大幅制限
======================================== */
.p-single__inner {
  margin: 0 auto;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .p-single__inner {
    padding: calc(110 / 1920 * 100vw) 0 calc(100 / 1920 * 100vw);
    background-color: #EAF2F4;
  }
}

@media screen and (max-width: 768px) {
  .p-single__inner {
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}

/* ========================================
   投稿詳細：画像セクション（メイン画像 + サブ画像10枚・切り替え）
======================================== */
.p-single__images {
  display: flex;
  gap: calc(49 / 1920 * 100vw);
  margin-bottom: calc(59 / 1920 * 100vw);
  width: 100%;
}

@media screen and (max-width: 768px) {
  .p-single__images {
    flex-direction: column;
    gap: calc(15 / 375 * 100vw);
    margin-bottom: calc(40 / 375 * 100vw);
  }
}

/* メイン画像（大） */
.p-single__main-image {
  flex: 1;
  min-width: 0;
  aspect-ratio: 1130 / 771;
  overflow: hidden;
  background: #f0f0f0;
}

@media screen and (min-width: 769px) {
  .p-single__main-image {
    max-width: calc(1130 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__main-image {
    aspect-ratio: 16 / 10;
    width: 100%;
  }
}

.p-single__main-image img,
.p-single__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* サブ画像エリア（10枚・2列グリッド） */
.p-single__sub-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(9 / 1920 * 100vw) calc(38 / 1920 * 100vw);
  align-content: start;
}

@media screen and (min-width: 769px) {
  .p-single__sub-images {
    width: calc(460 / 1920 * 100vw);
    flex-shrink: 0;
    grid-auto-rows: calc(147 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__sub-images {
    width: 100%;
    gap: calc(9 / 375 * 100vw) calc(10 / 375 * 100vw);
    grid-auto-rows: calc(120 / 375 * 100vw);
  }
}

.p-single__sub-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 2px;
  transition: opacity 0.25s;
}

.p-single__sub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-single__sub-image:hover {
  opacity: 0.85;
}

.p-single__sub-image.is-active {
  opacity: 0.7;
  outline: 2px solid #403110;
  outline-offset: 2px;
}

/* 従来の単体 .p-single__image（他テンプレート用） */
.p-single__image {
  margin: 1.5em 0;
  width: 100%;
}

.p-single__image img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

/* ========================================
   投稿詳細：テキストセクション 2カラム
======================================== */
.p-single__body--two-col {
  column-count: 1;
  column-gap: 0;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  .p-single__body--two-col {
    column-count: 1;
    column-gap: 0;
  }
}

.p-single__body--two-col p {
  break-inside: avoid;
}

.p-single__body--two-col h1,
.p-single__body--two-col h2,
.p-single__body--two-col h3,
.p-single__body--two-col h4,
.p-single__body--two-col h5,
.p-single__body--two-col h6 {
  break-after: avoid;
}

/* .p-single（既存） */
.p-single__hero {
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .p-single__hero {
    height: calc(547 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__hero {
    height: calc(547 / 375 * 100vw);
  }
}

.p-single__hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.p-single__hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-single__hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  
}

.p-single__hero-title-en {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .p-single__hero-title-en {
    font-size: calc(60 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__hero-title-en {
    font-size: calc(40 / 375 * 100vw);
    margin-bottom: calc(8 / 375 * 100vw);
  }
}

.p-single__hero-title-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  color: #FFFFFF;
}

@media screen and (min-width: 769px) {
  .p-single__hero-title-ja {
    font-size: calc(20 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__hero-title-ja {
    font-size: calc(16 / 375 * 100vw);
  }
}

/* Breadcrumbs */
@media screen and (min-width: 769px) {
  .p-single__breadcrumbs {
    padding: calc(24 / 1920 * 100vw) 0 0;
    width: calc(1639 / 1920 * 100vw);
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .p-single__breadcrumbs {
    padding: calc(19 / 375 * 100vw) 0 0;
  }
}

/* 投稿詳細：パンくずをコンテンツ幅に合わせる */
.p-single--news .p-single__breadcrumbs,
body.single .p-single__breadcrumbs {
  width: 100%;
  background-color: #EAF2F4;
}

@media screen and (min-width: 769px) {
  .p-single--news .p-single__breadcrumbs .p-single__breadcrumbs-inner,
  body.single .p-single__breadcrumbs .p-single__breadcrumbs-inner {
    padding: calc(10 / 1920 * 100vw) calc(140 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single--news .p-single__breadcrumbs .p-single__breadcrumbs-inner,
  body.single .p-single__breadcrumbs .p-single__breadcrumbs-inner {
    padding: 0 calc(15 / 375 * 100vw);
  }
}

/* Content Section */
@media screen and (min-width: 769px) {
  .p-single__content {
    padding: calc(80 / 1920 * 100vw) 0;
    width: calc(1639 / 1920 * 100vw);
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .p-single__content {
    padding: calc(40 / 375 * 100vw) 0 calc(60 / 375 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .p-single__content-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 calc(20 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__content-inner {
    padding: 0 calc(15 / 375 * 100vw);
  }
}

/* Article Title（投稿詳細：ヒーロー直下・中央） */
.p-single__title {
  font-weight: 700;
  color: #333333;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .p-single__title {
    font-size: calc(50 / 1920 * 100vw);
    letter-spacing: 0.08em;
    line-height: 1.3;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: calc(16 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__title {
    font-size: calc(20 / 375 * 100vw);
    margin-top: 0;
    margin-bottom: calc(12 / 375 * 100vw);
  }
}

/* Date（投稿詳細：タイトル直下・中央） */
.p-single__date {
  font-family: Roboto, sans-serif;
  text-align: center;
  display: block;
  color: #59D8F6;
}

@media screen and (min-width: 769px) {
  .p-single__date {
    font-size: calc(18 / 1920 * 100vw);
    margin-bottom: calc(58 / 1920 * 100vw);
    font-weight: 700;
  }
}

@media screen and (max-width: 768px) {
  .p-single__date {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(32 / 375 * 100vw);
  }
}

/* Images Section */
@media screen and (min-width: 769px) {
  .p-single__images {
    display: flex;
    gap: calc(49 / 1920 * 100vw);
    padding: 0 calc(140 / 1920 * 100vw);
    margin: 0 auto calc(59 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__images {
    margin-bottom: calc(50 / 375 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .p-single__main-image {
    width: calc(1130 / 1920 * 100vw);
    height: calc(771 / 1920 * 100vw);
    flex-shrink: 0;
    overflow: hidden;
  }
}

@media screen and (max-width: 768px) {
  .p-single__main-image {
    width: 100%;
    margin-bottom: calc(0 / 375 * 100vw);
  }
}

.p-single__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 769px) {
  .p-single__gallery {
    width: calc(460 / 1920 * 100vw);
    display: grid;
    grid-template-columns: repeat(2, calc(211 / 1920 * 100vw));
    grid-auto-flow: row;
    grid-auto-rows: calc(147 / 1920 * 100vw);
    gap: calc(9 / 1920 * 100vw) calc(38 / 1920 * 100vw);
    align-content: start;
  }
}

@media screen and (max-width: 768px) {
  .p-single__gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: calc(9 / 375 * 100vw) calc(10 / 375 * 100vw);
    align-content: start;
  }
}

.p-single__gallery-item {
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.3s;
  position: relative;
}

@media screen and (min-width: 769px) {
  .p-single__gallery-item {
    width: calc(211 / 1920 * 100vw);
    height: calc(147 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__gallery-item {
    width: 100%;
  }
}

.p-single__gallery-item.is-active {
  opacity: 0.6;
}

.p-single__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p-single__gallery-item:hover {
  opacity: 0.8;
}

/* Body Text（.p-single__text と .p-single__body の両方に適用・投稿詳細PDFレイアウト） */
.p-single__text,
.p-single__body {
  line-height: 2.1;
  color: #403110;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .p-single__text,
  .p-single__body {
    font-size: calc(16 / 1920 * 100vw);
    width: 100%;
    padding: 0 calc(140 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__text,
  .p-single__body {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}

.p-single__text h1,
.p-single__body h1 {
  font-size: 2em;
  font-weight: 700;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
  line-height: 1.3;
}

.p-single__text h2,
.p-single__body h2 {
  font-size: 1.5em;
  font-weight: 700;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  line-height: 1.3;
}

.p-single__text h3,
.p-single__body h3 {
  font-size: 1.17em;
  font-weight: 700;
  margin-top: 1em;
  margin-bottom: 1em;
  line-height: 1.3;
}

.p-single__text h4,
.p-single__body h4 {
  font-size: 1em;
  font-weight: 700;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
  line-height: 1.3;
}

.p-single__text h5,
.p-single__body h5 {
  font-size: 0.83em;
  font-weight: 700;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
  line-height: 1.3;
}

.p-single__text h6,
.p-single__body h6 {
  font-size: 0.67em;
  font-weight: 700;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
  line-height: 1.3;
}

.p-single__text p,
.p-single__body p {
  margin-bottom: calc(20 / 1920 * 100vw);
  width: calc(1140 / 1920 * 100vw);
}

@media screen and (max-width: 768px) {
  .p-single__text p,
  .p-single__body p {
    margin-bottom: calc(15 / 375 * 100vw);
    width: 100%;
  }
}

/* WordPress font size classes */
.p-single__text .has-small-font-size,
.p-single__body .has-small-font-size {
  font-size: 0.875em !important;
}

.p-single__text .has-medium-font-size,
.p-single__text .has-regular-font-size,
.p-single__body .has-medium-font-size,
.p-single__body .has-regular-font-size {
  font-size: 1em !important;
}

.p-single__text .has-large-font-size,
.p-single__body .has-large-font-size {
  font-size: 1.25em !important;
}

.p-single__text .has-x-large-font-size,
.p-single__body .has-x-large-font-size {
  font-size: 1.5em !important;
}

.p-single__text .has-huge-font-size,
.p-single__body .has-huge-font-size {
  font-size: 2em !important;
}

.p-single__text .has-text-color,
.p-single__body .has-text-color {
  color: inherit !important;
}

.p-single__text .has-background,
.p-single__body .has-background {
  padding: 1em;
  background-color: inherit !important;
}

.p-single__text .has-pale-pink-color { color: #f78da7 !important; }
.p-single__text .has-vivid-red-color { color: #cf2e2e !important; }
.p-single__text .has-luminous-vivid-orange-color { color: #ff6900 !important; }
.p-single__text .has-luminous-vivid-amber-color { color: #fcb900 !important; }
.p-single__text .has-light-green-cyan-color { color: #7bdcb5 !important; }
.p-single__text .has-vivid-green-cyan-color { color: #00d084 !important; }
.p-single__text .has-pale-cyan-blue-color { color: #8ed1fc !important; }
.p-single__text .has-vivid-cyan-blue-color { color: #0693e3 !important; }
.p-single__text .has-vivid-purple-color { color: #9b51e0 !important; }
.p-single__text .has-white-color { color: #ffffff !important; }
.p-single__text .has-very-light-gray-color { color: #eeeeee !important; }
.p-single__text .has-cyan-bluish-gray-color { color: #abb8c3 !important; }
.p-single__text .has-very-dark-gray-color { color: #313131 !important; }
.p-single__text .has-black-color { color: #000000 !important; }

.p-single__text .has-pale-pink-background-color { background-color: #f78da7 !important; }
.p-single__text .has-vivid-red-background-color { background-color: #cf2e2e !important; }
.p-single__text .has-luminous-vivid-orange-background-color { background-color: #ff6900 !important; }
.p-single__text .has-luminous-vivid-amber-background-color { background-color: #fcb900 !important; }
.p-single__text .has-light-green-cyan-background-color { background-color: #7bdcb5 !important; }
.p-single__text .has-vivid-green-cyan-background-color { background-color: #00d084 !important; }
.p-single__text .has-pale-cyan-blue-background-color { background-color: #8ed1fc !important; }
.p-single__text .has-vivid-cyan-blue-background-color { background-color: #0693e3 !important; }
.p-single__text .has-vivid-purple-background-color { background-color: #9b51e0 !important; }
.p-single__text .has-white-background-color { background-color: #ffffff !important; }
.p-single__text .has-very-light-gray-background-color { background-color: #eeeeee !important; }
.p-single__text .has-cyan-bluish-gray-background-color { background-color: #abb8c3 !important; }
.p-single__text .has-very-dark-gray-background-color { background-color: #313131 !important; }
.p-single__text .has-black-background-color { background-color: #000000 !important; }

.p-single__text .has-text-align-left {
  text-align: left !important;
}

.p-single__text .has-text-align-center {
  text-align: center !important;
}

.p-single__text .has-text-align-right {
  text-align: right !important;
}

.p-single__text ul,
.p-single__text ol,
.p-single__body ul,
.p-single__body ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.p-single__text ul li,
.p-single__text ol li,
.p-single__body ul li,
.p-single__body ol li {
  margin-bottom: 0.5em;
}

.p-single__text ul,
.p-single__body ul {
  list-style-type: disc;
}

.p-single__text ol,
.p-single__body ol {
  list-style-type: decimal;
}

.p-single__text .alignleft {
  float: left;
  margin-right: 1em;
  margin-bottom: 1em;
}

.p-single__text .alignright {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
}

.p-single__text .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.p-single__text blockquote {
  border-left: 4px solid #403110;
  padding-left: 1.5em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  margin: 1.5em 0;
  font-style: italic;
  color: #666;
}

.p-single__text code {
  background-color: #f5f5f5;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
}

.p-single__text pre {
  background-color: #f5f5f5;
  padding: 1em;
  border-radius: 5px;
  overflow-x: auto;
  margin: 1.5em 0;
}

.p-single__text pre code {
  background-color: transparent;
  padding: 0;
}

.p-single__text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.p-single__text table th,
.p-single__text table td {
  border: 1px solid #ddd;
  padding: 0.5em 1em;
  text-align: left;
}

.p-single__text table th {
  background-color: #f5f5f5;
  font-weight: 700;
}

.p-single__text hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

.p-single__text strong,
.p-single__text b {
  font-weight: 700;
}

.p-single__text em,
.p-single__text i {
  font-style: italic;
}

.p-single__text del,
.p-single__text s {
  text-decoration: line-through;
}

.p-single__text u {
  text-decoration: underline;
}

.p-single__text img,
.p-single__body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0;
}

.p-single__text figure,
.p-single__body figure {
  margin: 1.5em 0;
}

.p-single__text figure img,
.p-single__body figure img {
  margin: 0;
}

.p-single__text figure figcaption,
.p-single__body figure figcaption {
  font-size: 0.875em;
  color: #666;
  margin-top: 0.5em;
  text-align: center;
}

/* Navigation Button */
.p-single__nav {
  text-align: center;
}

.p-single__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(10 / 1920 * 100vw);
  background-color: #403110;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  transition: opacity 0.3s;
}

@media screen and (min-width: 769px) {
  .p-single__nav-btn {
    font-size: calc(15 / 1920 * 100vw);
    width: calc(217 / 1920 * 100vw);
    height: calc(48 / 1920 * 100vw);
    border-radius: calc(4 / 1920 * 100vw);
    padding: calc(2 / 1920 * 100vw) 0 0;
    margin-top: calc(71 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__nav-btn {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(12 / 375 * 100vw) calc(30 / 375 * 100vw);
    border-radius: 4px;
  }
}

.p-single__nav-btn:hover {
  opacity: 0.8;
}

@media screen and (min-width: 769px) {
  .p-single__nav-icon {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-single__nav-icon {
    width: calc(18 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
}

/* Breadcrumbs */
.p-breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0 8px;
}

@media screen and (max-width: 768px) {
  .p-breadcrumbs__list {
    gap: 0;
  }
}
/* パンくずの区切り（2番目以降の前に矢印アイコンを表示） */
.p-breadcrumbs__item + .p-breadcrumbs__item::before {
  content: "";
  display: inline-block;
  width: calc(10 / 1920 * 100vw);
  height: calc(10 / 1920 * 100vw);
  margin: 0 8px;
  background-image: url("../assets/images/pankuzu-arrow.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .p-breadcrumbs__item + .p-breadcrumbs__item::before {
    width: calc(13 / 375 * 100vw);
    height: calc(13 / 375 * 100vw);
  }
}

.p-breadcrumbs__item {
  display: flex;
  align-items: center;
  color: #403110;
}

@media screen and (min-width: 769px) {
  .p-breadcrumbs__item {
    font-size: calc(16 / 1920 * 100vw);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
  }
}

@media screen and (max-width: 768px) {
  .p-breadcrumbs__item {
    font-size: calc(15 / 375 * 100vw);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
  }
}

.p-breadcrumbs__link {
  color: #403110;
  text-decoration: none;
  transition: color 0.3s;
}

@media screen and (min-width: 769px) {
  .p-breadcrumbs__link {
    margin-left: calc(6 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-breadcrumbs__link {
    margin-left: calc(0 / 375 * 100vw);
  }
}

.p-breadcrumbs__link:hover {
  color: #63BCEB;
}

.p-breadcrumbs__current {
  color: #63BCEB;
}

@media screen and (min-width: 769px) {
  .p-breadcrumbs__current {
    margin-left: calc(8 / 1920 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .p-breadcrumbs__current {
    margin-left: calc(0/ 375 * 100vw);
  }
}

/* body.single - Single Page Specific */
body.single .l-main {
  padding-top: 0 !important;
}

@media screen and (min-width: 769px) {
  body.single .l-header--transparent {
    background-color: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}

@media screen and (max-width: 768px) {
  body.single .l-header--transparent {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}

body.single .l-header--transparent .l-header__main {
  background-color: transparent;
}

body.single .l-header--transparent .l-header__logo a {
  color: #FFFFFF;
}

body.single .l-header--transparent .l-header__nav-list li a {
  color: #FFFFFF;
}

body.single .l-header--transparent .l-header__nav-list li a:hover {
  color: #FFFFFF;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  body.single .l-header__catchcopy {
    display: flex;
    width: calc(340 / 375 * 100vw);
    height: calc(34 / 375 * 100vw);
    bottom: calc(-34 / 375 * 100vw);
    left: 0;
    background-color: #FFFFFF;
  }

  body.single .l-header__catchcopy p {
    font-size: calc(11 / 375 * 100vw);
    color: #403110;
    letter-spacing: 0.05em;
    line-height: 1.2;
    font-weight: 500;
  }
}

@media screen and (max-width: 768px) {
  body.single.drawer-open::before {
    visibility: hidden;
  }

  body.single.drawer-open .l-header__drawer {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    height: 100vh;
    height: 100dvh;
  }

  body.single.drawer-open .l-header__drawer-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
  }
}


.p-single__viewmore-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 calc(80 / 1920 * 100vw);
  background-color: #EAF2F4;
}

@media screen and (max-width: 768px) {
  .p-single__viewmore-btn-wrap {
    padding: 0 0 calc(100 / 375 * 100vw);
  }
}
.p-single__viewmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(10 / 1920 * 100vw);
  background-color: #59D8F6;
  transition: opacity 0.3s;
  width: calc(224 / 1920 * 100vw);
  height: calc(53 / 1920 * 100vw);
  border-radius: calc(5 / 1920 * 100vw);
  padding: calc(12 / 1920 * 100vw) calc(30 / 1920 * 100vw);
}
.p-single__viewmore-btn-arrow-icon {
  width: calc(28 / 1920 * 100vw);
  height: calc(28 / 1920 * 100vw);
  transform: rotate(180deg);
}
.p-single__viewmore-btn-text {
  font-size: calc(15 / 1920 * 100vw);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}

@media screen and (max-width: 768px) {
  .p-single__viewmore-btn {
    width: calc(224 / 375 * 100vw);
    height: calc(53 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) calc(31 / 375 * 100vw) calc(11 / 375 * 100vw);
    border-radius: calc(5 / 375 * 100vw);
  }
  .p-single__viewmore-btn-arrow-icon {
    width: calc(28 / 375 * 100vw);
    height: calc(28 / 375 * 100vw);
  }
  .p-single__viewmore-btn-text {
    font-size: calc(15 / 375 * 100vw);
    letter-spacing: 0.1em;
    font-weight: 700;
  }
}