@charset "utf-8";


/* ===============================================
   main
=============================================== */
#main {
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    #main {
        display: flex;
        flex-direction: column;
    }
}


/* ===============================================
   mv
=============================================== */
#mv {
    width: 100%;
    height: clamp(0px, 68.3vw, 820px);
    background-color: #fff;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

#mv::before {
    content: "";
    width: 100vw;
    width: 100dvw;
    height: clamp(0px, 2.5vw, 30px);
    background: url("../img/top/section_divider_zigzag.svg") repeat-x bottom left;
    background-size: auto 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
}

#mv .img_area {
    width: calc(100% - clamp(0px, 25vw, 300px));
    height: 100%;
    position: relative;
    z-index: 1;
}

#mv .img_area > div {
    width: 100%;
    height: 100%;
}

#mv .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    #mv {
        height: 77.3dvw;
    }

    #mv::before {
        width: 102vw;
        height: auto;
        aspect-ratio: 1000 / 30;
        background: url("../img/section_divider_zigzag_sp.svg") no-repeat bottom left / cover;
    }

    #mv .img_area {
        width: 100%;
    }
}

.slick-track,
.slick-slide {
    height: 100%;
}


/* ===============================================
   side
=============================================== */
#side_area {
    width: clamp(0px, 25vw, 300px);
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 4;
}

#mv_title {
    width: 100%;
    height: clamp(0px, 68.3vw, 820px);
    padding: clamp(0px, 9.6vw, 115px) clamp(0px, 3.3vw, 40px) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

#mv_title::before {
    content: "";
    width: 100%;
    height: clamp(0px, 2.5vw, 30px);
    mask: url("../img/section_divider_zigzag.svg") repeat-x bottom right / auto 100%;
    -webkit-mask: url("../img/section_divider_zigzag.svg") repeat-x bottom right / auto 100%;
    background-color: var(--color-main);
    position: absolute;
    bottom: -1px;
    left: 0;
}

#mv_title img {
    width: clamp(0px, 15.8vw, 190px);
    margin-bottom: clamp(0px, 1.7vw, 20px);
}

#mv_title h1 {
    width: 100%;
    font-size: clamp(0px, 2.7vw, 32px);
    line-height: 1.9em;
    letter-spacing: 0.12em;
    color: var(--color-main);
    white-space: nowrap;
    margin-bottom: 1em;
}

.mv_lead {
    width: 100%;
    font-size: clamp(0px, 1.3vw, 15px);
    line-height: 2.4em;
    font-weight: 700;
    color: var(--color-main);
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    #side_area {
        width: 100%;
        position: relative;
    }

    #mv_title {
        height: auto;
        padding: 10vw 0 12.5vw;
    }

    #mv_title::before {
        display: none;
    }

    #mv_title img {
        width: 30.5vw;
        margin-bottom: 3vw;
    }

    #mv_title h1 {
        font-size: 8vw;
        line-height: 1.5em;
        text-align: center;
        margin-bottom: 0.6em;
    }

    .mv_lead {
        font-size: 3.2vw;
        line-height: 2.5em;
        text-align: center;
    }
}


form button {
    width: 100%;
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--color-main);
    background-color: #fff;
    transition: background 0.3s;
}

form button:hover {
    background-color: #edf6f0;
}

#search_area {
    width: 100%;
    background-color: var(--color-main);
    color: #fff;
    padding: clamp(0px, 4.2vw, 50px) 11.5% clamp(0px, 3.3vw, 40px);
}

.search_lead {
    width: 100%;
    font-size: clamp(0px, 1.7vw, 20px);
    letter-spacing: 0.1em;
    line-height: 2em;
    padding: 0 0.2em 1.5em;
    word-spacing: normal;
    border-bottom: 1px solid #fff;
    margin-bottom: clamp(0px, 4.2vw, 50px);
}

#form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 3.3vw, 40px);
}

