@charset "Shift-JIS";

*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}


/*共通設定*/
html {
    font-size: 16px;
    font-family: 'Kosugi Maru', sans-serif;
}

body {
    background: url(../images/R810w.jpg) top/cover no-repeat fixed;

    /*background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: left top;
    background-size: auto;*/
}

@media screen and (max-width: 770px) {
    body {
        background: none;
    }

    body::before {
        content: "";
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100vh;
        background: url(../images/R810w.jpg) top left/cover no-repeat;
        -webkit-background-size: cover;
    }
}

body,
div,
p,
h1,
h2,
h3,
h4,
ul,
figure {
    margin: 0;
    padding: 0;
}

p,
dt,
dd,
li {
    line-height: 1.7;
}

a {
    text-decoration: none;
}

a:hover {
    color: #ff4500;
}

img {
    vertical-align: bottom;
    max-width: 100%;
}

.img-responsive {
    display: block;
    max-width: 100%;
}

#gnavi li {
    list-style-type: none;
}

.flex {
    display: flex;
}


/*== 字の装飾 ==**/
/* 太字 */
.bold {
    font-weight: bold;
}

/* 青文字太字 */
.blue {
    font-weight: bold;
    color: #191970;
}

/* 青文字 */
.blue2 {
    color: #191970;
}

/* 赤文字太字 */
.red {
    font-weight: bold;
    color: red;
}

/* 赤文字 */
.red2 {
    color: red;
}

/* 右寄せ */
.right {
    text-align: right;
}

/* 左寄せ */
.left {
    text-align: left;
}

/* 中央寄せ */
.center {
    text-align: center;
}

/* 改行 */
.pc-none {
    display: none;
}

@media screen and (max-width: 767px) {
    .pc-none {
        display: block;
    }
}

/* 小さい文字 */
.sl {
    font-size: 0.7rem;
}

.sm {
    font-size: 0.9rem;
}


/*-----wrapperの設定 -----*/
.wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/*-----headerの設定 -----*/
.block-logo {
    margin-left: auto;
    padding: 30px 50px 20px 0;
}

@media screen and (max-width: 767px) {
    .block-logo {
        padding: 20px 20px 10px 20px;
    }
}

/*-----gnaviの設定 -----*/
/*大項目*/
#gnavi {
    margin: 0 auto;
    background-color: #191970;

}

#gnavi ul {
    display: flex;
    justify-content: space-between;
}

#gnavi > ul {
    max-width: 1200px;
    margin: 0 auto;

}

#gnavi > ul > li {
    flex: 0 1 20%;
    text-align: center;
    position: relative;

}

#gnavi > ul > li > a > img {
    margin: 0 0 0 20px;
    width: 15px;
}

#gnavi > ul > li > a {
    padding: 18px 0;
    display: block;
    background-color: #191970;
    color: #fff;


}

#gnavi > ul > li > a:hover {
    background: #f4a460;
    color: #191970;
    border-radius: 0 0 10px 0;

}

#gnavi > ul > .active a {
    background: #fff;
    color: #000;

}

/*小項目*/
#gnavi li ul {
    display: none;
    z-index: 100;
    position: absolute;
    width: 100%;
}

#gnavi li ul li {
    width: 100%;
    background: rgba(25, 25, 112, 0.8);
    vertical-align: middle;
}

#gnavi li ul a {
    display: block;
    color: #fff;
    padding: 12px 0;
    font-size: 16px;

}

#gnavi li ul a:hover {
    background: #f4a460;
    color: #191970;
    border-radius: 0 0 10px 0;
}

#gnavi li:hover ul {
    display: block;
    border-radius: 0 0 10px 0;
    background: rgba(65, 105, 225, 0.9);
}


@media screen and (max-width: 767px) {
    #gnavi {
        margin: 0 auto;
    }

    #gnavi a {
        padding: 13px 0;
        font-size: 0.7rem;
    }

    #gnavi > ul > li > a {
        padding: 13px 0;
    }

    #gnavi > ul > li > a > img {
        margin: 0 0 0 5px;
        width: 12px;
    }

    /*小項目*/
    #gnavi li ul a {
        padding: 10px 0;
        font-size: 0.7rem;
    }
}

/*---- sliderの設定 ----*/
.slide {
    position: relative;
    z-index: 2;
    overflow: hidden;
    background: #555;
    margin-bottom: 10px;
}

