/*
Zarigani Design Office Drawer Menu
*/

.drawer_menu a {
    color: inherit;
    text-decoration: none;
}

.drawer_menu a:visited {
    color: inherit;
}


/* PC用ナビゲーション */
.drawer_menu .drawer_nav_wrapper {
    transform: translate(0);
    width: 100%;
    height: 50px;/* PC用メニュー高さ */
    position: relative;
    top: auto;
    right: auto;
    z-index: 10000;
    background-color: #ffffff;/* PC用メニュー背景色 */
    border-bottom: 1px solid #CCCCCC;
   
}

.drawer_menu .drawer_nav {
    max-width: 1000px;/* コンテンツ幅に合わせる */
    padding: 0;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
   /* -webkit-justify-content: space-around;
    justify-content:space-around;*/
    list-style-type: none;
	width: 100%;
    justify-content: center;
}

.drawer_menu .drawer_nav li {
    font-size: 100%;
    margin: 0;
    padding: 0;
    height: 50px;/* PC用メニュー高さ */
    line-height: 50px;/* PC用メニュー高さ */
    background-color: #ffffff;/* PC用メニューボタン背景色 */
    text-align: center;
    list-style-type: none;
}

.drawer_menu .drawer_nav li a {
    color: #3a3a3a;/* PC用メニューボタン文字色 */
	display: block;
    padding-left: 20px;
    padding-right: 20px;
}


/* PC非表示 */

@media screen and (min-width:1001px) {
    .pc-hidden {
        display: none;
        text-align: center;
    }
}

@media screen and (min-width: 1001px) {
/* ドロップダウンメニュー2階層目 */
/* -------------------- */
/* -------------------------- */
ul.drawer_nav li {
/*width: 125px;*/			/* メニュー項目の横幅(125px) */
display: inline-block;	/* ★横並びに配置する */
list-style-type: none;	/* ★リストの先頭記号を消す */
position: relative;		/* ★サブメニュー表示の基準位置にする */
}
ul.drawer_nav a {
line-height: 50px;			/* メニュー項目のリンクの高さ(40px) */
text-align: center;			/* メインメニューの文字列の配置(中央寄せ) */
text-decoration: none;		/* メニュー項目の装飾(下線を消す) */
display: block;				/* ★項目内全域をリンク可能にする */
		}
ul.drawer_nav a:hover {
    color: #d10a1c;
 /*background-color: #eeeeee;*/	/* メニュー項目にマウスが載ったときの背景色 */
}
    
/* ふきだしbeforeで枠線の三角を表現 */
.drawer_menu .drawer_nav li > ul.second-level::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 20px;
  top: -13px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #cccccc;
  border-left: 15px solid transparent;
}

/* ふきだしbeforeで本体の三角を表現 */
.drawer_menu .drawer_nav li > ul.second-level::after{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 20px;
  top: -12px;
  border-right: 15px solid transparent;
  border-bottom: 15px solid #ffffff;
  border-left: 15px solid transparent;
}


    
    

/* ---------------------------------- */
/* ▼サブメニューがある場合に開く処理 */	/* ※サブメニューが2階層以上ある場合の記述 */
/* ---------------------------------- */
ul.drawer_nav li:hover > ul {
display: block;			/* ★マウスポインタが載っている項目の内部にあるリストを表示する */
		}

/* -------------------- */
/* ▼サブメニューの装飾 */
/* -------------------- */
ul.drawer_nav ul {
margin: 0px;			/* ★サブメニュー外側の余白(ゼロ) */
padding: 0px;			/* ★サブメニュー内側の余白(ゼロ) */
display: none;			/* ★標準では非表示にする */
position: absolute;		/* ★絶対配置にする */
border-radius: 10px;/* ドロップダウンメニュー角丸 */
border: 1px solid #cccccc;/* ドロップダウンメニュー枠 */
		}

