* {
    margin: 0;
    padding: 0;
    font-family: "Stick", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #a8a4a4;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

p {
    font-size: 1rem;
}

a {
    text-decoration: none;
    font-size: 1rem;
}

a:hover {
    color: coral;
}

li {
    list-style: none;
    text-decoration: none;
    font-size: 1rem;
}

hr {
    width: 90%;
    margin: 20px auto;
    background-color: #a8a4a4;
    height: 1px;
}

@media screen and (min-width: 600px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }
    p {
        font-size: 1.2rem;
    }
    a {
        font-size: 1.2rem;
    }
}

/* header */
header {
    background-image: url(../img/top3.JPG);
    background-size: cover;
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

header h1 {
    color: #212121;
    text-shadow: 2px 2px#bdb9b9;
    background-color: rgba(255,255,255,0.8);
    text-align: center;
    margin: 16px;
}

header nav ul li {
margin: 0 0 16px 0;
}

header nav ul li a {
    font-size: 1.7rem;
    color: #212121;
    text-shadow: 2px 2px#bdb9b9;
    background-color: rgba(255,255,255,0.8);
}

.header-nav ul {
    text-align: center;
}

.menu {
    column-count: 3;
    column-gap: 2em;
}

@media screen and (min-width: 600px) {
    header h1 {
        font-size: 3rem;
        margin: 20px;
    }
    .header-nav ul {
        display: flex;
        justify-content: space-between;
    }    
    header nav ul li a {
        font-size: 1.8rem;
    }
    .sp {
        display: inline-block;
    }
}

@media screen and (min-width: 1025px) {
    header h1 {
        font-size: 4rem;
    }
    header nav ul li a {
        font-size: 2rem;
    }
}

/* main */
main {
    background-color: #5A3921;
    text-align: center;
}

main h1 {
    padding: 40px 0;
}

main h2 a {
    font-size: 2rem;
}

.container {
    padding: 40px 0 0;
}

.concept-item {
    text-align: center;
    opacity: 0;
    transition: 2s;
    padding: 20px 0;
}

.concept-item.fadeIn {
    opacity: 1;
}

.concept-item:nth-child(even) {
    flex-direction: row-reverse;
}

.concept-img {
    width: 100%;
    margin: 0 auto;
}

.image {
    height: 300px;
    object-fit: cover;
    margin: 20px 0;
}

.concept-text {
    width: 100%;
    background-color: #5A3921;
    margin: 20px auto;
}

.text {
    padding: 20px 0;
}

.access {
    text-align: center;
    color: #a8a4a4;
    font-size: 1.2rem;
}

.access li {
    padding: 10px;
}

.map-wrap {
    max-width: 50%;
    padding: 10px 0 20px;
  }

.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 75%;
  }
   
  .map iframe {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
  }

  .sp {
    display: block;
  }

  .price {
    text-align: right;
    margin: 0 20px 0 0;
  }

@media screen and (min-width: 600px) {
    .image {
        height: 350px;
    }
    .sp {
        display: none;
    }
}

@media screen and (min-width: 1025px) {
    .concept-item {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 0;
    }
    .concept-img {
        width: 50%;
    }
    .concept-text {
        width: 50%;
        margin: 0 auto;
    }
    .image {
        height: 450px;
    }
}

/* footer */
footer {
    height: 150px;
    background-color: lightgray;
}

.linklist {
    text-align: center;
    padding: 1rem;
}

.linklist a {
    padding: 1rem;
    font-size: 2rem;
}

footer i {
    color: #212121;
}

footer p {
    text-align: center;
    font-size: 14px;
    color: #212121;
}

footer a {
    color: #212121;
    font-size: 1rem;
}

@media (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
    }