.slide::after {
    position: absolute;
    bottom: -1px;
    left: 0;
    content: '';
    background-size: cover;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.slide_container_item {
    height: 80vh;
    opacity: 0;
    transform: translate(100px);
    transition: opacity 2s linear, transform 9s linear;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity, transform;
}

.slide_container_item:not(:first-child) {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.slide_container_item.show_ {
    will-change: inherit;
    opacity: 1;
}

.slide_container_item.zoom_ {
    will-change: inherit;
    transform: scale(1);
}

.heading {
    position: absolute;
    top: calc(50% - 50px);
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
}

.heading-welcome {
    font-size: 40px;
    letter-spacing: 0.3em;
    text-align: center;
    color: #fff;
}

.catch-phrase {
    position: absolute;
    bottom: 80px;
    right: 50px;
    z-index: 20;
    color: #ffffff;
    font-size: 30px;
    text-align: right;
}

@media screen and (max-width: 768px) {
    .heading {
        top: calc(40% - 40px);
    }

    .slide_container_item {
        height: 50vh;
    }

    .heading-welcome {
        font-size: 1.9em;
        line-height: 40px;
    }

    .catch-phrase {
        bottom: 50px;
        z-index: 20;
        font-size: 1.4em;
    }
}

@media screen and (max-width: 420px) {
    .heading {
        top: calc(50% - 35px);
    }

    .slide_container_item {
        height: 40vh;
    }

    .heading-welcome {
        font-size: 1.2em;
        line-height: 30px;
    }

    .catch-phrase {
        bottom: 15px;
        z-index: 20;
        font-size: 0.9em;
    }
}

/*---- sliderの画像の設定 ----*/
.slide_container_item:nth-child(1) {
    background-image: url("../images/slide4.jpg");
    margin-left: -100px;
}

.slide_container_item:nth-child(2) {
    background-image: url("../images/slide5.jpg");
    margin-left: -100px;
}

.slide_container_item:nth-child(3) {
    background-image: url("../images/slide6.jpg");
    margin-left: -100px;
}



/*----.contentsの設定 ----*/
.contents {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
}

@media screen and (max-width: 767px) {
    .contents {
        flex-direction: column;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 16px;
    }
}


/*-----footerの設定 -----*/
footer {
    padding: 20px 0;
    text-align: center;
    background-color: #191970;
    width: 100%;
}

footer nav {
    margin-bottom: 25px;
}

footer ul {
    justify-content: center;
    list-style-type: none;
}

footer ul li + li {
    background: url(../images/menu_line_gray.gif) no-repeat left;
    /* 項目の背景（区切り線） */
}

footer ul a {
    color: #fff;
    padding: 10px;
}

footer small {
    font-size: 0.8rem;
    color: #fff;
}

@media screen and (max-width: 767px) {
    footer ul a {
        font-size: 0.8rem;
    }

    footer small {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 350px) {
    footer ul a {
        font-size: 0.6rem;
    }

    footer small {
        font-size: 0.5rem;
    }
}

/*-----mainの設定 -----*/
main {
    display: block;
    order: 1;
    width: 70%;
}

section {
    margin-bottom: 30px;
}

section h2 {
    margin: 2px 0px;
    padding: 8px 20px;
    color: #fff;
    background: #4169e1;
    font-weight: normal;
    border-left: 10px solid #00008b;
}

section h3 {
    padding: 4px 20px;
    color: black;
    background: #d7f9d9;
    font-weight: normal;
}

section h4 {
    margin: 2px 2px;
    padding: 4px 4px 4px 32px;
    color: #256949;
    background: #d7f9d9;
    font-weight: bold;
    font-size: 18px;
}

section h5 {
    margin: 4px 4px;
    padding: 2px 6px;
    color: #0000cd;
    background: #ccffdd;
    font-weight: bold;
    font-size: 20px;
    border-left: 10px solid #0000ff;
    border-bottom: 2px solid #c0c0c0;
}


section img {
    margin-bottom: 5px;
}

/******************************************/
.hako {
    margin: 0px 0px;
    padding: 4px 4px 4px 8px;
    color: #004000;
    background: #f0fff0;
    font-weight: bold;
    font-size: 18px;
    line-height: 150%;
}

.hako .tble dt {
    float: left;
    width: 14rem;
}

.hako .tble dd {
    padding-left: 14rem;
    border-bottom: 1px dotted #778899;
}

.hako .tble dl {
    overflow: hidden;
}

.hako .kijutu {
    margin: 4px 4px 16px 20px;
    padding: 2px 2px 4px 8px;
}


/*ipadの場合*/
@media screen and (max-width: 780px) {
    section {
        margin-bottom: 0px;
    }
}

@media screen and (max-width: 767px) {
    main {
        order: 1;
        width: 100%;
    }

    section {
        margin-bottom: 80px;
    }
}


/*====== トップページの設定 ======*/

/*-----新着情報の設定 -----*/
.news {
    background: #fffaf0;
    border-radius: 0 20px;
    font-size: 17px;
    padding: 5px 20px;
    margin: 10px;
    color: #000;
}

.news .schedule dt {
    float: left;
    width: 12rem;
    padding: 15px;
    line-height: 1.2;
}

.news .schedule dd {
    padding-left: 12rem;
    padding: 15px;
    line-height: 1.2;
    border-bottom: 1px dotted #778899;
}

.news .schedule dl {
    overflow: hidden;
}

.news span a {
    font-weight: 700;
    color: #000080;
}

.news span a:hover {
    color: #ff4500;
}

.news .schedule2 dt {
    float: left;
    width: 9rem;
    padding: 15px;
    line-height: 1.2;
}

.news .schedule2 dd {
    padding-left: 9rem;
    padding: 15px;
    line-height: 1.2;
    border-bottom: 1px dotted #778899;
}

.news .schedule2 dl {
    overflow: hidden;
}

.news p {
    padding-top: 15px;
}




@media screen and (max-width: 767px) {
    .news .flex {
        flex-flow: column;
    }

    .news .schedule dt {
        float: none;
        width: 100%;
        margin-top: 10px;
        padding: 5px;
        font-size: 15px;
        border-bottom: none;
    }

    .news .schedule dd {
        padding: 5px 5px 5px 20px;
        font-size: 15px;
        border-bottom: 1px dotted #778899;
        width: auto;
    }

    .news .schedule2 dt {
        float: none;
        width: 100%;
        margin-top: 10px;
        padding: 5px;
        font-size: 15px;
        border-bottom: none;
    }

    .news .schedule2 dd {
        padding: 5px 5px 5px 20px;
        font-size: 15px;
        border-bottom: 1px dotted #778899;
        width: auto;
    }

}


/*-----定例集会・講習会などのご案内の設定 -----*/
.item h3 {
    padding: 7px;
    color: #fff;
    background: #1e90ff;
    font-weight: normal;
    border-left: 10px solid #4169e1;
    margin-bottom: 10px;
}

#guide {
    justify-content: space-between;
}

.item {
    background: #ffffcc;
    border-radius: 0 20px;
    padding: 20px;
    margin: 10px;
}

.item .detail dt {
    float: left;
    width: 5rem;
    padding-left: 10px;
}

.item .detail dd {
    padding-left: 5rem;
}

.item .detail dl {
    overflow: hidden;
}

.item span {
    font-weight: 700;
}

#guide img {
    margin-bottom: 5px;
    margin-right: 0.5em;
}

@media screen and (max-width: 900px) {
    #guide {
        flex-flow: column;
    }

    .item {
        margin: 10px;

    }

    .item .detail dt {
        font-size: 15px;
        width: 5em;
    }

    .item .detail dd {
        padding-left: 5em;
        font-size: 15px;
    }
}

