@charset "UTF-8";

/*==========================================================================
レイアウトグループ

・ヘッダー、ボディエリア、メインエリア、サイドエリア、フッター等の大きなレイアウトを形成する要素に使用
===========================================================================*/
/*ヘッダー
---------------------------------------------------------------------------*/
.ly_header {
    background-color: #fff;
}

.ly_header_inner {
    margin-left: auto;

        {
        "path": "/tauri/Users/maowakae-st/Local Sites/ain/app/public/wp-content/themes/AIN/css/style.css"
    }

    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    max-width: 1140px;
    width: 100%;
}

.ly_header.ly_header__fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
}

/*フッター
---------------------------------------------------------------------------*/
.ly_footer {
    position: relative;
    padding: 64px 0 24px;
    background-color: #D80235;
    color: #fff;
}

.ly_footer a {
    color: #fff;
}

/*フッター レスポンシブ*/

@media screen and (max-width: 991px) {
    .ly_footer {
        padding: 32px 0 16px;
    }
}

@media screen and (max-width: 767px) {
    .ly_footer {
        padding: 32px 0 16px;
    }
}

/*下層ページ
---------------------------------------------------------------------------*/
.ly_subCont {
    padding: 86px 0;
}

.ly_subCont.ly_subCont__col2 {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.ly_subCont.ly_subCont__col2 .ly_subCont_main {
    -ms-flex: 1;
    -webkit-box-flex: 1;
    flex: 1;
    margin-right: 40px;
}

.ly_subCont.ly_subCont__col2 .ly_subCont_side {
    -ms-flex: 0 0 200px;
    -webkit-box-flex: 0;
    flex: 0 0 200px;
}

.ly_subCont_side .bl_widget {
    margin-bottom: 20px;
}

.ly_subCont_side .bl_widget:last-child {
    margin-bottom: 0;
}

/*下層ページ レスポンシブ*/
@media screen and (max-width: 767px) {
    .ly_subCont {
        padding: 35px 0 76px;
    }

    .ly_subCont.ly_subCont__col2 {
        -ms-flex-direction: column-reverse;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
    }

    .ly_subCont.ly_subCont__col2 .ly_subCont_main {
        margin-right: 0;
    }

    .ly_subCont.ly_subCont__col2 .ly_subCont_side {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-bottom: 35px;
    }

    .ly_subCont_side .bl_widget {
        margin-bottom: 10px;
    }
}

/*==========================================================================
ブロックグループ

・一つの塊として持ち運び可能な要素群を形成
===========================================================================*/

/*ヘッダー
---------------------------------------------------------------------------*/
.bl_header {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    height: 100px;
}

.bl_header_left {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin-right: 20px;
}

.bl_header_logo {
    -ms-flex: 0 1 356px;
    -webkit-box-flex: 0;
    flex: 0 1 356px;
}

.bl_header_logo > img {
    width: 100%;
    vertical-align: middle;
}

.bl_header_btnlist {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.bl_header_btnlist > * {
    margin-right: 4px;
}

.bl_header_btnlist > *:last-child {
    margin-right: 0;
}

.bl_header_btn {
    display: inline-block;
    padding: 0.5em;
    min-width: 230px;
    background-color: #D80235;
    color: #fff;
    text-align: center;
    text-decoration: none;
}

.bl_header_btnlist .kyousan .bl_header_btn {
    background-color: black !important;
    min-width: 130px;
}

@media (any-hover: hover) {
    .bl_header_btn {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_header_btn:focus,
    .bl_header_btn:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .bl_header_btn {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_header_btn:focus,
    .bl_header_btn:hover {
        opacity: 0.6;
    }
}

.bl_header_right .bl_header_btnlist {
    margin: 0 -15px 8px 0;
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

a.bl_header_logo {
    display: block;
}

@media (any-hover: hover) {
    a.bl_header_logo {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    a.bl_header_logo:focus,
    a.bl_header_logo:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    a.bl_header_logo {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    a.bl_header_logo:focus,
    a.bl_header_logo:hover {
        opacity: 0.6;
    }
}

/*ヘッダー レスポンシブ*/
@media screen and (max-width: 991px) {
    .bl_header {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
        height: 70px;
    }

    .bl_header_logo {
        -ms-flex-preferred-size: 230px;
        flex-basis: 230px;
    }

    .bl_header_btn {
        margin-top: 15px
    }

    .bl_header_btnlist {
        display: none;
    }

    .bl_header .bl_hmbMenu {
        padding-top: 8px;
    }
}


/*グローバルナビゲーション
---------------------------------------------------------------------------*/
.bl_gnav_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
}

.bl_gnav_list li {
    margin-right: 25px;
}

.bl_gnav_list li:last-child {
    margin-right: 0;
}

.bl_gnav_list a {
    display: block;
    color: #D80235;
    text-decoration: none;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
    font-size: 1.3rem;
    white-space: nowrap;
}

@media (any-hover: hover) {
    .bl_gnav_list a {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_gnav_list a:focus,
    .bl_gnav_list a:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .bl_gnav_list a {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_gnav_list a:focus,
    .bl_gnav_list a:hover {
        opacity: 0.6;
    }
}

.bl_gnav_list a > span {
    display: block;
    font-weight: bold;
    font-size: 1.6rem;
}

/*グローバルナビゲーション レスポンシブ*/
@media screen and (max-width: 991px) {
    .bl_gnav {
        display: none;
    }
}

/*ハンバーガーメニュー
---------------------------------------------------------------------------*/
.bl_hmbMenu {
    display: none;
    position: relative;
    text-align: center;
    z-index: 1;
    cursor: pointer;
}

.bl_hmbMenu_bars {
    display: block;
    margin: 0 auto 4px;
}

.bl_hmbMenu_bar {
    display: block;
    margin-bottom: 6px;
    width: 32px;
    height: 2px;
    background-color: #D80235;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
}

.bl_hmbMenu_bar:last-child {
    margin-bottom: 0;
}

.bl_hmbMenu_txt {
    color: #D80235;
    font-size: 1rem;
}

.bl_hmbMenu.is_active .bl_hmbMenu_bar:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.bl_hmbMenu.is_active .bl_hmbMenu_bar:nth-of-type(2) {
    opacity: 0;
}

.bl_hmbMenu.is_active .bl_hmbMenu_bar:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

/*ハンバーガーメニュー レスポンシブ*/
@media screen and (max-width: 991px) {
    .bl_hmbMenu {
        display: block;
    }
}

/*フェードナビゲーション
---------------------------------------------------------------------------*/
.bl_fadeNav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #fff;
    color: #D80235;
    overflow-y: auto;
    z-index: 100;
    padding-top: 70px;
}

.bl_fadeNav_list {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    border-top: 1px solid #D80235;
    background-color: #D80235;
    margin-bottom: 32px;
}

.bl_fadeNav_list li {
    width: calc(100% / 3);
    border-bottom: 1px solid #D80235;
    border-right: 1px solid #D80235;
    text-align: center;
    background-color: #fff;
}

.bl_fadeNav_list li:nth-of-type(3n) {
    border-right-width: 0;
}

.bl_fadeNav_list a {
    display: block;
    text-decoration: none;
    font-size: 1.1rem;
    text-align: center;
    padding: 18px 0.4em;
    color: #D80235;
}

@media (any-hover: hover) {
    .bl_fadeNav_list a {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_fadeNav_list a:focus,
    .bl_fadeNav_list a:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .bl_fadeNav_list a {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_fadeNav_list a:focus,
    .bl_fadeNav_list a:hover {
        opacity: 0.6;
    }
}

.bl_fadeNav_list a > span {
    display: block;
    text-decoration: none;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-weight: 300;
    font-weight: bold;
    line-height: 1.5;
    font-size: 1.4rem;
}

.bl_fadeNav_btnlist {
    text-align: center;
}

.bl_fadeNav_btnlist > * {
    margin-bottom: 15px;
}

.bl_fadeNav_btnlist > *:last-child {
    margin-bottom: 0;
}

.bl_fadeNav_btn {
    display: inline-block;
    padding: 0.5em;
    min-width: 214px;
    background-color: #D80235;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    text-decoration: none;
}

.kyousan_sp {
    background-color: #000
}

@media (any-hover: hover) {
    .bl_fadeNav_btn {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_fadeNav_btn:focus,
    .bl_fadeNav_btn:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .bl_fadeNav_btn {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_fadeNav_btn:focus,
    .bl_fadeNav_btn:hover {
        opacity: 0.6;
    }
}

/*スライダー
---------------------------------------------------------------------------*/
.topSlider {
    margin-top: 15px
}

#slider div {
    margin-right: 5px
}

.bl_slide {
    height: 100%;
}

.bl_slide .swiper-container {
    height: 100%;
}

.bl_slide img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

/*セクション
---------------------------------------------------------------------------*/
.bl_sect_ttl {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    color: #D80235;
    margin-bottom: 25px;
}

.bl_sect_ttl_en {
    font-family: "impact-subset", sans-serif;
    font-size: 5rem;
    margin-right: 30px;
}

.bl_sect_ttl_jp {
    font-size: 1.5rem;
}

/*セクション レスポンシブ*/
@media screen and (max-width: 767px) {
    .bl_sect_ttl {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        margin-bottom: 20px;
    }

    .bl_sect_ttl_en {
        margin-right: 0;
    }

    .bl_sect_ttl_jp {
        font-size: 1.3rem;
    }
}

/*ポストリスト
---------------------------------------------------------------------------*/
.bl_vertPosts_item {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    padding: 15px 0;
    border-bottom: 1px dotted #D80235;
}

.bl_vertPosts_item:first-child {
    border-top: 1px dotted #D80235;
}

.bl_vertPosts_meta {
    margin-right: 8px;
    -ms-flex: 0 0 235px;
    -webkit-box-flex: 0;
    flex: 0 0 235px;
}

.bl_vertPosts_date {
    display: inline-block;
    margin-right: 20px;
    font-weight: bold;
}

.bl_vertPosts_ttl {
    font-weight: bold;
    text-decoration: none;
}

@media (any-hover: hover) {

    .bl_vertPosts_ttl:focus,
    .bl_vertPosts_ttl:hover {
        text-decoration: underline;
    }
}

@media all and (-ms-high-contrast: none) {

    .bl_vertPosts_ttl:focus,
    .bl_vertPosts_ttl:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 767px) {
    .bl_vertPosts_item {
        display: block;
        padding: 8px 0;
    }

    .bl_vertPosts_meta {
        margin-right: 0;
        margin-bottom: 0.2em;
    }

    .bl_vertPosts_date {
        margin-right: 10px;
    }

    .bl_vertPosts_ttl {
        font-size: 1.4rem;
    }
}

/*カード
---------------------------------------------------------------------------*/
.bl_cardUnit {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.bl_cardUnit.bl_cardUnit__col3 {
    margin-bottom: -40px;
}

.bl_cardUnit.bl_cardUnit__col3 > .bl_card {
    margin-bottom: 40px;
    width: calc((100% - 30px * 2) / 3);
    margin-right: 29px;
}

.bl_cardUnit.bl_cardUnit__col3 > .bl_card:nth-of-type(3n) {
    margin-right: 0;
}

.bl_cardUnit.bl_cardUnit__col2 {
    margin-bottom: -35px;
}

.bl_cardUnit.bl_cardUnit__col2 > .bl_card {
    margin-bottom: 35px;
    width: calc((100% - 40px * 1) / 2);
    margin-right: 39px;
}

.bl_cardUnit.bl_cardUnit__col2 > .bl_card:nth-of-type(2n) {
    margin-right: 0;
}

/*カード（ラッパー） レスポンシブ*/
@media screen and (max-width: 767px) {
    .bl_cardUnit {
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
    }

    .bl_cardUnit.bl_cardUnit__col3 {
        margin-bottom: -20px;
    }

    .bl_cardUnit.bl_cardUnit__col3 > .bl_card {
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .bl_cardUnit.bl_cardUnit__col2 {
        margin-bottom: -30px;
    }

    .bl_cardUnit.bl_cardUnit__col2 > .bl_card {
        width: 100%;
        margin-bottom: 30px;
        margin-right: 0;
    }
}

.bl_card_img {
    display: block;
    position: relative;
    padding-top: 71.661237785%;
    overflow: hidden;
    margin-bottom: -1px;
}

.bl_card_img > img {
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -o-object-fit: cover;
    object-fit: cover;
    font-family: "object-fit: cover;";
}

@media (any-hover: hover) {
    .bl_card_img {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_card_img:focus,
    .bl_card_img:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .bl_card_img {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_card_img:focus,
    .bl_card_img:hover {
        opacity: 0.6;
    }
}

.bl_card_body {
    position: relative;
    background-color: #fff;
}

.bl_card_label {
    display: block;
    background-color: #D80235;
    color: #fff;
    padding: 0.2em 15px;
    text-decoration: none;
    font-size: 1.5rem;
}

@media (any-hover: hover) {
    .bl_card_label {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_card_label:focus,
    .bl_card_label:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .bl_card_label {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_card_label:focus,
    .bl_card_label:hover {
        opacity: 0.6;
    }
}

.bl_card_txt {
    display: block;
    padding: 10px 15px 12px;
    text-decoration: none;
}

@media (any-hover: hover) {
    .bl_card_txt {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_card_txt:focus,
    .bl_card_txt:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    .bl_card_txt {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_card_txt:focus,
    .bl_card_txt:hover {
        opacity: 0.6;
    }
}

.bl_card_txt > *:last-child {
    margin-right: 0;
}

.bl_card_lead {
    margin-bottom: 0.2em;
    font-size: 1.4rem;
    color: #D80235;
    font-weight: bold;
}

.bl_card_ttl {
    margin-bottom: 0.3em;
    font-weight: bold;
}

.bl_card_desc {
    font-size: 1.4rem;
}

.bl_card.bl_card__blog .bl_card_txt {
    padding: 10px 0 0;
}

.bl_card.bl_card__blog .bl_card_lead {
    font-size: 1.3rem;
}

.bl_card.bl_card__blog .bl_card_ttl {
    font-size: 1.7rem;
}

/*カード レスポンシブ*/
@media screen and (max-width: 767px) {
    .bl_card_label {
        padding: 0.2em 10px;
        font-size: 1.3rem;
        font-weight: bold;
    }

    .bl_card_txt {
        padding: 10px;
    }

    .bl_card_ttl {
        font-size: 1.5rem;
    }

    .bl_card_desc {
        font-size: 1.3rem;
    }

    .bl_card.bl_card__blog .bl_card_ttl {
        font-size: 1.5rem;
    }
}

/*フッター
---------------------------------------------------------------------------*/
.bl_footerTop {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    margin-bottom: 40px;
}

.bl_footerTop_left {
    margin-right: 5.76%;
    padding: 16px 6.76% 16px 0;
    border-right: 1px solid #fff;
    width: 35%
}

.bl_footerTop_right {
    width: 65%
}

.bl_footerTop_logo {
    margin-bottom: 12px;
    width: 290px;
    max-width: 100%;
}

.bl_footerSNS {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 10px
}

.bl_footerSNS li {
    margin-right: 10px
}

.bl_footerSNS img {
    max-height: 30px;
    width: auto
}

.bl_footerTop_txt {
    margin-bottom: 0.3em;
    font-weight: bold;
}

.bl_footerTop_list {
    font-size: 1.5rem;
}

.bl_footerTop_list > li {
    margin-bottom: 0.1em;
}

.bl_footerTop_list > li:last-child {
    margin-bottom: 0;
}

.bl_footerTop_linkWrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
}

.bl_footerTop_links {
    margin-bottom: 25px;
    margin-right: 8.95%;
}

.bl_footerTop_links:last-child {
    margin-right: 0;
}

.bl_footerTop_links > li {
    margin-bottom: 6px;
}

.bl_footerTop_links > li:last-child {
    margin-bottom: 0;
}

.bl_footerTop_links > li a {
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}

@media (any-hover: hover) {

    .bl_footerTop_links > li a:focus,
    .bl_footerTop_links > li a:hover {
        text-decoration: underline;
    }
}

@media all and (-ms-high-contrast: none) {

    .bl_footerTop_links > li a:focus,
    .bl_footerTop_links > li a:hover {
        text-decoration: underline;
    }
}

.bl_footerTop_note {
    border: 1px solid #fff;
    padding: 0.86em 1.14em;
    font-size: 1.4rem;
}

.bl_footerTop_note p {
    line-height: 1.5;
}

/*フッター レスポンシブ*/
@media screen and (max-width: 991px) {

    .bl_footerTop {
        display: block
    }

    .bl_footerTop_left {
        margin-right: 0;
        padding-right: 0;
        border: none;
        width: 100%
    }

    .bl_footerTop_right {
        width: 100%;
        margin-top: 15px
    }

    .bl_footerTop_logo {
        width: 260px;
    }

    .bl_footerTop_txt {
        font-size: 1.6rem;
    }

    .bl_footerTop_list {
        font-size: 1.4rem;
    }

    .bl_footerTop_links {
        margin-right: 30px;
    }

    .bl_footerTop_links > li a {
        font-size: 1.5rem;
    }

    .bl_footerTop_note {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 767px) {
    .bl_footerTop {
        display: block;
        margin-bottom: 24px;
    }

    .bl_footerTop_left {
        margin: 0 0 20px 0;
        padding: 0 30px 16px;
        border-right-width: 0;
        border-bottom: 1px solid #fff;
    }

    .bl_footerTop_logo {
        margin-bottom: 16px;
        width: 290px;
    }

    .bl_footerTop_linkWrapper {
        display: block;
        padding: 0 30px;
        margin-bottom: 20px;
    }

    .bl_footerTop_links {
        margin-bottom: 8px;
        margin-right: 0;
    }

    .bl_footerTop_links > li {
        margin-bottom: 8px;
    }

    .bl_footerTop_links > li:last-child {
        margin-bottom: 8px;
    }
}

a.bl_footerTop_logo {
    display: block;
    text-decoration: none;
}

@media (any-hover: hover) {
    a.bl_footerTop_logo {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    a.bl_footerTop_logo:focus,
    a.bl_footerTop_logo:hover {
        opacity: 0.6;
    }
}

@media all and (-ms-high-contrast: none) {
    a.bl_footerTop_logo {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    a.bl_footerTop_logo:focus,
    a.bl_footerTop_logo:hover {
        opacity: 0.6;
    }
}

.bl_footerBottom {
    text-align: center;
}

/*メインビジュアル（下層ページ）
---------------------------------------------------------------------------*/
.bl_MV {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background: url(../img/common/bg_lightgray.png) center/cover;
}

.bl_MV_ttl {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
    flex: 0 0 50%;
    position: relative;
    padding: 3.625em 1em 4.375em 5em;
    background-color: #D80235;
    margin-right: -10%;
    color: #fff;
    z-index: 1;
}

.bl_MV_ttl_en {
    display: block;
    font-size: 9.5rem;
    font-family: "impact-subset", sans-serif;
    line-height: 1;
}

.bl_MV_ttl_jp {
    font-size: 2.7rem;
    font-weight: bold;
}

.bl_MV_img {
    -ms-flex: 0 0 60%;
    -webkit-box-flex: 0;
    flex: 0 0 60%;
}

/*メインビジュアル レスポンシブ*/
@media screen and (max-width: 767px) {
    .bl_MV {
        -ms-flex-direction: column-reverse;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        flex-direction: column-reverse;
        background-size: cover;
        -ms-flex-align: stretch;
        -webkit-box-align: stretch;
        align-items: stretch;
    }

    .bl_MV_ttl {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
        margin-right: 0;
        padding: 15px;
        padding-left: calc((100% - 510px) / 2);
    }

    .bl_MV_ttl_en {
        font-size: 5.2rem;
    }

    .bl_MV_ttl_jp {
        font-size: 1.5rem;
    }

    .bl_MV_img {
        -ms-flex-preferred-size: auto;
        flex-basis: auto;
    }
}

@media screen and (max-width: 575px) {
    .bl_MV_ttl {
        padding-left: 15px;
    }
}

/*ページャー
---------------------------------------------------------------------------*/
.bl_pager {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    overflow-x: auto;
}

.bl_pager_inner {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin: 0 auto;
}

.bl_pager_inner > li {
    margin-right: 12px;
}

.bl_pager_inner > li:last-child {
    margin-right: 0;
}

.bl_pager_inner > li span,
.bl_pager_inner > li a {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.bl_pager_inner > li a {
    text-decoration: none;
    background-color: #070707;
}

@media (any-hover: hover) {
    .bl_pager_inner > li a {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_pager_inner > li a:focus,
    .bl_pager_inner > li a:hover {
        background-color: rgba(216, 2, 53, 0.8);
    }
}

@media all and (-ms-high-contrast: none) {
    .bl_pager_inner > li a {
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_pager_inner > li a:focus,
    .bl_pager_inner > li a:hover {
        background-color: rgba(216, 2, 53, 0.8);
    }
}

.bl_pager_inner > li span {
    background-color: #D80235;
}

.bl_pager_inner > li img {
    width: 10px;
}

.bl_pager_prev img {
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
}

/*ページャー レスポンシブ*/
@media screen and (max-width: 767px) {
    .bl_pager_inner > li {
        margin-right: 8px;
    }

    .bl_pager_inner > li span,
    .bl_pager_inner > li a {
        width: 40px;
        height: 40px;
    }

    .bl_pager_inner > li img {
        width: 8px;
    }
}

/*ウィジェット
---------------------------------------------------------------------------*/
.bl_widget_ttl {
    background-color: #D80235;
    color: #fff;
    font-size: 1.7rem;
    padding: 0.6em 0.4em;
    font-weight: bold;
    text-align: center;
}

.bl_widget_body {
    padding: 25px 15px;
}

.bl_widget_links > li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 1.4em;
}

.bl_widget_links > li::before {
    display: block;
    position: absolute;
    top: 0.3em;
    left: 0;
    border-radius: 50%;
    width: 0.9em;
    height: 0.9em;
    background-color: #D80235;
    content: "";
}

.bl_widget_links a {
    color: #D80235;
    font-weight: bold;
    text-decoration: none;
}

@media (any-hover: hover) {

    .bl_widget_links a:focus,
    .bl_widget_links a:hover {
        text-decoration: underline;
    }
}

@media all and (-ms-high-contrast: none) {

    .bl_widget_links a:focus,
    .bl_widget_links a:hover {
        text-decoration: underline;
    }
}

/*ウィジェット  レスポンシブ*/
@media screen and (max-width: 767px) {
    .bl_widget_ttl {
        position: relative;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .bl_widget_ttl::after {
        display: inline-block;
        margin-left: 0.4em;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 0.81em 0.47em 0 0.47em;
        border-color: #fff transparent transparent transparent;
        content: "";
        -webkit-transition: all 0.25s ease-out;
        transition: all 0.25s ease-out;
    }

    .bl_widget_ttl.is_active::after {
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg);
    }

    .bl_widget_body {
        display: none;
        padding: 15px;
    }
}

/*固定ページ
---------------------------------------------------------------------------*/



/*==========================================================================
ユニークグループ

・ある1ページでしか使用されていないことを明示するグループ
・そのページでしか使われていないため、改修や運用の際に影響範囲を気にせずにスタイルを編集してよい
===========================================================================*/

/*==========================================================================
トップページ
===========================================================================*/
/*メインビジュアル
---------------------------------------------------------------------------*/
.un_topMV_inner {
    height: calc(100vh - 100px);
    min-height: 600px;
    overflow: hidden;
}

.un_topMV_txt {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%;
    width: 40%;
    padding: 32px 24px;
    background-color: #D80235;
    float: left;
}

.un_topMV_catch {
    margin-bottom: 35px;
    width: 100%;
}

.un_topMV_img {
    display: inline-block;
    width: 60%;
}

@media all and (-ms-high-contrast: none) {
    .un_topMV {
        /* IEのみのスタイル */
    }

    .un_topMV_catch {
        width: 100%;
        position: relative;
        padding-top: 81.0782241015%;
        overflow: hidden;
    }

    .un_topMV_catch > img {
        position: absolute;
        top: 50%;
        width: 100%;
        height: 100%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        -o-object-fit: cover;
        object-fit: cover;
        font-family: "object-fit: cover;";
    }
}

/*メインビジュアル（トップページ） レスポンシブ*/
@media screen and (max-width: 991px) {
    .un_topMV_inner {
        height: calc(100vh - 70px);
    }
}

@media screen and (max-width: 767px) {
    .un_topMV_inner {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        position: relative;
        height: auto;
        min-height: auto;
    }

    .un_topMV_txt {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
        height: auto;
        width: 100%;
        padding: 20px 17px;
        float: none;
        z-index: 1;
    }

    .un_topMV_catch {
        max-width: 510px;
        margin: 0 auto -10px;
    }

    .un_topMV_img {
        width: 100%;
        height: auto
    }
}

/*ニュース
---------------------------------------------------------------------------*/
.un_topNews {
    padding: 60px 0 55px;
}

/*ニュース レスポンシブ*/
@media screen and (max-width: 767px) {
    .un_topNews {
        padding: 32px 0 40px;
    }
}

/*イベント
---------------------------------------------------------------------------*/
.un_topEvent {
    padding: 64px 0 88px;
}

/*イベント レスポンシブ*/
@media screen and (max-width: 767px) {
    .un_topEvent {
        padding: 34px 0 74px;
    }
}

/*ニュース（下階層）
---------------------------------------------------------------------------*/
.sing_ttl {
    font-size: 2.5rem;
    font-weight: 600;
    border-bottom: 4px dotted #D80235;
    padding-bottom: 10px;
    margin: 8px 0 25px
}

.sing_cont h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 15px;
    line-height: 1.5
}

.sing_cont h2 {
    font-size: 2.3rem;
    font-weight: 600;
    margin: 0 0 15px;
    line-height: 1.5
}

.sing_cont h3 {
    font-size: 2.0rem;
    font-weight: 600;
    margin: 0 0 15px;
    line-height: 1.6
}

.sing_cont h4 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 15px;
    line-height: 1.6
}

.sing_cont strong {
    font-weight: 600
}

.sg_news_wrap .bl_card_lead span {
    background-color: #D80235;
    color: #fff;
    margin-left: 1.2rem;
    padding: 3px 5px;
    font-weight: 400
}

.sg_news_wrap img {
    max-width: 100%;
    height: auto;
    width: auto
}

.sg_news_wrap p {
    margin-bottom: 1rem
}

/*ニュース（下階層） レスポンシブ*/
@media screen and (max-width: 767px) {
    .sg_news_wrap .sing_ttl {
        font-size: 1.8rem;
        padding-bottom: 6px;
        margin-bottom: 15px
    }

    .sing_cont h1 {
        font-size: 2.0rem;
    }

    .sing_cont h2 {
        font-size: 1.9rem;
    }

    .sing_cont h3 {
        font-size: 1.8rem;
    }

    .sing_cont h4 {
        font-size: 1.7rem;
    }

}

/*イベント情報（下階層）
---------------------------------------------------------------------------*/

#event_arc .bl_card.bl_card__blog .bl_card_lead {
    font-size: 1.5rem;
}

.sg_event_wrap img {
    max-width: 100%;
    width: auto;
    height: auto
}

.sg_event_wrap img.event-mv {
    width: 100%;
    margin-bottom: 20px
}


.sg_event_wrap .bl_card_lead {
    font-size: 1.8rem;
    margin-bottom: 0px
}

.sg_event_wrap p {
    margin-bottom: 1rem
}

@media screen and (max-width: 767px) {

    .sg_event_wrap .bl_card_lead {
        font-size: 1.5rem;
        margin-bottom: 0px
    }
}

/*
#slider {margin: 30px 0;}
#slider div {padding-left: 10px;}
*/

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

下階層

---------------------------------------------------------------------------*/
.cat_name {
    color: #fff;
    font-size: 1.4rem;
    padding: 5px 4px;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    margin-bottom: 30px !important;
    background-color: #D80235;
    margin-right: 5px
}

.announce {
    font-weight: 600;
    text-align: center;
    font-size: 2.8rem;
    color: #D80235;
}

.announce-img {
    max-width: 460px;
    margin: 40px auto
}

@media screen and (max-width: 767px) {
    .announce {
        font-size: 1.8rem;
    }

    .announce-img {
        max-width: 70%;
    }

}

/*募集概要
---------------------------------------------------------------------------*/
#bosyu-gaiyo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 25px 0
}

#bosyu-gaiyo h2 {
    margin: 0 0 35px;
    display: block;
    color: #D80235;
    background: none !important;
    padding: 0 0 3px;
    border-bottom: 6px solid #D80235;
    font-size: 3rem;
    font-weight: 600;

}

#bosyu-gaiyo h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #D80235;
    margin-bottom: 25px;
}

#bosyu-gaiyo .kaicho {
    font-weight: 600;
    text-align: right;
    margin: 15px 0 35px
}

.dl ul {
    display: flex;
    margin-bottom: 35px;
    justify-content: flex-end
}

.dl li {
    background: #D80235;

    margin-left: 15px;
    min-width: 280px;
    text-align: center
}

.dl li a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: block;
    padding: 15px 0;
}

#bosyu-gaiyo h3::before {
    content: "●";
    margin-right: 5px
}

#bosyu-gaiyo table.gaiyou_tbl {
    width: 100%;
    border-collapse: collapse;
    border: solid 2px #2f2f2f;
    margin-bottom: 35px
}

#bosyu-gaiyo .gaiyou_tbl th,
#bosyu-gaiyo .gaiyou_tbl td {
    border: solid 1px #2f2f2f;
    padding: 10px 15px
}

#bosyu-gaiyo .gaiyou_tbl th {
    font-weight: 600;
    text-align: left;
    width: 10em;
    vertical-align: middle;
    background-color: #fff1f4
}

#bosyu-gaiyo .rule {
    list-style: decimal;
    margin-left: 1.5em;
}

#bosyu-gaiyo .rule li {
    margin-bottom: 8px
}

#bosyu-gaiyo .rule li a {
    color: #D80235
}

#bosyu-gaiyo .rule li strong {
    font-weight: 600
}


#bosyu-gaiyo .scroll-table {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 35px
}

#bosyu-gaiyo .booth {
    width: 100%;
    border-collapse: collapse;
    border: solid 2px #2f2f2f;

}

#bosyu-gaiyo .booth th,
#bosyu-gaiyo .booth td {
    border: solid 1px #2f2f2f;
    padding: 7px 10px;
    text-align: center
}

#bosyu-gaiyo .booth th.booth_ttl {
    background-color: #D80235;
    font-weight: 600;
    color: #fff;
}

#bosyu-gaiyo .booth th.booth_type {
    background-color: #fff1f4;
    font-weight: 600;
}

#bosyu-gaiyo .gakuwari {
    margin-bottom: 20px;
    background-color: #D80235;
    padding: 10px 15px;
    display: inline-block;
    color: #fff;
    font-weight: 600
}

