@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v5.15.4/css/all.css");

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
基本
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

:root {
    --color_primary: #EC6C00;
    --color_secondary: #1391C4;
    --color_tertiary: #8DC21F;
    --color_quaternary: #736357;
}

/* ページトップへもどる */
.page_top {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
    position: fixed;
    border: 1px solid var(--point-color);
    background: var(--point-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;

}
.page_top::before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 1px solid #FFFFFF;
    border-right: 1px solid #FFFFFF;
    transform: rotate(-45deg);
}

/*-------------------------------------------------------------
///////////////////////////////////////////////////////////////
スタイル
///////////////////////////////////////////////////////////////
--------------------------------------------------------------*/

.wrapper {
    position: relative;
}


.container {
    width: 1200px;
	margin-left: auto;
    margin-right: auto;
}

/* main、footer直下の.containerは1200px固定 */
.main > .container,
.footer > .container {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* @group メインエリア
------------------------------------------------------*/

.main {
    position: relative;
    min-height: 1420px;
}

.main::before {
    position: absolute;
    content: ""; 
    display: block;
    width: 100%;
    height: 750px;
    background-image: url(../images/main_bg.jpg);
    background-position: left top;
    background-repeat: repeat-x;
    background-size: 1400px 750px;
}

.header {
    position: relative;

    &::before {
        position: absolute;
        content: ""; 
        width: 1400px;
        height: 750px;
        background-image: url(../images/header.jpg);
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 1400px auto;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
}

.header.child {
    height: 112px;
}

.header.child::before {  
    position: absolute;
    content: ""; 
    width: 1400px;
    height: 112px;
    background-image: url(../images/header_child.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 1400px 112px;
}

.header > * {
    position: absolute;
    left: -9999em;
}

/* ポスターダウンロード */
.poster_dl {
    display: block;
    width: 230px;
    margin: 0 auto 20px;
}
.poster_dl:hover {
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity:0.85;
	cursor:pointer;
}
.poster_dl img {
    margin: 0 auto 20px;
}

/* ナビゲーション */
.nav {
    position: relative;
    height: 60px;
    top: 750px;
    border-image-source: linear-gradient(var(--color_primary),var(--color_primary));
    border-image-slice: 0 fill;
    border-image-outset: 0 100vw 0 50px;
}

.nav.child {
    top: 0;
}

.menu {
    height: 60px;
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.menu li {
    pointer-events: auto;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.menu > li > a {
    min-width: 150px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color_primary);
    padding: 0 20px;
    color: #FFFFFF;
    text-decoration: none;
    text-align: center;
}

.menu li > a > span {
    font-size: 15px;
    font-weight: bold;
    font-feature-settings: "palt";
}

.menu li > a:hover {
    background-color: #FFFFFF;
    color: var(--color_primary);
    text-decoration: none;
}

.menu li.active > a {
    background-color: #FFFFFF;
    color: var(--color_primary);
    pointer-events: none;
}

.info_container {
    position: relative;
    top: 810px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}


/* 新着情報 */

.news {
    position: relative;
    width: 52%;
    padding-top: 10px;
    padding-right: 50px;
    background-image: radial-gradient(circle, #948175 1.5px, transparent 1.5px);
    background-position: right top;
    background-repeat: repeat-y;
    background-size: 3px 9px;
}

.news h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-direction: column;
}

.news h2::before {
    content: "";
    display: block;
	background-image: url(../images/ico_news.svg);
	background-repeat: no-repeat;
	background-size: cover;
	width: 60px;
	height: 60px;
}

.news h2 span {
    font-size: 12px;
    font-weight: bold;
    color: var(--color_quaternary);
}


.news h2 + * {
    margin-top: 15px;
}

.news-list {
    height: 240px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-y: scroll;
    line-height: 1.4;

}

.news-list li {
    display: flex;
    border-bottom: 1px dashed #948175;
    padding-bottom: 10px;
    font-size: 12px;
}

.news-list li:first-child {
    padding-top: 14px;
    border-top: 1px dashed #948175;
}

.date {
    width: 85px;
    font-weight: bold;
    color: var(--color_quaternary);

}

.excerpt {
    flex: 1;
    color: #8E8E8E;

}

/* トップページ 大会概要 */

.society-overview {
    width: 47%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.overview-title {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: #000000;
}

.overview-text {
    margin-bottom: 40px;
    font-size: 14px;
    color: #000000;
}

.overview-text > * + * {
    margin-top: 5px;
}

.logo {
    margin-bottom: 15px;
}

.secretariat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.secretariat h2 {
    width: 90px;
    height: 35px;
    background-color: #1EAA39;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secretariat h2 span {
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1;
}

.secretariat dl {
    line-height: 1.2;
}

.secretariat dt {
    font-size: 13px;
    font-weight: bold;
}

.secretariat dd {
    margin-bottom: 3px;
    font-size: 12px;
}


/* @group フッターエリア
------------------------------------------------------*/
.footer {
    width: 100%;
    background-image: linear-gradient(to right, var(--color_secondary),var(--color_tertiary));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
}

.footer-container {
    position: relative;
}

.footer-container::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 84px;
    background-image: url(../images/fukuoka_illustration.svg);
    background-position: right top;
    background-repeat: no-repeat;
    background-size: 200px 84px;
    bottom: 40px;
    right: 0;
}

.footer-container.child::before {
    background-image: none;
}

.copyright {
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 0px;
    padding-right: 0px;
    font-size: 13px;
    line-height: 1.4;
    color: #FFFFFF;
    text-align: center;
}

/* @group ページ共通
------------------------------------------------------*/

.page-contents {
    position: relative;
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 1200px;
    background-color: #FFFFFF;
    box-shadow: inset 3px 3px 10px rgba(0,0,0,0.4);
}

.page-title {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.page-title::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: linear-gradient(to right, var(--color_secondary), var(--color_tertiary));
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center top;
}

.page-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-image: url(../images/fukuoka_illustration.svg);
    background-size: 200px 84px;
    background-repeat: no-repeat;
    background-position: right bottom;
}


.page-title > span {
    position: relative;
    margin-left: 50px;
    font-size: 30px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 1;
    font-feature-settings: "palt";
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.page-body {
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 35px;
}

.under_construction {
    text-align: center;
    font-size: 1.1em;
    padding-top: 50px;
}

/* 既存の垂直マージンを削除 */
.page-body>* {
    margin-top: 0;
    margin-bottom: 0;
}

/* 連続する要素だけに上方向のマージンを適用 */
.page-body>*+* {
    margin-block-start: var(--space, 1.5em);
}

.page-body section > * + * {
    margin-block-start: var(--space, 1em);
}

.heading_h3 {
    border-bottom: 3px solid #f2f2f2;
}

.heading_h3 span {
    display: inline-block;
    position: relative;
    padding: 0 .4em .2em;
    font-size: 18px;
    font-weight: bold;
    color: #333333;
}

.heading_h3 span::before {
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--color_primary);
    content: '';
}

.heading_h4 {
    padding: .5em .7em;
    border-left: 5px solid var(--color_primary);
}

.heading_h4 span {
    display: inline-block;
    position: relative;
    padding: 0 .2em .2em;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
}

.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';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5em;
}

.mail:after {
    content: '\f0e0';
    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';
    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: 1rem;
}

.list-style01 li {
    margin-bottom: .3em;
}

.list-style {
    list-style-position: outside;
    padding-left: 1.5em;
}

.list-disc {
    list-style-type: disc;
}

.list-num {
    list-style-type: decimal;
}

.list-num2 {
    list-style-type: decimal-leading-zero;
}

/*※入り*/
.asterisk {
    padding-left: 1.2em;
    text-indent: -0.9em;
}

.asterisk li::before {
    content: '※';
    margin-right: .3em;
    position: relative;
    bottom: 1px;
}

/* 方法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: .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;
}

/* ボタンスタイル */
.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2em;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--color_primary);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #d45a00;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--color_secondary);
    color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #0f7ba0;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: var(--color_tertiary);
    color: #FFFFFF;
}

