/*---------------------------- 共通事項----------------------------*/

h1 {
	margin: 0px;
	padding: 0px;
	font-size: 16pt;
	color: #666666;
	#font-weight : bold;
}

.banner1 {
  padding: 1rem 2rem;
  color: #fff;
  background-image: -webkit-gradient(linear, left top, right top, from(#fa709a), to(#fee140));
  background-image: -webkit-linear-gradient(left, #fa709a 0%, #fee140 100%);
  background-image: linear-gradient(to right, #fa709a 0%, #fee140 100%);
}
/*グローバルナビゲーション*/
.nav a {
color:#000;
text-decoration: none;
margin-left:10px;
margin-right:10px;
}
.nav a:hover{

border-bottom: 3px solid blue;
}

/*---------------------------- PC向けのスタイル ----------------------------*/
@media screen and (min-width: 1200px) {

#top_image {
width:1200px;
text-align:center;
margin-bottom:8px;
}
#main_table {
width:1200px;

}

.sp_mode {
    display: none;

}


}/*@media screen and (min-width: 1200px) {*/



/*---------------------------- タブレット向けのスタイル ----------------------------*/
@media screen and (min-width:780px) and (max-width:1199px) {


.sp_mode {
    display: none;

}


#top_image {
width:100%;
text-align:center;
margin-bottom:8px;
}
#main_table {
width:100%;

}
}/*@media screen and (min-width:780px) and (max-width:1099px) {*/

/*---------------------------- スマホ向けのスタイル ----------------------------*/
@media screen and (max-width:779px) {

.pc_mode {
    display: none;
}



#top_image {
width:100%;
text-align:center;
margin-bottom:8px;
}
#main_table {
width:100%;

}


.menu-btn {
    position: absolute;
    top: 55px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    /*ボタンの背景色*/
    /*background-color: #3584bb;*/
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    /*ボタンの線の色*/
    background-color: #000;
    position: absolute;
    transition: all 300ms 0s ease;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check {
    display: none;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
    transition: all 300ms 0s ease;
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
    background-color: #222;
    transition: all 300ms 0s ease;
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: #222;
    transition: all 300ms 0s ease;
}

.menu-content {
    width: 70%;
    height: 30%;
    position: fixed;
    top: 0;
    top: -100%;
    z-index: 80;
    background-color: orange;
    color: #000;
    transition: all 500ms 0s ease;
}

#menu-btn-check:checked ~ .menu-content {
    top: 0;/*メニューを画面内へ*/
}

.menu-content ul {
    padding: 10px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #000;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}



}/*@media screen and (max-width:779px) {*/