#bosyu-gaiyo .flow {
    margin-bottom: 15px
}

#bosyu-gaiyo .booth_map {
    max-width: 720px;
    margin: 0 auto 35px;
    text-align: center
}

#bosyu-gaiyo .offer {
    background-color: #D80235;
    font-weight: 600;
    max-width: 600px;
    margin: 55px auto 0;
    text-align: center;
    transition: all 0.3s ease;
}

#bosyu-gaiyo .offer:hover {
    background-color: #2f2f2f
}

#bosyu-gaiyo .offer a {
    text-decoration: none;
    color: #fff;
    display: block;
    padding: 16px;
    font-size: 2rem
}

@media screen and (max-width: 767px) {


    #bosyu-gaiyo h2 {
        margin: 0px 0 25px;
        border-bottom: 4px solid #D80235;
        font-size: 2.3rem;
    }

    #bosyu-gaiyo h3 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    #bosyu-gaiyo .kaicho {
        margin: 15px 0 25px
    }

    .dl {
        display: flex;
        justify-content: center;
    }

    .dl ul {
        display: block;
        margin-bottom: 25px;
        margin-left: -1.5rem;
    }

    .dl li {
        margin: 0 0 10px 0;
        max-width: 150px;
    }

    .dl li a {
        padding: 10px 0;
    }

    #bosyu-gaiyo .gaiyou_tbl th,
    #bosyu-gaiyo .gaiyou_tbl td {
        padding: 10px 10px
    }

    #bosyu-gaiyo .gaiyou_tbl th {
        width: 6em;
    }

    #bosyu-gaiyo .rule li {
        margin-bottom: 6px
    }

    #bosyu-gaiyo .scroll-table {
        border: none;
        margin-bottom: 25px
    }

    #bosyu-gaiyo .booth th,
    #bosyu-gaiyo .booth td {
        padding: 7px 10px;
    }

    #bosyu-gaiyo .gakuwari {
        padding: 12px 12px;

    }

    #bosyu-gaiyo .gakuwari p {
        line-height: 1.5
    }

    #bosyu-gaiyo .flow {
        margin-bottom: 15px;
        text-align: center;
        width: 100%
    }

    #bosyu-gaiyo .offer {
        margin: 30px auto 0;
    }

    #bosyu-gaiyo .offer a {
        text-decoration: none;
        color: #fff;
        display: block;
        padding: 10px 0;
        font-size: 1.8rem
    }
}


