@charset "utf-8";
/*-------------------------------------------------*/
/*(C) A.C.Planet Inc. All rights reserved.*/
/*--------------------------------------------------*/

/*ヘッダー
----------------------------------------*/

#header h1.logo{
	padding: 0;
    background: #fff;
}

/*メインビジュアル
----------------------------------------*/

.mv-movie{
	display: flex;
	align-items: center;
}
.mv-movie-inner{
	width: 70%;
}
.mv-movie-link{
	width: 30%;
	padding: clamp(1.563rem, -0.104rem + 2.69vw, 3.125rem);
}
.mv-movie-link h2{
	text-align: center;
	padding-top: 0;
	margin-top: 0;
	margin-bottom: clamp(0.313rem, -2.688rem + 4.84vw, 3.125rem);
}
.mv-movie-link h2::before{
	display: none;
}
.mv-movie-link-title{
	font-size: clamp(1.75rem, -0.042rem + 2.89vw, 3.43rem);
	font-family: var(--font-en);
}
.mv-movie-link-subtitle{
	display: flex;
	font-size: clamp(0.875rem, -0.058rem + 1.51vw, 1.75rem);
	color: var(--sub-color02);
	background: #fff;
	padding: 10px 0;
	white-space: nowrap;
}
.mv-movie-link-subtitle::before,
.mv-movie-link-subtitle::after{
	content: '';
	display: block;
	width: 100%;
	height: 5px;
	background: var(--sub-color02);
	border-radius: 5px;
}
.mv-movie-link-subtitle::before{
	margin: 3% 3% 3% 0;
}
.mv-movie-link-subtitle::after{
	margin: 3% 0 3% 3%;
}
.mv-movie-link-list{
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 20px;
}
.mv-movie-link-list li{
	width: 45%;
}
.mv-movie-link-list li a{
	display: flex;
	flex-direction:column;
    align-items: center;
    text-align: center;
    color: #333;
    text-decoration: none;
    /*font-size: clamp(0.75rem, -0.05rem + 1.29vw, 1.5rem);*/
	font-size: clamp(0.75rem, calc(100vw / 1920 * 20), 1.5rem);
}
.mv-movie-link-list li a div{
	border-radius: 20px;
    overflow: hidden;
}
.mv-movie-link-list li a div img{
	display: block;
	transition: all .3s ease;
}
.mv-movie-link-list li a p{
    /*display: inline-block;*/
	display:inline;
	padding-top: 10px;
	margin-bottom: 0;
	position: relative;
	margin-top:0;
}
.mv-movie-link-list li a p::before{
	content: '';
	display: block;
	width: 0;
	height: 1px;
	background: #333;
	position: absolute;
	bottom: -9%;
	left: 0;
	transition: all .3s ease;
}
.mv-movie-link-sp{
	display:none;
}
@media (hover: hover) {
	.mv-movie-link-list li a:hover div img{
		transform: scale(1.1);
	}
	.mv-movie-link-list li a:hover p::before{
		width: 100%;
	}
}

@media screen and (max-width: 1400px){
	.mv-movie-link-list{
		gap: 15px 10px;
	}
	.mv-movie-link-subtitle::before,
	.mv-movie-link-subtitle::after{
		height: 3px;
	}
}

/*　スライド　*/

