@charset "utf-8";

#page_title {
    width: 100%;
    height: clamp(0px, 59.2vw, 710px);
    display: flex;
    background-color: #fff;
    position: relative;
}

#page_title::before {
    content: "";
    width: 100%;
    height: clamp(0px, 2.5vw, 30px);
    background: url("../img/section_divider_zigzag.svg") repeat-x bottom center;
    background-size: auto 100%;
    position: absolute;
    bottom: -1px;
    left: 0;
    z-index: 2;
}

#page_title .img_area {
    width: 60%;
}

#page_title .img_area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center left;
}

#page_title .text_area {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: clamp(0px, 7vw, 95px);
}

#page_title .text_area .title {
    font-size: clamp(0px, 5.8vw, 70px);
    line-height: 1.2em;
    font-weight: bold;
    letter-spacing: 0.04em;
    color: var(--color-main);
    margin-bottom: 0.5em;
}

#page_title .text_area .lead {
    font-size: clamp(0px, 2.1vw, 25px);
    line-height: 1.7em;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-main);
}

@media screen and (max-width: 768px) {
    #page_title {
        height: auto;
        flex-direction: column-reverse;
        overflow: hidden;
    }

    #page_title::before {
        content: "";
        width: 102vw;
        height: auto;
        aspect-ratio: 1000 / 30;
        background-color: #fff;
        background: url("../img/section_divider_zigzag_sp2.svg") no-repeat bottom left / cover;
        position: absolute;
        bottom: -1px;
        left: 0;
        z-index: 2;
    }

    #page_title .img_area {
        width: 100vw;
        width: 100dvw;
        height: 77vw;
        position: relative;
        overflow: hidden;
    }

    #page_title .img_area::before {
        content: "";
        width: 100vw;
        width: 100dvw;
        height: 3vw;
        height: 3dvw;
        aspect-ratio: auto;
        background: url("../img/section_divider_zigzag_sp.png") no-repeat bottom left / cover;
        position: absolute;
        bottom: -1px;
        left: 0;
        z-index: 2;
    }
    
    #page_title .img_area img {
        object-position: center center;
    }

    #page_title .text_area {
        width: 100%;
        align-items: center;
        padding: 9vw 0;
    }

    #page_title .text_area .title {
        font-size: 9.3vw;
        letter-spacing: 0.1em;
        margin-bottom: 0.3em;
        text-align: center;
    }

    #page_title .text_area .lead {
        font-size: 4vw;
        text-align: center;
    }
}


/* ===============================================
   search
=============================================== */
#search_area {
    padding: clamp(0px, 13.3vw, 160px) 0 clamp(0px, 16.7vw, 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#form {
    width: clamp(0px, 76.7vw, 920px);
    margin-bottom: clamp(0px, 16.7vw, 200px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: clamp(0px, 7.5vw, 90px) 0;
}

#results {
    width: clamp(0px, 76.7vw, 920px);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(31%, 1fr));
    gap: clamp(0px, 4.2vw, 50px) 3.5%;
}

.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;
    white-space: nowrap;
}

.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::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "Loading";
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ccc;
	z-index: 5;
}

.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;
    z-index: 10;
}

.article_img img {
	position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
	z-index: 10;
}

.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, 2.1vw, 25px);
    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;
}

.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_area {
        padding: 10vw 0 15vw;
    }

    #form {
        width: 100vw;
        margin-bottom: 26vw;
        flex-direction: column;
        gap: 12vw 0;
    }

    #results {
        width: 84vw;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(47.5%, 1fr));
        gap: 8vw 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.2vw;
    }

    .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;
    }
}


.list_title {
    font-size: clamp(0px, 2vw, 24px);
    line-height: 1;
    font-weight: bold;
    color: var(--color-main);
    margin-bottom: 0.8em;
}

#category_list {
    width: 100%;
}

#form .list_box {
    width: 100%;
    border: 2px solid var(--color-main);
    background-color: #fff;
    color: var(--color-main);
}

.list_box label,
.list_box input {
    cursor: pointer;
}

.list_box input[type=checkbox] {
    display: none;
}

.list_box label {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 0 0 0 clamp(0px, 2.7vw, 32px);
    position: relative;
    width: auto;
}

label::after {
	position: absolute;
	content: "";
	inset: -0.5rem;
}

