/*=========================================
#hamburger
=========================================*/
.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 150;
    width: 30px;
    height: 30px;
    cursor: pointer;
    margin-top: 30px;
}

.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-135deg);
}

.hamburger span {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #333333;
    transition: transform .3s;
}

.hamburger.is-active span {
    background-color: #333333;
}

.hamburger span:nth-child(1) {
    top: 30%;
}

.hamburger span:nth-child(2) {
    top: 60%;
}

.hamburger span:nth-child(3) {
    top: 90%;
}

/*=========================================
#drawer
=========================================*/
.drawer {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 100px;
    left: 0;
    z-index: 130;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9); /* 白色で半透明 */
    transition: opacity .3s, visibility .3s;
    color: #000000;
}

.drawer.is-active {
    visibility: visible;
    opacity: 1;
}

.drawer-inner {
    display: flex;
    justify-content: center;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin-left: 0px;
    width: 100%;
}

.drawer__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.drawer__link {
    color: #000000;
    width: 100%;
}
/* 実際のプロジェクトではここのコメントを解除して、スマホ時のみ表示させます。 */
/* .sp-show {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp-show {
    display: block;
  }
  .sp-none {
    display: none;
  }
} */.drawer__list li  {
    border-top: 2px solid #333333;
    border-bottom-color: #333333;
    border-bottom-width: 2px;
    padding-bottom: 0px;
    list-style-type: none;
    margin-right: 0px;
    width: calc(90% - 2rem);
    margin: 0 auto;
    padding: 1.25rem 1rem;
}
/* ===============================================
# 共通
=============================================== */
.drawer__list li a {
    color: #333333;
    text-decoration: none;
    font-weight: bold;
    display: block;
    font-size: 1rem;
    width: 100%;
    padding-right: 10px;
}
.drawer__list li a:hover {
    background-color: #F7D4D5;
    width: 97%;
    color: #DB7173;
}
.drawer__list li a:visited {
}

.drawer__list .last  {
    border-bottom: 2px solid #333333;
}




img {
    max-width: 100%;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    font-style: italic;
    vertical-align: middle;

    shape-margin: .75rem;
}

.drawer-inner {
}
.drawer__nav   {
    margin-top: 1rem;
    padding-bottom: 0px;
    width: 100%;
    
}
