/****************************************************************************************************
Theme Name:         Classic-PP
Theme URI:
Author:             XXPAPA
Author URI: 
Description:        Classic-PP is my original theme for wrighting blog with single column　.
Version:            0.3.0
Requires at least:  6.6.2
Tested up to:       6.6.2
Requires PHP:       8.1.29
License: GNU        General Public License v2 or later
License URI:        http://www.gnu.org/licenses/gpl-2.0.html
 ****************************************************************************************************/
/*
 * Base setting
 */
:root {
    /* size */
    --site-width: 1280px;
    --sidebar-width: 20px;
    --widget-menu-width: 320px;
    /* Colors */
    --site-color-transparent: rgba(0,0,0,0);
    --site-color-background: #eeeeee;
    --site-color-page: #ffffff;
    --site-color-symbol: #000088;
    --site-color-accennt: #acacff;
}

/*
 * Reset
 */
body,
button,
select,
input,
textarea {
    font-family: 'Poppins',"Noto Sans JP", 'Yu Gothic', 'Hiragino Sans' ,'Helvetica Neue', sans-serif;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.8;
}

p {
	margin-bottom: 1.6em;
}
/*
 * Basic form
 */
.body {
    background-color: var(--site-color-background);
}

.site {
    position: relative;
    background-color: #ffffff;
    max-width: var(--site-width);
    top: 0;
    width: 100%;
    margin: 0 auto;
}

.header {
    position: fixed;
    height: 35px;
    width: 100%;
    z-index: 10;
}

.site-main {
    position: relative;
    background-color: var(--site-color-page);
    z-index: 0;
}

