@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: normal;
	width: 100%;
	background: #ffffff;
	margin: auto;
}

h1,h2,h3,h4,h5,h6{
	line-height: 100%;
}

ol, ul{
	list-style: none;
	margin: unset;
	padding: unset;
}

picture{
	display :inherit;
}

img{
	display: inherit;
	width: 100%;
}

p{
	width: 100%;
	margin: unset;
}

a{
	text-decoration: none;
	color: #000000;
}

.sp_540{
	display: none;
}

#header{
	position: relative;
}

#header .logo-area{
	position: relative;
	width: 100%;
	min-height: 120px;
	align-content: center;
	background: #ffffff;
	z-index: 9999;
    border-bottom: 5px solid #D6CB7F;
	box-sizing: border-box;
}

#header .logo-area h1{
    max-width: 960px;
	min-height: 115px;
	text-align: center;
    letter-spacing: 4px;
	align-content: center;
	font-size: 3.625rem;
	font-weight: 400;
	margin: auto;
	background-size: 140px 120px;
	background-position: left center;
	background-repeat: no-repeat;
}

#header .logo-area h1 small{
	display: block;
	font-size: 0.8125rem;
    line-height: 100%;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
	font-weight: 400;
	color: #AA8D6A;
}

#header .logo-area h1 span.sem_num{
    display: inline-table;
    max-width: 90px;
    width: 100%;
    min-height: 35px;
    background: #000000;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 2px;
    color: #ffffff;
    line-height: 100%;
    vertical-align: middle;
    margin: auto;
    margin-right: 1rem;
    padding: 7.5px 0;
}

#header .hum {
	display: none;
    position: fixed;
    width: 80px;
    height: 80px;
    background: #E70063;
    border-radius: 0.5rem;
    right: 10px;
    top: 10px;
    cursor: pointer;
    z-index: 10000;
}

#header .hum span {
	position: absolute;
	width: 40px;
	height: 0;
	left: 0;
	right: 0;
	margin: auto;
}

#header .hum span:nth-child(-n+3) {
	height: 4px;
	background: #ffffff;
	transition: .3s;
}

#header .hum span:nth-child(1){
	top: 1rem;
}

#header .hum span:nth-child(2){
	top: 1.75rem;
}

#header .hum span:nth-child(3){
	top: 2.5rem;
}

#header .hum span:nth-child(4){
    display: block;
    position: relative;
    top: 3rem;
}

#header .hum span:nth-child(4)::before{
	content: "MENU";
	position: absolute;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	top: 0;
}

#header .hum.active span:nth-child(1),
#header .hum.active span:nth-child(2),
#header .hum.active span:nth-child(3){
	top: 1.75rem;
}

#header .hum.active span:nth-child(1){
	transform: rotate(45deg);
}

#header .hum.active span:nth-child(2){
	transform: rotate(135deg);
}


#header .hum.active span:nth-child(3){
	transform: rotate(225deg);
}

#header .hum.active span:nth-child(4)::before{
	content: "CLOSE";
}

#container{
	position: relative;
	display: flex;
	margin: auto;
	padding-bottom: 6rem;
    justify-content: center;
	min-height: 92vh;
	background-image: linear-gradient(180deg, rgba(231, 0, 99, 1), rgba(150, 0, 64, 1) 36%, rgba(53, 0, 23, 1) 72%, rgba(0, 0, 0, 1));
}

#container .nav{
    position: sticky;
    max-width: 220px;
    width: 25%;
    top: 15px;
    margin: 15px 30px auto 0;
}

#container .nav ul{
	margin-right: 0;
	margin-left: auto;
	max-width: 220px;
	width: 100%;
	padding-bottom: 30px;
}

#container .nav ul li{
	margin-bottom: 10px;
}

#container .nav ul li a{
	position: relative;
	display: block;
	width: 100%;
	min-height: 55px;
	border-radius: 0.25rem;
	background: #ffffff;
    font-size: 0.9375rem;
	line-height: 100%;
	padding-left: 1.625rem;
	align-content: center;
	transition: .3s;
	z-index: 1;
}
#container .nav ul li a.no-page {
	pointer-events: none;
}
#container .nav ul li a::before{
	content: "";
	position: absolute;
	width: 15px;
	height: 3px;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	background: #FC95C7;
	transition: .3s;
}

#container .nav ul li a.selected::before,
#container .nav ul li a:hover::before{
	background: #E70063;
}

#container .nav ul li a::after{
	content: "";
	position: absolute;
	width: 0;
	height: 100%;
	border-radius: 0.25rem;
	background-image: linear-gradient(90deg, rgba(255, 250, 167, 1), rgba(255, 230, 69, 1) 50%, rgba(255, 182, 68, 1));
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	transition: .3s;
	z-index: -1;
}

#container .nav ul li a.selected::after,
#container .nav ul li a:hover::after{
	width: 100%;
	left: 0;
	right: auto;
}

