:root {
  --bg-color: #eef1f4;
  --container-bg: #ffffff;
  --text-dark: #222222;
  --text-light: #aaaaaa;
  --text-disabled: #cccccc;
  --border-color: #e0e0e0;
  --highlight-red: #ff5b5b;
  --font-family: 'Poppins', sans-serif;
  --primary-text: #2c2c2c;
  --secondary-text: #9a9a9a;
  --border-color: #eaeaea;
  --highlight-color: #dd5449;
  --page-bg: #f8f8f8;
  --tag-bg: #000000;
}
#hero {
  display: flex;
  justify-content: flex-end;
  background: var(--container-bg);
  position: relative;
  z-index: 999;
  margin-bottom: 50px;
}
#hero h1 {
  font-size: 20px;
  color: var(--tag-bg);
}
#hero h1 span {
  font-size: 9.5vw;
  line-height: 9.5vw;
  display: block;
  font-weight: bold;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}
#hero h1 a{
  color: var(--tag-bg);
  transition:all ease 0.3s;
  -webkit-transition:all ease 0.3s;
  -moz-transition:all ease 0.3s;
}
#hero h1 a:hover{
  color: var(--highlight-red);	
}
#hero h1 a:active {
  color: var(--highlight-red);	
}


/* --- Blog Top --- */
.container {
  display: flex;
  width: min(100%, 1600px);
  padding: 5%;
  gap: 60px;
  box-sizing: border-box;
  margin: 0 auto;
}
.calendar-section {
  flex-basis: 55%;
}
.theme-section {
  flex-basis: 45%;
}
.header-tag {
  background-color: var(--text-dark);
  color: var(--container-bg);
  font-size: 14px;
  font-weight: 500;
  padding: 1px 12px;
  display: inline-block;
  margin-bottom: 15px;
}
/* --- Calendar Section --- */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--tag-bg);
  padding-bottom: 20px;
}
.month-year {
  display: flex;
  align-items: baseline;
  gap: 15px;
}
.month-year h2 {
  font-size: 60px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}
.month-year span {
  font-size: 18px;
  font-weight: 500;
  position: relative;
  bottom: 5px;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}
.nav-buttons {
  display: flex;
  gap: 8px;
}
.nav-btn, .list-link {
  background-color: var(--container-bg);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0 20px;
  font-size: 12px;
  cursor: pointer;
  color: var(--text-dark);
  font-family: var(--font-family);
  text-decoration: none;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  line-height: 33.6px;
  display: inline-block;
}
.nav-btn:hover, .list-link:hover {
  color: var(--container-bg);
  background-color: var(--tag-bg);
  border: 1px solid var(--tag-bg);
}
.nav-btn:active, .list-link:active {
  color: var(--container-bg);
  background-color: var(--tag-bg);
  border: 1px solid var(--tag-bg);
}
.nav-btn.disabled {
  color: var(--text-disabled);
  cursor: not-allowed;
  pointer-events: none;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  text-align: center;
  width: 95%;
  margin: 0 auto;
}
.day-name {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--tag-bg);
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}
.date-cell {
  padding: 13px;
  font-size: 20px;
  font-weight: bold;
}
.date-cell.empty {
  pointer-events: none;
}
.date-number {
  display: block;
  text-align: left;
  line-height: 20px;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
  margin-bottom: 3px;
}
.date-number.active {
  color: var(--highlight-red);
}
.date-number.none {
  color: var(--text-disabled);
}
.date-cell.disabled .date-number {
  color: var(--text-disabled);
}
.date-cell .person-image {
  width: 100%;
  min-height: 60px;
}
.date-cell .person-image img {
  width: 100%;
	border-radius: 100%;
}
.date-cell.highlight-date .person-image {
  border: 2px solid var(--highlight-red);
  box-sizing: border-box;
}
/* --- Theme Section --- */
.theme-header {
  margin-bottom: 25px;
}
.theme-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--tag-bg);
  padding-bottom: 21px;
}
.theme-header-content h2 {
  font-size: 60px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}
