@charset "UTF-8";
/* CSS Document */

/* ヘッダー */
header {
    background: rgba(255,255,255,0.9);
    width: 100%;
    height: 100px;
    box-shadow: 0px 6px 10px -6px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: ease .4s;
}

@media print{
    header {
    position: static;  
    }
}

.header__inner {
    padding: 0 1em;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
}


/* ヘッダーのロゴ部分 */
.header__title {
    width: 40%;
    transition: ease .4s;
}


@media screen and (max-width: 767px) {
    header {
    height: 60px;
    }
    
    .header__title {
    width: 60%;
    }
}

@media screen and (min-width: 1080px) {    
    .header__title {
    width: 450px;
    }
}

.header__title img {
    display: block;
    width: 100%;
    height: 100%;
}

/* ヘッダーのナビ部分 */

.header__nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    transform: translateX(100%);
    background: #fff;
}


@media screen and (min-width: 768px) {
    .header__nav {
        position: static;
        transform: initial;
        background-color: transparent;
        height: 100px;
        width: auto;
    }
}

.nav-items {
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 30%);
    padding: 0;
}



@media screen and (min-width: 768px) {
    .nav-items {
    position: static;
    transform: translate(0, 0);
    margin-top: 30px;
    }
    
    .nav__items {
    display: flex;
    height: initial;
    }
}

/* ナビのリンク */
.nav-items__item a {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin: 1em 0;
}

@media screen and (min-width: 768px) {
    .nav-items__item a {
    text-align: right;
    margin-bottom: 0;
    padding: 0 1em;
    }
    
    .nav-items__item a:hover{
    opacity: 0.6;
    text-decoration: none;
    }
}

@media screen and (min-width:901px) and (max-width:1080px) {
    .nav-items__item a {
    font-size: 1.6rem;
    transition: ease .4s;
    }
}

@media screen and (min-width:768px) and (max-width:900px) {
    .nav-items__item a {
    font-size: 1.4rem;
    transition: ease .4s;
    }
}

@media screen and (max-width: 767px) {
    .nav-items__item{
    display: flex;
    width: 100%;
    padding: 0 2em;
    border-top: dotted 1px #CCC;
    }
    
    .nav-items__item:last-child{
    border-bottom: dotted 1px #CCC;
    }
    
    .nav-items__item a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    }
}
    
/* ハンバーガーメニュー */

.header__hamburger {
    width: 40px;
    height: 100%;
}

.hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
}

@media screen and (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

/* ハンバーガーメニューの線 */
.hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    margin: 8px 0;
}

.hamburger span:nth-child(3) {
    top: 0;
}


/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
    transform: translateX(0);
    transition: ease .4s;
}

.hamburger.active span:nth-child(1) {
    top: 5px;
    transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;

}

.hamburger.active span:nth-child(3) {
    top: -13px;
    transform: rotate(-45deg);
}

/*縮小後のヘッダー*/
@media screen and (min-width: 768px) {
    .small-animation{
    height: 60px;
    transition: ease .4s;
    }
    
    .small-animation .header__title {
    width: 30%;
    transition: ease .4s;
    }

    .small-animation .header__nav {
    height: 60px;
    }
    
    .small-animation .nav-items {
    margin-top: 10px;
    }

    .small-animation .nav-items__item a {
    font-size: 1.4rem;
    }
}

@media screen and (min-width: 1080px) {    
    .small-animation .header__title {
    width: 350px;
    }
}

/*パンくずリスト*/
.breadlink{
    background: #E8E8E8;
    padding: 0.5em 1em;
}
.breadlink > ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    font-size: 1.2rem;
}

.breadlink > ol a{
    font-size: 1.2rem;
    vertical-align: 3px;
}

.breadlink > ol li:not(:last-of-type)::after {
    font-family: "Material Icons";
    content: "\e409";
    margin: 0 0.6em; /* 記号の左右の余白 */
    color: #333; /* 記号の色 */
    font-size: 16px;
}