.footer {
    background-color: var(--site-color-symbol);
    color: #ffffff;
    font-size: 1.0rem;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

/*
 * Header parts
 */
 /* breadcrumb */
.breadcrumb {
    display: block;
    background-color: var(--site-color-transparent);
    width: min(75%, 960px); 
    margin: 3px 10px;
    font-size: 0.8rem;
}

.breadcrumb-container {
    display: inline-block;
    background-color: var(--site-color-accennt);
    background: linear-gradient(90deg, var(--site-color-accennt), var(--site-color-transparent));
    padding-right: 30px;
}

.breadcrumb a {
    color: #000000;
    padding: 1px 3px;
    text-decoration: none;
}

.breadcrumb a:hover {
    background: linear-gradient(90deg, var(--site-color-transparent), var(--site-color-symbol), var(--site-color-transparent));
    color: #ffffff;
}

.breadcrumb span {
    background-color: var(--site-color-symbol);
    color: #ffffff;
    padding: 0 5px;
}

/* Site symbol */
.site-symbol {
    position: fixed;
    background: linear-gradient(30deg, var(--site-color-transparent), var(--site-color-symbol), var(--site-color-transparent));
    color: var(--site-color-accennt);
    top: 0;
    width: min(25%, 320px);
    aspect-ratio: 2 / 1;
    right: max(calc(50% - 640px), 0px);
    z-index: 999;
}

.site-title {
    background-color: transparent;
    font-size: clamp(2.25rem, 3.75vw, 3.00rem);
    font-weight: 300;
    text-align: center;
    width: 100%;
    margin-top: clamp(0.9rem, 1.5vw, 1.2rem);
}

.site-description {
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 300;
    text-align: center;
    width: 100%;
    margin-top: clamp(0.225rem, 0.37vw, 0.3rem);
}

/*
 * Page parts
 */
 /* Content */
.content {
    position: relative;
    background-color: #ffffff;
}

.post-info {
    position: relative;
    width: 100%;
}

.post-info .post-thumbnail {
    width: 100%;
}

.post-info .post-thumbnail img {
    width: 100%;
}

.post-info .post-description {
    position: absolute;
    background: linear-gradient(30deg, var(--site-color-symbol), var(--site-color-symbol), var(--site-color-transparent));
    bottom: 0;
    width: min(640px, 50%);
    aspect-ratio: 2 / 1;
}

.post-info .post-description-wrap {
   display: flex;
   flex-direction: row;
   align-items: flex-end;
   height: 18%;
}

.post-info .post-date {
    color: var(--site-color-accennt);
    font-family: Poppins;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    width: 60%;
    padding: 0 2%;
}

.post-info .post-category {
   color: var(--site-color-accennt);
   width: 40%;
   padding: 0 1%;
   font-family: Poppins;
   font-size: clamp(0.75rem, 1.25vw, 1rem);
   text-align: right;
}

.post-info .post-title {
   color: #ffffff;
   height: 14%;
   width: 100%;
   padding: 0 2%;
   font-size: clamp(1.2rem, 2vw, 1.6rem);
   font-weight: 400;
}

.post-info .post-excerpt {
    color: #ddddff;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    padding: 4% 6%;
}

.post-content {
    padding: 8% 10%;
}

.post-content h2 {
    position: relative;
    font-size: 1.6rem;
    font-weight: 400;
    margin: 40px 10px 30px 10px;
    padding: 0px 30px;
    border: 1px solid #000000;
    line-height: 2.6rem;;
}

.post-content h2:before {
    display: block;
    position: absolute;
    content: "";
    background-color: var(--site-color-symbol);
    width: 20px;
    height: 20px;
    border: 1px solid #000;
    left: -8px;
    top: -8px;
}

.post-content h2:after {
    display: block;
    position: absolute;
    content: "";
    background-color: var(--site-color-accennt);
    width: 11px;
    height: 11px;
    top: 0;
    left: 0;
}

.post-content h3 {
    position: relative;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 40px 10px 30px 10px;
    padding: 0px 30px;
    line-height: 2.0rem;;
}

.post-content h3:before {
    display: block;
    position: absolute;
    content: "";
    background-color: var(--site-color-accennt);
    width: 8px;
    height: 8px;
    top: calc(50% - 3px);
    left: 4px;
}

.post-content h3:after {
}

.post-content h4 {
    position: relative;
    font-size: 1.1rem;
    font-weight: 300;
    margin: 30px 10px 20px 10px;
    padding: 0px 30px;
    line-height: 1.6rem;
}

.post-content h4:before {
    display: block;
    content: "//";
    position: absolute;
    left: 4px;
}

.post-content h4:after {
}

.post-content .post-excerpt {
    display: none;
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    font-size: 0.8rem;
    margin: 5px 0 20px 0;
    padding: 5px 20px;
}


/* Bullet points */
.post-content ul,
.post-content ol {
    padding: 0.5% 5%;
}

.post-content ul {
    list-style: disc;
}

.post-content ul ul {
    list-style: circle;
}

.post-content ol {
    list-style: decimal;
}

.post-content ol ol {
    list-style: lower-roman;
 }

 .post-content figure {
    padding: 2% 3%;
 }

 /* Table */
.post-content table {
    width: 100%;
}

.post-content thead {
    background: var(--site-color-symbol);
    color: #ffffff;
}

.post-content tbody {
    background: #ffffff;
    color: #000000;;
}

.post-content tfoot {
    background: var(--site-color-accennt);
    color: var(--site-color-symbol);
}

.post-content th,
.post-content td {
    height: 1.0rem;
    padding: 0 8px;
}


.post-content img {
}


/* Content-List */
.content-list {
    /*
    display: block;
    position: relative;
    */
}

.content-list .post {
    position: relative;
    display: flex;
    flex-direction: row;
    /*height: 100%;*/
    width: 100%;
}

.content-list .post-thumbnail {
    height: auto;
    width: 50%;

}

.content-list .post-thumbnail img {
    width: 100%;
}

.content-list .post-description {
    position: absolute;
    top: 50%;
    left: 50%;
    /*height: 50%;*/
    /*width: 100%;*/
    width: 50%;
    padding: 1% 2% 1% 1%;
}

.content-list .post-description-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    height: 18%;
}