@media screen and ( max-height:768px ){
    #container .nav ul li a {
        min-height: 2.5rem;
		font-size: 0.875rem;
    }
}

#container .content {
    max-width: 850px;
	width: 75%;
}

#container .content.top .detail_box{
	background: #000000;
	color: #ffffff;
	padding: 1.875rem;
}

#container .content.top .detail_box dl {
    max-width: 850px;
    display: flex;
    flex-wrap: wrap;
    margin: auto;
    align-items: center;
	font-weight: 700;
}

#container .content.top .detail_box dl dt{
	max-width: 140px;
	width: 100%;
	min-height: 35px;
	font-size: 1.25rem;
	text-align: center;
	align-content: center;
    letter-spacing: 2px;
	margin-bottom: 10px;
	margin-right: 1.625rem;
	background: #1058A0;
}

#container .content.top .detail_box dl dt.bg_r{
	font-size: 1.375rem;
	background: #BA1943;
}

#container .content.top .detail_box dl dd{
	width: calc(100% - 166px);
	font-size: 1.375rem;
	margin-bottom: 10px;
    letter-spacing: 2px;
}

#container .content.top .detail_box dl dd > small {
	font-size: 1.125rem;
}

#container .content.top .detail_box dl dd.bg_r{
	font-size: 1.5rem;
}

#container .content.top .detail_box dl dd.bg_r:first-of-type{
	height: 30px;
    margin-top: -70px;
}

#container .content.top .detail_box dl dd.bg_r > small {
	font-size: 1.25rem;
}

#container .content.top .detail_box dl dd.bg_r > strong {
	font-size: 3.25rem;
	letter-spacing: 4px;
	margin-left: 0.5rem;
}


#container .content.top .detail_box dl dd.bg_r > strong small{
	font-size: 1.75rem;
}

#container .content.top .detail_box dl dd.bg_r > strong small span{
	font-size: 1.5625rem;
}


#container .content.top .topics{
	max-width: 850px;
	width: 100%;
	margin: auto;
}

#container .content.top .topics h3{
	min-height: 80px;
	align-content: center;
	padding: 0 30px;
    font-size: 1.625rem;
	color: #ffffff;
	background: #BA1943;
	border-left: 6px solid #C1406F;
	box-sizing: border-box;
}

#container .content.top .topics .toplcs_list{
	min-height: 330px;
	padding: 1.875rem;
	color: #000000;
	background: #ffffff;
}

#container .content.top .topics .toplcs_list ul{
	font-size: 1.125rem;
    max-height: 260px;
    overflow-y: scroll;
}

#container .content.top .topics .toplcs_list ul li{
    display: flex;
    width: calc(100% - 1.75rem);
	min-height: 62.5px;
	padding: 1.25rem;
	line-height: 1.5rem;
	border-bottom: 1px dashed #686868;
}

#container .content.top .topics .toplcs_list ul li span{
    min-width: 160px;
}

#container .content.top .topics .toplcs_list ul li a{
	text-decoration: underline;
    color: #0000ff;
}

#container .content.top .topics .toplcs_list ul li p.limit{
	color: #ff0000;
}

#container .content.sub{
    height: fit-content;
	padding: 0.9325rem 1.25rem 5rem;
	background: #ffffff;
}

#container .content.sub h2{
	min-height: 110px;
	align-content: center;
    padding: 0 1.75rem;
	font-size: 1.75rem;
	font-weight: 700;
	letter-spacing: 4px;
	color: #ffffff;
	background: #BA1943;
    border-left: 6px solid #EA7AA8;
}

#container .content.sub .greet_box{
	position: relative;
	padding: 2.5rem 1.25rem 3.5rem;
	margin-bottom: 2.25rem;
}

#container .content.sub .greet_box::before{
	content: "";
	position: absolute;
	width: calc(100% - 2.5rem);
	height: 0;
	border-bottom: 1px solid #D6CB7F;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

#container .content.sub .greet_box p{
    line-height: 2rem;
    text-indent: 1rem;
    letter-spacing: 0.5px;
    text-align: justify;
    margin-bottom: 1.25rem;
}

span.bold{
	font-weight: 700;
}

#container .content.sub .greet_box p.mar0{
	margin-bottom: 0;
}

#container .content.sub .name_box{
	padding: 0 1.25rem;
	text-align: right;
}

#container .content.sub .name_box p{
	font-size: 1rem;
	line-height: 1.5rem;
}

#container .content.sub .name_box p strong,
#container .content.sub .name_box p small{
	display: block;
}

#container .content.sub .name_box p small{
	font-size: 0.75rem;
}

#footer .copyright{
	padding: 0.75rem;
	background: #ffffff;
	text-align: center;
	font-size: 0.75rem;
}

