/*
Theme Name: MGM大阪ウェブサイト
Author: MGM大阪株式会社
Description: MGM大阪ウェブサイト用テーマ
*/

@charset "utf-8";

/*----------------------------
ギフト告知の非表示
----------------------------*/
#wpcom-gifting-banner {
    display: none;
}


/* ************************************************************

基本設定

*************************************************************/
html {
    margin: 0 !important;
}

body {
    margin: 0;
    padding: 100px 0 0;
    /* font-family: 'Comfortaa', "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", cursive, sans-serif;*/
    font-family: var(--fontDefault);
    font-size: 15px;
    line-height: 1.5;
    background: #fff;
    text-align: justify;
    text-align: left;
    overflow-x: hidden;
    color: #333;
}

@media screen and (max-width:1024px) {
    body {
        padding: 70px 0 0;
    }
}

@media screen and (max-width:599px) {
    body {
        font-size: 14px;
    }
}

body#en {
    text-align: left;
    letter-spacing: 1px;
}

* {
    transition: .3s ease;
}

img,
svg {
    vertical-align: bottom;
    max-width: 100%;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

p:not(:last-of-type) {
    margin-bottom: 1em;
}

input {
    appearance: auto;
}

p.notes {
    font-size: 14px;
    position: relative;
    padding-left: 1.2em;
}

@media screen and (max-width:599px) {
    p.notes {
        font-size: 12px;
    }
}

p.notes::before {
    content: "※";
    position: absolute;
    left: 0;
    top: 0;
}


/*----------------------------
記事ページ共通の設定
----------------------------*/
.wp-block-group {
    margin-bottom: 50px;
}

.single strong {
    font-weight: 900;
    color: #555;
}

/*----------------------------
フォントの設定
----------------------------*/
:root {
    /*旧設定*/
    /*
    --fontDefault:
        'Calibri',
        'Avenir',
        'Yu Gothic',
        '游ゴシック',
        'YuGothic',
        '游ゴシック体',
        'Hiragino Sans',
        'ヒラギノ角ゴシック',
        'Meiryo',
        'メイリオ',
        sans-serif;
    */

    --fontDefault:
        'Inter',
        'M PLUS 1',
        'Meiryo',
        'メイリオ',
        sans-serif;

    --fontMincho:
        'Playfair Display',
        'Noto Serif JP',
        sans-serif;
}

/*----------------------------
サイトの横幅上限(数値指定する場合)
----------------------------*/
:root {
    --siteWidth: 1300px;
}

/*----------------------------
サイトの基本横幅設定
----------------------------*/
.sec {
    padding: 100px 0;
}

@media screen and (max-width:599px) {
    .sec {
        padding: 50px 0;
    }
}

.sec>.inner {
    max-width: var(--siteWidth);
    margin: auto;
}

@media screen and (max-width:1300px) {
    .sec>.inner {
        padding: 0 20px;
    }
}

@media screen and (max-width:599px) {
    .sec>.inner {
        padding: 0 10px;
    }
}


/*----------------------------
テキストの左右中央
----------------------------*/
.TextCenter {
    text-align: center;
}

.TextLeft {
    text-align: left;
}

.TextRight {
    text-align: right;
}


/*----------------------------
aタグ透過
----------------------------*/
a {
    transition: .3s;
    color: #333;
    display: inline-block;
}

a:hover {
    opacity: .7;
    color: #333;
}


/*----------------------------
PCのみ
----------------------------*/
.pcOnly {
    display: block;
}

@media screen and (max-width:1024px) {
    .pcOnly {
        display: none;
    }
}

/*----------------------------
SPのみ
----------------------------*/
.spOnly {
    display: none;
}

@media screen and (max-width:1024px) {
    .spOnly {
        display: block;
    }
}

/*----------------------------
カラー設定
----------------------------*/
:root {
    --MainColor: #BCA670;
    --SubColor: #71655f;
}


/*----------------------------
コンテンツのフェードイン
----------------------------*/
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.contentsFade {
    opacity: 0;
}


/*----------------------------
見出しの設定
----------------------------*/
h3:not(#MV h3) {
    font-size: 30px;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
    color: var(--MainColor);
    margin-bottom: 50px;
}

@media screen and (max-width:599px) {
    h3:not(#MV h3) {
        font-size: 20px;
        max-block-size: 30px;
    }
}

h3:not(#MV h3) span {
    font-size: 25px;
    display: block;
    font-weight: 300;
}

@media screen and (max-width:599px) {
    h3:not(#MV h3) span {
        font-size: 16px;
    }
}

h3:not(#MV h3).White {
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, .3);
}


/*----------------------------
次へボタン
----------------------------*/
.moreBT a,
#Reports .ReportsList .moreBT {
    display: block;
    background: var(--MainColor);
    text-align: center;
    color: #fff;
    padding: 20px;
    position: relative;
    max-width: 280px;
    margin: auto;
}

.moreBT a::before,
#Reports .ReportsList .moreBT::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}


/* ************************************************************

ヘッダー

*************************************************************/
#header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 89;
}

#header>.inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    gap: 20px;
}

@media screen and (max-width:1024px) {
    #header>.inner {
        padding: 10px 20px;
    }
}

@media screen and (max-width:599px) {
    #header>.inner {
        padding: 10px 10px;
    }
}

#header h1 {
    line-height: 1;
    flex: 0 1 100px;
}

#header h1 img {
    max-width: 91px;
}

@media screen and (max-width:1024px) {
    #header h1 img {
        height: 50px;
    }
}


/*----------------------------
PCグローバルナビ
----------------------------*/
#GlobalNav {
    flex: 0 1 calc(100% - 120px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 50px;
}

#GlobalNav .main {
    flex: 0 1 auto;
}

#GlobalNav .main ul {
    display: flex;
    align-items: center;
    /*gap: 80px;*/
    gap: 50px;
    font-weight: 400;
}

#GlobalNav .main li {
    flex: 0 1 calc(100%/5);
    white-space: nowrap;
    display: flex;
    align-items: center;
    font-size: 15px;
}

#GlobalNav .main li a {
    flex: 1 1 100%;
}



