@charset "UTF-8";

/* 基本色 */
:root {
    --main-color: #333;
    --accent-color: #333;
    --dark-main-color: #008424;
    --text-bright-color: #fff;
    --gray-color: #666;
    --large-width: 1500px;
    --middle-width: 800px;
    --subtitile2: vertical-rl;
}

/* 基本設定： フォントサイズ */


/*ブレークポイント600で設定*/
@media (max-width: 599px) {
    :root {
        font-size: 14px;
    }
}

@media (min-width: 600px) and (max-width: 799px) {
    :root {
        font-size: 16px;
    }
}

/*ブレークポイント800で設定*/
@media (min-width: 800px) {
    :root {
        font-size: 16px;

    }
}

body {
    font-size: 16px;
    /*font-weight: bold;*/
}



/*基本： ページ全体*/
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;


    font-family: 'メイリオ', Meiryo, 'klee', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    line-height: 1.8;
    font-weight: lighter;
}

body h2 {

    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    font-weight: normal;
}


body h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-size: 20px;
}


/*ページ内ナビゲーション*/

#page-top {
    position: fixed;
    z-index: 9999;
    bottom: 20px;
    right: 5px;
    font-size: 50%;
    width: 50px;
}

#page-top a {
    background: var(--gray-color);
    text-decoration: none;
    color: var(--text-bright-color);
    width: 100%;
    padding: 10px 2px;
    text-align: center;
    display: block;
    border-radius: 5px;
    opacity: 1;
}

#page-top a:hover {
    text-decoration: none;
    background: #999;
}

@media (maX-width: 768px) {
    .page-top {
        display: none;
    }

    #page-top a {
        padding: 5px 0;
    }
}


#slider {
    width: 100%;
    height: 60vh;
}

.wrapper h2 {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 29px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 1px 5px 4px var(--main-color);
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
}

.wrapper {
    position: relative;
}

@media(max-width:400px) {
    #slider {
        width: 100%;
        height: 30vh;
    }

    .wrapper h2 {
        font-size: 25px;
    }
}

/* コンテンツI： 挨拶欄 */


.conAA {
    margin: 20px auto;
    padding-top: 30px;
}

.conAA .greeting {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 50px;
}

.conAA .hello {
    padding-bottom: 30px;
    text-align: center;
    position: relative;

}

.conAA h2 {
    padding-bottom: 10px;
    font-size: 20px;
    writing-mode: var(--subtitile2);
    margin: 0 auto;
}

.conAA textbox {
    text-align: center;
    display: block;

}

.conAA .text {
    text-align: left;
    display: inline-block;
}

.conAA .photo {
    max-width: 800px;
    max-height: 500px;
    margin: auto 0;
    


}

.conAA .photo img {
    display: block;
    width: 100%;
    height: auto;
}

.conAA .text p:first-child {
    font-size: 19px;
    font-weight: 100;
    text-align: center;
    padding: 20px 0;
}

.conAA .text .green {
    color: forestgreen;
    font-size: 18px;
    font-weight: bold;
}

/*news a のアニメーション*/

.conAA .textbox a {
    position: relative;
    display: inline-block;
    border: solid 1px var(--main-color);
    border-radius: 5px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    color: #333;
    text-align: center;
    z-index: 10;
    text-decoration: none;
    margin: 5px;

}

.conAA .textbox a:before {
    content: "";
    position: absolute;
    display: block;
    background-color: var(--dark-main-color);
    border-radius: 5px;
    width: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: .7s ease 0s;
    transition: .7s ease 0s;
    z-index: -1;
}

.conAA .textbox a:hover {
    color: #fff;
    border: none;
}

.conAA .textbox a:hover:before {
    width: 100%;
}

.conAA img {
    margin: 0 auto;
}

@media (min-width: 800px) {
    .conAA {
        width: 90%;
    }

    .conAA .container {
        display: flex;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }

    .conAA .photo {
        flex: 3;
        margin: 100px 0;
        background-size: cover;
        max-width: 700px;
        display: flex;
        align-items: center;
    }

    .conAA .hello {
        flex: 2;
        margin: 0 30px;
    }
}

@media(max-width:400px) {
    .conAA img {
        width: 100%;
    }

    .conAA {
        padding: 0 10px;
    }
}

/* コンテンツJ： 目標*/
.conJ {
    margin: 20px auto;
}

.conJ .textbox {
    color: var(--text-bright-color);
    background-color: var(--main-color);
    margin: 10px auto;
    text-align: center;
    display: block;
}

.conJ .textbox h3 {
    color: var(--dark-main-color);
    font-size: 20px;

}

