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

ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}
.logo_flex img {
    width: 250px;
    height: 73px;
    object-fit: contain;
}

#jampArea ul {
    display: flex;
    list-style: none;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

#jampArea ul li {
    width: 50%;
    height: 50vh;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column wrap;
    position: relative;
    overflow: hidden;
    /* background: #9dc480; */
}

.color01 {
    background: rgba(211, 190, 227, 0.842) !important;
}

.color02 {
    background: rgb(248, 223, 123) !important;
}

.color03 {
    background: rgb(102, 215, 221) !important;
}

.color04 {
    background: rgb(144, 220, 158) !important;
}

#jampArea ul li .mozi {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%)translateX(-50%);
    margin: auto;
    pointer-events: none;
    color: #323232ee;
    z-index: 1;
}

#jampArea ul li .background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s ease-out;
    will-change: transform;
    filter: opacity(40%);
}

#jampArea ul li .background-image:hover {
    transform: scale(1.2);
    filter: opacity(100%);
}

#jampArea ul li h2 {
    font-family: 'Koulen', cursive;
    font-size: 5rem;
    line-height: 2;
    z-index: 5;
}


#jampArea ul li p.more {
    border: solid 1px #323232;
    display: inline-block;
    padding: 5px 10px;
    font-size: 15px;
    font-family: 'Koulen', cursive;
    margin-top: 10px;
    background-color: #323232ee;
    color: #fff;
    border-radius: 0.2cm;
}

#jampArea ul li:nth-child(1) .background-image {
    background: url(../../common/image/web.jpg) no-repeat;
    background-position: bottom;
    background-size: cover;
}

#jampArea ul li:nth-child(2) .background-image {
    background: url(../../common/image/graphic.jpg) no-repeat;
    background-position: bottom;
    background-size: cover;
}

#jampArea ul li:nth-child(3) .background-image {
    background: url(../../common/image/dr_kagosima.jpg) no-repeat;
    background-position: bottom;
    background-size: cover;
}

#jampArea ul li:nth-child(4) .background-image {
    background: url(../../common/image/vr.jpg) no-repeat;
    background-position: bottom;
    background-size: cover;
}

.last {
    padding: 30px;
    background: #ffffff;
    color: #323232ee;
}

.aaa p {
    list-style: none;
    text-align: center;
    font-size: 17px;
}

.title {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

header{
    margin: 0 0 0 15px!important;
}

/* hamburger menu */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584BB;
    filter: opacity(70%);
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;

}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584BB;
    transition: all 0.5s;
    /*アニメーション設定*/
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584BB;
    transition: all 0.5s;
    /*アニメーション設定*/
}

.menu-content ul {
    padding: 70px 10px 0;
    display: block;
}

.menu-content ul li {
    border-bottom: solid 1px #FFFFFF;
    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: #ffffff;
    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 #FFFFFF;
    border-right: solid 2px #FFFFFF;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

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



@media screen and (min-width:699px) and (max-width:660px) {
    .cell {
        width: 45%;
    }
}

@media screen and (max-width:699px) {
    .cell {
        width: 100%;
    }

}






@media screen and (max-width:600px) {
    #jampArea ul {
        display: block;
    }

    #jampArea ul li {
        width: 100%;
        height: 50vh;
    }
}