/*-----asideの設定 -----*/
aside {
    order: 2;
    width: 25%;
    margin: 0 auto;
}

aside h2 {
    padding: 8px 20px;
    color: #fff;
    background: #4169e1;
    font-weight: normal;
    border-left: 10px solid #00008b;
}

aside .link {
    margin: 10px 0 20px 0;
}

aside .link img {
    border-radius: 50%;
    flex-flow: column;
    border: 5px solid #008800;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

aside .link img:hover {
    opacity: 0.6;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

/* 「RightToLeft」の動作内容 */
@keyframes RightToLeft {
    0% {
        opacity: 0;
        /* 透明 */
        transform: translateX(50px);
        /* X軸方向に50px */
    }

    100% {
        opacity: 1;
        /* 不透明 */
        transform: translateX(0);
    }
}

/* 「RightToLeft」を適用する箇所 */
aside .link {
    animation-duration: 5s;
    /* アニメーション時間 */
    animation-name: RightToLeft;
    /* アニメーション名 */
    animation-iteration-count: 1;
    /* アニメーションの繰り返し（無限）infinite */
}


@media screen and (max-width:767px) {
    aside {
        order: 3;
        width: 100%;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around
    }

    aside h2 {
        width: 100%;
    }

    .link {
        width: 50%;
        padding: 0 10px;
        margin: 0;
    }

    aside .link img {
        border: 3px solid #008800;
    }
}

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

    /* 「RightToLeft」の動作内容 */
    @keyframes RightToLeft {
        0% {
            opacity: 0;
            /* 透明 */
            transform: translateX(0);
            /* X軸方向に50px */
        }

        100% {
            opacity: 1;
            /* 不透明 */
            transform: translateX(0);
        }

        /* 「RightToLeft」を適用する箇所 */
        aside .link {
            animation-duration: 0;
            /* アニメーション時間 */
            animation-name: RightToLeft;
            /* アニメーション名 */
            animation-iteration-count: 0;
            /* アニメーションの繰り返し（無限）infinite */
        }
    }
}

aside .picbox {
    margin: 4px 2px;
    padding: 8px 8px;
    color: #005100;
    background: #EFEFE0;
    font-weight: normal;
    font-size: 14px;
}

aside .guidebox {
    margin: 20px 4px;
    padding: 10px 16px;
    color: #0000F2;
    background: #EAEAFF;
    font-weight: bold;
    font-size: 20px;
    text-align: center;
}

/*-----.recordの設定 -----*/
.record {
    width: 100%;
    order: 3;
    margin: 0 auto;
}

.record figure {
    width: 33%;
    margin: 10px 10px;
    background: rgba(255, 250, 240, 0.9);
    border: 3px solid #fffaf0;
}

.record figcaption {
    color: #000;
    text-align: center;
    margin: 10px 0;
}

.record .place {
    margin: 10px 0;
    font-weight: 600;
}

.record templ {
    width: 33%;
    margin: 10px 10px;
    background: rgba(255, 250, 240, 0.9);
    border: 3px solid #fffaf0;
    font-size: 12px;
    text-align: center;
    line-height: 14px;
}

@media screen and (max-width: 767px) {
    .record {
        order: 2;
    }

    .record #photo {
        flex-flow: column;
        flex-wrap: wrap;
        margin-bottom: 50px;
        padding: 0 10px;
    }

    .record figure {
        width: 100%;
        margin: 10px 0;
    }

    .record figcaption {
        padding-bottom: 10px;
    }
}