.conJ .headtext {
    margin: auto auto;
}

.conJ .headtext p {
    font-size: 30px;
    padding-top: 15px padding-bottom: 15px;
}

.conJ .purpose {
    padding-top: 70px;
    padding-bottom: 30px;
    text-align: center;

}

.conJ .text {
    padding: 30px;
    text-align: left;
    display: inline-block;
}

.conJ .purpose h2 {
    padding: 10px;
    font-size: 20px;
    writing-mode: var(--subtitile2);
    margin: 0 auto;
}


@media (min-width: 800px) {
    .conJ {
        width: 100%;
    }

    .conJ .textbox {
        display: flex;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
        padding-left: 100px;
        padding-right: 100px;
    }

    .conJ .headtext {
        width: 40%;
    }

    .conJ .headtext p {
        padding-bottom: 30px;
    }

    .conJ .text {
        text-align: left;
        width: 55%;

    }
}

@media(max-width:400px) {
    .conJ img {
        width: 100%;
    }

    .conJ .caption {
        padding: 0 10px;
    }

    .conJ .headtext {
        padding: 10px;
    }

    .conJ .headtext h3 {
        font-size: 13px;
    }

    .conJ .headtext p {
        font-size: 20px;
    }

    .conJ .text {
        padding: 10px;
    }
}

/* コンテンツB： NEWS欄 */
.conB .news {

    text-align: center;
    position: relative;
}


.conB .container {
    padding: 1vh 0;
}

.conB .container h3 {
    border-bottom: double var(--dark-main-color);
    margin: 20px 0;
}


.conB .text {

    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 5px;

}

.conB h2 {
    padding: 10px;
    font-size: 22px;
    writing-mode: var(--subtitile2);
    margin: 0 auto;
}


.conB p {
    padding-right: 30px;
}


.club::before {
    content: "部活動";
    font-size: .8rem;
    background: var(--dark-main-color);
    color: #fff;
    padding: 5px;
    margin-right: 5px;
    border-radius: 10px;

}

.obog::before {
    content: "弓美会";
    font-size: .8rem;
    background: var(--dark-main-color);
    color: #fff;
    padding: 5px;
    margin-right: 5pw;
    border-radius: 10px;

}
.game::before {
    content: "公式戦";
    font-size: .8rem;
    background: var(--main-color);
    color: #fff;
    padding: 5px;
    border-radius: 10px;

}

.practice::before {
    content: "new";
    font-size: .8rem;
    background: #00bfff;
    color: #fff;
    padding: 5px;
    border-radius: 10px;

}


.conB a {

    display: inline-block;
    color: var(--main-color);
    text-decoration: none;
    transition: color .5s;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dotted;
    width: 100%;

}

.conB a:hover {
    color: var(--dark-main-color);

}


/*news a のアニメーション*/

.conB .more {
    text-align: right;
    padding: 0 20px;
}

.conB .more a {
    position: relative;
    display: inline-block;
    border: solid 1px #191919;
    border-radius: 5px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    color: #333;
    text-align: center;
    z-index: 10;

}

.conB .more a:before {
    content: "";
    position: absolute;
    display: block;
    background-color: forestgreen;
    border-radius: 5px;
    width: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: .7s ease 0s;
    transition: .7s ease 0s;
    z-index: -1;
}

.conB .more a:hover {
    color: #fff;
    text-decoration: none;
    border: none;
}

.conB .more a:hover:before {
    width: 100%;
}

@media (min-width:800px) {
    .conB {
        padding-top: 70px;
    }

    .conB .container {
        display: flex;
        flex-direction: row-reverse;
        max-width: 100px;
        max-width: var(--large-width);
        margin-top: 2vh;
        margin-left: auto;
        margin-right: auto;
        width: 90vw;
        background-color: rgba(0, 132, 36, 0.2);
    }

    .conB .news {
        flex: 2
    }

    .conB .textbox {
        flex: 4;
    }
}

@media(max-width:400px) {
    .conB img {
        width: 100%;
    }

    .conB {
        padding: 0 10px;
    }

    .conB .news {
        margin: 30px 0;
    }

    .conB .more {
        text-align: center;
    }
}

/* コンテンツD： 概要（画像＋テキスト） */

.conD .us {

    padding-top: 50px;
    padding-bottom: 30px;
    text-align: center;
    position: relative;
}

.conD .caption {
    padding: 0 30px;
}

.conD h3 {
    margin-bottom: 20px;
    text-align: center;
    border-bottom: double var(--dark-main-color);
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
}

.conD img {
    width: auto;
}


@media(max-width:400px) {
    .conD .caption {
        padding: 0 10px;
        margin-top: 20px;
    }
}