/*----------------------------
SPグローバルナビ
----------------------------*/
@media screen and (max-width:1024px) {
    #GlobalNav .main {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: fixed;
        right: -120%;
        top: 0;
        z-index: 100;
        width: 280px;
        height: 100vh;
        background: #fff;
        padding: 30px 0;
    }

    #GlobalNav .main.active {
        right: 0;
    }

    #GlobalNav .main>.inner {
        overflow: auto;
        max-height: 100%;
    }

    #GlobalNav .main figure {
        flex: 0 1 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    #GlobalNav .main figure img {
        margin-bottom: 5px;
        width: 90px;
    }

    #GlobalNav .main figure figcaption {
        font-size: 12px;
        color: var(--MainColor);
    }

    #GlobalNav .main ul {
        display: block;
    }

    #GlobalNav .main ul>li {
        padding: 0 20px 0;
    }

    #GlobalNav .main ul>li:not(:last-child) {
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: dotted 1px #71655f;
    }

    #GlobalNav .main ul>li a {
        text-align: center;
    }
}

#header .SP_NavBG {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    background: rgba(0, 0, 0, .3);
    display: none;
}

#header .SP_NavBG.active {
    display: block;
    opacity: 1;
    z-index: 90;
}

/*----------------------------
言語切り替えボタン
----------------------------*/
#GlobalNav .lang {
    flex: 0 1 170px;
}

@media screen and (max-width:599px) {
    #GlobalNav .lang {
        flex: 0 1 100px;
    }
}

#GlobalNav .lang ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width:599px) {
    #GlobalNav .lang ul {
        gap: 10px;
    }
}

#GlobalNav .lang li {
    flex: 0 1 calc(100%/2);
}

#GlobalNav .lang .ja a {
    background: var(--MainColor);
    color: #fff;
    text-align: center;
    padding: 2px 10px;
    display: block;
    border-radius: 5px;
}

#header.en #GlobalNav .lang .ja a {
    background: #ded6c7;
    color: #a69b86;
    text-align: center;
    padding: 2px 10px;
    display: block;
    border-radius: 5px;
}

#GlobalNav .lang .en a {
    background: #ded6c7;
    color: #a69b86;
    text-align: center;
    padding: 2px 10px;
    display: block;
    border-radius: 5px;
}

#header.en #GlobalNav .lang .en a {
    background: var(--MainColor);
    color: #fff;
    text-align: center;
    padding: 2px 10px;
    display: block;
    border-radius: 5px;
}


/*----------------------------
ハンバーガーボタン
----------------------------*/
#header .hamburgerBT {
    display: none;
}

@media screen and (max-width:1024px) {
    #header .hamburgerBT {
        display: block;
        width: 20px;
        height: 20px;
        position: relative;
        cursor: pointer;
        z-index: 100;
    }

    #header .hamburgerBT>span {
        position: absolute;
        width: 100%;
        height: 2px;
        border-radius: 10px;
        background: var(--MainColor);
        left: 0;
    }

    #header .hamburgerBT>span:nth-child(1) {
        top: 0;
    }

    #header .hamburgerBT.active>span:nth-child(1) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    #header .hamburgerBT>span:nth-child(2) {
        top: 50%;
        transform: translate(0, -50%);
    }

    #header .hamburgerBT.active>span:nth-child(2) {
        opacity: 0;
    }

    #header .hamburgerBT>span:nth-child(3) {
        bottom: 0;
    }

    #header .hamburgerBT.active>span:nth-child(3) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
}



/* ************************************************************

旧メインビジュアル

*************************************************************/
#MV h2 {
    font-weight: 600;
    color: var(--MainColor);
    margin-bottom: 20px;
    text-align: center;
}

/* 
#MV {
    padding: 150px 0;
}

@media screen and (max-width:1024px) {
    #MV {
        padding: 90px 0;
    }
}

#MV h2 {
    font-size: 120px;
    line-height: 1;
    font-weight: 600;
    color: var(--MainColor);
    margin-bottom: 20px;
    text-align: center;
}

@media screen and (max-width:1024px) {
    #MV h2 {
        font-size: 11.5vw;
    }
}

@media screen and (max-width:599px) {
    #MV h2 {
        font-size: 18vw;
    }
}

#MV h2 span.fontSmall {
    font-size: 80px;
    display: block;
}

@media screen and (max-width:1024px) {
    #MV h2 span.fontSmall {
        font-size: 7.8vw;
    }
}

@media screen and (max-width:599px) {
    #MV h2 span.fontSmall {
        font-size: 13vw;
    }
}

#MV h2 span.fontBigSp {}

@media screen and (max-width:599px) {
    #MV h2 span.fontBigSp {
        font-size: 25vw;
    }
}

#MV h2 br {
    display: none;
}

@media screen and (max-width:599px) {
    #MV h2 br {
        display: block;
    }
}

#MV h3 {
    color: var(--SubColor);
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
    text-align: center;
}

@media screen and (max-width:1024px) {
    #MV h3 {
        font-size: 4.8vw;
    }
}

@media screen and (max-width:599px) {
    #MV h3 {
        font-size: 8vw;
        text-align: justify;
        line-height: 1.3;
    }
}

#MV p {
    text-align: center;
}

@media screen and (max-width:599px) {
    #MV p {
        text-align: inherit;
    }

    #MV p br {
        display: none;
    }
}
*/


/* ************************************************************

メインビジュアル

*************************************************************/
.home #MV.sec,
#en #MV.sec {
    padding: 0;
    position: relative;
    text-align: center;
}

/* スクロールダウンの位置 */
.home #MV .scroll,
#en #MV .scroll {
    position: absolute;
    left: 50%;
    bottom: 15%;
    color: #fff;
    transform: translate(-50%, 0);
}

@media screen and (max-width:1024px) {

    .home #MV .scroll,
    #en #MV .scroll {
        display: none;
    }
}

/* 線のアニメーション部分 */
.home #MV .scroll::before,
#en #MV .scroll::before {
    animation: scroll 2s infinite;
    background-color: #fff;
    bottom: -75px;
    content: "";
    height: 70px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}

/* 線のアニメーション */
@keyframes scroll {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }

    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }

    51% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }

    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}



/* ************************************************************

イントロダクションエリア

*************************************************************/
#introduction {
    font-family: var(--fontMincho);
}

#introduction h2 {
    font-size: 28px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media screen and (max-width:599px) {
    #introduction h2 {
        font-size: 18px;
    }
}

#introduction p {
    font-size: 22px;
    font-size: 19px;
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media screen and (max-width:1300px) {
    #introduction p {
        letter-spacing: -1px;
    }
}

