/*====================================================================
 *      html, body
 *====================================================================
 */
html {
    width           : 100%;
    height          : 100%;
}

body {
    display         : flex;
    flex-flow       : column;
/*    min-height      : 100vh;*/
}

* {
    margin          : 0;
    padding         : 0;
}

/*********************************************************************
 *      H1,H2,H3
 *********************************************************************
 */
h1, h2, h3, h4, h5, h6 {
    color                   : #0080ff;
    margin                  : 10px 0;
    padding                 : 5px 0 0 10px;
}

/*********************************************************************
 *      レイアウト
 *********************************************************************
 */
#appPage {
    margin                  : 0 auto;
    width                   : 1024px;
    background-color        : #f0f0f0;

    position                : relative;
    min-height              : 100vh;
    padding-bottom          : 70px;         /*←footerの高さ*/
    box-sizing              : border-box;   /*←全て含めてmin-height:100vhに*/}

#header {
    width                   : 100%;
/*  height                  : 310px; */
    background-color        : #0000f0;
}

#container {
    clear                   : left;
    flex                    : 1;
    width                   : 100%;
/*  background-color        : green;*/
    overflow                : hidden;
    margin                  : 8px 0;
}

#footer {
    clear                   : left;
    width                   : 100%;
    position                : absolute;
    bottom                  : 0;
/*    height                  : 70px;
/*    background-color        : #f0f0f0;*/
}

/*********************************************************************
 *      Header
 *********************************************************************
 */

div.logoMark {
    float                   : left;
    width                   : 180px;
    margin                  : 20px 10px 10px 20px;
}

div.logoTitle {
    float                   : left;
    width                   : 784px;
    margin                  : 20px 20px 10px 0px;
}

img.logoMark {
    width                   : 176px;
}

img.logoTitle {
    width                   : 780px;
}

.headInfo {
    text-align              : left;
    font-size               : 11pt;
    font-weight             : bold;
    color                   : #f0f000;
    line-height             : 1.5rem;
    margin                  : 0px 15px;
}


/*********************************************************************
 *      Container
 *********************************************************************
 */

#contents {
    margin:  5px;
}

.dummyArea {
    height                  : 40vh;
}

/*********************************************************************
 *      Footer
 *********************************************************************
 */

.copyright hr {
    margin                  : 8px 0;
}

.copyright span {
    margin                  : 0;
    color                   : #0080ff;
    font-size               : small;
}

.copyright {
    margin                  : 8px 10px 16px 10px;
    text-align              : center;
/*    padding                 : 8px 10px;*/
}

/*********************************************************************
 *      ラベル
 *********************************************************************
 */

.bar_red {
    color                   : #ffffff;
    background-color        : #ff0000;
}

.bar_green {
    color                   : #ffffff;
    background-color        : #008000;
}

.bar_blue {
    color                   : #ffffff;
    background-color        : #0000ff;
    border-width            : 0px 0px 0px 0px;
    border-width            : 2px;
    border-style            : outset;
    border-clolor           : red;
}

.bar_yellow {
    color                   : #000000;
    background-color        : #f0f000;
    border-width            : 0px 0px 0px 0px;
}

.bar_orange {
    color                   : #000000;
    background-color        : #ff8000;
    border-width            : 2px;
    border-style            : inset;
    border-clolor           : orange;
}

.bar_white {
    color                   : #000000;
    background-color        : #ffffff;
    border-width            : 1px;
    border-style            : outset;
    border-clolor           : bloack;

}

/***********************************************************
    menu 2
************************************************************
*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gnav {
    display: flex;
    height: 2.5rem;
    margin: 0 auto;
    width: 100%;
}
.gnav > li {/*親階層のみ幅を25%にする*/
    width: 25%;
}
/*全てのリスト・リンク共通*/
.gnav li {
    list-style: none;
    position: relative;
}
.gnav li a {
    background: #001b34;
    border-right: 1px solid #eee;
    color: #fff;
    display: block;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
.gnav li p {
    background: #001b34;
    border-right: 1px solid #eee;
    color: #fff;
    display: block;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    text-decoration: none;
    width: 100%;
}
/*子階層以降共通*/
.gnav li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
}
.gnav li li a {
    border-top: 1px solid #eee;
}
.gnav li li p {
    border-top: 1px solid #eee;
}
.gnav li:hover > ul > li {
    height: 2.5rem;
    overflow: visible;
}
.gnav li ul li ul {
    left: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}