/*AINについて
---------------------------------------------------------------------------*/
#about h2 {
    font-size: 3rem;
    font-weight: 600;
    color: #fff;
    background-color: #D80235;
    padding: 3px 10px;
    margin-bottom: 20px;
    display: inline-block
}

#about h2.ayumi {
    margin: 35px 0 35px;
    display: block;
    color: #D80235;
    background: none !important;
    padding: 0 0 3px;
    border-bottom: 6px solid #D80235;
}

#about .grid-item {
    width: calc(100% / 2 - 24px);
    margin: 0 12px 25px 12px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 35px 30px;
    font-size: 1em;
    background: #ededed;
    border-radius: 12px;
}

#about .grid-item h3 {
    font-size: 2.4rem;
    font-weight: 600;
    color: #D80235;
    margin-bottom: 15px;
    padding-bottom: 7px;
    border-bottom: 4px dotted #D80235;
}

#about .grid-item p {
    margin-bottom: 1em
}

#about .grid-item p:last-of-type {
    margin-bottom: 0
}

#about .grid-item strong {
    font-weight: 600;
}

#about .grid-item img {
    margin-top: 15px
}

#about .ol-photo {
    padding: 30px;
}

#about .ol-photo img {
    margin-top: 0
}

#photo-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

#photo-list ul li {
    width: calc(100% / 5 - 10px);
    margin: 0 5px 10px
}

