@charset "utf-8";
/* ベース設定 */

/* すべての要素に適用 */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:target {
  background-color: #e8f4ff;
  padding: 8px;
  border-radius: 6px;
}


html {
    background-color: #FDFAF6;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: #FDFAF6;
    font-size: 1rem;
    margin: 0px;
    font-family: "Yu Mincho", "Noto Serif JP", serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;

}

/* ===============================
header
=============================== */

.m-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    background: #fff;

    z-index: 1000;
}


/* ===============================
header inner
=============================== */

.m-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    height: 50px;
    padding: 0 16px;
}


/* ===============================
logo
=============================== */

.m-header__logo a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.m-header__logo img {
    height: 50px;
    width: auto;
}


/* ===============================
hamburger
=============================== */

.m-hamburger {
    width: 28px;
    height: 22px;

    position: relative;

    background: none;
    border: none;

    cursor: pointer;
}


/* 共通線 */

.m-hamburger span {
    position: absolute;
    left: 0;

    width: 100%;
    height: 2px;

    background: #333;

    transition: 0.3s;
}


/* 上 */

.m-hamburger span:nth-child(1) {
    top: 0;
}


/* 中 */

.m-hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}


/* 下 */

.m-hamburger span:nth-child(3) {
    bottom: 0;
}

/* 開いた状態 */

.m-hamburger.is-active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
}

.m-hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.m-hamburger.is-active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 10px;
}


/* ===============================
menu
=============================== */

.m-menu {
    position: fixed;

    top: 50px;
    left: 0;

    width: 100%;
    height: calc(100vh - 60px);

    background: #fff;

    padding: 40px 20px;

    transform: translateX(100%);
    transition: 0.4s;
}


/* JSで付けるクラス */
.m-menu.is-active {
    transform: translateX(0);
}


.menu-open {
    height: 100vh;
    overflow: hidden;
}

/* ===============================
menu list
=============================== */

.m-menu__list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.m-menu__item {
    border-bottom: 1px solid #eee;
}


.m-menu__item a {
    display: block;

    padding: 16px 0;

    text-decoration: none;
    color: #333;

    font-size: 16px;
}


/* ===============================
contact button
=============================== */

.m-menu__contact {
    margin-top: 30px;
}


.m-contact-button {
    display: block;

    text-align: center;

    padding: 4px;

    background: #222;
    color: #fff;

    text-decoration: none;

    border-radius: 6px;
}


/* ===============================
sns
=============================== */

.m-menu__sns {
    list-style: none;

    margin-top: 30px;
    padding: 0;

    display: flex;
    gap: 20px;
}


.m-menu__sns a {
    font-size: 40px;
    color: #333;
}








/* ===============================
HEADER
=============================== */

.area-header {

    text-align: center;

    margin-bottom: 50px;

}

.area-title {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 10px;

}

.area-subtitle {

    color: #007ACC;

    letter-spacing: 2px;

    font-size: 14px;

}


/* ===============================
CONTACT AREA
=============================== */

.contact-area {

    padding: 80px 20px;

    background: linear-gradient(180deg, #f8fbff, #ffffff);

}

/* ===============================
COMPANY
=============================== */

.company-contents {

    text-align: center;

    margin-bottom: 40px;

}

.company-name {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 15px;

}

.company-contents img {

    width: 120px;

    height: auto;

}


/* ===============================
CONTACT CONTENTS
=============================== */

.contact-contents {

    max-width: 900px;

    margin: auto;

    display: grid;

    gap: 25px;

}


/* ===============================
CARD
=============================== */

.contact-left,
.contact-right {

    background: #ffffff;

    padding: 30px;

    border-radius: 12px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);

    text-align: center;

}


/* ===============================
LINE BUTTON
=============================== */

.line-btn {

    background: #06C755;

    color: #fff;

    border: none;

    padding: 16px 30px;

    font-size: 18px;

    font-weight: bold;

    border-radius: 50px;

    cursor: pointer;

    transition: 0.3s;

}

.line-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);

}


/* ===============================
LINE TEXT
=============================== */

.line-time {

    margin-top: 10px;

    font-size: 14px;

    color: #666;

}


/* ===============================
TEL
=============================== */

.tel-label {

    font-size: 14px;

    margin-bottom: 10px;

}

.tel-link {

    font-size: 28px;

    font-weight: bold;

    color: #007ACC;

    text-decoration: none;

}

.tel-link:hover {

    text-decoration: underline;

}


/* ===============================
COMPANY INFO
=============================== */

.company-info {

    max-width: 900px;

    margin: 60px auto;

}

.company-info ul {

    list-style: none;

    padding: 0;

}

.company-info li {

    display: flex;

    justify-content: space-between;

    padding: 15px 0;

    border-bottom: 1px solid #eee;

}

.label {

    font-weight: bold;

    color: #666;

    width: 120px;

}

.value {

    text-align: right;

}


/* ===============================
MAP
=============================== */

.map {

    max-width: 1000px;

    margin: 60px auto 0;

}

.map iframe {

    width: 100%;

    height: 350px;

    border-radius: 12px;

}

.footer {
    text-align: center;
}












/* ===============================
PC menu
=============================== */

@media (min-width: 768px) {

    html {
        font-size: 20px;
    }

    body {
        font-size: 1rem;
    }

    .inner {
        max-width: 1366px;
        margin: 0 auto;
    }

    .m-header {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1366px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* header */
    .m-header__inner {
        padding: 0;
    }

    .m-header__logo img {
        height: 64px;
    }


    /* hamburger 非表示 */
    .m-hamburger {
        display: none;
    }


    /* menu */
    .m-menu {
        position: static;

        transform: none;

        height: auto;

        display: flex;
        align-items: center;
        justify-content: space-between;

        max-width: 1100px;
        margin: 0 auto;

        padding: 0 16px;
    }


    /* メニュー横並び */
    .m-menu__list {
        display: flex;
        gap: 32px;
    }


    /* 下線削除 */
    .m-menu__item {
        border-bottom: none;
    }


    /* リンク */
    .m-menu__item a {
        padding: 10px 0;
        font-size: .925rem;
    }


    /* contact */
    .m-menu__contact {
        margin-top: 0;
        margin-left: 24px;
    }


    /* sns */
    .m-menu__sns {
        margin-top: 0;
        margin-left: 20px;
    }





    .area-title {

        font-size: 32px;

    }



    .contact-area {

        padding: 100px 20px;

    }

    .contact-contents {

        grid-template-columns: 1fr 1fr;

    }

    .tel-link {

        font-size: 32px;

    }
}