/** style.css */

/* ------------------ */
/*        main        */
/* ------------------ */

@charset "UTF-8";

@media screen and (max-width:767px) {

    /* ここにSP向けのCSS指定 */
    .pc,
    #pc {
        display: none;
    }
.sp {
    display: block;
}
}

@media screen and (min-width:768px) {

    /* ここにPC向けのCSS指定 */
    .sp,
    #sp {
        display: none;
    }

    .profile_left_area .thumnail {
        margin-bottom: 2vw;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 80px;
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
body::before {
    content: "";
    display: block;
    background: url(../img/main_bg.jpg);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-size: cover;
    height: 100%;
}
header {
    text-align: center;
    background: #9d9567;
    color: #fff;
    font-size: 1.6vw;
    padding: 1.2vw 0;
    height: 4.1vw;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1;
    height: 4.1vw;
}
h1#top_logo {
    font-family: sans-serif;
    font-weight: 500;
}
.wrapper {
    width: 60%;
    margin: auto;
    background: #f7f4ef;
    margin-top: 2.3vw;
    padding: 2.3vw 0;
}

section.conversion_area {
    padding: 0 7%;
}
section.conversion_area ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1%;
}
section.conversion_area li {
    text-align: center;
    background: #9d9567;
    color: #fff;
    padding: 0.7vw;
    border-radius: 0.5vw;
    font-weight: 600;
    letter-spacing: 2px;
    display: grid;
    align-items: center;
    justify-content: center;
}
li.tel_btn {
    font-size: 1.8vw;
    line-height: 1.2;
}
li.atendace_btn {
    font-size: 3vw;
}
li.line_btn {
    font-size: 2.5vw;
}
section.info_area {
    padding: 0 5%;
}
section.info_area h3 {
    text-align: center;
    color: #9d9567;
    margin: 2vw auto;
    font-size: 1.9vw;
    font-weight: 600;
}
.news_wrapper {
    background: #fff;
    height: 12vw;
    margin-bottom: 3vw;
    padding: 1vw;
    overflow-y: scroll;
}
.news_box {
    margin-bottom: 1vw;
}
.news_box h4 {
    border-left: solid 2px #d3af59;
    padding-left: 1vw;
    font-size: 1.2vw;
    line-height: 1;
    margin-bottom: 0.5vw;
}
p.news_date {
    font-size: 0.9vw;
    color: #d18b61;
    margin-bottom: 0.3vw;
}
div.news_text {
    font-size: 0.9vw;
    line-height: 1.3;
}

/* フォーム全体 */
section.form_area {
    padding: 3vw;
}
section.form_area h3 {
    text-align: center;
    color: #9d9567;
    margin-bottom: 2vw;
    font-size: 1.9vw;
    font-weight: 600;
}

.wpcf7 form {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
}

/* ラベル・見出し */
.wpcf7 p,
.wpcf7 label {
  font-weight: 600;
  margin-bottom: 6px;
}

/* ご利用日時 横並び */
.reserve-datetime-inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap; /* スマホ用 */
}

.reserve-datetime-inline .dt-label {
  font-weight: 700;
  white-space: nowrap;
}

.reserve-datetime-inline .dt-date input {
  width: 160px;
}

.reserve-datetime-inline .dt-time p {
  display: flex;
  align-items: center;
  gap: 6px;
}

.reserve-datetime-inline .dt-time select {
  width: 80px;
}

.reserve-datetime-inline .sep {
  font-weight: 700;
}


.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 input[type="date"],
.wpcf7 select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  box-sizing: border-box;
}

.wpcf7 input:focus,
.wpcf7 select:focus {
  border-color: #666;
  outline: none;
}

.wpcf7 input[type="submit"] {
  width: 100%;
  padding: 14px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  margin: 1.5vw auto;
}

.wpcf7 input[type="submit"]:hover {
  opacity: 0.9;
}
.slider_area {
    padding: 3vw 3vw 0;
}
footer {
    text-align: center;
    background: #f7f4ef;
    width: 60%;
    margin: auto;
    color: #000 !important;
}

@media(max-width:768px) {
    body::before {
        display: none;
    }
    header {
        font-size: 5.6vw;
        padding: 2.8vw 0;
        height: 12vw;
    }
    .wrapper {
        width: 100%;
        margin-top: 12vw;
        padding: 5vw 0;
    }
    footer {
        width: 100%;
    }
    section.info_area h3 {
        margin: 5vw auto;
    }
    section.form_area h3 {
        margin-bottom: 5vw;
    }
    section.info_area h3, section.form_area h3 {
        font-size: 5.1vw;
    }
        .news_wrapper {
        height: 68vw;
        margin-bottom: 8vw;
    }
    .news_box h4 {
        font-size: 4.9vw;
    }
    p.news_date {
        font-size: 3.9vw;
        padding: 1.8vw;
    }
    div.news_text {
        font-size: 4.3vw;
    }

    section.conversion_area ul {
        grid-template-columns: 1fr;
        gap: 2vw;
        width: 64%;
        margin: auto;
    }
    section.conversion_area li {
        border-radius: 1.5vw;
        height: 16vw;
    }
    li.tel_btn {
        font-size: 4.8vw;
    }
    li.atendace_btn {
        font-size: 5.7vw;
    }
    li.line_btn {
        font-size: 6.3vw;
    }
    .reserve-datetime-inline {
        gap: 8px;
    }

    .reserve-datetime-inline .dt-date input {
        width: 100%;
    }
    .copyright p {
        color: #000;
    }
    footer h5 {
        color: #000;
    }
    section.form_area {
        padding: 8vw 5vw 0;
    }
    .slider_area {
        padding: 0 3vw;
        margin-bottom: 3vw;
    }
}