@charset "utf-8";

#vdbanner {
    width: 0;
    height: 0;
}

/* リセットcss */
*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul,
li {
    list-style: none;
}

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

html,
body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Hina Mincho', serif;
    background-color: #F5F0E6;
    font-size: 16px;
    color: #2f2b26;
    line-height: 50px;
    letter-spacing: 0.5em;
}

img {
    max-width: 100%;
}

.button {
    background-color: #80AA9F;
    width: 450px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    font-size: 15px;
    line-height: 30px;
    color: #F8F6F3;
    border: none;
    font-family: inherit;
    letter-spacing: 0.7em;
    transition:
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.button:hover {
    background-color: #669589;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(75, 54, 33, 0.25);
}


.header {
    background-color: #669589;
    width: 100%;
}

.header-inner {
    height: 100px;
    margin: auto 5%;
    padding: 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: block;
    width: 15vw;
    height: auto;
    max-width: 160px;
    max-height: 160px;
    margin-top: 10px;
}

.toggle-menu-button {
    display: none;
}

.site-menu ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1%;
    color: #F8F6F3;
}

.site-menu ul li {
    margin: 0 15px;
}

.site-menu ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 0 5px;
    white-space: nowrap;
}

/* 英語テキスト */
.site-menu ul li a .english {
    display: inline-block;
    transition: opacity 0.3s;
}

/* 日本語テキスト */
.site-menu ul li a .japanese {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    white-space: nowrap;
    font-size: 14px;
    transition: opacity 0.3s;
}

/* ホバーで切り替え */
.site-menu ul li a:hover .english {
    opacity: 0;
}

.site-menu ul li a:hover .japanese {
    opacity: 1;
}

.section-title {
    text-align: center
}

.hero {
    width: 100%;
    height: 600px;
    position: relative;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #F5F0E699;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-align: center;
}

.hero-subtitle {
    margin-bottom: 0.1rem;
    color: #669589;
}

.hero-title {
    margin: 0;
    color: #669589;
}

.hero-subcopy {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #F5F0E680;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    text-align: center;
    max-width: 80%;
    line-height: 2.5;
}

.catchcopy {
    padding-top: 295px;
    text-align: center;
}

.intro {
    margin-top: 87px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative;
    padding: 0 2rem;
}

.intro-logo img {
    max-width: 300px;
    height: auto;
}

.intro-text {
    max-width: 600px;
    position: relative;
}

.ivy-left {
    position: absolute;
    transform: rotate(90deg);
    top: -50px;
    left: -50px;
    width: 100px;
    height: auto;
}

.ivy-right {
    position: absolute;
    transform: rotate(-90deg);
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: auto;
}

.intro-btn-wrap {
    text-align: center;
    margin-top: 120px;
}

.book-menu {
    position: relative;
}

.cafe-coffee {
    position: absolute;
    background: url(../image/decor/cafe-coffee.png) no-repeat;
    background-size: contain;
    top: -6%;
    right: 10%;
    z-index: 0;
    width: 200px;
    height: 200px;
    max-width: 100%;
    transform: rotate(15deg);
}

.coffee-beans {
    position: absolute;
    background: url(../image/decor/coffee_beans.png) no-repeat;
    background-size: contain;
    bottom: 5%;
    left: 3%;
    z-index: 3;
    width: 150px;
    height: 150px;
    max-width: 100%;
    transform: rotate(-30deg);
}

.menu-preview {
    margin-top: 400px;
    text-align: center;
}

.menu-page-title {
    margin-top: 5%;
}

.menu-page {
    display: flex;
    justify-content: center;
}

.menu-page li {
    margin-top: 10%;
    background-image: url(../image/decor/book-page.png);
    max-width: 100%;
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    gap: 2px;
    box-sizing: border-box;
    text-align: center;
    z-index: 2;
}

.menu-page img {
    width: 250px;
    height: 180px;
    margin-top: 5%;
    margin: 5% auto 0;
}

.menu-title {
    margin-top: 1%;
}

.menu-text {
    margin: 1%;
    font-size: 15px;
    line-height: 2.5rem;
}

.menu-price {
    margin: 2%;
    text-align: end;
}

.menu-btn {
    margin: 100px 55% 0;
}

.recommendation-page {
    margin-top: 30%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.recommendation-page ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    letter-spacing: 0.2rem;
    margin: 0 5%;
}

.book-recommendation {
    position: relative;
    background: #F8F6F3;
    border-radius: 30px;
    width: 560px;
    height: 500px;
    box-shadow: #00000040 0 4px 5px;
}

.recommendation-page .book-title {
    text-align: center;
    margin-top: 10%;
    line-height: 2.5rem;
}

.recommendation-page .book-text {
    margin: 5%;
    text-align: justify;
    line-height: 2.5rem;
}

