@charset "utf-8";
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
/* burger */

.hamburger {
    width: 50px;
    height: 43px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: fixed;
    top: 10px;
    right: 30px;
    z-index: 999999;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #691c2a;
    border-radius: 15px;
    transition: 0.6s;
}
.hamburger span:first-child {
    width: 100%;
}
.hamburger span:last-child {
    margin-left: auto;
}
.hamburger.active span:nth-child(1) {
    width: 80%;
    transform: translateY(8px) translateX(12px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    width: 80%;
    transform: translateY(-8px) translateX(1px) rotate(-45deg);
}
.hamburger span {
    background-color: #fff; /* 閉じてる時は白 */
    transition: background-color 0.3s;
}
.hamburger.active span {
    background-color: #691c2a; /* ナビと同系の赤 */
}

.sp-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 140lvh;
    background: #fff;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease, z-index 0s 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding-top: 80px;
    pointer-events: none;
}
.sp-nav.active {
    opacity: 1;
    z-index: 99;
    transition: opacity 0.4s ease;
    pointer-events: all;
}
.sp-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sp-nav ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    color: #691c2a;
    font-size: 23px;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    width: 85%;
    margin: 0 auto;
}
.sp-nav ul li:first-child {
    margin-top: 50px;
}
.sp-nav ul li a i {
    font-size: 18px;
    line-height: 1;
    margin-right: 8px;
    position: relative;
    top: 1px;
    color: #003b73;
}
.sp-nav ul li a::after {
    content: "›";
    font-size: 18px;
    color: #003b73;
    margin-left: auto;
}
.sp-nav ul li a:hover {
    background: rgba(0, 122, 255, 0.05);
}
/* header */
header {
    background-color: #9e5353e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
}
header img {
    width: 100px;
    margin-left: 30px;
}
.pc-header nav ul {
    display: flex;
    gap: 50px;
    width: 700px;
}
header nav ul a {
    color: white;
    letter-spacing: 1px;
}
header nav a:hover {
    opacity: 0.7;
}

