@charset "UTF-8";
/* CSS Document */
html,body,a,p,ul,li,h1,h2,h3,h4,h5,h6,figure,dl,dt,dd{margin:0;padding:0;}
*{
    box-sizing: border-box;
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}
body{
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #fff;
	color: #000;
    font-size: clamp(12px, 1.25vw, 16px);
    line-height: 1.8em;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
	letter-spacing: 0.1em;
}
#wrap, section {
    width: 100%;
    padding: 0;
    margin: 0;
    z-index: 1;
}

a{
    text-decoration: none;
}
a:hover {
filter: alpha(opacity=70);
opacity: 0.7;
transition:  0.5s;
}

li{
    list-style-type: none;
}
.pc{
        display: block;
    }
.sp{
    display: none;
}

@media screen and (max-width: 768px){
	body{
	letter-spacing: 0em;
}

    .pc{
        display: none;
    }
    
    .sp{
        display: block;
    }
}
header h1 figure {
    	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}
/*************************
*ヘッダー
*************************/
header {
	width: 100%;
	padding: 1em 0;
	text-align: center;
}
header h1 {
	width: 100%;
	max-width: 1280px;
	margin: auto;
}
header h1 figure {
	background: url("../img/header-h1.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: 42.1875%;
}
header h2 {
	font-weight: 700;
	font-size: clamp(18px, 2.8125vw, 36px);
	line-height: 2em;
}

@media screen and (max-width: 768px){
	header h1 figure {
	background: url("../img/header-h1-sp.png");
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-top: 70.3125%;
}
}

/*************************
*コンテンツ
*************************/
.cntntWrap-1 {
	background: #c00;
	padding: 1em 0;
}
.cntntArea-1 {
	width: 94%;
	max-width: 1100px;
	margin: 1.5em auto;
	border: 2px solid #fff;
	padding: 1.5em;
	text-align: center;
	font-size: clamp(14px, 1.875vw, 24px);
	line-height: 2em;
	color: #fff;
}
.cntntArea-1 h2 {
	width: 100%;
	background: #000;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: clamp(16px, 2.8125vw, 36px);
	line-height: 2em;
	border-radius: 50px;
}
.cntntArea-1 h2 big {
		font-weight: 900;
	font-size: clamp(18px, 3.75vw, 48px);
}
.cntntArea-1 p {
	margin: 1.5em 0;
}
.cntntArea-1 h3 {
	width: 70%;
	max-width: 360px;
	margin: auto;
	border: 4px solid #fff;
	text-align: center;
	font-size: clamp(16px, 2.34375vw, 30px);
	line-height: 1.5em;
}
.cntntArea-1 .renewalDate {
	font-weight: 700;
	font-size: clamp(16px, 2.8125vw, 36px);
	line-height: 2em;
	color: #ffcc33;
}
.cntntArea-1 .note-1 {
	font-size: clamp(11px, 1.09375vw, 14px);
	line-height: 1.5em;
	font-weight: 400;
}
ul.liveScheduleWrap {
	width: 96%;
	font-size: 0;
	margin: 2% auto;
	border-bottom: 1px solid #fff;
}
ul.liveScheduleWrap li {
	display: inline-block;
	vertical-align: top;
	width: 49.5%;
	font-weight: 500;
	font-size: clamp(14px, 1.5625vw, 20px);
	line-height: 2em;
	text-align: left;
	letter-spacing: 0;
	padding: 0 0.5em;
}
.endWrap {
	text-align: center;
	font-weight: 700;
	font-size: clamp(24px, 3.75vw, 48px);
	line-height: 2em;
	padding-top: 0.5em;
}
@media screen and (max-width: 768px){
.cntntArea-1 h2 {
	width: 100%;
	background: #000;
	color: #fff;
	display: inherit;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	font-weight: 700;
	font-size: clamp(16px, 2.8125vw, 36px);
	line-height: 1.25em;
	border-radius: 50px;
	padding:  0.5em;
}
	
	
	.cntntWrap-1 {
	padding: 0.5em 0;
}
	.cntntArea-1 {
		margin: 1em auto;
		padding: 0.75em;
}
.cntntArea-1 h2 span, .cntntArea-1 p span {
	display: inline-block;
}
.cntntArea-1 h3 {
	border: 2px solid #fff;
}
ul.liveScheduleWrap li {
	display: inherit;
	vertical-align: top;
	width: 100%;
}
}

/*************************
*フッター
*************************/
footer {
text-align: center;
    padding: 3em 0;
    width: 100%;
    font-size: clamp(11px, 1.09375vw, 14px);
}


/*************************
*ローディング
*************************/
#loading {
  /* 画面一杯にローディング画面を広げる */
  height: 100%;
  width: 100%;
      background-color: #c00;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  /* flexboxを使ってローディングアイコンを画面の中央に寄せる */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}