.list_box .sub_category_checkbox label {
    padding: 0 0 0 clamp(0px, 2.1vw, 25px);
}

.list_box label::before {
    content: "";
    width: clamp(0px, 1.5vw, 18px);
    height: clamp(0px, 1.5vw, 18px);
    background-color: transparent;
    border: 1px solid var(--color-main);
    display: block;
    left: 0;
    position: absolute;
    top: -0.1em;
    bottom: 0;
    margin: auto;
}

.sub_category_checkbox label::before {
    width: clamp(0px, 1.3vw, 15px);
    height: clamp(0px, 1.3vw, 15px);
}

.check_txt {
    position: relative;
}

.check_txt::after {
    border-right: 3px solid var(--color-main);
    border-bottom: 3px solid var(--color-main);
    content: '';
    display: block;
    width: 0.3em;
    height: 0.5em;
    left: clamp(-26px, -2.2vw, 0px);
    margin-top: clamp(-8px, -0.7vw, 0px);
    opacity: 0;
    position: absolute;
    top: 50%;
    transform: rotate(45deg);
}

.sub_category_checkbox .check_txt::after {
    left: clamp(-20px, -1.7vw, 0px);
    margin-top: clamp(-7px, -0.6vw, 0px);
}

input[type=checkbox]:checked + .check_txt::after {
    opacity: 1;
}

.category_checkbox_all {
    width: 100%;
    height: clamp(0px, 5vw, 60px);
    border-bottom: 2px solid var(--color-main);
    padding: 0 clamp(0px, 4.2vw, 50px);
    display: flex;
    align-items: center;
}

.category_checkbox {
    width: 100%;
    padding: clamp(0px, 2.5vw, 30px) clamp(0px, 4.2vw, 50px);
    background-color: #edf6f0;
}

.category_checkbox_all .check_txt,
.category_checkbox .check_txt {
    font-size: clamp(0px, 1.9vw, 23px);
    font-weight: 500;
    line-height: 1;
}

.sub_category_checkbox {
    width: 100%;
    padding: clamp(0px, 1.7vw, 20px) clamp(0px, 4.2vw, 50px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(0px, 1.3vw, 15px) clamp(0px, 3.3vw, 40px);
}

.sub_category_checkbox .check_txt {
    font-size: clamp(0px, 1.5vw, 18px);
}

#area_list,
#kana_list {
    width: clamp(0px, 34.2vw, 410px);
    display: flex;
    flex-direction: column;
}

#area_list .list_box,
#kana_list .list_box  {
    height: 100%;
    flex: 1;
}

.list_box_title {
    width: 100%;
    height: clamp(0px, 3.3vw, 40px);
    border-bottom: 2px solid var(--color-main);
    padding: 0 clamp(0px, 1.3vw, 15px);
    font-size: clamp(0px, 1.5vw, 18px);
    display: flex;
    align-items: center;
}

#area_list .sub_category_checkbox {
    padding: clamp(0px, 1vw, 12px) clamp(0px, 1.4vw, 17px);
}

#area_list .sub_category_checkbox li {
    width: 100%;
}

.kana_box {
    width: 98%;
    height: clamp(0px, 25vw, 300px);
    overflow-y: auto;
    overflow-x: hidden;
    -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 input[type="radio"],
.list_box .kana_list label::before {
    display: none;
}

.kana_list label {
    display: block;
    padding: clamp(0px, 0.7vw, 8px) clamp(0px, 2.5vw, 30px);
    cursor: pointer;
    transition: background .15s;
}

.kana_list label:hover {
    background: #edf6f0;
}

.kana_list input[type="radio"]:checked + label {
    background: #edf6f0;
}

#keyword_search {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#keyword_search .list_title {
    margin: 0;
}

.keyword_wrap {
    width: clamp(0px, 65vw, 780px);
}

.keyword_wrap input {
    width: 100%;
    height: clamp(0px, 3.8vw, 45px);
    border: 2px solid var(--color-main);
    background-color: #fff;
    font-size: clamp(0px, 1.5vw, 18px);
    color: var(--color-main);
    padding: 0 1em;
}

.keyword_wrap input::placeholder {
    font-weight: 500;
    color: rgba(0,99,103,0.5);
    opacity: 1;
}

#reset_button {
    width: clamp(0px, 41.7vw, 500px);
    margin: 0 auto;
}