.mv-slide-inner{
	background: var(--bg-grad01);
	position: relative;
}
.swiper-wrapper{
	width: calc(100% - 160px);
    padding: 30px 80px 50px;
	transition-timing-function:ease;
}
.mv-slide-inner:not(.swiper-initialized) .swiper-wrapper,
.swiper-wrapper:has(+.swiper-pagination-lock){
    display: flex;
    justify-content: center;
}
.mv-slide-inner:not(.swiper-initialized) .mv-slide-nav,
.mv-slide-inner:not(.swiper-initialized) .mv-slide-control{
	display:none;
}
.swiper-slide{
	width: 358px;
    height: 250px;
	padding: 0 2px; 
}
.swiper-slide a{
	display: block;
    width: 100%;
    height: 100%;
}
.swiper-slide a img{
	object-fit: cover;
	height:100%;
}
.mv-slide{
	position:relative;
}
.mv-slide-nav{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.swiper-button-prev,
.swiper-button-next{
	text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
	width: 80px;
	height: calc(100% - 80px);
	margin: 30px 0 50px;
	background: var(--sub-color02);
	position: absolute;
	transition: all .3s ease;
}
.swiper-button-prev{
	top: 0;
	left: 0;
}
.swiper-button-next{
	top: 0;
	right: 0;
	
}
.swiper-button-prev::before,
.swiper-button-prev::after,
.swiper-button-next::before,
.swiper-button-next::after{
	content: '';
	display: block;
	width: 50px;
	height: 1px;
	background: #fff;
	position: absolute;
	transition: all .3s ease;
}
.swiper-button-prev::before{
	transform: rotate(-65deg);
	top: 43%;
    left: 15px;
}
.swiper-button-prev::after{
	transform: rotate(65deg);
	top: 61%;
    left: 15px;
}
.swiper-button-next::before{
	transform: rotate(65deg);
	top: 43%;
	right: 15px;
}
.swiper-button-next::after{
	transform: rotate(-65deg);
	top: 61%;
	right: 15px;
}
.mv-slide .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.mv-slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
	margin:0 10px;
}
.mv-slide .swiper-pagination-bullet{
    width: 20px;
    height: 20px;
	background:#ffffff;
	border:2px solid #ffffff;
    opacity: 1;
}
.mv-slide .swiper-pagination-bullet.swiper-pagination-bullet-active{
	background:var(--sub-color03);
}
.mv-slide-control{
	position:absolute;
	right:0;
	display:flex;
	bottom:12px;
    z-index: 10;
	gap:10px;
	margin-right:20px;
}
.swiper-start,
.swiper-pause{
    width: 22px;
    height: 22px;
	background:#ffffff;
	border:2px solid #ffffff;
	border-radius:50%;
	font-size:0;
    position: relative;
}
.swiper-start.is-active,
.swiper-pause.is-active{
	background:var(--sub-color03);
}

.swiper-start::before{
	content:"";
	border-left:8px solid var(--sub-color01);
	border-top:5px solid transparent;
	border-bottom:5px solid transparent;
	position:absolute;
	top:50%;
	left:calc(50% + 1px);
	transform:translate(-50%, -50%);
	display:block;
}
.swiper-pause::before{
	content:"";
	height:10px;
	width:3px;
	background:var(--sub-color01);
	position:absolute;
	top:50%;
	left:calc(50% - 3px);
	transform:translate(-50%, -50%);
	display:block;
}
.swiper-pause::after{
	content:"";
	height:10px;
	width:3px;
	background:var(--sub-color01);
	position:absolute;
	top:50%;
	left:calc(50% + 3px);
	transform:translate(-50%, -50%);
	display:block;
}
@media (hover: hover) {
	.swiper-button-prev:hover,
	.swiper-button-next:hover{
		background: var(--sub-color01);
	}
	.swiper-button-prev:hover::before{
	    left: 10px;
	}
	.swiper-button-prev:hover::after{
	    left: 10px;
	}
	.swiper-button-next:hover::before{
	    right: 10px;
	}
	.swiper-button-next:hover::after{
	    right: 10px;
	}

	.mv-slide .swiper-pagination-bullet:hover,
	.mv-slide .mv-slide-control button:hover{
		background:var(--sub-color03);
	}
}