.theme-list-container {
  height: 670px;
  overflow-y: auto;
  padding-right: 15px;
}

.theme-list-container::-webkit-scrollbar {
  width: 6px;
}
.theme-list-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.theme-list-container::-webkit-scrollbar-thumb {
  background: #d1d1d1;
  border-radius: 10px;
}
.theme-list-container::-webkit-scrollbar-thumb:hover {
  background: #b1b1b1;
}
.theme-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.theme-item {
  display: flex;
  gap: 60px;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}
.theme-month {
  flex-shrink: 0;
  width: 86px;
}
.theme-desc {
  font-size: 18px;
  font-weight: 500;
}
.theme-desc a {
  display: block;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}
.theme-desc.active a {
  color: var(--highlight-red);
}
.theme-desc a:hover {
  color: var(--highlight-red);
}
.theme-desc.active a:hover {
  text-decoration: underline;
}
.month-num {
  font-size: 32px;
  font-weight: bold;
  margin-right: 10px;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
  line-height: 37px;
  width: 44px;
  display: inline-block;
}
.month-abbr {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}
.theme-item.active {
  color: var(--highlight-red);
}
.theme-item.active .month-abbr {
  color: var(--highlight-red);
  opacity: 0.7;
}
.theme-item.upcoming {
  color: var(--text-disabled);
}
.theme-item.upcoming .month-abbr {
  color: var(--text-disabled);
}
.theme-item.upcoming .theme-desc {
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}

/* --- Srticle Section --- */
.article-container {
  width: min(100%, 1600px);
  padding: 40px 5% 10%;
  box-sizing: border-box;
  margin: 0 auto;
}
.list-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}
.header-title .tag {
  background-color: var(--tag-bg);
  color: var(--container-bg);
  font-size: 14px;
  font-weight: 500;
  padding: 1px 12px;
  display: inline-block;
}
.header-title h2 {
  font-size: 40px;
  font-weight: bold;
  margin: 10px 0 0;
  line-height: 1;
  letter-spacing: 2px;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
  line-height: 50px;
}
.header-title{
	width:calc(100% - 175px);
}
.pagination {
  display: flex;
  gap: 8px;
  margin: 10px 0 0 10px;
  width:165px;
}
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
  /*cursor: pointer;*/
}
.article-item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
  gap: 15px;
}
.article-list li:last-child .article-item {
  border-bottom: none;
}
.date-info {
  text-align: center;
  width: 60px;
  flex-shrink: 0;
}
.date-info .number {
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
  font-size: 8px;
  font-weight: bold;
  display: block;
  color: var(--secondary-text);
}
.date-info .day {
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
  font-size: 32px;
  font-weight: bold;
  display: block;
  color: var(--tag-bg);
}
.date-info .month {
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: var(--tag-bg);
}
.article-item.highlighted .date-info .number,
.article-item.highlighted .text-content .title,
.article-item.highlighted .date-info .day,
.article-item.highlighted .date-info .month {
  color: var(--highlight-red);
}
.avatar {
  width: 60px;
  height: auto;
  border-radius: 100%;
  object-fit: cover;
  margin: 0;
  flex-shrink: 0;
}
.text-content {
  flex-grow: 1;
}
.text-content .title {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}
.text-content .title a{
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
	display:block;
}
.article-list li:hover .text-content .title a{
  color: var(--highlight-red);
}
.article-list li:active .text-content .title a{
  color: var(--highlight-red);
}
.text-content .author {
  font-size: 13px;
  color: var(--secondary-text);
  margin: 6px 0 0;
}
.text-content .author a {
  color: var(--secondary-text);
	margin-left:1rem;
	font-size: 12px;
	text-decoration: underline;
	transition:all ease 0.3s;
	-webkit-transition:all ease 0.3s;
	-moz-transition:all ease 0.3s;
}
.text-content .author a:hover,.text-content .author a:active{
	color:var(--highlight-red);
}
.action-button {
  font-size: 25px;
  color: var(--container-bg);
  background: none;
  padding: 3px 13px 7px;
  display: block;
  background: var(--tag-bg);
  line-height: 30px;
  border-radius: 100%;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}
