@charset "UTF-8";
@media screen and (max-width: 768px) {
    .top-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .mihon,
    .option-mihon {
        flex-direction: column;
        align-items: center;
    }
}

html,
body {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    background-image: url(/assets/images/base1.jpg);

    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}


header {
    display: flex;
    flex-direction: column;
    background-image: url(/assets/images/background5.jpg);
    height: 150px;
    width: 100%;
    padding-top: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: fixed;
    top: 0px;
    z-index: 9999;
}

.top-menu {
    margin-top: auto;
    background-color: white;
    display: flex;
    justify-content: flex-end;
    color: #655046;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 16px;
    align-items: center;
}

.top-menu-button {
    text-decoration: none;
    background-color: #00000000;
    margin-left: 30px;
    transition: all 1s ease;
}

.top-menu-button:hover {
    color: white;
    /* 文字色を白に変更 */
    background-color: #655046;
    /* 背景色を変更 */
    font-weight: bold;
    transform: scale(1.1);
    /* ホバー時に少し拡大 */
}



.main-visual {
    display: grid;
    place-items: center;
    background-image: url(/assets/images/closet6.jpeg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 600px;
    position: relative;
    /* 追加: 子要素の絶対位置を基準にする */
    text-align: left;
    /* 文字を左寄せ */
}

h1 {
    font-family: "Meddon", cursive;
    font-weight: 400;
    font-style: normal;
    color: white;
    font-size: 40px;
    padding: 20px;
    text-align: left;
}



h2 {
    color: white;
    font-size: 24px;
    position: absolute;
    top: 20px;
    left: 20px;
}

h3 {
    color: goldenrod;
    font-size: 30px;
    font-weight: bold;
}


p {
    color: grey;
    font-size: 20px;
    font-weight: bold;
    padding: 20px;
}

.about {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.mihon {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 50px;
    max-width: 1000px;
    margin: 0 auto 50px;
    width: 90%;
}

.item {
    display: flex;
    /* アイテム内の要素を縦に並べる */
    flex-direction: column;
    /* 画像とテキストを縦に並べる */
    align-items: center;
    /* アイテム内の要素を中央揃え */
    text-align: center;
    /* テキストを中央揃え */
    padding-bottom: 16px;
    /* アイテムの下部に16pxの余白を追加 */
}

.item img {
    width: 100%;
    /* 画像の幅を親要素に合わせる */
    max-width: 300px;
    /* 画像の最大幅 */
    height: auto;
    /* 高さは自動で調整 */
    object-fit: cover;
    /* 画像のアスペクト比を保ちながらフィット */
}

.item p {
    margin-top: 8px;
    /* 画像とテキストの間隔 */
}

.option {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.option-mihon {
    display: flex;
    text-align: center;
    justify-content: space-between;
    max-width: 800px;
    margin: 0 auto 50px;
}

.option-item {
    display: flex;
    /* アイテム内の要素を縦に並べる */
    align-items: center;
    /* アイテム内の要素を中央揃え */
    padding-bottom: 16px;
    /* アイテムの下部に16pxの余白を追加 */
}

.option-item img {
    width: 100%;
    /* 画像の幅を親要素に合わせる */
    max-width: 300px;
    /* 画像の最大幅 */
    height: auto;
    /* 高さは自動で調整 */
    object-fit: cover;
    /* 画像のアスペクト比を保ちながらフィット */
}

.about a {
    text-decoration: none;
    background-color: #ad8a7a;
    padding: 20px;
    border-radius: 30px;
    margin-top: 100px;
    transition: all 1s ease;
}

.about a:hover {
    color: white;
    /* 文字色を白に変更 */
    background-color: #b6a69e;
    /* 背景色を変更 */
    font-weight: bold;
}

.menu {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

td,
th {
    padding: 3px;
    width: 200px;
    height: 40px;
}

.menu-table {
    color: grey;
    font-size: 18px;
    font-weight: bold;
    display: grid;
    place-items: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.order {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}


form[name="contact"] {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background-color: #e3f0f0;
    font-family: "Shippori Mincho", serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

form[name="contact"] label {
    font-weight: bold;
    color: grey;
}

form[name="contact"] input[type="text"],
form[name="contact"] input[type="email"],
form[name="contact"] textarea {
    width: 100%;
    font-size: 1em;
    background-color: white;
}

.form-row {
    display: flex;
    margin-bottom: 15px;
}

.form-row label {
    width: 100px;
    display: inline-block;
}

.form-row input[type="text"],
input[type="email"] {
    flex: 1;
    /* 残りのスペースにフィット */
}


form[name="contact"] p {
    margin-top: 20px;
    font-weight: bold;
    color: gray;
}

form[name="contact"] input[type="checkbox"] {
    appearance: auto;
    /* ← 明示的にネイティブの表示にする */
}

.checkbox-group {
    text-align: left;
    display: inline-block;
    /* formのcenterの中で左寄せにする */
    margin-top: 10px;
    margin-left: 100px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    vertical-align: middle;
}

.checkbox-item label {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.4;
    color: #333;
}

.form-label-center {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
    color: grey;
}

form[name="contact"] input[type="submit"] {
    margin-top: 25px;
    padding: 12px 25px;
    font-size: 1em;
    border: none;
    border-radius: 20px;
    background-color: goldenrod;
    color: white;
    cursor: pointer;
    transition: background-color 0.8s ease;
}

form[name="contact"] input[type="submit"]:hover {
    background-color: brown;
}


.contact {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}

.sns {
    display: flex;
    align-items: center;
    width: 60%;
    justify-content: center;
    margin: 10px auto 20px auto;
}

.sns-item {
    padding: 20px;
    align-items: center;
}

footer {
    display: flex;
    flex-direction: column;
    background-image: url(/assets/images/background6.jpg);
    height: 200px;
    width: 100%;
    padding-top: 10px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-menu {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-size: 16px;
    align-items: flex-end;
}

.footer-menu-button {
    text-decoration: none;
    background-color: #00000000;
    margin: 0 30px 10px 0;
    transition: all 1s ease;
}

.footer-menu-button:hover {
    color: white;
    /* 文字色を白に変更 */
    background-color: #655046;
    /* 背景色を変更 */
    font-weight: bold;
    transform: scale(1.1);
    /* ホバー時に少し拡大 */
}