@charset "utf-8";
/* ------------------------------
 講習会カレンダー　一覧
------------------------------ */
.seminarList ul li {
    border: 1px solid #e6ddd1;
}
.seminarList ul li:not(:last-child) {
    margin-bottom: 30px;
}
.seminarList ul li a {
    position: relative;
	display: block;
	font-size: 1.8rem;
	color: #401922;
    text-decoration: none;
	background: no-repeat left 30px center;
}
/********** ▼▼▼ 2023/03/22 講習会一覧の矢印消す ▼▼▼ **********/
/* 
.seminarList ul li a::before,
.seminarList ul li a::after {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    margin: auto;
}
.seminarList ul li a::before {
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    background-color: #ede7de ;
    background-image: radial-gradient(#FFF 20%, rgba(0,0,0,0) 20%), radial-gradient(#fff 20%, rgba(0,0,0,0) 20%);
    background-size: 8px 8px;
    background-position: 0 0, 4px 4px;
}
.seminarList ul li a::after {
    right: 50px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #a64c5d;
    border-right: 2px solid #a64c5d;
    transform: rotate(45deg);
} 
*/
/********** ▲▲▲ 2023/03/22 講習会一覧の矢印消す ▲▲▲ **********/
/*美容師*/
.seminarList ul li.salon a {
	background-image: url('../img/icon_salon.svg');
}
/*スパ二スト*/
.seminarList ul li.spa a {
	background-image: url('../img/icon_spa.svg');
}
/*エステティシャン*/
.seminarList ul li.est a {
	background-image: url('../img/icon_est.svg');
}
/*ネイリスト*/
.seminarList ul li.nail a {
	background-image: url('../img/icon_nail.svg');
}
/*カラーリスト*/
.seminarList ul li.color a {
	background-image: url('../img/icon_color.svg');
}
/*アイリスト*/
.seminarList ul li.eye a {
	background-image: url('../img/icon_eye.svg');
}
/*パーマ*/
.seminarList ul li.perm a {
	background-image: url('../img/icon_perm.svg');
}
/*その他*/
.seminarList ul li.others a {
	background-image: url('../img/icon_others.svg');
}
.seminarList ul li a .title {
	font-weight: 500;
	transition: .5s;
}
.seminarList ul li a:hover .title,
.seminarList ul li a:focus .title {
	color: #a64c5d;
	text-decoration: underline;
}
.seminarList ul li a div > span {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-weight: 400;
}
.seminarList ul li a div > span::before {
	display: block;
	width: 55px;
	height: 20px;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
	line-height: 20px;
	letter-spacing: 0.05em;
	color: #fff;
	border-radius: 1px;
	margin-right: 5px;
}
.seminarList ul li a div > span.area::before {
	content: "場所";
	background-color: #cc6670;
}
.seminarList ul li a div > span.day::before  {
	content: "開催日";
	background-color: #63545c;
}
/* 
/* ------------------------------
 講習会カレンダー　一覧（PC）
------------------------------ */
@media print,screen and (min-width:768px) {
	.seminarList ul li a {
		padding: 30px 108px 30px 115px;
	}
	.seminarList ul li a div:not(.title) {
		display: flex;
		align-items: center;
		justify-content: flex-start;
		gap: 15px;
	}
}
/* ------------------------------
 講習会カレンダー　一覧（SP）
------------------------------ */
@media screen and (max-width:767px) {

	.seminarList ul li a {
		padding: 20px 20px 20px 80px;
        background-position: left 10px center;
	}
	/********** ▼▼▼ 2023/03/22 講習会一覧の矢印消す ▼▼▼ **********/
    /* 
	.seminarList ul li a::before {
        top: auto;
        right: 10px;
        bottom: 25px;
    }
    .seminarList ul li a::after {
        right: 30px;
        top: auto;
        bottom: 45px;
    }
	*/
	/********** ▲▲▲ 2023/03/22 講習会一覧の矢印消す ▲▲▲ **********/
    .seminarList ul li a .title {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        height: auto;
        white-space: normal;
        text-overflow: ellipsis;
    }
}
/* ------------------------------
 講習会カレンダー　詳細
------------------------------ */
/* タイトル */
.seminarTitle {
    font-size: 3.1rem;
    font-weight: 700;
    letter-spacing: 0.075em;
    line-height: 1.4;
    padding-left: 100px;
    margin-bottom: 50px;
    background: no-repeat left center / 70px;
    min-height: 70px;
}
/*美容師*/
.seminarTitle.salon {
    background-image: url('../img/icon_salon.svg');
}
/*スパ二スト*/
.seminarTitle.spa {
	background-image: url('../img/icon_spa.svg');
}
/*エステティシャン*/
.seminarTitle.est {
	background-image: url('../img/icon_est.svg');
}
/*ネイリスト*/
.seminarTitle.nail {
	background-image: url('../img/icon_nail.svg');
}
/*カラーリスト*/
.seminarTitle.color {
	background-image: url('../img/icon_color.svg');
}
/*アイリスト*/
.seminarTitle.eye {
	background-image: url('../img/icon_eye.svg');
}
/*パーマ*/
.seminarTitle.perm {
	background-image: url('../img/icon_perm.svg');
}
/*その他*/
.seminarTitle.others {
	background-image: url('../img/icon_others.svg');
}
/*状態*/
.seminarTitle .tag {
    display: flex;
    align-self: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
	/********** ▼▼▼ 2023/01/09 修正 ▼▼▼ **********/
	margin-bottom: 0;
	/********** ▲▲▲ 2023/01/09 修正 ▲▲▲ **********/
}
.seminarTitle .tag span {
    width: 94px;
    height: 23px; 
    font-size: 1.3rem;
    text-align: center;
    letter-spacing: 0.2em;
    line-height: 23px;
    color: #fff;
    background-color: #cc6670;
}
.seminarTitle .tag.off span {
    color: #401922;
    background-color: #ece8e9;
}

