@charset "utf-8";
/*
Theme Name: Ouraya v3
Author: ouraya.co.jp
Version: 3.0
*/

*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
body {
  line-height: 1.5;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
ul,
ol {
  list-style: none;
}
a {
  text-decoration: none;
}

body {
  color: #231917;
  font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, Verdana, '游ゴシック', 'Yu Gothic', '游ゴシック体',
    'YuGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'Meiryo UI', 'メイリオ', Meiryo, 'MS Pゴシック',
    'MS PGothic', sans-serif;
}
a {
  color: #62463c;
  transition: all 0.2s;
}
a:hover {
  color: #3c5862;
}
:root {
  --main-color: #231917;
  --sub-color: #a6937c;
  --accent-color: #ed724c;
  --bg-color: #fef8f1;
  --bg-color-transparent: rgba(254, 248, 241, 0.95);
  --footer-color: #231917;
  --form-bg-color: #f6eee4;
  --link-color: #62463c;
  --link-hover-color: #71584f;
  --heading-font: 'Times New Roman', '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3',
    'Hiragino Mincho Pro', 'HiraMinProN-W3', 'HGS明朝E', 'MS P明朝', 'MS 明朝', serif;
  --section-padding: 24px 0 40px;
  --content-padding: 0 16px;
}
@media screen and (min-width: 768px) {
  :root {
    --section-padding: 40px 0 48px;
    --content-padding: 0 24px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --section-padding: 48px 0 56px;
  }
}

video,
iframe {
  width: 100% !important;
} /* 作業用・あとで消す */

#header {
  background-color: var(--bg-color-transparent);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 72px;
}
#main {
  background-image: url('./assets/images/main-bg.jpg');
  background-repeat: repeat;
  background-color: #fff;
  background-size: contain;
  padding-top: 72px;
}
@supports (background-image: url('./assets/images/main-bg.webp')) {
  #main {
    background-image: url('./assets/images/main-bg.webp');
  }
}
#footer {
  background-color: var(--footer-color);
  color: #fff;
}
@media screen and (min-width: 768px) {
  #header {
    height: 88px;
  }
  #main {
    padding-top: 88px;
  }
}
@media screen and (min-width: 960px) {
  #header {
    height: 168px;
    position: relative;
    box-shadow: none;
  }
  #main {
    padding-top: 0;
  }
}
@media screen and (max-width: 960px) {
  .pc-only {
    display: none !important;
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  position: relative;
}
.header-content .logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 10px;
}
.header-content .logo a {
  display: block;
}
.header-content .logo img {
  width: 140px;
  height: 56px;
  object-fit: contain;
}

.global-navigation {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
}
.global-navigation-content {
  position: absolute;
  top: 72px;
  right: -100vw;
  visibility: hidden;
  background-color: transparent;
  width: 100vw;
  height: calc(100vh - 72px);
  overflow-y: auto;
  transition: all 0.2s;
}
.active .global-navigation-content {
  visibility: visible;
  right: 0;
  background-color: var(--bg-color-transparent);
}
.global-navigation-button {
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  border: none;
  z-index: 101;
}
.global-navigation-button-icon {
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: all 0.3s;
}
.global-navigation-button-icon::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: -9px;
  left: 0;
  transition: all 0.3s;
}
.global-navigation-button-icon::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background-color: #000;
  position: absolute;
  bottom: -9px;
  left: 0;
  transition: all 0.3s;
}
.active .global-navigation-button-icon {
  background-color: transparent;
}
.active .global-navigation-button-icon::before {
  top: 0;
  transform: rotate(225deg);
}
.active .global-navigation-button-icon::after {
  bottom: 0;
  transform: rotate(-225deg);
}
.global-navigation-list {
  width: 100%;
  padding: 20px 16px 40px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 0s;
}
.global-navigation-list li {
  width: 100%;
  border-bottom: solid 1px #ddd;
  position: relative;
}
.global-navigation-list li a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  line-height: 48px;
  color: var(--main-color);
}
.active .global-navigation-list {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}

.global-navigation-list-child-toggle {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  background: transparent;
  border: none;
}
.global-navigation-list-child-toggle::before {
  content: '+';
  font-size: 18px;
  color: var(--main-color);
  display: block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
}
.global-navigation-list-child {
  display: none;
}
.active + .global-navigation-list-child {
  display: block;
}
.global-navigation-list-child li {
  padding-left: 16px;
  border-bottom: none;
  border-top: solid 1px #ddd;
}
.global-navigation-list-child li a {
  font-size: 13px;
}
.global-navigation-list-child-toggle.active::before {
  content: '-';
}

