/* 全体のスタイル */
body{
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
    display: flex;
}

p{
    margin: 0;
}

a{
    text-decoration: none;
    color: inherit;
}

ul{
    padding: 0;
    margin: 0
}

li{
    list-style: none;
}

button{
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

.wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 60px 0 0 0;
}


.page-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    font-weight: bold;
    text-align: center;
    color:#f2f2f2;
    background-color: #100169;
    margin-bottom: 40px;
}

.single-page-title{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 80px;
    font-weight: bold;
    font-size: 22px;
    text-align: center;
    color:#100169;
    border-bottom: 2px solid #100169;
    margin-bottom: 40px;
}

h1{
    font-size: 24px;
    margin: 0;
}

h2{
    font-size: 20px;
    font-weight: bold;
    color: #100169;
    border-bottom: #100169 solid 2px;
    padding-bottom: 8px;
}

h3{
    margin: 0;
    font-size: 18px;
}

h4{
    margin: 0;
    font-size: 16px;
}

address{
    font-style: normal;
}

/* header内のスタイル  */
.left-bar{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 335px;
    height: 100vh;
    padding:0 20px 0 20px;
    background-color: #f2f2f2;
    float: left;
    gap: 35px;

}

.left-bar img{
    width: 232px;
    height: 122px;
    margin-top: 80px;
}

.main-nav{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.main-nav li{
    font-size: 16px;
    font-weight: bold;
    text-align: left;
    color: #100169;
    cursor: pointer;
}

.main-nav li:hover{
    opacity: 0.5;
}

.sns-nav {
    display: flex;
    gap: 12px;
}

.sns-nav img{
    width: 42px;
    height: 42px;
}

.main-contents-wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-image: url(../img/bg-img.svg);
    background-size: cover;
    background-repeat: repeat;; 
}

.main-contents{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 393px;
    background:#f2f2f2;
    height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.609);
    overflow-y: auto;
}

header{
    display: flex;
    align-items: center;
    padding: 0 15px 0 15px;
    justify-content: space-between;
}


.main-contents header img{
    width: 121px;
    height: 64px;
    padding: 0 5px 0 0;
}

.header-shop-name{
    font-size: 12px;
    font-weight: bold;
    color: #100169;
    padding: 4px 0 4px 0;
    border-top:2px solid #100169;
    border-bottom: 2px solid #100169;
    text-align: center;
}

.header-logo{
    display: flex;
    align-items: center;
}

/* ハンバーガー */
.hamburger {
    width: 37px;
    height: 37px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    position: fixed;
    top: 15px;
    right: 20px;
}

.hamburger span {
    display: block;
    position: absolute;
    left: 50%;
    width: 19px;
    height: 2px;
    border-radius: 2px;
    transform: translateX(-50%);
    transition: all 0.3s ease;
    transform-origin: center;
    background-color: #100169;
}

.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.hamburger span:nth-child(3) {
  bottom: 10px;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background-color: #f2f2f2;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background-color: #f2f2f2;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
}

.menu ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    padding:100px 0 0 0;
    margin:0;
    background-color: #100169;
    width: 100%;
    height: 100dvh;  
    min-height: 100vh;
    align-items: center; 
    z-index: 99;
}

.menu ul li {
    width: 80%;        
    text-align: left;     
    padding: 8px;        
    margin: 8px 0;  
}

.menu ul li a {
    text-decoration: none;
    color: #f2f2f2;
    font-weight: bold;
    padding: 8px 10px;
    display: block;
    border-bottom: #f2f2f2 solid 1px;
    cursor: pointer;
}

.menu.active ul {
    display: flex;
}


/* フッターのスタイル */
footer{
    margin-top: 40px;
    background-color: #100169;
    text-align: center;
}

footer img{
    width: 100%;
    height: auto;
}

footer address{
    display: flex;
    flex-direction: column;
    padding-top: 20px;
    color: #f2f2f2;
    gap: 24px;
}

.shop-name{
    color: #f2f2f2;
    font-size: 24px;
    font-weight: bold;
}

.footer-info{
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    font-weight: bold;
}

.footer-nav{
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 20px 0;
}

footer .copy-right{
    padding: 80px 0 10px 0;
    font-size: 10px;
    color: #f2f2f2;
}