#reset_button button {
    width: 100%;
    aspect-ratio: 500 / 50;
    border-radius: 50px;
    font-size: clamp(0px, 2.1vw, 25px);
    font-weight: 500;
    line-height: 1;
    border: 0;
    background-color: var(--color-main);
    color: #fff;
    cursor: pointer;
}

#reset_button button:hover {
    background-color: #62a5a8;
}

@media screen and (max-width: 768px) {
    .list_title {
        width: 90%;
        font-size: 8vw;
        margin-left: auto;
        margin-right: auto;
    }

    #form .list_box {
        border-width: 1px;
    }

    .list_box label {
        padding-left: 7vw;
    }

    .list_box .sub_category_checkbox label {
        padding-left: 5vw;
    }

    .list_box label::before {
        width: 4vw;
        height: 4vw;
        top: 0;
    }

    .sub_category_checkbox label::before {
        width: 3vw;
        height: 3vw;
    }

    .check_txt::after {
        border-right: 2px solid var(--color-main);
        border-bottom: 2px solid var(--color-main);
        left: -5.8vw;
        margin-top: -1.6vw;
    }

    .sub_category_checkbox .check_txt::after {
        left: -4vw;
        margin-top: -1.4vw;
    }

    .category_checkbox_all {
        height: 13vw;
        border-width: 1px;
        padding: 0 5vw;
    }

    .category_checkbox {
        padding: 5.3vw 5vw;
    }

    .category_checkbox_all .check_txt,
    .category_checkbox .check_txt {
        font-size: 5.3vw;
    }

    .sub_category_checkbox {
        padding: 5.3vw 5vw;
        gap: 2.5vw 5vw;
    }

    .sub_category_checkbox li {
        min-width: calc((100% - 10vw) / 2);
    }

    .sub_category_checkbox .check_txt {
        font-size: 4vw;
    }

    #area_list,
    #kana_list {
        width: 100vw;
    }

    .list_box_title {
        height: 13vw;
        border-width: 1px;
        padding: 0 5vw;
        font-size: 5.3vw;
    }

    #area_list .sub_category_checkbox {
        padding: 5.5vw 5vw;
        display: flex;
        flex-wrap: wrap;
        gap: 2.5vw 5vw;
    }

    #area_list .sub_category_checkbox li {
        width: calc((100% - 10vw) / 2);
    }

    .kana_box {
        height: 48vw;
        padding: 1vw 3vw;
        margin: 3vw auto;
    }

    .kana_box::-webkit-scrollbar {
        width: 3vw;
    }

    .kana_box::-webkit-scrollbar-thumb {
        border-radius: 20px;
    }

    .kana_list label {
        padding: 1vw 3vw;
    }

    #keyword_search {
        flex-direction: column;
        gap: 5vw 0;
    }

    .keyword_wrap {
        width: 88vw;
    }

    .keyword_wrap input {
        width: 100%;
        height: 10vw;
        border-width: 1px;
        font-size: 4.3vw;
    }

    #reset_button {
        width: 80vw;
    }

    #reset_button button {
        aspect-ratio: 800 / 120;
        border-radius: 120px;
        font-size: 4vw;
    }
}


/* ===============================================
   news
=============================================== */
#news_cont {
    width: clamp(0px, 76.7vw, 920px);
    margin: 0 auto;
    padding: clamp(0px, 12.5vw, 150px) 0 clamp(0px, 16.7vw, 200px);
}

#news_cont .cont_title {
    display: flex;
    align-items: center;
    gap: 0 clamp(0px, 2.9vw, 35px);
    margin-bottom: clamp(0px, 5.8vw, 70px);
}

#news_cont .cont_title img {
    max-height: clamp(0px, 5vw, 60px);
}

#news_cont .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;
}

.news_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 4.2vw, 50px) 0;
}

.news_list li {
    width: 100%;
    border-top: 1px solid var(--color-main);
    border-bottom: 1px solid var(--color-main);
    padding: clamp(0px, 3.8vw, 45px) clamp(0px, 2.5vw, 30px);
}

.news_list li .news_date {
    font-size: clamp(0px, 1.7vw, 20px);
    font-weight: 500;
    line-height: 1;
    color: var(--color-main);
    margin-bottom: 2em;
}

.news_list li .text_1 {
    font-size: clamp(0px, 1.33vw, 16px);
    font-weight: 500;
    line-height: 2.4em;
    margin-bottom: 2em;
}