/*一番右のメニュー*/
.gnav > li:nth-child(5) ul li ul {
    left: -100%;
}
/*aの背景色を指定*/
.gnav li:hover a {/*親階層*/
    background: #00305c;
}
.gnav li:hover p {/*親階層*/
    background: #00305c;
}
.gnav li li a {/*子階層*/
    background: #00305c;
}
.gnav li li p {/*子階層*/
    background: #00305c;
}
.gnav li li:hover a {
    background: #004789;
}
.gnav li li:hover p {
    background: #004789;
}
.gnav li ul li ul li a {/*孫階層*/
    background: #004789;
}
.gnav li ul li ul li:hover a {
    background: #0065c1;
}
.gnav li ul li ul li ul li a {/*ひ孫階層*/
    background: #0065c1;
}
.gnav li ul li ul li ul li:hover a {
    background: #1e7dd4;
}


/**********************************************************
*   ホーム
***********************************************************
*/

#main {
/*    background-color        : #f0f0f0;*/
    float                   : left;
    width                   : 664px;
}

#sideBar {
/*    background-color        : #f0f0f0;*/
    float                   : right;
    position                : relative;
    width                   : 360px;
    height                  : 100%;
    padding-bottom          : 10000px;
    margin-bottom           : -10000px;
}

/* Separator */
div.separator {
    background-image        : url(../img/separator.png);
    background-repeat       : repeat-y;
}

/*--------------------------------------------------------------------
 *      Main
 *--------------------------------------------------------------------
 */

.tanchou {
    margin                  : 10px 10px 10px 10px;
}

div.tanchou-image {
    margin                  : 10px 10px 10px 10px;
    float                   : left;
    width                   : 100px;
    height                  : 100px;
    background-color        : #ffffff;
    border-radius           : 50%;
}

.tanchou-image img {
    width                   : 80px;
    position                : relative;
    top                     : 19px;
    left                    : 10px;
}

div.tanchou-comment {
    margin                  : 35px 10px 10px 10px;
    float                   : left;
    width                   : 480px;
    text-align              : left;
    font-size               : medium;
    color                   : black;
}

div.tanchou-none {
    clear                   : left;
}

.notifiction {
    margin                  : 10px 10px 10px 10px;
}

.notifiction dl {
    margin                  : 20px 10px 50px 10px;
}

.notifiction dt {
    text-align              : left;
    font-size               : medium;
    font-weight             : bold;
    color                   : black;
}

.notifiction dd {
    text-align              : left;
    font-size               : small;
    color                   : black;
    margin-left             : 10px;
    margin-bottom           : 10px;
}

/* 画像に枠線と影を付ける */
.entryContent {
    margin                  : 10px;
}

.entryContent img {
    width                   : 600px;
    border                  : double 10px #900;
    background-color        : #c60;
    box-shadow              : 3px 3px 5px 5px rgba(0, 0, 0, 0.3);
}

.entryContent div {
    margin                  : 10px 20px 50px 20px;
    width                   : 520px;
    height                  : 520px;
/*    height                  : 150px;*/
    border                  : double 10px #900;
    background-color        : #c60;
    box-shadow              : 3px 3px 5px 5px rgba(0, 0, 0, 0.3);
}

.entryContent p {
    margin                  : 20px;
}


.whatsNew {
    margin                  : 10px 10px 10px 10px;
}

.whatsNew dl {
    margin                  : 20px 10px 10px 10px;
}

.whatsNew dt {
    text-align              : left;
    font-size               : medium;
    font-weight             : bold;
    color                   : black;
}

.whatsNew dd {
    text-align              : left;
    font-size               : small;
    color                   : black;
    margin-left             : 10px;
    margin-bottom           : 10px;
}

/*--------------------------------------------------------------------
 *      SideBar
 *--------------------------------------------------------------------
 */
.sideBarInfo {
    margin                  : 10px 10px 20px 10px;
}

