@charset "UTF-8";

@import url("./wp.css");



/* ========================================================
  
  Components

======================================================== */

/*-----------------------------------------------
 Components - date / title
-----------------------------------------------*/
.entry-date {
	display: block;
	color: var(--accent-color);
	font: var(--font-en);
	font-size: min(112%);
	margin-bottom: .6em;
}

.entry-title {
	font-size: min(2vw,100%);
	font-weight: var(--fw-bold);
	line-height: 1.4;
	letter-spacing: .12em;
	margin-bottom: .5em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.entry-date {
	font-size: 90%;
}
.entry-title {
	font-size: 105%;
	letter-spacing: .06em;
}
}


/*-----------------------------------------------
 Components - entry-author
-----------------------------------------------*/
.entry-author {
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
	row-gap: .2em;
	font: var(--font-min);
	margin-top: 1.5em;
}
.entry-author a {
	text-decoration: underline;
}
.entry-author a:hover {
	text-decoration: none;
	color: #666;
}
.entry-author dl {
	display: flex;
    justify-content: center;
}
.entry-author dl::after {
	content: "／";
}
.entry-author dl:last-child::after {
	display: none;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.entry-author {
	font-size: 90%;
	margin-top: .5em;
}
}


/* ========================================================
  
  Layout

======================================================== */


/*-----------------------------------------------
 Layout - post-footer
-----------------------------------------------*/
.post-footer {
	padding-top: min(10%,80px);
	border-top: 1px solid var(--color-bdr);
	margin-top: 100px;
}

.post-footer__inner {
	display: grid;
	row-gap: 2em;
	max-width: 1100px;
	margin-inline: auto;
}