.header-cta {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  transition-delay: 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--link-color);
  padding: 0 24px 64px;
}
.active .header-cta {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.3s;
}
.header-cta-tel .text {
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  justify-content: center;
  margin-bottom: 8px;
}
.header-cta-tel .text .time {
  font-weight: bold;
}
.header-cta-tel .number {
  font-size: 36px;
  font-family: var(--heading-font);
  line-height: 1;
  text-align: center;
  margin-bottom: 16px;
}
.header-cta-tel .number a {
  color: var(--main-color);
}
.header-cta-tel .number a::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 24px;
  margin-right: 4px;
  background: url('./assets/images/common/tel-icon.png') no-repeat center center / contain;
}
.header-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.header-cta-buttons .contact {
  display: inline-block;
  padding: 16px 24px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
}
.header-cta-buttons a:hover {
  background-color: #422f2b;
}
@media screen and (min-width: 768px) {
  .header-content {
    height: 88px;
  }
  .header-content .logo {
    padding: 0 16px;
  }
  .header-content .logo img {
    width: 160px;
    height: 64px;
  }
  .social-links {
    gap: 16px;
    padding-right: 88px;
  }
  .social-link a {
    padding: 4px;
  }

  .global-navigation {
    width: 88px;
    height: 88px;
  }
  .global-navigation-list {
    padding: 20px 24px 40px;
  }
  .global-navigation-button {
    width: 88px;
    height: 88px;
  }
  .global-navigation-content {
    top: 88px;
    height: calc(100vh - 88px);
  }
}