.btn-tertiary:hover {
    background-color: #7ab01b;
    color: #FFFFFF;
    text-decoration: none;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3), 0 3px 6px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* 開催概要 */

.overview-list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.5;
   }
  
.overview-list dt {
    width: 120px;
    font-weight: bold;
    color: var(--color-primary);
}
  
.overview-list dt:before {
    content: "\f05a";
    font-family: "Font Awesome 5 Free";
    margin-right: 0.5em;
    font-size: 0.8em;
    font-weight: 900;
    position: relative;
    bottom: 1px;
    color: var(--color_primary);
}
  
.overview-list dd {
    flex: 0 0 calc(100% - 140px);
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
  
.overview-list dd ul {
    list-style: none;
    padding-left: 0;
}
  
.overview-list dd ul > * + * {
    margin-top: 3px;
}

/* 会長挨拶
--------------------------*/
.presidentBox {
	margin:0 auto;
	padding:10px 15px;
	position:relative;
	border-bottom:1px solid #ccc;
}
.presidentBox img{
	width:150px;
	float:right;
}
.presidentBox p {
	text-align:right;
	position:absolute;
	top:105px;
	right:185px;
}
.mainTxt02 {
	line-height:180%;
	margin:1em auto;
	text-indent:1em;
}

/* 協賛申込 */
.flow {
    display: flex;
    gap: 20px;
    margin-top: 1em;
}

.flow dl {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
    padding: 20px;
}

.flow dt {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    color: #FFFFFF;
    background-color: var(--color_secondary);
    padding: 10px 15px;
}

.flow dd {
    line-height: 1.6;
    font-size: 14px;
}

/* よくあるご質問 */
.faq-list:not(:first-child) {
    margin-top: 1em;
}

.faq-list dt {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px 15px;
    background-color: #f5f5f5;
}

.faq-list dt span {
    height: 30px;
    display: inline-block;
    background-color: var(--color_primary);
    color: #FFFFFF;
    padding: 4px 15px;
    margin-right: 10px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 14px;
}

.faq-list dd {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding: 0 15px;
    line-height: 1.8;
}

.faq-list dd span {
    height: 30px;
    display: inline-block;
    background-color: var(--color_secondary);
    color: #FFFFFF;
    padding: 4px 15px;
    margin-right: 10px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 14px;
    vertical-align: top;
}



