@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'SawarabiGothic';
    src: url(../font/SawarabiGothic/SawarabiGothic-Regular.ttf);
}

@font-face {
    font-family: 'ZenKakuGothicAntique';
    src: url(../font/ZenKakuGothicAntique/ZenKakuGothicAntique-Regular.ttf);
}

body {
    font-family: 'SawarabiGothic';
    font-size: 2.5vw;
    color: #4c4c4c;
}

.header-flex {
    display: flex;
}

/*header*/
.header-flex {
    position: relative;
}

header{
    position: absolute;
    width: 100%;
    z-index: 2000;
}

header h1{
    width: 30vw;
    margin: 1% 0 0 1%;
}

header h1 img{
    width: 100%;
}

.hunbarg {
    position: absolute;
    position: fixed;
    top:0vw;
    right: 1vw;
    width: 8vw;
    height: 8vw;
    z-index: 200;
}

.header-line{
    position: absolute;
    width: 7.5vw;
    height: 6.8vw;
    top: 8vw;
    right: 0;
    border-radius: 50%;
    background: rgb(62,106,156);
    background: linear-gradient(270deg, rgba(62,106,156,1) 0%, rgba(41,76,116,1) 100%);
    padding-top: 0.5vw;
}

.header-line .line {
    display: block;
    width: 4vw;
    height: 0.5vw;
    border-radius: 2vw;
    background-color: white;
    margin: 1vw auto;
}


.hunbarg nav {
    position: absolute;
    top: 16vw;
    right: 0;
    width: 44vw;
    padding: 3% 0;
    
}

.hunbarg:hover nav ul{
    height: 60vw;
    opacity: 1;
}
.hunbarg nav ul {
    height: 0vw;
    background: rgb(62,106,156);
    background: linear-gradient(270deg, rgba(62,106,156,1) 0%, rgba(41,76,116,1) 100%);
    overflow: hidden;
    opacity: 0;
}

.hunbarg nav ul li {
    list-style: none;
    text-align: center;
    line-height: 4;
}

.hunbarg nav ul li a{
    display: block;
    text-decoration: none;
    color: white;
}


/*お問い合わせbutton*/

.header-flex header + p {
    position: relative;
    position: fixed;
    right: 1.5%;
    font-size: 2.5vw;
    width: 10em;
    height: 7vw;
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 2.9;
    background-color: #294C74;
    border-radius: 0 0 1.5vw 1.5vw; 
    z-index: 3000;   
}

.header-flex header + p a {
    display: block;
    color: white;
    text-decoration: none;
}

/*main*/
main {
    background: rgb(253,236,219);
    background: linear-gradient(265deg, rgba(253,236,219,1) 0%, rgba(254,245,236,0.6096813725490196) 48%, rgba(255,255,255,0) 100%);
    padding-bottom: 5%;
}

main h2 {
    position: relative;
    color: #4c4c4c;
    font-size: 1.6vw;
    line-height: 2.0;
    font-weight: 100;
    margin-left: 7vw;
    padding-top: 10%;
}

main h2::before {
    content: "";
    display: block;
    width: 1.5vw;
    height: 2.0vw;
    top: 11vw;
    left: -3vw;
    border-top: 0.2vw solid #F17633;
    position: absolute;
}

main section{
    width: 80%;
    margin: 0 auto;
}

main h3 {
    color: #4c4c4c;
    font-size: 1.8vw;
    line-height: 2.0;
    letter-spacing: 0.5em;
    font-weight: 100;
    position: relative;
    margin-top: 5vw;
    margin-bottom: 2vw;

}

main h3::before {
    content: "";
    display: block;
    border-right: 0.4vw solid #F17633;
    width: 1.5vw;
    height: 2.0vw;
    bottom: 0.5vw;
    left: -3vw;
    position: absolute;
}

/*目的*/
main section:nth-of-type(2) p {
    text-indent: 1em;
    line-height: 1.7;
}

main section:nth-of-type(2) p:nth-of-type(1) {
    margin-bottom: 0.5vw;
}

/*活動内容*/
main section:nth-of-type(3) ul {
    margin-left: 2vw;
}

main section:nth-of-type(3) ul li {
    list-style-position: outside;
    line-height: 1.8;
}

/*概要*/
main section:nth-of-type(4) {
    position: relative;
    z-index: 0;
}

main section:nth-of-type(1)::before{
    content: "";
    width: 50vw;
    height: 50vw;
    top: 40vw;
    right: 20vw;
    background-image: url(../images/orenge-rogo-s.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: absolute;
    opacity: 0.1;
    z-index: -1000;
}


main section:nth-of-type(4) table {
    font-size: 1vw;
    line-height: 3.0;
    background-color: white;
}

main section:nth-of-type(4) table,th,td {
    border: 0.15vw solid #c7c4c0;
    border-collapse: collapse;
}

main section:nth-of-type(4) table tr td {
    border-left: none;
    border-right: none;
    padding-left: 0.5em;
}

main section:nth-of-type(4) table tr td address{
    font-style: normal;
}

main section:nth-of-type(4) table tr td span{
    font-size: 1.2vw;
}

/*会則*/
main section:nth-of-type(5) p {
    white-space: pre-wrap;
    padding-bottom: 10%;
    margin-right: auto;
    background-color: white;
    width: 100%;
    height: 30vw;
    overflow: scroll;
    font-size: 1.2vw;

}





/*footer*/
footer {
    background-color: #294C74;
}

.footer-flex {
    display: flex;
    margin: 0 auto;
}

.footer-flex div {
    width: 8%;
    margin-left: 20%;
    margin-top: 3%;
}

.footer-flex div img {
    width: 100%;
}

.footer-flex p {
    color: #F17633;
    font-size: 3vw;
    font-weight: bold;
    margin-left: 2%;
    margin-top: 3%;
}

footer div p span {
    font-size: 1.8vw;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.footer-box div:nth-of-type(2) {
    display: flex;
    width: 80%;
    margin: 0 auto;
}

.footer-box div:nth-of-type(2) ul {
    margin: 3% auto;

}

.footer-box div:nth-of-type(2) ul li {
    list-style: none;
    position: relative;
}
.footer-box div:nth-of-type(2) ul li::before{
    content: "";
    width: 0.8vw;
    height: 0.8vw;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
    background-color: #F17633;
    bottom: 0.5vw;
    left: -1.5vw;
    position: absolute;
}

.footer-box div:nth-of-type(2) ul li a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 2vw;
}
.footer-box div:nth-of-type(2) ul li a:hover{
    color: #F17633;
}


/*コピーライト*/
footer div + p {
    color: white;
    text-align: center;
    line-height: 1.8;
    padding: 2% 0;
}