.image .text {
    position: absolute;
    color: var(--text-bright-color);
    font-size: 18px;
    width: 100%;
    bottom: 0;
    text-align: center;
    background-color: var(--dark-main-color);

}

/*ホバーエフェクト関連*/
.image img {
    width: 100%;
    height: 100%;
}

.image .hover-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    color: var(--text-bright-color);
    background-color: rgba(0, 0, 0, 0.65);
    opacity: 0;
    transition: .3s ease-in-out;
}

.image .hover-text .text1 {
    font-size: 22px;
    padding: 10px 20px;
}

.image .hover-text .text2 {
    font-size: 16px;
    padding: 0 20px;
}

.image .hover-text .text3 {
    font-size: 15px;
    padding: 0 20px;
}


.image:hover .hover-text {
    opacity: 1;
}


@media screen and (min-width: 800px) {
    .conD {
        min-width: auto;
        font-size: 16px;
    }
}


.block {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 95%;
    margin: 0 auto;
}

.image {
    width: 100%;
    margin: 2vh auto;
}

@media screen and (min-width: 768px) {
    .image {
        width: 30%;
    }
}

/* フェードアップ */
.u-fade-type-up {
    transform: translateY(50px);
    opacity: 0;
}

.is-active .u-fade-type-up {
    transition: 2.6s;
    transform: translateY(0);
    opacity: 1;
}

.is-active .u-fade-type-up:nth-child(2) {
    transition-delay: .4s;
}

.is-active .u-fade-type-up:nth-child(3) {
    transition-delay: .8s;
}

.is-active .u-fade-type-up:nth-child(4) {
    transition-delay: 1.2s;
}

.is-active .u-fade-type-up:nth-child(5) {
    transition-delay: 1.6s;
}

.is-active .u-fade-type-up:nth-child(6) {
    transition-delay: 2s;
}




@media (min-width: 800px) {
    .conD .container {
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
        padding: 40px 60px;
    }

}



/* コンテンツE：コンセプト（画像＋テキスト ） */


.conE .container {
    text-align: center;
    padding: 50px 30px;
}

.conE h2 {
    padding: 10px;
    font-size: 20px;
    writing-mode: var(--subtitile2);
    margin: 0 auto;
}

.conE .image {
    width: 45%;
    height: 50%;
}


@media (min-width: 800px) {
    .conE .container {

        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
        padding-top: 70px;
    }

    .conE .image {
        width: 35%;
        height: 40%;
    }



}

@media(max-width:400px) {
    .conE img {
        width: 100%;
    }

    .conE .container {
        padding: 0 10px;
    }
}

/* コンテンツEE：コンセプト（画像＋テキスト ） */


.conEE .container {
    text-align: center;
    padding: 50px 30px;
}

.conEE h2 {
    padding-bottom: 10px;
    font-size: 20px;
    writing-mode: var(--subtitile2);
    margin: 0 auto;
}

.conEE h3 {
    margin-bottom: 20px;
    text-align: left;
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;

}

.conEE .image {
    width: 45%;
    height: 50%;
}


@media (min-width: 800px) {
    .conEE .container {

        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
        margin-right: auto;
        padding-top: 70px;
    }

    .conEE .image {
        width: 35%;
        height: 40%;
    }

}

@media(max-width:400px) {
    .conEE img {
        width: 100%;
    }

    .conEE .container {
        padding: 0 10px;
    }
}


/* フッター */
footer {
    color: var(--text-bright-color);
    background-color: var(--dark-main-color);
}

footer .container {
    padding: 30px 20px;
}


@media (min-width: 800px) {
    footer .container {
        text-align: center;


    }

    .footA {
        flex: 0 0 40%;
    }

    .footB {
        flex: 0 0 60%;
    }

    .footC {
        flex: 0 0 100%;
    }
}


/* フッターA： サイト情報 */
.footA {
    margin-bottom: 30px;
    text-align: center;
}

.footA h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    font-size: 20px;
}

.footA p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 14px;
}

.footA a {
    color: inherit;
    text-decoration: none;
}


/* フッターB： フッターメニュー */
.footB div {
    margin-bottom: 20px;
}

.footB h3 {
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: solid 1px currentColor;
    font-size: 14px;
}

.footB ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footB a {
    display: block;
    padding: 5px;
    color: inherit;
    font-size: 12px;
    text-decoration: none;
}

.footB a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}


@media (min-width: 768px) {
    .footB {
        display: flex;
        flex: 3;
    }

    .footA {
        flex: 1;
    }

    .footB div {
        flex: 1;
    }

    .footB div:not(:first-child) {
        margin-left: 20px;
    }
}


