@charset "UTF-8";

/* ========================================
   Base
======================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    color: #222;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    color: inherit;
}

/* ========================================
   Login Page
======================================== */

.hasca-login-body {
    min-height: 100vh;
    background-color: #00a862;
    background-image: url("../images/login_grid_pattern.png");
    background-repeat: repeat;
    background-position: center top;
    background-size: 120px 120px;
    overflow-x: hidden;
}

.hasca-login-page {
    position: relative;
    min-height: 100vh;
    padding: 68px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* 左側アイコン */
.hasca-login-page::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 260px;
    height: 100%;
    background-image: url("../images/login_left_icon.png");
    background-repeat: repeat-y;
    background-position: left top;
    background-size: 260px auto;
    pointer-events: none;
    z-index: 1;
}

/* 右側アイコン */
.hasca-login-page::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 260px;
    height: 100%;
    background-image: url("../images/login_right_icon.png");
    background-repeat: repeat-y;
    background-position: right top;
    background-size: 260px auto;
    pointer-events: none;
    z-index: 1;
}

.hasca-login-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    padding: 48px 58px 58px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.hasca-login-heading {
    margin-bottom: 38px;
    text-align: center;
}

.hasca-login-title-logo {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 20px;
}

.hasca-login-title-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.hasca-login-heading h1 {
    margin: 0 0 20px;
    color: #009b5a;
    font-size: 50px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.08em;
}

.hasca-login-heading p {
    margin: 0;
    color: #444;
    font-size: 20px;
    font-weight: 700;
}

.hasca-login-error {
    margin-bottom: 24px;
    padding: 14px 16px;
    color: #d90000;
    font-size: 16px;
    font-weight: 700;
    background: #fff0f0;
    border: 1px solid #ffb8b8;
    border-radius: 10px;
}

.hasca-login-form {
    display: grid;
    gap: 28px;
}

.hasca-form-field label {
    display: block;
    margin-bottom: 10px;
    color: #222;
    font-size: 22px;
    font-weight: 900;
}

.hasca-form-field input {
    width: 100%;
    height: 70px;
    padding: 12px 18px;
    color: #222;
    font-size: 22px;
    border: 3px solid #d8d8d8;
    border-radius: 12px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hasca-form-field input:focus {
    border-color: #00a862;
    box-shadow: 0 0 0 4px rgba(0, 168, 98, 0.18);
}

.hasca-login-button {
    width: 100%;
    margin-top: 22px;
    padding: 20px 20px 19px;
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.08em;
    cursor: pointer;
    background: #f75a22;
    border: none;
    border-radius: 999px;
    box-shadow: 0 12px 0 #c84416;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hasca-login-button:hover {
    transform: translateY(3px);
    box-shadow: 0 9px 0 #c84416;
}

.hasca-login-button:active {
    transform: translateY(10px);
    box-shadow: 0 2px 0 #c84416;
}

/* ========================================
   Temporary LP Page
======================================== */

.hasca-lp-body {
    min-height: 100vh;
    background: #f5f5f5;
}

.hasca-lp-placeholder {
    max-width: 900px;
    margin: 80px auto;
    padding: 50px 24px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
}

.hasca-lp-placeholder h1 {
    margin: 0 0 16px;
    color: #00a862;
    font-size: 38px;
    font-weight: 900;
}

.hasca-lp-placeholder p {
    margin: 0 0 14px;
    font-size: 17px;
}

.hasca-lp-note {
    color: #666;
}

.hasca-logout-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 22px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: #333;
    border-radius: 999px;
}

/* ========================================
   Default Page
======================================== */

.hasca-simple-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
}

/* ========================================
   Responsive
======================================== */

@media screen and (max-width: 1200px) {
    .hasca-login-page::before,
    .hasca-login-page::after {
        width: 190px;
        background-size: 190px auto;
    }

    .hasca-login-card {
        max-width: 680px;
    }
}