#photo-list ul li img {
    width: 100%
}


@media screen and (max-width: 991px) {
    #about .grid-item {
        width: 100%;
        margin: 0px 0 15px !important;
    }

    #about h2 {
        font-size: 2.8rem;
        line-height: 1.2;
        padding: 5px 10px;
    }

}

@media screen and (max-width: 767px) {
    #about .grid-item h3 {
        font-size: 1.8rem;
        margin-bottom: 10px
    }

    #about h2 {
        font-size: 2rem;
        line-height: 1.2;
        padding: 6px 10px;
    }

    #photo-list ul li {
        width: calc(100% / 3 - 10px);
        margin: 0 5px 10px
    }
}


/*出展者一覧
---------------------------------------------------------------------------*/
#artist_cont a {
    text-decoration: none
}

.index50 {
    text-align: right;
    margin-bottom: 25px
}

.index50 a {
    color: #2e29a8;
    font-weight: 600;
    text-decoration: none
}

#artist_cont .index {
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 4px);
}

#artist_cont .index li {
    width: calc(100% / 7 - 4px);
    background-color: #ffe0e0;
    text-align: center;
    padding: 10px 0;
    margin-right: 4px;
    border-radius: 5px 5px 0 0;
    border: 1px solid #818181;
    border-bottom: none
}