/*ページネーション*/
.pageNavi ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.pageNavi li {
    width: 28px;
    height: 28px;
    background-color: #f1ece4;
    border-radius: 100%;
    font-size: 1.5rem;
    font-family: 'El Messiri', sans-serif;
    font-weight: 600;
    text-align: center;
    overflow: hidden;
}
.pageNavi li a {
    position: relative;
    display: block;
    width: 28px;
    height: 28px;
    text-align: center;
    text-decoration: none;
    color: #401922;
    line-height: 30px;
}
.pageNavi li.on a,
.pageNavi li a:hover,
.pageNavi li a:focus {
    color: #fff;
    background: #a64c5d;
}
/*前へ後ろへ*/
.pageNavi li.prev a::before,
.pageNavi li.prev a::after,
.pageNavi li.next a::before,
.pageNavi li.next a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    margin: auto;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.pageNavi li.prev a:hover::before,
.pageNavi li.prev a:focus::before,
.pageNavi li.next a:hover::before,
.pageNavi li.next a:focus::before {
    opacity: 0;
}
.pageNavi li.prev a:hover::after,
.pageNavi li.prev a:focus::after,
.pageNavi li.next a:hover::after,
.pageNavi li.next a:focus::after  {
    opacity: 1;
}  
/*前へ*/
.pageNavi li.prev a::before,
.pageNavi li.prev a::after {
    left: 3px;
    right: 0;
}
.pageNavi li.prev a::before {
    border-left: 1px solid #401922;
    border-bottom: 1px solid #401922;
    opacity: 1;
}
.pageNavi li.prev a::after {
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    opacity: 0;
}
/*後へ*/
.pageNavi li.next a::before,
.pageNavi li.next a::after {
    left: 0;
    right: 3px;
}
.pageNavi li.next a::before {
    border-top: 1px solid #401922;
    border-right: 1px solid #401922;
    opacity: 1;
}
.pageNavi li.next a::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    opacity: 0;
}
@media print,screen and (min-width:768px) {
    /*map*/
    .gmap {
        padding-bottom: 39.795%;
    }
    /*ページネーション*/
    .pageNavi {
        margin-top: 80px;
    }
}
@media screen and (max-width:767px) {
    .seminarTitle {
        font-size: 2.8rem;
        background-size: 60px;
        padding-left: 80px;
        margin-bottom: 30px;
        min-height: 60px;
    }
    /*ページネーション*/
    .pageNavi {
        margin-top: 40px;
    }
}