@media screen and (min-width: 960px) {
  .header-content {
    height: 168px;
    align-items: flex-start;
  }
  .header-content .logo {
    height: 120px;
    padding: 0 24px;
    z-index: 101;
  }
  .header-content .logo img {
    width: 200px;
    height: 72px;
  }
  .global-navigation {
    width: 100%;
  }
  .global-navigation-button {
    display: none;
  }
  .global-navigation-content {
    visibility: visible;
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    height: auto;
    overflow-y: visible;
  }
  .global-navigation-list {
    visibility: visible;
    opacity: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    padding: 120px 24px 0;
    height: 168px;
  }
  .global-navigation-list > li {
    width: auto;
    border-bottom: none;
  }
  .global-navigation-list > li > a {
    line-height: 32px;
    padding: 0 12px 16px;
  }
  .global-navigation-list-child-toggle {
    display: none;
  }
  .global-navigation-list li.has-child {
    position: relative;
  }
  .global-navigation-list-child {
    display: block;
    position: absolute;
    top: 96%;
    left: 0;
    height: 0px;
    width: 240px;
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
  }
  .global-navigation-list li.has-child:hover .global-navigation-list-child,
  .global-navigation-list li.has-child:focus-within .global-navigation-list-child {
    height: auto;
    visibility: visible;
    opacity: 1;
    z-index: 100;
  }
  .global-navigation-list-child a {
    padding: 0 16px;
  }
  .global-navigation-list-child li {
    padding-left: 0;
  }
  .global-navigation-list-child li:first-child {
    border-top: none;
  }

  .header-cta {
    visibility: visible;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    height: 120px;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .header-cta-tel {
    display: flex;
    flex-direction: column-reverse;
  }
  .header-cta-tel .number {
    margin-bottom: 0;
    text-align: right;
  }
  .header-cta-tel .text {
    text-align: right;
    margin-bottom: 0;
  }
  .header-cta-buttons {
    padding: 0 24px 0 16px;
  }
  .header-cta-buttons .contact {
    padding: 16px 20px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1080px) {
  .global-navigation-list > li > a {
    padding: 0 12px 16px;
  }
}
@media screen and (min-width: 1280px) {
  .global-navigation-list > li > a {
    font-size: 15px;
    padding: 0 16px 16px;
  }
}

.section {
  padding: var(--section-padding);
}
.section-content {
  padding: var(--content-padding);
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
}
.section-title {
  font-size: 20px;
  font-family: var(--heading-font);
  font-weight: bold;
  line-height: 1.2;
  color: var(--main-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-subtitle {
  font-size: 14px;
  font-family: var(--heading-font);
  font-weight: bold;
  line-height: 1.4;
  margin-top: 8px;
  color: var(--sub-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 375px) {
  .section-title {
    font-size: 5.2vw;
  }
  .section-title span {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 16px;
  }
}

@media screen and (min-width: 960px) {
  .section-title {
    font-size: 30px;
  }
  .section-subtitle {
    font-size: 17px;
  }
}

.section-title.underlined {
  position: relative;
  margin-bottom: 16px;
}
.section-title.underlined::before {
  content: '';
  display: block;
  width: 50%;
  height: 5px;
  border-radius: 2px;
  background-color: var(--main-color);
  position: absolute;
  bottom: -16px;
}
@media screen and (min-width: 768px) {
	.section-title.underlined::before {
		width: 100%;
	}
}

.section-title.highlight span {
  position: relative;
  z-index: 1;
}
.section-title.highlight span::before {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  border-radius: 2px;
  background-color: #fff100;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.learn-more {
  padding-top: 40px;
  text-align: center;
}
.learn-more a {
  display: inline-block;
  padding: 16px 48px;
  background-color: var(--link-color);
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  border-radius: 2px;
  position: relative;
}
.learn-more a:hover {
  background-color: var(--link-hover-color);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
.learn-more a::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -4px;
  transition: all 0.3s;
}
.learn-more a:hover::before {
  right: 16px;
}

@media screen and (min-width: 768px) {
  .learn-more {
    padding-top: 48px;
  }
}

.section.dark-bg {
  background-image: url('./assets/images/dark-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--main-color);
  color: #fff;
}
@supports (background-image: url('./assets/images/dark-bg.webp')) {
  .section.dark-bg {
    background-image: url('./assets/images/dark-bg.webp');
  }
}
.section.dark-bg .section-title {
  color: #fff;
}
.section.dark-bg .section-subtitle {
  color: var(--bg-color);
}
.section.dark-bg .learn-more a {
  background-color: #fff;
  color: var(--link-color);
}
.section.dark-bg .learn-more a:hover {
  background-color: var(--bg-color);
  color: var(--link-hover-color);
}
.section.dark-bg .learn-more a::before {
  border-top-color: var(--link-color);
  border-right-color: var(--link-color);
}

.section.blurred-bg {
  background-image: url('./assets/images/common/blurred-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bg-color {
  background-color: var(--bg-color);
}
.bg-white {
  background-color: #fff;
}
.bg-light {
  background-color: #fbf9f4;
}
.bg-dark {
  background-color: #231917;
}
.bg-brown {
  background-color: #7e6b5a;
}

.section-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section-body > p {
	font-size: 15px;
	line-height: 1.7;
}
.section-body + .section-body {
  margin-top: 24px;
}
.section-body-image {
  width: 100%;
}
.section-body-image img {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.section-body-image.shadow-left img {
  filter: drop-shadow(-8px 8px 0 #a6937c);
}
.section-body-image.shadow-right img {
  filter: drop-shadow(8px 8px 0 #a6937c);
}
.section-body-image.rounded img {
  border-radius: 8px;
}

.section-body-text {
  width: 100%;
	font-size: 15px;
	line-height: 1.7;
}
.section-body-text > p:not(:last-child) {
  margin-bottom: 16px;
}
.section-body-text.text-small p {
  font-size: 14px;
}
.section-body-text.bg-white,
.section-body-text.bg-light {
  padding: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.05);
}
.section-body-text.rounded {
  border-radius: 12px;
}
.section-body-text .learn-more a {
  padding: 12px 40px;
}
.section-body-header {
  margin-bottom: 16px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 12px;
}
.section-body-title {
  font-family: var(--heading-font);
  font-size: 18px;
  line-height: 1.4;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.section-body-subtitle {
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: bold;
  color: var(--link-color);
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.section-body-title.center,
.section-body-subtitle.center {
  justify-content: center;
}
.section-body-lead .marker {
  background: linear-gradient(transparent 60%, #f6c994 60%);
  font-weight: bold;
}

@media screen and (min-width: 768px) {
	.section-body > p {
		font-size: 16px;
	}
  .section-body + .section-body {
    margin-top: 32px;
  }
  .section-body.image-left {
    flex-direction: row;
  }
  .section-body.image-right {
    flex-direction: row-reverse;
  }
  .section-body-image {
    width: 40%;
  }
  .section-body-image img {
    max-width: 100%;
  }
  .section-body.image-left .section-body-text,
  .section-body.image-right .section-body-text {
    width: calc(60% - 24px);
  }
	.section-body-text {
		font-size: 16px;
	}
  .section-body-text.text-small p {
    font-size: 15px;
  }
  .section-body-text.bg-white,
  .section-body-text.bg-light {
    padding: 24px;
  }
  .section-body-text .learn-more {
    text-align: left;
    padding-top: 32px;
  }
  .section-body-title {
    font-size: 20px;
  }
  .section-body-subtitle {
    font-size: 16px;
  }
}
@media screen and (min-width: 960px) {
  .section-body-title {
    font-size: 24px;
  }
  .section-body-subtitle {
    font-size: 18px;
  }
}

.insert {
  padding: 0 0 40px;
}
.insert-content {
  padding: var(--content-padding);
}

.static-page-header-content,
.archive-header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 200px;
  width: 100%;
}
.static-page-header-content .hero-image,
.archive-header-content .hero-image {
  height: 200px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.static-page-header-content .hero-image img,
.archive-header-content .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.static-page-header-content.large-image {
  height: 300px;
}
.static-page-header-content.large-image .hero-image {
  height: 300px;
}
.static-page-header-content .service-icon {
	width: 40px;
	margin-bottom: 12px;
  z-index: 2;
}
.static-page-header-content .service-points {
  display: flex;
  justify-content: center;
  gap: 8px;
	z-index: 2;
}
.static-page-header-content .service-points img {
  width: 100px;
  height: auto;
}

.static-page-title,
.archive-title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--main-color);
  font-family: var(--heading-font);
  text-shadow: white 1px 1px 10px, white -1px 1px 10px, white 1px -1px 10px, white -1px -1px 10px, white -1px -1px 10px,
    white -1px -1px 10px, white -1px -1px 10px;
  z-index: 2;
}
.static-page-title-label,
.archive-title-label {
  font-size: 15px;
  font-family: var(--heading-font);
  color: #fff;
  background-color: var(--main-color);
  padding: 4px 16px;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 400;
  border-radius: 4px;
  z-index: 2;
}
.static-page-subtitle {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
	padding: 0 16px;
  margin-bottom: 12px;
  color: var(--main-color);
  font-family: var(--heading-font);
  text-shadow: white 1px 1px 10px, white -1px 1px 10px, white 1px -1px 10px, white -1px -1px 10px, white -1px -1px 10px,
    white -1px -1px 10px, white -1px -1px 10px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.static-page-child .static-page-title {
  margin-bottom: 0;
  align-self: flex-start;
  padding-left: 8%;
}

@media screen and (min-width: 768px) {
  .static-page-header-content,
  .archive-header-content {
    height: 240px;
  }
  .static-page-header-content .hero-image,
  .archive-header-content .hero-image {
    height: 240px;
  }
	.static-page-header-content.large-image {
		height: 400px;
	}
	.static-page-header-content.large-image .hero-image {
		height: 400px;
	}
  .static-page-header-content .service-icon {
    width: 60px;
    margin-bottom: 16px;
  }
  .static-page-header-content .service-points {
    gap: 12px;
  }
  .static-page-header-content .service-points img {
    width: 144px;
  }
  .static-page-title,
  .archive-title {
    font-size: 32px;
  }
  .static-page-title-label,
  .archive-title-label {
    font-size: 16px;
  }
	.static-page-subtitle {
		font-size: 20px;
	}
}
@media screen and (min-width: 960px) {
  .static-page-header-content,
  .archive-header-content {
    height: 400px;
  }
  .static-page-header-content .hero-image,
  .archive-header-content .hero-image {
    height: 400px;
  }
  .static-page-title,
  .archive-title {
    font-size: 44px;
  }
  .static-page-title-label,
  .archive-title-label {
    font-size: 18px;
  }
}

.archive-body {
  background-color: #fff;
  background-image: url('./assets/images/archive-bg.png');
  background-size: 30%;
  background-position: right top;
  background-repeat: no-repeat;
}

.archive-body .section-title {
  position: relative;
  padding-bottom: 12px;
}

.archive-body .section-title::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background-color: var(--main-color);
}

.archive-body .section-description {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.post-list {
  display: flex;
  flex-wrap: wrap;
}

.post-item {
  width: 100%;
}

.post-item .post {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: dotted 3px #ccc;
}

.post-item .post-thumbnail {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  background-color: rgba(200, 200, 200, 0.3);
}

.post-item .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-item .post-thumbnail .no-image {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('./assets/images/logo.png');
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}

.post-item .post-content {
  flex: 1 1 auto;
}

.post-item .post-title {
  font-size: 16px;
  line-height: 1.5;
  font-family: var(--heading-font);
  font-weight: bold;
  color: var(--main-color);
}

.post-item .post-date {
  font-size: 14px;
  line-height: 1.5;
  color: var(--link-color);
  font-family: var(--heading-font);
}

.post-item .post-excerpt {
  display: none;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
  margin-top: 16px;
}

@media screen and (min-width: 480px) {
  .post-item .post {
    align-items: flex-start;
  }
  .post-item .post-thumbnail {
    width: 30%;
    height: auto;
    aspect-ratio: 4/3;
  }
}

@media screen and (min-width: 768px) {
  .post-item .post {
    padding: 16px 0;
    gap: 24px;
  }
  .post-item .post-title {
    font-size: 18px;
  }
  .post-item .post-excerpt {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .post-item .post-title {
    font-size: 20px;
  }
  .post-archive {
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin-top: 24px;
  }
  .post-archive-content {
    flex: 1 1 auto;
  }
  .sidebar {
    flex: 0 0 auto;
    width: 300px;
  }
}

.pagination {
  margin-top: 24px;
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.pagination .page-numbers a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--link-color);
  color: #fff;
  border-radius: 20px;
}

.pagination .page-numbers a:hover {
  background-color: var(--link-hover-color);
}

.pagination .page-numbers span.current {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--sub-color);
  color: #fff;
  font-weight: bold;
  border-radius: 20px;
}

.breadcrumbs {
  display: none;
  padding: var(--content-padding);
  background-color: #fff;
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
}
.breadcrumbs li a {
  font-size: 12px;
  line-height: 1.2;
}
.breadcrumbs li a:hover {
  text-decoration: underline;
}
.breadcrumbs li a::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 1px #666;
  border-right: solid 1px #666;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
  display: inline-block;
}
.breadcrumbs li span {
  font-size: 12px;
  line-height: 1.2;
  color: #666;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    display: block;
  }
}

.sidebar-section {
  padding: var(--section-padding);
}
.sidebar-section-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
  padding-top: 8px;
  padding-bottom: 12px;
  padding-left: 36px;
  margin-bottom: 16px;
  position: relative;
}
.sidebar-section-title::before {
  content: '';
  display: inline-block;
  height: 32px;
  width: 32px;
  background-image: url('./assets/images/common/roller-icon.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}
.sidebar-category-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}
.sidebar-category-list li::before {
  content: '';
  display: block;
  position: absolute;
  border-top: 1px solid #a6937c;
  border-right: 1px solid #a6937c;
  height: 5px;
  width: 5px;
  transform: rotate(45deg);
  top: calc(50% - 3px);
  left: 0;
}
.sidebar-category-list li a {
  font-size: 15px;
  line-height: 1.2;
}
.sidebar-post-list {
  padding: 0 16px;
  border: solid 2px var(--main-color);
  border-radius: 8px;
}
.sidebar-post-list li a {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: solid 1px #aaa;
}
.sidebar-post-thumbnail {
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
  background-color: rgba(200, 200, 200, 0.3);
}
.sidebar-post-thumbnail img {
  width: 96px;
  height: 96px;
  object-fit: cover;
}
.sidebar-post-thumbnail .no-image {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url('./assets/images/logo.png');
  background-size: 75%;
  background-repeat: no-repeat;
  background-position: center center;
}
.sidebar-post-content {
  flex: 1 1 auto;
  font-size: 14px;
}
.sidebar-post-title {
  font-weight: bold;
}
.sidebar-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sidebar-tag-list li a {
  display: block;
  padding: 8px 8px;
  background-color: rgba(200, 200, 200, 0.3);
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (min-width: 960px) {
  .sidebar-section {
    padding-top: 0;
  }
}
