@charset "UTF-8";


/***************************************************

	field-of-study

***************************************************/

.p_anchor {
    width: auto;
}

section .cont_wrapp{
	width: auto;
}

.list_ul{

}

.list_ul li{
	width: 100%;
	margin-bottom: 20px;
}

.list_ul li a{
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    border: 2px solid var(--color1);
    border-radius: 12px;
    overflow: hidden;
    line-height: 1;
    color: var(--text);
    text-decoration: none;
    position: relative;
    width: 100%;
}

.list_ul li a:hover{
	opacity: 0.8;
}

.list_ul li a .image_box{
	width: 400px;
	height: 205px;
	position: relative;
	overflow: hidden;
}

.list_ul li a .image_box img{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(1.0);
	transition: all 0.2s linear;
	object-fit: cover;
}

.list_ul li a:hover .image_box img{
	transform: translate(-50%, -50%) scale(1.1);
}

.list_ul li a .text_box{
	width: calc(100% - 400px);
	padding: 0 20px;
	box-sizing: border-box;
}

.list_ul li a .text_box .name{
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.4;
	margin-bottom: 12px;
}

.list_ul li a .text_box .date{
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
}

.list_ul li a .text_box .entry_content{
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.4;
}

.list_ul li a .text_box .more{
    position: absolute;
    bottom: 12px;
    right: 20px;
}

.list_ul li a .text_box .more strong{
	font-size: 18px;
	font-weight: 300;
	letter-spacing: 0.04em;
	padding-right: 34px;
	position: relative;
}

.list_ul li a .text_box .more strong::after{
	content: '';
    display: inline-block;
    width: 30px;
    height: 6px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20viewBox%3D%220%200%2031%207%22%3E%20%3Cdefs%3E%20%3Cstyle%3E%20.cls-1%20%7B%20fill%3A%20none%3B%20stroke%3A%20%23181818%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%201px%3B%20%7D%20%3C%2Fstyle%3E%20%3C%2Fdefs%3E%20%3Cg%3E%20%3Cg%20id%3D%22_%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%20data-name%3D%22%E3%83%AC%E3%82%A4%E3%83%A4%E3%83%BC_1%22%3E%20%3Cpolyline%20class%3D%22cls-1%22%20points%3D%22.5%206.5%2030.5%206.5%2025%20.5%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E');
    position: absolute;
    bottom: 3px;
    right: 0;
    transition: all 0.2s linear;
}

.list_ul li a:hover .text_box .more strong::after{
    right: -10px;
}

.tax_archive{
	margin-top: 30px;
	text-align: right;
}

.tax_archive a{
	display: inline-block;
	height: 38px;
	line-height: 38px;
	border-radius: 38px;
	border: 1px solid var(--color1);
	font-size: 14px;
	font-weight: 500;
	color: var(--text);
	letter-spacing: 0.04em;
	text-decoration: none;
	padding: 0 36px 0 16px;
	position: relative;
}

.tax_archive a strong{
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.06em;
	color: var(--color1);
	margin-right: 0.2em;
	transition: all 0.2s linear;
}

.tax_archive a:hover{
	background: var(--color1);
	color: #fff;
}

.tax_archive a:hover strong{
	color: #fff;
}

.tax_archive a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px var(--color1);
    border-right: solid 1px var(--color1);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 16px;
    margin: auto;
    transform: rotate(45deg);
    transition: all 0.2s linear;
    z-index: 2;
}

.tax_archive a:hover::before {
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
}



/********************************************************************************
	リッキド用 CSS
********************************************************************************/

@media(max-width:1280px){

.list_ul li{
	margin-bottom: 1.5625vw;
}

.list_ul li a{
    border: 0.15625vw solid var(--color1);
    border-radius: 0.9375vw;
}

.list_ul li a .image_box{
	width: 31.25vw;
	height: 16.015625vw;
}

.list_ul li a .text_box{
	width: calc(100% - 31.25vw);
	padding: 0 1.5625vw;
}

.list_ul li a .text_box .name{
	font-size: 1.5625vw;
	margin-bottom: 0.9375vw;
}

.list_ul li a .text_box .date{
	font-size: 1.09375vw;
	margin-bottom: 0.625vw;
}

.list_ul li a .text_box .entry_content{
	font-size: 1.25vw;
}

.list_ul li a .text_box .more{
    bottom: 0.9375vw;
    right: 1.5625vw;
}

.list_ul li a .text_box .more strong{
	font-size: 1.40625vw;
	padding-right: 2.65625vw;
}

.list_ul li a .text_box .more strong::after{
    width: 2.34375vw;
    height: 0.46875vw;
    bottom: 0.234375vw;
}

.list_ul li a:hover .text_box .more strong::after{
    right: -0.78125vw;
}

.tax_archive{
	margin-top: 2.34375vw;
}

.tax_archive a{
	height: 2.96875vw;
	line-height: 2.96875vw;
	border-radius: 2.96875vw;
	font-size: 1.09375vw;
	padding: 0 2.8125vw 0 1.25vw;
}

.tax_archive a strong{
	font-size: 1.25vw;
}

.tax_archive a::before {
    width: 0.46875vw;
    height: 0.46875vw;
    right: 1.25vw;

}










}




/********************************************************************************
	スマートフォン用 CSS
********************************************************************************/

@media(max-width:430px){

.list_ul{
	margin: 0 5.333333vw;
}

.list_ul li{
	margin-bottom: 5.333333vw;
}

.list_ul li a{
	display: block;
    border: 2px solid var(--color1);
    border-radius: 10px;
    padding-bottom: 24px;
}

.list_ul li a:hover{
	opacity: 1;
}

.list_ul li a .image_box{
	width: auto;
	height: auto;
}

.list_ul li a .image_box img{
	position: static;
	transform: translate(0, 0) scale(1.0);
}

.list_ul li a:hover .image_box img{
	transform: translate(0, 0) scale(1.0);
}

.list_ul li a .text_box{
	width: auto;
	padding: 3.2vw;
}

.list_ul li a .text_box .name{
	font-size: 4.8vw;
	margin-bottom: 2.666667vw;
}

.list_ul li a .text_box .date{
	font-size: 3.2vw;
	margin-bottom: 1.6vw;
}

.list_ul li a .text_box .entry_content{
	font-size: 3.733333vw;
}

.list_ul li a .text_box .more{
    position: absolute;
    bottom: 3.2vw;
    right: 5.333333vw;
}

.list_ul li a .text_box .more strong{
	font-size: 4.266667vw;
	padding-right: 9.066667vw;
}

.list_ul li a .text_box .more strong::after{
    width: 8vw;
    height: 1.6vw;
    bottom: 0.8vw;
}

.list_ul li a:hover .text_box .more strong::after{
    right: 0;
}

.tax_archive{
	margin-top: 5.333333vw;
	text-align: center;
}

.tax_archive a{
	height: 8.533333vw;
	line-height: 1.4;
	border-radius: 8.533333vw;
	font-size: 2.933333vw;
	padding: 1.6vw 9.6vw 1.6vw 4.266667vw;
}

.tax_archive a strong{
	display: block;
	font-size: 3.466667vw;
}

.tax_archive a:hover{
	background: #fff;
	color: var(--text);
}

.tax_archive a:hover strong{
	color: var(--color1);
}

.tax_archive a::before {
    width: 1.6vw;
    height: 1.6vw;
    right: 3.2vw;
}

.tax_archive a:hover::before {
    border-top: solid 1px var(--color1);
    border-right: solid 1px var(--color1);
}










}