@media screen and (max-width:1024px) {
    #introduction p {
        margin-bottom: 1em;
        letter-spacing: 1;
        /*
        font-size: 20px;
        */
    }

    /*
    #introduction p br {
        display: none;
    }
    */
}

@media screen and (max-width:599px) {
    #introduction p {
        font-size: 14px;
    }
}


/* ************************************************************

トップページ画像エリア

*************************************************************/
#topPicture {
    background: url(images/topImageAreaBG.jpg) no-repeat center center;
    background-size: cover;
}

#topPicture ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#topPicture ul>li {
    flex: 0 1 calc(100%/2 - 20px);
}

@media screen and (max-width:599px) {
    #topPicture ul>li {
        flex: 0 1 100%;
        margin-bottom: 20px;
    }

    #topPicture ul>li:last-child {
        margin-bottom: 0;
    }
}

#topPicture ul>li img {
    border-radius: 3px;
}


/* ************************************************************

旧会社概要（トップページ表示時代）

*************************************************************/
/*
#CompanyProfile {
    background: linear-gradient(to bottom,
            rgba(153, 109, 22, 1) 0%,
            rgba(153, 109, 22, 1) 60%,
            rgba(255, 255, 255, 1) 60%,
            rgba(255, 255, 255, 1) 100%);
}

#CompanyProfile .ProfileData {
    background: #fff;
    border-radius: 10px;
    padding: 50px 30px;
    box-shadow: 0 0 5px rgba(199, 183, 166, .8);
}

#CompanyProfile .ProfileData dl {
    border-top: solid 1px #ccc;
}

#CompanyProfile .ProfileData dl>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: solid 1px #ccc;
}

#CompanyProfile .ProfileData dl>div dt {
    flex: 0 1 160px;
    padding: 30px 0 30px 20px;
    color: var(--MainColor);
    font-weight: 600;
}

@media screen and (max-width:599px) {
    #CompanyProfile .ProfileData dl>div dt {
        flex: 0 1 90px;
        padding: 20px 0;
    }
}

#CompanyProfile .ProfileData dl>div dd {
    flex: 0 1 calc(100% - 180px);
    padding: 30px 0;
}

@media screen and (max-width:599px) {
    #CompanyProfile .ProfileData dl>div dd {
        flex: 0 1 calc(100% - 110px);
        padding: 20px 0;
    }
}

#CompanyProfile .ProfileData dl>div dd p {
    margin-bottom: 0;
}
*/



/* ************************************************************

事業計画・報告

*************************************************************/
#Reports {
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 65%,
            rgba(113, 101, 95, 1) 65%,
            rgba(113, 101, 95, 1) 100%);
    background: #fff;
}

@media screen and (max-width:1024px) {
    #Reports {
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 1) 50%,
                rgba(113, 101, 95, 1) 50%,
                rgba(113, 101, 95, 1) 100%);
        background: #fff;
    }
}

#Reports .ReportsList {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    flex-wrap: wrap;
}

#Reports .ReportsList>li {
    flex: 0 1 calc(100%/3 - 25px);
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(199, 183, 166, .8);
    position: relative;
}

@media screen and (max-width:1024px) {
    #Reports .ReportsList>li {
        flex: 0 1 100%;
    }

    #Reports .ReportsList>li:not(:last-child) {
        margin-bottom: 30px;
    }
}

#Reports .ReportsList>li a {
    display: block;
    padding: 30px 30px 120px;
}

#Reports .ReportsList>li .image {
    background: var(--MainColor);
    color: #fff;
    text-align: center;
    padding: 30px 10px;
    border-radius: 5px;
    margin-bottom: 30px;
}

#Reports .ReportsList>li .image p {
    font-size: 25px;
}

@media screen and (max-width:1300px) {
    #Reports .ReportsList>li .image p {
        font-size: 2vw;
    }
}

@media screen and (max-width:1024px) {
    #Reports .ReportsList>li .image p {
        font-size: 1.8vw;
    }
}

@media screen and (max-width:599px) {
    #Reports .ReportsList>li .image p {
        font-size: 4vw;
    }
}

#Reports .ReportsList>li .text {
    margin-bottom: 50px;
}

#Reports .ReportsList>li .text .date {
    border-bottom: solid 1px #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}


#Reports .ReportsList>li .moreBT {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0);
    width: calc(100% - 60px);
}


/*----------------------------
投稿型 新仕様のレイアウトCSS
----------------------------*/
#Reports>.inner {
    position: relative;
}

#Reports h3:not(#MV h3) {
    text-align: left;
    /* text-shadow: 0 0 5px rgba(0, 0, 0, .3); */
}

@media screen and (max-width:1024px) {
    #Reports h3:not(#MV h3) {
        text-align: center;
    }
}


/*---
一覧表示エリア
---*/
#Reports .NewsList {
    border-top: solid 1px #ccc;
}

@media screen and (max-width:1024px) {
    #Reports .NewsList {
        margin-bottom: 50px;
    }
}

#Reports .NewsList>li {
    border-bottom: solid 1px #ccc;
}

#Reports .NewsList>li a {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

@media screen and (max-width:1024px) {
    #Reports .NewsList>li a {
        align-items: flex-start;
    }
}

#Reports .NewsList>li a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    width: 10px;
    height: 10px;
}

#Reports .NewsList>li div.date {
    flex: 0 1 150px;
    padding: 3px 10px;
    color: #fff;
    background: var(--MainColor);
    text-align: center;
    border-radius: 5px;
}

@media screen and (max-width:599px) {
    #Reports .NewsList>li div.date {
        flex: 0 1 100px;
    }
}

#Reports .NewsList>li div.date+p {
    flex: 0 1 calc(100% - 150px);
    padding-right: 2em;
}

@media screen and (max-width:1024px) {
    #Reports .NewsList>li div.date+p {
        flex: 0 1 calc(100% - 120px);
    }
}


/*---
一覧ボタン
---*/
#Reports .NewsList+.moreBT {
    position: absolute;
    right: 0;
    top: 20px;
    width: 100%;
    max-width: 200px;
}

@media screen and (max-width:1300px) {
    #Reports .NewsList+.moreBT {
        right: 20px;
    }
}

@media screen and (max-width:1024px) {
    #Reports .NewsList+.moreBT {
        position: static;
        width: auto;
        max-width: none;
    }
}

#Reports .NewsList+.moreBT a {
    text-align: left;
    padding: 5px 20px 5px 10px;
}

