body {
    font-family: "Noto Serif JP", Georgia, serif;
}

p,a,
h1,h2,h3,h4,h5,h6 {
    font-family: "Noto Serif JP";
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: .05em;
    font-feature-settings: "palt";
}



/************************ header ************************/


.header {
    width: 100%;
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo-img {
    width: 60px;
}

.header-right {
    display: flex;
    align-items: center;
}
.nav__txt-hum {
    line-height: 1.5;
}

.instagram {
    line-height: 1;
}

.nav__txt {
    font-size: 13px;
    margin-right: 6px;
    transition: .2s;
}
.nav__txt:hover {
    opacity: .6;
}

.instagram-img {
    width: 26px;
    margin-left: 10px;
    margin-right: 16px;
}

.contact-nav {
    font-size: 13px;
    background-color: #edc100;
    border: solid 1px #edc100;
    padding: 4px 24px;
    border-radius: 50px;
    transition: .2s;
}
.contact-nav:hover {
    background-color: #fff;
}

.hum {
    display: none;
}

.nav__txt-hum {
    font-size: 20px;
}

.menu-right {
    z-index: 1;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    display: block;
    background: #ECD100;
    opacity: 0;
    transform: translateX(100%); /* Y軸ではなくX軸を使う */
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* スライド速度を0.6秒に設定 */
}

#hamburger {
    position: relative;
    display: block;
    width: 30px;
    height: 25px;
    margin: 0 0 0 auto;
    cursor: pointer;
    z-index: 10;
}
#hamburger span,
#hamburger::before,
#hamburger::after {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ECD100;
    transition: all 0.3s ease-in-out; /* 線のアニメーション */
}
#hamburger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ECD100;
    transform: translateY(-50%);
  }
#hamburger::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ECD100;
}
#hamburger::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ECD100;
}/* メニューが開いたときのクロススタイル */
.hamburger-active #hamburger span {
    opacity: 0;
}
.hamburger-active #hamburger::before {
    top: 45%;
    transform: rotate(45deg); /* 上の線を45度回転させてクロス */
    background-color: #000;
}
.hamburger-active #hamburger::after {
    bottom: 45%;
    transform: rotate(-45deg); /* 下の線を-45度回転させてクロス */
    background-color: #000;
}
.menu-right.open {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out; /* 開閉両方に適用 */
}
.menu-right ul {
    padding: 0;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.menu-right li {
    margin: 0;
    padding: 0;
}
.menu-right li span {
    font-size: 15px;
    color: #333;
}
.menu-right li a,
.menu-right li span {
    display: block;
    padding: 20px 0;
}

@media screen and ( max-width: 860px ) {
    .hum {
        display: block;
    }

    .header-right {
        display: none;
    }
}

@media screen and ( max-width: 520px ) {
    .nav__txt-hum {
        font-size: 16px;
        padding: 8px 0;
    }
	
	.menu-right ul {
		margin-top: 0;
	}
	
	.menu-right li a {
        padding: 14px 0;
    }
}


.content__btn {
    display: block;
    text-align: center;
    width: 240px;
    margin: 0 auto;
    padding: 12px 20px;
    border: solid 1px #000;
    border-radius: 50px;
    transition: .2s;
}
.content__btn:hover {
    background-color: #ECD100;
}

.contents__title-01 {
    position: relative;
    font-size: 30px;
    text-align: center;
}
.contents__title-01::after {
    position: absolute;
    content: "";
    background-color: #000;
    width: 40px;
    height: 1px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}
.contents__title-top {
    text-align: center;
}

@media screen and ( max-width : 620px ) {
    .contents__title-01 {
        font-size: 24px;
    }

    .content__btn-mt {
        margin-top: 24px;
    }
    
    .content__btn {
        margin: 0 auto;
        max-width: 280px;
        width: 100%;
    }


}

/************************ footer ************************/
.footer {
    padding: 80px 24px;
    text-align: center;
    background-color: #f7f7f7;
}

.footer-nav {
    text-align: center;
}

.footer__logo {
    width: 100px;
    margin: 56px 0 48px 0;
}

.footer__copyright {
    font-size: 12px;
}


/************************ page__title ************************/
.page__title {
    margin: 0 24px;
    padding-top: 156px;
}

.page__title-txt {
    display: block;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 0 auto;
    font-size: 60px;
    font-weight: 600;
    text-align: right;
}

@media screen and ( max-width: 620px ) {
    .page__title-txt {
        font-size: 32px;
    }
}