.sideBarComment {
    margin                  : 10px 10px 20px;
}
.sideBarComment p {
    text-align              : left;
    font-size               : middle;
    font-weight             : bold;
    color                   : black;
    line-height             : 2.0rem;
}

.sideBarComment ul {
    margin                  : 10px 20px;
    list-style-type         : square;
    font-size               : middle;
    font-weight             : bold;
    color                   : black;
    line-height             : 2.5rem;
}

.townInfo {
    margin                  : 10px 20px 20px;
    font-size               : middle;
    font-weight             : bold;
    color                   : black;
    line-height             : 1.5rem;
}

.banner {
    vertical-align          : middle;
    width                   : 300px;
}

/**********************************************************
*   会の紹介
***********************************************************
*/
.intro {
    margin                  : 10px;
}

/*--------------------------------------------------------------------
 *      会長挨拶
 *--------------------------------------------------------------------
 */
.greet {
    margin                  : 50px 200px 10px;
    text-align              : left;
    font-size               : middle;
    font-weight             : bold;
    color                   : black;
    line-height             : 1.5rem;
}

.name {
    margin                  : 10px 200px 50px;
    text-align              : right;
    font-size               : large;
    font-weight             : bold;
    color                   : black;
    line-height             : 1.5rem;
}

/*--------------------------------------------------------------------
 *      沿革
 *--------------------------------------------------------------------
 */
.history {
    margin                  : 20px 50px;
}

.history dl {
    margin                  : 10px;
}

.history dt {
    margin-top              : 1em;
    text-align              : left;
    font-size               : large;
    font-weight             : bold;
    color                   : black;
    line-height             : 1.6em;
}

.history dd {
    margin-left             : 2em;
    text-align              : left;
    font-size               : middle;
    color                   : black;
    line-height             : 1.6em;
}



/*--------------------------------------------------------------------
 *      会則
 *--------------------------------------------------------------------
 */

.rule {
    margin                  : 20px 50px;
}

.rule embed {
    width                   : 100%;
    min-height              : 1180px;
    max-height              : 960px;
}

.ruleDescription {
    font-size               : middle;
    text-align              : left;
    margin                  : 10px 0 30px 0;
}

.rule table {
    margin                  : 20px 0 0 0;
    font-family             : sans-serif
}

.ruleTitle {
    font-size               : large;
    font-weight             : bold;
    margin:                 0 0 0 0;
}

.ruleSpace {
    width                   : 2em;
}

ol {
    margin                  : 0;
    padding                 : 0;
    font-size               : middle;
    line-height             : 1.6em;
}

ol.ruleNone {
    list-style-type         : none;
}

ol.ruleNone2 {
    list-style-type         : none;
    padding-left            : 1.2em;
}

ol.ruleNumber {
    list-style-type         : decimal;
    margin-left             : 1.2em;
}

ol.ruleNumber2 {
    list-style-type         : none;
/*  margin                  : 0;
    padding-left            : 1.2em;*/
}

ol.ruleNumber2 li {
    counter-increment       : cnt;
}

ol.ruleNumber2 li::before {
    content                 : "("counter(cnt)"). ";
}

/**********************************************************
*   活動計画
***********************************************************
*/
.action {
    margin                  : 50px 200px;
    text-align              : left;
    font-size               : middle;
    font-weight             : bold;
    color                   : black;
    line-height             : 1.5rem;
}

/**********************************************************
*   会報
***********************************************************
*/
.bulletin {
    margin              : 10px 20px;                /* デフォルト指定上書き */
}

.bulletinList {
    list-style          : none;                     /* デフォルトのアイコンを消す */
    margin              : 0 10%;                    /* デフォルト指定上書き */
    padding             : 0;                        /* デフォルト指定上書き */
}

.bulletinIitem:before {
    content             : "";                       /* 空の要素作成 */
    width               : 10px;                     /* 幅指定 */
    height              : 10px;                     /* 高さ指定 */
    display             : inline-block;             /* インラインブロックにする */
    background-color    : #F44336;                  /* 背景色指定 */
    border-radius       : 50%;                      /* 要素を丸くする */
    position            : relative;                 /* 位置調整 */
    top                 : -1px;                     /* 位置調整 */
    margin-right        : 5px;                      /* 余白指定 */
}