@media screen and (max-width:1024px) {
    #Reports .NewsList+.moreBT a {
        padding: 20px;
        text-align: center;
    }
}





/* ************************************************************

お知らせ

*************************************************************/
#News>.inner {
    position: relative;
}

#News h3:not(#MV h3) {
    text-align: left;
}

@media screen and (max-width:1024px) {
    #News h3:not(#MV h3) {
        text-align: center;
    }
}

#News .NewsList {
    border-top: solid 1px #ccc;
}

@media screen and (max-width:1024px) {
    #News .NewsList {
        margin-bottom: 50px;
    }
}

#News .NewsList>li {
    border-bottom: solid 1px #ccc;
}

#News .NewsList>li a {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

@media screen and (max-width:1024px) {
    #News .NewsList>li a {
        align-items: flex-start;
    }
}

#News .NewsList>li a::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);
    border-top: solid 2px var(--MainColor);
    border-right: solid 2px var(--MainColor);
    width: 10px;
    height: 10px;
}

#News .NewsList>li div.date {
    flex: 0 1 150px;
    padding: 3px 10px;
    color: #fff;
    background: var(--MainColor);
    text-align: center;
    border-radius: 5px;
}

@media screen and (max-width:599px) {
    #News .NewsList>li div.date {
        flex: 0 1 100px;
    }
}

#News .NewsList>li div.date+p {
    flex: 0 1 calc(100% - 150px);
    padding-right: 2em;
}

@media screen and (max-width:1024px) {
    #News .NewsList>li div.date+p {
        flex: 0 1 calc(100% - 120px);
    }
}


/*---
一覧ボタン
---*/
#News .moreBT {
    position: absolute;
    right: 0;
    top: 20px;
    width: 100%;
    max-width: 200px;
}

@media screen and (max-width:1300px) {
    #News .moreBT {
        right: 20px;
    }
}

@media screen and (max-width:1024px) {
    #News .moreBT {
        position: static;
        width: auto;
        max-width: none;
    }
}

#News .moreBT a {
    text-align: left;
    padding: 5px 20px 5px 10px;
}

@media screen and (max-width:1024px) {
    #News .moreBT a {
        padding: 20px;
        text-align: center;
    }
}




/* ************************************************************

IRとは？

*************************************************************/
#Whats {
    background: var(--MainColor);
}

#Whats h3 {
    font-family: var(--fontMincho);
}

#Whats .main {
    font-family: var(--fontMincho);
    background: #fff;
    border-radius: 5px;
    padding: 60px 30px;
    font-size: 22px;
    font-size: 19px;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media screen and (max-width:1300px) {
    #Whats .main {
        font-size: 16px;
        letter-spacing: -1px;
    }
}

@media screen and (max-width:1024px) {
    #Whats .main {
        font-size: 1.9vw;
        font-size: 20px;
        font-size: 16px;
    }
}

@media screen and (max-width:599px) {
    #Whats .main {
        font-size: 2.3vw;
        font-size: 20px;
        font-size: 14px;
    }
}

@media screen and (max-width:400px) {
    #Whats .main {
        padding: 40px 10px;
        font-size: calc(10px + .2vw);
        font-size: 14px;
        letter-spacing: -1;
    }
}

#Whats .main br.pc {
    display: block;
}

@media screen and (max-width:599px) {
    #Whats .main br.pc {
        display: none;
    }
}

#Whats .main br.tb {
    display: none;
}

@media screen and (max-width:1024px) {
    #Whats .main br.tb {
        display: block;
    }
}

#Whats .main br.sp {
    display: none;
}

@media screen and (max-width:599px) {
    #Whats .main br.sp {
        display: block;
    }
}

/* ************************************************************

フッター

*************************************************************/
#footer.sec {
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}

/*----------------------------
ロゴエリア
----------------------------*/
#footer #footerLogoArea {
    background: url(images/common/footerLogoBG.jpg) no-repeat center center;
    background-size: cover;
    padding: 160px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:599px) {
    #footer #footerLogoArea img {
        max-width: 150px;
    }
}

/*----------------------------
ナビゲーションエリア
----------------------------*/
#footer>.inner {
    padding-top: 100px;
}

#footer .footerNav {
    margin-bottom: 50px;
}

#footer .footerNav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

@media screen and (max-width:1024px) {
    #footer .footerNav ul {
        display: block;
    }

    #footer .footerNav ul>li {
        text-align: center;
        border-bottom: dotted 1px #bbb;
    }

    #footer .footerNav ul>li a {
        padding: 10px 0;
        display: block;
    }
}

#footer .copyright {
    margin: 0 calc(50% - 50vw);
    padding: 50px 20px;
    border-top: solid 1px #ccc;
}

#footer .copyright p {
    text-align: center;
}




/* ************************************************************

ニュース一覧

*************************************************************/
body.archive #MV {
    padding: 100px 0;
    background: var(--MainColor);
    /* background: linear-gradient(to bottom, rgba(153, 109, 22, 1) 0%, rgba(255, 255, 255, 1) 100%);*/
}

body.archive #MV h2 {
    font-size: 40px;
    font-family: var(--fontMincho);
    color: #fff;
    text-shadow: 0 0 10px var(--MainColor);
    line-height: 1.3;
}

@media screen and (max-width:1024px) {
    body.archive #MV h2 {
        font-size: 6vw;
    }
}

@media screen and (max-width:599px) {
    body.archive #MV h2 {
        font-size: 12vw;
    }
}

body.archive #MV h2 span.fontSmall {
    font-size: 20px;
    display: block;
}

@media screen and (max-width:1024px) {
    body.archive #MV h2 span.fontSmall {
        font-size: 4vw;
    }
}

@media screen and (max-width:599px) {
    body.archive #MV h2 span.fontSmall {
        font-size: 10vw;
    }
}

body.archive .NewsList {
    margin-bottom: 50px;
}

body.archive .pagination h2 {
    display: none;
}

body.archive .pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

body.archive .pagination .nav-links>span,
body.archive .pagination .nav-links a {
    display: block;
}

body.archive .pagination .nav-links>span.current {
    position: relative;
}

body.archive .pagination .nav-links>span.current::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    width: 100%;
    height: 2px;
    background: #333;
}

body.archive .pagination .nav-links .next {
    width: 10px;
    height: 10px;
    position: relative;
}

body.archive .pagination .nav-links .next::before {
    width: 7px;
    height: 7px;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    border-top: solid 2px var(--SubColor);
    border-right: solid 2px var(--SubColor);
}