#form .list_title {
    font-size: clamp(0px, 1.8vw, 22px);
    text-align: center;
    margin-bottom: 0.8em;
}

@media screen and (max-width: 768px) {
    #search_area {
        width: 90vw;
        max-height: calc(100vh - 15vw - 5vh);
        max-height: calc(100dvh - 15vw - 5dvh);
        padding: 12vw 10% 13.5vw;
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        top: 30vw;
        left: 0;
        right: 0;
        margin: auto;
        z-index: 9999;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
    }
    
    #search_area.is_active {
        top: 15vw;
        opacity: 1;
        pointer-events: auto;
    }
    
    #search_area::-webkit-scrollbar {
        width: 2vw;
    }

    #search_area::-webkit-scrollbar-thumb {
        background-color: var(--color-green);
        border-radius: 10px;
    }

    .search_lead {
        font-size: 5.5vw;
        margin-bottom: 13vw;
    }

    #form {
        gap: 9vw;
    }

    #form .list_title {
        font-size: 6vw;
    }
    
    #search_close {
        width: 8.3vw;
        position: absolute;
        top: 6vw;
        right: 6vw;
        transform: rotate(180deg);
    }
}

/* キーワード検索 */
.keyword_wrap {
    width: 100%;
    position: relative;
}

.keyword_wrap input {
    width: 100%;
    height: clamp(0px, 3.3vw, 40px);
    border: none;
    padding-left: 0.7em;
    padding-right: clamp(0px, 3.3vw, 40px);
}

.keyword_wrap input::placeholder {
    font-size: clamp(0px, 1.33vw, 16px);
    font-weight: 500;
    opacity: 1;
    color: var(--color-main);
}

form button.search_click {
    width: clamp(0px, 3.3vw, 40px);
    aspect-ratio: 1 / 1;
    background: url("../img/top/search_keyword_icon.svg") no-repeat center center / contain;
    position: absolute;
    bottom: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .keyword_wrap input {
        height: 11vw;
        padding-right: 11vw;
    }

    .keyword_wrap input::placeholder {
        font-size: 4.2vw;
    }

    form button.search_click {
        width: 11vw;
    }
}

/* カテゴリーボタン */
.button_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 0.8vw, 10px);
}

.button_list li {
    width: 100%;
}

.button_list button {
    width: 100%;
    aspect-ratio: 220 / 50;
    font-size: clamp(0px, 1.4vw, 17px);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(0px, 0.3vw, 3px);
    position: relative;
    padding: 0 11% 0 3%;
    white-space: nowrap;
}

.button_list button::after {
    content: "";
    width: clamp(0px, 0.7vw, 8px);
    height: clamp(0px, 1.1vw, 13px);
    background-color: var(--color-main);
    clip-path: polygon(clamp(0px, 0.7vw, 8px) 50%, 0% 0%, 0% clamp(0px, 1.1vw, 13px));
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5.5%;
    margin: auto;
}

.button_list .icon {
    width: clamp(0px, 4.2vw, 50px);
    height: 100%;
    display: flex;
    align-items: center;
}

.button_list .icon img {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .button_list {
        gap: 3vw;
    }

    .button_list button {
        aspect-ratio: 760 / 130;
        font-size: 4.9vw;
        gap: 2vw;
    }

    .button_list button::after {
        width: 2.2vw;
        height: 3.7vw;
        clip-path: polygon(2.2vw 50%, 0% 0%, 0% 3.7vw);
    }

    .button_list .icon {
        width: 13vw;
    }
}

/* 50音検索 */
.kana_box {
    width: 100%;
    height: clamp(0px, 19.2vw, 230px);
    background-color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0px, 0.4vw, 5px);
    margin: clamp(0px, 0.4vw, 5px) auto;
}