.bulletinIitem {
    padding             : 5px;                      /* 余白指定 */
    background-color    : #65ace4;                  /* 背景色指定 */
    border-radius       : 10px;                     /* 角丸指定 */
    margin              : 5px 0;                    /* 要素と要素の間指定 */
    color               : #fff;                     /* 文字色指定 */
    font-size           : large;                    /* 文字サイズ指定 */
}

.bulletinPage {
    float               : right;
}

select {
    margin              : 0 10px 0 30px;            /* デフォルト指定上書き */
    font-size           : middle;                   /* 文字サイズ指定 */
}

button {
    font-size           : middle;                   /* 文字サイズ指定 */
}

#bulletinOrder {
    margin              : 0 10%;                    /* デフォルト指定上書き */
    padding             : 0 20px;                   /* デフォルト指定上書き */
}

.bulletinOrder {
    margin              : 5px 0px;                  /* 要素と要素の間指定 */
    font-size           : large;                    /* 文字サイズ指定 */
    font-weight         : bold;
    color               : #000;                     /* 文字色指定 */
}

/**********************************************************
*   会歌
***********************************************************
*/

.song {
    position            : relative;
    text-align          : center;
    margin              : 0;
    padding             : 0;
}

#playBtn {
    width               : 100px;
    height              : 30px;
    font-size           : middle;                   /* 文字サイズ指定 */
    color               : #000;                     /* 文字色指定 */
}

#videoView {                                        /* 4x3 */
    width               : 720px;
    height              : 540px;
}

div.song #videoPlay {
    position            : absolute;
    width               : 128px;
    height              : 128px;
    top                 : 38%;
    left                : 43%;
    z-index             : 1;
    opacity             : 0.5;
}

/**********************************************************
*   お問い合わせ
***********************************************************
*/
.inqResult {
    margin                  : 50px 200px;
}

.inqResult h3 {
    font-size               : xx-large;
    font-weight             : bold;
    color                   : black;
    border-bottom: solid 1px #999;
    margin                  : 0;
    padding                 : 0;
}

.inqResult div {
    margin                  : 30px 30px;
    text-align              : left;
    font-size               : middle;
    font-weight             : bold;
    color                   : black;
    line-height             : 1.5rem;
}


.inquiry {
    margin                  : 20px 100px;
}

.inquiry div {
    margin                  : 30px 180px 0px;
    text-align              : left;
    font-size               : middle;
    font-weight             : bold;
    color                   : black;
    line-height             : 1.5rem;
}
.inquiry div p {
    text-align              : right;
}

.inquiry h3 {
    font-size               : xx-large;
    font-weight             : bold;
    color                   : black;
    border-bottom: solid 1px #999;
    margin                  : 0;
    padding                 : 0;
}

form#mailform {
    padding: 5px;
}

table.mailform {
    width: 100%;
    box-sizing: border-box;
}

table.mailform tr th,table.mailform tr td {
    text-align: left;
    font-weight: normal;
    font-size: 14px;
    border-bottom: solid 1px #999;
    padding: 7px 5px 7px 5px;
    box-sizing: border-box;
}

table.mailform tr th {
    width: 150px;
/*  text-align: right;*/
}
table.mailform tr th span {
    color: #C00;
    font-size: 12px;
}

table.mailform tr th p {
    margin: 0px;
    padding: 0px;
    font-size: 12px;
    color: #999;
}

table.mailform input[type="text"] {
/*    width: 100%;*/
    height: 30px;
    font-size: 14px;
}

table.mailform input[type="submit"],input[type="reset"],input[type="radio"] {
    height: 25px;
    font-size: 14px;
    vertical-align: middle;
}

table.mailform tr td textarea {
    max-width: 100%;
    width: 100%;
    height: 120px;
    font-size: 14px;
    box-sizing: border-box;
}

/**********************************************************
*   PageTOP
***********************************************************
*/
#pageTop {
    position:           fixed;
    right:              32px;
    bottom:             32px;
    width:              64px;
    height:             64px;
    background-image:   url(../img/pageTop_blue_text.svg);
    opacity:            0;
    transition:         0.3s;
    visibility:         hidden;
}

#pageTop.show {
    opacity:            .7;
    visibility:         visible;
}