/* フッターC： コピーライト */
.footC {
    font-size: 12px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}


/* フッターD： SNSメニュー */
.footD {
    width: 50%;
    margin: 0 auto;


}

.footD ul {
    margin: 0 auto;
    display: flex;
    list-style: none;
}

.footD ul li {
    margin: auto;
}

.footD .follow {
    padding: 10px;
    text-align: center;
}

.footD a {
    display: block;
    font-size: 16px;
    text-decoration: none;
    border: solid 1px var(--text-bright-color);
    width: 2em;
    line-height: 2em;
    border-radius: 50%;
    text-align: center;
}

.footD a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}


/* ヘッダー */
header {
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);


}

.nohero header {
    position: static;
    border-bottom: solid 1px #ddd;
    border-bottom: solid 1px var(--gray-color);
}

.fixed {
    position: fixed;
}


/* ヘッダーA: サイト名 */
.headA {
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    text-decoration: none;
}


/* ヘッダーB： ナビゲーションメニュー */


.headB li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.headB a {
    display: block;
    padding: 15px;
    color: inherit;
    font-size: 13px;
    text-decoration: none;
    text-align: center;

}


@media (min-width: 768px) {
    header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }

    .headB ul {
        display: flex;
    }

    .headB a {
        position: relative;
        display: inline-block;
        color: var(--main-color);

    }

    .headB a:before {
        content: "";
        position: absolute;
        display: block;
        background-color: var(--dark-main-color);
        width: 0;
        height: 3px;
        bottom: -2px;
        left: 0;
        -webkit-transition: .4s ease 0s;
        transition: .4s ease 0s;
    }

    .headB a:hover {
        text-decoration: none;
    }

    .headB a:hover:before {
        width: 100%;
    }
}


@media (max-width: 767px) {
    header .container-small {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .headC {
        margin-right: 10px;
        padding: 0;
        border: none;
        outline: none;
        background: none;
        font-size: 28px;
        opacity: 0.5;
        cursor: pointer;
    }

    .headC:hover {
        opacity: 0.3;
    }


    .headB {
        display: none;
    }
}

@media (min-width: 768px) {
    .headC {
        display: none;
    }

    .headB {
        display: block !important;
    }
}



/* コンテンツページ: 記事 */
.post .container {
    margin-left: auto;
    margin-right: auto;
    padding: 30px 30px;
}



.post table {
    text-align: left;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 19px;

}

.post table th {
    text-align: left;
    width: 15%;
    color: var(--text-bright-color);
    background-color: var(--dark-main-color);
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
    border-bottom: 0.1px dotted #fff;
}

.post table td {
    text-align: left;
    width: 30%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px dotted #008424
}


.post h3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    margin-bottom: 0.5rem;

}

.post p {
    font-size: 1rem;
    line-height: 2;
}

.post img {
    max-width: 100%;
}

.post a {
    padding: 0.3rem;
}

@media(max-width:400px){
    .post .container{
        padding: 30px 10px;
    }
}

.sns ul {
    display: flex;
}

.sns li {
    margin: 0 20px;
}



/* コンテンツページ: パンくずリスト */
.bread ol {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    padding: 5px;

}

.bread a {
    display: block;

    color: inherit;

    text-decoration: none;
}



.bread a:hover {
    color: var(--dark-main-color);

}



/* アバウトページ： 画像と沿革 */
.history {
    background-color: #046380;
    background-color: var(--main-color);
    color: #fff;
    color: var(--text-bright-color);
}

.history .text {
    padding: 20px;
}

.history h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.history .photo {
    min-height: 300px;
    background-image: url(img/plant.jpg);
    background-position: center;
    background-size: cover;
}

.history table {
    border-collapse: collapse;
    border-top: solid 1px #ddd;
    border-top: solid 1px var(--gray-color);
    font-size: 0.875rem;
}

.history th,
.history td {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    border-bottom: solid 1px #ddd;
    border-bottom: solid 1px var(--gray-color);
}

.history th {
    padding-right: 1rem;
    text-align: left;
    word-break: keep-all;
}


@media (min-width: 768px) {
    .history .container {
        display: flex;
        max-width: 1000px;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }

    .history .photo {
        flex: 3;
    }

    .history .text {
        flex: 2;
        padding: 50px;
    }
}


/* お問い合わせページ: 問い合わせ先 */
.contact {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 10px;
    border: solid 1px var(--gray-color);
    text-align: center;
}



.contact h2 {
    margin-top: 0;
    font-size: 1.2rem;
}

.contact a {
    font-size: 1.4rem;
    color: inherit;
    text-decoration: none;
}


