@charset "UTF-8";

/* ----------------------------
共通部分
------------------------------- */
html {
    font-size: 100%;
}
body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", sans-serif;
    line-height: 1.7;
    color: #432;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}

/* 共通レイアウト */
.wrapper {
    max-width: 1120px;
    margin: auto;
    padding: 0 1.5rem;
}
.align-center {
    text-align: center;
}

/* 共通の見出しやフォントに関する項目 */
.font-english {
    font-family: 'Philosopher', sans-serif;
    font-weight: normal;
}
.heading-medium {
    font-size: 3rem;
    text-align: center;
}




/* -----------------------------
ヘッダー
------------------------------*/
#header {
    width: 100%;
    height: 60px;
    background-color: #faf7f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: #999 1px solid;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
#header h1 {
    line-height: 0;
    margin-left: 20px;
}
#header h1 a {
    line-height: 0;
    text-decoration: none;
}
#header h1 .logo {
    width: 300px;
}
#header img {
    object-fit: contain;
    height: 55px;
}
#header .navi .menu {
    gap: 2.5rem;
    font-size: 1.5rem;
    list-style: none;
}
#header .navi .menu a {
    color: #432;
    font-size: 28px;
}
#header .navi .menu a:hover {
    color: #0bd;
}



/* 形成編集 START*/
#header .hamburger{
    width: 60px;
    height: 60px;
    cursor: pointer;
    position:fixed;
    top: 0px;
    right: 0px;
    z-index: 30;
}
#header .hamburger span{
    width: 30px;
    height: 3px;
    background-color: #432;
    display: inline-block;
    position: absolute;
    left: 10px;
    transition: all 0.4s;
}
#header span:nth-of-type(1){
    top: 16px;
}
#header span:nth-of-type(2){
    top: 25px;
}
#header span:nth-of-type(3){
    top: 34px;
}

#header .navi{
    width: 60%;
    height: 100vh;
    background-color: #fff;
    position: fixed;
    top: 0;
    right: -60%;
    z-index: 20;
    transition: all 0.6s;
}
#header .navi .menu{
    width: 100%;
    height: 100vh;
    flex-direction: column;
    padding-top: 60px;
    overflow: auto;
}
#header .navi .menu li{
    padding: 10px 0;
    margin-left: 20px;
}


#header .navi.active{
    right: 0;
}

#header .hamburger.active span:nth-of-type(1){
    top: 24px;
    transform: rotate(-45deg);
}

#header .hamburger.active span:nth-of-type(2){
    opacity: 0;
}

#header .hamburger.active span:nth-of-type(3){
    top: 24px;
    transform: rotate(45deg);
}

/* 形成編集 END*/




/* ------------------------------
カバー画像
------------------------------ */
.cover {
    background-image: url(../images/cover-home-s.jpg);
    background-size: cover;
    background-position: center bottom;
    height: 528px;
    margin-top: 60px;
    margin-bottom: 3rem;
}



/* ------------------------------
About
------------------------------ */
.about {
    max-width: 736px;
    padding: 0 1.5rem;
    margin: 3rem auto 4rem;
}
.about p {
    margin-bottom: 3rem;
}


/* ------------------------------
News
------------------------------ */
#news {
    margin-bottom: 32px;
}
#news .news-list {
    list-style: none;
    max-height: 350px; /* 高さを固定 */
    overflow-y: auto; /* 縦方向にスクロール可能に */
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}
#news .news-list .item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: #333;
    border-bottom: 1px solid #ccc;
    padding: 15px 20px;
}
#news .news-list .item:last-child {
    border-bottom: none;
}
#news .news-list .item .date{
    min-width: 120px;
    color: #999;
}
#news .news-list .item .category {
    min-width: 140px;
}
#news .news-list .item .category span {
    background-color: #999;
    font-size: 12px;
    color: #fff;
    text-align: center;
    display: inline-block;
    padding: 5px 20px;
    line-height: 1;
}
#news .news-list .item .title{
    width: 100%;
}





/* -------------------------
Service
------------------------- */
.service-grid {
    display: grid;
    gap: 2rem 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
}
.service-item img {
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 16px;
}
.service-item p {
    font-size: .875rem;
}
.service {
    margin-bottom: 50px;
}




/* ---------------------------
Gallery
--------------------------- */
#gallery {
    margin-bottom: 32px;
}

.slide-wrapper {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.3);
}

.your-class img{
    object-fit: contain;
    height: 250px;
    margin: 0 auto;
}

.text-slider{
    text-align: center;
}







/* ---------------------------
Company
--------------------------- */
#company {
    margin-bottom: 40px;
}
#company .company-info {
    margin-bottom: 32px;
}
#company .company-info .info-table {
    width: 100%;
    max-width: 544px;
    margin: auto;
    padding: 0 10px;
    border-spacing: 0;
}
.info-table th,
.info-table td {
    border-bottom: 1px solid #c9c2bc;
}
.info-table th {
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: normal;
    padding: .7rem;
}
.info-table th img {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
}
.info-table td {
    padding: .7rem 0;
}
/* Google Map */
#company iframe {
    width:100%; 
    height:250px; 
}


