@charset "UTF-8";

/* ------------------------
    ヘッダー
------------------------ */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    background-color: transparent;
    transition: background-color 0.4s ease, visibility 0.4s, opacity 0.4s ease;
    visibility: hidden;
    opacity: 0;
}

.header.js-show-header {
    visibility: visible;
    opacity: 1;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    height: 80px;
    padding: 0 30px;
    transition: 0.3s;
}

.header__logo {
    display: block;
    width: 150px;
    z-index: 101;
}

.header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.header__utils {
    display: none; 
}

/* ------------------------
    ナビゲーション (PC)
------------------------ */
.header .global-nav {
    height: 100%;
}

.header .global-nav__list {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 40px;
}

.header .global-nav__item {
    position: relative;
    padding: 15px 0;
}

.header .global-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #6E4A20;
    padding: 5px 0;
    line-height: 1.4;
    position: relative;
}

.header .global-nav__link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #6E4A20;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .global-nav__link:hover::before {
    width: 100%;
}

.header .global-nav__link .en {
    font-family: "Shippori Mincho B1", serif;
    font-weight: normal;
    font-size: 1.6rem;
}

.header .global-nav__link .ja {
    font-size: 1.1rem;
    color: #6E4A20;
    margin-top: 4px;
}

.header__overlay {
    display: none;
}


/* ------------------------
    スマホ・タブレット対応
------------------------ */
@media only screen and (max-width: 1024px) {
    .header__inner {
        height: 70px;
        padding: 0 10px;
    }

    .header__logo {
        width: 120px;
        position: relative;
    }

    .header__utils {
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        z-index: 101;
    }

    .header__sns {
        display: flex;
        align-items: center;
        color: #6E4A20;
        transition: 0.3s;
    }

    .header__sns:hover {
        opacity: 0.7;
    }

    .header__hamburger {
        position: relative;
        width: 40px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__hamburger span,
    .header__hamburger span::before,
    .header__hamburger span::after {
        content: '';
        display: block;
        width: 24px;
        height: 1px;
        background-color: #6E4A20;
        position: absolute;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s;
    }

    .header__hamburger span::before {
        transform: translateY(-8px);
    }

    .header__hamburger span::after {
        transform: translateY(8px);
    }

    .header__hamburger.js-open span {
        background-color: transparent;
    }

    .header__hamburger.js-open span::before {
        transform: translateY(0) rotate(45deg);
    }

    .header__hamburger.js-open span::after {
        transform: translateY(0) rotate(-45deg);
    }

    .header .global-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80vw;
        max-width: 400px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        z-index: 100;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -4px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .header .global-nav.js-open {
        right: 0;
    }

    .header .global-nav__list {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 100px 30px 40px;
    }

    .header .global-nav__item {
        padding: 0;
        border-bottom: 1px solid rgba(110, 74, 32, 0.1);
    }

    .header .global-nav__link {
        flex-direction: row;
        align-items: baseline;
        gap: 15px;
        padding: 20px 10px;
        color: #6E4A20;
    }

    .header .global-nav__link::before {
        display: none;
    }

    .header .global-nav__link .en {
        font-size: 1.8rem;
    }

    .header .global-nav__link .ja {
        font-size: 1.2rem;
        margin-top: 0;
        color: #6E4A20;
    }

    .header__overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .header__overlay.js-open {
        opacity: 1;
        visibility: visible;
    }
}

/* ------------------------
    フッター
------------------------ */
.footer {
	position: relative;
	margin-top: 100px;
	background-color: #4F402E;
	padding: 30px 15px 20px;
	color: #ffffff;
	font-size: 1.5rem;
	z-index: 1;
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}

.footer__logo {
	display: block;
	margin-bottom: 15px;
}

.footer__logo img {
	max-width: 150px;
	/* ロゴのサイズは適宜調整してください */
	height: auto;
}

.footer__info {
	padding-right: 0;
}

.footer__contact {
	font-family: "Shippori Mincho B1", serif;
	font-style: normal;
	font-weight: normal;
	margin-top: 0;
	line-height: 1.6;
}

.footer__contact a {
	color: #fff;
	text-decoration: none;
}

.footer__sns {
	margin-top: 15px;
}

.footer__sns svg {
	vertical-align: middle;
}

.footer__sitemap {
	display: flex;
	gap: 40px;
}

.footer__sitemap .sitemap-list {
	margin-top: 40px;
	margin-left: 0;
	display: flex;
	gap: 40px;
	text-align: center;
}

.footer__sitemap .sitemap-list__item {
	margin-top: 0;
	width: auto;
}

.footer__sitemap .sitemap-list__link {
	display: block;
	position: relative;
	padding-left: 0;
	color: #fff;
	text-decoration: none;
}

.footer__sitemap .sitemap-list__link::before {
	display: none;
}

.footer__sitemap .sitemap-list__link:hover {
	color: #cccccc;
}

.footer__sitemap .sitemap-list__en {
	font-family: "Shippori Mincho B1", serif;
	font-style: normal;
	font-weight: normal;
	display: block;
}

.footer__sitemap .sitemap-list__ja {
	font-size: 1.2rem;
	display: block;
	color: #cccccc;
}

.footer__sitemap .sitemap-list__sub {
	display: none;
}

.footer__copy {
	margin-top: 30px;
	/* コピーライトの余白 */
	text-align: center;
	font-size: 1.4rem;
	color: #cccccc;
}

@media only screen and (max-width: 768px) {
	.footer {
		padding: 40px 15px 20px;
	}

	.footer__inner {
		flex-direction: column;
		align-items: center;
		gap: 30px;
	}

	.footer__info {
		text-align: center;
	}

	.footer__logo {
		margin-bottom: 20px;
	}

	.footer__sns {
		margin-top: 20px;
	}
	.footer__sitemap {
		display: none;
	}

	/* .footer__sitemap {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-top: 0;
	}

	.footer__sitemap .sitemap-list {
		display: flex;
		flex-direction: column;
		gap: 15px;
		text-align: center;
	}

	.footer__sitemap .sitemap-list__item {
		width: 100%;
		margin-top: 0;
	}

	.footer__sitemap .sitemap-list__link {
		padding: 0;
	}

	.footer__sitemap .sitemap-list__link:hover {
		color: #cccccc;
	}

	.footer__sitemap .sitemap-list__link::before {
		display: none;
	}

	.footer__sitemap .sitemap-list__sub {
		display: none;
	} */

	/* アコーディオン関連の不要なスタイルを削除 */
	.footer__open {
		display: none;
	}

	.footer__copy {
		margin-top: 40px;
	}
}

/* フッター上の画像 */
.footer-image-container {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
  margin-bottom: -100px;
  margin-top: 200px;
}

.footer-image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}
.footer-image {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}
@media only screen and (max-width: 768px) {
  .footer-image-container {
    height: 200px;
    margin-top: 30px;
  }
}