.content-list .post-date {
    color: #000000;
    font-family: Poppins;
    font-size: clamp(1.05rem, 1.75vw, 1.4rem);
    width: 40%;
    padding: 0 2%;
    
}

.content-list .post-category {
    color: #000000;
    font-family: Poppins;
    font-size: clamp(0.75rem, 1.25vw, 1rem);
    text-align: right;
    width: 60%;
    padding: 0 1%;
}

.content-list .post-title {
   color: var(--site-color-symbol);
   width: 100%;
   padding: 0 2%;
   font-size: clamp(1.2rem, 2vw, 1.6rem);
   font-weight: bold;
}

.content-list .post-excerpt {
    color: #000000;
    font-size: clamp(0.75rem, 1.25vw, 1rem);
    padding: 2% 6%;
    line-height: clamp(0.9rem, 1.5vw, 1.2rem);
}

/*
 *  Sidebar parts
 */
.sidebar {
    position: fixed;
    background: linear-gradient(0deg, rgba(255,255,255,0.0), rgba(255,255,255,0.8) 10%, rgba(255,255,255,0.8) 90%, rgba(255,255,255,0.0));
    font-size: 0.8rem;
    top: 0;
    width: var(--sidebar-width);
    margin-top: 200px;
    margin-left: min(calc(100% - var(--sidebar-width)), calc(var(--site-width) - var(--sidebar-width)));
    padding-bottom: 28px;
    z-index: 400;
}

.toggle-button {
    display: flex;
}

.toggle-switch {

}
 
.toggle-switch-label {
    display: flex;
    height: 100px;
    width: 20px;
    justify-content: center;
    align-items: center;
    border-left: solid 1px var(--site-color-accennt);
    cursor: pointer;
    z-index: 999;
}

.toggle-switch-label:hover {
    background: linear-gradient(#ffffff, var(--site-color-symbol), #ffffff);
    color: #ffffff;
}

.toggle-switch-label span::before {
    content: '<';
}

.toggle-switch-label.active span::before {
    content: '>';
}

/*
 * Main menu parts
 */
.main-menu {
    z-index: 999;
}

.menu-list {
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.menu-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    border-left: solid 1px;
    border-color: var(--site-color-accennt);
    cursor: pointer;
    writing-mode: vertical-rl;
    z-index: 999;
}

.menu-item:hover {
    background: linear-gradient(var(--site-color-transparent), var(--site-color-symbol), var(--site-color-transparent));
    color: #ffffff;
}

/* Widget Menu */
.widget-menu {
    background-color: var(--site-color-accennt);
    position: absolute;
    top: 0;
    right: var(--sidebar-width);
    width: 0;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s 0.0s ease;
    visibility: hidden;
    z-index: 50;
}

.widget-menu.active {
    background-color: var(--site-color-accennt);
    width: var(--widget-menu-width);
    padding: 10px 40px;
    visibility: visible;
}

.widget-list {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    visibility: hidden;
}

.widget-list.active {
    visibility: visible;
}

.widget-list h2 {
    font-weight: bold;
}


/*
 * Category parts
 */
.category-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
}

.category-item {
     position: relative;
     width: 100%;
     padding: 2%;
}

.category-image {

}

.category-thumbnail img {
    width: 100%;
    filter: grayscale(100%);
    
}

.category-thumbnail-parent {
    background-image: url(./imgs/category_back_480x270.png);
    background-size: 100%;
    width: 100%;
    height: 100%;
}

.category-thumbnail-parent img {
    width: 100%;
    filter: grayscale(100%);
}

.category-description-container {
    position: absolute;
    top: 80%;
    left: 2%;
    height: 16%;
    padding: 0 2%;
    transition: 0.3s ease-in-out;
}

.category-name {
    color: #ffffff;
    font-size: clamp(0.84rem, 1.75vw, 1.4rem);
}

.category-description {
    color: var(--site-color-transparent);
    font-size: clamp(0.6rem, 1.25vw, 1.0rem);
    transition: .3s ease-in-out;
}

