@charset "utf-8";
body.fixed{
    overflow-y: hidden;
}
/* header */
.header_bg{
    content: "";
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0.95;
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    height: 100px;
    z-index: 90;
    transition: background-color 0.5s ease;
}
.header_bg.is-scroll{
    background-color: rgba(39, 31, 0, 0.75);
}
header{
    font-family: "Noto Sans JP", "Cinzel", serif;
    font-weight: 300;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.header_box{
    position: relative;
    width: 100%;
    height: 100%;
    /* font-family: "Noto Sans JP"; */
}
.header_upper{
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    padding: 20px 20px 20px;
}
.header_logo{
    width: 198px;
}
.header_upper_r{
    display: flex;
    height: 100%;
}

.h_en{
    font-size: 22px;
    font-weight: 400;
    text-align: center;
}
.h_jp{
    font-size: 10px;
}

/* ハンバーガーボタン */
.ham_btn span{
    display: inline-block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 3px;
    background-color: #fff;
    z-index: 20;
    transition: all .3s;
}
.ham_btn{
    position: relative;
    background-color: rgba(39, 31, 0, 0.75);
    cursor: pointer;
    z-index: 20;
    width: 90px;
    height: 60px;
    transition: all .3s;
}
.aaa.is-scroll header .ham_btn{

    background-color: transparent;
}
.ham_btn span:nth-of-type(1){
    top: 18px;
}
.ham_btn span:nth-of-type(2){
    top: 28px;
}
.ham_btn span:nth-of-type(3){
    bottom: 18px;
}
.ham_btn.open{
    background-color: rgba(39, 31, 0, 0);
}
.ham_btn.open span:nth-of-type(1) {
    top: 5px;
    height: 1px;
    width: 75px;
    background-color: #000;
    transform: translateY(16px) translateX(-50%)  rotate(-45deg);
}
.ham_btn.open span:nth-of-type(2) {
    opacity: 0;
}
.ham_btn.open span:nth-of-type(3) {
    top: 27px;
    height: 1px;
    width: 74px;
    background-color: #000;
    transform: translateY(-6px) translateX(-50%) rotate(45deg);
}

/* メニュー部分 */
.menu_bg{
    width: 100%;
    height: 470px;
    background-color: rgba(234, 226, 200, 0.85);
    z-index: -1;
    position: fixed;
    top: 0;
    overflow-y: scroll;
    transition: .4s;
    opacity: 0;
    transform-origin: top;
    transform: scale(1, 0);
    transition-timing-function: cubic-bezier(0.46, 0.1, 0.29, 1) !important;
}
.header_menu.open .menu_bg{
    top: 0;
    transform: scale(1, 1);
    opacity: 1;
    transition: .9s;
}
.header_menu{
    width: 100%;
    height: 470px;
    z-index: 10;
    position: fixed;
    top: 0;
    overflow-y: scroll;
    visibility: hidden;
}
.header_menu.open{
    visibility: visible;
}
.header_inner{
    max-width: 1040px;
    margin: 0 auto;
    color: #000;
    padding: 0 20px;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}
.header_menu.open .header_inner{
    opacity: 1;
    transition: 2s .28s;
    visibility: visible;
}
.header_nav01{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header_nav02{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border-top: #000 1px solid;
    border-bottom: #000 1px solid;
}
.header_nav02 li{
    width: calc(100% / 5);
    height: 84px;
    border-right: #000 1px solid;
}
.header_nav02 li:first-of-type{
    border-left: #000 1px solid;
}
.header_nav02 li:nth-of-type(6){
    border-left: #000 1px solid;
}
.header_nav02 li:nth-of-type(n+6){
    border-top: #000 1px solid;
}
.header_nav02 li a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    transition: 0.7s;
}
.header_nav02 li a:hover{
    /* background: #8a7955; */
    background: #6d6854;
    transition: 0.7s;
    opacity: 0.5;
}
.header_nav02 li a:hover p{
    color: #fff;
    transition: 0.7s;
}
.header_nav02 li a.soon {
    pointer-events: none;
    opacity: 0.5;
}
.h_en {
    font-size: 22px;
    font-weight: 400;
    text-align: center;
    transition: 0.7s;
}
.header_nav02 .h_jp{
    margin-top: 5px;
    transition: 0.7s;
}

.header_nav03{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px auto 0;
    max-width: 760px;
}

.nav03_left_item.soon {
    pointer-events: none;
    opacity: 0.5;
}

.nav03_left_item{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.7s;  
}
.nav03_left_item:last-of-type{
    margin-top: 20px;
}
.nav03_left_item:hover {
    opacity: 0.5;
    transition: 0.7s;  
}
.nav03_left_item .h_en:before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 110%;
    bottom: 0;
    margin: auto;
}
.nav03_left .h_en{
    font-size: 20px;
}
.nav03_right{
    display: flex;
    justify-content: flex-end;
    flex-grow: 1;
    /* width: 100%; */
}
.nav03_right_item{
    max-width: 128px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #271f00;
    color: #eae2c8;
    padding: 10px 0;
    margin-right: 30px;
    width: 20%;
    transition: 0.7s;
}
.nav03_right_item:nth-of-type(even){
    background-color: #6d6854;
}
.nav03_right_item:last-of-type{
    margin-right: 0;
}
.nav03_right_item:hover {
    opacity: 0.5;
    transition: 0.7s;
}

