#top {
    position: relative;
}
.lang_pc {
    font-family: joanna-nova, sans-serif;
    font-weight: 300;
    font-style: normal;
   
}
a{
    text-decoration: none;
}
.lang_pc span{
    color: #000;

}
header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
}

.header_area {
    width: 100%;
    height: 75px;
}

.logo {
    width: 60px;
    height: 60px;
    margin: 0;
    padding: 0;
}

.logo img {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    margin-left: 30%;
    margin-top: 15px;
}

.lang {
    position: absolute;
    top: 15px;
    right: 85px;
    cursor: pointer;
    width: 60px;
    height: 50px;
    display: flex;
    align-items: center;
    font-family: joanna-nova, sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lang a {
    display: flex;
    column-gap: 3%;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.lang a p {
    width: 45%;
    margin: 0;
    text-align: center;
}

.lang a span {
    width: 10%;
    color: #000;
}

.jp {
    color: #14463E;
    font-family: joanna-nova, sans-serif;
}

.it {
    color: #D2C3AB;
    font-family: joanna-nova, sans-serif;
}

/*========= ナビゲーションのためのCSS ===============*/

#g-nav {
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    top: 0;
    width: 100%;
    background: #fff;
    /*動き*/
    transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
    opacity: 1;
    z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive {
    height: 100vh;
    inset: 0;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li {
    list-style: none;
    text-align: center;
    margin-bottom: 20px;
}

#g-nav li a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: capitalize
    ;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 22px;
    font-family: joanna-nova, sans-serif;
}
.ham_img{
    width: 120px;
    height: 127px;
    margin-bottom: 40px;
}
.ham_img img{
    width: 120px;
    height: 127px;
}
.lang_ham a{
    display: flex;
    column-gap: 3%;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}
.lang_ham span{
color: #000;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
    position: absolute;
    z-index: 9999;
    /*ボタンを最前面に*/
    top: 15px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #03453D;
}

/*×に変化*/
.openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.openbtn span:nth-of-type(1) {
    top: 15px;
}

.openbtn span:nth-of-type(2) {
    top: 23px;
}

.openbtn span:nth-of-type(3) {
    top: 31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 70%;
    background-color: #03453D;
}

.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 70%;
    background-color: #03453D;
}

#header_nav {
    display: none;
}

.openbtn.active {
    background-color: #fff;
}


.btn_a{
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    letter-spacing: 2px;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
    text-align: center;
    outline: none;
    height: 100%;
    width: 100%;
    border-radius: 24px;
    /*アニメーションの指定*/   
    transition: ease .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_a p {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#D2C3AB;
}

.btn_a:hover p{
	color:#fff;
}
.btn_a{
    border-radius: 24px;
}
/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background:#D2C3AB;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .4s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
    border-radius: 24px;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}


@media screen and (min-width:768px) {
    .openbtn {
        right: 30px;
    }

    .lang {
        right: 95px;
    }

    .logo img {
        margin-left: 30px;
    }

}

@media screen and (min-width:1024px) {
    .logo {
        width: 80px;
        height: 80px;
        padding-left: 30px;
    }
    .header_area {
        height: 90px;
        margin-top: 15px;
    }
    .logo img{
        margin-top: 0;
    }
    .lang,
    .openbtn {
        display: none;
    }

    #header_nav {
        display: block;
        display: flex;
        column-gap: 7%;
        width: 70%;
        justify-content: right;
        padding-right: 30px;
        align-items: center;

    }

    .header_area {
        display: flex;
        justify-content: space-between;
    }

    .header_nav_li {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: center;
        column-gap: 30px;
    }

    .header_nav_li a {
        color: #262626;
        font-family: YakuHanMP, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Noto Serif JP", serif;
        letter-spacing: 2px;
        display: flex;
        font-size: 16px;
    align-items: center;
    justify-content: center;
    }

    .header_contact_btn {
        height: 48px;
        width: 115px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #D2C3AB;
        border-radius: 24px;
        color: #D2C3AB;
        font-family: joanna-nova, sans-serif;
        letter-spacing: 1px;
    }
    .header_contact_btn a{
        color: #D2C3AB;
    }
    .lang_pc {
        display: flex;
        align-items: center;
    }

    .lang_pc a {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        column-gap: 3%;
    }

    .logo img {
        margin-left: 0;
    }
}