.category-item .mask {
    position: absolute;
    background: linear-gradient(to bottom, var(--site-color-transparent), var(--site-color-symbol));
    top: 70%;
    left: 0;
    height: 26%;
    width: 96%;
    margin: 2%;
    transition: 0.3s ease-in-out;
}

.category-item:hover img {
    transition: .3s ease-in-out;
    filter: grayscale(0);
}

.category-item:hover .category-description-container {
    top: 50%;
}

.category-item:hover .category-description {
    color: var(--site-color-accennt);
}

.category-item:hover .mask {
    top: 40%;
    height: 56%;
}

/*
 *  Front page 
 */
.front-page-media-wrap {
    position: relative;
    width: min(1280px, 100%);
    aspect-ratio: 192 / 108;
    z-index: 0;
}

.front-page-media {
    position: relative;
}

.front-page-media-image,
.front-page-media-video {
    position: fixed;
    top: 0;
    width: min(1280px, 100%);
    aspect-ratio: 192 / 108;
}

/*
 * Slider
 */
.slider-container {
    position: fixed;
    width: min(100%, 1280px);
    overflow-x: visible; /* 横方向は見えるように */
    margin-left: max(-100%, -1280px);
    top: 0;
}

.slider {
    display: flex;
    transition: transform 0.5s ease;
    overflow: visible;   /* スライダー自体も overflow: visible に */
    left: -100%;
}

.slide {
    visibility: visible;
    min-width: 100%;
    aspect-ratio: 192 / 108;
    z-index: 100;
}

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

.mask-l,
.mask-r {
    position: fixed;
    background-color: rgba(255,255,255,0.7);
    width: calc(50% - 640px);
    height: 720px;
    top: 0;
    z-index: 10;
}

.mask-l {
    left :0;
}

.mask-r {
    right: 0;
}

/*
 * Welcom Message Parts on Front Page
 */
.welcome-message {
    display: block;
    position: relative;
    background-color: #ffffff;
    width: 100%;
    padding: 5% 10%;
    z-index: 10;
}

.welcome-message h1 {
    font-family: Poppins;
    font-size: 4.8rem;
    font-weight: 200;
    text-align: center;
    padding-top: 3%;
}

.welcome-message h2 {
    font-family: Poppins;
    font-size: 2.2rem;
    font-weight: 200;
    text-align: center;
}

.welcome-message p {
    font-family: Poppins;
    font-size: 1.2rem;
    font-weight: 200;
    text-align: center;
}

/*
 * Recent post viewer
 */
.recent-post-list {
    display: block;
    position: relative;
    background-color: #ffffff;
    width: 100%;
    padding: 5% 0;
    z-index: 10;
}

.recent-post-list h2 {
    font-family: Poppins;
    font-size: 2.2rem;
    font-weight: 200;
    text-align: center;
}

.recent-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.recent-post {
    width: 100%;
}

.recent-post-thumbnail {
    position: relative;
    width: 100%;
}

.recent-post-thumbnail img {
    width: 100%;
}

.recent-post-thumbnail .mask {
    background: linear-gradient(to bottom, var(--site-color-transparent), var(--site-color-symbol));
    color: #ffffff;
    width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;	/* マスクを表示しない */
	-webkit-transition:	all 0.4s ease;
	transition:			all 0.4s ease;
}

.recent-post-thumbnail:hover .mask {
    opacity:	1;	/* マスクを表示する */
}

.recent-post-title {
    padding: 0.5% 3%;
}

.recent-post-category {
    width: 50%;
    padding: 0.5% 3%;
}

.recent-post-date {
    padding: 0.5% 3%;
    width: 50%;
    text-align: right;
    float: left;
}

.recent-post-excerpt {
    width: 100%;
    padding: 4% 2%;
}

/*
 * Post navigation
 */
 .post-navigation {
    width: 100%;
    margin: 40px 0 0;
    padding: 40px 0 0 0;
}

