@charset "UTF-8";

/*--------------------------------------------------------------------
=== [共通レイアウト] ====================================
 -------------------------------------------------------------------*/

/*終了modal*/

.overlay {
display: none;
width: 100%;
height: 100%;
background: rgba(255, 206, 233, 0.8);
position: fixed;
z-index: 9999;
}
.btn_area {
width: 50%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
background: #fff;
text-align: center;
z-index: 9999;
    padding: 40px;
    box-shadow: 0px 0px 15px -5px #a1a1a1;
border-radius: 10px;
}
.btn_area .ttl {
font-size: 16px;
    color: #e50c85;
}

.btn_area button {
    display: block;
    margin: 0 auto;
    background: #e50c85;
    color: #fff;
    padding: 10px 15px;
    border: none;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    font-size: 16px;
    border-top-right-radius: 10px;
}
.btn_area button:hover {
background: #ed6ab3;
}
 

 
 body {
	  font-family:'BIZ UDGothic','Noto Sans JP',sans-serif;
    line-height: 1.5;
    font-weight: 500;  
    color: #333;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
    animation: fadeIn 1.5s ease 0s 1 normal;
     background-image: url(../img/bg.jpg);
     background-repeat: repeat-y;
     background-size: 100% auto;
     font-size:16px;
	 line-break: normal;
 }

 

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}


img {
    width: 100%;
    height: auto;
    -webkit-backface-visibility: hidden;	
	vertical-align: bottom;
}

a:hover img {
    opacity: 0.8;
}

.inner {
	max-width: 1280px;
	margin: 0 auto;
}

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

header {
	background-image:url("../img/header_bg.jpg");
	background-size: 1920px 190px;
	background-repeat: no-repeat;
	background-position: center top;
	box-sizing: border-box;
	}

@media (min-width: 1920px){
	header {
	background-size: cover;
	}
	}
/*@media (max-width: 1280px){
	header {
	height: 14.84vw;
	}
	}*/

header .inner {
	display: flex;
    width: 1280px;
    align-items: center;
    height: 190px;
}
	
header h1 {
	max-width: 448px;
	    margin-right: 20px;
}

header h1 img {
      filter: drop-shadow(0px 0px 15px rgba(23,0,99,0.35));
}

header #gnav {
	display: flex;
    flex-wrap: wrap;
	}

header #gnav li {
	max-width: 202px;
    
	}




/*----- コンテンツエリア -----*/

main .mainInner {
	max-width: 1280px;
    display: flex;
    justify-content: space-between;  
	margin: 50px auto;
}

#leftContent {
    max-width: 980px;
	width: 100%;
	margin-bottom: 60px;
}

#rightContent {
    max-width: 240px;  
}

#rightContent .twitter {
    border: 1px solid #eee;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 1px;
    height: 400px;
    overflow: scroll;
}

#rightContent .sideBnr li {
    margin-top: 20px;
}

/*----- フッター -----*/

footer  {
  background-color: rgb(53, 40, 93);
  opacity: 0.8;
  height: 220px;
  text-align: center;
  padding-top: 40px;
  color: #fff;
    font-size:15px;
}


#pageTop {
    width: 108px;
    position: fixed;
    bottom: 165px;
    right: 5%;
    z-index: 1000;
}


/*----- BTM -----*/
#ttlArea {
	background-image:url("../img/btm_pagettl_bg.png");
	background-size: 1920px 249px;
	background-repeat: no-repeat;
	background-position: center top;
	height:249px;
	background-color: #fff;
	text-align: center;
	box-sizing: border-box;
	margin-bottom: 80px;
    position: relative;
	}
@media (min-width: 1920px){
	#ttlArea  {
	background-size: cover;
	}
	}
    
    
    
    