.news_list li .text_2 {
    font-size: clamp(0px, 1.7vw, 20px);
    font-weight: 500;
    line-height: 2em;
}

@media screen and (max-width: 768px) {
    #news_cont {
        width: 88vw;
        padding: 15vw 0 13.5vw;
    }

    #news_cont .cont_title {
        gap: 0 6vw;
        margin-bottom: 13vw;
    }

    #news_cont .cont_title img {
        max-height: 10vw;
    }

    #news_cont .cont_title span {
        font-size: 4.3vw;
    }

    .news_list {
        gap: 8vw 0;
    }

    .news_list li {
        padding: 7vw 2.5vw;
    }

    .news_list li .news_date {
        font-size: 4.3vw;
        margin-bottom: 1.5em;
    }

    .news_list li .text_1 {
        font-size: 4.3vw;
        line-height: 1.8em;
        margin-bottom: 1.5em;
    }

    .news_list li .text_2 {
        font-size: 4.3vw;
        line-height: 1.8em;
    }
}


/* ===============================================
   menu
=============================================== */
#menu_cont {
    width: clamp(0px, 76.7vw, 920px);
    margin: 0 auto;
    padding: clamp(0px, 12.5vw, 150px) 0 clamp(0px, 16.7vw, 200px);
}

.menu_page_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(31%, 1fr));
    gap: clamp(0px, 4.2vw, 50px) 3.5%;
}

.menu_page_list .article_item {
    grid-template-rows: auto minmax(0, 1fr);
}

.menu_page_list .article_title {
    margin: clamp(0px, 1.3vw, 15px) auto clamp(0px, 1.7vw, 20px);
    flex-direction: column;
    gap: 0.3em;
}

.menu_page_list .article_title p {
    font-size: clamp(0px, 1.5vw, 18px);
    line-height: 1.4em;
}

.menu_note {
    width: clamp(0px, 76.7vw, 920px);
    margin: 0 auto;
    padding-bottom: 3em;
    font-size: clamp(0px, 1.3vw, 15px);
    line-height: 1.5em;
}

@media screen and (max-width: 768px) {
    #menu_cont {
        width: 84vw;
        padding: 15vw 0 20vw;
    }

    .menu_page_list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(47.5%, 1fr));
        gap: 8vw 5%;
    }

    .menu_page_list .article_title {
        margin: 3vw auto 4vw;
    }

    .menu_page_list .article_title p {
        font-size: 3.7vw;
        letter-spacing: 0;
    }
    
    .menu_note {
        width: 84vw;
        font-size: 2.1vw;
    }
}


/* ===============================================
   link
=============================================== */
.link_button {
    width: clamp(0px, 74.2vw, 890px);
    aspect-ratio: 890 / 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) {

}


/* ===============================================
   matching
=============================================== */
.matching_cont {
    width: clamp(0px, 76.7vw, 920px);
    margin: 0 auto;
    padding: clamp(0px, 12.5vw, 150px) 0 clamp(0px, 16.7vw, 200px);
}

#matching_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#matching_title .logo {
    width: clamp(0px, 22.5vw, 270px);
    margin-bottom: clamp(0px, 4.2vw, 50px);
}

#matching_title .page_title {
    font-size: clamp(0px, 4.2vw, 50px);
    line-height: 1.4em;
    color: var(--color-main);
    text-align: center;
    margin-bottom: clamp(0px, 7.5vw, 90px);
}

#matching_about {
    width: 100%;
    margin-bottom: clamp(0px, 14.2vw, 170px);
}

#matching_about .img_area {
    width: 100%;
    margin-bottom: clamp(0px, 6.7vw, 80px);
}

#matching_about .text_1 {
    font-size: clamp(0px, 1.7vw, 20px);
    line-height: 2.5em;
    font-weight: 600;
}

#matching_about .text_2 {
    font-size: clamp(0px, 1.7vw, 20px);
    text-align: right;
    font-weight: 600;
    margin-top: 1em;
}

#matching_event .cont_title {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: clamp(0px, 3.3vw, 40px) 0;
    margin-bottom: clamp(0px, 5.4vw, 65px);
}

#matching_event .cont_title img {
    max-height: clamp(0px, 5vw, 60px);
}