@media (min-width: 1000px) {
    .contact-wrap {
        display: flex;
        justify-content: space-between;
        margin: 5px;
    }



}


/* お問い合わせページ： 地図 */
.location iframe {
    width: 100%;
    height: 400px;
    vertical-align: bottom;
}

.location h2 {
    margin: 0;
    padding-top: 0px;
    padding-bottom: 10px;
    background-color: #046380;
    background-color: var(--dark-main-color);
    color: #fff;
    color: var(--text-bright-color);
    font-size: 1.5rem;
    text-align: center;
}


/* ヘッダーとヒーローイメージを一体化 */
.head-hero {
    color: #000;
    position: fixed;
}


.head-hero .headC {
    color: #000;
    opacity: 1;
}

@media (max-width: 767px) {
    .head-hero .headB {
        background-color: rgba(0, 0, 0, 0.0);
    }
}

.conAAA {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10vh;
    min-height: 350px;
    background-position: center;
    background-size: cover;
    text-align: center;
    background-image: url(img/makiwara5.jpg);
    position: relative;
}

.conAAA h2 {
    color: var(--text-bright-color);
}

.conJJJ {

    padding: 30px;
}

.conJJJ .textbox {
    padding: 30px 0px;
    text-align: left;
    display: inline-block;


}

.conJJJ .textbox h3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    margin-bottom: 0.5rem;

}


.conJJJ .purpose {

    padding-bottom: 10px;
    text-align: center;
    position: relative;
    display: block;

}


.conJJJ .text {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid #008424;
}

.conJJJ .purpose h2 {
    padding-bottom: 10px;
    font-size: 20px;
    writing-mode: var(--subtitile2);
    margin: 0 auto;
}

.conJJJ img {
    width: auto;
}

@media (min-width: 800px) {
    .conJJJ {
        width: 100%;

    }

    .conJJJ .textbox {
        width: 100%;
        max-width: var(--large-width);
        margin: 0 auto;

    }

}

@media(max-width:400px) {
    .conJJJ img {
        width: 100%;
    }

    .conJJJ {
        padding-right: 10px;
        padding-left: 10px;
    }
}

.conH {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 100px;
}

.conH h3 {
    text-align: left;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    margin-bottom: 0.5rem;

}

.conH .atteintion {
    text-align: left;
    display: block;

}


.conH p {

    border-bottom: 1px solid #000;
    width: 30%;
    margin: 0 auto;
}

.conH ol {
    list-style: none;
    display: inline-block;

}

.conH ol li {
    text-align: left;
    padding: 10px 0;
    border-bottom: 1px dotted;
}

.conH img {
    width: 70%;
    margin: 30px auto;
}

.question {
    padding-top: 100px;
}

@media(max-width:768px) {
    .conH img {
        width: 100%;
    }
}

@media(max-width:400px) {
    .conH {
        padding: 0 10px;
    }
}

.conAAAA {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 5vh;
    min-height: 250px;
    background-position: center;
    background-size: cover;
    text-align: center;
    background-image: url(img/index.jpg);
    position: relative;
}

@media(max-width:400px) {
    min-height: 100px;
}

.conAAAA h2 {
    color: var(--text-bright-color);
}

.conHH {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 100px;
    padding: 0 30px;

}

.conHH a {
    color: #000;
    text-decoration: none;
    transition: color .5s;
    padding: 1rem;
}

.conHH a:hover {
    color: var(--dark-main-color);
    text-decoration: underline;
}

.conHH h2 {
    padding: 50px 0;
}

.conHH h3 {
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    text-align: left;
    margin-bottom: 20px;
}


.conHH p {
    text-align: left;
    padding-top: 30px;
    padding-bottom: 30px;
}

.conHH .button {
    text-align: right;
    margin-bottom: 2rem;

}

.conHH .practice3 {
    text-align: left;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 19px;

}

.conHH .practice3 th {
    text-align: left;
    width: 15%;
    color: var(--text-bright-color);
    background-color: var(--dark-main-color);
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
    border-bottom: 0.1px dotted #fff;
}

.conHH .practice3 td {
    text-align: left;
    width: 30%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px dotted #008424
}

@media(min-width:768px) {
    .conHH p {
        padding: 10px 0px;
    }

    .conHH .practice td {
        padding: 10px 35px;
    }

    .conHH .practice2 td {
        padding: 10px 100px;

    }
}

@media(max-width:400px) {
    .conHH {
        padding: 10px;
    }
}

/*試合風景*/

.conII {
    text-align: center;
    margin: 0 auto;
    display: block;
    padding: 50px 30px 0;
}

