@charset "UTF-8";
/*
Zarigani Design Office Drawer MenuCopyright 2018 Zarigani Design OfficeCustomized by minimalgreen Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.drawer_menu a {
color: inherit;
text-decoration: none;
}
.drawer_menu a:hover {
text-decoration:none;
}
.drawer_menu a:visited {
color: inherit;
}
.drawer_menu .drawer_button {
color: #491da0;/* ハンバーガーメニュー文字色 */
display: none;
}
.drawer_menu .drawer_button .drawer_bar {
background-color: #491da0;/* ハンバーガーメニュー三本線の色 */
border: 1.5px solid #491da0;
}

/* PC用ナビゲーション */
.drawer_menu .drawer_nav_wrapper {
transform: translate(0);
width: 100%;
position: relative;
top: auto;
right: auto;
z-index: 100;
}
.drawer_menu .drawer_nav {
max-width: 980px;
margin: 0 auto;
display: -webkit-flex;
display: flex;
-webkit-justify-content: center;
justify-content: center;
list-style-type: none;
}
.drawer_menu .drawer_nav li {
margin: 0;
padding: 0;
width: 100%;
font-size: 15px;
height: 50px;/* PC用メニュー高さ */
line-height: 1;/* PC用メニュー高さ */
text-align: center;
list-style-type: none;
}
.drawer_menu .drawer_nav li:hover {
background-color: #9775ea;/* PC用メニューボタンマウスオーバー背景色 */
transition: 1.0s ;
}
.drawer_menu .drawer_nav li a {
color: #fff;/* PC用メニューボタン文字色 */
}

@media screen and (min-width: 981px) {
.menubox{
padding: 20px 0;
background-color: #491da0;
height:95px;
}
.drawer_menu .drawer_nav > li {
border-right: 1px dotted #fff;
line-height:50px;
text-align:center;
}
.drawer_menu .drawer_nav li a {
display:inline-block;
vertical-align: middle;
line-height:normal;
}
.drawer_nav_wrapper > ul {
border-left: 1px dotted #fff;
}
/* ドロップダウンメニュー2階層目 */
.drawer_menu .drawer_nav li ul.second-level {
visibility: hidden;
list-style-type: none;
position: absolute;
z-index: 100;
top: 0;
margin: 0;
padding-left: 0;
}
.drawer_menu .drawer_nav li:hover ul.second-level {
visibility: visible;
z-index: 1;
top: 50px;/* PC用メニューの高さに合わせる */
transition: all .3s;
}
.drawer_menu .drawer_nav li:hover ul.second-level li {
width: 200px;/* ドロップダウンメニューボタン横幅 */
height: 50px;/* Pドロップダウンメニューボタン高さ */
text-align: center;
}
.drawer_menu .drawer_nav li:hover ul.second-level li a {
display: block;
background-color: #491da0;/* ドロップダウンメニューの文字の背景色 */
color: #fff;/* ドロップダウンメニューの文字色 */
font-size: 100%;
text-decoration: none;
line-height: 50px;/* Pドロップダウンメニューボタン高さ */
text-align: center;
}
.drawer_menu .drawer_nav li:hover ul.second-level li a:hover {
background-color: #9775ea;/* ドロップダウンメニューマウスホバー背景色 */
transition: 1.0s ;
text-decoration:none;
}
.pc-hidden {
display: none;
text-align: center;
}

/* 下向き矢印を表示 */
.drawer_nav li .arrow a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin: 0 0 0 0.4em;
 border: 5px solid transparent;
border-top-color: #fff;
}
.drawer_nav li:hover .arrow a::after {
  border-top-color: #8cb0f2;
}
}
@media screen and (max-width: 980px) {
.drawer_menu .drawer_bg {
width: 100%;
height: 100%;
position: fixed;
z-index: 999;
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: 42px;
letter-spacing: 0.1em;
cursor: pointer;
position: fixed;
top: 10px;
right: 20px;
z-index: 1001;
text-align: center;
outline: none;
}
.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: 250px;
height: 100%;
transition: all 0.2s;
transform: translate(250px);
position: fixed;
top: 0;
right: 0;
z-index: 1000;
background-color: #FFF;/* ドロワーメニュー内背景色 */
overflow-x: hidden;
overflow-y: auto;
}
.drawer_menu .drawer_nav {
display: block;
position: relative;
margin-top: 8px;
padding-left: 10px;
}
.drawer_menu .drawer_nav li {
background-color: #fff;
height: auto;
line-height: 36px;/*  ドロワーメニューリスト項目高さ */
position: relative;
}
.drawer_menu .drawer_nav li a {
background-color: #fff;/* ドロワーメニューリスト背景色 */
color: #555;/* ドロワーメニューリスト文字色 */
display: block;
text-align: left;
border-bottom: 1px solid #eee;
}
.drawer_menu .drawer_nav li a:hover{color:#9775ea;}
/* スマートフォン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 {

}
.drawer_menu .drawer_nav li ul.second-level li a {
padding-left: 30px;
}
.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(-250px);
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: #555;/* ドロワーメニュー内タイトルライン背景色 */
color: #fff;
}
/* ------------------------------------- */
/*	検索
/* ------------------------------------- */
.s_contact {width:220px;height:44px;display:block;margin:10px;}

#s{
border: 1px solid #D6D6D6;
margin: 0;
height: 28px;
	width:150px;
}
#searchsubmit{
border: 2px solid #491da0;
background: #491da0;
padding: 1px 10px;
color: #FFFFFF;
font-size: 0.8em;
	height: 28px;
}
#searchform div{
margin-left:0;
}
.postform{
width:150px;
height:28px;
margin:3px 0;
}
/* ------------------------------------- */
/*	タイトルの前方に画像
/* ------------------------------------- */
.drawer_nav li .logoi::before {
content: '';/*何も入れない*/
display: inline-block;/*忘れずに！*/
width: 22px;/*画像の幅*/
height: 18px;/*画像の高さ*/
background-image: url("../img/logo_icon.png");
background-size: contain;
vertical-align: middle;	
margin-right: 0.5em;
}
ul.second-level li a:before {
content: '●';
color: #dbdaff;
margin-right: 0.5em;
}
}