@charset "utf-8";



.title h1 {
    
    font-size: 32px;
    font-weight: bold;
}
.title p {
    font-size: 14px;
    margin-top: 15px;
}

*,
::before,
::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

body {
     font-family: "Shippori Mincho", serif;
     font-weight: 400;
     font-style: normal;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    background-color: #ffffff;
}
img {
    max-width: 100%;
}

.header-inner {
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-menu ul {
    display: flex;
}
.site-menu ul li {
   margin: 20px 20px 20px 40px;
}
.site-menu ul li a {
    font-weight: bold;
}
.site-menu a {
    transition: opacity 0.3s ease;
}
.site-menu a:hover {
    opacity: 0.4;
}
.toggle-menu-button {
    display: none;
}


.title {
    height: 310px;
    background-image: url(images/access/店外観.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-shadow: 1px 1px 10px #4b2c14;
}
.title h1 {
    font-family: 'Montserrat' sans-serif;
    font-size: 32px;
    font-weight: bold;
}
.title p {
    font-size: 14px;
    margin-top: 15px;
}

.main h2 {
    font-size: 22px;
    font-weight: bold;
    line-height: 30px;
}

.map {
    width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
}
.map iframe {
    display: block;
    width: 100%;
    height: 320px;
    margin-top: 25px;
}

.contact {
     width: 930px;
    max-width: 90%;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
}
.form-area {
    background-color: #f8f8f8;
    border: 1px solid #aaaaaa;
    margin-top: 25px;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
}
.form-area dt {
    width: 200px;
    padding: 15px 0;
    font-size: 15px;
    font-weight: bold;
    line-height: 24px;
}
.form-area dt .required::after {
    content: '必須';
    font-size: 11px;
    color: #eb4f32;
    margin-left: 10px;
}
.form-area dd {
    width: calc(100% - 200px);
    padding: 15px 0;
}
.input-text {
    width: 100%;
    max-width: 280px;
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
}
.select-box {
    width: 200p;
    height: 40px;
}
.radio-button {
    display: block;
    margin-top: 20px;
}
.radio-button:first-child {
    margin-top: 0;
}
.radio-button input {
    margin-right: 8px;
}
.message {
    width: 100%;
    height: 260px;
    padding: 10px;
    line-height: 1.5;
}
.confirm-text {
    font-size: 14px;
    line-height: 22px;
    margin-top: 30px;
}

.submit-button {
  position: relative;
  padding: 14px 20px; 
  width: fit-content;
  margin: 0 auto;
  margin-top: 40px;
  display: block;
  text-align: center;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  border: none;
}

/* 上線 */
.submit-button::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #333;
  top: 0;
  left: 0;
  transition: 0.4s ease;
}

/* 下線 */
.submit-button::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 1px;
  background: #333;
  bottom: 0;
  right: 0;
  transition: 0.4s ease;
}

/* ホバーで左右に伸びる */
.submit-button:hover::before {
  width: 100%;
}

.submit-button:hover::after {
  width: 100%;
}
.footer {
    color: #ffffff;
    background-color: #24211b;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
}
.footer-logo {
    display: block;
    width: 235px;
    margin-top: 90px;
}
.footer-tel {
    font-size: 26px;
    font-weight: bold;
    margin-top: 28px;
}
.footer-time {
    font-size: 13px;
    margin-top: 16px;
}
.copyright {
    font-size: 14px;
    font-weight: bold;
    margin-top: 90px;
}


@media (max-width: 800px) {
    
    .map,
    .contact {
        width: 500px;
        margin-top: 45px;
    }
    .form-area dt,
    .form-area dd {
        width: 100%;
    }
    .form-area dt {
        padding-bottom: 0;
    }
    .submit-button {
        width: 100%;
    }
}