/*-- 山行記録へボタン --*/
.bottom1 {
    width: 9em;
    background-color: #008800;
    border: 2px solid #008800;
    margin: 10px auto;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.bottom1 a {
    display: block;
    font-size: 13px;
    color: #fff;
}

.bottom1 img {
    margin: 0 0 8px 10px;
}

.bottom1:hover {
    background-color: transparent;
    border: 2px solid #008800;
}

.bottom1 a:hover {
    color: #008800;
}


/*-- アルバムへボタン --*/
.bottom2 {
    width: 9em;
    background-color: #ff4500;
    border: 2px solid #ff4500;
    margin: 10px auto;
    border-radius: 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.bottom2 a {
    display: block;
    font-size: 13px;
    color: #fff;
}

.bottom2 img {
    margin: 0 0 8px 10px;
}

.bottom2:hover {
    background-color: transparent;
    border: 2px solid #ff4500;
}

.bottom2 a:hover {
    color: #ff4500;
}


/*-- ページの先頭に戻るの設定 --*/
.return {
    text-align: right;
    margin: 30px 30px 20px 0;
}

.return a {
    color: #fff;
    font-size: 18px;
}

.return a:hover {
    color: #ff4500;
}

@media screen and (max-width: 767px) {
    .return a {
        font-size: 16px;
    }
}

/*====== /トップページ終了 ======*/



/*====== 下層ページ共通 ======*/

/* -- トピックパス --*/
.wrapper ol.topicPath {
    margin: 0 5px;
    padding: 8px 5px;
    list-style-type: none;
}

/*-- リスト項目 --*/
.wrapper ol.topicPath li {
    display: inline;
    color: #fff;
}

/*-- リンクエリア --*/
.wrapper ol.topicPath li a {
    padding-right: 18px;
    /* リンクエリアの右パディング */
    background: url(../images/topic-path.png) no-repeat right;
    color: #ff4500;
}

@media screen and (max-width: 767px) {
    .wrapper ol.topicPath {
        padding: 5px;
        font-size: 0.8rem;
    }
}

/*====== schedule.htmlの設定 ======*/

.plan {
    background: #fffaf0;
    border-radius: 0 20px;
    font-size: 17px;
    padding: 5px 20px;
    margin: 10px;
    color: #000;
}

.plan .schedule dt {
    float: left;
    width: 9rem;
    padding: 15px;
    line-height: 1.2;
}

.plan .schedule dd {
    padding-left: 9rem;
    padding: 15px;
    line-height: 1.2;
    border-bottom: 1px dotted #778899;
}

.plan .schedule dl {
    overflow: hidden;
}

.plan span a {
    font-weight: 700;
    color: #000080;
}

.plan span a:hover {
    color: #ff4500;
}


@media screen and (max-width: 767px) {
    .description {
        font-size: 15px;
    }

    .plan .schedule dt {
        float: none;
        width: 100%;
        margin-top: 10px;
        padding: 5px;
        font-size: 15px;
        border-bottom: none;
    }

    .plan .schedule dd {
        padding: 5px 5px 5px 20px;
        font-size: 15px;
        border-bottom: 1px dotted #778899;
        width: auto;
    }
}

/*====== schedule.htmlの終了 ======*/

/*====== schedulelist.htmlの設定 ======*/
.planList h3 {
    padding: 7px;
    color: #fff;
    background: #1e90ff;
    font-weight: normal;
    border-left: 10px solid #4169e1;
    font-size: 17px;
    margin-bottom: 10px;
    margin-left: 0;
    /* 2019年5月3日追加*/
}

.planList ul {
    padding-left: 40px;
}

.planList {
    background: #ffffcc;
    border-radius: 0 20px;
    font-size: 17px;
    padding: 20px;
    color: #000;
    width: 100%;
    margin: 20px 0;
}

.green {
    color: green;
}

.planList .course {
    padding-left: 20px;
}

.planList .compellation {
    padding-left: 20px;
}


@media screen and (max-width: 900px) {
    .area3 {
        flex-direction: column;
        margin-bottom: 0;
    }

    .planList {
        width: 100%;
        margin: 10px 0;
    }
}

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

    .planList {
        font-size: 15px;
    }

    .area3 h3 {
        font-size: 15px;
    }
}

/*====== schedulelist.htmlの終了 ======*/




/*====== report.htmlの設定 ======*/
.reportlist {
    background: #fffaf0;
    border-radius: 0 20px;
    font-size: 17px;
    padding: 5px 20px;
    margin: 10px;
    color: #000;
}

.reportlist .schedule dt {
    float: left;
    width: 10rem;
    padding: 15px;
    line-height: 1.2;
}

.reportlist .schedule dd {
    padding-left: 10rem;
    padding: 15px;
    line-height: 1.2;
    border-bottom: 1px dotted #778899;
}

.reportlist .schedule dl {
    overflow: hidden;
}

.reportlist span a {
    font-weight: 700;
    color: #000080;
}

.reportlist span a:hover {
    color: #ff4500;
}

@media screen and (max-width: 767px) {
    .reportlist .schedule dt {
        float: none;
        width: 100%;
        margin-top: 10px;
        padding: 5px;
        font-size: 15px;
        border-bottom: none;
    }

    .reportlist .schedule dd {
        padding: 5px 5px 5px 20px;
        font-size: 15px;
        border-bottom: 1px dotted #778899;
        width: auto;
    }
}


.report .photo {
    display: flex;
    flex-flow: row;
    margin: 30px;
    padding: 5px;
    background: rgba(255, 250, 240, 0.9);
    align-items: center;
}

.report .photo .item1 img {
    display: block;
    flex: 0 1 500px;
}

.report .photo .item2 {
    text-align: center;
    color: #000;
    margin: 0 30px;
}

.report .item2 .place {
    margin: 20px 0;
    font-weight: 600;
}


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

    .report .photo {
        flex-flow: column;
        flex-wrap: wrap;
    }

    .report .photo .item1 img {
        max-width: 100%;
    }

    .report .item1 {
        margin-bottom: 10px;
    }

    .report .item2 .place {
        margin: 10px 0;
    }
}


