@charset "utf-8";

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

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

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

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header ul {
    display: flex;
    justify-content: flex-end;
}

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

.header ul a {
    font-weight: 600;
    transition: 0.3s;
}

.header ul a:hover {
    color: var(--tertiary);
}

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

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

.mv .mv_text {
    width: 23%;
    min-width: 458px;
    height: 8%;
    min-height: 70px;
    position: absolute;
    top: 20%;
    right: 20%;
}

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

.introduction-list {
    max-width: 1280px;
    margin: 0 0 0 -40px;
    display: flex;
    flex-wrap: wrap;
}

.introduction-list .list-item {
    width: calc(100% / 3 - 40px);
    margin: 0 0 0 40px;
    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: 20px;
    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 80px;
    background-color: var(--primary);
    font-weight: 700;
}

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

.footer .container {
    display: flex;
}

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

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

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

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

.footer .right {
    margin: 0 0 0 auto;
}

.footer .right a {
    padding: 8px 0;
    display: block;
}

.footer .right a:hover {
    text-decoration: underline;
}

.footer .copyright {
    margin: 64px 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: .3s;
}

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