@charset "utf-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');

/* COMMON
---------------------------------------------------------------------------- */	

body{
    font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
    color:#333;
    background-color: #FDFAF6;
}
.mac body{
    font-size: 15px;
}
a{
    text-decoration:underline; 
    color: #333;
    outline: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}
a:hover{ text-decoration: none; }

@media screen and (max-width:768px){
    body{
        font-size: 3.75vw;
        overflow-x:hidden;
    }
}

/* header
---------------------------------------------------------------------------- */
.header{
    position: fixed;
    top:5.208333vw;
    left: 5.208333vw;
    width: calc(100% - 10.416667vw);
    height: 6.25vw;
    background-color: #fff;
    z-index: 999;
    border-radius: 1.041667vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all  0.5s ease;
}
.header.is-fixed{
    top:0;
    left: 0;
    width: 100%;
    border-radius: 0;
    height: 5.208333vw;
}
@media screen and (max-width:768px){
    .header{
        top:5vw;
        left: 5vw;
        width: calc(100% - 10vw);
        height: 15vw;
        border-radius: 2.5vw;
    }
    .header.is-fixed{
        height: 15vw;
    }
}

/* logo */
.header-logo{
    
}
.header-logo a{
    display: flex;
    padding: 1.302083vw;
    text-decoration: none;
}
.header-logo a img{
    height: 3.645833vw;
    width: auto;
    margin-right: 1.041667vw;
}
.header-logo a p{
    font-weight: bold;
    font-size: 1.302083vw;
    
}
.header-logo a p span{
    font-size: 0.78125vw;
    font-weight: normal;
    display: block;
}

@media screen and (max-width:768px){
    .header-logo a{
        padding: 2.5vw;
    }
    .header-logo a img{
        height: 10vw;
        margin-right: 2.5vw;
    }
    .header-logo a p{
        font-size: 4vw;

    }
    .header-logo a p span{
        font-size: 2.75vw;
    }
}

