@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Noto+Sans+JP:wght@100..900&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Metal&family=Noto+Sans+JP:wght@300;400;500;600;700;800&family=Shippori+Mincho+B1:wght@600&display=swap);

body{
    /* background-image: url(../img/back-tile.png);
    background-repeat: repeat; */
    margin: 0;
    padding: 0;
    color: #000;
    font-family: 'Noto Sans JP', "M PLUS 1p", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    scroll-behavior: smooth;
}
#mainWrap{
    margin: 0 auto;
    padding: 0;
}
#mainWrap > .wrap{
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(255, 255 , 255, .6);
    position: relative;
    display: flex;
}
main{
    width: 900px;
    min-height: 500px;
    background-color: #fff;
}
ul{
    padding-inline-start: 0;
}
/* ヘッダー、フッター */
header,footer{
    position: relative;
    width: 100vw;
    margin: 0 auto;
}
header{
    height: 0;
    background-color: #0085ca;
}
footer{
    height: 100px;
    display: flex;
    justify-content: center;
}


/* 見出し類 */
#logo{
    width: 570px;
    display: flex;
    align-items: center;
}
h1{
    width: 100%;
    padding: 0;
    font-size: 15px;
}
h1 img{
    display: block;
    margin: 0;
    height: 100%;
}
h1:hover{
    opacity: .8;
}
h2{

}
h3{

}
h4{

}
h5{

}

/* 文字・段落の基本装飾 */
p{
    text-align: justify;
    word-break: break-all;
    letter-spacing: 1px;
    line-height: 1.8rem;
}
.bold{
    font-weight: bold;
}
.red{
    color: #c65d5d;
}
.gray{
    color: #a9a9a9;
}
.blue{
    color: #25396c;
}
.indent{
    text-indent: 1em;
}
.indent02{
    padding: 1em;
    text-indent: -1em;
}
.center{
    text-align: center;
}
hr{
    border: none;
    border-top: 1px dotted #a2b7bc;;
}
.sup, .sdown{
    font-size: 0.5rem;
}
.sup{
    vertical-align: super;
}
.sdown{
    vertical-align: sub;
}
.deleteLine{
    text-decoration: line-through 2px #f00;
}

/* 迷惑メール対策 */
.at::after{
    content: '@'
}


/* 段落ボックス */

.txtBox_01{
    margin-bottom: 36px;
    padding: 0;
}
.txtBox_02{
    margin-bottom: 24px;
    padding: 0; 
}
.txtBox_03{
    margin-bottom: 16px;
    padding: 0;
}

/* リンクとかボタン */
a{
    color: #c65d5d;
    text-decoration: underline;
    cursor: pointer;
}
a:has(>button){
    display: block;
    text-decoration: none;
    position: relative;
    width: fit-content;
    height: fit-content;
}
a button{
    font-weight: bold;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px 30px;
    background-color: #f08080;
    border-radius: 100vh;
    border: #666 solid 1px;
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 1px;
    word-break: break-all;
    flex-wrap: wrap;
    transition: .3s;
}
a:hover{
    cursor: pointer;
    opacity: .8;
}
a button:hover{
    cursor: pointer;
    opacity: .8;
}
a button.btnOff{
    background-color: #888;
    box-shadow: none;
    pointer-events: none;
    color: #000;
}
a:has(>button.btnOff){
    pointer-events: none;
}
a:has(>h1){
    display: inline-block;
    width: 100%;
    height: 100%;
}
a:has(>h1):hover{
    opacity: .8;
}

/* レスポンシブ切り替え */

.tb_on{
    display: none;
}
.sp_on{
    display: none;
}
.spp_on{
    display: none;
}
main.scrollStop{
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
}

@media screen and (max-width:1160px){
    header,footer{
        width: 100%;
    }
}

@media screen and (max-width:1060px){
    .tb_on{
        display: block;
    }
    .tb_none{
        display: none;
    }
    main{
        width: 100%;
    }
    #logo{
        width: 60%;
    }
    h1{
        padding: 10px;
    }

}

@media screen and (max-width:780px){
    .sp_on{
        display: block;
    }
    .sp_none{
        display: none;
    }
    body{
        background-size: 30%;
        background-repeat: repeat;
    }
    #mainWrap > .wrap{
        max-width: 1160px;
        margin: 0 auto;
        background-color: transparent;
        position: relative;
        display: flex;
    }
    a .sp_on{
        height: 100%;
    }
    #logo{
        width: 60%;
        height: 100%;
    }
    .footer_in {
        justify-content: center;
    }
}

@media screen and (max-width:430px){
    .spp_on{
        display: block;
    }
    footer{
        height: 300px;
    }
    #logo{
        width: 70%;
        height: auto;
    }
    h1{
        padding: auto 6px;
    }
}