body.archive .pagination .nav-links .prev {
    width: 10px;
    height: 10px;
    position: relative;
}

body.archive .pagination .nav-links .prev::before {
    width: 7px;
    height: 7px;
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    border-top: solid 2px var(--SubColor);
    border-left: solid 2px var(--SubColor);
}


/* ************************************************************

ニュース詳細

*************************************************************/
body.single .PostMain>.inner {
    max-width: 960px;
}

body.single .PostMain .date {
    display: inline-block;
    color: var(--MainColor);
    border: solid 1px var(--MainColor);
    text-align: center;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 14px;
    letter-spacing: 1px;
}

body.single h2.blog-detail__title {
    font-size: 25px;
    color: var(--MainColor);
    font-weight: 600;
    border-bottom: solid 1px var(--MainColor);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

@media screen and (max-width:599px) {
    body.single h2.blog-detail__title {
        font-size: 16px;
    }
}

body.single p:not(:last-child) {
    margin-bottom: 1em;
}

body.single .wp-block-heading,
body.single h3:not(#MV h3) {
    text-align: left;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--SubColor);
    font-weight: 600;
}

body.single .wp-block-columns {
    margin-bottom: 20px;
}


body.single .blog-detail__body {
    margin-bottom: 100px;
}


body.single .PostMain .blog-content a {
    color: #BCA670;
}

body.single .PostMain .blog-content .wp-block-file .wp-block-file__button {
    color: #fff;
    background: #BCA670;
}


/* ************************************************************

サイトポリシー

*************************************************************/
body#sitepolicy .sec>.inner {
    max-width: 960px;
}

body#sitepolicy #MV {
    padding: 100px 0;
    background: var(--MainColor);
    /* background: linear-gradient(to bottom, rgba(153, 109, 22, 1) 0%, rgba(255, 255, 255, 1) 100%);*/
}


body#sitepolicy #MV h2 {
    font-size: 40px;
    font-family: var(--fontMincho);
    color: #fff;
    text-shadow: 0 0 10px var(--MainColor);
    line-height: 1.3;
}

@media screen and (max-width:1024px) {
    body#sitepolicy #MV h2 {
        font-size: 6vw;
    }
}

@media screen and (max-width:599px) {
    body#sitepolicy #MV h2 {
        font-size: 10vw;
    }
}

body#sitepolicy #MV h2 span.fontSmall {
    font-size: 20px;
    display: block;
}

@media screen and (max-width:1024px) {
    body#sitepolicy #MV h2 span.fontSmall {
        font-size: 4vw;
    }
}

@media screen and (max-width:599px) {
    body#sitepolicy #MV h2 span.fontSmall {
        font-size: 10vw;
    }
}

body#sitepolicy #introText a,
body#sitepolicy #sitePolicyMain a {
    display: inline;
    color: var(--SubColor);
}


/*----------------------------
イントロテキスト
----------------------------*/
body#sitepolicy #introText {
    text-align: center;
    padding-bottom: 0;
}

@media screen and (max-width:1024px) {
    body#sitepolicy #introText {
        text-align: justify;
        text-align: left;
    }
}

body#sitepolicy #introText p {
    margin-bottom: 0;
}


/*----------------------------
サイトポリシーメイン
----------------------------*/
body#sitepolicy #sitePolicyMain dl>div:not(:last-of-type) {
    margin-bottom: 80px;
}

body#sitepolicy #sitePolicyMain dl>div>dt {
    background: #eee;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width:599px) {
    body#sitepolicy #sitePolicyMain dl>div>dt {
        font-size: 16px;
        padding: 10px;
    }
}

body#sitepolicy #sitePolicyMain dd dl {
    margin-top: 30px;
}

body#sitepolicy #sitePolicyMain dd dl>dt {
    position: relative;
    padding-left: 1em;
    font-weight: 600;
    margin-bottom: 5px;
}

body#sitepolicy #sitePolicyMain dd dl>dt::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    content: "";
    border-left: solid 5px var(--MainColor);
    border-top: solid 3px transparent;
    border-bottom: solid 3px transparent;
}

body#sitepolicy #sitePolicyMain dd dl>dd:not(:last-child) {
    margin-bottom: 30px;
}

body#sitepolicy #sitePolicyMain .tableScroll {
    overflow-x: auto;
}

body#sitepolicy #sitePolicyMain .tableScroll table {
    border-top: solid 1px #ccc;
    border-left: solid 2px #ccc;
    width: 100%;
    min-width: 540px;
}

body#sitepolicy #sitePolicyMain table td {
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}

body#sitepolicy #sitePolicyMain .flexArea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

body#sitepolicy #sitePolicyMain .flexArea .image {
    flex: 0 1 160px;
}

@media screen and (max-width:599px) {
    body#sitepolicy #sitePolicyMain .flexArea .image {
        flex: 0 1 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    body#sitepolicy #sitePolicyMain .flexArea .image a {
        display: block;
        padding: 20px;
        background: #fafafa;
    }
}

body#sitepolicy #sitePolicyMain .flexArea .text {
    flex: 0 1 calc(100% - 180px);
}

@media screen and (max-width:599px) {
    body#sitepolicy #sitePolicyMain .flexArea .text {
        flex: 0 1 100%;
    }
}

body#sitepolicy #sitePolicyMain .update {
    text-align: right;
    margin-top: 50px;
}




/* ************************************************************

サイトポリシーEN

*************************************************************/
body#sitepolicy_en .sec>.inner {
    max-width: 960px;
}

body#sitepolicy_en #MV {
    padding: 100px 0;
    background: var(--MainColor);
    /* background: linear-gradient(to bottom, rgba(153, 109, 22, 1) 0%, rgba(255, 255, 255, 1) 100%);*/
}


body#sitepolicy_en #MV h2 {
    font-size: 40px;
    font-family: var(--fontMincho);
    color: #fff;
    text-shadow: 0 0 10px var(--MainColor);
    line-height: 1.3;
}

@media screen and (max-width:1024px) {
    body#sitepolicy_en #MV h2 {
        font-size: 6vw;
    }
}

@media screen and (max-width:599px) {
    body#sitepolicy_en #MV h2 {
        font-size: 10vw;
    }
}

body#sitepolicy_en #MV h2 span.fontSmall {
    font-size: 20px;
    display: block;
}

@media screen and (max-width:1024px) {
    body#sitepolicy_en #MV h2 span.fontSmall {
        font-size: 4vw;
    }
}