#matching_event .cont_title span {
    font-size: clamp(0px, 2.1vw, 25px);
    font-weight: bold;
    letter-spacing: 0.06em;
    color: var(--color-main);
}

.event_list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    grid-template-rows: 120px 110px 390px 45px;
    margin-bottom: clamp(0px, 11.7vw, 140px);
}

.event_list li {
    width: clamp(0px, 21.3vw, 255px);
    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;
}

.matching_cont .link_button {
    width: clamp(0px, 74.2vw, 890px);
    aspect-ratio: 890 / 100;
    border-radius: 100px;
    font-size: clamp(0px, 2.9vw, 35px);
}

.matching_cont .link_button span {
    width: clamp(0px, 6.3vw, 75px);
    aspect-ratio: 75 / 60;
    background-color: #fff;
    -webkit-mask: url("../img/matching/logo.svg") no-repeat center / contain;
    mask: url("../img/matching/logo.svg") no-repeat center / contain;
    margin-right: clamp(0px, 1.3vw, 15px);
}

@media screen and (max-width: 768px) {
    .matching_cont {
        width: 84%;
        padding: 29vw 0 13.5vw;
    }

    #matching_title .logo {
        width: 30.5vw;
        margin-bottom: 2vw;
    }

    #matching_title .page_title {
        font-size: 8vw;
        letter-spacing: 0.12em;
        margin-bottom: 9vw;
        white-space: nowrap;
    }

    #matching_about {
        width: 100%;
        margin-bottom: 25vw;
    }

    #matching_about .img_area {
        margin-bottom: 12vw;
    }

    #matching_about .text_1 {
        font-size: 4vw;
        line-height: 1.8em;
    }

    #matching_about .text_2 {
        font-size: 4.2vw;
    }

    #matching_event .cont_title {
        gap: 5vw 0;
        margin-bottom: 12vw;
    }

    #matching_event .cont_title img {
        max-height: 10vw;
    }

    #matching_event .cont_title span {
        font-size: 4.3vw;
        line-height: 1.4em;
    }

    .event_list {
        flex-direction: column;
        gap: 13vw 0;
        margin-bottom: 13vw;
    }

    .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: 10vw;
        font-size: 4vw;
        line-height: 1;
    }

    .event_list li .item_main .item_date {
        width: 73%;
        font-size: 4.6vw;
        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;
    }

    .matching_cont .link_button {
        width: 80vw;
        aspect-ratio: 800 / 197;
        border-radius: 200px;
        font-size: 4.7vw;
        line-height: 1.4em;
        text-align: center;
    }

    .matching_cont .link_button span {
        width: 13.5vw;
        height: 100%;
        margin-right: 3vw;
    }
}


/* ===============================================
   event
=============================================== */
#page_title.event_title {
    min-height: clamp(0px, 54.2vw, 650px);
    height: auto;
    align-items: stretch;
}
#page_title.event_title .text_area {
    justify-content: flex-start;
    padding-top: clamp(0px, 13.3vw, 160px);
    padding-bottom: clamp(0px, 10.8vw, 130px);
}

#page_title.event_title .img_area {
    overflow: hidden;
    position: relative;
}

#page_title.event_title .img_area img {
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#page_title.event_title .title_parent {
    width: clamp(0px, 18.3vw, 220px);
    font-size: clamp(0px, 2.1vw, 25px);
    letter-spacing: 0.14em;
    line-height: 1;
    color: var(--color-main);
    border-bottom: 1px solid var(--color-main);
    padding-bottom: 0.5em;
    margin-bottom: clamp(0px, 6.7vw, 80px);
}

#page_title.event_title .title {
    margin-bottom: 0.4em;
}

#event_cont {
    width: clamp(0px, 76.7vw, 920px);
    margin: 0 auto;
    padding: clamp(0px, 8.3vw, 100px) 0 clamp(0px, 16.7vw, 200px);
}

#event_about {
    margin-bottom: clamp(0px, 11.7vw, 140px);
}

#event_cont .text_1 {
    font-size: clamp(0px, 1.7vw, 20px);
    line-height: 2.5em;
}

#event_cont .text_2 {
    font-size: clamp(0px, 2.1vw, 25px);
    line-height: 1.8em;
    font-weight: 600;
    text-align: center;
    color: var(--color-main);
}