.kana_box::-webkit-scrollbar {
    width: clamp(0px, 0.8vw, 10px);
    border-radius: 0;
}
.kana_box::-webkit-scrollbar-track {
    background: #fff;
}
.kana_box::-webkit-scrollbar-thumb {
    background-color: rgba(0,99,103,0.5);
    border-radius: 0;
    border: 0;
}

.kana_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 0.4vw, 5px);
}

.kana_list li button {
    font-size: clamp(0px, 1.5vw, 18px);
    height: clamp(0px, 2.9vw, 35px);
    color: var(--color-main);
    padding: 0 clamp(0px, 1.7vw, 20px);
}

@media screen and (max-width: 768px) {
    .kana_box {
        height: 50vw;
        padding: 1vw 3vw;
        margin: 0 auto;
    }

    .kana_box::-webkit-scrollbar {
        width: 3vw;
    }
    
    .kana_box::-webkit-scrollbar-thumb {
        border-radius: 20px;
    }

    .kana_list {
        gap: 2vw;
    }

    .kana_list li button {
        font-size: 4.8vw;
        height: 8vw;
        padding: 1vw 3vw;
    }
}

/* sp only search */
@media screen and (max-width: 768px) {
    #sp_search_button {
        width: 100%;
        height: 11.5vw;
        background-color: var(--color-main);
        color: #fff;
        font-size: 4.5vw;
        font-weight: 500;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.2em;
        cursor: pointer;
    }
    
    #sp_search_button img {
        width: 4.8vw;
    }

    .search_overlay {
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 5;
        background-color: rgba(0,0,0,0.3);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
    }
    
    .search_overlay.is_active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* matching */
.matching_button {
    width: clamp(0px, 16.7vw, 200px);
    aspect-ratio: 1 / 1;
    position: absolute;
    top: clamp(0px, 54.2vw, 650px);
    right: clamp(-250px, -20.8vw, 0px);
    z-index: 4;
}

@media screen and (max-width: 768px) {
    .matching_button {
        width: 20.5vw;
        top: -16vw;
        right: 4vw;
    }
}


/* ===============================================
   top main
=============================================== */
#top_cont {
    width: 100%;
    padding-top: clamp(0px, 12.5vw, 150px);
    padding-bottom: clamp(0px, 12.5vw, 150px);
    padding-left: clamp(0px, 25vw, 300px);
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 16.7vw, 200px) 0;
    position: relative;
    z-index: 2;
}

#top_cont .cont {
    width: clamp(0px, 72.5vw, 870px);
    margin: 0 auto;
}

.cont_title {
    display: flex;
    align-items: center;
    gap: 0 clamp(0px, 2.9vw, 35px);
}

.cont_title img {
    max-height: clamp(0px, 5vw, 60px);
}

.cont_title span {
    font-size: clamp(0px, 1.7vw, 20px);
    font-weight: bold;
    letter-spacing: 0.06em;
    color: var(--color-main);
    margin-top: 0.5em;
}

.link_button {
    width: clamp(0px, 41.7vw, 500px);
    aspect-ratio: 500 / 65;
    border-radius: 65px;
    font-size: clamp(0px, 2.1vw, 25px);
    font-weight: 500;
    line-height: 1;
    background-color: var(--color-main);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin: 0 auto;
}

.link_button:hover {
    background-color: #62a5a8;
}

@media screen and (max-width: 768px) {
    #top_cont {
        width: 84%;
        margin: 0 auto;
        padding-top: 12vw;
        padding-bottom: 15vw;
        padding-left: 0;
        gap: 23vw 0;
    }

    #top_cont .cont {
        width: 100%;
    }

    .cont_title {
        gap: 0 3vw;
    }

    .cont_title img {
        max-height: 10vw;
    }

    .cont_title span {
        font-size: 2.7vw;
        line-height: 1.4em;
    }

    .link_button {
        width: 80vw;
        aspect-ratio: 800 / 120;
        border-radius: 120px;
        font-size: 4vw;
    }
}