.conII h2 {
    padding: 30px 0;
}

.conII h3 {
    margin-bottom: 20px;
    text-align: left;
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;

}

.conII p {
    padding: 20px 0px;

}

.conII .textbox p {
    text-align: left;
}

.conII .text {
    text-align: left;
    display: inline-block;
}

.conII .textbox .button {
    text-align: right;
}

.conII a {
    color: #000;
    text-decoration: none;
    transition: color .5s;
    padding: 0.3rem;
}

.conII a:hover {
    color: var(--dark-main-color);
    text-decoration: underline;
}


.conII .practice4 {
    text-align: left;
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 19px;

}

.conII .practice4 th {
    text-align: left;
    width: 15%;
    color: var(--text-bright-color);
    background-color: var(--dark-main-color);
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
    border-bottom: 0.1px dotted #fff;
}

.conII .practice4 td {
    text-align: left;
    width: 30%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px dotted #008424
}


@media(max-width:400px) {
    .conII {
        padding: 10px;
    }
}

/* ボタン全体 */
.flowbtn12 {
    font-family: 'Verdana', sans-serif;
    border-radius: 4px;
    display: inline-block;
    width: 120px;
    transition: .4s;
    text-decoration: none;
}

/* ボタン内テキストマウスホバー時 */
.flowbtn12:hover {
    color: #fff !important;
    text-decoration: none;
}

/* Twitter */
.flowbtn12.fl_tw2 {
    border: solid 1px #55acee;
    color: #55acee;
}

/* Twitterマウスホバー時 */
.flowbtn12.fl_tw2:hover {
    border: solid 1px #55acee;
    background: #55acee;
}

/* Instagram */
.flowbtn12.insta_btn2 {
    border: solid 1px #c6529a;
    color: #c6529a;
}

/* Instagramマウスホバー時 */
.flowbtn12.insta_btn2:hover {
    border: solid 1px #c6529a;
    background: #c6529a;
}

/* ボタン内テキスト調整 */
.flowbtn12 span {
    font-size: 14px;
    position: relative;
    left: 8px;
    bottom: 2px;
}

/* ulタグの内側余白を０にする */
ul.snsbtniti2 {
    padding: 0 !important;
}

/* ボタン全体の位置 */
..snsbtniti2 {
    flex-flow: row wrap;
}

/* ボタン同士の余白 */
.snsbtniti2 li {
    list-style: none;
    padding: 0.5rem 0;
    text-align: left !important;
}

/*動画挨拶*/

.conMM {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 100px;
    display: block;
    padding: 10px 60px;
}



.conMM h3 {
    margin-bottom: 20px;
    text-align: center;
    padding-left: 0.5rem;
    border-bottom: double var(--dark-main-color);
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;

}


.conMM .movie {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.movie iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.conMM .text {
    text-align: left;
    display: inline-block;
}

/*news a のアニメーション*/

.conMM .textbox a {
    position: relative;
    display: inline-block;
    border: solid 1px var(--main-color);
    border-radius: 5px;
    width: 150px;
    height: 40px;
    line-height: 40px;
    color: #333;
    text-align: center;
    z-index: 10;
    text-decoration: none;
    margin: 20px;

}

.conMM .textbox a:before {
    content: "";
    position: absolute;
    display: block;
    background-color: var(--dark-main-color);
    border-radius: 5px;
    width: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: .7s ease 0s;
    transition: .7s ease 0s;
    z-index: -1;
}

.conMM .textbox a:hover {
    color: #fff;
    border: none;
}

.conMM .textbox a:hover:before {
    width: 100%;
}

@media(min-width:1000px) {
    .movie iframe {
        padding: 6vh 100px;
    }
}

@media(max-width:400px) {
    .conMM {
        padding: 0 10px;
    }

    .conMM h3 {
        margin-top: 20px;
    }
}

.conJJ {
    text-align: center;
    margin: 0 auto 30px;
    padding-bottom: 100px;
    padding: 0 30px;
}


.conJJ table {
    text-align: left;
    width: 100%;
    border-collapse: collapse;

}

.conJJ table th {
    text-align: left;
    width: 15%;
    color: var(--text-bright-color);
    background-color: var(--dark-main-color);
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
    border-bottom: 0.1px solid #fff;
}

.conJJ table td {
    text-align: left;
    width: 30%;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px dotted #008424;
}


.conJJ a {
    color: #000;
    text-decoration: none;
    transition: color .5s;
}

.conJJ a:hover {
    color: var(--dark-main-color);
    text-decoration: ;
}


.conJJ h3 {
    margin: 20px 0;
    text-align: left;
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;

}

@media(max-width:767px) {
    .conJJ table {
        width: 100%;
    }

    .conJJ table th,
    .conJJ table td {
        display: block;
        width: 100%;
    }
}

@media(max-width:400px) {
    .conJJ {
        padding: 10px;
    }
}

.conAAAAA {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10vh;
    min-height: 250px;
    background-position: center;
    background-size: cover;
    text-align: center;
    background-image: url(img/index.jpg);
    position: relative;
}

.conAAAAA h2 {
    color: var(--text-bright-color);
}

.conAAAAAA {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 10vh;
    min-height: 350px;
    background-position: center;
    background-size: cover;
    text-align: center;
    background-image: url(img/tradition.jpg);
    position: relative;
}

@media(max-width:700px) {
    .conAAAAA {

        min-height: 150px;
    }
}


/*メンバー1日紹介ページ*/

.artAA table td {
    border: dotted 1px;
    padding: 2px;
}

.artAA table th {
    border: dotted 1px;
    width: 35%;
    text-align: left;
}

.artAA table {
    border: dotted 1px;
    border-collapse: collapse;
}

.artAA .frame img {
    width: 100%;
}

.artAA .photo img {
    width: 100%;

}

.artAA h3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

@media(min-width:400px) {
    .artAA .name {
        margin: 0 10px;
    }
}

@media(min-width:768px) {
    .artAA .artphoto {
        display: flex;
    }
}


/*道場紹介ページ*/
.artAA {
    margin: 20px auto;
    padding: 0 30px;
}

.articleA .container {
    margin: 0 auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: rgba(0, 132, 36, 0.2);
}


#menu {
    position: relative;

}


