/* 破損していたため修正*/
body {
    margin: 0;
    padding: 0;
    font-family: "Zen Kaku Gothic New";
    font-size: 16px;
    font-weight: 400;
    color: #3e3a39;
    line-height: 1.5;
    overflow-x: hidden;
}

.content_margin {
    margin-left: 190px; /* サイドバー用 */
    margin-top: 160px; /* ヘッダー用 */
}
.container {
    max-width: 1126px;
    width: 100%;
    margin: 0 auto;
    text-align: left;
    margin-top: 80px;
}
.content {
    flex: 1;
    min-width: 0;
    display: block;
}

article {
    margin: 0 auto;
}

strong {
    font-weight: 700;
}

small {
    font-size: 12px;
    display: inline-block;
}

select {
    padding: 11.54px 18.27px;
}

textarea {
    height: 160px;
}

input::placeholder,
textarea::placeholder {
    color: #bbbbbb;
}

input[type="checkbox"],
input[type="radio"] {
    background-color: initial;
    cursor: default;
    appearance: auto;
    box-sizing: border-box;
}

picture {
    display: block;
}

ol {
    list-style-type: decimal;
}

.topic-path {
    color: #707070;
    display: none;
    margin: 48px auto 0;
}

.topic-path ul {
    display: flex;
}

.topic-path li {
    padding-right: 0.2em;
}

.topic-path li:last-child {
    padding-right: 0;
}

.topic-path li::after {
    content: "\0ff0f";
    padding-left: 0.2em;
}

.topic-path li:last-child::after {
    content: "";
    padding-left: 0;
}

.topic-path a {
    text-decoration: underline;
}

h1.title {
    text-decoration: underline;
    text-decoration-color: #00b52b;
    text-decoration-thickness: 4px;
    text-underline-position: under;
    text-underline-offset: 5px;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 80px;
}
.tel-banner {
    height: auto;
    background-color: #848484;
    margin: 16px auto 48px;
    display: block;
}

.card-image {
    width: 168px;
    height: 145px;
    background: #ccc;
    flex-shrink: 0;
}

.text-align-left {
    text-align: left;
}

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

.space-between {
    justify-content: space-between;
}
h1 {
    font-size: 30px;
    font-weight: 1000;
    line-height: 44px;
}

h3 {
    font-size: 22px;
    font-weight: 800;
}
h4 {
    font-size: 20px;
    font-weight: 500;
}
h5 {
    font-size: 18px;
    font-weight: 800;
}

/* コラム詳細 */
.title-line {
    border: 1px solid #ccc;
    margin: 20px 0 24px 0;
}

.article_body {
    margin: 40px 0;
}
.footer.content_margin {
    margin-top: 0 !important;
}

/* PC */
@media screen and (min-width: 960px) {
    .header-wrapper {
        display: none;
    }
    .content_margin {
        margin-top: 0; /* ヘッダー用 */
    }
}

@media screen and (min-width: 520px) and (max-width: 959px) {
    .header-wrapper {
        display: none;
    }
}

@media screen and (max-width: 519px) {
    .content_margin {
        margin-left: 0;
    }
}

@media screen and (max-width: 1531px) {
    .utilization-cards {
        position: relative;
        display: block;
        width: 100%;
    }
}
@media screen and (min-width: 960px) {
    .break_SP {
        display: none;
    }

    .castle {
        position: absolute;
        left: 50%;
        top: 20%;
        z-index: 0;
        pointer-events: none;
        transform: scale(1.5);
        transform-origin: center;
    }
    .none_PC {
        display: none;
    }
    .menseki {
        display: flex;
        gap: 16px;
    }
    .wave {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
    }
}
@media screen and (min-width: 520px) and (max-width: 959px) {
    .break_SP {
        display: none;
    }
    .right {
        display: none;
    }
    .none_PC {
        display: none;
    }
    .hero::before {
        display: none;
    }
    .hero-photos {
        display: none;
    }
    .city_link_list_PC {
        display: none;
    }
    .utilization-border::after {
        display: none;
    }
}

@media screen and (max-width: 519px) {
    .none-SP {
        display: none;
    }
    .hero::before {
        display: none;
    }
    .hero-photos {
        display: none;
    }

    .none_SP {
        display: none;
    }
    .utilization-border::after {
        display: none;
    }
    .content_margin {
        margin-top: 130px;
    }
}

/* 矢印ホバー用 */
.arrow-box {
    position: relative;
    color: #fff;
    width: 50px;
    height: 50px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* アニメ用の重ね矢印 */
.arrow-box::before,
.arrow-box::after {
    content: "→";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #fff;
    animation-fill-mode: forwards;
    animation-duration: 0.6s;
}

/* after は左側から入場 */
.arrow-box::after {
    transform: translate(calc(-100% - 15px), -50%);
}

/* hover 時のアニメーション */
.arrow-box:hover::before {
    animation-name: arrowRightLeft;
}

.arrow-box:hover::after {
    animation-name: arrowLeftRight;
    animation-delay: 0.18s;
}
.lists::before,
.lists::after {
    color: #000;
}