#event_cont .text_3 {
    width: clamp(0px, 66.7vw, 800px);
    font-size: clamp(0px, 4.6vw, 55px);
    line-height: 1;
    font-weight: 600;
    text-align: center;
    color: var(--color-main);
    margin: 0 auto;
    padding: 1.5em 0;
    border-top: 1px solid var(--color-main);
}

#event_detail .img_area {
    width: 100%;
    text-align: center;
    margin-bottom: clamp(0px, 4.2vw, 50px);
}

#event_detail .button_1 {
    margin-bottom: clamp(0px, 5vw, 60px);
}

#event_detail .button_2 {
    font-size: clamp(0px, 3.3vw, 40px);
    aspect-ratio: 890 / 100;
}

#event_detail .button_3 {
    border: 2px solid var(--color-main);
    background-color: #fff;
    color: var(--color-main);
}

#event_detail .button_3:hover {
    background-color: var(--color-main);
    color: #fff;
}

#event_detail .button_2 + .text_2 {
    margin-top: clamp(0px, 2.9vw, 35px);
}

.event_data + .button_2 {
    margin-top: clamp(0px, 4.6vw, 55px);
}

.event_data {
    width: clamp(0px, 66.7vw, 800px);
    margin: 0 auto;
    text-align: left;
}

.event_data tr:not(:first-of-type) {
    border-top: 1px solid var(--color-main);
}

.event_data th,
.event_data td {
    color: var(--color-main);
    padding: clamp(0px, 3.3vw, 40px) 0;
    font-weight: 600;
}

.event_data th {
    width: 17%;
    font-size: clamp(0px, 2.5vw, 30px);
    line-height: 1.4em;
    text-align: right;
    vertical-align: top;
}

.event_data td {
    width: 83%;
    padding-left: clamp(0px, 5vw, 60px);
}

.event_data .nb_box {
    width: clamp(0px, 11.7vw, 140px);
    aspect-ratio: 140 / 35;
    font-size: clamp(0px, 2.1vw, 25px);
    line-height: 1;
    background-color: var(--color-main);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 0.1em;
    margin-bottom: 0.5em;
}

.event_data .event_text_1 {
    font-size: clamp(0px, 2.9vw, 35px);
    line-height: 1;
    letter-spacing: 0;
}

.event_data .event_text_2 {
    font-size: clamp(0px, 2.1vw, 25px);
    line-height: 1.6em;
}

.event_data .event_text_3 {
    font-size: clamp(0px, 1.7vw, 20px);
    line-height: 1.5em;
}

.event_data .event_note {
    font-size: clamp(0px, 1.7vw, 20px);
    line-height: 1.5em;
    text-indent: -1em;
    padding-left: 1em;
}

.event_data .event_text_1 + .event_text_2 {
    margin-top: 1em;
}

.event_data .event_text_2 + .event_text_2 {
    margin-top: 2em;
}

.event_data .event_text_2 + .event_text_3 {
    margin-top: 1em;
}

.event_data .event_text_1 + .nb_box {
    margin-top: 2em;
}

.event_data .event_text_2 + .event_note {
    margin-top: 1em;
}

.nb_list {
    list-style: none;
    counter-reset: item;
}

.nb_list li {
    counter-increment: item;
    margin-bottom: 0.5em;
    padding-left: 2em;
    text-indent: -1em;
}

.nb_list li::before {
    content: "(" counter(item) ") ";
    display: inline-block;
    width: 1em;
}

.list_1 {
    font-size: clamp(0px, 2.1vw, 25px);
    margin: 1.5em 0 2em;
}

.list_1 li {
    line-height: 1.5em;
    font-weight: 600;
    color: var(--color-main);
    padding-left: 1em;
    text-indent: -1em;
}

.nb_list + .event_note {
    font-size: clamp(0px, 1.9vw, 23px);
}

