@charset "utf-8";

body {
    font-family: "Yu Gothic", Noto Sans JP", sans-serif;
    color: #555;
    font-weight: 200;
    background-color: rgb(255, 255, 255);
    font-size: 1.2em;
}

.section_normal {
    background-color: rgb(255, 255, 255);
}

/* フォントシリーズ */
/* font-family: "Kiwi Maru", serif;
            font-family: "Klee One", cursive;
            font-family: "Noto Sans JP", sans-serif;
            font-family: "Zen Antique", serif; */

/* ヒーロー */
.hero {
    margin: 0;
}
.hero::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-image: url("");
    background-size: cover;

    /* background-image: url("");
    background-repeat: no-repeat;
    background-size: cover;
    height: 75vh;
    margin: 0;
    background-position-x: 80%;
    background-attachment: fixed; */
}
@media screen and (max-width: 600px) {
    .hero {
        margin: 0;
    }
    .hero::before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background-repeat: no-repeat;
        background-position: 80% 0%;
        background-image: url("");
        background-size: cover;
    }
}
/* ボタン */
.yaji {
    position: absolute;
    right: 10px; /*-- 右端からの距離（任意） --*/
}
.btn {
    position: relative;
    background-color: #4fbfeb;
    color: #fff;
    border: 2px solid #4fbfeb;
    transition: 0.5s;
}
.btn:hover {
    background-color: #fff;
    color: #4fbfeb;
}
button a {
    text-decoration: none;
}
/* ナブバー：ホバーアンダーライン */
nav a {
    font-size: 15px;
    font-family: "Zen Antique", sans-serif;
    font-weight: 400;
    position: relative;
    display: inline-block;
    text-decoration: none;
    margin: 0;
}
nav a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #00838f;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}
nav a:hover::after {
    transform: scale(1, 1);
}
nav a.active::after {
    display: none;
}
a.navbar-brand::after {
    background: transparent;
    content: "";
}

/* ナブバー：トグル */
.navbar-toggler {
    background-color: transparent;
    border: none;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgb(64, 170, 117)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}
.navbar .navbar-toggler[aria-expanded="true"] {
    color: transparent;
}
.navbar .navbar-toggler:focus {
    color: transparent;
}
.active {
    border-bottom: 2px solid #00838f;
}
.container-fluid {
    padding: 0;
}

/* ナブバー：スクロールで表示 */
.navbar {
    -webkit-transition: all 0.6s ease-out;
    -moz-transition: all 0.6s ease-out;
    -o-transition: all 0.6s ease-out;
    -ms-transition: all 0.6s ease-out;
    transition: all 0.6s ease-out;
}
.navbar.scrolled {
    background: rgb(255, 255, 255); /* IE */
    background: rgba(255, 255, 255, 0.95); /* NON-IE */
    box-shadow: 0px 1px 2px 0.5px rgba(050, 050, 050, 0.1);
}

/* トップページ：紹介 */
.index_about_img {
    width: 85%;
    height: auto;
    border: 8px solid #4fbfeb;
    border-radius: 50%;
    transition: 0.5s;
    overflow: hidden;
}
.index_about_img:hover {
    border: 8px solid #00838f;
    filter: drop-shadow(0px 0px 5px rgba(158, 158, 158, 0.6));
}

/* トップページ：施設 */
.index_feature_img {
    width: 100%;
    filter: drop-shadow(5px 5px 0px rgba(247, 253, 252, 1));
}
/* トップページ：お知らせ */
.index_news {
    display: inline-block;
    background-color: #b9dfcd;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.5rem;
    color: #fff;
}
.table {
    color: #666;
}

/* トップページ：お問い合わせ */
.index_contact {
    color: #666;
    text-decoration: none;
    font-weight: 600;
}
.index_contact:hover {
    color: #00838f;
}

/* トップページ：SNS */
.index_sns {
    font-size: 2rem;
    color: #b9dfcd;
    text-decoration: none;
    margin-right: 5px;
}
.index_sns:hover {
    color: #00838f;
}

/* 最上部へのリンクボタン */
.pagetop {
    position: fixed;
    bottom: 12px;
    right: 12px;
}
.pagetop a {
    color: #4fbfeb;
    display: block;
    text-decoration: none;
}
.pagetop:hover {
    opacity: 0.85;
}

/* フッター：住所 */
.adrs {
    text-align: left;
    color:#666;
}
@media screen and (max-width: 600px) {
    .adrs {
        text-align: center;
        color: #666;
    }
}

/* テーブル内vertical-align */
.tblv {
    vertical-align: middle;
    border-spacing: 50px 0px;
}

