@charset "UTF-8";
/*header*/
h1{
    margin: 0;
    padding: 10px;
}
/*header*/
/*ボタン外側*/
.openbtn{
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 9999;
    background: lightpink;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
}
/*ボタン内側*/
.openbtn span{
    display: inline-block;
    /*アニメーション*/
    transition: all .4s;
    position: absolute;
}
.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
    background: white;
    width: 62%;
    left: 10px;
}
.openbtn span:nth-of-type(1){
    top: 13px;
}
.openbtn span:nth-of-type(2){
    top: 19px;
    left: 11px;
    font-size: 0.6rem;
    text-transform: uppercase;
    color: black;
}
.openbtn span:nth-of-type(3) {
    top: 36px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.mainblur{
    filter: blur(5px);
}
/*ナビゲーション*/
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overfow-scrolling: touch;
}
#g-nav ul{
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
nav ul{
    list-style: none;
    text-align: center;
}
nav ul li a{
    display: inline-block;
    text-decoration: none;
    color: black;
    padding: 10px;
}
#g-nav{
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: lightpink;
    transition: all 0.6s;
}
#g-nav.panelactive{
    right: 0;
    opacity: 1;
    z-index: 999;
}
.gnavi li{
    color: rgba(255,255,255,0);
}
.gnavi li a{
    position: relative;
}
.gnavi li.current a,
.gnavi li a:hover{
    color: lightskyblue;
}
.gnavi li a::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: yellow;
    transition: all .3s;
    transform: scale(0,1);
    transform-origin: center top;
}
.gnavi li.current a::after,
.gnavi li a:hover::after{
    transform: scale(1,1);
}
/*header*/
header{
    width: 100%;
    height: 90px;
    background-color: blanchedalmond;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    border-bottom: chocolate 5px solid;
}
header img{
    width: 15%;
    height: auto;
}
@media(max-width: 750px){
    header img{
        width: 38%;
        height: auto;
    }    
}
/*アコーディオンパネル*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 600px;
    margin: 0 auto;
}
@media(max-width :750px){
    .accordion-area{
        list-style: none;
        width: 96%;
        max-width: 300px;
        margin: 0 auto;
    }    
}
.accordion-area li{
    margin: 10px 0;
}
.accordion-area section{
    border: 2px solid chocolate;
    background: white;
}
/*アコーディオンタイトル*/
.title{
    position: relative;
    background: white;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    font-family: serif;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}
.title::before,
.title::after{
    position: absolute;
    content: '';
    width: 30px;
    height: 2px;
    background-color: chocolate;
}
.title::before{
    top: 48%;
    left: 15px;
    transform: rotate(0deg);
}
.title::after{
    top: 48%;
    left: 15px;
    transform: rotate(90deg);
}
.title.close::before{
    transform: rotate(45deg);
}
.title.close::after{
    transform: rotate(-45deg);
}
.box{
    display: none;
    background: white;
    margin: 0 3% 3% 3%;
    padding: 3%;
}
.box p{
    font-family: serif;
    border-bottom: 1px solid blueviolet;
}

/*situmon*/
.situmon{
    padding-top: 30px;
    padding-left: 0px;
    padding-bottom: 80px;
}

.situmon h1{
    font-family: serif;
    text-align: center;
    background: linear-gradient(90deg,rgb(236, 198, 139), white);
}
.situmon h2{
    font-family: serif;
    font-weight: bold;
    font-size: x-large;
}
@media(max-width :750px){
    .situmon h2{
        font-family: serif;
        font-weight: bold;
        font-size: medium;
    }  
}
.situmon p{
    font-family: serif;
    font-weight: bold;
    font-size: x-large;
}
@media(max-width :750px){
    .situmon p{
        font-family: serif;
        font-weight: bold;
        font-size: medium;
    }    
}
/*toiawase*/
.toiawase{
    background: bisque;
}
.toiawase h2{
    font-family: serif;
}
.toiawase h3{
    font-family: serif;
}
.toiawase p{
    font-size: 20px;
    font-family: serif;
    font-weight: bold;
}
.toiawase p a{
    color: black;
}
.toiawase p a:hover{
    color: chocolate;
}
/*footer*/
footer{
    clear: left; 
    background-color: chocolate;
    padding: 40px;
}
footer ul{
    list-style-type: none;
    margin: 0 0 5px;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

footer ul li{
    margin: 0 0 0 0px;
}
footer ul li a,
footer ul li a:link,
footer ul li a visited{
    text-decoration: none;
    font-size: 13px;
    font-family: serif;
    color: black;
    background: chocolate;
}
@media (max-width: 480px){
    footer{
        clear: left; 
        background-color: chocolate;
        padding: 20px;
    }
    footer ul{
        list-style-type: none;
        margin: 0 0 5px;
        padding: 0;
        display: flex;
        justify-content: flex-end;
    }
    
    footer ul li{
        margin: 0 0 0 10px;
    }
    footer ul li a,
    footer ul li a:link,
    footer ul li a visited{
        text-decoration: none;
        font-size: 3px;
        font-family: serif;
        color: black;
        background: chocolate;
    }
    
    footer ul li a:hover{
        color: white;
        border-bottom: 1px solid white;
    }
    footer p,a{
        color: black;
        font-family: serif;
        list-style: none;
    }
    footer a:hover{
        color: burlywood;
    }
}
footer ul li a:hover{
    color: white;
    border-bottom: 1px solid white;
}
footer p,a{
    color: black;
    font-family: serif;
    list-style: none;
    text-align: right;
}