@media screen and (max-width: 991px) {
	.mv-movie{
		flex-direction:column;
	}
	.mv-movie-inner{
		width:100%;
	}
	.mv-movie-link{
		width:100%;
	}
	.swiper-wrapper {
	    width: calc(100% - 60px);
	    padding: 10px 0 32px;
	}
	.swiper-slide{
		width:57vw;
        height: 40vw;
	}
	.swiper-button-prev, .swiper-button-next{
		height: 40vw;
		width:20px;
		margin: 10px 0 32px;
		background:#44628DA0;
	}
	.swiper-button-prev::before, .swiper-button-prev::after, .swiper-button-next::before, .swiper-button-next::after{
		width:15px;
	}
	.swiper-button-prev::before{
        transform: rotate(-65deg) translate(-50%, -50%);
	    top: calc(50% - 14px);
        left: calc(50% - 5px);
	}
	.swiper-button-prev::after {
	     transform: rotate(65deg) translate(-50%, -50%);
        top: calc(50% + 14px);
        left: calc(50% - 5px);
	}
	.swiper-button-next::before{
	     transform: rotate(65deg) translate(-50%, -50%);
        top: 50%;
        right: calc(50% - 12px);
	}
	.swiper-button-next::after {
	     transform: rotate(-65deg) translate(-50%, -50%);
        top: 50%;
        right: calc(50% - 12px);
	}
	.mv-slide .swiper-pagination-bullet{
	    width: 14px;
	    height: 14px;
	}
	.mv-slide .swiper-horizontal>.swiper-pagination-bullets,
	.mv-slide .swiper-pagination-bullets.swiper-pagination-horizontal,
	.mv-slide .swiper-pagination-custom,
	.mv-slide .swiper-pagination-fraction{
		top: unset;
	    bottom: 4px;
	    text-align: left;
	}
    .mv-slide .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
	.mv-slide .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
		margin: 0 6px;
	}
	.swiper-start, .swiper-pause {
	    width: 16px;
	    height: 16px;
	}
	.swiper-start::before {
	    border-left-width: 6px;
	    border-top-width: 4px;
	    border-bottom-width: 4px;
	}
	.mv-slide-control {
	    bottom: 9px;
    	gap: 10px;
	}
	.swiper-pause::before {
	    height: 8px;
	    left: calc(50% - 2px);
		width:2px;
	}
	.swiper-pause::after {
	    height: 8px;
	    left: calc(50% + 2px);
		width:2px;
	}
	.mv-movie-link-pc{
		display:none;
	}
	.mv-movie-link-sp{
		display:flex;
		background:#000000;
		width:100%;
        margin-bottom: 2px;
	}
	.mv-movie-link-sp a{
		display:flex;
		padding:10px;
		align-items: center;
		width:100%;
		text-decoration:unset;
	}
	.mv-movie-link-sp a::after{
	    content: '';
	    display: block;
	    width: 6px;
	    height: 6px;
	    border-top: 1px solid #ffffff;
	    border-right: 1px solid #ffffff;
	    transform: rotate(45deg);
	    position: absolute;
	    right: 15px;
	    transition: all .3s ease;
	}
	@media (hover:hover){
		.mv-movie-link-sp a:hover::after{
			right:5px;
		}
	}
	.mv-movie-link-sp > a > div > img{
		width:92px;
		height:auto;
	}
	.mv-movie-link-sp > a > p{
		color:#ffffff;
		font-size:1rem;
		border-left:1px solid #ffffff;
		padding-left:10px;
		margin-left:10px;
        margin-top: 0;
	}
}

/*News & Topics?新着情報?
　イベント?トップリンク共通
----------------------------------------*/

.n-topics,
.news,
.event,
.top-link{
	padding: 70px 0;
}
.n-topics h2,
.news h2,
.event h2{
	margin: 0;
    padding-top: 0;
    font-size: 3.125rem;
}
.event h2{
	color: #fff;
}
.n-topics h2::before,
.news h2::before,
.event h2::before{
	display: none;
}
.top-btn{
	text-align: right;
}
.top-btn a{
	display: inline-block;
	padding: 5px 40px 5px 0;
	text-decoration: none;
	position: relative;
	color: #333;
}
.top-btn a::before{
	content: '';
	display: block;
	width: calc(100% - 10px);
	height: 1px;
	background: var(--sub-color02);
	position: absolute;
	bottom: 0;
	left: 0;
	transition: all .3s ease;
}
.top-btn a::after{
	content: '';
	display: block;
	width: 13px;
	height: 1px;
	background: var(--sub-color02);
	transform: rotate(40deg);
	position: absolute;
	bottom: 5px;
	right: 10px;
	transition: all .3s ease;
}

.top-btn-wh a{
	color: #fff;
}
.top-btn-wh a::before,
.top-btn-wh a::after{
	background: #fff;
}


@media (hover: hover) {
	.top-btn a:hover::before{
		width: 100%;
	}
	.top-btn a:hover::after{
		right: 0;
	}
}

/*News & Topics
----------------------------------------*/

.nt-title{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 50px;
}
.nt-list{
	display: flex;
	gap: 35px;
}
.nt-list li{
	width: 24%;
}
.nt-list li a,
.nt-list li .nt-item{
	color: #333;
	text-decoration: none;
}
.nt-list-img{
	height: 240px;
	border-radius: 20px;
	overflow: hidden;
}
.nt-list-img img{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease;
}
.nt-list-text{
	margin: 5px 0 0;
}
.nt-btn-sp,
.news-btn-sp,
.event-btn-sp{
	display: none;
}

