/*ハンバーガーメニュー*/

.hamburger_btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 8rem;
    font-family: "IPAex明朝", serif;
    background-color:#2a2f41;
    display: flex;
    justify-content: flex-end;
    z-index: 60;
}

.hamburger_btn img{
    position: absolute;
    width: 15rem;
    height: auto;
    top: 3.5rem;
    left: 1.5rem;
    }

.menu-toggle {
    position: absolute;
    top: 1.25rem;
    right: 1.875rem;
    width: 3.125rem;
    height: 3.125rem;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    color: #e7e2c1;
    z-index: 60;
}

.menu-toggle p {
    color: #e7e2c1;
    font-family: "IPAex明朝", serif;
    font-size: 1.3rem;
    position: absolute;
    top: 3.2rem;
    right: 1.3rem;
    padding: 0;
}

.menu-toggle:hover {
    opacity: 60%;
}


/* 三本線（ハンバーガー） */
.menu-toggle span {
    position: absolute;
    width: 4rem;
    height: .3125rem;
    background-color: #e7e2c1;
    right: -0.625rem;
    transform: translateX(-50%);
    transition: 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 1.8rem; }
.menu-toggle span:nth-child(2) { top: 3rem; }
.menu-toggle span:nth-child(3) { top: 4.2rem; }

.hidden_contents {
    position: fixed;
    top: 0;
    right: -20rem;
    width: 20rem;
    height: 100%;
    font-family: "IPAex明朝", serif;
    background-color: #e7e2c1;
    display: flex;
    justify-content: flex-end;
    transition: right 0.3s ease;
    z-index: 10000;
}

.hidden_contents.active {
    right: 0;
}

.close-btn {
    position: absolute;
    top: 1.25rem;
    right: 0.625rem;
    width: 5rem;
    height: auto;
    padding: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-sizing: border-box;
    z-index: 60;
}

.close-btn img {
    width: 5rem;
    height: auto;
    display: block;
    object-fit: contain;
}

.close-btn:hover {
    opacity: 60%;
}

.border-left {
    border-left: .1875rem solid #2a2f41;
    padding-left: .4375rem;
    margin-right: 6rem;
    margin-top: 1.5rem;
    min-height: 100vh;
}

.contents {
    margin-left: 0.625rem;
}

.h_menu {
    font-size: 2rem;
    color: #2a2f41;
}

.contents{
    font-size: 1.6rem;
    position: relative;
}

.contents span {
    font-size: 1.1rem;
    color: #737373;
}

/* pタグ */
.hidden_contents p {
    color: #2a2f41;
}


.double-line {
    margin-bottom: .0625rem;
}

.jump-page {
    display: block;
    text-decoration: none;
    margin-bottom: .5rem;
}

.jump-page:hover {
    opacity: 60%;
}

/* ===================================
   PC用の設定 
   =================================== */
@media screen and (min-width: 1025px) {
	/* 960px以上に適用されるCSS（PC用） */
    .hamburger_btn {
    display: none !important;
  }
}