@media screen and (max-width: 768px) {
    #page_title.event_title {
        min-height: 0;
    }

    #page_title.event_title .text_area {
        padding: 8vw 0 9vw;
    }

    #page_title.event_title .title_parent {
        width: 49vw;
        font-size: 3.3vw;
        padding-bottom: 0.7em;
        margin-bottom: 0.5em;
        text-align: center;
    }

    #page_title.event_title .title {
        margin-bottom: 0.3em;
    }

    #event_cont {
        width: 84vw;
        padding: 11vw 0 13vw;
    }

    #event_about {
        margin-bottom: 7vw;
    }

    #event_cont .text_1 {
        font-size: 4vw;
        line-height: 1.8em;
    }

    #event_cont .text_2 {
        font-size: 3.3vw;
    }

    #event_cont .text_3 {
        width: 84vw;
        font-size: 7vw;
    }

    #event_detail .img_area {
        margin-bottom: 12vw;
    }

    #event_detail .button_1 {
        width: 80vw;
        aspect-ratio: 800 / 120;
        border-radius: 120px;
        font-size: 4vw;
        margin-bottom: 4vw;
    }

    #event_detail .button_2 {
        width: 80vw;
        aspect-ratio: 800 / 120;
        border-radius: 120px;
        font-size: 4vw;
    }

    #event_detail .button_3 {
        width: 80vw;
        aspect-ratio: 800 / 180;
        border-radius: 180px;
        font-size: 4vw;
        line-height: 1.4em;
        text-align: center;
        border-width: 1px;
    }

    #event_detail .button_2 + .text_2 {
        margin-top: 7vw;
    }

    .event_data + .button_2 {
        margin-top: 10vw;
    }

    .event_data {
        width: 84vw;
    }

    .event_data th,
    .event_data td {
        padding: 5vw 0;
    }

    .event_data th {
        width: 21%;
        font-size: 4vw;
        text-align: left;
        white-space: nowrap;
    }

    .event_data td {
        width: 79%;
        padding-left: 6vw;
    }

    .event_data .nb_box {
        width: 19vw;
        aspect-ratio: 190 / 47;
        font-size: 3.3vw;
        margin-bottom: 0.5em;
    }

    .event_data .event_text_1 {
        font-size: 4.7vw;
        line-height: 1.4em;
    }

    .event_data .date .event_text_1 {
        font-size: 4.4vw;
        white-space: nowrap;
    }

    .event_data .event_text_2 {
        font-size: 3.3vw;
        letter-spacing: 0;
    }

    .event_data .event_text_3 {
        font-size: 3vw;
        line-height: 1.5em;
    }

    .event_data .event_note {
        font-size: 3vw;
    }

    .event_data .event_text_2 + .event_text_2 {
        margin-top: 1em;
    }

    .event_data .event_text_1 + .nb_box {
        margin-top: 1.5em;
    }

    .list_1 {
        font-size: 3.3vw;
    }

    .nb_list + .event_note {
        font-size: 3.1vw;
    }
}


/* ===============================================
   privacy
=============================================== */
.privacy_cont {
    width: clamp(0px, 76.7vw, 920px);
    margin: 0 auto;
    padding: clamp(0px, 12.5vw, 150px) 0 clamp(0px, 16.7vw, 200px);
}

#privacy_title {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#privacy_title .logo {
    width: clamp(0px, 22.5vw, 270px);
    margin-bottom: clamp(0px, 4.2vw, 50px);
}

#privacy_title .page_title {
    font-size: clamp(0px, 4.2vw, 50px);
    line-height: 1.4em;
    color: var(--color-main);
    text-align: center;
    margin-bottom: clamp(0px, 7.5vw, 90px);
}

#privacy_about {
    width: 100%;
}

#privacy_about .img_area {
    width: 100%;
    margin-bottom: clamp(0px, 6.7vw, 80px);
}

#privacy_about .text_1 {
    font-size: clamp(0px, 1.5vw, 18px);
    line-height: 2em;
    font-weight: 500;
}

#privacy_about  a {
    display: inline-block;
    word-break: break-all;
    line-height: 1.1em;
}

#privacy_about  a:hover {
    text-decoration: underline;
}

#privacy_about .text_1 > a {
    margin-left: 1em;
    margin-bottom: 1.5em;
}

@media screen and (max-width: 768px) {
    .privacy_cont {
        width: 84%;
        padding: 29vw 0 13.5vw;
    }

    #privacy_title .logo {
        width: 30.5vw;
        margin-bottom: 2vw;
    }

    #privacy_title .page_title {
        font-size: 8vw;
        letter-spacing: 0.12em;
        margin-bottom: 9vw;
        white-space: nowrap;
    }

    #privacy_about {
        width: 100%;
    }

    #privacy_about .img_area {
        margin-bottom: 12vw;
    }

    #privacy_about .text_1 {
        font-size: 4vw;
        line-height: 1.8em;
    }
}
