@charset "utf-8";
/* @import url('./reset.css'); */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

/*---------------------------------

common

---------------------------------*/

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
    color: #333;
    background: #fff;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    font-size: 1em;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
}

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

a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

a:link,
a:visited {
    color: #000;
    text-decoration: none;
}

a:hover,
a:active {
    color: #0b6e3a;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
}

p {
    margin: 0;
}

dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

button {
    font-family: inherit;
}

address {
    font-style: normal;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

/*---------------------------------

icon

---------------------------------*/

.arrow01::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    background-image: url("../img/arrow01.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
}

/*---------------------------------

accessibility

---------------------------------*/

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/*---------------------------------

company page

---------------------------------*/

main {
    width: 100%;
    background: #fff;
}

.page-section {
    padding: 55px 0 60px;
}

.section_title {
    text-align: center;
    margin-bottom: 45px;
}

.section_title h2 {
    display: inline-block;
    position: relative;
    margin: 0;
    padding-bottom: 20px;
    color: #333;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.4;
}

.section_title h2::after {
    content: "";
    width: 45px;
    height: 4px;
    background: #54ff68;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.content-inner {
    width: 82%;
    max-width: 1080px;
    margin: 0 auto;
}


/*---------------------------------

company section

---------------------------------*/

.company-section {
    padding-top: 40px;
}

.info-table {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 30% 70%;
    border-top: 1px solid #333;
    border-left: 1px solid #333;
    background: #fff;
}

.info-table dt,
.info-table dd {
    min-height: 70px;
    margin: 0;
    padding: 18px 24px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    box-sizing: border-box;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

.info-table dt {
    background: #d8d4d4;
    font-weight: 600;
}

.info-table dd {
    background: #fff;
}


/*---------------------------------

documents section

---------------------------------*/

.documents-section {
    padding-top: 70px;
    padding-bottom: 90px;
}

.document-card-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.document-card {
    padding: 24px 24px 22px;
    background: #fff;
    border: 1px solid #dfe8df;
    border-top: 5px solid #17a258;
    border-radius: 6px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.05);
}

.document-card h3 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e5e5;
    color: #0b6e3a;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
}

.document-card ul {
    margin: 0;
    padding: 0;
}

.document-card li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
    list-style: none;
}

.document-card li:last-child {
    border-bottom: none;
}

.document-card li span {
    color: #333;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.5;
}

.document-card li a {
    flex-shrink: 0;
    min-width: 92px;
    padding: 7px 12px;
    border: 1px solid #17a258;
    border-radius: 999px;
    color: #17a258;
    background: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
}

.document-card li a:hover {
    color: #fff;
    background: #17a258;
}


/*---------------------------------

company page responsive

---------------------------------*/