.wrapper .mtitle {
    max-width: 840px;
}

#twaku {
    width: auto;
    margin: 8px 10px 20px 10px;
    padding: 5px 20px 5px 20px;
    background-color: #FEFFEE;
    text-align: center;
    line-height: 1.3;
    font-weight: bold;
    color: #0717A3;
    font-size: 20px;
}

.reportdata {
    padding: 8px 16px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    color: #0000A8;
    background: #f5fffa;
    line-height: 1.5;
}

.reportdata .desc {
    padding: 0px 12px 8px 28px;
}

/*====== report.htmlの終了 ======*/

/*====== admission.htmlの設定 ======*/
/*====== climbingplan4.htmlの設定 ======*/
/*-- 強調セクション --*/
#admission .emphasis {
    background: #fffaf0;
    border-radius: 0 20px;
    font-size: 18px;
    padding: 20px;
    margin: 10px 10px 50px 10px;
    color: #000;
}

#admission .emphasis .admission-application {
    padding-left: 2em;
    line-height: 1.5em;
    font-weight: normal;
}

.req-a {
    background-color: red;
    color: #fff;
    padding: 0.3em;
    margin-left: 1.5em;
    font-size: 0.8em;
    margin: 0 10px;
}

#admission .admissionform {
    padding: 10px;
    margin: 10px 50px;
}