#artist_cont .index li:last-child {
    margin-right: 0 !important
}

#artist_cont .index li a {
    text-decoration: none;
    display: block
}

#artist_cont .index li.active {
    background-color: #000;
}

#artist_cont .index li.active a {
    text-decoration: none;
    color: #fff;
}

#artist_cont .index li:hover {
    background-color: #ffc1c1;
}

#artist_cont .index li.active:hover {
    background-color: #000;
}

.artist_cont_body {
    border-top: 2px solid #646464;
    padding-top: 40px;
}

/*******アーティスト情報*******/

.artist_cont_body .artist_list_wrap {
    display: flex;
    flex-flow: wrap;
}

.artist_cont_body .artist_box {
    width: calc(100% / 3 - 20px);
    border: 1px solid #c4c4c4;
    margin-right: 30px;
    margin-bottom: 35px;
    box-shadow: 2px 3px 5px rgba(0, 0, 0, 0.12);
}

.artist_cont_body .artist_box:nth-child(3n) {
    margin-right: 0
}

.artist_cont_body .artist_box h2 {
    font-weight: 600;
    background: #f5f5f5;
    padding: 6px 10px;
    border-bottom: 1px solid #818181;
}

.artist_cont_body .artist_box ul {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #707070;
}

.artist_cont_body .artist_box ul li {
    border-right: 1px solid #707070;
    padding: 6px 0;
    font-size: 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center
}

.artist_cont_body .artist_box ul li:last-child,
.artist_cont_body .artist_box ul li:first-child {
    border-right: none
}

.artist_cont_body .artist_box ul li.map {
    color: #fff;
    color: #fff;
    min-width: 5em;
    padding: 0
}

.artist_cont_body .artist_box ul li.map .label {
    font-size: 1.1rem;
    font-weight: normal;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    width: 1.6em;
}

.artist_cont_body .artist_box ul li.map .prace {
    min-width: 3.4em;
    text-align: center;
    font-size: 1.7rem;
    line-height: 0;
    padding-right: 7px
}

.artist_cont_body .artist_box ul li.map.yuki {
    background: #00a0e9;
}

.artist_cont_body .artist_box ul li.map.hokkoku {
    background: #924898;
}

.artist_cont_body .artist_box ul li.map.ootemon {
    background: #e85398;
}

.artist_cont_body .artist_box ul li.map.hakubutsukan {
    background: #c8a062;
}

.artist_cont_body .artist_box ul li.map.kiina {
    background: #6bbf08;
}

.artist_cont_body .artist_box ul li.map.kanaya {
    background: #f08300;
}

.artist_cont_body .artist_box ul li.map.yawata {
    background: #009944;
}

.artist_cont_body .artist_box ul li.type {
    background: #D5F2CE;
    flex-grow: 1;
}

.artist_cont_body .artist_box ul li.pref {
    background: #E3EFFF;
    flex-grow: 1;
}

.artist_cont_body .artist_box ul li.count {
    background: #fff;
    flex-grow: 1;
}

.artist_cont_body .artist_info {
    display: flex
}

.artist_cont_body .artist_img {
    padding: 10px 10px 10px 10px;
    width: 50%
}

.artist_cont_body .artist_com {
    width: 50%;
    padding: 15px 0 10px 3px;
    display: flex;
    flex-flow: column;
    justify-content: space-between
}

.artist_cont_body .artist_com p {
    padding-right: 10px
}

.artist_cont_body .artist_com p {
    font-size: 1.5rem;
    line-height: 1.6
}

.artist_cont_body .artist_box .dantai {
    padding: 3px 7px;
    background: #363636;
    color: #fff;
    font-size: 1.3rem;
}

.artist_com a {
    display: flex;
    font-size: 1.4rem;
    color: #0043AF;
    margin-bottom: 8px;
    font-weight: 600
}

.artist_com img {
    max-width: 20px;
    margin-right: 6px
}

/**************レスポンシブ****************************************/
@media screen and (max-width: 991px) {

    #artist_cont .index li {
        padding: 10px 0;
    }

    .artist_cont_body .artist_box {
        width: calc(100% / 2 - 10px);
        margin-right: 20px;
        margin-bottom: 25px;
    }

    .artist_cont_body .artist_box:nth-child(3n) {
        margin-right: 20px
    }

    .artist_cont_body .artist_box:nth-child(2n) {
        margin-right: 0
    }
}

@media screen and (max-width: 767px) {
    .index50 {
        margin-bottom: 15px
    }

    #artist_cont .index {
        display: flex;
        flex-flow: wrap;
        width: 100%;
        border-right: 1px solid #555555;
        border-left: 1px solid #555555;
        font-size: 1.4rem
    }

    #artist_cont .index li {
        width: calc(100% / 2);
        padding: 7px 0;
        margin-right: 0;
        border-radius: 0;
        border: none;
        border-top: 1px solid #555555;
        border-right: 1px solid #555555;
    }

    #artist_cont .index li:nth-child(2n) {
        border-right: none;
    }

    #artist_cont .index li.brank {
        background-color: #cbcbcb
    }

    .artist_cont_body {
        border-top: 1px solid #646464;
        padding-top: 30px;
    }

    .artist_cont_body .artist_box {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px;
    }

    .artist_cont_body .artist_box:nth-child(3n) {
        margin-right: 0
    }

    .artist_cont_body .artist_box:nth-child(2n) {
        margin-right: 0
    }

}


/******50音順INDEX*******/

.artist-table {
    border-collapse: collapse;
    width: 100%;
}

.artist-table th,
.artist-table td {
    border: 1px solid #2f2f2f;
    padding: 3px 10px;
    text-align: center
}

.artist-table td:nth-last-child(4n) {
    text-align: left
}

.artist-table td:nth-last-child(3n),
.artist-table td:nth-last-child(2n) {
    white-space: nowrap
}

