﻿@charset "UTF-8";
/* 一般・共通設定 */
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
img{
    width: 100%;
    vertical-align: bottom;
}

html {
    font-size: clamp(14px, 1vw, 18px);
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
@media (min-width: 1600px){
    html {
        font-size: clamp(12px, 0.8vw, 16px);
    }
}
@media (min-width: 481px) and (max-width: 768px){
    html {
        font-size: clamp(14px, 1.25vw, 18px);
    }
}
@media (max-width: 480px){
    html {
        font-size: clamp(14px, 1.5vw, 18px);
    }
}
@media (min-resolution: 2dppx) and (max-width: 480px){
    html {
        font-size: clamp(16px, 2vw, 20px);
    }
}


body{
    font-family:sans-serif;
    color: rgba(46,56,64,1);
    font-weight: 400;
    letter-spacing: .1rem;
    line-height: 1.7;
    overflow-x: hidden;
}
ul,ol,li{
    list-style-type: none;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
a{
    text-decoration: none;
    display: block;
}
header{
    padding: 1rem 0;
}
h1{
    text-align: center;
}
h1 span{
    font-size: 1.2rem;
    display: block;
    font-weight: normal;
    padding-bottom: .5rem;
}
h1 img{
    width: 25rem;
    margin: 0 auto;
}

.hero {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
}
@media (max-width: 767px){
    .hero {
        height: 350px;
    }
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news{
    padding: 3rem 0;
    background-color: aliceblue;
}
.news div{
    width: clamp(48rem, 90%, 68.75rem);
    margin: 0 auto;
}
.news div h2{
    text-align: center;
    font-weight: normal;
    font-size: 2rem;
    margin-bottom: 1rem;
}
.news div p{
    text-align: center;
    font-size: 1.3rem;
}




.map{
    padding: 3rem 0;
    width: clamp(48rem, 90%, 68.75rem);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 3rem;
}
address{
    font-style: normal;
}
table{
    border-collapse: collapse;
    margin-bottom: 2rem;
}
th{
    text-align: left;
    padding: .5rem 1rem .5rem 0;
    white-space: nowrap
}
dt{
    font-weight: bold;
}
dd{
    margin-bottom: 1rem;
}
dd span{
    font-weight: bold;
    display: block;
}
@media (max-width: 767px){
    .map{
        width: 90%;
        display: block;
    }
}
footer{
    text-align: center;
    padding: 1rem 0;
    background: #eee;
}