@media screen and (max-width: 1024px) {
    .content-inner {
        width: 86%;
    }

    .info-table {
        grid-template-columns: 32% 68%;
    }

    .info-table dt,
    .info-table dd {
        min-height: 64px;
        padding: 16px 20px;
        font-size: 0.9rem;
    }

    .document-card-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .page-section {
        padding: 40px 0 45px;
    }

    .section_title {
        margin-bottom: 30px;
    }

    .section_title h2 {
        font-size: 1.45rem;
    }

    .content-inner {
        width: 90%;
        max-width: none;
    }

    .company-section {
        padding-top: 35px;
    }

    .info-table {
        display: block;
        border-top: 1px solid #333;
        border-left: 1px solid #333;
        border-right: 1px solid #333;
    }

    .info-table dt,
    .info-table dd {
        min-height: auto;
        padding: 13px 15px;
        border-right: none;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .info-table dt {
        border-bottom: none;
    }

    .info-table dd {
        border-bottom: 1px solid #333;
    }

    .documents-section {
        padding-top: 50px;
        padding-bottom: 65px;
    }

    .document-card-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .document-card {
        padding: 20px 18px;
    }

    .document-card h3 {
        font-size: 1.05rem;
    }
}

@media screen and (max-width: 480px) {
    .content-inner {
        width: 92%;
    }

    .info-table dt,
    .info-table dd {
        padding: 12px 13px;
        font-size: 0.85rem;
    }

    .document-card li {
        display: block;
    }

    .document-card li span {
        display: block;
        margin-bottom: 8px;
    }

    .document-card li a {
        display: inline-block;
    }
}



/*---------------------------------

amount page

---------------------------------*/

.amount-section {
    padding-top: 40px;
    padding-bottom: 90px;
}

.content-inner--amount {
    width: 52%;
    max-width: 1080px;
    margin: 0 auto;
}


/*---------------------------------

amount table

---------------------------------*/

.amount-table {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.amount-table-head {
    padding: 16px 20px;
    background: #bfbaba;
    color: #222;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.amount-table-category {
    grid-column: 1 / -1;
    padding: 16px 20px;
    background-size: auto auto;
    background-color: #fff;
    background-image: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 10px,
        rgba(1, 255, 35, 0.1) 10px,
        rgba(1, 255, 35, 0.1) 20px
    );
    color: #222;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

.amount-table-item,
.amount-table-price {
    min-height: 82px;
    padding: 22px 20px;
    display: flex;
    align-items: center;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
}

.amount-table-item {
    justify-content: flex-start;
}

.amount-table-price {
    justify-content: flex-start;
}


/*---------------------------------

amount information

---------------------------------*/

.amount-info-list {
    margin-top: 70px;
}

.amount-info-list ul {
    margin: 0;
    padding: 0;
}

.amount-info-list li {
    margin-bottom: 22px;
    list-style: none;
}

.amount-info-title {
    margin: 0 0 10px;
    color: #222;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.6;
}

.amount-info-text {
    margin: 0 0 8px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.8;
}

.amount-info-icon,
.amount-attention-icon {
    width: 20px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.attention span {
    text-decoration: wavy underline rgb(126, 125, 125);
}

.font-bold {
    font-weight: 700;
}


/*---------------------------------

amount note

---------------------------------*/

.amount-ex-text {
    width: 75%;
    margin: 150px auto 0;
    padding: 15px;
    border: 1px solid #01FF232E;
    border-radius: 15px;
    background-size: auto auto;
    background-color: rgba(255, 255, 255, 1);
    background-image: repeating-linear-gradient(
        135deg,
        transparent,
        transparent 10px,
        rgba(1, 255, 35, 0.1) 10px,
        rgba(1, 255, 35, 0.1) 20px
    );
    font-weight: 700;
}

.amount-ex-text p {
    margin: 0 0 12px;
    color: #333;
    font-size: 0.88rem;
    line-height: 1.8;
}

.amount-ex-text p:last-child {
    margin-bottom: 0;
}


/*---------------------------------

amount responsive

---------------------------------*/

@media screen and (max-width: 1024px) {
    .content-inner--amount {
        width: 66%;
        max-width: 1080px;
    }
}

@media screen and (max-width: 768px) {
    .amount-section {
        padding-top: 35px;
        padding-bottom: 65px;
    }

    .content-inner--amount {
        width: 90%;
        max-width: none;
    }

    .amount-table-head {
        padding: 14px 12px;
        font-size: 0.85rem;
    }

    .amount-table-category {
        padding: 14px 12px;
        font-size: 0.9rem;
    }

    .amount-table-item,
    .amount-table-price {
        min-height: auto;
        padding: 18px 12px;
        font-size: 0.88rem;
    }

    .amount-info-list {
        margin-top: 50px;
    }

    .amount-info-list li {
        margin-bottom: 20px;
    }

    .amount-info-title {
        font-size: 0.95rem;
    }

    .amount-info-text {
        font-size: 0.88rem;
    }

    .amount-ex-text {
        width: 90%;
        margin-top: 70px;
        padding: 18px 16px;
    }

    .amount-ex-text p {
        font-size: 0.82rem;
    }
}

@media screen and (max-width: 480px) {
    .content-inner--amount {
        width: 92%;
    }

    .amount-table {
        grid-template-columns: 1fr;
    }

    .amount-table-head {
        display: none;
    }

    .amount-table-category {
        padding: 14px;
    }

    .amount-table-item {
        padding: 16px 14px 4px;
        font-weight: 700;
    }

    .amount-table-price {
        padding: 0 14px 18px;
    }

    .amount-info-icon,
    .amount-attention-icon {
        width: 18px;
        margin-right: 8px;
    }

    .amount-ex-text {
        width: 100%;
        margin-top: 55px;
    }
}

/*---------------------------------

contact page

---------------------------------*/

.contact-section {
    padding-top: 40px;
    padding-bottom: 90px;
}

.content-inner--contact {
    width: 72%;
    max-width: 1080px;
    margin: 0 auto;
}

.contact-form {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.form-list {
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid #e5e5e5;
}

.form-row:first-child {
    border-top: 1px solid #e5e5e5;
}

.form-label {
    color: #333;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.6;
}

.form-label label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.required {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    background: #17a258;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.form-field {
    width: 100%;
}

.form-input,
.form-textarea {
    width: 100%;
    border: 1px solid #d8d8d8;
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-family: inherit;
    font-size: 0.95rem;
    line-height: 1.6;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input {
    min-height: 44px;
    padding: 10px 14px;
}

.form-textarea {
    min-height: 180px;
    padding: 12px 14px;
    resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #17a258;
    outline: none;
    box-shadow: 0 0 0 3px rgba(23, 162, 88, 0.12);
}

.form-input::placeholder {
    color: #aaa;
}

.form-button-area {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.form-button {
    min-width: 160px;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid #17a258;
    border-radius: 999px;
    background: #17a258;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-button:hover {
    opacity: 0.8;
}

.form-button--reset {
    background: #fff;
    color: #17a258;
}


/*---------------------------------

contact responsive

---------------------------------*/

@media screen and (max-width: 1024px) {
    .content-inner--contact {
        width: 82%;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding-top: 35px;
        padding-bottom: 65px;
    }

    .content-inner--contact {
        width: 90%;
        max-width: none;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0;
    }

    .form-label {
        font-size: 0.9rem;
    }

    .form-input {
        min-height: 42px;
        font-size: 0.9rem;
    }

    .form-textarea {
        min-height: 160px;
        font-size: 0.9rem;
    }

    .form-button-area {
        margin-top: 32px;
        gap: 12px;
    }

    .form-button {
        min-width: 140px;
        min-height: 42px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .content-inner--contact {
        width: 92%;
    }

    .form-button-area {
        display: block;
    }

    .form-button {
        width: 100%;
        margin-bottom: 12px;
    }

    .form-button:last-child {
        margin-bottom: 0;
    }
}
/*---------------------------------

mail confirm page

---------------------------------*/

#formWrap {
    width: 82%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 0 90px;
}

#formWrap h2 {
    display: block;
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 20px;
    color: #333;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

#formWrap h2::after {
    content: "";
    width: 45px;
    height: 4px;
    background: #54ff68;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

#formWrap p {
    margin: 0 0 35px;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.8;
}

.formTalbe {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    border-top: 1px solid #e5e5e5;
}

.formTalbe dt,
.formTalbe dd {
    margin: 0;
    padding: 18px 20px;
    border-bottom: 1px solid #e5e5e5;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
    box-sizing: border-box;
}

.formTalbe dt {
    background: #f7f7f7;
    font-weight: 700;
}

.formTalbe dd {
    background: #fff;
    word-break: break-word;
}

#formWrap form > p:last-child {
    margin-top: 40px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.form-Btn {
    min-width: 150px;
    min-height: 44px;
    padding: 0 24px;
    border: 1px solid #17a258;
    border-radius: 999px;
    background: #17a258;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    transition: 0.3s ease;
}

.form-Btn:hover {
    opacity: 0.8;
}

input[type="button"].form-Btn {
    background: #fff;
    color: #17a258;
}


/*---------------------------------

mail confirm responsive

---------------------------------*/

@media screen and (max-width: 768px) {
    #formWrap {
        width: 90%;
        padding: 35px 0 65px;
    }

    #formWrap h2 {
        font-size: 1.45rem;
        margin-bottom: 25px;
    }

    #formWrap p {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .formTalbe {
        display: block;
        max-width: none;
    }

    .formTalbe dt,
    .formTalbe dd {
        padding: 13px 15px;
        font-size: 0.9rem;
    }

    .formTalbe dt {
        border-bottom: none;
    }

    .formTalbe dd {
        border-bottom: 1px solid #e5e5e5;
    }

    #formWrap form > p:last-child {
        display: block;
        margin-top: 32px;
    }

    .form-Btn {
        width: 100%;
        margin-bottom: 12px;
        min-height: 42px;
        font-size: 0.9rem;
    }

    .form-Btn:last-child {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    #formWrap {
        width: 92%;
    }

    .formTalbe dt,
    .formTalbe dd {
        padding: 12px 13px;
        font-size: 0.85rem;
    }
}
/*---------------------------------

top page

---------------------------------*/

/*---------------------------------
 hero
---------------------------------*/

.hero-section {
    width: 100%;
    padding: 0;
}

.indeximg {
    width: 100%;
    height: 80vh;
    margin: 0;
    padding: 0;
    background-image: url("../img/index03.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.indeximg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 1;
}

.indeximg .catch {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 90%;
    margin: 0;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.9;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
    z-index: 2;
}


/*---------------------------------
 news
---------------------------------*/

.news-section {
    padding-top: 60px;
    padding-bottom: 70px;
}

.topics {
    width: 76%;
    max-width: 1080px;
    margin: 0 auto;
}

.news-list {
    margin: 0;
    padding: 0;
    border-top: 1px solid #e5e5e5;
}

.news-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    column-gap: 28px;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #e5e5e5;
    list-style: none;
}

.topics_day {
    color: #0b6e3a;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
}

.topics_text {
    margin: 0;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.7;
}

.more_btn {
    margin-top: 24px;
    text-align: right;
}

.arrow-to-right {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b6e3a;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
}

.arrow-to-right:hover {
    color: #0b6e3a;
    opacity: 0.7;
}

.fa-position-right {
    font-size: 0.9rem;
}


/*---------------------------------
 business
---------------------------------*/

.business-section {
    padding: 0;
}

.business-bg {
    position: relative;
    width: 100%;
    padding: 40px 0;
    overflow: hidden;
    z-index: 0;
}

.business-bg::before {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    background-image: url("../img/index02.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    filter: blur(5px);
    z-index: -2;
}

.business-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: -1;
}

.business-bg .content-inner {
    position: relative;
    z-index: 1;
}

.business-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    text-align: center;
}