.nav03_right_item.soon {
    pointer-events: none;
    opacity: 0.5;
}


.nav03_right_item_01{
    width: 44px;
}
.nav03_right_item_02{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav03_right .h_en{
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0.05em;
    /* letter-spacing: 0; */
    letter-spacing: 0.02em;
}
.header_nav03 .h_jp{
    margin-top: 5px;
}


@media screen and (max-width: 1000px) {

}
@media screen and (max-width: 750px) {
.ham_btn{
    width: 54px;
    height: 36px;
}
.ham_btn span{
    width: 28px;
}
.ham_btn span:nth-of-type(1){
    top: 8px;
}
.ham_btn span:nth-of-type(2){
    top: 16px;
}
.ham_btn span:nth-of-type(3){
    bottom: 8px;
}
.ham_btn.open span:nth-of-type(1) {
    width: 39px;
}
.ham_btn.open span:nth-of-type(3) {
    width: 39px;
}
.ham_btn.open span{
    left: 50%;
}

.header_bg{
    height: 56px;
}
.header_upper{
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 10px;
    height: 56px;
}
.header_logo{
    width: 120px;
}

.menu_bg{
    /* height: 100vh; */
    height: initial;
    padding-bottom: 800px;
}
.header_menu{
    height: 100vh;
    /* top: -100vh; */
    /* background-color: rgba(234, 226, 200, 0.9); */
    /* transition: .8s; */
}
.header_inner{
    height: 100vh;
    padding: 0 20px;
}
.header_menu.open .header_inner{
    opacity: 1;
    transition: 3s .28s;
    visibility: visible;
}

.header_nav01 .h_en{
    font-size: 26px;
}
.header_nav01{
    height: initial;
    margin-top: 35px;
    margin-bottom: 15px;
}

.header_nav02 li{
    width: calc(100% / 2);
    border-bottom: #000 1px solid;
    height: 70px;
}
.header_nav02 li:nth-of-type(odd){
    border-left: #000 1px solid;
}
.header_nav02 li:nth-of-type(6){
    border-left: none;
}
.header_nav02 li:nth-of-type(n+6){
    border-top: none;
}
.header_nav02 li:nth-of-type(n+9){
    border-bottom: none;
}

.nav03_left{
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
.nav03_left_item {
    width: 50%;
}
.nav03_left_item:last-of-type{
    margin-top: 0;
}
.nav03_right{
    justify-content: center;
}

.nav03_right{
    justify-content: space-between;
    flex-wrap: wrap;
}
.nav03_right_item{
    flex-direction: initial;
    max-width: 347px;
    width: 49%;
    margin-right: 0;
}
.nav03_right_item:nth-of-type(n+3){
    margin-top: 10px;
}
.nav03_right_item:nth-of-type(2){
    order: 0;
}
.nav03_right_item:nth-of-type(1){
    order: 1;
}
.nav03_right_item:nth-of-type(3){
    order: 2;
}
.nav03_right_item:nth-of-type(4){
    order: 3;
}
.nav03_right_item_01 {
    width: 44px;
    margin-right: 10px;
}
.nav03_right_item_02{
    width: 43%;
}
.nav03_right .h_en{
    margin-top: 0;
    font-size: 13px;
}

}

@media screen and (max-width: 650px) {
.nav03_right_item_02{
    width: 43%;
    flex-grow: 1;
}
.nav03_right_item_01 {
    margin-right: 0;
}
.nav03_right_item{
    padding: 10px;
}
.nav03_right .h_en{
    margin-top: 0;
    font-size: 12px;
}
.h_en {
    font-size: 20px;
}
}

/* footer */
footer{
    font-family: "Noto Sans JP", "Cinzel", serif;
    font-weight: 300;
    background-color: #eae2c8;
}
.footer_box{
    padding: 80px 0 160px;
}
.footer_inner{
    max-width: 1040px;
    padding: 0 20px;
    margin: 0 auto;
}

.footer_logo{
    max-width: 198px;
    margin: 0 auto;
}

.foot_nav01{
    display: flex;
    margin: 0 auto;
    justify-content: center;
    font-size: 14px;
    margin: 50px auto 60px;
}
.foot_nav01_item{
    display: flex;
    transition: 0.7s;  
}
.foot_nav01_item.soon {
    pointer-events: none;
    opacity: 0.5;
}
.foot_arrow{
    display: flex;
    align-items: center;
    max-width: 10px;
    margin-right: 5px;
}
.foot_nav01_item:first-of-type{
    margin-right: 30px;
}
/* .foot_nav01_item:first-of-type::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    transform: rotate(45deg);
    position: absolute;
    top: 1%;
    left: -25%;
    bottom: 0;
    margin: auto;
}
.foot_nav01_item:last-of-type::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    transform: rotate(45deg);
    position: absolute;
    top: 1%;
    left: -20%;
    bottom: 0;
    margin: auto;
} */
.foot_nav01_item:hover {
    opacity: 0.5;
    transition: 0.7s;    
}

.footer_inner02{
    width: 100%;
}
.foot_nav02{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
    border-bottom: .25px #6d6854 solid;
}
.foot_nav02 li{
    width: calc(100% / 10);
    text-align: center;
    color: #000;
    font-size: 12px;
    transition-duration: 0.7s;
    /* padding: 10px 0; */
}
.foot_nav02 li:hover{
    opacity: 0.5;
}
.foot_nav02 li a{
    display: block;
    width: 100%;
    height: 100%;
    padding: 10px 0;
    transition-duration: 0.7s;
}
.foot_nav02 li a.soon{
    pointer-events: none;
    opacity: 0.5;
}

.foot_nav02 li a:hover{
    background-color: #6d6854;
    color: #fff;
}

.footer_tel{
    max-width: 315px;
    margin: 60px auto 0;

}
.footer_sell{
    max-width: 190px;
    margin: 40px auto;
}

.foot_cap{
    font-size: 10px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 200;
    letter-spacing: 0.05em;
}
.copyright{
    font-size: 10px;
    text-align: center;
    font-weight: 200;
}

@media screen and (max-width: 800px) {
.foot_nav02 li{
    font-size: 10px;
}
}

@media screen and (max-width: 750px) {
.footer_box{
    padding: 40px 0 50px;
}

.footer_logo{
    max-width: 137px;
    margin: 0 auto;
}

.foot_nav01{
    font-size: 12px;
    margin: 35px auto 25px;
}

.footer_inner02{
    padding: 0 20px;
}

.foot_nav02 {
    justify-content: flex-start;
    padding-bottom: 30px;
}
.foot_nav02 li{
    width: calc(100% / 4);
    text-align: center;
    color: #898989;
    padding: 10px 0;
}

.footer_tel{
    margin: 25px auto 0;
}
.footer_sell{
    max-width: 142px;
    margin: 40px auto;
}
}
@media screen and (max-width: 600px) {

}

