@charset "euc-jp";

body {
  min-width: 1140px;
}

@media screen and (max-width: 480px) {
/*-- max-width: 480px //--*/
  body {
    min-width: 100%;
  }
}

/*========================
/*
/* header
/*
/*=======================*/
header {
  width: 100%;
}

/*======================
 ヘッダーメイン
=======================*/
.hd_main {
  width: 1080px;
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: start;
}

/*--
 サイト内検索
--*/
.hd_search_form {
  display: flex;
  gap: .5em;
  align-items: center;
  margin-left: auto;
}

.hd_search_form_title {
  font-family: m_plus_mid;
  font-size: 11px;
  color: #666;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.hd_search_form_title svg {
  width:18px;
  height: auto;

}.hd_search_form_icon {
  fill: #b6b6b6;
}

.hd_search_form_input input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  border: 1px solid transparent;
  outline: 0;
}

.hd_search_form_input input[type="text"] {
  border: 1px solid rgb(var(--color-text));
  background: #f3f3f3;
  width: 132px;
  padding: .2em;
}

.hd_search_form_input input[type="button"] {
  font-family: m_plus_mid;
  background: rgb(var(--color-primary));
  border-bottom: 2px solid rgb(var(--color-secondary));
  border-radius: .4em;
  color: #FFF;
  line-height: 1;
  padding: .2em .5em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/*======================
 ヘッダーサブメニュー
=======================*/
.hd_sub {
  background: rgb(var(--color-bg-light));
  height: 23px;
  display: flex;
  align-items: center;
}
.hd_sub ul,
.hd_sub li {
  list-style: none;
}

.hd_submenu {
  width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: end;
  align-items: center;
  }

.hd_submenu_item a {
  color: rgb(var(--color-text));
  font-family: m_plus_mid;
  font-size: 11px;
  padding: 0 .5em;
  position: relative;
}

.hd_submenu_item a::before {
  content: "";
  display: block;
  height: .8em;
  width: 1px;
  background: rgb(var(--color-text));
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
  
.hd_submenu_item:first-child a::before {
  content: none;
}

.hd_submenu_item a::after {
  content: ">";
  margin: 0 0 0 .2em;
  font-weight: bold;
  color: rgb(var(--color-primary));
}

/*======================
 individual 電話相談
=======================*/
.btn_individual {
  margin: 0 0 0 2em;
}

.btn_individual a {
  font-family: m_plus_mid;
  text-decoration: none;
  color: #FFF;
  display: block;
  width: 100%;
  height: 100%;
  padding: .4em .6em;
  border-radius: .4em;
  background: rgb(255,102,0);
  background: linear-gradient(0, rgba(255,102,0,1) 0%, rgba(255,141,1,1) 100%);
  border: solid 2px rgba(255,102,0,1);
  transition: opacity .5s ease;
}

.btn_individual a:link,
.btn_individual a:visited {
  text-decoration: none;
  color: #FFF;
}

.btn_individual a:hover,
.btn_individual a:active {
  text-decoration: none;
  color: #FFF;
  opacity: .8;
}

/*======================
 グローバルナビ
=======================*/
.navigation {
  height: 50px;
  padding: 2px 0;
  background: rgb(var(--color-primary));
  background: linear-gradient(0deg, rgba(var(--color-primary),1) 0%, rgba(154,205,2,1) 30%, rgba(204,225,6,1) 99%, rgba(var(--color-primary),1) 99%);
}

.header_nav {
  width: 1080px;
  height: 46px;
  margin: 0 auto;
  display: flex;
}

.header_nav_item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_nav_item a {
  font-family: m_plus_bold;
  font-size: 18px;
  color: #FFF;
  font-feature-settings: "palt";
  font-weight: normal;
  text-shadow: rgba(var(--color-shadow-dark),.8) 0 0 8px;
  text-decoration: none;
  display: block;
  width: calc(100% - 2px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgb(var(--color-primary));
  background: linear-gradient(0deg, rgba(var(--color-primary),1) 0%, rgba(154,205,2,1) 30%, rgba(204,225,6,1) 100%);
}

.header_nav_item a:link,
.header_nav_item a:visited {
  text-decoration: none;
  color: #FFF;
}

.header_nav_item a:hover,
.header_nav_item a:active {
  text-decoration: none;
}

/*--
アイコンのサイズ・ドロップシャドウ指定
--*/
.header_nav_item a svg {
  width: 36px;
  height: auto;
  filter: drop-shadow(rgba(var(--color-shadow-dark),.8) 0 0 8px); 
}

/* さがす・調べるアイコンサイズの個別設定 */
.header_nav_item.search a svg {
  width: 26px;
  height: auto;
}

/*--
アイコンの色指定
--*/
.header_nav_item a .nav_icon {
  fill: #FFF;
}

/*--
さがす・調べるの文字間調整
--*/
.header_nav_item.search .ls_1 {
  letter-spacing: -.4em;
}

.header_nav_item.search .ls_2 {
  letter-spacing: -.2em;
}

/*--
hover,current
--*/
.header_nav_item a:hover,
.header_nav_item.current a {
  color: rgb(var(--color-secondary));
  text-shadow: rgba(255,255,255,1) 0 0 8px;
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(249,255,207,1) 52%, rgba(222,238,175,1) 100%);
}

/* hover,current時のアイコンの設定 */
.header_nav_item a:hover .nav_icon,
.header_nav_item.current .nav_icon {
  fill: rgb(var(--color-secondary));
}

.header_nav_item a:hover svg,
.header_nav_item.current svg {
  filter: drop-shadow(rgba(255,255,255,1) 0 0 8px); 
}

/*--
メニュー区切りの縦線の設定
--*/
.header_nav_item a::before {
  content: "";
  display: block;
  background-color: #eaf2d4;
  width: 2px;
  height: 20px;
  border-radius: 0px;
  box-shadow: 0px 0px 2px 0px rgba(111, 156, 17, 0.8);
  position: absolute;
  top: 50%;
  left: -2px;
  transform: translateY(-50%);
}

.header_nav_item a:last-child:after {
  content: "";
  display: block;
  background-color: #eaf2d4;
  width: 2px;
  height: 20px;
  border-radius: 0px;
  box-shadow: 0px 0px 2px 0px rgba(111, 156, 17, 0.8);
  position: absolute;
  top: 50%;
  right: -2px;
  transform: translateY(-50%);
}