.artist-table tr:nth-child(2n) {
    background-color: #f7f7f7
}

.artist-table td:last-child {
    text-align: left
}

.artist-table th {
    text-align: left;
}

.artist-table thead td {
    background-color: #D80235;
    color: #fff;
    text-align: center !important;
    font-weight: bold
}

.artist-table a {
    color: #0101be;
    text-decoration: none
}

.on-index {
    background-color: #ffe0e0
}

@media screen and (max-width: 991px) {

    .artist-table {
        width: 100%;
        border-bottom: 1px solid #2f2f2f;
    }

    .artist-table thead {
        display: none
    }

    .on-index {
        background-color: #D80235;
        color: #fff;
        font-weight: 600
    }

    .on-index::after {
        content: "行"
    }

    .artist-table th,
    .artist-table td {
        border: 1px solid #2f2f2f;
        padding: 4px 5px;
        text-align: left;
        display: block;
        border-bottom: none
    }

    .artist-table tr:nth-child(2n) {
        background-color: #fff
    }

    .artist-table td:nth-last-child(3n)::before {
        content: "ブース："
    }

    .artist-table td:nth-last-child(2n)::before {
        content: "ジャンル："
    }

    .artist-table td:last-child::before {
        content: "HP："
    }


    .artist-table th {
        font-weight: 600;
        background-color: #fff8dc
    }

    .artist-table thead td {
        background-color: #D80235;
        color: #fff;
        text-align: center;
        font-weight: bold
    }

    .artist-table a {
        color: #0101be;
        text-decoration: none
    }

    .sp-none {
        display: none !important
    }

    .artist-table .blanc {
        display: none
    }
}


/*#artist {
    max-width: 980px;
    margin: 0 auto
}
#artist .index {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 25px
}

#artist .index li {
    background-color: #272727;
    color: #fff;
    margin-right: 10px;
    padding: 3px 18px 3px 16px;
    border-radius: 30px;
    display: inline-block;
    width: 100%
}

#artist .index li:hover {
    background-color: #D80235
}

#artist .index li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: block
}

#artist h3 {
    background: #D80235;
    color: #fff;
    font-weight: 600;
    padding: 5px 10px;
    margin: 40px 0
}

#artist .artist_box {
    margin-bottom: 20px
}

#artist .artist_box ul {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex;
    border: 1px solid #797979;
}

#artist .artist_box ul li {
    text-align: center;
    padding: 12px 8px 10px 8px;
    display: table-cell;
    vertical-align: middle;
    font-size: 1.5rem;

}

#artist .artist_box .map {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    width: 4.5em
}

#artist .artist_box .map::before {
    content: "MAP";
    font-size: 11px;
    display: block;
    line-height: 1;
    font-weight: 400
}

#artist .artist_box .genre {
    background: #efefef;
    font-weight: 600;
    width: 4.5em
}

#artist .artist_box .name {
    padding: 10px 8px 8px 12px;
}

#artist .artist_box .hp img {
    width: 20px
}*/

/*出展者ブース背景色
---------------------------------*/
.bg-oo {
    background-color: #f02d5b
}

/*大手門通り*/
.bg-yu {
    background-color: #1c54af
}

/*ゆう一番街*/
.bg-kita {
    background-color: #1b8640
}

/*北国街道*/
.bg-na {
    background-color: #ff7e10
}

/*ながはま御坊*/
.bg-haku {
    background-color: #505050
}

/*博物館通り*/
.bg-ya {
    background-color: #5d3821
}

/*やわた夢生小路*/

@media screen and (max-width: 991px) {
    #artist .index {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 10px;
        justify-content: center
    }

    #artist .index li {
        display: inline-block;
        width: auto;
        margin-bottom: 10px;
        margin-right: 10px;
        padding: 3px 15px 3px 12px;

    }
}

/*Contact Form 7カスタマイズ*/
/*スマホContact Form 7カスタマイズ
-------------------------------------------------------------------------*/
#application-thanks h3,
#contact-thanks h3 {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    background: #292425;
    color: #fff;
    padding: 45px 15px;
    margin-bottom: 65px
}

#application-thanks .thanks_com,
#contact-thanks .thanks_com {
    text-align: center;
    margin-bottom: 60px
}


.inquiry_wrap {
    width: 100%;
    margin: 0 auto;
    padding: 0 2em;
}

.iq_ttl {
    font-weight: 600;
    color: #fff;
    font-size: 2rem;
    background: #D80235;
    padding: 5px 10px;
    margin: 25px 0
}

.inquiry_wrap p {
    margin-bottom: 30px;
    font-weight: 600;
}

.inquiry_wrap p.com {
    margin-bottom: 0;
    margin-top: 5px;
    font-size: 1.5rem;
    font-weight: 300
}

.inquiry_wrap p.com2 {
    margin-bottom: 0;
    font-weight: 600
}

.inquiry_wrap p.mes-wrap {
    margin-bottom: 12px
}

.inquiry {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0px;
}

/*見出し欄*/
.inquiry tr {
    border-top: dotted 1px #d7d7d7;
}

.inquiry tr:first-child {
    border-top: none;
}

.inquiry th {
    text-align: left;
    padding: 20px 0 20px 0;
    width: 17em;
    vertical-align: middle;
    font-weight: 600
        /*white-space: nowrap;*/
}

/*通常欄*/
.inquiry td {
    padding: 20px;
}

/*横の行とテーブル全体
.entry-content .inquiry tr,
.entry-content table {
    border: dotted 1px #d7d7d7;
}*/

/*必須の調整*/
.haveto {
    font-size: 13px;
    padding: 5px;
    background: #D80235;
    color: #fff;
    border-radius: 2px;
    margin-right: 7px;
    position: relative;
    bottom: 1px;
}

/*任意の調整*/
.any {
    font-size: 13px !important;
    padding: 5px;
    background: #006edb;
    color: #fff;
    border-radius: 2px;
    margin-right: 7px;
    position: relative;
    bottom: 1px;
}

/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item {
    display: block;
}

/*送信ボタンのデザイン変更*/
#formbtn {
    display: block;
    padding: 15px;
    width: 350px;
    background: #253069;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    margin: 25px auto 0;
    border: 2px solid #253069;
}

/*送信ボタンマウスホバー時*/
#formbtn:hover {
    background: #fff;
    color: #253069;
    border: 2px solid #253069;
}

.inquiry a {
    color: #D80235;
    font-weight: 600;
    margin-left: 1em
}

/*お問い合わせ欄の幅*/

.inquiry textarea[name="your-message"] {
    width: 100%;
    border: 1px #c1c1c1 solid;
    padding: 8px;
}

.inquiry [type="file"] {
    margin: 10px 0 0 0;
}

.inquiry [type="text"],
.inquiry [type="email"],
.inquiry [type="tel"] {
    margin-right: 5px;
    border: 1px #c1c1c1 solid;
    padding: 8px;
    max-width: 100% !important;
}

.inquiry .textsp {
    max-width: 100%
}

.inquiry .textfull {
    width: 100%
}

.inquiry .age {
    max-width: 6rem !important
}

.inquiry .history {
    width: 100%;
    border: 1px #c1c1c1 solid;
    padding: 8px;
    height: 150px
}

.inquiry .content {
    width: 100%;
    border: 1px #c1c1c1 solid;
    padding: 8px;
    height: 100px
}

.inquiry select {
    /*outline: none;
    border: none;*/
    border: 1px #c1c1c1 solid;
    cursor: pointer;
    line-height: 1.5;
    padding: 8px 10px
}

/*住所欄の幅*/
.inquiry #city {
    width: 100%;
}

.inquiry dl {
    margin-bottom: 8px
}

.inquiry dl dt {
    margin: 8px 0 5px 0
}

/* エラーメッセージの上部を消去 */
div.screen-reader-response {
    display: none;
}

.wpcf7-not-valid-tip {
    color: #ff0000 !important;
    width: 100%
}

/*送信成功*/
div.wpcf7-mail-sent-ok {
    background: #d5edda;
    color: #185626;
    border: 1px solid #c4e5cc;
    padding: 10px
}

/*送信NG*/
div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    background: #f7d7da;
    color: #711d26;
    border: 1px solid #f4c6cb;
    padding: 10px
}

/*送信失敗*/
div.wpcf7-mail-sent-ng {
    background: #f7d7da;
    color: #711d26;
    border: 1px solid #f4c6cb;
    padding: 10px
}