#menu section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

#menu section:nth-of-type(2n) {
    flex-direction: row-reverse;
}

#menu .menu-img {
    width: 50%;
    height: 40vh;
}

#menu .menu-img-detail {
    height: 40vh;
}



#menu .menu-content {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

#menu section:nth-of-type(1) .menu-img-detail {
    background: url(img/image1.jpg) no-repeat center;
    background-size: cover;
}

#menu section:nth-of-type(2) .menu-img-detail {
    background: url(img/dojo1.jpg) no-repeat center;
    background-size: cover;
}

#menu section:nth-of-type(3) .menu-img-detail {
    background: url(img/image6.jpg) no-repeat center;
    background-size: cover;
}

#menu section:nth-of-type(4) .menu-img-detail {
    background: url(img/image3.JPG) no-repeat center;
    background-size: cover;
}

#menu section:nth-of-type(5) .menu-img-detail {
    background: url(img/image5.JPG) no-repeat center;
    background-size: cover;
}

#menu .menu-content h3 {
    font-size: 1.2rem;
    margin: 0 0 0 1em;
}

#menu .menu-content p {
    height: 13em;
    line-height: 2.5;
}


@media (min-width: 1100px) {
    .artAA {
        width: 100%;
    }


    .artAA .container {
        display: flex;
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }

    .artAA .photo {
        flex: 1;
        background-size: cover;
        max-width: 400px;
        max-height: 800px;
        display: block;
        text-align: center;


    }


    .artAA .photo img {
        display: inline-block;
        width: 80%;

    }

    .artAA .hello {
        flex: 1;
        margin: 0 30px;
    }

}

@media (max-width: 400px) {
    .artAA {
        padding: 0 10px;
    }
}

@media screen and (max-width:768px) {
    #menu .menu-bg {
        background-attachment: inherit;
    }

}

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

    #menu .menu-img,
    #menu .menu-content {
        width: 100%;
        margin: 0 0 50px 0;
    }

}

/*活動内容ページ*/
.artBB {
    margin: 20px auto;
    padding-top: 30px;
}


.artBB .font {
    padding: 15px 0;
}

.artBB h3 {
    border-bottom: 1px solid #000;

}

.artBB .container {
    padding-right: 10px;
    padding-left: 10px;
}

@media (min-width: 1100px) {
    .artBB {
        width: 90%;
    }

    .artBB .container {
        max-width: var(--large-width);
        margin-left: auto;
        margin-right: auto;
    }
}

@media(max-width:767px) {
    .artBB table {
        width: 100%;
    }

    .artBB table th,
    .artBB table td {
        display: block;
        width: 100%;
    }
}

.artBB table th {
    text-align: left;
    color: var(--text-bright-color);
    background-color: var(--dark-main-color);
    padding-left: 1rem;
    padding-right: 1rem;
    font-size: 0.9rem;
}

.artBB table td {
    border-bottom: 1px dotted;
    padding: 0.3rem;

}