@media screen and ( max-width:1200px ){
	#header .logo-area,
	#header .logo-area h1 {
		min-height: 100px;
	}
	
	#header .logo-area {
		position: fixed;
		top: 0;
	}
	
	#header .logo-area h1 {
		background-image: none;
		padding-left: unset;
        text-align: left;
    	letter-spacing: 4px;
        font-size: 2.5rem;
        margin-left: 1.5rem;
	}
	
	#header .hum {
		display: block;
	}
	
	#container {
		margin-top: 100px;
		padding-bottom: 0;
	}
	
	#container::before {
        content: "";
        position: fixed;
        width: 100%;
        height: 100%;
		opacity: 0;
		visibility: hidden;
        background: #00000078;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 1;
        transition: .3s;
	}
	
	#container.active::before {
		opacity: 1;
		visibility: visible;
    }
	
    #container .nav {
        position: fixed;
        max-width: none;
        width: 100%;
        height: 100vh;
        top: 60px;
        right: 0;
		left: 0;
        padding: 100px 0 0;
        margin: auto;
        z-index: 1;
		opacity: 0;
		visibility: hidden;
        transform: scale(0.8);
        transition: .3s;
    }
	
	#container .nav ul {
		position: absolute;
		display: flex;
		flex-wrap: wrap;
		max-width: 720px;
		justify-content: space-between;
		width: calc(100% - 2rem);
		height: min-content;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}
	
	#container .nav ul li{
		width: calc(33% - 1rem);
		margin-bottom: 1rem;
	}
	
	#container .nav.active {
		opacity: 1;
		visibility: visible;
        transform: scale(1);
	}
	
	#container .content{
		max-width: none;
		width: 100%;
		margin: unset;
	}
	
	#container .content.top .detail_box{
		margin-bottom: 2.5rem;
	}
	
	#container .content.top .topics {
		margin-bottom: 6rem;
	}

	#container .content.sub{
		padding: 0 0 5rem;
	}
}

@media screen and ( max-width:960px ){
	#container .content.top .topics{	
		width: calc(100% - 4rem);
	}
}

@media screen and ( max-width:768px ){
    #header .logo-area h1 {
		font-size: 1.25rem;
        line-height: 1.5rem;
	}

    #header .logo-area h1 small{
		font-size: 0.75rem;
	}
	
	
	#container .nav ul {
		max-width: 480px;
	}
	
	#container .nav ul li{
		width: calc(50% - 1rem);
		margin-bottom: 1rem;
	}
	
	#container .content.top .detail_box {
    	padding: 2rem 1.5rem;
	}
	
	#container .content.top .detail_box dl {
		flex-direction: column;
        max-width: 680px;
		margin: auto;
		align-items: baseline;
	}
	
	
	#container .content.top .detail_box dl dt{
		margin-right: unset;
		font-size: 1.125rem;
        margin-bottom: 0;
	}
	
	#container .content.top .detail_box dl dd{
		font-size: 1.25rem;
		width: 100%;
		margin-bottom: 1.25rem;
	}

	#container .content.top .detail_box dl dd > small {
		font-size: 1rem;
	}
	
	#container .content.top .detail_box dl dt.bg_r {
    	font-size: 1.25rem;
	}
		
	#container .content.top .detail_box dl dd.bg_r:first-of-type {
		height: auto;
		margin-top: unset;
	}
	
	#container .content.top .detail_box dl dd.bg_r > strong {
	    font-size: 2.5rem;
	    line-height: 100%;
	}
	
	#container .content.top .detail_box dl dd.bg_r > small {
		font-size: 1.125rem;
	}
	
	#container .content.top .detail_box dl dd.bg_r > strong small {
		font-size: 1.375rem;
	}
	
	#container .content.top .detail_box dl dd.bg_r > strong small span{
		font-size: 1.25rem;
	}
	
	#container .content.top .topics h3{
		font-size: 1.375rem;
	}
	
	#container .content.top .topics .toplcs_list {
    	min-height: 400px;
    	padding: 1.25rem;
        padding-top: 1rem;
	}
	
	#container .content.top .topics .toplcs_list ul {
        max-height: 360px;
	}
	
	#container .content.top .topics .toplcs_list ul li {
    	flex-direction: column;
	}
	
	#container .content.sub h2{
		text-align: center;
	}
}

@media screen and ( max-width:640px ){	
    #header .logo-area h1 small{
		display: none;
	}
	
	#container .content.sub .col2.greeting {
		padding-bottom: 2.5rem;
		margin: 0 auto 2.5rem;
	}
	
	#footer .foot_col2 {
	    flex-direction: column;
    	padding: 2.5rem 1rem;
	}
}

@media screen and ( max-width:540px ){
	.sp_540{
		display: inline;
	}

	#container .nav ul li{
		width: calc(50% - 0.5rem);
	}
	
	#container .content.top .topics .toplcs_list ul li {
		display: flex;
		width: calc(100% - 1rem);
		min-height: 65px;
		padding: 1rem;
	}
		
	#container .content.top .detail_box dl dd{
    	letter-spacing: 0px;
	}
}