/*スパムなどで送信ブロックされた場合*/
div.wpcf7-spam-blocked {
    background: #fff2cf;
    color: #846314;
    border: 1px solid #feedbd;
    padding: 10px
}


@media(max-width:767px) {

    #application-thanks h3 {
        margin-bottom: 35px
    }

    #application-thanks .thanks_com {
        margin-bottom: 35px
    }

    .iq_ttl {
        font-weight: 600;
        font-size: 2rem;
    }

    .inquiry_wrap {
        padding: 0em;
    }

    .inquiry th,
    .inquiry td {
        display: block !important;
        width: 100% !important;
        border-top: none !important;
        -webkit-box-sizing: border-box !important;
        box-sizing: border-box !important;
    }

    .inquiry tr:first-child th {}

    .inquiry th {
        border-top: dotted 1px #c1c1c1 !important;
        padding: 20px 0 0
    }

    .inquiry td {
        padding: 10px 0 20px
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"] {
        width: 100%;
    }

    /* 必須・任意のサイズ調整 */
    .inquiry .haveto,
    .inquiry .any {
        font-size: 11px;
    }
}


/* 個人情報保護方針 
-------------------------------------------------------------------------*/
.privasy-box h4 {
    border-left: 8px solid #D80235;
    padding-left: 10px;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600
}

.privasy-box p {
    margin-left: 1em;
    margin-bottom: 1.5em;
}

.privasy-box .acc {
    font-size: 1.8rem;
}

.privasy-box .acc b {
    font-size: 2rem;
    font-weight: 600
}

@media screen and (max-width:768px) {
    .privasy-box h4 {
        border-left: 8px solid #D80235;
        padding-left: 10px;
        font-size: 1.6rem;
        margin-bottom: 15px;
        font-weight: 600
    }

    .privasy-box p {
        margin-left: 1em;
        margin-bottom: 1.5em;
        font-size: 1.5rem
    }
}

/* 出展規約 
-------------------------------------------------------------------------*/
.kiyaku-box h4 {
    border-left: 8px solid #D80235;
    border-bottom: 1px solid #D80235;
    padding: 5px 0 5px 10px;
    font-size: 1.7rem;
    margin-bottom: 25px;
    font-weight: 600
}

.kiyaku-box h5 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    font-weight: 600
}

.kiyaku-box p {
    margin-bottom: 1.5em;
    line-height: 1.65
}

.kiyaku-box .syusai {
    text-align: right
}

.kiyaku-box .syusai b {
    font-weight: 600
}

@media screen and (max-width:768px) {
    .kiyaku-box h4 {
        padding: 3px 0 3px 10px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}


/* 2021限定アーティスト一覧 
-------------------------------------------------------------------------*/

.art_wrap2021 {
    border: 1px solid gray;
    margin-bottom: 45px;
    max-width: 980px;
    margin: 0 auto 45px
}

.art_wrap2021 .info {
    display: flex;
    background: #EFEFEF;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid gray;
    width: 100%;
}

.art_wrap2021 .info h4 {
    font-weight: 600;
    font-size: 1.8rem;
    padding: 0 15px;
}

.art_wrap2021 .info .info_wrap {
    display: flex
}

.art_wrap2021 .info .genre,
.art_wrap2021 .info .from,
.art_wrap2021 .info .hp {
    padding: 11px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid gray;
    font-weight: 600
}

.art_wrap2021 .info .genre {
    background-color: #D5F2CE;
    min-width: 100px;
}

.art_wrap2021 .info .from {
    background-color: #E3EFFF;
}

.art_wrap2021 .info .hp {
    background-color: #f7003b;
}

.art_wrap2021 .info .hp img {
    width: 55px
}

.art_wrap2021 .detail {
    display: flex
}

.art_wrap2021 .detail .left {
    width: 260px;
    padding: 0
}

.art_wrap2021 .detail .right {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    padding: 20px 20px 20px 40px
}

.art_wrap2021 .detail .right p.com {
    font-weight: 600;
    font-size: 1.7rem
}

.art_wrap2021 .detail .right p.mes {
    margin-bottom: 3px
}

.art_wrap2021 .detail .right p.mes span {
    background-color: #D80235;
    color: #fff;
    padding: 5px 13px;
    border-radius: 20px;
    font-size: 1.3rem;
    margin-right: 12px;
}


.art_wrap2021 .detail .right ul {
    display: flex;
}

.art_wrap2021 .detail .right ul li {
    margin-right: 20px;
    max-width: 145px
}

@media(max-width:991px) {
    .art_wrap2021 .detail .left {
        width: 40%;
    }

    .art_wrap2021 .detail .right {
        width: 60%;
    }
}

@media(max-width:767px) {

    .art_wrap2021 {
        margin-bottom: 35px
    }

    .art_wrap2021 .info {
        display: block;
    }

    .art_wrap2021 .info h4 {
        font-size: 1.6rem;
        padding: 8px 12px;
        border-bottom: 1px solid gray;
    }

    .art_wrap2021 .info .info_wrap {
        display: flex
    }

    .art_wrap2021 .info .genre,
    .art_wrap2021 .info .from,
    .art_wrap2021 .info .hp {
        padding: 8px 0 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-left: 1px solid gray;
        font-weight: 600
    }

    .art_wrap2021 .info .genre {
        min-width: 50%;
        border-left: none;
    }

    .art_wrap2021 .info .from {
        width: 50%
    }

    .art_wrap2021 .info .hp {
        width: 23%
    }

    .art_wrap2021 .info .hp img {
        width: 50px
    }

    .art_wrap2021 .detail {
        display: block
    }

    .art_wrap2021 .detail .left {
        width: 100%;
        padding: 20px;
        text-align: center
    }

    .art_wrap2021 .detail .right {
        width: 100%;
        background: #F7F7F7;
        padding: 20px
    }

    .art_wrap2021 .detail .right p.com {
        font-weight: 600;
        font-size: 1.5rem;
        line-height: 1.5
    }

    .art_wrap2021 .detail .right p.mes {
        margin-bottom: 8px
    }


    .art_wrap2021 .detail .right ul {
        max-width: 100%;
        margin-top: 15px
    }

    .art_wrap2021 .detail .right ul li {
        margin-right: 15px;
        width: calc(100% / 3);
        max-width: 100%
    }

    .art_wrap2021 .detail .right ul li:last-child {
        margin-right: 0
    }
}

/***バーチャルAIN***/

.banner_top {
    padding: 85px 0 0;
}


.banner_artist {
    padding: 0 0 85px;

}

.banner_artist a {
    text-decoration: none;

}

.v_ain {
    background-color: #070707;
    color: #fff;
    padding: 35px 45px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.v_ain:hover {
    opacity: 0.8
}

.v_ain .catch {
    font-weight: 600;
    font-size: 2.6rem;

}

.v_ain img {
    max-width: 400px;
    margin-bottom: 20px
}


@media screen and (max-width: 991px) {
    .v_ain .catch {
        font-weight: 600;
        font-size: 2.2rem
    }
}

@media screen and (max-width: 767px) {
    .banner_top {
        padding: 32px 0 0;
    }

    .banner_artist {
        padding: 0 0 32px;
    }

    .v_ain {
        background-color: #070707;
        color: #fff;
        padding: 23px 20px;
        cursor: pointer
    }

    .v_ain .catch {
        font-weight: 600;
        font-size: 1.7rem;
        line-height: 1.4;
        margin-bottom: 8px
    }

    .v_ain img {
        max-width: 400px;
        margin-bottom: 20px
    }

}

.bosyu2022 {
    margin-bottom: 25px
}

.bosyu2022:hover {
    opacity: 0.7;
    transition: all 0.25s ease-out;
}

/*協賛企業
---------------------------------------------------------------------------*/

.sponsors_greeting {
    background-color: #f4f4f4;
    padding: 50px 45px 40px 45px
}

.sponsors_greeting h2 {
    text-align: center;
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 25px
}

.sponsors_greeting p {
    line-height: 1.9;
    font-size: 1.7rem
}

.sponsors_org {
    text-align: right;
    font-weight: 600;
    margin-top: 15px
}

.sponsors_list {
    margin-top: 45px
}

.sponsors_ttl {
    font-size: 2.5rem;
    font-weight: 600;
    background-color: #000;
    color: #fff;
    padding: 5px 10px;
    margin-bottom: 35px;
    text-align: center
}

.sponsors_list .sponsors_img {
    max-width: 600px;
    margin-bottom: 30px
}

.sponsors_list ul {
    display: flex;
    flex-flow: wrap;
    font-size: 1.8rem;
}

.sponsors_list ul li {
    width: calc(100% / 3);
    margin-bottom: 10px
}

.sponsors_list .ryaku {
    text-align: right;
}

@media screen and (max-width: 991px) {
    .sponsors_list ul li {
        width: calc(100% / 2);
    }

    .sponsors_list ul {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 767px) {
    .sponsors_greeting {
        padding: 20px
    }

    .sponsors_greeting h2 {
        font-size: 1.7rem;
        margin-bottom: 15px
    }

    .sponsors_greeting p {
        line-height: 1.8;
        font-size: 1.5rem
    }

    .sponsors_org {
        margin-top: 10px
    }

    .sponsors_list {
        margin-top: 25px
    }

    .sponsors_ttl {
        font-size: 1.7rem;
        padding: 5px 10px;
        margin-bottom: 25px;
    }

    .sponsors_list .sponsors_img {
        margin-bottom: 25px
    }

    .sponsors_list ul {
        font-size: 1.6rem;
    }

    .sponsors_list ul li {
        width: calc(100% / 1);
        margin-bottom: 5px;
        margin-left: 1em
    }
}

/*AINレジェンズ
---------------------------------------------------------------------------*/

/*アーカイブページ*/
#legends_wrap {
    background: #434343
}

#legends_wrap .ly_subCont {
    padding-top: 0;
    margin-top: -60px
}

.legends_MV {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5% 65px;
    height: 860px;
    background: linear-gradient(to bottom, #2a2a2a 0%, #2a2a2a 75%, #434343 100%);
}

/* UL：横3列 flex */
.legends_list {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6%;
    /* ← 横（列間）6% */
    row-gap: 45px;
    /* ← 縦 50px */
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

/* li：3列（横の隙間 6% × 2 を引く） */
.legends_list li {
    width: calc((100% - 12%) / 3);
}

/* 正方形・可変 */
.legends_prof_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* 名前 */
.legends_name {
    margin-top: 1em;
    text-align: center;
    color: #fff
}

.legends_list li a {
    text-decoration: none
}

.legends_list li a:hover {
    transition: opacity .4s ease;
    opacity: 0.5;
}

@media screen and (max-width: 1280px) {

    #legends_wrap .ly_subCont {
        padding-top: 0;
        margin-top: -80px
    }

    .legends_MV {
        padding: 0 5% 80px;
        height: 800px;
    }

}

@media screen and (max-width: 767px) {

    #legends_wrap .ly_subCont {
        padding-top: 0;
        margin-top: -60px
    }

    .legends_MV {
        padding: 0 5% 40px;
        height: 380px;
    }

    /*.legends_MV {
    padding: 35px 5%;
    height: auto
}*/

    .legends_MV img {
        max-width: 280px;
        margin: 0
    }


    .legends_list {
        row-gap: 20px;
        column-gap: 15px;
    }

    .legends_list li {
        width: 100%;
    }

    /* li：3列（横の隙間 6% × 2 を引く） */
    .legends_list li {
        width: calc((100% - 15px) / 2);
    }

    .legends_name {
        margin-top: .8em;
        font-size: 1.4rem
    }
}

/******シングルページ******/

.legends_single_MV {
    width: 100%;
    height: 700px;
    position: relative;
    background-size: cover;
    background-position: center;
}

/* 左上ロゴ */
.overray_logo {
    position: absolute;
    top: 3.5%;
    left: 2.5%;
    mix-blend-mode: difference;
}

.overray_logo img {
    width: 15vw;
    height: auto;
    max-width: 250px;
}

.legends_name_ttl {
    position: absolute;
    right: 55px;
    bottom: 40px;
    text-align: right;
    color: #fff;
}

.legends_name_ttl h1 {
    margin: 0;
    font-size: 5rem;
    line-height: 1.2;
    font-weight: 600;
    border-bottom: 3px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 10px
}

.legends_name_ttl .legends_kana {
    margin: 0;
    font-size: 1.7rem;
    letter-spacing: 0.1em;
}

#legends_wrap .ly_subCont {
    padding-top: 0;
    margin-top: -60px
}