.artBB table td img {

    min-width: 200px;
    max-width: 100%;

}

@media (min-width:380px) {
    .artBB table td img {
        width: 80% height:auto;

    }
}

.conCC {

    padding: 30px;
}

.conCC .textbox {
    padding: 30px 0px;
    text-align: left;
    display: inline-block;
    width: 100%;
}



.conCC .textbox h3 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-left: solid 0.75rem var(--dark-main-color);
    border-bottom: solid 1px;
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;
    margin-bottom: 0.5rem;

}


.conCC .purpose {
    padding-bottom: 30px;
    text-align: center;
    position: relative;
    display: block;

}


.conCC .text {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid #008424;
}

.conCC .text li {
    list-style: none;
    border: 1px dotted;

}

.conCC .text .info {
    padding: 1rem 0;
    text-align: left;
    min-width: 10%;
}



.conCC .text a {
    display: flex;
    text-decoration: none;
    color: #000;
    transition: color .5s;
    padding: 0 1rem;
    align-items: center;
}

.conCC a:hover {
    color: var(--dark-main-color);
}

.conCC .name {}

.conCC .purpose h2 {
    padding-bottom: 10px;
    font-size: 20px;
    writing-mode: var(--subtitile2);
    margin: 0 auto;
}


.conCC img {
    width: auto;
}


@media(max-width:400px) {
    .conCC {
        padding: 20px 10px;
    }

    .conCC .text .info {
        min-width: 25%;
    }

    .conCC img {
        width: 100%;
    }
}


.conDD {

    padding: 30px;
}

.conDD .textbox {
    padding: 30px 0px;
    text-align: left;
    display: inline-block;
    width: 100%;
}


.conDD .purpose {
    padding-bottom: 30px;
    text-align: center;
    position: relative;
    display: block;

}


.conDD .text {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border: 1px solid #008424;
}

.conDD .text li {
    list-style: none;
    border: 1px dotted;

}

.conDD .text .info {
    padding: 1rem 0;
    text-align: left;
    min-width: 10%;
}



.conDD .text a {
    display: flex;
    text-decoration: none;
    color: #000;
    transition: color .5s;
    padding: 0 1rem;
    align-items: center;
}

.conDD a:hover {
    color: var(--dark-main-color);
}


.conDD .purpose h2 {
    padding-bottom: 10px;
    font-size: 20px;
    writing-mode: var(--subtitile2);
    margin: 0 auto;
}


.conDD img {
    width: auto;
}



@media(max-width:400px) {
    .conDD {
        padding: 20px 10px;
    }

    .conDD .text .info {
        min-width: 50%;
    }

    .conDD img {
        width: 100%;
    }
}



.conFF {
    margin: 0 auto;
    display: block;
    padding: 50px 30px 0;
    width: 70%;
}

.conFF h2 {
    padding: 10px 0;
}

.conFF .text {
    text-align: center;
    display: block;
    margin: 60px auto;

}

.conFF p {
    text-align: left;

}


.conFF .textbox .button {
    text-align: center;

}

.conFF a {
    color: #000;
    text-decoration: none;
    transition: color .5s;
    padding: 0.3rem;
}

.conFF a:hover {
    color: var(--dark-main-color);
    text-decoration: underline;
}

@media(max-width:400px) {
    .conFF {
        padding: 0 10px;
        width: 100%;
    }
    .conFF img{
        width: 100%;
    }
}


.otherart {
    width: 100%;
    display: flex;
    margin: 30px 0;
}



.otherart a {
    position: relative;
    display: inline-block;
    border: solid 1px #191919;
    width: 50%;
    line-height: 40px;
    color: #333;
    text-align: center;
    z-index: 10;
    text-decoration: none;

}

.otherart a:before {
    content: "";
    position: absolute;
    display: block;
    background-color: var(--main-color);
    width: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.otherart a:hover {
    color: #fff;
    text-decoration: none;
    border: none;
}

.otherart a:hover:before {
    width: 100%;
}

.schedule {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 100px;
    display: block;
    padding: 10px 60px;
}

.schedule h3 {
    margin-bottom: 20px;
    text-align: center;
    padding-left: 0.5rem;
    border-bottom: double var(--dark-main-color);
    font-family: 'Yu Mincho Light', 'YuMincho', 'Yu Mincho', '游明朝体', 'ヒラギノ明朝 ProN', 'Hiragino Mincho ProN', sans-serif;

}




@media(max-width:786px) {
    .schedule img {
        width:100% ;
    }

    .schedule h3 {
        margin-top: 20px;
    }
}

@media(min-width:800px) {
    .schedule img {
        width:50% ;
    }

}



