@charset "utf-8";
@import url(cmn.css);
@import url(base.css);
@import url(lineanime.css);

#lv_outer .lineanime{
	display: none;
}
#lv {
	height: 45vh;
}
#lv h1{
	line-height: 1.4;
	font-size: 5.0rem;
	margin-top: 30px;
}
#lv p{
	font-size: 2rem;
}
#lv_outer .lineanime{
	margin-top: -80px;
	z-index: 1;
	height: calc(100% + 130px);
}

@media screen and (max-width: 768px){
	#lv h1{
		font-size: 3.5rem;
	}
}
@media screen and (max-width: 480px){
	#lv {
		height: 30vh;
		min-height: 260px;
	}
	#lv h1{
		font-size: 2.5rem;
		margin-top: 0;
	}
}
/*---------------------------------------------*/
#news .entry-header h2{
	color: var(--i_txt_color);
	font-size: calc(var(--font-size-base)*2);
	padding: 0;
	line-height: 1.5;
	margin-bottom: 15px;
	background: none;
}
#news .entry-header p{
	color: #707070;
	font-size: 95%;
}
@media screen and (max-width: 768px){
	#news .entry-header h2{
		font-size: calc(var(--font-size-base)*1.75);
	}
}
@media screen and (max-width: 480px){
	#news .entry-header h2{
		font-size: calc(var(--font-size-base)*1.35);
	}
}
/*-------------------シングルページ--------------------------*/
.entry-header{
	padding-bottom: 20px;
	border-bottom: 1px solid var(--gray);
    margin-bottom: 40px;
}
.entry-header .term{
	padding: 5px 10px;
	background: var(--i_sub_color);
	color:#fff;
	border-radius: 99px;
	margin-right: 15px;
	font-weight: 500;
	font-size: 90%;
}
.entry-body{
    padding-bottom: calc(var(--spacer)*5);
}
.entry-body p{
    margin-bottom:20px;
}
.entry-body strong{
    font-weight: 900;
}
.entry-body p a{
	text-decoration: underline 1px var(--i_sub_color);
	color: var(--i_sub_color);
}
.entry-body p a:hover{
	opacity: 0.7;
}

.pager{
    border-top: 1px solid var(--gray);
    padding-top: 40px;
}
.pager ol{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.pager ol li{
    width: 33.3%;
}
.pager ol li a{
    color: var(--i_txt_color);
    transition: .3s ease-in-out;
}
.pager ol li a:hover{
    color: var(--i_main_color);
}
.pager .next a,
.pager .prev a{
    position: relative;
    line-height: 1;
}
.pager .prev a{
    padding-left: 1.8em;
}
.pager .prev{
    text-align: left;
}
.pager .prev a::before{
	display: block;
	content: "";
	width: 0.3em;
	height: 0.3em;
	position: absolute;
	border-top: 1px solid var(--i_main_color);
	border-left: 1px solid var(--i_main_color);
    transform: rotate(-45deg);
    top: calc(50% - 0.2em);
    left: 0.45em;
    transition: .3s ease-in-out;
    z-index: 1;
}
.pager .prev a::after{
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    border: 1px solid var(--i_main_color);
    position: absolute;
    top:50%;
    left: 0;
    border-radius: 50%;
    transition: .3s ease-in-out;
    z-index: 0;
    transform: translateY(-50%);
}
.pager .prev a:hover::before{
    border-color: #fff;
}
.pager .prev a:hover::after{
    background: var(--i_main_color);
}
.pager .next a{
    padding-right: 1.8em;
}
.pager .next{
    text-align: right;
}
.pager .next a::before{
	display: block;
	content: "";
	width: 0.3em;
	height: 0.3em;
	position: absolute;
	border-top: 1px solid var(--i_main_color);
	border-right: 1px solid var(--i_main_color);
    transform: rotate(45deg);
    top: calc(50% - 0.18em);
    right: 0.45em;
    transition: .3s ease-in-out;
    z-index: 1;
}
.pager .next a::after{
    display: block;
    content: "";
    width: 1em;
    height: 1em;
    border: 1px solid var(--i_main_color);
    position: absolute;
    top:50%;
    right: 0;
    border-radius: 50%;
    transition: .3s ease-in-out;
    z-index: 0;
    transform: translateY(-50%);
}
.pager .next a:hover::before{
    border-color: #fff;
}
.pager .next a:hover::after{
    background: var(--i_main_color);
}
.pager .top{
    text-align: center;
}
@media screen and (max-width: 480px){
	.pager ol li{
		font-size: 1.3rem;
	}
	.pager{
		margin-top: 30px;
	}
}

/*-------------------アーカイブページ--------------------------*/
#archive article{
	padding: 40px 0;
	border-bottom: 1px solid var(--border);
}
#archive article dt{
	color: #707070;
	font-weight: 600;
	font-size: 1.4rem;
	margin-bottom: 10px;
}
#archive article dd:nth-of-type(1){
	font-weight: 600;
	font-size:  2.5rem;
	margin-bottom: 25px;
	line-height: 1.5;
}
#archive article .content{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
	opacity: 0.5;
}

#archive article>a{
	padding-left: 20px;
	border-left: 2px solid #1794DF;
	display: block;
}
#archive article .term{
	padding: 5px 10px;
	background: var(--i_sub_color);
	color:#fff;
	border-radius: 99px;
	margin-right: 15px;
	font-weight: 500;
	font-size: 90%;
}
#archive article　dd.content{
	pointer-events: none;
}


#archive .pager ol{
	justify-content: center;
	gap: 5px 5%;
}
#archive .pager ol li{
	width: auto;
}
#category{
	margin-bottom: 40px;
}

#category ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

#category ul li a{
	color: #fff;
	padding: 10px 20px;
	background: #a8a8a8;
	border-radius: 99px;
}
#category ul li a:hover{
	background: #2B69B5;
}
#category ul li.current-cat a{
	background: var(--i_main_color);
}
@media screen and (max-width: 768px){
	#archive article dd:nth-of-type(1){
		font-size:  2.1rem;
	}
}
@media screen and (max-width: 480px){
	#archive article dt{
		font-size: 1.3rem;
	}
	#archive article dd:nth-of-type(1){
		font-size:  1.8rem;
	}
	#archive article {
		padding: 15px 0;
	}
	#category {
	  margin-bottom: 20px;
	}
	#category ul li a{
		font-size: 1.4rem;
		padding: 7px 15px;
	}
}