#admission fieldset {
    padding: 20px;
    margin-bottom: 30px;
}

@media screen and (max-width: 770px) {
    #admission .emphasis {
        font-size: 16px;
        padding: 20px;
        margin: 10px 10px 30px 10px;
    }

    #admission .admissionform {
        padding: 10px;
        margin: 20px 10px;
    }

    #admission fieldset {
        padding: 10px;
    }
}

/*-- form --*/
#admission .item p {
    margin-bottom: 1.5em;
    font-weight: bold;
}

#admission form legend {
    text-align: center;
}

.req {
    background-color: red;
    color: #fff;
    padding: 0.3em;
    margin-left: 1.5em;
    font-size: 0.6em;
    vertical-align: text-top;
}

input[type="text"],
input[type="email"] {
    width: 60%;
    padding: 5px;
}

input[type="tel"],
input[type="text1"] {
    width: 40%;
    padding: 5px;
}

input[type="date"] {
    width: 40%;
    padding: 5px;
}

#address {
    width: 8em;
}

#neme-field,
#ruby-field,
#born,
#EMname-field,
#EMrel-field {
    width: 15em;
}

input[type="text"]:focus {
    outline: 2px solid red;
}

input[type="text1"]:focus {
    outline: 2px solid red;
}

input[type="tel"]:focus {
    outline: 2px solid red;
}

input[type="email"]:focus {
    outline: 2px solid red;
}

input[type="date"]:focus {
    outline: 2px solid red;
}

textarea {
    width: 100%;
    height: 8em;
    resize: vertical;
}

#admission .emergency {
    line-height: 1em;
}


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

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

    input[type="tel"],
    input[type="text1"],
    input[type="date"] {
        width: 50%;
    }
}

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

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

    input[type="tel"],
    input[type="text1"],
    input[type="date"] {
        width: 70%;
    }

    textarea {
        width: 100%;
    }
}


button[type="submit"] {
    padding: 10px;
    background: #000080;
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    /*便利　ボタンの上にカーソルがくると指のマークになるプロパティ*/
}

button[type="reset"] {
    padding: 10px;
    background: red;
    border: 2px solid #333;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
}

.n {
    font-weight: normal;
    margin-left: 15px;
}

/*====== admission.htmlの終了 ======*/

/*====== climbingplan4.htmlの追加設定 ======*/
#admission .sm {
    font-size: 14px;
}

/*====== climbingplan4.htmlの終了 ======*/



/*====== yamaboushistory.htmlの設定 ======*/
#yamaboushistory .itemA {
    background: #ffffcc;
    border-radius: 0 20px;
    padding: 20px;
    margin: 10px 10px 30px 10px;
}

#yamaboushistory .item {
    background: #fffaf0;
    border-radius: 0 20px;
    padding: 20px;
    margin: 10px 10px 30px 10px;
}

#yamaboushistory .item h3 {
    padding: 7px;
    color: #fff;
    background: #1e90ff;
    font-weight: normal;
    border-left: 10px solid #4169e1;
}

#yamaboushistory .yama2018 {
    padding: 0 10px;
}

#yamaboushistory .detail-y {
    margin: 10px 0 40px 0;
}

#yamaboushistory img {
    vertical-align: middle;
    max-width: 100%;
}

#yamaboushistory .item h4 {
    padding: 5px;
    color: #000;
    background: #87ceeb;
    font-weight: normal;
    border-left: 10px solid #4169e1;
}

#yamaboushistory .detail-yamastory {
    margin: 10px 0 40px 10px;
}

#yamaboushistory .img-yama {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#yamaboushistory .img-yama figure {
    padding: 20px;
}

#yamaboushistory .detail-yamastory ul {
    padding-left: 40px;
}

@media screen and (max-width: 767px) {
    #yamaboushistory .img-yama {
        flex-direction: column;
    }

    #yamaboushistory .detail-yamastory {
        font-size: 15px;
    }

    #yamaboushistory .detail-yamastory ul {
        padding-left: 30px;
    }
}


#yamaboushistory .yama2013 {
    padding: 0 10px;
}

#yamaboushistory .yama-birth {
    padding: 0 10px;
}

#yamaboushistory .yama-future {
    padding: 0 10px;
}

/*====== yamaboushistory.htmlの終了 ======*/


/*====== organization.htmlの設定 ======*/
#sketch .item0 {
    color: #0000cd;
    background: #ffffcc;
    /*font-weight: bold;*/
    font-size: 1.2em;
    border-radius: 0 20px;
    padding: 35px;
    margin: 0px 10px 30px 10px;
}

#sketch .item0_1 {
    color: #F55F2C;
    font-size: 1.2em;
}