.post-navigation .nav-links {
    display: inline-block;
    vertical-align: bottom; /* inline-blockでできる下の隙間対策 */
    width: 100%;
}

.nav-links .nav-previous,
.nav-links .nav-next {
    display: inline-flex;
    position: relative;
    width: 50%;
}

.nav-links .nav-previous {
    float: left;
}

.nav-links .nav-next {
    float: right;
}

.nav-links .nav-previous a,
.nav-links .nav-next a {
    width: 100%;
}

.nav-previous .prev-post-img img,
.nav-next .next-post-img img {
    width: 50%;
    height: auto;
    aspect-ratio: 192 / 108;
}

.nav-previous .prev-post-img img {
    float: left;
}

.nav-next .next-post-img img {
    float: right;
}

.nav-previous .prev-post-meta,
.nav-previous .prev-post-title,
.nav-next .next-post-meta,
.nav-next .next-post-title {
    position: absolute;
}

.nav-previous .prev-post-meta,
.nav-next .next-post-meta {
    background-color: #000000;
    color: #ffffff;
    font-size: 1.00rem;
    top: 5px;
    padding: 5px 5px; 
}

.nav-previous .prev-post-meta {
    left: 5px;
}

.nav-next .next-post-meta {
    right: 5px;
}

.nav-previous .prev-post-title {
    background: linear-gradient(to bottom, var(--site-color-transparent), #ffffff 35%, #ffffff 65%, var(--site-color-transparent) 90%);
    bottom: 3%;
    left: 0;
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    z-index: 100;
}

.nav-next .next-post-title {
    background: linear-gradient(to bottom, var(--site-color-transparent), #ffffff 35%, #ffffff 65%, var(--site-color-transparent) 90%);
    bottom: 3%;
    right: 0;
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    z-index: 100;
}

/*
 * Pagination
 */
 .pagination {
    padding: 10% 0 3% 0;
}

.nav-links {
   display: flex;
   justify-content: center;
}

a.page-numbers,
span.page-numbers {
   display: flex;
   background-color: var(--site-color-symbol);
   color: var(--site-color-accennt);
   align-items: center;
   justify-content: center;
   font-size: 20px;
   width: 50px;
   height: 50px;
   border-radius: 10%;
   border: 1px solid #0f5474;
   margin: 0 0.5%;
   transition: .2s ease-in-out;
}

.page-numbers.dots {
   border: none;
}

.page-numbers.current {
   background-color: var(--site-color-accennt);
   color: var(--site-color-symbol);
   border: 1px solid var(--site-color-symbol);
}

.page-numbers:not(.current):not(.dots):hover {
   background-color: var(--site-color-accennt);
   color: #ffffff;
}

/*
 * Comments
 */
 /* Comment list */
.comment {
    margin-bottom: 30px;
}

.comment-meta {
    padding: 2px 32px;
}

.comment-body p {
    margin: 2px 32px;
}

.comment-body .reply {
    margin: 4px 32px;
}

.comment-body .comment-reply-link {
    background-color: var(--site-color-accennt);
    color: #ffffff;;
    padding: 0 8px;
    border-radius: 4px;
    border: 1px solid var(--site-color-symbol);
    -webkit-transition:	all 0.4s ease;
	transition:			all 0.4s ease;
}

.comment-body .comment-reply-link:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Comment form */
.comments-area {
    padding: 5% 10%;
}

.comment-respond {
    margin-top: 40px;
}

/* コメントフォームの基本レイアウト */
#commentform {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 12px;
    max-width: 100%;
    margin-top: 15px;
}

/* 左側のフィールドを配置 */
.comment-form-author {
    grid-column: 1;
    grid-row: 1;
    padding-top: 6px;
}

.comment-form-email {
    grid-column: 1;
    grid-row: 2;
    padding-top: 6px;
}

.comment-form-url {
    grid-column: 1;
    grid-row: 3;
    padding-top: 6px;
}

/* 右側にコメント欄を配置 */
.comment-form-comment {
    grid-column: 2;
    grid-row: 1 / span 4;
    padding-top: 6px;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input,
.comment-form-comment textarea {
    background-color: #f8f8f8;
}

/* 下部の要素の順序を制御 */
.comment-notes {
    grid-column: 1 / -1;
    grid-row: 5; /*4;*/
    margin: 15px 0;
}

.comment-form-cookies-consent {
    grid-column: 1 / -1;
    grid-row: 6; /*5;*/
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin: 0;
    width: auto;  /* 幅を自動に設定 */
    appearance: auto;
}

/* チェックボックス自体のスタイル */
#wp-comment-cookies-consent {
    appearance: auto;        /* チェックボックスの標準スタイルを使用 */
    width: 18px;
    height: 18px;
    margin: 3px 5px 0 0;
    padding: 0;
}

.comment-form-cookies-consent label {
    display: inline;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.form-submit {
    grid-column: 1 / -1;
    grid-row: 7;
    margin: 15px 0;
}

.submit {
    background: var(--site-color-symbol);
    color: #ffffff;
    padding: 2px 12px;
    border-radius: 4px;
    border: solid 1px var(--site-color-symbol);
    -webkit-transition:	all 0.4s ease;
	transition:			all 0.4s ease;
}

.submit:hover {
    background: var(--site-color-accennt);
    color: var(--site-color-symbol);
}

/* 入力フィールドのスタイリング */
#commentform input[type="text"],
#commentform textarea {
    width: 100%;
    padding: 0 6px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

#commentform input[type="text"] {
    font-size: 1.1rem;
}

/* テキストエリアの高さ設定 */
#commentform textarea {
    min-height: 200px;
}

