@charset "utf-8";
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
base module & style
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

:root {
	--color-primary: #E39919;
	--color-secondary: #004266;
	--color-tertiary: #E6406E;
}


/* SP、PC表示切り替え */
.sp_on {
    display: block; /* SPのみ表示 */

    /* 2カラム用 */
    @media (width >= 1200px) {
        & {
            display: none;
        }
    }
}

.pc_on {
    display: none;

    /* 2カラム用 */
    @media (width >= 1200px) {
        & {
            display: block; /* PCのみ表示 */
        }
    }
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 70px;
    position: fixed;
    background-image: linear-gradient(var(--color-tertiary), var(--color-tertiary));
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;

    &::before {
        content: "";
        display: block;
        width: 5px;
        height: 5px;
        border-top: 1px solid #FFFFFF;
        border-right: 1px solid #FFFFFF;
        transform: rotate(-45deg);
    }
}

.wrapper {
    width: 100%;
}

/* @group ヘッダーエリア
------------------------------------------------------*/

.header {
    position: relative;
    width: 100%;
    
    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 5px;
        background-image: linear-gradient(#674D82, #674D82);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 5px;
        z-index: 2;
    }
    
}

.header_container {
    position: relative;
    width: 100%;
    min-height: 330px;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url(../images/header_small.jpg);
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 1;
    }

    @media (width >= 414px) {
        min-height: 350px;
    }

    @media (width >= 768px) {
        & {
            min-height: 147px;
        }

        &::before {
            background-image: url(../images/header_large.jpg);
            background-position: center center;
            background-size: 90% auto;
        }
    }

    @media (width >= 820px) {
        & {
            min-height: 157px;
        }

        &::before {
            background-size: 92% auto;
        }
    }

    @media (width >= 1024px) {
        & {
            min-height: 195px;
        }

        &::before {
            background-size: 95% auto;
        }
    }

    @media (width >= 1200px) {
        & {
            width: 1100px;
            margin-left: auto;
            margin-right: auto;
            min-height: 220px;
        }

        &::before {
            background-size: 100% auto;
        }
    }
} /* header_containerここまで */

/* ヘッダーのテキスト非表示 */
.header_container > * {
    position: absolute;
    left: -9999em;
}

/* @group メインエリア
------------------------------------------------------*/
.main {
    position: relative;
    width: 100%;
    background-color: #FBDDC4;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 7px;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 7px;
        z-index: 1;
    }
}

/* 2カラム用 */
@media (width >= 1200px) {
    .main_container {
        width: 1100px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: row-reverse;
    }

    .contents {
        width: 850px;
    }
}

/* ナビゲーションエリア */
.nav_wrap {
    width: 100%;

    /* 2カラム用 */
    @media (width >= 1200px) {
        & {
            width: 250px;
            background-color: rgba(255, 255, 255, 0.5);
        }
    }
}

/* @group フッターエリア
------------------------------------------------------*/

.footer {
    position: relative;
    width: 100%;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 7px;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 7px;
        z-index: 1;
    }
}

.secretariat_wrap {
    width: 100%;
    min-height: 180px;
    background-color: var(--color-secondary);
}

.secretariat {
    min-height: 202px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 15px;
    text-align: center;

    @media (width >= 1200px) {
        & {
            min-height: 160px;
            row-gap: 20px;
        }
    }
}


.secretariat h3 span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 35px;
    font-size: 15px;
    font-weight: bold;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    text-align: center;
}

.secretariat dl {
    color: #fff;
    line-height: 1.4;
}

.secretariat dt {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: bold;
}

.secretariat dd {
    font-size: 12px;
}

.secretariat dd a {
    color: #00FFFF;
}

.footer-copyright {
    width: 100%;
    min-height: 80px;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;

    @media (width >= 768px) {
        & {
            min-height: 40px;
        }
    }
    @media (width >= 1200px) {
        & {
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
        }
    }
}

.footer-copyright p {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 12px;
    line-height: 1.4;
    color: var(--color-secondary);
    text-align: center;
}
@media (width >= 1200px) {
    .footer-copyright p {
        margin-left: 0;
        margin-right: 0;
    }
}

.poster-download {
	margin:30px auto;
}
.poster-download a {
	display:block;
	width:220px;
	opacity: 1;
	transition: opacity .5s;
	margin:10px auto;
}
.poster-download a:hover {
	opacity: 0.75;
	text-decoration: none;
}
.poster-download a img {
	width:220px;
	height: auto;
	margin:10px auto;
}
.poster-download a figcaption {
	color: #CF255A;
	text-align: center;
	font-weight: 600;
	font-size:15px;
}
.pr_movie{
    display: block;
    width: 230px;
    height: 126px;
    margin: 10px auto 30px;
}

/* @group トップページ
------------------------------------------------------*/

.society_theme {
    width: 100%;
}