.cat {
    position: absolute;
    background: url(../image/decor/cat.png) no-repeat;
    background-size: contain;
    top: -15%;
    left: 1%;
    z-index: 10;
    width: 150px;
    height: 150px;
    max-width: 100%;
}

.dog {
    position: absolute;
    background: url(../image/decor/dog.png) no-repeat;
    background-size: contain;
    bottom: -15%;
    right: -3%;
    z-index: 10;
    width: 150px;
    height: 150px;
    max-width: 100%;
    transform: rotate(10deg);
}

.recommendation-btn {
    margin-top: 40%;
}

.recommendation-page li img {
    width: 450px;
    height: auto;
    border-radius: 30px;
    display: block;
    align-items: center;
}

.item-recommendation {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.item-recommendation .item-title {
    text-align: center;
}

.item-recommendation .item-text {
    margin: 5%;
    text-align: justify;
    line-height: 2.5rem;
}

.others {
    font-size: 14px;
}

.news-information {
    margin: 20% auto;
    position: relative;
    width: 100%;
}

.news-information .section-title::after {
    content: "";
    position: absolute;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 100px;
    background: #927E63;
    z-index: -2;
}

.news-envelope {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 900px;
    margin: 5% auto;
    background: url("../image/decor/envelope.png") no-repeat center/contain;
    z-index: -2;
}

.popup {
    position: absolute;
    background: url(../image/decor/speech_bubble.png)no-repeat center/cover;
    top: 3%;
    left: 10%;
    width: 75%;
    height: 450px;
    min-height: 200px;
    z-index: 5;
    line-height: 3rem;
    padding: 30px;
    border-radius: 2%;
}

.news-item .news-date {
    margin-left: 5%;
}

.news-item .news-title,
.news-item .news-detail {
    text-align: justify;
    display: flex;
    justify-content: space-around;
}

.popup .news-title {
    font-size: 24px;
}

.letter {
    position: absolute;
    width: 60%;
    height: 50%;
    min-height: 40%;
    margin-top: 28%;
    bottom: 5%;
    background: #F8F6F3;
    border-radius: 5px;
    padding: 3%;
    z-index: 1;
    top: 10%;
    left: 20%;
    box-shadow: #4B36218c 0 5px 4px;
}

.re-news {
    font-weight: bold;
    text-shadow: 0 0 2px #2C2A268c;
    font-size: 1.1em;
}

.letter .news-item {
    margin-top: 2%;
    line-height: 2rem;
    border-bottom: 1.5px dashed #2C2A26;
}

.stamp {
    position: absolute;
    background: url(../image/decor/stamp.jpg) no-repeat;
    background-size: contain;
    top: 37%;
    left: 6%;
    z-index: 2;
    width: 100px;
    height: 150px;
    max-width: 100%;
    transform: rotate(-25deg);
    filter: drop-shadow(#4B36218c 0 5px 4px);
}

.sealing {
    position: absolute;
    background: url(../image/decor/sealing\.png) no-repeat;
    background-size: contain;
    bottom: -25%;
    left: calc(100% - 15%);
    z-index: 2;
    width: 200px;
    height: 200px;
    max-width: 100%;
    transform: rotate(15deg);
    filter: drop-shadow(#4B36218c 0 5px 4px);
}

.access-container {
    margin-top: 5%;
}

.access-map {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
}

.info-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-label {
    font-size: 24px;
    text-shadow: 0 0 1px #2C2A268c;
}

.info-text {
    text-align: right;
}

.footer {
    background-color: #669589;
    width: 100%;
    padding: 20px 0;
    color: #F8F6F3;
    text-align: center;
    margin-top: 20%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer .site-menu ul {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.footer .site-menu li {
    position: relative;
    list-style: none;
    padding: 0 2%;
}

.footer .site-menu li:not(:last-child)::after {
    content: "/";
    position: absolute;
    top: 0;
    left: 100%;
    opacity: 0.5;
}

.footer .site-menu a {
    text-decoration: none;
    font-weight: bold;
}

.footer .site-menu a:hover {
    text-decoration: underline;
}

.footer-text {
    font-size: 12px;
    line-height: 2.5;
    margin: 5% 0;
    opacity: 0.7;
    letter-spacing: 1.2em;
}

.SNS {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10%;
    padding: 0 25%;
    box-sizing: border-box;
}

.SNS a img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.SNS a img:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.copyright {
    font-size: 12px;
    color: #e0e0e0;
    margin-top: 10px;
}

.back-to-btn {
    position: fixed;
    bottom: 0;
    right: 3%;
    background: url(../image/top-button.png) no-repeat right;
    background-size: 100% 100%;
    width: 120px;
    height: 100px;
    cursor: pointer;
    z-index: 100;
    border: none;
    opacity: 0;
    transition: opacity 0.5s;
    display: block;
}