/* ラベルのスタイリング */
#commentform label {
    display: block;
    margin-bottom: 2px;
}

/* ログイン時のコメント欄の配置を調整 */
.logged-in-as {
    grid-column: 1 / -1;  /* 全幅で表示 */
    grid-row: 1;          /* 最上部に配置 */
}

.logged-in .comment-form-comment {
    grid-column: 1 / -1;  /* 全幅で表示 */
    grid-row: 2;          /* 最上部に配置 */
}

.logged-in .form-submit {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 15px 0;
}

/* コメントフォーム後の区切り線 */
.comment-form-separator {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #ddd;  /* 線のスタイルをカスタマイズ可能 */
}

/* 必須マークのスタイル */
.required {
    color: #e32;  /* 赤色系 */
    margin-left: 3px;
}

/* 必須フィールドの説明文のスタイル */
.required-field-message {
    font-size: 14px;
    color: #666;
}

.pagetop {
    position: fixed;
    background-color: var(--site-color-symbol);
    color: #ffffff;
    height: 40px;
    width: 40px;
    left: min(calc(50% + 640px - 60px), calc(100% - 60px));
    text-align: center;
    border-radius: 20px;
    opacity: 0;
    transition: opacity .4s;
}




.label-home,
.label-blog,
.label-category {
    display: inline;
}

.icon-home,
.icon-wordpress,
.icon-folder {
    display: none;
}