/* ===============================================
   news
=============================================== */
#news .cont_title {
    margin-bottom: clamp(0px, 2.5vw, 30px);
}

.news_list {
    width: 100%;
    border-top: 1px solid var(--color-main);
    margin-bottom: clamp(0px, 3.3vw, 40px);
}

.news_list li {
    width: 100%;
    height: clamp(0px, 10vw, 120px);
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--color-main);
}

.news_list li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.news_list li a:hover {
    background-color: #edf6f0;
}

.news_list .date {
    width: 7.5em;
    font-size: clamp(0px, 1.5vw, 18px);
    font-weight: 600;
    color: var(--color-main);
    padding-left: clamp(0px, 0.4vw, 5px);
}

.news_list .text {
    width: 100%;
    flex: 1;
    font-size: clamp(0px, 1.33vw, 16px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: clamp(0px, 0.4vw, 5px);
}

@media screen and (max-width: 768px) {
    #news .cont_title {
        margin-bottom: 7vw;
    }

    .news_list {
        margin-bottom: 7.5vw;
    }

    .news_list li {
        height: 10vw;
    }
    
    .news_list .date {
        width: 25vw;
        font-size: 2.7vw;
        padding-left: 1em;
    }

    .news_list .text {
        font-size: 2.7vw;
        padding-right: 1em;
    }
}


/* ===============================================
   event
=============================================== */
#event .cont_title {
    margin-bottom: clamp(0px, 6.7vw, 80px);
}

.event_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    grid-template-rows: 120px 110px 390px 45px;
}

.event_list li {
    width: clamp(0px, 20.8vw, 250px);
    height: clamp(0px, 56.7vw, 680px);
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 5px solid var(--color-main);
}

.event_list li .item_title {
    height: clamp(0px, 10vw, 120px);
    font-size: clamp(0px, 2.5vw, 30px);
    line-height: 1.2em;
    font-weight: 600;
    color: var(--color-main);
    text-align: center;
    display: flex;
    align-items: center;
    margin-top: clamp(0px, 0.4vw, 5px);
}

.event_list li img {
    width: clamp(0px, 8.8vw, 105px);
    margin-bottom: clamp(0px, 2.5vw, 30px);
}

.event_list li .item_main {
    flex: 1;
    width: clamp(0px, 17.5vw, 210px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event_list li .item_main .nb_box {
    width: 100%;
    height: clamp(0px, 2.5vw, 30px);
    font-size: clamp(0px, 1.5vw, 18px);
    line-height: 1;
    color: var(--color-main);
    background-color: #edf6f0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.event_list li .item_main .item_date {
    width: 100%;
    font-size: clamp(0px, 1.5vw, 18px);
    line-height: 1.7em;
    letter-spacing: 0.02em;
    color: var(--color-main);
    text-align: center;
    white-space: nowrap;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.5em;
}

.event_list li .item_main .coming_soon {
    width: 100%;
    font-size: clamp(0px, 1.8vw, 22px);
    line-height: 1.7em;
    letter-spacing: 0.02em;
    color: var(--color-main);
    text-align: center;
    white-space: nowrap;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 0.5em;
}

.event_list li .more {
    width: 100%;
    height: clamp(0px, 3.8vw, 45px);
    font-size: clamp(0px, 1.8vw, 22px);
    line-height: 1;
    background-color: var(--color-main);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-bottom: 0.1em;
}

.event_list li .more:hover {
    background-color: #62a5a8;
}

@media screen and (max-width: 768px) {
    #event .cont_title {
        margin-bottom: 10vw;
    }

    .event_list {
        flex-direction: column;
        gap: 10vw;
    }

    .event_list li {
        width: 100%;
        height: auto;
        border-top: 1.3vw solid var(--color-main);
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .event_list li .item_title {
        order: 2;
        width: 50vw;
        height: 30vw;
        font-size: 8vw;
        margin-top: 0;
        justify-content: center;
    }

    .event_list li img {
        order: 1;
        width: 19vw;
        margin-bottom: 0;
    }

    .event_list li .item_main {
        order: 3;
        flex: initial;
        width: 70vw;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        flex-direction: row;
        gap: 6vw 5%;
        margin-bottom: 8vw;
    }

    .event_list li .item_main .nb_box {
        width: 22%;
        height: 5.7vw;
        font-size: 3.2vw;
        line-height: 1;
    }

    .event_list li .item_main .item_date {
        width: 73%;
        font-size: 3.1vw;
        line-height: 1.4em;
        text-align: left;
        margin-bottom: 0;
        padding: 0;
        justify-content: flex-start;
    }
    
    .event_list li .item_main .coming_soon {
        font-size: 5vw;
        width: 100%;
        display: block;
        text-align: center;
    }

    .event_list li .more {
        order: 4;
        height: 9vw;
        font-size: 4vw;
    }
}


/* ===============================================
   search
=============================================== */
#search .cont_title {
    margin-bottom: clamp(0px, 6.7vw, 80px);
}

#search_list {
    width: 100%;
    margin-bottom: clamp(0px, 5.8vw, 70px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(29%, 1fr));
    gap: clamp(0px, 5.8vw, 70px) 6%;
}