.post-footer__ttl {
	font: var(--font-min);
	font-size: min(2vw,125%);
	letter-spacing: .1em;
	margin-bottom: .8em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.post-footer__inner {
	width: 96%;
	justify-content: space-between;
	grid-template-columns: 37% 55%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.post-footer {
	padding-top: 12%;
	margin-top: 12%;
}

.post-footer__ttl {
	font-size: 100%;
	letter-spacing: .08em;
}
}

/* Layout - post-footer - recent_posts
-----------------------------------------------*/
.recent_posts {
	font: var(--font-min);
	font-size: 88%;
	border-top: var(--border-solid);
}
.recent_posts li {
	border-bottom: var(--border-solid);
}
.recent_posts a {
	display: block;
	position: relative;
	line-height: 1.5;
	padding: 1em 0;
	padding-left: 1.8em;
}
.recent_posts a::before {
	position: absolute;
	content: "";
	background-color: var(--accent-color);
	width: 1em;
	height: 1em;
	border-radius: 50%;
	left: 0;
	top: 50%;
	translate: 0 -50%;
}
.recent_posts a:hover {
	color: var(--accent-color);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.recent_posts a {
	font-size: 90%;
	padding-top: .7em;
	padding-bottom: .7em;
}
}

/* Layout - post-footer - supervisor_box
-----------------------------------------------*/
.supervisor_inbox {
}

.supervisor_box .supervisor_layout .img_box {
	aspect-ratio: 1;
}
.supervisor_box .supervisor_layout .img_box img {
	width: 100%;
	max-width: none;
	height: 100%;
	object-fit: cover;
}
.supervisor_box .sup_position {
	font: var(--font-min);
	letter-spacing: .1em;
	line-height: 1.4;
	margin-bottom: .5em;
}
.supervisor_box .sup_name {
	font: var(--font-min);
	font-size: min(2.2vw,166%);
	letter-spacing: .2em;
	line-height: 1.2;
}
.supervisor_box .sup_free_area {
	font-size: 94%;
	line-height: 1.6;
	margin-top: 1.0em;
}
.supervisor_box .sup_free_area a {
	text-decoration: underline;
}
.supervisor_box .sup_free_area a:hover {
	color: var(--accent-color);
}
.supervisor_box .c-btn-radi {
	text-align: left;
	margin-top: 1em;
}
.supervisor_box .c-btn-radi a {
	width: 12.6em;
	height: 3.4em;
	
}
/* PC,Tablet
------------------------------------------*/
@media only screen and (min-width: 768px) {

.supervisor_box .supervisor_layout {
	display: grid;
    justify-content: space-between;
	grid-template-columns: 32% 60%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.supervisor_box .supervisor_layout {
	display: block;
}
.supervisor_box .supervisor_layout .img_box {
	width: 40%;
	max-width: 100%;
	margin: 0 auto 1.2em;
}
.supervisor_box .supervisor_layout .txt_box {
	width: 80%;
	max-width: 100%;
	margin: 0 auto;
}
.supervisor_box .sup_position,
.supervisor_box .sup_name {
	text-align: center;
}
.supervisor_box .sup_position {
	font-size: 90%;
}
.supervisor_box .sup_name {
	font-size: 110%;
}
.supervisor_box .sup_free_area {
	font-size: 90%;
	letter-spacing: normal;
}
}




/* ========================================================
  
  List page

======================================================== */
.entry_list {
	width: 96%;
	max-width: 1100px;
	display: grid;
	justify-content: space-between;
	grid-template-columns: repeat(3,31%);
	margin-inline: auto;
}
.entry_list article {
	padding: 2em 0;
}
.entry_list article:nth-of-type(n+4) {
	border-top: 1px solid var(--color-bdr);
}
.entry_list article > a {
	display: block;
}

.entry_list .entry-date {
	display: block;
	color: var(--accent-color);
	font: var(--font-en);
	font-size: min(112%);
	margin-bottom: .6em;
}
.entry_list .entry-date::before {
	display: inline-block;
	font-family: 'fontello';
	content: '\e802';
	font-weight: normal;
	color: var(--color-gry);
	font-size: 80%;
	vertical-align: 0.1em;
	margin-right: .4em;
	transition: color .5s, translate .5s;
}

.entry_list .img_thum {
	position: relative;
	width: 100%;
	overflow: hidden; 
	margin-bottom: 1.5em;
	border-radius: 9% / 14.2%;
}
.entry_list .img_thum::before {
	content: "";
	display: block;
	padding-top: 60%;
}
.entry_list .img_thum img {
	display: block;
	position: absolute;
	object-fit: cover;
	width: 100%;
	max-width: none;
	height: 100%;
	left: 0;
	top: 0;
	transition: all 1.0s ease-out;
}

.entry_list article > a:hover .entry-date::before {
	color: var(--accent-color);
	translate: .2em 0;
}
.entry_list article > a:hover img {
	transition: all 0.4s ease-out;
	transform: scale(1.1);
}
/* blog */
.page-blog .entry_list {
	row-gap: 4em;
}
.page-blog .entry_list article {
	padding: 0 !important;
	border: none !important;
}
/* アーカイブタイトル */
.archive-title {
	display: none;
	text-align: right;
	letter-spacing: .2em;
	line-height: 1.0em;
	margin-bottom: 40px;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.entry_list {
	display: grid;
	grid-template-columns: repeat(2,48%);
	row-gap: 1.5em;
}
.entry_list article:nth-of-type(n+3) {
	border-top: 1px solid var(--color-bdr);
}
.entry_list .img_thum {
	margin-bottom: .8em;
}
/* blog */
.page-blog .entry_list {
	row-gap: 2.5em;
}
/* アーカイブタイトル */
.archive-title {
	font-size: 100%;
	margin-bottom: 4%;
}
}



/* ========================================================
  
  Single

======================================================== */
.free_area > * {
	width: 96%;
	max-width: 1000px;
	margin-inline: auto;
}
.single_page .entry-inf {
	text-align: center;
	margin-bottom: min(8vw,80px);
}
.single_page .entry-date {
	margin-bottom: 1.2em;
}
.single_page .entry-title {
	font: var(--font-min);
	font-size: min(3.2vw,250%);
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.single_page .entry-date {
	font-size: 125%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.single_page .entry-inf {
	margin-bottom: 10%;
}
.single_page .entry-title {
	font-size: 125%;
}
}

/*-----------------------------------------------
 Single - heading
-----------------------------------------------*/
.free_area h3,
.free_area h4,
.free_area h5 {
	max-width: 1100px;
}


/*-----------------------------------------------
 Single - TOC
-----------------------------------------------*/
.single_page #toc_container {
	display: block !important;
	background: transparent !important;
	letter-spacing: .15em;
	width: 90%;
	max-width: 1100px;
	font: var(--font-min);
	font-size: 100%;
	letter-spacing: .12em;
	line-height: 1.2em;
	border-top: var(--border-solid);
	border-bottom: var(--border-solid);
	margin: 7.2% auto;
}
.single_page #toc_container .toc_title {
	position: relative;
	color: var(--accent-color);
	font-style: normal;
	font-size: min(2.4vw,160%);
	letter-spacing: .15em;
	background: url("../../images/topics/mokuzi.svg") no-repeat .5em center;
	background-size: .8em auto;
	padding: 1em 1.8em;
	margin: 0;
}
.single_page #toc_container .toc_title .toc_toggle {
	display: inline-block;
	vertical-align: 0.15em;
	font-size: 60%;
	letter-spacing: .15em;
}
.single_page #toc_container .toc_title .toc_toggle a {
	color: inherit !important;
	text-decoration: none;
	display: inline-block;
	text-align: center;
}
.single_page #toc_container .toc_list {
	margin: 0;
	width: 100%;
	font-size: 94%;
}
.single_page #toc_container .toc_list > li {
	font-size: 100%;
}
.single_page #toc_container .toc_list > li:nth-of-type(odd) {
	background-color: #eeeadd;
}
.single_page #toc_container .toc_list li {
	padding: 0;
	margin: 0;
	border-bottom: none;
}
.single_page #toc_container .toc_list li::before {
	display: none;
}
.single_page #toc_container .toc_list a {
	position: relative;
	display: block;
	color: inherit;
	line-height: 1.5em;
	padding: 1em 1.5em 1em 0;
	text-decoration: none;
	opacity: 1;
}
.single_page #toc_container .toc_list a:hover {
	color: var(--accent-color);
}

.single_page #toc_container .toc_list > li ul {
	margin: .5em 0 0 0;
}
.single_page #toc_container .toc_list > li li {
	font-size: 90% !important;
	padding-top: .4em !important;
	padding-bottom: .4em !important;
}

.single_page #toc_container .toc_list .toc_number {
	display: inline-block;
	color: var(--accent-color);
	font: var(--font-en);
	width: 3em;
	text-align: center;
	font-size: 142%;
	letter-spacing: .12em;
	line-height: 1;
	border-right: solid 1px currentColor;
	margin-right: .6em;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.single_page #toc_container {
	width: 96%;
	margin-top: 10%;
	margin-bottom: 14%;
}
.single_page #toc_container .toc_title {
	font-size: 110%;
	padding-bottom: .8em;
}
.single_page #toc_container .toc_list {
	font-size: 90%;
}
.single_page #toc_container .toc_list a {
	padding-top: .7em;
	padding-bottom: .7em;
}

.single_page #toc_container .toc_list .toc_number {
	width: 2.6em;
	font-size: 130%;
}
}



/*---------------------------------------------------------

---------------------------------------------------------*/

/* PC,Tablet
------------------------------------------*/
@media only screen and (min-width: 768px) {

}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

}