/* menu */
.header-menu{
    padding-right: 0.520833vw;
}
.header-menu ul{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.header-menu ul > li{
    position: relative;
}
.header-menu ul > li > a,
.header-menu ul > li > button{
    padding:2.34375vw 1.5625vw;
    text-align: center;
    font-size: 1.041667vw;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    display: block;
    text-decoration: none;
    white-space: nowrap;
}
.header-menu ul > li > a:hover{
    color: #89C330;
}
.header-menu ul > li > button{
    border: none;
    background-color: transparent;
    background-image: url("../images/header_arr.svg");
    background-repeat: no-repeat;
    background-position: center bottom 1.041667vw;
}

@media screen and (max-width:768px){
    .header-menu{
        position: fixed;
        top: 25vw;
        right:-100vw;
        width: 90vw;
        height: 80vh;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all  0.5s ease;
        padding: 0;
        background-color: #89C330;
        border-radius: 2.5vw;
    }
    .header-menu.is-open{
        right: 5vw;
    }
    .header.is-fixed .header-menu{
        top:20vw;
        height: 85vh;
    }
    .header-menu ul{
        display: block;
        height: 75vh;
        overflow-x: scroll;
    }
    .header-menu ul > li{
        border-bottom: 1px solid #fff;
    }
    .header-menu ul > li:last-child{
        border-bottom: none;
    }
    .header-menu ul > li > a,
    .header-menu ul > li > button{
        color: #fff;
        width:100%;
        display: block;
        text-align: left;
        padding:2.5vw 5vw;
        font-size: 4.5vw;
    }
    .header-menu ul > li > button{
        background-image: url("../images/header_arr_sp_open.svg");
        background-position: center right 3.75vw;
    }
    .header-menu ul > li > button.is-open{
        background-image: url("../images/header_arr_sp_close.svg");
    }
}

/* menu-drop */
.header-menu-drop{
    display: block;
    position: absolute;
    top:6.25vw;
    background-color: #89C330;
    width: 15.625vw;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    display: none;
}
.header.is-fixed .header-menu-drop{
    top: 5.729167vw;
    left:calc( (100% - 15.625vw) / 2 );
}

.header-menu-drop ol li{
    border-bottom: 1px solid #fff;
}
.header-menu-drop ol li:last-child{
    border-bottom: none;
}
.header-menu-drop ol li a{
    display: block;
    color: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size:0.9375vw;
    text-decoration: none;
    padding: 1.041667vw;
}
.header-menu-drop ol li a:hover{
    background-color: #B2E95F;
}

@media screen and (min-width:769px){
    .header-menu ul > li:hover .header-menu-drop{
        display: block;
    }
}

@media screen and (max-width:768px){
    .header-menu-drop{
        display: block;
        position: relative;
        top:0;
        background-color: #a2da4f;
        width: 100%;
        box-shadow: none;
        display: none;
    }
    .header-menu-drop.is-open{
        display: block;
    }
    .header.is-fixed .header-menu-drop{
        top: 0;
        left:0;
    }
    .header-menu-drop ol li a{
        text-decoration: none;
        padding:2.5vw 5vw;
        font-size: 4.5vw;
    }
    .header-menu-drop ol li a:hover{
        background-color: #B2E95F;
    }
    
    /* sp */
    .header-sp{
        position: relative;
        border: none;
        background-color: transparent;
        width:15vw;
        height: 15vw;
    }
    .header-sp span{
        width: 6vw;
        height: 0.5vw;
        background-color: #89C330;
        display: inline-block;
        position: absolute;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all  0.5s ease;
        left:4vw;
    }
    .header-sp span:nth-child(1){
        top: 4.75vw;
    }
    .header-sp span:nth-child(2){
        top: 7.25vw;
        opacity: 1;
    }
    .header-sp span:nth-child(3){
        top: 9.75vw;
    }
    
    .header-sp.is-open span:nth-child(1){
        top: 6.75vw;
        transform: rotate(45deg);
    }
    .header-sp.is-open span:nth-child(2){
        opacity:0;
        left:8vw;
    }
    .header-sp.is-open span:nth-child(3){
        top: 6.75vw;
        transform: rotate(-45deg);
    }
    
}

/* sidebar
---------------------------------------------------------------------------- */
.sidebar{
   position: fixed;
    right: 0;
    top: 13.020833vw;
    z-index:888;
}
.sidebar ul li{
    margin-bottom: 20px;
}
.sidebar ul li a{
    writing-mode: vertical-rl;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: inline-block;
    background-color: #89C330;
    color: #fff;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    text-decoration: none;
    width: 4.166667vw;
    line-height: 4.166667vw;
    border-radius: 1.041667vw 0 0 1.041667vw;
    font-size: 1.041667vw;
    padding: 1.041667vw 0 3.90625vw;
    letter-spacing: 0.1em;
    background-image: url("../images/side_arr.svg");
    background-repeat: no-repeat;
    background-position: center bottom 1.041667vw;
    background-size: 1.822917vw auto;
}
.sidebar ul li a img{
    width: 2.083333vw;
    height: auto;
    margin-bottom: 0.520833vw;
    vertical-align: middle;
}
.sidebar ul li a:hover{
    background-color: #B2E95F;
}
@media screen and (max-width:768px){
    .sidebar{
        right: -25vw;
        top: auto;
        bottom: 5vw;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all  0.5s ease;
    }
    .sidebar.is-fixed{
        right: 5vw;
    }
    .sidebar ul li{
        margin-bottom: 2.5vw;
    }
    .sidebar ul li a{
        writing-mode:horizontal-tb;
        width: 20vw;
        height: 20vw;
        line-height: 4.166667vw;
        border-radius: 10vw;
        font-size: 2.5vw;
        padding: 4.5vw 0;
        background-image:none;
        box-shadow: 0 0 5px rgba(0,0,0,0.2);
    }
    .sidebar ul li a img{
        width: 7.5vw;
        margin: 0 auto 2.5vw;
        display: block;
        
    }
    .sidebar ul li a:hover{
        background-color: #B2E95F;
    }
    .sidebar ul li:nth-child(2){
        margin-bottom: 0;
    }
    .sidebar ul li:nth-child(2) a{
        padding-top: 3.8vw;
    }
    .sidebar ul li:nth-child(2) a img{
        margin-bottom: 0;
    }
}

/* wrap
---------------------------------------------------------------------------- */
.wrap{
    
}
@media screen and (max-width:768px){
    .wrap{
        
    }
}

/* topicPath
---------------------------------------------------------------------------- */
.topicpath{
    
}
.topicpath ol{

}
.topicpath ol li{
    display:inline-block;
    margin-right:10px;
}
.topicpath ol li::after{
    content:"/";
    display: inline-block;
    margin-left: 15px;
}
.topicpath ol li:last-child::after{
    display: none;
}
@media screen and (max-width:768px){
    .topicpath{
        display:none;
    }
}

/* main
---------------------------------------------------------------------------- */
.main{
   
}
@media screen and (max-width:768px){
    .main{
        
    }
}

/* footer
---------------------------------------------------------------------------- */
.footer{
    margin-top: 100px;
}
@media screen and (max-width:768px){
    .footer{
        margin-top: 20vw;
    }
}

/* contact */
.footer-contact{
    background-image: url("../images/contact_bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 100px 0;
}
.footer-contact ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-contact ul li{
    width: calc(50% - 25px);
    margin-right: 50px;
}
.footer-contact ul li:last-child{
    margin-right: 0;
}
.footer-contact ul li a{
    background-color: #89C330;
    color: #fff;
    text-decoration: none;
    display: block;
    border-radius: 20px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
    height: 100px;
    line-height: 100px;
    padding: 0 25px;
    background-image: url("../images/arr_04.svg");
    background-repeat: no-repeat;
    background-position: center right 20px;
    background-size: 50px auto;
}
.footer-contact ul li a:hover{
    box-shadow: none;
    background-color: #B2E95F;
    background-position: center right 10px;
}
.footer-contact ul li a img{
    vertical-align: middle;
    margin-right: 25px;
}
.footer-contact ul li:nth-child(1){
    font-size: 30px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 500;
}
.footer-contact ul li:nth-child(2){
    font-size: 35px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
}
@media screen and (max-width:768px){
    .footer-contact{
        padding: 12.5vw 0;
    }
    .footer-contact ul{
        display: block;
    }
    .footer-contact ul li{
        width: 100%;
        margin-right:0;
        margin-bottom: 5vw;
    }
    .footer-contact ul li:last-child{
        margin-right: 0;
        margin-bottom: 0;
    }
    .footer-contact ul li a{
        border-radius: 2.5vw;
        height: 20vw;
        line-height: 20vw;
        padding: 0 5vw;
        background-size: 10vw auto;
    }
    .footer-contact ul li a img{
        vertical-align: middle;
        margin-right: 5vw;
        width: 10vw;
        height: auto;
    }
    .footer-contact ul li:nth-child(1){
        font-size: 6.25vw;
    }
    .footer-contact ul li:nth-child(2){
        font-size: 6.25vw;
    }
}

/* address */
.footer-address{
    padding-top: 80px;
}
.footer-address .inner{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #89C330;
    padding-bottom: 30px;
}
.footer-address-logo{
    width: calc(50% - 25px);
}
.footer-address-logo figure{
    display: flex;
}
.footer-address-logo figure img{
    width: 60px;
    height: auto;
    margin-right: 20px;
}
.footer-address-logo figure figcaption{
    font-size: 25px;
    font-weight: bold;
}
.footer-address-logo figure figcaption span{
    font-size: 15px;
    font-weight: normal;
    display: block;
}

.footer-address-main{
    width: calc(50% - 25px);
}
.footer-address-main dl{
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}
.footer-address-main dl dt{
    width:40px;
}
.footer-address-main dl dd{
    font-size: 20px;
}
.footer-address-main dl dd span{
    font-size: 14px;
    display: block;
}
@media screen and (max-width:768px){
    .footer-address{
        padding-top: 20vw;
    }
    .footer-address .inner{
        display: block;
        padding-bottom: 12.5vw;
    }
    .footer-address-logo{
        width: 100%;
        margin-bottom: 7.5vw;
    }
    .footer-address-logo figure img{
        width: 15vw;
        margin-right: 5vw;
    }
    .footer-address-logo figure figcaption{
        font-size: 6.25vw;
    }
    .footer-address-logo figure figcaption span{
        font-size: 3.75vw;
    }

    .footer-address-main{
        width: 100%;
    }
    .footer-address-main dl{
        margin-bottom: 5vw;
    }
    .footer-address-main dl dt{
        width:10vw;
    }
    .footer-address-main dl dd{
        font-size: 4vw;
    }
    .footer-address-main dl dd span{
        font-size: 3.25vw;
    }
}

/* sitemap */
.footer-sitemap{
    padding: 50px 0;
}
.footer-sitemap .inner{
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
}
.footer-sitemap ul{
    margin-right: 100px;
}
.footer-sitemap ul li{
    margin-bottom: 15px;
    font-size: 16px;
}
.footer-sitemap ul li h2{
    font-size: 18px;
    font-weight: bold;
}
.footer-sitemap ul li a{
    text-decoration: none;
}
.footer-sitemap ul li a:hover{
    text-decoration: underline;
}

@media screen and (max-width:768px){
    .footer-sitemap{
        padding: 12.5vw 0;
    }
    .footer-sitemap .inner{
        display: block;
    }
    .footer-sitemap ul{
        margin-right: 0;
    }
    .footer-sitemap ul li{
        margin-bottom: 5vw;
        font-size: 4vw;
    }
    .footer-sitemap ul li h2{
        font-size: 4.5vw;
    }
}

.footer-copy{
    text-align: center;
    font-size: 15px;
    padding-bottom: 100px;
}
@media screen and (max-width:768px){
    .footer-copy{
        font-size: 3.75vw;
        padding-bottom: 25vw;
    }
}