@media screen and (max-width:599px) {
    body#sitepolicy_en #MV h2 span.fontSmall {
        font-size: 10vw;
    }
}

body#sitepolicy_en #introText a,
body#sitepolicy_en #sitePolicyMain a {
    display: inline;
    color: var(--SubColor);
}


/*----------------------------
イントロテキスト
----------------------------*/
body#sitepolicy_en #introText {
    text-align: center;
    padding-bottom: 0;
}

@media screen and (max-width:1024px) {
    body#sitepolicy_en #introText {
        text-align: justify;
        text-align: left;
    }
}

body#sitepolicy_en #introText p {
    margin-bottom: 0;
}


/*----------------------------
サイトポリシーメイン
----------------------------*/
body#sitepolicy_en #sitePolicyMain dl>div:not(:last-of-type) {
    margin-bottom: 80px;
}

body#sitepolicy_en #sitePolicyMain dl>div>dt {
    background: #eee;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width:599px) {
    body#sitepolicy_en #sitePolicyMain dl>div>dt {
        font-size: 16px;
        padding: 10px;
    }
}

body#sitepolicy_en #sitePolicyMain dd dl {
    margin-top: 30px;
}

body#sitepolicy_en #sitePolicyMain dd dl>dt {
    position: relative;
    padding-left: 1em;
    font-weight: 600;
    margin-bottom: 5px;
}

body#sitepolicy_en #sitePolicyMain dd dl>dt::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    content: "";
    border-left: solid 5px var(--MainColor);
    border-top: solid 3px transparent;
    border-bottom: solid 3px transparent;
}

body#sitepolicy_en #sitePolicyMain dd dl>dd:not(:last-child) {
    margin-bottom: 30px;
}

body#sitepolicy_en #sitePolicyMain .tableScroll {
    overflow-x: auto;
}

body#sitepolicy_en #sitePolicyMain .tableScroll table {
    border-top: solid 1px #ccc;
    border-left: solid 2px #ccc;
    width: 100%;
    min-width: 540px;
}

body#sitepolicy_en #sitePolicyMain table td {
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}

body#sitepolicy_en #sitePolicyMain .flexArea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

body#sitepolicy_en #sitePolicyMain .flexArea .image {
    flex: 0 1 160px;
}

@media screen and (max-width:599px) {
    body#sitepolicy_en #sitePolicyMain .flexArea .image {
        flex: 0 1 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    body#sitepolicy_en #sitePolicyMain .flexArea .image a {
        display: block;
        padding: 20px;
        background: #fafafa;
    }
}

body#sitepolicy_en #sitePolicyMain .flexArea .text {
    flex: 0 1 calc(100% - 180px);
}

@media screen and (max-width:599px) {
    body#sitepolicy_en #sitePolicyMain .flexArea .text {
        flex: 0 1 100%;
    }
}

body#sitepolicy_en #sitePolicyMain .update {
    text-align: right;
    margin-top: 50px;
}




/* ************************************************************

プライバシーポリシー

*************************************************************/
body#privacypolicy .sec>.inner {
    max-width: 960px;
}

body#privacypolicy #MV {
    padding: 100px 0;
    background: var(--MainColor);
}


body#privacypolicy #MV h2 {
    font-size: 40px;
    font-family: var(--fontMincho);
    color: #fff;
    text-shadow: 0 0 10px var(--MainColor);
    line-height: 1.3;
}

@media screen and (max-width:1024px) {
    body#privacypolicy #MV h2 {
        font-size: 6vw;
    }
}

@media screen and (max-width:599px) {
    body#privacypolicy #MV h2 {
        font-size: 10vw;
    }
}

body#privacypolicy #MV h2 span.fontSmall {
    font-size: 40px;
    display: block;
}

@media screen and (max-width:1024px) {
    body#privacypolicy #MV h2 span.fontSmall {
        font-size: 4vw;
    }
}

@media screen and (max-width:599px) {
    body#privacypolicy #MV h2 span.fontSmall {
        font-size: 10vw;
    }
}

body#privacypolicy #introText a,
body#privacypolicy #privacyPolicyMain a {
    display: inline;
    color: var(--SubColor);
}



/*----------------------------
イントロテキスト
----------------------------*/
body#privacypolicy #introText {
    text-align: justify;
    padding-bottom: 0;
}

body#privacypolicy #introText p{
    margin-bottom: 1em;
}



/*----------------------------
メインエリア
----------------------------*/
body#privacypolicy #privacyPolicyMain{}

body#privacypolicy #privacyPolicyMain p+ul{
    margin-top: 2em;
}

body#privacypolicy #privacyPolicyMain ul+p,
body#privacypolicy #privacyPolicyMain dl+p{
    margin-top: 2em;
}

body#privacypolicy #privacyPolicyMain ul.number li{
    padding-left: 1em;
    text-indent: -1em;
    margin-bottom: .5em;
}

body#privacypolicy #privacyPolicyMain ul.number2 li{
    padding-left: 1.5em;
    text-indent: -1.5em;
    margin-bottom: .5em;
}

body#privacypolicy #privacyPolicyMain dl>div:not(:last-of-type) {
    margin-bottom: 80px;
}

body#privacypolicy #privacyPolicyMain dl>div>dt {
    background: #eee;
    padding: 10px 20px;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px;
}

@media screen and (max-width:599px) {
    body#privacypolicy #privacyPolicyMain dl>div>dt {
        font-size: 16px;
        padding: 10px;
    }
}

body#privacypolicy #privacyPolicyMain dd dl {
    margin-top: 30px;
}

body#privacypolicy #privacyPolicyMain dd dl>dt {
    position: relative;
    padding-left: 1em;
    text-indent: -1em;
    font-weight: 600;
    margin-bottom: 5px;
}

body#privacypolicy #privacyPolicyMain dd dl.triangle>dt {
    position: relative;
    padding-left: 1em;
    text-indent: 0;
    font-weight: 600;
    margin-bottom: 5px;
}

body#privacypolicy #privacyPolicyMain dd dl.triangle>dt::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    content: "";
    border-left: solid 5px var(--MainColor);
    border-top: solid 3px transparent;
    border-bottom: solid 3px transparent;
}

body#privacypolicy #privacyPolicyMain dd dl>dd p+ul{
    margin-top: 1em;
}

body#privacypolicy #privacyPolicyMain dd dl>dd:not(:last-child) {
    margin-bottom: 30px;
}