.bus-list {
    background-color: rgba(255, 255, 255, 0.68);
    padding: 28px 14px 24px;
}

.bus-img {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 145px;
}

.bus-img img {
    max-width: 150px;
    height: auto;
}

.bus-text {
    margin-top: 18px;
    text-align: center;
}

.bus-text p {
    display: inline-block;
    margin: 0;
    color: #ffffff;
    letter-spacing: 4px;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6;
    text-shadow:
        2px 2px 1px #0b6e3a,
        -2px 2px 1px #0b6e3a,
        2px -2px 1px #0b6e3a,
        -2px -2px 1px #0b6e3a,
        2px 0px 1px #0b6e3a,
        0px 2px 1px #0b6e3a,
        -2px 0px 1px #0b6e3a,
        0px -2px 1px #0b6e3a;
}


/*---------------------------------
 access
---------------------------------*/

.access-section {
    padding-top: 70px;
    padding-bottom: 90px;
}

.access_map {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.access_addr {
    margin: 0 0 24px;
    color: #333;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.7;
}

.gmap {
    width: 100%;
    margin: 0 auto;
}

.gmap iframe {
    width: 90%;
    max-width: 1080px;
    height: 450px;
    border: 0;
}

.pdf_link {
    width: 90%;
    max-width: 1080px;
    margin: 40px auto 0;
    padding: 0;
}

.pdf_link li {
    margin-bottom: 10px;
    list-style: none;
}

.pdf_link li a {
    display: inline-block;
    position: relative;
    padding-left: 22px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.7;
    text-decoration: none;
}

.pdf_link li a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #17a258;
    font-weight: 700;
}