#legends_sing_wrap {
    color: #fff;
    background: #434343;
    font-family: 'Noto Serif JP', serif;
}

.leg_sec_name {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #E8E8E8
}

.lg_ttl_name {
    font-size: 1.6rem
}

.leg_sec_name h2 {
    font-size: 4.2rem;
    display: flex;
    align-items: center;
    font-weight: 600
}

.leg_sec_name h2 span {
    font-size: 1.8rem;
    font-weight: 400;
    margin-left: 1em
}

.leg_sec_prof {
    margin-bottom: 45px;
    padding-bottom: 45px;
    border-bottom: 1px solid #E8E8E8
}

.leg_sec_prof h2,
.leg_sec_ainworks h2 {
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 20px
}

.leg_sec_prof .leg_prof p {
    line-height: 2.2;
}

.leg_prof_works {
    display: flex;
    width: 100%;
    gap: 35px;
    margin: 40px 0 15px
}

.leg_prof_works li {
    flex: 0 0 calc((100% - 70px) / 3);
    max-width: calc((100% - 70px) / 3);
}

.leg_prof_works li a {
    display: block;
    width: 100%;
}

.leg_prof_works li img {
    width: 100%;
    aspect-ratio: 1 / 1;
    /* 正方形 */
    object-fit: cover;
    /* トリミング */
    display: block;
}


@media screen and (max-width: 767px) {

    .legends_single_MV {
        height: 360px;
    }

    .overray_logo {
        top: 3.5%;
        left: 2.5%;
    }

    .overray_logo img {
        width: auto;
        max-width: 100px;
    }

    .legends_name_ttl {
        right: 20px;
        bottom: 15px;
    }

    .legends_name_ttl h1 {
        font-size: 3rem;
        padding-bottom: 6px;
        margin-bottom: 6px
    }

    .legends_name_ttl .legends_kana {
        font-size: 1.5rem;
    }

    #legends_wrap .ly_subCont {
        padding-top: 0;
        margin-top: -60px
    }

    #legends_sing_wrap {
        color: #fff;
        background: #434343;
        font-family: 'Noto Serif JP', serif;
    }

    .lg_ttl_name {
        font-size: 1.5rem
    }

    .leg_sec_name h2 {
        font-size: 2.3rem;
        /*flex-flow: column;
    align-items: flex-start*/

    }

    .leg_sec_name h2 span {
        font-size: 1.4rem;
        margin-left: 0em
    }

    .leg_sec_name {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .leg_sec_prof {
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .leg_sec_prof h2,
    .leg_sec_ainworks h2 {
        font-size: 2rem;
        margin-bottom: 15px
    }

    .leg_sec_prof .leg_prof p {
        line-height: 2.0;
    }

    .leg_prof_works {
        display: flex;
        width: 100%;
        gap: 10px;
        margin: 20px 0 5px
    }

    .leg_prof_works li {
        flex: 1 1 calc((100% - 20px) / 3);
    }

    .leg_prof_works li a {
        display: block;
        width: 100%;
    }
}

/***レジェンド　投稿****/

.leg_sec_ainworks h3 {
    font-weight: 600;
    font-size: 1.7rem;
    margin-bottom: 20px
}

.leg_sec_ainworks .wp-block-gallery.is-layout-flex {
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 45px
}

.leg_sec_ainworks .wp-block-gallery.is-layout-flex > .wp-block-image {
    flex: 0 0 calc((100% - 75px) / 6);
    /* 20px gapが2本=40px */
    max-width: calc((100% - 75px) / 6);
    margin: 0;
}

.leg_sec_ainworks .wp-block-gallery.is-layout-flex > .wp-block-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media screen and (max-width: 991px) {

    .leg_sec_ainworks .wp-block-gallery.is-layout-flex {
        gap: 12px;
    }

    .leg_sec_ainworks .wp-block-gallery.is-layout-flex > .wp-block-image {
        flex: 0 0 calc((100% - 24px) / 3);
        max-width: calc((100% - 24px) / 3);
        margin: 0;
    }

}

@media screen and (max-width: 767px) {

    .leg_sec_ainworks .wp-block-gallery.is-layout-flex {
        gap: 10px;
    }

    .leg_sec_ainworks .wp-block-gallery.is-layout-flex > .wp-block-image {
        flex: 0 0 calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
        margin: 0;
    }

}