body#privacypolicy #privacyPolicyMain .tableScroll {
    overflow-x: auto;
}

body#privacypolicy #privacyPolicyMain .tableScroll table {
    border-top: solid 1px #ccc;
    border-left: solid 2px #ccc;
    width: 100%;
    min-width: 540px;
}

body#privacypolicy #privacyPolicyMain table td {
    border-right: solid 1px #ccc;
    border-bottom: solid 1px #ccc;
    padding: 20px;
    text-align: center;
    vertical-align: middle;
}

body#privacypolicy #privacyPolicyMain .flexArea {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

body#privacypolicy #privacyPolicyMain .flexArea .image {
    flex: 0 1 160px;
}

@media screen and (max-width:599px) {
    body#privacypolicy #privacyPolicyMain .flexArea .image {
        flex: 0 1 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    body#privacypolicy #privacyPolicyMain .flexArea .image a {
        display: block;
        padding: 20px;
        background: #fafafa;
    }
}

body#privacypolicy #privacyPolicyMain .flexArea .text {
    flex: 0 1 calc(100% - 180px);
}

@media screen and (max-width:599px) {
    body#privacypolicy #privacyPolicyMain .flexArea .text {
        flex: 0 1 100%;
    }
}

body#privacypolicy #privacyPolicyMain .update {
    text-align: right;
    margin-top: 50px;
}






/* ************************************************************

エラーページ

*************************************************************/
#errorPage {
    height: calc(100vh - 380px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#errorPage h3:not(#MV h3) {
    margin-bottom: 20px;
    font-size: 50px;
}

@media screen and (max-width:599px) {
    #errorPage h3:not(#MV h3) {
        font-size: 40px;
    }
}

#errorPage p {
    text-align: center;
    margin-bottom: 50px;
}



/* ************************************************************

大阪IR工事暴力団等排除協議会について

*************************************************************/
body#bouryokudanhaijo .sec>.inner {
    max-width: 1300px;
}

body#bouryokudanhaijo #MV {
    padding: 100px 0;
    background: var(--MainColor);
    /* background: linear-gradient(to bottom, rgba(153, 109, 22, 1) 0%, rgba(255, 255, 255, 1) 100%);*/
}


body#bouryokudanhaijo #MV h2 {
    font-size: 40px;
    font-family: var(--fontMincho);
    color: #fff;
    text-shadow: 0 0 10px var(--MainColor);
    line-height: 1.3;
}

@media screen and (max-width:1024px) {
    body#bouryokudanhaijo #MV h2 {
        font-size: 6vw;
    }
}

@media screen and (max-width:599px) {
    body#bouryokudanhaijo #MV h2 {
        font-size: 10vw;
    }
}

body#bouryokudanhaijo #MV h2 span.fontSmall {
    font-size: 16px;
    display: block;
    margin-top: 10px;
    font-weight: 400;
}

@media screen and (max-width:1024px) {
    body#bouryokudanhaijo #MV h2 span.fontSmall {
        font-size: 2vw;
    }
}

@media screen and (max-width:599px) {
    body#bouryokudanhaijo #MV h2 span.fontSmall {
        font-size: 3.5vw;
    }
}


/*----------------------------
メインエリア
----------------------------*/
body#bouryokudanhaijo .mainTable {
    border-top: solid 1px #ccc;
}

body#bouryokudanhaijo .mainTable>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: solid 1px #ccc;
}

body#bouryokudanhaijo .mainTable>div>dt {
    flex: 0 1 160px;
    padding: 30px 0 30px 20px;
    color: var(--MainColor);
    font-weight: 600;
}

@media screen and (max-width:599px) {
    body#bouryokudanhaijo .mainTable>div>dt {
        flex: 0 1 90px;
        padding: 20px 0;
    }
}

body#bouryokudanhaijo .mainTable>div>dd {
    flex: 0 1 calc(100% - 180px);
    padding: 30px 0;
}

@media screen and (max-width:599px) {
    body#bouryokudanhaijo .mainTable>div>dd {
        flex: 0 1 calc(100% - 110px);
        padding: 20px 0;
    }
}

body#bouryokudanhaijo .mainTable>div dd p {
    margin-bottom: 0;
}

body#bouryokudanhaijo .mainTable>div.activity ul {}

body#bouryokudanhaijo .mainTable>div.activity ul li {
    position: relative;
    padding-left: 1.2em;
    margin-bottom: 5px;
}

body#bouryokudanhaijo .mainTable>div.activity ul li::before {
    content: "・";
    position: absolute;
    top: 1px;
    left: 0;
    width: 7px;
    height: 7px;
    /* 
    border-top: solid 2px #666;
    border-right: solid 2px #666;
    transform: translate(0, 120%) rotate(45deg);
    */
}

body#bouryokudanhaijo .subTable {
    border: solid 1px #ccc;
    border-bottom: none;
    margin-bottom: 10px;
}

body#bouryokudanhaijo .subTable>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: solid 1px #ccc;
}

body#bouryokudanhaijo .subTable>div>dt {
    flex: 0 1 160px;
    padding: 10px 0 10px 10px;
    background: #eee;
}

@media screen and (max-width:599px) {
    body#bouryokudanhaijo .subTable>div>dt {
        flex: 0 1 100%;
    }
}

body#bouryokudanhaijo .subTable>div>dd {
    flex: 0 1 calc(100% - 180px);
    padding: 10px;
}

@media screen and (max-width:599px) {
    body#bouryokudanhaijo .subTable>div>dd {
        flex: 0 1 100%;
    }
}




/*----------------------------
活動報告
----------------------------*/
#bouryokudanhaijo_report>.inner {
    position: relative;
}

#bouryokudanhaijo_report h3:not(#MV h3) {
    text-align: left;
}

@media screen and (max-width:1024px) {
    #bouryokudanhaijo_report h3:not(#MV h3) {
        text-align: center;
    }
}

#bouryokudanhaijo_report .NewsList {
    border-top: solid 1px #ccc;
}

@media screen and (max-width:1024px) {
    #bouryokudanhaijo_report .NewsList {
        margin-bottom: 50px;
    }
}

#bouryokudanhaijo_report .NewsList>li {
    border-bottom: solid 1px #ccc;
}

#bouryokudanhaijo_report .NewsList>li a {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

@media screen and (max-width:1024px) {
    #bouryokudanhaijo_report .NewsList>li a {
        align-items: flex-start;
    }
}

