/* ハンバーガー */
.hamburger {
    position: absolute;
    right: 8%;
    top: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
}

.hamburger__line {
    position: absolute;
    width: 40px;
    height: 3px;
    right: 0;
    background-color: #333333;
    transition: all 0.5s;
}

.hamburger__line--1 {
    top: 1px;
}

.hamburger__line--2 {
    top: 18px;
}

.hamburger__line--3 {
    top: 36px;
}

.open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 11px;
}

.open .hamburger__line--2 {
    opacity: 0;
}

.open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 11px;
}

.sp-nav {
    position: fixed;
    right: -100%;
    top: 0;
    width: 70%;
    height: 100vh;
    background-color: #2f68a1;
    transition: all 0.5s;
    z-index: 200;
    overflow-y: auto;
}

.open .sp-nav {
    right: 0;
}


.black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
    cursor: pointer;
    z-index: 100;
}

.open .black-bg {
    opacity: 0.3;
    visibility: visible;
}
.triploglist_hamburger {
    width: 60%;
}


.select_menu {
    font-size: clamp(10px, 3.5vw, 20px);
    width: 100%;
    position: absolute;
    top: 2%;
    left: 0;
}

.select_menu ul {
    border: none;
    border-radius: 10px;
    width: fit-content;
    margin: 20px;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.select_menu ul li {
    list-style-type: none;
    margin: 5px;
}
/* ハンバーガー */


.left_menu {
    background-color: #deba4e;
    color: #333333;
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left_menu_nav {
    background-color: #2f68a1;
    padding: 2.5em;
}

.left_menu_nav ul li {
    list-style-type: none;
}

.left_menu_nav ul {
    padding: 0;
}

.left_menu_nav ul li a {
    color: #333333;
    text-decoration: none;
    font-size: clamp(15px, 6vw, 30px);
}

.left_menu_nav ul li a:hover {
    color: #deba4e;
}

.left_menu_block {
    width: fit-content;
    height: fit-content;
    text-align: center;
}
.logo {
    position: fixed;
    left: 0.5em;
    top: 0.5em;
    z-index: 10;
    width: 60px;
}
.logo img {
    width: 50px;
    animation: logo 5s infinite;
}

body {
    margin: 0;
    background-color: #333333;
    background-image: url(image/background.png);
    background-size: 130%;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 50%;
}

.right_contents {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
}

.sns_block {
    height: 100%;
    margin: 15em auto 15em auto;
}