@charset 'UTF-8';

body {
    font-family: 'NotoSansCJKjp', 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 18px;
    line-height: 2;
    margin: 0 auto;
    color: #262626;
}

h2,h3,h4,p,li,th,td,dd,dt{font-family: 'NotoSansCJKjp', sans-serif;}


h2 {
    font-size: 180%;
    font-weight: 500;
}
h3 {
    font-size: 140%;
    font-weight: 500;
}
h4 {
    font-size: 140%;
    font-weight: 500;
}

p {
    font-size: 18px;
    color: #262626;
    font-family: 'NotoSansCJKjp', sans-serif;
    letter-spacing: .12em;
    line-height: 1.8;
}
a {
    color: #262626;
    text-decoration: none;}
a:hover {color: #262626;}
ul {list-style: none;}

.c {text-align: center;}
.r {text-align: right;}

.pc {display: block;}
.br-sp {display: none;}
.br-tab {display: none;}
.br-pc {display: block;}

/*------------------------ header ----------------------------*/
header {
    z-index: 100;
    width: 100%;
    position: fixed;
    top: 0;
    background-color: rgb(255,255,255,0.8)!important;
}
.inner {
    width: 100%;
    max-width: 1200px;
    height: 90px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    position: relative;
    justify-content: space-between;
}
nav {margin: 0 0 0 auto;}
header ul {
    display: flex;
    padding: 0;
    justify-content: space-between;
}
.nav-pc {
    padding: 0;
    margin: 0;
}
.nav-pc li {
    display: block;
    line-height: 60px;
    padding: 0 2.5em 0 0;
    font-weight: 500;
}
.nav-sp {display: none;}
.dropdwn li {
    font-size: 18px;
    color: #262626;
    font-weight: 500;
    cursor: grab;
    letter-spacing: 1.3px;
}
.dropdwn>li {display: inline;}
.dropdwn li a {color: #262626;}
.dropdwn-menu {
    width: 100%;
    display: none;
    position: absolute;
    padding: 0;
}
.dropdwn-menu li {
    width: 20%;
    line-height: 2.4em;
    padding: 0 1em;
    background-color: #fff;
    border-bottom: 1px solid #262626;
}
.dropdwn-menu li:last-child {border-bottom: none;}
.dropdwn-menu li a {
    font-size: 15px;
    display: block;
    color: #262626;
}

.down {
    display: inline-block;
    vertical-align: middle;
    color: #262626;
    line-height: 1;
    width: 0.8em;
    height: 0.8em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    margin-left: 9em;
}










/* ------------------------- footer ------------------------- */
.footer-content {
    position: absolute;
    width: 100%;
    padding: 3em 0 0;
    margin: 8em auto 0;
    background: #f0f0f0;
}

.footer-content-box {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 3em;
    padding: 0;
}

.f-ttl {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

.footer-menu {
    display: flex;
    width: 100%;
    flex: 1;
}
.footer-menu-box {
    width: 100%;
    flex: 1;
}
.footer-menu ul {
    list-style: none;
    margin: 0.5em auto 0;
    padding: 0;
}
.footer-menu ul li {
    font-size: 14px;
}
.footer-menu ul li::before {
    content: 'ー';
    padding-right: 0.3em;
}



.footer-info {
    width: 100%;
    flex: 1;
}
.footer-info-box {margin-bottom: 1em;}
.footer-info ul {
    list-style: none;
    margin: 0 auto;
    padding: 0 0 0 0.5em;
}
.footer-info ul li {
    font-size: 13px;
    padding: 0.1em 0;
}

.footer-info ul li span {
    background: #000;
    padding: 0.2em 0.3em;
    margin-left: 0.5em;
}
.footer-info ul li span a {
    font-size: 10px;
    color: #fff;
}

.footer-content p.copy {
    border-top: 1px solid #ddd;
    padding-top: 0.5em;
    text-align: center;
}



    
/*------------------------ ここからTab ----------------------------*/
@media screen and (max-width: 1020px) {
    h2 {font-size: 140%;}
    h3 {font-size: 120%;}
    h4 {font-size: 120%;}
    p,th,td,a,li {font-size: 16px;}
    .br-sp {display: none;}
    .br-tab {display: block;}
    .br-pc {display: none;}
    
    
    
    /*------------------------ NAVI ----------------------------*/
    .nav-pc {display: none;}
    /*ハンバーガーメニュー*/
    #hamburger {
        background-color: transparent;
        position: relative;
        cursor: pointer;
        margin: 0 1em 0 0;
        height: 60px;
        width: 60px;
        z-index: 1;
    }
    .icon span {
        position: absolute;
        left: 15px;
        width: 30px;
        height: 2px;
        background-color:#333;
        border-radius: 8px;
        transition: ease 0.75s;
    }
    .icon span:nth-of-type(1) {top: 16px;}
    .icon span:nth-of-type(2) {top: 28px;}
    .icon span:nth-of-type(3) {bottom: 16px;}
    .close span:nth-of-type(1) {
        transform: rotate(45deg);
        top: 28px;
    }
    .close span:nth-of-type(2) {opacity: 0;}
    .close span:nth-of-type(3) {
        transform: rotate(-45deg);
        top: 28px;
    }
    .nav-sp {
        top: 0;
        right: 0;
        position: absolute;
        z-index: 0;
        width: 70%;
        background-color:#fff;
        padding-bottom: 1em;
    }
    .nav-sp ul {
        flex-direction: column;
        text-align: left;
        margin-top: 6em;
    }
    .nav-sp ul li {
        line-height: 2.5;
    }
    .nav-sp a {
        text-align: center;
        color: #000;
    }

    .nav-sp ul li {
        text-align: left;
        line-height: 2.8;
        padding: 0.5em 1em;
    }
    .dropdwn li {
        font-size: 16px!important;
        border-bottom: 1px solid #262626;}
    .dropdwn-menu {
        position: inherit!important;
        margin: 0!important;
    }
    .dropdwn-menu li {
        display: flex;
        width: 100%!important;
        text-align: left;
        border-bottom: none!important;
    }
    .dropdwn-menu li a {font-size: 14px!important;}
    
    
    /* アコーディオン　*/
    .toggle {display: none;}
    .label {
        display: block;
        color: #262626;
    }
    .label::before{
        content:"";
        width: 6px;
        height: 6px;
        border-top: 2px solid #262626;
        border-right: 2px solid #262626;
        -webkit-transform: rotate(45deg);
        position: absolute;
        top:calc( 50% - 3px );
        right: 20px;
        transform: rotate(135deg);
    }
    .label,.content {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        transition: all 0.3s;
    }
    .content {
        height: 0;
        padding: 0!important;
        overflow: hidden;
    }
    .content ul {margin-top: 0!important;}
    .content ul li {
        border-bottom: none!important;
        line-height: 2.5;
    }
    .toggle:checked + .label + .content {
        height: auto;
        padding:20px ;
        transition: all .3s;
    }
    .toggle:checked + .label::before {
        transform: rotate(-45deg) !important;
    }
    
    
    
    
    header {top: 0em;}
    h1 {padding-left: 1em;}
    .inner {}
    
    
    .mv {
        max-width: 1000px;
        object-fit: cover;
    }
    /* ------------------------- footer ------------------------- */
    .footer-menu ul li a {font-size: 14px;}

    
}



/*------------------------ ここからsp ----------------------------*/
@media screen and (max-width: 540px) {
    
    p,yl,li,dt,dd,th,td,a {font-size: 14px;}
    h2 {
        font-size: 130%;line-height: 1.8;
    }
    h3,h4 {
        font-size: 110%;
        line-height: 1.8;
        margin-bottom: 0;
    }
    
    .pc {display: none;}
    .br-sp {display: block;}
    .br-tab {display: none;}
    .br-pc {display: none;}
    
    .inner {height: 70px;}
    h1 {margin: 0;
        padding: 0;
    }
    h1 a img {padding-top: 12px;}
    /*ハンバーガーメニュー*/
    #hamburger {margin: 0;}
    .nav-sp {width: 70%;}
    .nav-sp ul {margin-top: 5em;}
    .nav-sp ul li {
        text-align: left;
        line-height: 2.8;
        padding: 0.5em 0 0.5em 1em;
    }
    .dropdwn li {
        font-size: 14px!important;
        border-bottom: 1px solid #262626;}
    .dropdwn-menu {
        position: inherit!important;
        margin: 0!important;
    }
    .dropdwn-menu li {
        display: flex;
        width: 100%!important;
        text-align: left;
        border-bottom: none!important;
    }
    .dropdwn-menu li a {font-size: 14px!important;}
    
    .accordion ul li {padding: 0 0 0 1em;}
    
    
    
    /* ------------------------- footer ------------------------- */
    .footer-content {margin-top: 3em;}
    .footer-content-box {
        width: auto;
        display: block;
        padding: 0 1em 0;
    }
    .f-ttl {font-size: 14px;}
    .footer-menu ul {margin: 0.1em auto 0;}
    .footer-menu ul li {padding: 0.2em 0;}
    .footer-info {
        margin-top: 1.5em;
        border-top: 1px solid #ccc;
        padding-top: 1em;
    }
    .footer-info-box ul {padding: 0;}
    .footer-info ul li {
        font-size: 12px;
        padding: 0em 0;
    }

        
    
    
    
    
}