.pc-header {
    display: none;
}
@media (min-width: 768px) {
    .pc-header {
        display: flex;
    }
    .sp-header {
        display: none;
    }
}
/* main */
h2 {
    text-align: center;
    margin: 50px 0 50px;
    letter-spacing: 1px;
}
h3 {
    margin-top: 40px;
    letter-spacing: 1px;
}
/* hero */
.hero img {
    height: 50vh;
    object-fit: cover;
}
/* about */
.about {
    text-align: center;
    margin: 80px 0 150px;
}
.about h2 {
    font-size: 32px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: hold;
    font-style: normal;
}
.about p {
    color: rgb(96, 96, 96);
    width: 480px;
    margin: 0 auto;
    line-height: 2;
    letter-spacing: 1px;
}
@media (max-width: 768px) {
    .about {
        text-align: center;
        margin: 80px 0 150px;
    }
    .about h2 {
        font-size: 32px;
        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-weight: bold;
        font-style: normal;
        text-align: center;
        width: 100%;
        display: block !important;
    }
    .about p {
        color: rgb(96, 96, 96);
        margin: 0 auto;
        line-height: 2;
        letter-spacing: 1px;
        width: 90%;
        max-width: 480px;
    }
}
/* most */
.most-box {
    /* border: 2px solid red; */
    position: relative;
    display: flex;
    margin-bottom: 100px;
}
.most-box img {
    width: 800px;
    height: 500px;
    object-fit: cover;
    z-index: 1;
}
.move img {
    margin-left: 250px;
}
.left-item p {
    width: 100%;
    font-size: 25px;
    line-height: 1.8;
    margin: 40px 0 0 30px;
    letter-spacing: 3px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.tate {
    position: absolute;
    writing-mode: vertical-rl;
    right: 50px;
    font-size: 2.7em;
    color: #691c2a;
    border-right: 2px solid #000000;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.tate p {
    letter-spacing: 0.2em;
}
.bg-txt {
    background-color: #691c2a;
    color: aliceblue;
    position: absolute;
    width: 670px;
    right: 150px;
    bottom: 40px;
    padding: 50px 140px 50px 70px;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 2px;
}
.left-item1 p {
    width: 100%;
    font-size: 25px;
    line-height: 1.8;
    margin: 20px 0 0 150px;
    letter-spacing: 3px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.tate1 {
    position: absolute;
    writing-mode: vertical-rl;
    left: 50px;
    font-size: 2.7em;
    color: #691c2a;
    border-left: 2px solid #000000;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.tate1 p {
    letter-spacing: 0.2em;
}
.bg-txt1 {
    background-color: #691c2a;
    color: white;
    position: absolute;
    width: 670px;
    left: 150px;
    bottom: 40px;
    padding: 50px 140px 50px 70px;
    font-size: 13px;
    line-height: 2;
    letter-spacing: 2px;
    z-index: 9999;
}
.move-sp {
    display: none;
}
.move-pc {
    position: relative;
    left: 210px;
}
@media (max-width: 768px) {
    .most-box {
        flex-direction: column;
    }
    .most-box img {
        width: 100%;
        height: auto;
        object-fit: cover;
        z-index: 1;
    }
    .left-item p {
        width: 100%;
        font-size: 20px;
        margin: 20px;
        letter-spacing: 0;
        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-weight: normal;
        font-style: normal;
    }
    .left-item1 p {
        width: 100%;
        font-size: 20px;
        margin: 20px;
        letter-spacing: 0;
        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-weight: normal;
        font-style: normal;
    }
    .tate {
        -webkit-text-stroke: 3px white;
        paint-order: stroke;
        text-shadow: white 1px 0 10px;
        writing-mode: vertical-rl;
        right: 20px;
        top: 70px;
        font-size: 35px;
        color: #691c2a;
        border-right: 2px solid #c2c2c2;
        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-weight: bold;
        font-style: normal;
    }
    .tate1 {
        border-left: none;
        -webkit-text-stroke: 3px white;
        paint-order: stroke;
        text-shadow: white 1px 0 10px;
        writing-mode: vertical-rl;
        left: 20px;
        top: 30px;
        font-size: 35px;
        color: #691c2a;
        border-left: 2px solid #c2c2c2;
        font-family: "Noto Serif JP", serif;
        font-optical-sizing: auto;
        font-weight: bold;
        font-style: normal;
    }
    .bg-txt {
        background-color: #691c2a;
        color: aliceblue;
        width: 100%;
        right: 0px;
        bottom: 0px;
        padding: 30px;
        font-size: 13px;
        line-height: 2;
        letter-spacing: 2px;
        position: relative;
    }
    .bg-txt1 {
        background-color: #691c2a;
        color: aliceblue;
        width: 100%;
        left: 0px;
        bottom: 0px;
        padding: 30px;
        font-size: 13px;
        line-height: 2;
        letter-spacing: 2px;
        position: relative;
    }
    .move-pc {
        display: none;
    }
    .move-sp {
        display: block;
    }
    .left-item1 {
        /* text-align: right; */
        position: relative;
        left: 80px;
    }
}

/* commitment */
.commitment {
    background-color: #f4ecec;
    margin-top: 250px;
}
.commitment h2 {
    padding-top: 80px;
    font-size: 32px;
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}
.commitment h3 {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: hold;
    font-style: normal;
}
.commitment-flex {
    display: flex;
    justify-content: space-evenly;
    width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.commitment-item img {
    width: 250px;
    border-radius: 50%;
    object-fit: cover;
}
.commitment-item p {
    width: 250px;
    margin: 20px auto 100px;
    line-height: 2;
    letter-spacing: 2px;
}
@media (max-width: 767px) {
    .commitment {
        background-color: #f4ecec;
        margin-top: 150px;
        padding-bottom: 60px;
    }
    .commitment-flex {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }

    .commitment-item {
        width: 45%;
        box-sizing: border-box;
        padding: 0 10px;
    }

    .commitment-item img {
        width: 140px;
    }

    .commitment-item h3 {
        font-size: 16px;
    }

    .commitment-item p {
        width: 100%;
        margin: 12px auto 24px;
        font-size: 13px;
        line-height: 1.7;
    }
}
/* menu */
.menu h2 {
    padding-top: 80px;
    font-size: 32px;
    letter-spacing: 2px;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.manu-flex {
    width: 1400px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 0 auto;
    text-align: center;
}
.menu-item {
    width: 400px;
    background-color: #691c2a;
    color: white;
    overflow: hidden;
    line-height: 1.5;
}
.menu-item img {
    height: 300px;
    object-fit: cover;
    transition: 0.5s;
}
.menu-txt {
    margin: 20px 0 30px;
}
.menu-txt p {
    letter-spacing: 2.5px;
    font-size: 14px;
}
@media (max-width: 768px) {
    .manu-flex {
        display: block;
        width: 100%;
    }
    .menu-item {
        width: 85%;
        margin: 0 auto 20px;
    }
}
/* shop */
.shop h2 {
    padding-top: 80px;
    font-size: 32px;
    letter-spacing: 2px;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.shop-flex {
    display: flex;
    width: 1200px;
    margin: 0 auto;
    background-color: #f4ecec;
}
.shop-item {
    width: 520px;
}
.shop-info {
    margin: 30px 0 0;
}
.shop-info dl {
    display: flex;
    line-height: 2;
    letter-spacing: 2px;
}
.shop-info dt {
    width: 125px;
    margin-left: 60px;
}
.link {
    display: flex;
    margin: 20px 0 0 60px;
    letter-spacing: 2px;
    gap: 20px;
}
.link01 {
    background-color: white;
    margin-bottom: 20px;
}
.link01:hover {
    opacity: 0.5;
}
.link01 img {
    width: 30px;
    height: auto;
    vertical-align: middle;
    margin-right: 6px;
}
.link01 a {
    display: block;
    padding: 8px 20px 5px;
    color: black;
}
.link02 {
    background-color: white;
    margin-bottom: 20px;
}
.link02:hover {
    opacity: 0.7;
}
.link02 img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 6px;
}
.link02 a {
    display: block;
    padding: 8px 20px 5px;
    color: black;
}
@media (max-width: 768px) {
    .shop-flex {
        flex-direction: column;
        width: 100%;
        padding-bottom: 5px;
    }
    .shop-item {
        width: 100%;
        margin: 0 auto;
    }
    .shop-item img {
        width: 100%;
        height: auto;
        display: block;
    }
    .shop-info {
        background-color: #f4ecec;
        width: 100%;
        margin-bottom: 30px;
        padding: 0 40px;
    }
    .shop-info dl {
        display: block;
        line-height: 1.5;
    }
    .shop-info dt {
        font-weight: bold;
        margin: 0;
    }
    .shop-info dd {
        margin-bottom: 30px;
    }
    .link {
        margin: 0;
        justify-content: space-between;
    }
    .link01,
    .link02 a {
        white-space: nowrap;
        font-size: 13px;
        display: flex;
        align-items: center;
    }
}
/* news */
.news-box {
    display: flex;
    margin-top: 100px;
}
.news-flex1 {
    position: relative;
    height: 200px;
}
.news-flex2 {
    position: relative;
    height: 200px;
}
.news-flex3 {
    position: relative;
    height: 200px;
}
.news-item1 h3 {
    color: white;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
    font-size: 24px;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.news-item2 h3 {
    color: white;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
    font-size: 24px;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.news-item3 h3 {
    color: white;
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
    font-size: 24px;
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.news-flex1:hover {
    transition: all 1s;
    opacity: 0.6;
}
.news-flex2:hover {
    transition: all 1s;
    opacity: 0.6;
}
.news-flex3:hover {
    transition: all 1s;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .news-box {
        display: block;
    }
    .news-flex1 {
        position: relative;
        height: 200px;
    }
    .news-flex2 {
        position: relative;
        height: 200px;
    }
    .news-flex3 {
        position: relative;
        height: 200px;
    }
    .news-item1 h3 {
        color: white;
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        letter-spacing: 2px;
        font-size: 24px;
        font-family: "Varela Round", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    .news-item2 h3 {
        color: white;
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        letter-spacing: 2px;
        font-size: 24px;
        font-family: "Varela Round", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    .news-item3 h3 {
        color: white;
        position: absolute;
        top: 32%;
        left: 50%;
        transform: translate(-50%, -50%);
        letter-spacing: 2px;
        font-size: 24px;
        font-family: "Varela Round", sans-serif;
        font-weight: 400;
        font-style: normal;
    }
    .news-flex1:hover {
        transition: all 1s;
        opacity: 1;
    }
    .news-flex2:hover {
        transition: all 1s;
        opacity: 1;
    }
    .news-flex3:hover {
        transition: all 1s;
        opacity: 1;
    }
    .news-flex1,
    .news-flex2,
    .news-flex3 {
        position: relative;
        overflow: hidden;
    }
    .news-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
}

/* footer */
footer {
    margin: 100px 0 20px;
}
footer p {
    color: rgb(96, 96, 96);
    text-align: center;
    margin-top: 30px;
}
footer nav ul {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    width: 1200px;
    margin: 0 auto;
}
footer nav ul a {
    color: rgb(96, 96, 96);
}
footer nav a:hover {
    opacity: 0.7;
}
@media (max-width: 768px) {
    footer {
        margin: 0 0 30px;
    }
}

/* Web form */
.form {
    padding-top: 100px;
}
.header-form {
    background-color: #9e5353e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-form img {
    width: 15%;
    margin-left: 30px;
}
.header-form nav ul {
    display: flex;
    gap: 50px;
    width: 700px;
}
.header-form nav ul a {
    color: white;
    letter-spacing: 1px;
}
.header-form nav a:hover {
    opacity: 0.7;
}
.form h2 {
    text-align: center;
    margin-top: 50px;
    letter-spacing: 2px;
}
.webform dl {
    width: 990px;
    border-top: 1px solid #cccccc;
    border-right: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    margin: 20px auto 20px;
    letter-spacing: 2px;
}
.webform dl dt {
    float: left;
    padding: 1em;
    color: #998484;
}
.webform dl dd {
    border-bottom: 1px solid #cccccc;
    margin: 0;
    padding: 1em 0 1em 18em;
}
.webform dl dt .must {
    color: #d23939;
}
input[type="email"] {
    width: 50%;
}
input {
    font-size: 1em;
    padding: 5px;
}
label {
    margin-right: 1em;
}
select {
    font-size: 1em;
}
textarea {
    width: 30em;
    font-size: 1em;
    padding: 5px;
}
p.submit {
    text-align: center;
    margin-bottom: 40px;
}
p.submit:hover {
    opacity: 0.7;
}
input[type="submit"] {
    padding: 20px 100px;
    background: #691c2a;
    font-size: 1em;
    color: #ffffff;
    font-weight: bold;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 2px;
}
@media (max-width: 768px) {
    .webform dl {
        width: 90%;
    }
    .webform dl dt {
        float: none;
        padding: 10px 20px;
    }
    .webform dl dd {
        padding: 10px 20px;
    }
    textarea {
        width: 100%;
        height: 100px;
        font-size: 1em;
        padding: 5px;
    }
}
