@charset "utf-8";
/* CSS Document */
body {
    background-color: #231815;
    font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans', sans-serif;
}
img {
    width: 100%;
}
a {
    text-decoration: none;
}
/*header領域*/
/*ドロアーメニュー領域*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    right: 32px;
    top: 32px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
}
.hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #fff;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    transition: 0.5s all;
}
.hamburger:hover{
    opacity:0.5;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}
/* ナビopen領域 */
.hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
    left: 60%;
    opacity: 0;
    -webkit-animation: active-btn17-bar02 .8s forwards;
    animation: active-hamburger-bar02 .8s forwards;
}
@-webkit-keyframes active-hamburger-bar02 {
    100% {
        height: 0;
    }
}
@keyframes active-hamburger-bar02 {
    100% {
        height: 0;
    }
}
.hamburger.active span:nth-child(3) {
    top: 16px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.hamburger::after {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    content: '';
    width: 80px;
    height: 80px;
    margin: -45px 0 0 -43px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0);
    transition: all .75s;
}
.hamburger.active::after {
    border: 2px solid #fff;
}
nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #000;
    background: #231815;
    opacity: 0.9;
    text-align: center;
    transform: translateX(250%);
    transition: all 0.6s;
    width: 40%;
    height: 100%;
}
nav.globalMenuSp ul {
    background:#231815;
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: solid 1px #fff;
}
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
}
nav.globalMenuSp ul li a:hover {
    color:#1293c3;
}
nav.globalMenuSp ul li:hover {
    background:#000;
}
nav.globalMenuSp ul li a {
    display: block;
    color: #fff;
    padding: 1.5em 0;
    text-decoration: none;
}
nav.globalMenuSp.active {
    transform: translateX(0%);
}
/*ドロアーメニュー領域 ここまで*/
.logo {
    width: 50%;
    padding: 20px 0 20px 20px;
}
.logo a:hover{
    opacity: 0.5;
}
.logo img {
    width: 40px;
    height: auto;
    margin-left: 10px;
}
.logo a {
    display: flex;
    flex-direction: column;
    width: 80px;
}
.logo p {
    font-size: 12px;
    font-family:'ＭＳ 明朝', 'MS Mincho', sans-serif;
    color: #fff;
    display: inline-block;
}
.top_img {
    text-align: center;
}
.top_img {
    position: relative;
}
.top_img h1 {
    width: 80%;
    font-size: 5vw;
    color: #fff;
    font-family: 'Cambria', sans-serif;
    font-weight: normal;
    text-shadow: 1px 1px 0 #1293c3, -1px 1px 0 #1293c3, 1px -1px 0 #1293c3, -1px -1px 0 #1293c3, 0 0 10px #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
/*main_container領域*/
@media screen and (min-width:640px){
    .main_container{
        display: flex;
        justify-content:space-between;
    }
}
/*main領域*/
main {
    margin: 60px 50px;
}
main article {
    text-align: right;
}
main article h2 {
    margin: 50px 0 20px;
    text-align: center;
    color: #fff;
    font-size: 28px;
    text-shadow: 1px 1px 0 #1293c3, -1px 1px 0 #1293c3, 1px -1px 0 #1293c3, -1px -1px 0 #1293c3;
}
main article ul {
    margin: 20px 0;
    background-color: #fff;
    list-style: none;
    display: flex;
}
main article ul:hover{
    opacity: 0.5;
}
main article img:hover{
    opacity: 0.5;
}
main article a {
    color:#000;
}
main article li:first-child {
    margin: 0 4%;
}
main article li {
    padding: 20px 0;
}
main article li:last-child{
       margin-left: auto;
}
main article  li img {
    margin:0 10px;
    width: 16px;
    height: 16px;
}
main article img {
    width: 205px;
    height: auto;
    margin-left: auto;
}
main article p{
    text-align:left;
    color: #fff;
}
/*main領域pc*/
@media screen and (min-width:640px){
    main{
        width:70%;
    }  
    main article h2 {
        font-size: 32px;
    }
}
/*aside領域*/
aside{
    display: none;
}
/*aside領域pc*/
@media screen and (min-width:640px){
   aside{
    display:block;
    opacity: 0.9;
    width:30%;
    height:960px;
    margin:162px 1% 0 0;
    overflow:scroll;
    }
}
/*footer領域*/
footer {
    text-align: center;
}
footer .sns {
    display: flex;
    justify-content: space-around;
}
footer .sns img {
    height: 50px;
    width: auto;
}
footer .sns img:hover {
  opacity: 0.5;
}
footer p {
    color: #fff;
    font-size: 12px;
    margin: 60px 0 10px;
}