@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP|Noto+Serif+JP&display=swap');

/* --- 基本スタイル --- */
body {
    background: url("/public/osechi/rci/_assets/img/bg.jpg?v10") center center repeat-x;
    font-size: 13px;
    line-height: 1.7;
    color: #000000;
    font-family: 'Noto Serif JP', serif;
    text-align: center;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
}
a:hover {
    text-decoration: underline;
}
.inner {
    width: 100%;
    margin: 0 auto;
}
.times {
    font-family: 'Times', sans-serif;
}

.sp{
    display: none;
}

/* --- お問合せ (CONTACT) --- */
#contact {
    text-align: center;
    margin-top: 65px;
    font-family: 'Noto Serif JP', serif;
}
#contact .textContact {
    line-height: 1.2;
    font-size: 15px;
    letter-spacing: -1px;
}
#contact .telContact {
    font-size: 19px;
    line-height: 1;
    letter-spacing: -1px;
    margin-top: 24px;
}
#contact .telContact a {
    font-size: 33px;
}
#contact .timeContact {
    line-height: 1.3;
}
#contact .noteContact {
    letter-spacing: -2px;
    line-height: 1.2;
}

/* --- フッター (FOOTER) --- */
#footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 21px 0 0;
    height: 135px;
    margin-top: 65px;
    font-family: 'Noto Serif JP', serif;
}
#footer .textWeb {
    font-size: 13px;
}
#footer .logo-footer {
    margin: 4px auto;
    width: 219.68px;
}
#footer .logo-footer span {
    font-size: 13px;
    margin-top: 7px;
    letter-spacing: -0.4px;
    display: inline-block;
}
#footer a {
    color: #fff;
    text-decoration: none;
}

.center-message {
  text-align: center;
  margin-top: 40px; /* 任意。上下に余白つけたい場合 */
}

.submit-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; /* 中央寄せ */
  margin-top: 40px;
}

.submit-button {
  background-color: orange;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/* --- レスポンシブ (SP STYLE) --- */
@media (max-width: 768px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    .inner {
        width: 100%;
    }
    #contact {
        margin-top: 20px;
    }
    #contact .inner {
        padding: 0;
    }
    #contact .textContact {
        font-size: 14px;
    }
    #contact .telContact {
        font-size: 16px;
        margin-top: 10px;
        letter-spacing: 1px;
    }
    #contact .telContact a {
        font-size: 24px;
    }
    #footer {
        padding: 10px 0px 80px 0px;
        margin-top: 40px;
        height: unset;
    }
}