.article-list li:hover .action-button,.article-list li:active .action-button{
  background: var(--highlight-red);
}



/* --- Year List --- */
.archive-list {
  max-height: 1000px;
  width: 100%;
  overflow-y: auto;
  padding: 0 20px;
}
.archive-list .list-title .tag {
  background-color: var(--tag-bg);
  color: var(--container-bg);
  font-size: 14px;
  padding: 1px 12px;
  font-weight: 500;
}
.archive-list .list-title h2 {
  margin: 0 0 25px;
  font-size: 80px;
  line-height: 80px;
  font-weight: bold;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}
.list-title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.back-link {
  background-color: var(--container-bg);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0 20px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-dark);
  font-family: var(--font-family);
  text-decoration: none;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}
.back-link:hover,.back-link:active{
  color: var(--container-bg);
  background-color: var(--tag-bg);
  border: 1px solid var(--tag-bg);
}
.archive-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-nav li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding: 18px;
  font-size: 40px;
  font-weight: 800;
  font-family: Neue Haas Grotesk Text Pro, sans-serif;
}
.archive-nav li:nth-of-type(1) {
  border-top: 1px solid #ccc;
}
.archive-nav li span {
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}
.archive-nav li:hover span,.archive-nav li:active span{
  color: var(--highlight-red);
}
.archive-nav li a.arrow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border: 1.5px solid #ccc;
  border-radius: 50%;
  font-size: 14px;
  font-weight: normal;
  color: #888;
  transition: all ease 0.3s;
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
}
.archive-nav li a.arrow-button:hover,
.archive-nav li a.arrow-button:active{
  background-color: var(--tag-bg);
  border-color: var(--container-bg);
}


/* --- Single Page --- */
.single_member_blog{
	width:min(100%,1600px);
	margin:0 auto;
	padding:0 5% 10%;
}
.single_member_blog .article-list{
	margin-top:30px;
	border-top:1px solid var(--tag-bg);
}
.single_member_blog_inner{
	width:min(95%,1500px);
	margin:30px auto 0;
	border-left:1px solid var(--tag-bg);
	padding:0 5% 30px;
}
.single_member_blog_inner h1{
	margin-bottom:2rem;	
}
.single_member_blog_inner a{
	text-decoration: underline;
}
.single_member_blog_inner img{
	display:inline-block;
}
.single_member_sns{
	width:100%;
	margin-top:70px;
	text-align: center;
}
.single_member_sns dl{
	display: inline-block;
	margin:0 auto;
}
.single_member_sns dl dt span{
	display: inline-block;
	position: relative;
	padding-left:20px;
	font-size: 12px;
	line-height: 12px;
	margin-bottom:10px;
}
.single_member_sns dl dt span::before{
	content:"";
	background-image:url('./library/images/mb_s_icon.png');
	background-size:contain;
	background-position:center center;
	background-repeat:no-repeat;
	padding:6px 6.7px;
	position: absolute;
	top:50%;
	left: 0;
	transform: translateY(-50%);
}
.single_member_sns dl dd{
	display: grid;
	row-gap:0;
	column-gap:10px;
	grid-template-columns: repeat(3, 1fr);
}
.single_member_sns dl dd a,.single_member_sns dl dd span{
	display: inline-block;
}
.single_member_sns dl dd span{
	cursor: pointer;
}
.single_member_sns dl dd a img,.single_member_sns dl dd span img{
	transition:all ease 0.1s;
	-webkit-transition:all ease 0.1s;
	-moz-transition:all ease 0.1s;
}
.single_member_sns dl dd a img:hover,.single_member_sns dl dd span img:hover,
.single_member_sns dl dd a img:active,.single_member_sns dl dd span img:active{
	transform: scale(0.95,0.95);

	margin:0 auto;
}
.single_member_blog .article-list li:hover .text-content .title,
.single_member_blog .article-list li:active .text-content .title{
  color: var(--tag-bg);
}