@media (hover: hover) {
	.nt-list li a:hover
	.nt-list li .nt-item:hover{
		text-decoration: underline;
	}
	.nt-list li a:hover .nt-list-img img,
	.nt-list li .nt-item:hover .nt-list-img img{
		transform: scale(1.1);
	}
}
@media screen and (max-width: 991px) {
	.n-topics,
	.news,
	.event,
	.top-link {
	    padding: 60px 0;
	}
	.nt-btn-pc,
	.news-btn-pc,
	.event-btn-pc{
		display:none;
	}
	.nt-btn-sp,
	.news-btn-sp,
	.event-btn-sp{
		display:block;
		margin-left:auto;
	}
	.nt-title{
	    justify-content: center;
        margin-bottom: 25px;
	}
	.n-topics h2,
	.news h2,
	.event h2{
		font-size: 2.4rem;
        font-weight: 300;
	}
	.nt-list{
		flex-direction:column;
		gap:20px;
	}
	.nt-list li {
	    width: 100%;
	}
	.nt-list li a,
	.nt-list li .nt-item {
	    display: flex;
	    align-items: center;
	    gap: 10px;
	}
	.nt-list-img{
		width: 40vw;
        height: 36vw;
	}
	.nt-list-text {
	    flex: 1;
	}
	.top-btn.nt-btn-sp {
        margin-top: 20px;
		text-align:center;
	}
}

/*新着情報
----------------------------------------*/