/* ------------------------ */
/* ▼サブメニュー項目の装飾 */
/* ------------------------ */
ul.drawer_nav ul li {
border-bottom: 1px solid #cccccc;		/* 項目下側の枠線*/
width: 200px;/* ドロップダウンメニューボタン横幅 */
height: 50px;/* Pドロップダウンメニューボタン高さ */
}
    
 ul.drawer_nav ul li:last-child {
border-bottom: none;		/* 項目下側の枠線削除 */

}
ul.drawer_nav ul li a {
			text-align: left;		/* 文字列の配置(左寄せ) */
			padding-left: 5px;		/* 文字列前方の余白(5px) */
			font-weight: normal;	/* 太字にはしない */
		}
    
    ul.drawer_nav ul li a:hover {
/*background-color: #eeeeee;*/
	/* サブメニュー項目にマウスが載ったときの背景色(淡い黄色) */
    border-radius: 0;
        color: #d10a1c;
}
    
ul.drawer_nav ul li:first-child,
    ul.drawer_nav ul li:first-child a{
	border-top-left-radius: 10px;/* 左上角丸 */
	border-top-right-radius: 10px;/* 右上角丸 */
}
    
 ul.drawer_nav ul li:last-child,
     ul.drawer_nav ul li:last-child a{
	border-bottom-left-radius: 10px;/* 左下角丸 */
	border-bottom-right-radius: 10px;/* 右下角丸 */
    } }
    

/*++++++++++++++++++ Default Button Color ++++++++++++++++++*/

.drawer_menu .drawer_button {
    color: #fff;/* ハンバーガーメニュー文字色 */
    display: none;
}

.drawer_menu .drawer_button .drawer_bar {
    background-color: #fff;/* ハンバーガーメニュー三本線の色 */
}


/* 1000px以下 */

@media screen and (max-width: 1000px) {
    .drawer_menu .drawer_bg {
        width: 100%;
        height: 100%;
        position: fixed;
        z-index: 9999;
        background-color: rgba(51, 51, 51, 0.5);
        display: none;
        top: 0;
        left: 0;
    }
    .drawer_menu .drawer_button {
        display: block;
        background: none;
        border: none;
        padding: 0;
        width: 52px;
        letter-spacing: 0.1em;
        cursor: pointer;
        position: fixed;
        top: 10px;
        right: 20px;
        z-index: 10001;
        text-align: center;
        outline: none;
		background-color:#08294D;/* メニューボタン背景 */
		padding: 5px;
    }
	
	  .drawer_menu .drawer_button.active {
		background-color: #08294D;;/* メニューボタン×の時背景 */
    }
    .drawer_menu .drawer_button.active .drawer_bar {
        width: 49px;
    }
    .drawer_menu .drawer_button.active .drawer_bar1 {
        transform: rotate(30deg);
    }
    .drawer_menu .drawer_button.active .drawer_bar2 {
        opacity: 0;
    }
    .drawer_menu .drawer_button.active .drawer_bar3 {
        transform: rotate(-30deg);
    }
    .drawer_menu .drawer_button.active .drawer_menu_text {
        display: none;
    }
    .drawer_menu .drawer_button.active .drawer_close {
        display: block;
    }
    .drawer_menu .drawer_bar {
        display: block;
        height: 2px;
        margin: 10px 0;
        transition: all 0.2s;
        transform-origin: 0 0;
    }
    .drawer_menu .drawer_text {
        text-align: center;
        font-size: 10px;
    }
    .drawer_menu .drawer_close {
        letter-spacing: 0.08em;
        display: none;
    }
    .drawer_menu .drawer_menu_text {
        display: block;
    }
    .drawer_menu .drawer_nav_wrapper {
        width: 350px;
        height: 100%;
        transition: all 0.2s;
        transform: translate(350px);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 10000;
        background-color: #FFF;/* ドロワーメニュー内背景色 */
        overflow-x: hidden;
        overflow-y: auto;
        
    }
    .drawer_menu .drawer_nav {
        display: block;
        position: relative;
        margin-top: 40px;
        padding-left: 10px;
    }
    .drawer_menu .drawer_nav li {
        background-color: #fff;
        height: auto;
        line-height: 50px;/*  ドロワーメニューリスト項目高さ */
        position: relative;
        border-top: 1px solid #eee;
    }
    .drawer_menu .drawer_nav li a {
        background-color: #fff;/* ドロワーメニューリスト背景色 */
        color: #555;/* ドロワーメニューリスト文字色 */
        text-align: left;
    }
    
  .drawer_menu .drawer_nav > li > a {
       display: block;
    }
    
.drawer_menu .drawer_nav li a:hover {
        background-color:rgba(218,234,251,0.5);	/* メニュー項目にマウスが載ったときの背景色 */    }
    
    /* スマートフォン2階層目 */
    /*.drawer_menu .drawer_nav li:hover ul.second-level {
        display: block;
    }
    .drawer_menu .drawer_nav li ul.second-level {
        visibility: visible;
        position: relative;
        padding: 0;
        z-index: 1001;
    }
    .drawer_menu .drawer_nav li ul.second-level li {
        border-top: 1px solid #eee;
    }
*/
    
    .drawer_menu .drawer_nav li ul.second-level li a {
        padding-left: 1.5em;
    }
    
    .drawer_menu .drawer_nav_wrapper.open {
        transform: translate(0);
    }
    .drawer_menu.left .drawer_button {
        right: auto;
        left: 32px;
    }
    .drawer_menu.left .drawer_nav_wrapper {
        transform: translate(-350px);
        right: auto;
        left: 0;
    }
    .drawer_menu.left .drawer_nav_wrapper.open {
        transform: translate(0);
    }
    .pc-hidden {
        text-align: center;
        
        
    }
}
/*  ウィジェットタイトル */
.drawer-title {
    text-align: center;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #d10a1c;/* ドロワーメニュー内タイトルライン背景色 */
    color: #fff;
}
/* フォローボタン */