.article_item {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) minmax(0, clamp(0px, 7.1vw, 85px));
    border: 1px solid var(--color-main);
    background-color: #fff;
    opacity: 1;
}

.article_item:hover {
    opacity: 0.8;
}

.article_item.hide {
  display: none;
}

.article_base_item {
	display: none;
}

.article_top {
    display: flex;
    flex-direction: column;
}

.article_head {
    width: 100%;
    height: clamp(0px, 2.9vw, 35px);
    display: flex;
}

.article_head > div {
    width: 50%;
    height: 100%;
    font-size: clamp(0px, 1.3vw, 15px);
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.article_head .article_area {
    background-color: #62a5a8;
    color: #fff;
}

.article_head .article_category {
    color: var(--color-main);
}

.article_img {
    width: 100%;
    aspect-ratio: 285 / 280;
    overflow: hidden;
    position: relative;
}

.article_img::after {
    content: "";
    width: 100%;
    height: clamp(0px, 1.3vw, 15px);
    background: url("../img/search/zigzag.svg") no-repeat center bottom / 100% 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
}

.article_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	position: relative;
    transition: transform 0.3s ease;
}

.article_item:hover .article_img img {
    transform: scale(1.1);
}

.article_title {
    width: 95%;
    margin: clamp(0px, 1.3vw, 15px) auto clamp(0px, 0.8vw, 10px);
    font-size: clamp(0px, 1.7vw, 20px);
    line-height: 1.3em;
    font-weight: bold;
    text-align: center;
    color: var(--color-main);
    display: flex;
    align-items: center;
    justify-content: center;
	overflow-wrap: break-word;
	word-break: normal;
	white-space: normal;
}

#menu_list .article_title {
    margin: clamp(0px, 1.3vw, 15px) auto clamp(0px, 1.7vw, 20px);
}

.article_title span {
    font-size: 0.8em;
}

.article_text {
    width: 88%;
    height: 4em;
    margin: 0 auto 1em;
    font-size: clamp(0px, 1.33vw, 16px);
    line-height: 1.4em;
    letter-spacing: 0.02em;
    align-self: start;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}



@media screen and (max-width: 768px) {
    #search .cont_title {
        margin-bottom: 10vw;
    }

    #search_list {
        margin-bottom: 7.5vw;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(47.5%, 1fr));
        gap: 7vw 5%;
    }

    .article_item {
        grid-template-rows: auto minmax(0, 1fr) minmax(0, 14.5vw);
    }
    
    .article_head {
        height: 6.5vw;
    }

    .article_head > div {
        font-size: 2.4vw;
    }

    .article_img {
        aspect-ratio: 400 / 390;
    }

    .article_img::after {
        height: 2.2vw;
    }

    .article_title {
        margin: 2vw auto 2vw;
        font-size: 3.7vw;
    }

    .article_text {
        width: 88%;
        height: 4em;
        margin: 0 auto 1em;
        font-size: 2.7vw;
    }
}