.news{
	background: #f2f2f2;
}
.news-cat-wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 50px;
	margin-bottom: 25px;
}
.news-cat{
	display: flex;
	gap: 15px;
	margin-bottom:0;
}
.news-cat li a{
	display: block;
    padding: 2px 20px 5px;
    font-size: 1.125rem;
    text-decoration: none;
    color: #333;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}
.news-cat li[data-tab="juyo"] a{
	background: #F8D1D7;
}
.news-cat li.cat-on a{
	background: var(--sub-color02);
	box-shadow: none;
	color: #fff;
}
.news-cat li.cat-on[data-tab="juyo"] a{
	background: #ca1b2d;
}
.news-list:not(.is-current){
	display:none;
}
.news-item{
	position: relative;
	z-index: 1;
}
.news-item::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: none;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease;
}
.news-item.news-juyo::after{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #F8D1D7;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease;
	z-index: -1;
}
.news-item a,
.news-item > div{
	display: flex;
	align-items: flex-start;
	gap: 25px;
	color: #333;
	text-decoration: none;
	padding: 20px 45px 20px 20px;
	border-bottom: 1px solid var(--sub-color04);
    border-top: unset;
	position: relative;
}
.news-item:first-child{
	border-top: 1px solid var(--sub-color04);
}
.news-item a::before,
.event-pickup a::before,
.exam-pickup-item a::before{
	content: '';
	display: block;
	width: 20px;
	height: 1px;
	background: var(--sub-color02);
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(3px);
	transition: all .3s ease;
}
.news-item a::after,
.event-pickup a::after,
.exam-pickup-item a::after{
	content: '';
	display: block;
	width: 10px;
	height: 1px;
	background: var(--sub-color02);
	transform: rotate(40deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto 0;
	transition: all .3s ease;
}
.news-item-cat{
	display: flex;
	gap: 3px;
}
.news-item-cat li{
	width: 70px;
	text-align: center;
	font-size: 0.75rem;
    padding: 3px 10px;
    line-height: 1;
	background: #fff;
	border-radius: 20px;
	white-space: nowrap;
	border-color: transparent;
}
.news-item-cat li.juyo{
	width: auto;
	background: #ca1b2d;
	color: #fff;
}

.news-item time{
	font-size: 0.875rem;
	white-space: nowrap;
	line-height: 1.2;
}
.news-item h3{
	font-size: 1rem;
    color: #333;
    margin: 0;
    padding: 0;
}
.news-item h3::before{
	display: none;
}

.news-more{
	margin-top: 25px;
	display: flex;
	justify-content: center;
}
.news-more-btn{
	display: inline-block;
	padding-left: 15px;
	position: relative;
    border: unset;
    color: #333333;
}
.news-more-btn::before{
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-right: 1px solid var(--main-color);
	border-bottom: 1px solid var(--main-color);
	transform: rotate(45deg);
	position: absolute;
	top: 8px;
	left: 0;
	transition: all .3s ease;
}

@media (hover: hover) {
	.news-item:has(> a:hover )::before{
		background: var(--sub-color03);
	}
	.news-item a:hover::before{
	 	right: 15px;
	}
	.news-item a:hover::after{
		right: 15px;
	}
	.news-more-btn:hover::before{
		top: 12px;
	}
	.news-cat li[data-tab="juyo"] a:hover{
		background: #F5ABB7;
	}
}


@media screen and (max-width: 991px) {

	.news h2{
		text-align:center;
		color:var(--sub-color01);
	}
	.news-cat-wrap{
		margin-top: 25px;
		margin-bottom: 0px;
	}
	.news-cat{
		gap: 10px 15px;
		justify-content: center;
		margin-bottom:30px;
	}
	.news-cat li a{
		font-size:1rem;
	}
	.news-item a,
	.news-item > div{
		flex-wrap: wrap;
	    flex-direction: row;
	    align-items: center;
	    gap: 10px;
	    padding: 16px 40px 16px 16px;
	}
	.news-item a::before,
	.event-pickup a::before,
	.exam-pickup-item a::before{
	    width: 13px;
        right: 10px;
	}
	.news-item a::after,
	.event-pickup a::after,
	.exam-pickup-item a::after{
		width:7px;
		bottom:-3px;
        right: 10px;
	}
	.news-item h3{
        line-height: 1.5em;
        font-size: 0.95rem;
	}
	.news-more{
	    justify-content: space-between;
        align-items: baseline;
	}
	.top-btn a{
		font-size:1rem;
	}
	.news-more-btn{
		font-size: 1rem;
        padding-left: 0;
        margin-bottom: 13px;
        margin-left: 6px;
	}
	.news-more-btn::before{
		top: unset;
	    bottom: -6px;
	    left: 50%;
	    transform: translateX(-50%) rotate(45deg);
	}
	@media (hover:hover){
		.news-more-btn:hover::before{
		    bottom: -10px;
			top:unset;
		}
	}

}
/*イベント
----------------------------------------*/

.event{
	background: url("/asset/imgs/kasou/sample-img.jpg") center / cover no-repeat;
	position: relative;
}
.event::before{
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(-60deg , rgba(0,0,0,0.8) , rgba(0,0,0,0.4));
	position: absolute;
	top: 0;
	left: 0;
}
.event:not(:has( .exam-pickup)){
	padding-bottom:100px;
}
.event-title{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}
.event-pickup{
	position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.event-pickup::before{
	content: '';
	display: block;
	width: 0;
	height: 100%;
	background: var(--bg-color01);
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease;
}
.event-pickup a{
	display: flex;
	align-items: center;
	/*background: #fff;*/
	padding: 20px 45px 20px 30px;
	color: #333;
	text-decoration: none;
	/*border-radius: 20px;*/
	position: relative;
}
.event-pickup-sche{
	display: flex;
    justify-content: flex-start;
	margin-right: 15px;
}
.event-pickup-day{
	font-size: 2rem;
    color: var(--sub-color02);
	font-weight: bold;
    display: inline-block;
    padding: 3px 0px 0 0;
	white-space: nowrap;
}
.event-pickup-week{
	display: inline-block;
    font-size: 1.375rem;
    color: #fff;
	font-weight: bold;
    position: relative;
    padding: 5px 12px;
    line-height: 1;
    z-index: 1;
}
.event-pickup-week::before{
	content: '';
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--sub-color02);
    position: absolute;
    top: 1px;
    left: 6px;
    z-index: -1;
}
.event-pickup a p{
	margin-top:0;
}
.event h3{
	font-size: 1.56rem;
	color: #fff;
	padding-top: 0;
}
.event h3::before{
	display: none;
}


.exam-pickup{
	display: flex;
	justify-content: space-between;
    gap: 40px;
}
.exam-pickup-item{
	width: 50%;
	position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.exam-pickup-item::before{
	content: '';
	display: block;
	width: 0;
	height: 100%;
	background: var(--bg-color01);
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease;
}
.exam-pickup-item a{
	display: block;
	/*background: #fff;*/
	height: 100%;
	padding: 20px 45px 20px 30px;
	color: #333;
	text-decoration: none;
	/*border-radius: 20px;*/
	position: relative;
}

.exam-pickup-sche{
	display: flex;
}
.exam-pickup-day,
.exam-pickup-from{
	font-size: 1.25rem;
    color: var(--sub-color02);
	font-weight: bold;
    display: inline-block;
    padding: 3px 0px 0 0;
}
.exam-pickup-from{
	margin: 0 8px;
	padding: 0;
}
.exam-pickup-week{
	display: inline-block;
    font-size: 0.875rem;
    color: #fff;
	font-weight: bold;
    position: relative;
    padding: 5px 10px;
    vertical-align: top;
    line-height: 1;
    z-index: 1;
}
.exam-pickup-week::before{
	content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--sub-color02);
    position: absolute;
    top: 3px;
    left: 7px;
    z-index: -1;
}
.exam-pickup a p{
	margin-bottom: 0;
	display:inline;
}
.exam-btn br.is-sp{
	display:none;
}

@media (hover: hover) {
	.event-pickup:hover::before{
		width: 100%;
	}
	.event-pickup a:hover::before,
	.event-pickup a:hover::after{
		right: 15px;
	}
	.exam-pickup-item:hover::before{
		width: 100%;
	}
	.exam-pickup-item a:hover::before,
	.exam-pickup-item a:hover::after{
		right: 15px;
	}
}

@media screen and (max-width: 1200px){
	.exam-pickup-sche{
		flex-direction: column;
	}
}

@media screen and (max-width: 991px) {

	.event:not(:has( .exam-pickup)){
		padding-bottom:60px;
	}
	.event-title {
	    justify-content: center;
    	margin-bottom: 30px;
	}
	.event-pickup a{
		flex-direction:column;
    	align-items: flex-start;
	}
	.event-pickup-day{
		font-size:1.6rem;
	}
	.event-pickup-week{
	    font-size: 1.12rem;
	    padding: 7px 11px;
	}
	.event-pickup-week::before {
	    width: 28px;
	    height: 28px;
	    top: 2px;
	}
	.event-pickup a p {
	    margin-top: 1px;
	}
	.event-btn-sp{
	    text-align: center;
	    margin-top: 15px;
	}
	.event h3{
		text-align:center;
        margin-top: 50px;
	}
	.exam-pickup{
		flex-direction:column;
	        gap: 20px;
	}
	.exam-pickup-item{
		width:100%;
	}
	.exam-btn br.is-sp{
		display:block;
	}
	.exam-btn{
		text-align:center;
	}
	.exam-btn a{
	    text-align: left;
	}
	.exam-pickup-day, .exam-pickup-from{
		font-size:1.1rem;
	}
	.exam-pickup-week{
		font-size: 0.8rem;
	    padding: 7px 10px;
	}
	.exam-pickup-item a {
	    padding: 20px 40px 20px 20px;
	}
}


/*トップページリンク
----------------------------------------*/

.top-link-list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
}
.top-link-list li{
	width: 22%;
	border-bottom: 1px solid var(--sub-color04);
}
.top-link-list li a{
	display: flex;
	align-items: center;
	color: #333;
	text-decoration: none;
	padding: 10px 20px 10px 0;
	position: relative;
	height:100%;
}
.top-link-list li a::after{
	content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transform: rotate(45deg);
    position: absolute;
	right:5px;
    transition: all .3s ease;
}