#sketch .item1 {
    color: #006400;
    background: #fffaf0;
    /*font-weight: bold;*/
    font-size: normal;
    border-radius: 0 20px;
    padding: 20px 30px;
    margin: 10px 10px 30px 10px;
}

#sketch .item1 > h3 {
    padding: 4px;
    color: black;
    background: #56d9fa;
    font-weight: normal;
    border-left: 10px solid #4169e1;
    margin: 0;
}

#sketch .item1 .sketch_p {
    padding: 10px 10px 20px 10px;
}

#sketch .item1 .sketch_p ul {
    padding-left: 10px;
}

#sketch .item1 .sketch_p ol {
    padding-left: 20px;
}


@media screen and (max-width: 768px) {
    #sketch .item0 {
        padding: 20px;
        font-size: 1.1em;
    }

    #sketch .item0_1 {
        font-size: 1.2em;
    }

    #sketch .item1 {
        padding: 20px 20px;
    }
}

/*====== organization.htmlの終了 ======*/


/*====== members/index.htmlの設定 ======*/
.description {
    margin: 10px;
    background: #e0ffff;
    padding: 10px;
}

.normal h3 {
    padding: 7px;
    color: #fff;
    background: #1e90ff;
    font-weight: normal;
    border-left: 10px solid #4169e1;
    margin: 10px 0 10px 10px;
}

/*.summary h3 {
    padding: 7px;
    color: #fff;
    background: #1e90ff;
    font-weight: normal;
    border-left: 10px solid #4169e1;
    margin: 15px 10px 0 10px;
}*/

.summary h2 {
    padding: 20px;
    color: #fff;
    background: #0000df;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
}

/*-- 新着情報の設定 --*/
.area {
    background: #fffaf0;
    border-radius: 0 20px;
    font-size: 17px;
    padding: 5px 20px;
    margin: 0 10px 30px 10px;
    color: #000;
}

.area .schedule {
    flex-direction: row;
}

.area .schedule .time {
    width: 9rem;
    padding-top: 10px;
    line-height: 1.5;
    border-bottom: 1px dotted #778899;
}

.area .schedule .timeb {
    width: 10rem;
    padding-top: 10px;
    margin-bottom: 4px;
    line-height: 1.5;
    border-bottom: 1px dotted #778899;
    background-color: #F3DFBE;
}

.area .schedule .announce {
    padding-left: 9rem;
    padding: 10px;
    line-height: 1.5;
    border-bottom: 1px dotted #778899;
    flex: 0 1 80%;
}

.area span a {
    font-weight: 700;
    color: #000080;
}

.area span a:hover {
    color: #ff4500;
}

@media screen and (max-width: 767px) {
    .area {
        padding: 5px 15px;
    }

    .area .flex {
        flex-flow: column;
    }

    .area .schedule .time {
        border-bottom: none;
    }

    .area .schedule .announce {
        padding: 5px 5px 5px 20px;
        font-size: 15px;
        width: auto;
    }
}

.area2 {
    justify-content: space-between;
    margin: 0 10px 30px 10px;
    color: #000;
}

.area2 h3 {
    padding: 7px;
    color: #fff;
    background: #1e90ff;
    font-weight: normal;
    border-left: 10px solid #4169e1;
    margin: 10px;
    font-size: 17px;
}

.area2 ul {
    padding-left: 40px;
}

.summary {
    background: #ffffcc;
    border-radius: 0 20px;
    font-size: 17px;
    padding: 20px;
    margin: 20px;
    color: #000;
    width: 45%;
}

/*改行*/
.smh-none {
    display: block;
}

@media screen and (max-width: 900px) {
    .area2 {
        flex-direction: column;
        margin-bottom: 0;
    }

    .summary {
        width: 100%;
        margin: 10px 0;
    }

    .smh-none {
        display: none;
    }
}

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

    .summary {
        font-size: 15px;
    }

    .area2 h3 {
        font-size: 15px;
    }
}

.bottom3 {
    width: 15em;
    background-color: #f08080;
    border: 2px solid #f08080;
    margin: 10px auto;
    border-radius: 8px;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.bottom3 a {
    font-size: 15px;
    color: #fff;
    display: block;
}

.bottom3 img {
    margin: 0 5px 8px 0;
}

.bottom3:hover {
    background-color: transparent;
    border: 2px solid #f08080;
}

.bottom3 a:hover {
    color: #f08080;
}

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

    .bottom3 a {
        font-size: 12px;
    }

    .bottom3 {
        width: 11em;
    }
}


/*====== members/index.htmlの終了 ======*/