.pdf_link li a:hover {
    color: #0b6e3a;
}


/*---------------------------------
 top responsive
---------------------------------*/

@media screen and (max-width: 1024px) {
    .indeximg {
        height: 70vh;
        background-position: center top;
    }

    .indeximg .catch {
        font-size: 1.7rem;
    }

    .topics {
        width: 86%;
    }

    .business-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bus-img img {
        max-width: 135px;
    }

    .bus-text p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .indeximg {
        height: 50vh;
    }

    .indeximg .catch {
        width: 88%;
        font-size: 1.25rem;
        line-height: 1.8;
    }

    .news-section {
        padding-top: 45px;
        padding-bottom: 55px;
    }

    .topics {
        width: 90%;
    }

    .news-item {
        grid-template-columns: 1fr;
        row-gap: 4px;
        padding: 15px 0;
    }

    .topics_day {
        font-size: 0.85rem;
    }

    .topics_text {
        font-size: 0.9rem;
    }

    .more_btn {
        text-align: left;
    }

    .business-bg {
        padding: 35px 0;
    }

    .bus-img {
        min-height: 125px;
    }

    .bus-img img {
        max-width: 120px;
    }

    .bus-text {
        margin-top: 14px;
    }

    .bus-text p {
        font-size: 1rem;
    }

    .access-section {
        padding-top: 55px;
        padding-bottom: 65px;
    }

    .gmap iframe {
        width: 100%;
        height: 340px;
    }

    .pdf_link {
        width: 100%;
        margin-top: 32px;
    }
}

@media screen and (max-width: 600px) {
    .indeximg {
        height: 34vh;
    }

    .indeximg .catch {
        width: 90%;
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .business-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .bus-list {
        max-width: 320px;
        width: 100%;
        margin: 0 auto;
        padding: 24px 14px 22px;
    }
}

@media screen and (max-width: 480px) {
    .indeximg {
        height: 30vh;
    }

    .indeximg .catch {
        font-size: 0.85rem;
    }

    .gmap iframe {
        height: 300px;
    }

    .pdf_link li a {
        font-size: 0.85rem;
    }
}
@media screen and (max-width: 1024px) {
    .bus-text p {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
}

@media screen and (max-width: 768px) {
    .bus-text {
        margin-top: 14px;
    }

    .bus-text p {
        font-size: 1rem;
        letter-spacing: 2px;
    }
}