@charset "utf-8";
/*
Template: 
Theme Name: 
*/


/* -----------------------------------------------------------
	テーブル
----------------------------------------------------------- */

tr {
    border-bottom: 1px solid var(--border-color);
}

th {
    width: 320px;
    border-collapse: collapse;
    text-align: left;
    padding: 15px 0;
    vertical-align: top;
}

td {
    width: auto;
    border-collapse: collapse;
    padding: 15px;
    vertical-align: top;
}


@media screen and (max-width: 768px) {

th {
    width: 150px;
    font-size: 15px;
    padding: 12px 10px;
}

td {
    width: auto;
    padding: 12px 10px;
}

}


/* -----------------------------------------------------------
	詳細を見るボタン
----------------------------------------------------------- */

a.more_btn {
    width: 280px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    padding-top: 1px;
    text-decoration: none;
    margin: 40px auto 20px;
    padding-left: 10px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

a.more_btn::after {
    content: "\f178";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15px;
    padding-left: 9px;
    vertical-align: middle;
    text-decoration: none;
    position: relative;
}

a.more_btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5ab6ea;
    transform-origin: left;
    transform: scale(0, 1);
    transition: transform .3s;
    z-index: -1;
}

a.more_btn:hover::before {
    transform-origin: left bottom;
    transform: scale(1, 1);
}

a.more_btn:hover {
    text-decoration: none;
}


@media screen and (max-width: 768px) {

a.more_btn {
    width: 80%;
    max-width: 270px;
    font-size: 15px;
    margin: 30px auto 30px;
}

}


/* -----------------------------------------------------------
	トップへ戻る
----------------------------------------------------------- */

#page-top {
    position: fixed;
    bottom: 70px;
    right: 70px;
    z-index: 999;
    text-align: center;
}

#page-top a {
    white-space: nowrap;
    overflow: hidden;
    text-decoration: none;
    line-height: 0;
    font-size: 12px;
    letter-spacing: 0;
    width: 80px;
    height: 80px;
    display: block;
}

#page-top:hover {
    text-decoration: none;
}


@media screen and (max-width: 1600px) {

#page-top {
    background-size: 100%;
    position: fixed;
    bottom: 50px;
    right: 50px;
}

#page-top a {
    overflow: hidden;
    text-decoration: none;
    line-height: 0;
    width: 70px;
    height: 70px;
    display: block;
}

}


@media screen and (max-width: 1260px) {

#page-top a {
    overflow: hidden;
    text-decoration: none;
    line-height: 0;
    width: 50px;
    height: 50px;
    display: block;
}

}


@media screen and (max-width: 768px) {

#page-top {
    background-size: 100%;
    position: fixed;
    bottom: 70px;
    right: 15px;
}

}


/* -----------------------------------------------------------
	パンくずリスト
----------------------------------------------------------- */

#breadcrumbs_area {
    clear: both;
    width: 100%;
}

.breadcrumbs {
    width: 95%;
    max-width: 1100px;
    margin: 0 auto;
    font-size: 12px;
    padding: 10px 0 0;
}

.breadcrumbs a {
    color: var(--font-color-base);
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
    text-decoration: none;
}


@media screen and (max-width: 768px) {

#breadcrumbs_area {
    display: none;
}

}


/* -----------------------------------------------------------
	お問い合わせ
----------------------------------------------------------- */

.contact_tel {
    margin: 30px 0 8px;
    font-size: 44px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0px;
}

.contact_tel a {
    line-height: 70%;
    font-size: clamp(33px, 4vw, 53px);
    font-weight: 500;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
    cursor: default;
    pointer-events: none;
    text-decoration: none;
}

.contact_tel a::before {
    content: "\f095";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: clamp(22px, 3vw, 38px);
    padding-right: 7px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    display: inline-block;
}

.contact_tel a:hover {
    text-decoration: none;
}

.contact_time {
    text-align: center;
}


@media screen and (max-width: 768px) {

.contact_tel {
    text-align: center;
}

.contact_tel a {
    pointer-events: auto;
    text-decoration: none;
    cursor: pointer;
}

.contact_time {
    text-align: center;
    font-size: 14px;
    margin-bottom: 40px;
}

.contact_tel a:hover {
    opacity: 0.7;
}

}