.single_member_blog .profile_area{
	width:min(95%,1500px);
	margin:30px auto 0;
	border:1px solid var(--tag-bg);
	padding:3%;
	border-radius:30px; 
}
.single_member_blog .profile_area dl{
	display: flex;
	justify-content: space-between;
}
.single_member_blog .profile_area dt{
	width:190px;
	margin-right:20px;
}
.single_member_blog .profile_area dt img{
	border-radius: 100%;
}
.single_member_blog .profile_area dd{
	width:calc(100% - 190px - 20px);
}
.single_member_blog .profile_area dd h2{
	font-size: 26px;
	margin-bottom: 1rem;
	line-height: 26px;
}
.single_member_blog .profile_area dd h2 span{
	display: block;
	margin-bottom:0.5rem;
	font-size: 16px;
	position: relative;
	padding-left:23px;
}
.single_member_blog .profile_area dd h2 span::before{
	content:"";
	background-image:url('./library/images/mb_s_icon04.png');
	background-size:contain;
	background-position:center center;
	background-repeat:no-repeat;
	padding:9px;
	position: absolute;
	top:50%;
	left: 0;
	transform: translateY(-50%);
}
.single_member_blog .profile_area dd h2 a {
  color: var(--secondary-text);
	font-size: 12px;
	text-decoration: underline;
	transition:all ease 0.3s;
	-webkit-transition:all ease 0.3s;
	-moz-transition:all ease 0.3s;
}
.single_member_blog .profile_area dd h2 a:hover,
.single_member_blog .profile_area dd h2 a:active{
	color:var(--highlight-red);
}
.single_member_blog .profile_area dd p{
	font-size: 14px;
}

@media screen and (max-width: 1500px) {
.theme-list-container {
  height: 630px;
}
}
@media screen and (max-width: 1400px) {
.date-cell .person-image {
    min-height: 63.58px;
}
.theme-list-container {
  height: 595px;
}
}