/* ---------------------------
Parking
--------------------------- */
#parking {
    margin-bottom: 45px;
}
#parking .parking-map {
    margin-bottom: 20px;
}
#parking .underline {
    text-decoration: underline;
}
#parking .parking-img img {
    border-radius: 10px;
}




/* ---------------------------
Contact
--------------------------- */
/* お問い合わせ */
.email,
.business-about {
    max-width: 916px;
    background-color: #faf7f0;
    border-radius: 48px;
    padding: 1.5rem 2.5rem 1.5rem;
    margin: 0 auto 2rem;
}
.email p,
.bussiness-about p {
    margin: 1rem 0 2rem;
}
/* ボタン */
.btn {
    display: inline-block;
    font-size: 1.5rem;
    background-color: #0bd;
    color: #fff;
    border-radius: 8px;
    padding: .75rem 1.5rem;
    transition: .5s;
}
.btn:hover {
    background-color: #0090aa;
}

/* ------------------------
Cafe
------------------------- */
#cafe {
    margin: 0 auto 50px;
    max-width: 900px;
}
#cafe .img {
    border-radius: 10px;
    margin-bottom: 10px;
    max-height: 400px;
    width: 100%;
    object-fit: cover; /* アスペクト比を保ちながら領域を埋める */
    display: block; /* インライン要素の余分な空白を削除 */
}
#cafe .text {
    text-align: center;
}

#calendar .calendar_title {
    margin: 45px 0 20px;
    font-size: 20px;
    color: #432;
    font-weight: bold;
    text-align: center;
}

/* ------------------------
SNS
------------------------- */
.sns-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 2rem;
    margin: 0 auto;
    max-width: 800px;
}
.sns-item .heading-medium {
    margin-bottom: .5rem;
}

.sns-item iframe{
    margin-left: auto !important;
    margin-right: auto !important;
}


/* -----------------------------
フッター
-------------------------------- */
.page-footer {
    background-image: url(../images/footer-s.webp);
    background-size: cover;
    background-position: center;
    padding-top: 12rem;
}
.info-small {
    width: 100%;
    max-width: 544px;
    margin: auto;
    padding: 0 1.5rem;
    border-spacing: 0;
}
.info-small th,
.info-small td {
    border-bottom: 1px solid #c9c2bc;
}
.info-small th {
    text-align: left;
    font-weight: normal;
    padding: 1rem;
}
.info-small td {
    padding: 1rem 0;
}
.copyright {
    background-color: #432;
    text-align: center;
    padding: 2rem 0;
    margin-top: 6rem;
    color: #fff;
}










/* ---------------------------
デスクトップ版
--------------------------- */
@media (min-width: 767px) {
    /* 見出し */
    /* ヘッダー */

    /* 形成編集　START */
    #header .hamburger{
        display: none;
    }

    #header .navi{
        right: 0;
        height: auto;
        background-color: transparent;
        position: static;
    }
    #header .navi .menu {
        gap: 0;
        display: flex;
        flex-direction: row;
        height: auto;
        padding-top: 0px;
        justify-content: flex-end;
    }
    #header .navi .menu li {
        margin-left: 0;
        margin-right: 20px;
        padding: 0;
    }
    #header .navi .menu li:last-child {
        margin-right: 30px;
    }



    .cover {
        background-image: url(../images/cover-home-l.jpg);
    }




    /* About */
    .business-about {
        margin: 4rem auto 3rem;
    }
    .business-about p {
        text-align: center;
        margin-bottom: 1rem;
        line-height: 2;
    }

    /* News */
    #news {
        padding: 0 30px;
    }

    /* Service */
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
    .service-item img {
        margin-bottom: .5rem;
    }
    .service-item p {
        font-size: 1rem;
    }

    /* Gallery */
    .slide-wrapper {
        height: 400px;
    }
    .your-class img{
        height: 400px;
    }

    /* Company */
    #company {
        display: flex;
        gap: 2rem;
    }
    .company-info {
        width: 40%;
    }
    .company-info .info-table th {
        padding-left: 2rem;
    }
    .location-map {
        padding-top: 100px;
        width: 60%;
    }
    .email {
        margin-bottom: 4rem;
    }
    #company iframe {
        max-height: none;
    }
    #company iframe {
        width:100%;
        height:400px;
    }

    /* Parking */
    #parking .parking-info {
        display: flex;
        gap: 2rem;
    }
    #parking .parking-img p {
        text-align: center;
    }

    /* SNS */
    .sns h3 {
        margin-bottom: 1.5rem;
    }
    .sns-item {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
        margin-bottom: 0;
    }
    .sns-item{
        flex: 1;
    }

    /* footer */
    .heading-large {
        font-size: 4rem;
    }
    .page-footer {
        background-image: url(../images/footer-l.webp);
        padding-top: 12rem;
    }
    .info-small th {
        padding-left: 2.5rem;
    }
}