@media screen and (max-width: 900px) {
    .hasca-login-page {
        padding: 48px 20px;
    }

    .hasca-login-page::before,
    .hasca-login-page::after {
        opacity: 0.45;
    }

    .hasca-login-card {
        max-width: 620px;
        padding: 42px 36px 48px;
    }

    .hasca-login-title-logo {
        max-width: 300px;
    }

    .hasca-login-heading h1 {
        font-size: 44px;
    }

    .hasca-login-heading p {
        font-size: 18px;
    }
}

@media screen and (max-width: 640px) {
    .hasca-login-body {
        background-size: 90px 90px;
    }

    .hasca-login-page {
        padding: 32px 16px;
        align-items: center;
    }

    .hasca-login-page::before,
    .hasca-login-page::after {
        width: 110px;
        background-size: 110px auto;
        opacity: 0.28;
    }

    .hasca-login-card {
        max-width: 100%;
        padding: 32px 22px 38px;
        border-radius: 18px;
    }

    .hasca-login-heading {
        margin-bottom: 30px;
    }

    .hasca-login-title-logo {
        max-width: 240px;
        margin-bottom: 16px;
    }

    .hasca-login-heading h1 {
        margin-bottom: 14px;
        font-size: 36px;
    }

    .hasca-login-heading p {
        font-size: 15px;
        line-height: 1.6;
    }

    .hasca-login-form {
        gap: 22px;
    }

    .hasca-form-field label {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .hasca-form-field input {
        height: 56px;
        font-size: 17px;
        border-radius: 10px;
    }

    .hasca-login-button {
        margin-top: 12px;
        padding: 17px 18px 16px;
        font-size: 21px;
        box-shadow: 0 9px 0 #c84416;
    }

    .hasca-login-button:hover {
        transform: translateY(2px);
        box-shadow: 0 7px 0 #c84416;
    }

    .hasca-login-button:active {
        transform: translateY(8px);
        box-shadow: 0 1px 0 #c84416;
    }
}

@media screen and (max-width: 420px) {
    .hasca-login-page {
        padding: 24px 14px;
    }

    .hasca-login-page::before,
    .hasca-login-page::after {
        display: none;
    }

    .hasca-login-card {
        padding: 30px 18px 34px;
    }

    .hasca-login-title-logo {
        max-width: 210px;
    }

    .hasca-login-heading h1 {
        font-size: 32px;
    }

    .hasca-login-heading p {
        font-size: 14px;
    }

    .hasca-form-field label {
        font-size: 16px;
    }

    .hasca-form-field input {
        height: 54px;
        font-size: 16px;
    }

    .hasca-login-button {
        font-size: 19px;
    }
}



/* ========================================
   LP Base https://hascaitem.com/
======================================== */

.hasca-lp-body {
    margin: 0;
    background: #fff;
}

.hasca-lp {
    width: 100%;
    overflow: hidden;
}

.sp-only {
    display: none;
}

/* ========================================
   Header
======================================== */

.hasca-header {
    width: 100%;
    background: #fff;
}

.hasca-header__inner {
    width: 100%;
    max-width: 1280px;
    height: 72px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hasca-header__logo {
    color: #333;
    font-size: 24px;
    font-weight: 900;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.hasca-header__contacts {
    display: flex;
    align-items: center;
    gap: 28px;
}

.hasca-header__contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hasca-header__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 4px 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.2;
}

.hasca-header__contact--kobe .hasca-header__label {
    background: #009b5a;
}

.hasca-header__contact--himeji .hasca-header__label {
    background: #1ca9d8;
}

.hasca-header__tel {
    position: relative;
    color: #009b5a;
    font-size: 31px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.hasca-header__contact--himeji .hasca-header__tel {
    color: #1ca9d8;
}

.hasca-header__tel::before {
    content: "☎";
    margin-right: 4px;
    font-size: 25px;
}

/* ========================================
   Hero
======================================== */

.hasca-hero {
    width: 100%;
    background: #00a862;
}

.hasca-hero picture,
.hasca-hero__image {
    display: block;
    width: 100%;
}

.hasca-hero__image {
    height: auto;
}

/* ========================================
   Responsive
======================================== */

@media screen and (max-width: 767px) {
    .sp-only {
        display: inline;
    }

    .hasca-header__inner {
        height: 60px;
        padding: 0;
        align-items: stretch;
    }

    .hasca-header__logo {
        width: 48%;
        padding: 9px 10px 8px 14px;
        display: flex;
        align-items: center;
        color: #333;
        font-size: 16px;
        line-height: 1.25;
        background: #fff;
    }

    .hasca-header__contacts {
        width: 52%;
        gap: 0;
    }

    .hasca-header__contact {
        flex: 1;
        min-width: 0;
        height: 60px;
        padding: 5px 6px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }

    .hasca-header__contact--kobe {
        background: #009b5a;
    }

    .hasca-header__contact--himeji {
        background: #1ca9d8;
    }

    .hasca-header__label {
        min-height: auto;
        padding: 0;
        color: #fff;
        font-size: 14px;
        background: transparent !important;
    }

    .hasca-header__tel {
        color: #fff !important;
        font-size: 0;
    }

    .hasca-header__tel::before {
        content: "☎";
        margin-right: 3px;
        font-size: 20px;
        vertical-align: middle;
    }

    .hasca-header__contact--kobe .hasca-header__tel::after {
        content: "神戸\A事務所";
        white-space: pre;
        font-size: 14px;
        line-height: 1.15;
        vertical-align: middle;
    }

    .hasca-header__contact--himeji .hasca-header__tel::after {
        content: "姫路\A事務所";
        white-space: pre;
        font-size: 14px;
        line-height: 1.15;
        vertical-align: middle;
    }

    .hasca-hero {
        background: #00a862;
    }
}

/* ========================================
   Footer
======================================== */

.hasca-footer {
    width: 100%;
    color: #fff;
    background: #4a4a4a;
}

.hasca-footer__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 58px 32px 24px;
}

.hasca-footer__main {
    display: grid;
    grid-template-columns: 1fr 1.35fr 1.35fr;
    align-items: center;
    gap: 54px;
}

.hasca-footer__brand {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hasca-footer__office {
    position: relative;
    padding-left: 34px;
}

.hasca-footer__office::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 6px;
    height: 94px;
    border-radius: 999px;
}

.hasca-footer__office--kobe::before {
    background: #00a862;
}

.hasca-footer__office--himeji::before {
    background: #1ca9d8;
}

.hasca-footer__office-title {
    margin: 0 0 18px;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.3;
}

.hasca-footer__office-address,
.hasca-footer__office-tel {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.02em;
}

.hasca-footer__copyright {
    margin: 64px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.01em;
}

/* ========================================
   Footer Responsive
======================================== */

@media screen and (max-width: 900px) {
    .hasca-footer__inner {
        padding: 48px 40px 26px;
    }

    .hasca-footer__main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hasca-footer__brand {
        text-align: center;
        font-size: 25px;
        white-space: normal;
    }

    .hasca-footer__office {
        padding-left: 26px;
    }

    .hasca-footer__office::before {
        width: 5px;
        height: 92px;
    }

    .hasca-footer__office-title {
        margin-bottom: 14px;
        font-size: 22px;
    }

    .hasca-footer__office-address,
    .hasca-footer__office-tel {
        font-size: 18px;
    }

    .hasca-footer__copyright {
        margin-top: 48px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .hasca-footer__inner {
        padding: 42px 28px 24px;
    }

    .hasca-footer__main {
        gap: 30px;
    }

    .hasca-footer__brand {
        font-size: 22px;
        line-height: 1.45;
    }

    .hasca-footer__office {
        padding-left: 22px;
    }

    .hasca-footer__office::before {
        width: 5px;
        height: 88px;
    }

    .hasca-footer__office-title {
        font-size: 20px;
    }

    .hasca-footer__office-address,
    .hasca-footer__office-tel {
        font-size: 16px;
        line-height: 1.65;
    }

    .hasca-footer__copyright {
        margin-top: 42px;
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ========================================
   Access
======================================== */

.hasca-access {
    position: relative;
    color: #fff;
    background: #00a862;
    overflow: hidden;
}

.hasca-access__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 76px 72px 76px;
}

.hasca-access__deco {
    position: absolute;
    top: 0;
    right: 76px;
    width: 88px;
    pointer-events: none;
}

.hasca-access__deco img {
    display: block;
    width: 100%;
    height: auto;
}

.hasca-access__heading {
    margin-bottom: 44px;
    text-align: center;
}

.hasca-access__heading h2 {
    margin: 0;
    color: #fff;
    font-weight: 900;
    line-height: 1;
}

.hasca-access__heading span {
    display: inline-block;
    font-size: 72px;
    letter-spacing: 0.04em;
}

.hasca-access__heading small {
    display: inline-block;
    margin-left: 20px;
    font-size: 34px;
    font-weight: 900;
    vertical-align: 8px;
}

.hasca-access__place {
    margin-bottom: 42px;
}

.hasca-access__place h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    line-height: 1.4;
}

.hasca-access__place h3 span {
    font-size: 18px;
}

.hasca-access__place p {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.hasca-access__content {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 58px;
    align-items: center;
}

.hasca-access__info {
    display: grid;
    gap: 48px;
}

.hasca-access__row {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 28px;
    align-items: start;
}

.hasca-access__label {
    min-height: 128px;
    padding: 18px 12px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.hasca-access__icon {
    display: block;
    font-size: 34px;
    line-height: 1;
}

.hasca-access__list {
    margin: 0;
    padding-left: 1.2em;
    color: #fff;
}

.hasca-access__list li {
    margin: 0 0 8px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.65;
}

.hasca-access__list li:last-child {
    margin-bottom: 0;
}

.hasca-access__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.hasca-access__map {
    width: 100%;
    height: 450px;
    background: #e5e5e5;
}

.hasca-access__map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.pc-only {
    display: inline;
}

/* ========================================
   Access Responsive
======================================== */

@media screen and (max-width: 900px) {
    .hasca-access__inner {
        padding: 64px 42px 68px;
    }

    .hasca-access__content {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .hasca-access__photo {
        max-width: 640px;
        margin: 0 auto;
    }

    .hasca-access__heading span {
        font-size: 58px;
    }

    .hasca-access__heading small {
        font-size: 28px;
    }

    .hasca-access__map {
        height: 420px;
    }
}

@media screen and (max-width: 640px) {
    .pc-only {
        display: none;
    }

    .hasca-access__inner {
        padding: 52px 22px 54px;
    }

    .hasca-access__deco {
        right: 18px;
        width: 62px;
    }

    .hasca-access__heading {
        margin-bottom: 38px;
    }

    .hasca-access__heading span {
        display: block;
        font-size: 54px;
        letter-spacing: 0.04em;
    }

    .hasca-access__heading small {
        display: block;
        margin: 12px 0 0;
        font-size: 30px;
        vertical-align: baseline;
    }

    .hasca-access__place {
        margin-bottom: 34px;
    }

    .hasca-access__place h3 {
        font-size: 25px;
        line-height: 1.45;
    }

    .hasca-access__place h3 span {
        display: block;
        margin-top: 2px;
        font-size: 18px;
    }

    .hasca-access__place p {
        font-size: 17px;
        line-height: 1.7;
    }

    .hasca-access__content {
        gap: 34px;
    }

    .hasca-access__info {
        gap: 34px;
    }

    .hasca-access__row {
        display: block;
    }

    .hasca-access__label {
        min-height: auto;
        margin-bottom: 22px;
        padding: 13px 16px;
        flex-direction: row;
        gap: 14px;
        font-size: 19px;
        line-height: 1.4;
    }

    .hasca-access__label br {
        display: none;
    }

    .hasca-access__icon {
        font-size: 30px;
    }

    .hasca-access__list {
        padding-left: 1.1em;
    }

    .hasca-access__list li {
        margin-bottom: 8px;
        font-size: 17px;
        line-height: 1.72;
    }

    .hasca-access__photo {
        margin-top: 12px;
    }

    .hasca-access__map {
        height: 430px;
    }
}

@media screen and (max-width: 420px) {
    .hasca-access__inner {
        padding: 48px 18px 48px;
    }

    .hasca-access__heading span {
        font-size: 48px;
    }

    .hasca-access__heading small {
        font-size: 26px;
    }

    .hasca-access__place h3 {
        font-size: 22px;
    }

    .hasca-access__place p {
        font-size: 15px;
    }

    .hasca-access__label {
        font-size: 17px;
    }

    .hasca-access__list li {
        font-size: 15px;
    }

    .hasca-access__map {
        height: 380px;
    }
}

/* ========================================
   Map & List
======================================== */

.hasca-maplist {
    position: relative;
    background: #fff;
    overflow: hidden;
}

.hasca-maplist__inner {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    padding: 86px 48px 92px;
}

.hasca-maplist__deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 88px;
    pointer-events: none;
}

.hasca-maplist__deco img {
    display: block;
    width: 100%;
    height: auto;
}

.hasca-maplist__heading {
    margin-bottom: 42px;
    text-align: center;
}

.hasca-maplist__heading h2 {
    margin: 0;
    color: #333;
    font-weight: 900;
    line-height: 1.2;
}

.hasca-maplist__heading span {
    display: inline-block;
    color: #00a862;
    font-size: 58px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hasca-maplist__heading small {
    display: inline-block;
    margin-left: 16px;
    color: #333;
    font-size: 26px;
    font-weight: 900;
    vertical-align: 8px;
}

.hasca-maplist__map {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto 70px;
}

.hasca-maplist__map img {
    display: block;
    width: 100%;
    height: auto;
}

.hasca-maplist__lists {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 28px;
    row-gap: 48px;
}

.hasca-maplist__category h3 {
    margin: 0 0 16px;
    padding: 8px 16px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
}

.hasca-maplist__category ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.hasca-maplist__category li {
    margin: 0 0 8px;
    color: #333;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.55;
}

.hasca-maplist__category li:last-child {
    margin-bottom: 0;
}

.hasca-maplist__category li span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    vertical-align: 1px;
}

/* category colors */

.hasca-maplist__category--office h3,
.hasca-maplist__category--office li span {
    background: #9b9b9b;
}

.hasca-maplist__category--blue h3,
.hasca-maplist__category--blue li span {
    background: #0068b7;
}

.hasca-maplist__category--cyan h3,
.hasca-maplist__category--cyan li span {
    background: #16aee4;
}

.hasca-maplist__category--teal h3,
.hasca-maplist__category--teal li span {
    background: #00a99d;
}

.hasca-maplist__category--green h3,
.hasca-maplist__category--green li span {
    background: #00a862;
}

.hasca-maplist__category--orange h3,
.hasca-maplist__category--orange li span {
    background: #f39800;
}

.hasca-maplist__category--lime h3,
.hasca-maplist__category--lime li span {
    background: #5fbb28;
}

.hasca-maplist__category--red h3,
.hasca-maplist__category--red li span {
    background: #f15a24;
}

.hasca-maplist__category--brown h3,
.hasca-maplist__category--brown li span {
    background: #b98544;
}

.hasca-maplist__category--purple h3,
.hasca-maplist__category--purple li span {
    background: #7e56a3;
}

.hasca-maplist__category--pink h3,
.hasca-maplist__category--pink li span {
    background: #e97896;
}

.hasca-maplist__category--magenta h3,
.hasca-maplist__category--magenta li span {
    background: #d64594;
}

/* ========================================
   Map & List Responsive
======================================== */

@media screen and (max-width: 900px) {
    .hasca-maplist__inner {
        padding: 76px 32px 82px;
    }

    .hasca-maplist__heading span {
        display: block;
        font-size: 52px;
    }

    .hasca-maplist__heading small {
        display: block;
        margin: 8px 0 0;
        font-size: 24px;
        vertical-align: baseline;
    }

    .hasca-maplist__map {
        margin-bottom: 48px;
    }

    .hasca-maplist__lists {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 38px;
    }
}

@media screen and (max-width: 640px) {
    .hasca-maplist__inner {
        padding: 54px 20px 64px;
    }

    .hasca-maplist__deco {
        width: 60px;
    }

    .hasca-maplist__heading {
        margin-bottom: 28px;
        text-align: left;
        padding-left: 18px;
    }

    .hasca-maplist__heading span {
        font-size: 35px;
        line-height: 1.1;
    }

    .hasca-maplist__heading small {
        margin-top: 4px;
        font-size: 16px;
        line-height: 1.4;
    }

    .hasca-maplist__map {
        margin-bottom: 34px;
    }

    .hasca-maplist__lists {
        display: block;
    }

    .hasca-maplist__category {
        margin-bottom: 24px;
    }

    .hasca-maplist__category:last-child {
        margin-bottom: 0;
    }

    .hasca-maplist__category h3 {
        margin-bottom: 12px;
        padding: 7px 12px;
        font-size: 15px;
    }

    .hasca-maplist__category li {
        margin-bottom: 7px;
        font-size: 14px;
        line-height: 1.55;
    }

    .hasca-maplist__category li span {
        width: 20px;
        height: 20px;
        margin-right: 7px;
        font-size: 12px;
    }
}

@media screen and (max-width: 420px) {
    .hasca-maplist__inner {
        padding: 48px 16px 58px;
    }

    .hasca-maplist__heading span {
        font-size: 32px;
    }

    .hasca-maplist__heading small {
        font-size: 15px;
    }
}

/* ========================================
   Seminar
======================================== */

.hasca-seminar {
    position: relative;
    background: #f5f5f5;
    overflow: hidden;
}

.hasca-seminar__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 86px 72px 92px;
}

.hasca-seminar__deco {
    position: absolute;
    top: 0;
    right: 82px;
    width: 88px;
    pointer-events: none;
}

.hasca-seminar__deco img {
    display: block;
    width: 100%;
    height: auto;
}

.hasca-seminar__heading {
    margin-bottom: 58px;
    text-align: center;
}

.hasca-seminar__heading h2 {
    margin: 0;
    color: #333;
    font-weight: 900;
    line-height: 1.2;
}

.hasca-seminar__heading span {
    display: inline-block;
    color: #8cc63f;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hasca-seminar__heading small {
    display: inline-block;
    margin-left: 26px;
    color: #333;
    font-size: 42px;
    font-weight: 900;
    vertical-align: 9px;
}

.hasca-seminar__content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: center;
}

.hasca-seminar__info {
    display: grid;
    gap: 54px;
}

.hasca-seminar__card {
    position: relative;
    padding: 54px 48px 38px;
    background: #fff;
    border: 2px solid #333;
}

.hasca-seminar__time {
    position: absolute;
    top: -25px;
    left: 42px;
    min-width: 360px;
    padding: 8px 20px 9px;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.25;
    text-align: center;
    background: #333;
}

.hasca-seminar__time span {
    margin-right: 18px;
}

.hasca-seminar__body h3 {
    margin: 0 0 18px;
    color: #333;
    font-size: 32px;
    font-weight: 900;
    line-height: 1.45;
    letter-spacing: 0.02em;
}

.hasca-seminar__body p {
    margin: 0;
    color: #333;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.7;
}

.hasca-seminar__body p span {
    margin-right: 12px;
}

.hasca-seminar__image img {
    display: block;
    width: 100%;
    height: auto;
}

/* ========================================
   Seminar Responsive
======================================== */

@media screen and (max-width: 1000px) {
    .hasca-seminar__inner {
        padding: 76px 42px 82px;
    }

    .hasca-seminar__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hasca-seminar__image {
        max-width: 420px;
        margin: 0 auto;
    }

    .hasca-seminar__heading span {
        font-size: 60px;
    }

    .hasca-seminar__heading small {
        font-size: 34px;
    }
}

@media screen and (max-width: 640px) {
    .hasca-seminar__inner {
        padding: 58px 22px 64px;
    }

    .hasca-seminar__deco {
        right: 18px;
        width: 62px;
    }

    .hasca-seminar__heading {
        margin-bottom: 48px;
        text-align: center;
    }

    .hasca-seminar__heading span {
        display: block;
        font-size: 54px;
        line-height: 1.1;
    }

    .hasca-seminar__heading small {
        display: block;
        margin: 10px 0 0;
        font-size: 31px;
        line-height: 1.35;
        vertical-align: baseline;
    }

    .hasca-seminar__info {
        gap: 46px;
    }

    .hasca-seminar__card {
        padding: 52px 22px 32px;
        border-width: 2px;
    }

    .hasca-seminar__time {
        top: -23px;
        left: 50%;
        width: calc(100% - 42px);
        min-width: 0;
        padding: 8px 8px 9px;
        transform: translateX(-50%);
        font-size: 21px;
        white-space: nowrap;
    }

    .hasca-seminar__time span {
        margin-right: 12px;
    }

    .hasca-seminar__body h3 {
        margin-bottom: 20px;
        font-size: 29px;
        line-height: 1.55;
    }

    .hasca-seminar__body p {
        font-size: 20px;
        line-height: 1.75;
    }

    .hasca-seminar__body p span {
        display: inline-block;
        margin-right: 8px;
    }

    .hasca-seminar__image {
        max-width: 360px;
        margin-top: 8px;
    }
}

@media screen and (max-width: 420px) {
    .hasca-seminar__inner {
        padding: 52px 18px 58px;
    }

    .hasca-seminar__heading span {
        font-size: 48px;
    }

    .hasca-seminar__heading small {
        font-size: 27px;
    }

    .hasca-seminar__card {
        padding: 48px 18px 28px;
    }

    .hasca-seminar__time {
        width: calc(100% - 32px);
        font-size: 18px;
    }

    .hasca-seminar__time span {
        margin-right: 10px;
    }

    .hasca-seminar__body h3 {
        font-size: 24px;
    }

    .hasca-seminar__body p {
        font-size: 16px;
    }

    .hasca-seminar__image {
        max-width: 300px;
    }
}

/* ========================================
   Free Estimate
======================================== */

.hasca-estimate {
    position: relative;
    color: #fff;
    background: #8cc63f;
    overflow: hidden;
}

.hasca-estimate__inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 76px 72px 64px;
}

.hasca-estimate__deco {
    position: absolute;
    top: 0;
    left: 70px;
    width: 88px;
    pointer-events: none;
}

.hasca-estimate__deco img {
    display: block;
    width: 100%;
    height: auto;
}

.hasca-estimate__heading {
    margin-bottom: 54px;
    text-align: center;
}

.hasca-estimate__heading h2 {
    margin: 0;
    color: #fff;
    font-weight: 900;
    line-height: 1.15;
}

.hasca-estimate__heading span {
    display: inline-block;
    font-size: 58px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hasca-estimate__heading small {
    display: inline-block;
    margin-left: 20px;
    font-size: 34px;
    font-weight: 900;
    vertical-align: 7px;
}

.hasca-estimate__slider {
    position: relative;
    overflow: hidden;
	padding-top: 38px;
}

.hasca-estimate__track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.hasca-estimate__slide {
    flex: 0 0 33.3333%;
    padding: 0 14px;
}

.hasca-estimate__card {
    position: relative;
    height: 100%;
    min-height: 390px;
    padding: 58px 28px 30px;
    color: #333;
    background: #fff;
}

.hasca-estimate__badge {
    position: absolute;
    top: -30px;
    left: 50%;
    width: 260px;
    max-width: calc(100% - 32px);
    padding: 10px 18px 12px;
    color: #333;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    background: #ffd800;
    border-radius: 999px;
    transform: translateX(-50%);
}

.hasca-estimate__badge span {
    color: #f15a24;
}

.hasca-estimate__image {
    margin-bottom: 18px;
}

.hasca-estimate__image img {
    display: block;
    width: 100%;
    height: 96px;
    object-fit: contain;
}

.hasca-estimate__body {
    color: #333;
}

.hasca-estimate__company {
    display: inline-block;
    margin: 0 0 10px;
    padding: 3px 8px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    background: #333;
}

.hasca-estimate__body h3 {
    margin: 0 0 14px;
    color: #f15a24;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.45;
}

.hasca-estimate__text {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.75;
}

.hasca-estimate__card--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.35);
    border: 2px dashed rgba(255, 255, 255, 0.8);
}

.hasca-estimate__empty {
    color: #fff;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.hasca-estimate__dots {
    margin-top: 38px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.hasca-estimate__dots button {
    width: 14px;
    height: 14px;
    padding: 0;
    cursor: pointer;
    background: #fff;
    border: none;
    border-radius: 50%;
}

.hasca-estimate__dots button.is-active {
    background: #ffd800;
}

/* ========================================
   Free Estimate Responsive
======================================== */

@media screen and (max-width: 900px) {
    .hasca-estimate__inner {
        padding: 68px 42px 58px;
    }

    .hasca-estimate__heading span {
        display: block;
        font-size: 52px;
    }

    .hasca-estimate__heading small {
        display: block;
        margin: 10px 0 0;
        font-size: 28px;
        vertical-align: baseline;
    }

    .hasca-estimate__slide {
        flex-basis: 50%;
    }
}

@media screen and (max-width: 640px) {
    .hasca-estimate__inner {
        padding: 56px 22px 50px;
    }

    .hasca-estimate__deco {
        left: 18px;
        width: 62px;
    }

    .hasca-estimate__heading {
        margin-bottom: 46px;
    }

    .hasca-estimate__heading span {
        font-size: 42px;
        line-height: 1.1;
    }

    .hasca-estimate__heading small {
        font-size: 26px;
        line-height: 1.35;
    }

    .hasca-estimate__slide {
        flex-basis: 100%;
        padding: 0 6px;
    }

    .hasca-estimate__card {
        min-height: 430px;
        padding: 62px 26px 30px;
    }

    .hasca-estimate__badge {
        top: -28px;
        width: 270px;
        padding: 11px 18px 12px;
        font-size: 25px;
    }

    .hasca-estimate__image img {
        height: 112px;
    }

    .hasca-estimate__company {
        font-size: 15px;
    }

    .hasca-estimate__body h3 {
        font-size: 21px;
        line-height: 1.5;
    }

    .hasca-estimate__text {
        font-size: 16px;
        line-height: 1.75;
    }

    .hasca-estimate__dots {
        margin-top: 30px;
        gap: 14px;
    }

    .hasca-estimate__dots button {
        width: 15px;
        height: 15px;
    }
}

@media screen and (max-width: 420px) {
    .hasca-estimate__inner {
        padding: 52px 18px 46px;
    }

    .hasca-estimate__heading span {
        font-size: 36px;
    }

    .hasca-estimate__heading small {
        font-size: 23px;
    }

    .hasca-estimate__card {
        min-height: 410px;
        padding: 56px 22px 28px;
    }

    .hasca-estimate__badge {
        width: 245px;
        font-size: 23px;
    }

    .hasca-estimate__image img {
        height: 96px;
    }

    .hasca-estimate__body h3 {
        font-size: 19px;
    }

    .hasca-estimate__text {
        font-size: 15px;
    }
}