@charset "utf-8";

/*================================================================
# スタイル
================================================================ */
/* header
------------------------------------------------------ */
.header {
    width: 100%;
    margin: 0 auto;
    padding: 16px 0 0;
    text-align: center;
}

.header h1 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header h1 a {
    width: 200px;
    display: block;
    text-align: center;
}

.header ul {
    margin: 12px 0 0 -8px;
    display: flex;
    justify-content: center;
}

.header ul li {
    margin: 0 0 0 8px;
}

.header ul a {
    padding: 8px;
    border-bottom: 3px solid var(--primary);
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
}

/* mv
------------------------------------------------------ */
.mv {
    height: 48vh;
    max-height: 640px;
    margin: 0;
    position: relative;
}

.mv .back img {
    width: 100%;
    height: 48vh;
    max-height: 640px;
    object-fit: cover;
}

.mv .mv_text {
    width: 80%;
    margin: auto;
    position: absolute;
    top: 12%;
    right: 0;
    left: 0;
}

/* 施設紹介
------------------------------------------------------ */
.introduction {
    padding: 24px 48px 40px;
    background-color: var(--bg02);
    display: flex;
    justify-content: center;
    align-items: center;
}

.introduction-list {
    display: flex;
    flex-wrap: wrap;
}

.introduction-list .list-item {
    margin: 24px 0 0;
    background-color: var(--white);
}

.introduction-list .link {
    display: block;
    transition: 0.3s;
}

.introduction-list .link:hover {
    opacity: 0.8;
}

.introduction-list .img img {
    width: 100%;
}

.introduction-list .text {
    margin: 0;
    padding: 16px 24px 18px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.introduction-list .text span {
    position: relative;
}

.introduction-list .text span:before {
    width: calc(50px / 2);
    height: calc(69px / 2);
    background: url(../img/title.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    top: -2px;
    left: -34px;
}

.introduction-list .text span:after {
    width: calc(50px / 2);
    height: calc(69px / 2);
    background: url(../img/title.png) no-repeat center top / contain;
    position: absolute;
    content: "";
    top: -2px;
    right: -34px;
    transform: scale(-1, 1);
}

/* 見出し
------------------------------------------------------ */
.heading01 {
    overflow: hidden;
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
}

.heading01 span {
    padding: 0 24px;
    position: relative;
}

.heading01 span::before,
.heading01 span::after {
    width: 100vw;
    height: 1px;
    background-color: var(--black);
    position: absolute;
    content: "";
    top: 50%;
    display: inline-block;
}

.heading01 span::before {
    left: 100%;
}

.heading01 span::after {
    right: 100%;
}

/*================================================================
# フッター
================================================================ */
.footer {
    padding: 0 0 64px;
    background-color: var(--primary);
    font-weight: 700;
}

.footer .foot {
    padding: 64px 0 0;
}

.footer .foot .left {
    text-align: center;
}

.footer .corporation {
    font-size: 12px;
}

.footer .name {
    margin: 0 0 0 4px;
    font-size: 24px;
}

.footer .address {
    margin: 16px 0 0;
    font-size: 14px;
}

.footer .tel {
    margin: 8px 0 0;
}

.footer .right {
    margin: 40px 0 0;
}

.footer .primary {
    text-align: center;
}

.footer .right a {
    padding: 12px 0;
    display: block;
    font-size: 14px;
    text-decoration: underline;
}

.footer .copyright {
    margin: 40px 0 0;
    opacity: 0.8;
    font-size: 10px;
    text-align: center;
}

/*================================================================
# ダウンロード
================================================================ */
.download {
    padding: 64px 0;
}

.download ul {
    margin: 40px 0 0;
}

.download ul li {
    margin: 24px 0 0;
    text-align: center;
}

.download ul li a {
    padding: 8px;
    transition: 0.3s;
}

.download ul li a:hover {
    color: var(--pink);
}