#bouryokudanhaijo_report .NewsList>li div.date {
    flex: 0 1 150px;
    padding: 3px 10px;
    color: #fff;
    background: var(--MainColor);
    text-align: center;
    border-radius: 5px;
}

@media screen and (max-width:599px) {
    #bouryokudanhaijo_report .NewsList>li div.date {
        flex: 0 1 100px;
    }
}

#bouryokudanhaijo_report .NewsList>li div.date+p {
    flex: 0 1 calc(100% - 150px);
}

@media screen and (max-width:1024px) {
    #bouryokudanhaijo_report .NewsList>li div.date+p {
        flex: 0 1 calc(100% - 120px);
    }
}

#bouryokudanhaijo_report .moreBT {
    position: absolute;
    right: 0;
    top: 20px;
    width: 100%;
    max-width: 180px;
}

@media screen and (max-width:1300px) {
    #bouryokudanhaijo_report .moreBT {
        right: 20px;
    }
}

@media screen and (max-width:1024px) {
    #bouryokudanhaijo_report .moreBT {
        position: static;
        width: auto;
        max-width: none;
    }
}

#bouryokudanhaijo_report .moreBT a {
    text-align: left;
    padding: 5px 20px 5px 10px;
}

@media screen and (max-width:1024px) {
    #bouryokudanhaijo_report .moreBT a {
        padding: 20px;
        text-align: center;
    }
}



/* ************************************************************

大阪IR工事暴力団等排除協議会について
記事ページ用CSS

*************************************************************/


/*----------------------------
大阪IR工事暴力団等排除協議会設立総会および発足式
----------------------------*/
body.single-bouryokudanhaijo_rpt .CeremonyOutline {}

body.single-bouryokudanhaijo_rpt .CeremonyOutline ul li {
    padding-left: 4em;
    text-indent: -4em;
    margin-bottom: 5px;
}

body.single-bouryokudanhaijo_rpt .CeremonyOutline ul li br {}

@media screen and (max-width:1024px) {
    body.single-bouryokudanhaijo_rpt .CeremonyOutline ul li br {
        display: none;
    }
}



/* ************************************************************

会社概要(独立ページ版)

*************************************************************/
body#company .sec>.inner {
    max-width: 1300px;
}


/*----------------------------
MVエリア
----------------------------*/
body#company #MV {
    padding: 100px 0;
    background: var(--MainColor);
    /* background: linear-gradient(to bottom, rgba(153, 109, 22, 1) 0%, rgba(255, 255, 255, 1) 100%);*/
}


body#company #MV h2 {
    font-size: 40px;
    font-family: var(--fontMincho);
    color: #fff;
    text-shadow: 0 0 10px var(--MainColor);
    line-height: 1.3;
}

@media screen and (max-width:1024px) {
    body#company #MV h2 {
        font-size: 6vw;
    }
}

@media screen and (max-width:599px) {
    body#company #MV h2 {
        font-size: 10vw;
    }
}

body#company #MV h2 span.fontSmall {
    font-size: 20px;
    display: block;
}

@media screen and (max-width:1024px) {
    body#company #MV h2 span.fontSmall {
        font-size: 4vw;
    }
}

@media screen and (max-width:599px) {
    body#company #MV h2 span.fontSmall {
        font-size: 10vw;
    }
}


/*----------------------------
会社概要メイン
----------------------------*/
body#company .ProfileData dl {
    border-top: solid 1px #ccc;
}

body#company .ProfileData dl>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: solid 1px #ccc;
}

body#company .ProfileData dl>div dt {
    flex: 0 1 160px;
    padding: 30px 0 30px 20px;
    color: var(--MainColor);
    font-weight: 600;
}

@media screen and (max-width:599px) {
    body#company .ProfileData dl>div dt {
        flex: 0 1 90px;
        padding: 20px 0;
    }
}

body#company .ProfileData dl>div dd {
    flex: 0 1 calc(100% - 180px);
    padding: 30px 0;
}

@media screen and (max-width:599px) {
    body#company .ProfileData dl>div dd {
        flex: 0 1 calc(100% - 110px);
        padding: 20px 0;
    }
}

body#company .ProfileData dl>div dd p {
    margin-bottom: 0;
}



/* ************************************************************

会社概要 English(独立ページ版)

*************************************************************/
body#company_en .sec>.inner {
    max-width: 1300px;
}


/*----------------------------
MVエリア
----------------------------*/
body#company_en #MV {
    padding: 100px 0;
    background: var(--MainColor);
    /* background: linear-gradient(to bottom, rgba(153, 109, 22, 1) 0%, rgba(255, 255, 255, 1) 100%);*/
}


body#company_en #MV h2 {
    font-size: 40px;
    font-family: var(--fontMincho);
    color: #fff;
    text-shadow: 0 0 10px var(--MainColor);
    line-height: 1.3;
}

@media screen and (max-width:1024px) {
    body#company_en #MV h2 {
        font-size: 6vw;
    }
}

@media screen and (max-width:599px) {
    body#company_en #MV h2 {
        font-size: 10vw;
    }
}

body#company_en #MV h2 span.fontSmall {
    font-size: 20px;
    display: block;
}

@media screen and (max-width:1024px) {
    body#company_en #MV h2 span.fontSmall {
        font-size: 4vw;
    }
}

@media screen and (max-width:599px) {
    body#company_en #MV h2 span.fontSmall {
        font-size: 10vw;
    }
}


/*----------------------------
会社概要メイン
----------------------------*/
body#company_en .ProfileData dl {
    border-top: solid 1px #ccc;
}

body#company_en .ProfileData dl>div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: solid 1px #ccc;
}

body#company_en .ProfileData dl>div dt {
    flex: 0 1 160px;
    padding: 30px 0 30px 20px;
    color: var(--MainColor);
    font-weight: 600;
}

@media screen and (max-width:599px) {
    body#company_en .ProfileData dl>div dt {
        flex: 0 1 90px;
        padding: 20px 0;
    }
}

body#company_en .ProfileData dl>div dd {
    flex: 0 1 calc(100% - 180px);
    padding: 30px 0;
}

@media screen and (max-width:599px) {
    body#company_en .ProfileData dl>div dd {
        flex: 0 1 calc(100% - 110px);
        padding: 20px 0;
    }
}

body#company_en .ProfileData dl>div dd p {
    margin-bottom: 0;
}