/*====== members/hiroba19.htmlの設定 ======*/
/*====== members/members19.htmlの設定 ======*/
/*====== members/journal19.htmlの設定 ======*/
/*====== members/materials19.htmlの設定 ======*/
.areaA {
    background: #fffaf0;
    border-radius: 0 20px;
    padding: 20px;
    margin: 10px 10px 20px 10px;
    color: #000;
}

.areaA h3 {
    padding: 7px;
    color: #fff;
    background: #1e90ff;
    font-weight: normal;
    border-left: 10px solid #4169e1;
    margin-bottom: 10px;
    font-size: 16px;
}

.areaA img {
    margin-bottom: 3px;
}

.areaA .itemA dt {
    float: left;
    width: 26em;
    padding: 10px;
}

.areaA .itemA dd {
    padding: 10px;
    border-bottom: 1px dotted #778899;
}

.areaA dl {
    overflow: hidden;
}

.areaA span a {
    font-weight: 700;
    color: #000080;
}

.areaA span a:hover {
    color: #ff4500;
}

.areaA .itemB {
    margin-bottom: 10px;
    padding-left: 17px;
}

.areaA .itemB img {
    margin: 0 5px 3px 17px;
}

.areaA .itemC {
    margin-left: 36px;
}

.areaA .itemD {
    margin-left: 20px;
}

.areaA .itemE {
    background-image: url(../images/090.png);
    background-repeat: no-repeat;
    background-position: left 10px top 6px;
    margin-bottom: 10px;
    padding-left: 35px;
}

.areaA .itemF {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}


@media screen and (max-width: 900px) {
    .areaA .itemA dt {
        width: 22em;
    }

    .areaA .itemA dd {
        padding-left: 22em;
    }
}

@media screen and (max-width: 767px) {
    .areaA h3 {
        font-size: 0.8rem;
    }

    .areaA .itemA dt {
        float: none;
        width: 100%;
        padding: 5px;
        font-size: 0.8rem;
        border-bottom: none;
    }

    .areaA .itemA dd {
        padding: 0 5px 5px 5px;
        margin-left: 30px;
        margin-bottom: 5px;
        font-size: 0.8rem;
        border-bottom: 1px dotted #778899;
        width: auto;
    }

    .areaA .itemB {
        font-size: 0.8rem;
        margin-bottom: 10px;
        padding-left: 12px;
    }

    .areaA .itemB img {
        margin: 0 5px 3px 12px;
    }

    .areaA .itemC {
        font-size: 0.8rem;
    }

    .areaA .itemD {
        font-size: 0.8rem;
    }

    .areaA .itemE {
        font-size: 0.8rem;
        background-position: left 10px top 3px;
    }

    .areaA ul li {
        font-size: 0.8rem;
    }

}


@media screen and (max-width: 350px) {
    .areaA .itemA dt {
        font-size: 12px;
    }

    .areaA .itemA dd {
        font-size: 12px;
    }

    .areaA .itemB {
        font-size: 12px;
    }

    .areaA .itemC {
        font-size: 12px;
    }

    .areaA .itemD {
        font-size: 12px;
    }

    .areaA .itemE {
        font-size: 12px;
    }

    .areaA ul li {
        font-size: 12px;
    }
}

/*====== members/members19.htmlの追加設定 ======*/
.areaA ul {
    padding-left: 70px;
}


/*====== 講習会の追加設定 ======*/

.training-container {
    display: flex;
    flex-flow: row;
}

@media screen and (max-width: 767px) {
    .training-container {
        flex-flow: column;
    }

    .training-image {
        flex: 1 1 auto;
        margin-right: 20px;
        text-align: center;
    }

    .training-text {
        flex: 1 1 auto;
    }
}






/* --- TABLE（表） --- */
.table .td .th {
    padding: 4px 1px 4px 3px;
    margin: 0px 0px 0px 0px;

}

/* 山行予定 */
.planTable table,
tr {
    border: 1px #000000 solid;
    border-collapse: collapse;
    height: 28px;

}

.planTable td {
    border: 1px #000000 solid;
    text-align: left;
    vertical-align: middle;
    font-size: 15px;
    font-weight: bold;
    background-color: #ffffff;
}

.planTable th {
    border: 1px #000000 solid;
    text-align: left;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    color: black;
    background-color: #d9d9d9;
}

.planTable caption {
    caption-side: top;
    text-align: left;
    font-size: 18px;
    font-weight: bold;
}

.planList dl {
    margin: 0 0 0 10px;
    padding: 8px 16px 8px 40px;
    width: 320px;
    line-height: 150%;
    font-size: 15px;
    font-weight: bold;
    color: #0000a0;
    background: #ecf0ce;
}