@media (hover: hover) {
	.top-link-list li a:hover{
		color:var(--main-color);
	}
	.top-link-list li a:hover::after{
		right:0px;
	}
}

/*トップページ広告リンク
----------------------------------------*/
.top-link:has(.adbn-area){
	background:#f2f2f2;
}
.adbn-area{
}
.ad-banner{
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.ad-banner li{
	width: calc((100% - (24px * 4))/5);;
}
.adbn{
	text-align:right;
}
.adbn a{
	display: inline-block;
    padding-left: 15px;
    margin: 5px 0;
    position: relative;
	color:#333;
	text-decoration:none;
}

.adbn a::before{
	content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 1px solid var(--main-color);
    border-right: 1px solid var(--main-color);
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    left: 0;
    transition: all .3s ease;
}

@media (hover: hover) {
	.adbn a:hover{
		color:var(--main-color);
	}
	.adbn a:hover::before{
		left:5px;
	}
}
@media screen and (max-width: 991px) {
	.top-link{
		padding: 25px 0;
	}
	.top-link-list{
		flex-direction:column;
        gap: 10px 0;
	}
	.top-link-list li {
		width:100%;
	}
	.top-link-list li a{
		padding: 5px 20px 5px 0;
	}

	.ad-banner {
	    gap: 10px;
	}
	.ad-banner li {
	    width: calc((100% - 10px) / 2);
	}
	.adbn {
	    text-align: unset;
	}
	.adbn a::before{
		top:8px;
	}
}

/*緊急情報
--------------*/
.top-notice{
	padding-top:30px;
	padding-bottom:40px;
	background:var(--sub-color02);
	color:#ffffff;
    padding-top: 0;
}

.top-notice a{
	color:#ffffff;
}
.top-notice h2::before{
	display:none;
}
.top-notice h2{
	margin-top:0;
	font-size:1.25rem;
    margin-bottom: 1rem;
	border-bottom:1px solid #ffffff;
}
.top-notice-cat{
	padding: 8px 30px;
	border-radius:30px;
	font-size:1.5625rem;
	line-height:1em;
	background:#ffffff;
	display:inline-block;
}
.top-notice-title{
	display:block;
	padding:1.5rem 0;
    font-weight: 500;
	color:#ffffff;
}
.top-notice p{
	line-height:1.7em;
}
.top-notice-btn{
	margin-top:1rem;
}
.top-notice-btn a {
	display:inline-block;
	padding:11px 60px 11px 28px;
	background:#ffffff;
    color: #333;
    text-decoration: none;
    position: relative;
}
.top-notice-btn a::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--sub-color02);
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(3px);
    transition: all .3s ease;
}
.top-notice-btn a::after {
    content: '';
    display: block;
    width: 10px;
    height: 1px;
    background: var(--sub-color02);
    transform: rotate(40deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto 0;
    transition: all .3s ease;
}
@media (hover: hover) {
    .top-notice-btn a:hover::before {
        right: 15px;
    }
    .top-notice-btn a:hover::after {
        right: 15px;
    }
}
.notice-emergency{
	background:var(--danger-color);
}
.notice-emergency .top-notice-cat{
	background:#f7d877;
	color:var(--danger-color);
}
.notice-emergency .top-notice-btn a{
	color:var(--danger-color);
}
.notice-emergency .top-notice-btn a::before,
.notice-emergency .top-notice-btn a::after{
	background:var(--danger-color);
}

.top-visitor-sp{
	display:none;
}

@media screen and (max-width: 991px) {
	
	.top-visitor-sp{
		display:block;
        font-size: 0.75rem;
        letter-spacing: 0;
        line-height: 1.2em;
	}
	.top-visitor-list{
		display: flex;
	    color: #ffffff;
	    justify-content: space-between;
		background:linear-gradient(90deg, var(--main-color) 0%, var(--main-color) 40%, var(--sub-color01) 40%, var(--sub-color01) 100%);
	}
	.top-visitor-list li{
		display:inline-block;
		padding:10px;
		position:relative;
        width: 100%;
	}
	.top-visitor-list li a{
	    color: #ffffff;
		text-decoration:unset;
		display:block;
		text-align:center;
		position:relative;
	}
	.top-visitor-ic01,
	.top-visitor-ic02{
		background: var(--main-color);
	}
	.top-visitor-ic03,
	.top-visitor-ic04,
	.top-visitor-ic05{
		background: var(--sub-color01);
	}
	.top-visitor-ic01::after,
	.top-visitor-ic03::after,
	.top-visitor-ic04::after{
		height:calc(100% - (10px * 2));
		width:1px;
		content:"";
		background:#fff;
		display:block;
		right:0;
		top:50%;
		transform:translateY(-50%);
        position: absolute;
	}
	.top-visitor-list li a::before{
		content:"";
		display:block;
        width: 23px;
        height: 17px;
        margin: 0 auto 3px auto;
	}
	.top-visitor-ic01 a::before{
		background: url("/asset/imgs/common/ic_spmenu01.png") center / contain no-repeat;
	}
	.top-visitor-ic02 a::before{
		background: url("/asset/imgs/common/ic_spmenu02.png") center / contain no-repeat;
	}
	.top-visitor-ic03 a::before{
		background: url("/asset/imgs/top/ic_spheader_movie.png") center / contain no-repeat;
	}
	.top-visitor-ic04 a::before{
		background: url("/asset/imgs/top/ic_spheader_kifu.png") center / contain no-repeat;
	}
	.top-visitor-ic05 a::before{
		background: url("/asset/imgs/top/ic_spheader_request.png") center / contain no-repeat;
	}
	.top-visitor-ic02 a{
		min-width:3em;
	}
	.top-visitor-ic03 a,
	.top-visitor-ic04 a{
		min-width:5em;
	}
	.top-visitor-ic01 a,
	.top-visitor-ic05 a{
		min-width:4em;
	}
}