@media screen and (max-width: 1300px) {
.date-cell .person-image {
    min-height:56.85px;
}
.theme-list-container {
  height: 565px;
}
.month-year h2,.theme-header-content h2{
  font-size: 50px;
}
.theme-item {
  gap: 20px;
}
.date-cell .person-image {
    min-height:50.14px;
}
}
@media screen and (max-width: 1200px) {
.month-year h2,.theme-header-content h2{
  font-size: 40px;
}
}
@media screen and (max-width: 1100px) {
.date-cell .person-image {
    min-height: 44px;
}
}
@media screen and (max-width: 1080px) {
.container {
  display: block;
}
.calendar-section {
  width: 100%;
  margin-bottom: 2.5rem;
}
.theme-section {
  width: 100%;
}
.theme-item {
  gap: 50px;
}
.date-number {
  margin-bottom: 5px;
}
}
@media screen and (max-width: 660px) {
.header-tag {
  font-size: 11px;
  padding: 0 10px;
  margin-bottom: 5px;
  line-height: 21px;
}
.calendar-header {
  display: block;
  margin-bottom: 2px;
  padding-bottom: 15px;
}
.calendar-grid {
  width: 100%;
}
.day-name {
  font-size: 12px;
  margin-bottom: 10px;
}
.date-cell {
  padding: 0 3px 5px;
  font-size: 14px;
}
.date-number {
  margin-bottom: 2px;
  text-align: center;
}
.date-cell .person-image {
  min-height: 39px;
}
.month-year span {
  font-size: 16px;
  bottom: 0px;
}
#hero {
  margin-bottom: 30px;
  padding-top: 20px;
  justify-content: center;
}
#hero h1 span {
  font-size: 11.5vw;
  line-height: 11.5vw;
}
.month-year h2, .theme-header-content h2{
  font-size: 35px;
}
.theme-header-content {
  padding-bottom: 10px;
}
.theme-header {
  margin-bottom: 15px;
}
.month-num {
  font-size: 25px;
  margin-right: 5px;
  line-height: 25px;
  width: 35px;
}
.theme-item {
  gap: 10px;
  margin-bottom: 15px;
}
.theme-desc {
  font-size: 16px;
  line-height: 18px;
}
.theme-list-container {
  height: 300px;
}
.theme-desc a {
  margin-bottom: 7px;
}
.article-container {
  padding: 2.5rem 5%;
}
.header-title .tag {
  font-size: 11px;
  padding: 0px 10px;
  line-height: 21px;
}
.list-header {
  display: block;
  margin-bottom: 15px;
}
.header-title h2 {
  font-size: 20px;
  margin: 5px 0 0;
  letter-spacing: 1px;
  line-height: 25px;
}
.pagination {
  margin: 5px 0 0 0;
  width: 170px;
}
.header-title {
  width: 100%;
}
.action-button{
  display:none;
}
.date-info {
  text-align: center;
  width: 35px;
  flex-shrink: 0;
  display: inline-block;
  margin-right: 11px;
}
.article-item {
  display: block;
  padding: 20px 0;
}
.avatar {
  width: 60px;
  height: auto;
  border-radius: 100%;
  object-fit: cover;
  margin: 0;
  flex-shrink: 0;
  display: inline-block;
}
.text-content {
  flex-grow: 0;
  width: 100%;
  margin-top: 12px;
}
.date-info .number {
  font-size: 8px;
  line-height: 8px;
  margin-bottom: 5px;
}
.date-info .day {
  font-size: 27px;
  line-height: 27px;
}
.date-info .month {
  font-size: 14px;
  line-height: 14px;
}
.avatar {
  width: 57px;
}
.text-content .title {
  font-size: 16px;
}
.text-content .author {
  font-size: 12px;
  margin: 6px 0 0;
}
.text-content .author a {
  margin-left: 0;
  font-size: 12px;
  display: block;
}
.single_member_blog_inner {
  width: min(100%,1500px);
  margin: 10px auto 0;
  padding: 0 10px 20px;
}
.single_member_blog_inner h1 {
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 1px;
}
.single_member_blog_inner h2,
.single_member_blog_inner h3,
.single_member_blog_inner h4,
.single_member_blog_inner h5,
.single_member_blog_inner h6{
  font-size: 16px;
  line-height: 21px;
}
.single_member_sns {
  margin-top: 30px;
}
.single_member_blog .profile_area {
  width: min(100%,1500px);
  margin: 30px auto 0;
  padding: 5%;
  border-radius: 0px;
}
.single_member_blog .profile_area dl {
  display: block;
}
.single_member_blog .profile_area dt {
  width: 100%;
  margin: 0 auto 1rem;
}
.single_member_blog .profile_area dt img {
  margin: 0 auto;
  width: 140px;
}
.single_member_blog .profile_area dd {
  width: 100%;
}
.archive-list .list-title .tag {
  font-size: 11px;
  padding: 0px 10px;
  line-height: 21px;
}
.archive-list .list-title h2 {
  margin: 0 0 10px;
  font-size: 35px;
  line-height: 35px;
}
.back-link {
  border-radius: 30px;
  padding: 2px 15px;
  font-size: 11px;
  line-height: 21px;
}
.archive-list {
  padding: 0;
}
.archive-nav li {
  padding: 10px 0;
  font-size: 25px;
}
.archive-nav li a.arrow-button {
  width: 27px;
  height: 27px;
  font-size: 14px;
}
.single_member_blog {
  margin:3rem auto 0;
}
}