.pc-hidden .profile-icon {
    float: none;
}



/* 小さい画面用の設定-------------- */

@media (max-width:767px){
.menu__item {
 /* background: #5200b7;
  color: #fff;*/
  /*cursor: pointer;*/
  /*display: block;*/
  /*margin-bottom: 1px;*/
}
.menu__item__link {
  color: #fff;
  /*display: block;*/
  line-height: 50px;
  padding: 0 1rem;
  position: relative;
}
.menu__item__link:after {
 content: '\f067';
  display: block;
  font-family: "FontAwesome";
  line-height: 50px;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 0;
  width: 50px;
    font-weight: 700;
    color: #08294D;
}
.menu__item__link.on:after {
  content: '\f068';
    font-weight: 700;
}
 
.submenu {
  /*background: #fff;*/
  display: none;
    padding-left: 1em;
}
.submenu__item {
  /*border-bottom: 1px solid #5200b7;
  color: #222;
  padding: 1rem;*/
}
	}
/* -------------end------------- */

.sp_nav_tel_wrap{display: block;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.sp_nav_tel{
    color:  #d10a1c;
    font-size: 200%;
    font-weight: 700;
   line-height: 1.2;
}

.sp_nav_tel a{
    color:  #d10a1c;
   
}



.sp_nav_tel:before {
font-family: "FontAwesome";
content: "\f095";
font-size: 88%;
padding-right: 5px;
font-weight: 700;}

.sp_nav_tel_time{background-color: #d10a1c;
color: #ffffff;
font-size: 75%;
margin-bottom: 20px;
border-radius: 10px;}

.sp_menu_contact{display: flex;
justify-content: space-between;
    
}

.sp_menu_contact li{  width : 33.33333% ; /* 未対応ブラウザ用フォールバック */
  width : -webkit-calc(100% / 3) ;
  width : calc(100% / 3) ;
font-size: 88%;
font-weight: 500;
padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    box-sizing: border-box;
    color: #ffffff;
    line-height: 1.4;
}

.sp_menu_contact li:first-child,
.sp_menu_contact li:last-child{background-color:#d10a1c;}

.sp_menu_contact li:nth-child(2){background-color:#06c755;}

.sp_menu_contact li a{display: block;
color: #ffffff;}

.sp_menu_contact_icon{font-size: 200%;}