/* レスポンシブ対応 */
@media (max-width: 960px) { /* Tablet */
    .post-content {
        padding: 4% 5%;
    }

    .post-content figure {
        padding: 2.5% 0.5%;
     }

     .breadcrumb {
        width: 65%; 
    }

     .site-symbol {
        width: 35%;
        aspect-ratio: 2.3 / 1;
    }

    .site-title {
        margin-top: 0.5rem;
    }
    
    .site-description {
        margin-top: 0.3rem;
    }


    #commentform {
        display: block;
    }

    .comments-area {
        padding: 4% 5%;
    }
    
    .comment-form-author,
    .comment-form-email,
    .comment-form-url,
    .comment-form-comment,
    .comment-notes,
    .comment-form-cookies-consent {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) { /* Mobile */
    .header {
        height: 30px;
    }

    .breadcrumb {
        display: none;
        width: 50%;
    }

    .sidebar {
        margin-top: 50px;
    }

    .footer {
        font-size: 0.7rem;
        padding: 6px 0;
    }q

    .site-symbol {
        background: linear-gradient(6deg, var(--site-color-transparent), var(--site-color-symbol), var(--site-color-transparent));
        width: 100%;
        aspect-ratio: unset;
        height: 30px;
    }

    .site-title {
        font-size: 1.0rem;
        height: 30px;
        width: 40%;
        margin: 0;
        padding: 0;
        float: left;
    }

    .site-description {
        font-size: 0.7rem;
        height: 30px;
        width: 60%;
        margin: 0;
        padding-top: 6px;
        float: left;
    }

    .site-description ::before,
    .site-description ::after {
        content: " - ";
    }

    .content-list .post {
        flex-direction: column;
    }

    .content-list .post-thumbnail {
        height: auto;
        width: 100%;
    
    }
    /*
    .content-list .post-thumbnail img {
        width: 100%;
    }
    */
    .content-list .post-description {
        /*position: absolute;*/
        position: relative;
        top: auto;
        left: 0;
        width: 100%;
        padding: 1% 1% 1% 1%;
    }

    .content-list .post-excerpt {
        display: none;
    }


    .post-info .post-description {
        width: 100%;
        aspect-ratio: 6 / 1;
    }

    .post-info .post-description-wrap {
        height: auto;
    }

    .post-info .post-date {
        font-size: 1.2rem;
        padding: 0 1%;
    }

    .post-info .post-category {
        font-size: 0.9rem;
        padding: 0 2%;
    }

    .post-info .post-title {
        font-size: 1rem;
        padding: 0 1%;
    }

    .post-info .post-excerpt {
        display: none;
    }

    .post-content .post-excerpt {
        display: block;
    }

    .site-main {
        margin-top: 30px;
    }

    .label-home,
    .label-blog,
    .label-category {
        display: none;
    }

    .icon-home,
    .icon-wordpress,
    .icon-folder {
        display: inline;
    }

    .toggle-switch-label {
        height: 60px;
    }

    .menu-item {
        height: 60px;
    }

    .post-content {
        font-size: 0.9rem;
    }

    .post-content h2 {
        font-size: 1.2rem;
        padding: 0px 20px;
        line-height: 2.4rem;
    }

    .post-content h3 {
        font-size: 1.1rem;
        padding: 0px 20px;
        line-height: 1.6rem;
    }

    .post-content h4 {
        font-size: 1.0rem;
        padding: 0px 25px;
        line-height: 1.6rem;
    }

    .nav-links .nav-previous,
    .nav-links .nav-next {
        width: 100%;
    }

    .comment-respond {
        font-size: 0.9rem;
    }

    .comment-form-cookies-consent {
        font-size: 0.7rem;
    }

    .welcome-message {
        padding: 2% 4%;
    }

    .welcome-message h1 {
        font-size: 2.2rem;
    }

    .welcome-message h2 {
        font-size: 1.4rem;
    }

    .recent-post-list h2 {
        font-size: 1.4rem;
    }

    .recent-post-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .recent-post-thumbnail {
        padding: 10px 0;
    }

    .recent-post-title {
        font-size: 0.8rem;
        line-height: 1.2;
        padding: 0 1%
    }

    .post-category,
    .post-date {
        font-size: 0.7rem;
        line-height: 1.2;
    }

    .category-list {
        grid-template-columns: 1fr 1fr;
    }

    .submit {
        font-size: 0.9rem;
    }



    .nav-previous .prev-post-title,
    .nav-next .next-post-title {
        font-size: 1.2rem;
    }

    .nav-previous .prev-post-meta,
    .nav-next .next-post-meta {
        font-size: 0.7rem;
        padding: 2px 5px;
    }

    a.page-numbers,
    span.page-numbers {
        font-size: 14px;
        height: 35px;
        width: 40px;
    }
}

  