.society_theme_container {
    position: relative;
    width: 100%;
    min-height: 360px;

    &::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url(../images/theme_small.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        /* top: 50%;
        left: 50%;
        transform: translate(-50%, -50%); */
    } 
    
    @media (width >= 414px) {
        & {
            min-height: 382px;
        }
    }

    @media (width >= 768px) {
        & {
            min-height: 723px;
        }

        &::before {
            background-image: url(../images/theme_large.jpg);
        }
    }

    @media (width >= 820px) {
        & {
            min-height: 772px;
        }
    }

    @media (width >= 1024px) {
        & {
            min-height: 964px;
        }
    }

    @media (width >= 1200px) {
        & {
            min-height: 800px;
        }

        &::before {
            background-image: url(../images/theme_large.jpg);
        }
    }

} /* society_theme_containerここまで */

/* テーマテキスト非表示 */
.society_theme_container > * {
    position: absolute;
    left: -9999em;
}

/* @group ニュースセクション
------------------------------------------------------*/
.news {
    position: relative;
    width: 100%;
    padding-bottom: 20px;
    background-color: #FFFFFF;

    /* ニュースタイトル */
    & > h2 {
        width: 100%;
        height: 32px;
        background-image: linear-gradient(to right, #E6406E 0%, #E39919 100%);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100% 100%;
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    
        @media (width >= 1200px) {
            & {
                height: 30px;
            }
        }
    
        & span {
            margin-left: 17px;
            font-size: 15px;
            font-weight: bold;
            color: #FFFFFF;
            line-height: 1;
        }
    
        @media (width >= 1200px) {
            & span {
                margin-left: 20px;
            }
        }
    }

    /* ニュースリスト */
    & > .news-list {
        height: 140px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-left: 17px;
        padding-right: 17px;
        overflow-y: auto;
        line-height: 1.4;

        @media (width >= 1200px) {
            & {
                height: 130px;
                padding-left: 22px;
                padding-right: 22px;
                margin-bottom: 10px;
                gap: 15px;
            }
        }

        & > li {
            display: flex;
            align-items: baseline;

            & > .date {
                width: 90px;
                font-weight: bold;
                font-size: 13px;
                color: var(--color-tertiary);

                @media (width >= 1200px) {
                    & {
                        width: 100px;
                    }
                }
            }

            & > .excerpt {
                flex: 1;
                font-size: 12px;
                color: #666666;
            }
        }
    }
}

.bg_gray{
    max-width: 800px;
    /* background: #F7F7F7; */
    background:rgba(230,64,110,0.1);
    padding: 20px;
    margin: 10px auto;
}
.f15{
    font-size: 15px;
}

/* @group ページ共通
------------------------------------------------------*/

.page-contents {
    min-height: 80vh;
    background-color: #FFFFFF;

    @media (width >= 768px) {
        & {
            min-height: 1150px;
        }
    }
}

.page-title {
    position: relative;
    padding: 20px 10px;
    background-image: linear-gradient(to right, #E6406E 0%, #E39919 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    display: flex;
    align-items: center;

    & > span {
        position: relative;
        padding-left: 15px;
        font-size: clamp(1.375rem, 1.116rem + 1.103vi, 1.875rem);
        font-weight: bold;
        font-feature-settings: "palt";
        color: #FFFFFF;
        text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
    }

    @media (width >= 768px) {
        & {
            padding: 30px 15px;
        }

        & > span {
            padding-left: 20px;
        }
    }
    
}

.page-body {
    padding: 20px 20px 30px 20px;
}
@media (width >= 768px) {
    .page-body {
        padding: 40px 20px 40px 20px;
    }
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.7;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: 20px;
}

/* 見出し
--------------------------*/
.heading_h3 {
    margin-bottom: 20px;
    background-image: linear-gradient(to right, var(--color-tertiary) 50%, var(--color-primary) 80%);
    background-size: 100% 1px;
    background-position: left bottom;
    background-repeat: no-repeat;
    text-indent: -1.4em;
    padding-left: 1.4em;
    padding-bottom: 5px;
  }
  
  .heading_h3 > span {
    font-size: clamp(1.125rem, 0.996rem + 0.552vi, 1.375rem);
    font-weight: bold;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
    color: var(--color-tertiary);
  }
  
  .heading_h3 > span::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    margin-right: 0.5em;
    font-weight: 900;
    font-size: 0.75em;
    position: relative;
    bottom: 2px;
    color: var(--color-primary);
    opacity: 0.7;
  }
  
  .heading_h4 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .heading_h4 > span { 
    font-weight: bold;
  }
  
  .heading_h4 span::before {
    content: "\f45c";
    font-family: "Font Awesome 5 Free";
    margin-right: .5em;
    font-size: 0.85em;
    position: relative;
    bottom: 1px;
    color: var(--color-tertiary);
  }

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* アイコン
--------------------------*/

.exlink::after {
    content: "\f360";
    font-family: "Font Awesome 5 Free";
    font-size: 0.85em;
    font-weight: 900;
    margin-left: .5em;
}

.download:before {
    content: '\f019';
    /* ダウンロードのアイコン */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: .5em;
    margin-right: .5em;
}

.pdf:after {
    content: '\f1c1';
    /* PDFファイルの後（fa-file-pdf） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.word:after {
    content: '\f1c2';
    /* WORDファイルの後（fa-file-word） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.ppt:after {
    content: '\f1c4';
    /* PPTファイルの後（fa-file-powerpoint） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.excel:after {
    content: '\f1c3';
    /* Excelファイルの後（fa-file-excel） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.mail:after {
    content: '\f0e0';
    /* メールアイコン（fa-envelope） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.cipher a:before {
    content: '\f023';
    /* 暗号通信の前（fa-lock） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .5em;
}

.check::before {
    content: '\f00c';
    /* チェックマーク（fa-check） */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: .3em;
}

/*罫線*/

hr {
    border: none;
    border-top: 1px solid #ccc;
}

hr.hr-full {
    margin: 0 .75em 1.5em;
    box-shadow: 1px 1px 1px rgba(0, 71, 157, 0.2);
}

/* ハイライト */
.text-highlight {
    background: linear-gradient(transparent 40%, #f6ff5f 40%);;
}

.inline {
    display: inline;
}

/*文字詰め*/

.feature {
    font-feature-settings: "palt";
}

/*囲み*/

.enclosure01 {
    border: 1px;
    border-style: solid;
    padding: 0.75em 1em;
}

.enclosure02 {
    display: inline-block;
    border: 1px;
    border-style: solid;
    padding: .5em 1em;
}

.enclosure-style01 {
    border-color: #DDDDDD;
    background: #FFFFFF;
}

.enclosure-style02 {
    border: 3px solid rgba(245, 200, 200, 0.4);
    background: rgba(245, 200, 200, 0.1);
}
.enclosure-style03 {
	border: 3px solid #ff0000;
	background: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;

}


/*リストスタイル*/
.list-style01 {
    margin-left: 2em;
    margin-right: 2em;
    font-size: clamp(0.875rem, 0.818rem + 0.242vw, 1rem);
}

.list-style01 li {
    margin-bottom: .3em;
}

.list-style {
    list-style-position: outside;
    padding-left: 1.8em;
}

.list-style > * + * {
    margin-top: 0.25em;
}

.list-disc {
    list-style-type: disc;
}

.list-num {
    list-style-type: decimal;
}

.list-num2 {
    list-style-type: decimal-leading-zero;
}

/* 方法1: text-indent と padding-left の組み合わせ */
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

/* 方法2: table レイアウトを使用 */
.kome_ja > * {
    display: table;
    width: 100%;
}

.kome_ja > *:before {
    display: table-cell;
    content: "※";
    width: 1em;
}
/* 英語　* */
.kome_en > * {
	display:table;
	width: 100%;
	
	&:before {
		display: table-cell;
		content: "*";
		width: 1em;
	}
}

/*表組み*/
.tbl-sp {
    overflow-x: auto;
}

.tbl-sp table {
    min-width: 690px;
}
.tbl-width100 {
    width: 100%;
}

.tbl-width50 {
    width: 50%;
}

.tbl-style01 thead th {
    background-color: #DDD;
    border: 1px #CCCCCC;
    border-style: solid;
    padding: .5em;
}

.tbl-style01 tbody th,
.tbl-style01 tbody td {
    border: 1px #CCCCCC;
    border-style: solid;
}

.tbl-style01 tbody th {
    background-color: #EEEEEE;
    padding: .5em;
}
.tbl-style01 tbody td {
    background-color: #FFFFFF;
    padding: 1.5em;
}

.tbl-style02 tbody th,
.tbl-style02 tbody td {
    border: 1px #FFFFFF;
    border-style: solid;
}

.tbl-style02 tbody th {
    background-color: #FFFFFF;
    padding: .5em;
}

.tbl-style02 tbody td {
    background-color: #FFFFFF;
    padding: .5em;
}

.th-c-m th {
    text-align: center;
    vertical-align: middle;
}

.th-l-m th {
    text-align: left;
    vertical-align: middle;
}

.th-l-t th {
    text-align: left;
    vertical-align: top;
}

.td-c-m td {
    text-align: center;
    vertical-align: middle;
}

.td-l-m td {
    text-align: left;
    vertical-align: middle;
}

.td-l-t td {
    text-align: left;
    vertical-align: top;
}

/* 会長挨拶
--------------------------*/
.presidentBox {
	border-bottom:1px solid #ccc;
	padding:10px 15px;
}
.presidentBox img{
	display: block;
	width:150px;
	margin: 10px auto 20px;
}
.presidentBox .text {
	position: static;
}
.presidentBox .text p {
	line-height: 1.3;
	text-align:center;
}
.mainTxt02 {
	line-height:180%;
	margin:1em auto;
	text-indent:1em;
}
.border_top{
	background-image: linear-gradient(to right, #E6406E 0%, #E39919 100%);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 95% 30%;
}
@media (width >= 768px) {
	.presidentBox {
		position:relative;
	}
	.presidentBox img{
		float:right;
		margin: 0;
	}
	.presidentBox .text {
		position:absolute;
		top:130px;
		right:185px;
	}
	.presidentBox .text p {
		text-align:right;
	}
}




