@charset "utf-8";
/* CSS Document */
/* パンくずリスト */
.breadcrumb-003 {
    display: flex;
    gap: 0 20px;
    list-style: none;
    padding: 6px 0 6px 18px;
    border-radius: 3px;
    overflow: hidden;
    background-color: #ffffff;
    font-size: 100%;
}

.breadcrumb-003 li {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 20px;
    font-size: 100%;
}

.breadcrumb-003 li:not(:last-child)::before,
.breadcrumb-003 li:not(:last-child)::after{
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    content:'';
}

.breadcrumb-003 li:not(:last-child)::before{
right: 0;
border-left: 10px solid #c6cdd3;
margin-left: 0px;
}

.breadcrumb-003 li:not(:last-child)::after{
    right: 1px;
    border-left: 10px solid #ffffff;
}

.breadcrumb-003 a {
    color: #333333;
    text-decoration: none;
}
/* パンくずリスト ここまで*/
/* ナビゲーションメニュー */
.nav-menu {
    background-color: #920505; /* メニューの背景色 */
    color: #fff; /* メニューテキストの色 */
    font-size: 110%;
    width: 100%;
    margin-top: 0px;
    font-weight: 500;
}
.menu-list {
    display: flex;
    justify-content: center; /* メニューアイテムを中央揃えに */
}
.menu-item {
    border-left: 1px solid #fff; /* メニューアイテムの左ボーダー */
    position: relative;
    text-align: center;
	width: 160px;
}
.menu-item:last-child {
  border-right: 1px solid #fff; /* 最後のメニューアイテムの右ボーダー */
}

/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
    opacity: 1; /* 不透明度を最大に */
    transition: opacity .3s, visibility .3s; /* アニメーション設定 */
    visibility: visible; /* 下層メニューを表示 */
    width: 160px;
}

.menu-item a {
    align-items: center;
    color: #fff; /* メニューアイテム内のリンクテキストの色 */
    display: flex;
    height: 40px;
    justify-content: center;
    text-decoration: none; /* リンクの下線を非表示 */
    width: 160px;
    text-align: center;
	font-weight: 400;
    font-size: 105%;
}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
    background-color: #AC1A1A; /* ドロップダウンメニューの背景色 */
    left: 0;
    opacity: 0; /* 不透明度を最小に */
    position: absolute;
    top: 100%;
    transition: opacity .3s, visibility .3s; /* アニメーション設定 */
    visibility: hidden; /* 下層メニューを非表示 */
    width: max-content;
    z-index: 1;
    color: #FFFFFF; /* メニューテキストの色 */
    width: 160px;
}

#side-menu p a {
    font-size: 110%;
    color: #1B1616;
    font-weight: 600;
}
.drop-menu-list .drop-menu-item a {
	font-weight: 200;
    font-size: 95%;
}

/* -------------------- */
/* モニター幅840px以下  */
/* -------------------- */
@media only screen and (max-width:840px){

/* ナビゲーションメニュー */
.nav-menu {
   background-color: #920505; /* メニューの背景色 */
    color: #fff; /* メニューテキストの色 */
    font-size: 100%;
    width: 100%;
	font-weight: 400;
}

.menu-list .menu-item a {
    width: 100%;
    font-size: 95%;
}
.drop-menu-list {
	width: 100%;
}
	/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
    width: 100%;
}
	/* パンくずリスト ここから*/
.breadcrumb-003 {
    display: flex;
    gap: 0 20px;
    list-style: none;
    padding-top: 6px;
    padding-right: 0;
    padding-left: 10px;
    padding-bottom: 6px;
    border-radius: 3px;
    overflow: hidden;
    background-color: #ffffff;
    font-size: 100%;
}
.breadcrumb-003 li {
    display: flex;
    align-items: center;
    position: relative;
    padding-right: 10px;
    font-size: 95%;
}
	.drop-menu-list .drop-menu-item a {
	font-weight: 200;
    font-size: 95%;
}
	/* パンくずリスト ここまで*/

}