/* ===============================================
   menu
=============================================== */
#menu .cont_title {
    margin-bottom: clamp(0px, 6.7vw, 80px);
}

#menu_list {
    width: 100%;
    margin-bottom: clamp(0px, 6.7vw, 80px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(29%, 1fr));
    gap: clamp(0px, 5.8vw, 70px) 6%;
}

#menu_list .article_item {
    grid-template-rows: auto minmax(0, 1fr);
}

#menu_list .article_title {
    flex-direction: column;
    gap: 0.3em;
}

#menu_list .article_title p {
    font-size: clamp(0px, 1.5vw, 18px);
    line-height: 1.4em;
}

@media screen and (max-width: 768px) {
    #menu .cont_title {
        margin-bottom: 10vw;
    }
    
    #menu_list {
        margin-bottom: 7.5vw;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(47.5%, 1fr));
        gap: 8vw 5%;
    }

    #menu_list .article_head {
        height: 6.5vw;
    }

    #menu_list .article_head > div {
        font-size: 2.4vw;
    }

    #menu_list .article_img {
        aspect-ratio: 400 / 390;
    }

    #menu_list .article_img::after {
        height: 2.2vw;
    }

    #menu_list .article_title {
        margin: 2vw auto 2vw;
        justify-content: flex-start;
    }

    #menu_list .article_title p {
        font-size: 3.7vw;
    }

    #menu_list .article_text {
        width: 88%;
        height: 4em;
        margin: 0 auto 1em;
        font-size: 2.7vw;
    }
}


/* ===============================================
   contact
=============================================== */
#contact .cont_title {
    margin-bottom: clamp(0px, 4.2vw, 50px);
}

.contact_main {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0px, 3.3vw, 40px);
}

.contact_main .img_area {
    width: clamp(0px, 20vw, 240px);
}

.contact_main .text_area {
    color: var(--color-main);
    text-align: center;
}

.contact_main .text_area .text_1 {
    font-size: clamp(0px, 2.9vw, 35px);
    line-height: 1.4em;
    letter-spacing: 0.06em;
    font-weight: bold;
    margin-bottom: 0.7em;
}

.contact_main .text_area .text_2 {
    font-size: clamp(0px, 1.7vw, 20px);
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 1.4em;
}

.contact_main .text_area a {
    font-size: clamp(0px, 2.1vw, 25px);
    font-weight: bold;
    letter-spacing: 0;
    color: var(--color-main);
    display: flex;
    align-items: center;
    gap: 0.3em;
}
    
.contact_main .text_area a img {
    width: clamp(0px, 2.5vw, 30px);
}

@media screen and (max-width: 768px) {
    #contact .cont_title {
        margin-bottom: 7vw;
    }

    .contact_main {
        position: relative;
        gap: 0;
    }

    .contact_main .img_area {
        width: 33.5vw;
        position: absolute;
        top: 0;
        left: 0;
    }

    .contact_main .text_area {
    }

    .contact_main .text_area .text_1 {
        height: 33.5vw;
        font-size: 4.8vw;
        line-height: 1.5em;
        display: flex;
        align-items: center;
        padding-left: 38vw;
        margin-bottom: 6vw;
    }

    .contact_main .text_area .text_2 {
        font-size: 3.2vw;
        line-height: 1;
        margin-bottom: 1.2em;
    }

    .contact_main .text_area a {
        font-size: 4.8vw;
    }
    
    .contact_main .text_area a img {
        width: 5.2vw;
    }
}
