@charset "utf-8";

/* header */
html {}

body {
  position: relative;
  overflow-y: scroll;
}

html.menu_active body {
  overflow: hidden;
}

header {
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  min-width: 360px;
  max-height: 100vh;
  overflow: hidden;
  box-shadow: 0px 3px 20px 0px rgba(136, 136, 136, .25);
  z-index: 99;
}

.sticky_off {
  position: fixed;
  top: -150px;
  opacity: 1;
  transition: top .5s ease, opacity .5s;
}

.sticky_on {
  position: fixed;
  top: 0px;
  opacity: 1;
  transition: top .4s ease, opacity .4s;
}

/* グローバルナビ */
.nav_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}

#g_nav {
  width: 100%;
  max-width: 1280px;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  width: 100%;
}

/* ロゴ */
#head_top {
  display: table;
  margin: 0;
  padding: 16px 0;
  vertical-align: middle;
}

.head_logo {
  display: table-cell;
}

.head_logo a {
  display: block;
}

.head_logo a:hover {
  opacity: 1.0;
}

.head_logo img {
  display: block;
  width: auto;
  height: 55px;
  margin: 0;
  padding: 0;
  transition: height .2s;
}

.head_tit {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

.head_tit span {
  display: inline-block;
  margin-right: 1em;
  padding-left: 40px;
  font-size: 16px;
}

@media screen and (max-width:996px) {
  .head_logo a {
  }
  .head_logo img {
    height:49px;
    margin:3px 0;
  }
  .head_tit span {
    display: block;
    margin-right: 0em;
    padding: 4px 0 0 15px;
    width: 15em;
    font-size: 12px;
    line-height: 20px;
    word-break: keep-all;
  }
}

@media screen and (max-width:768px) {
  #head_top {
    padding: 8px 0 8px;
  }

  .head_logo img {
    display: block;
    width: auto;
    height: 29px;
    margin: 0;
    padding: 0;
    transition: height .2s .1s;
  }

  .head_tit span {
    display: block;
    margin-right: 0em;
    margin-top: -1px;
    padding-top: 0px;
    font-size: 10px;
    width: 15em;
    line-height: 15px;
    word-break: keep-all;
  }
}

/* ヘッダーメニュー */
html.menu_closed .header_menu {
  position: absolute;
  top: 20px;
  right: 0;
  transition: top .2s .6s;
}

html.menu_active .header_menu {
  position: absolute;
  top: -50px;
  right: 0;
}

.header_menu ul {
  display: flex;
}

.header_menu ul li {}

.header_menu ul li a {
  display: block;
  padding: 0 10px;
  text-decoration: none;
  font-size: 14px;
  line-height: 100%;
  color: #333;
}

.header_menu ul li:last-child a {
  padding: 0 0 0 10px;
}

.header_menu ul li a img {
  display: block;
  margin: 0 auto 7px;
  padding: 0;
  width: auto;
  height: 20px;
}

@media screen and (max-width:768px) {
  html.menu_closed .header_menu {
    position: absolute;
    top: -70px;
    right: 0;
    transition: top .2s;
  }

  html.menu_active .header_menu {
    position: absolute;
    top: -70px;
    right: 0;
  }
}

/* menuボタンエリア */
html.menu_closed .menu_btn {
  position: absolute;
  top: -30px;
  right: 0px;
  opacity: 0;
  opacity: 1;
  transition: top .3s .3s, opacity .2s .1s;
  z-index: 99999;
}

html.menu_active .menu_btn {
  position: absolute;
  top: 31px;
  right: 0px;
  opacity: 1;
  transition: top .2s;
}

@media screen and (max-width:768px) {
  html.menu_closed .menu_btn {
    position: absolute;
    top: 12px;
    right: 0px;
    opacity: 1;
    transition: top .2s .2s;
  }

  html.menu_active .menu_btn {
    position: absolute;
    top: 12px;
    right: 0px;
    opacity: 1;
    transition: top .2s;
  }
}

/* menuボタン本体 */
#menu_icon {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
}

#menu_icon:before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #005d5a;
  z-index: 2;
}

#menu_icon span {
  position: absolute;
  left: 0;
  top: 0px;
  display: block;
  width: 20px;
  height: 20px;
  text-indent: 20px;
  overflow: hidden;
  z-index: 0;
  cursor: pointer;
}

#menu_icon span:before {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #005d5a;
}

#menu_icon:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #005d5a;
  z-index: 1;
}

/* menuボタンON */
html.menu_active #menu_icon:before {
  transform: translateY(5px) rotate(-45deg);
  transition: transform .2s;

}

html.menu_active #menu_icon span:before {
  width: 0px;
  left: 50%;
  transition: width .4s, left .4s;
}

html.menu_active #menu_icon:after {
  transform: translateY(-5px) rotate(45deg);
  transition: transform .2s;
}

/* menuボタンOFF */
html.menu_closed #menu_icon:before {
  transform: translateY(0px) rotate(0deg);
  transition: transform .3s;
}

html.menu_closed #menu_icon span:before {
  width: 20px;
  left: 0;
  transition: width .3s, left .35s;
}

html.menu_closed #menu_icon:after {
  transform: translateY(0px) rotate(0deg);
  transition: transform .3s;
}

@media screen and (max-width:768px) {
  html.menu_closed #menu_icon:before {
    transform: translateY(0px) rotate(0deg);
    transition: transform .3s;
  }

  html.menu_closed #menu_icon span:before {
    width: 20px;
    left: 0;
    transition: width .35s, left .35s;
  }

  html.menu_closed #menu_icon:after {
    transform: translateY(0px) rotate(0deg);
    transition: transform .3s;
  }
}

/* サブナビ */
#s_nav {
  background-color: #fff;
  width: 100%;
  padding: 0 0 10px 0;
}

/* サブメヌー本体 */
#submenu_wrap {
  width: 100%;
  margin: 0;
  padding: 0 25px;
}

#submenu_wrap ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

#submenu_wrap ul li {}

#submenu_wrap ul li:nth-child(1) {
  min-width: 99px;
}

#submenu_wrap ul li:nth-child(2) {
  min-width: 99px;
}

#submenu_wrap ul li:nth-child(3) {
  min-width: 162px;
}

#submenu_wrap ul li:nth-child(4) {
  min-width: 192px;
}

#submenu_wrap ul li:last-child {
  padding: 0;
  width: 100%;
  max-width: 326px;
}

#submenu_wrap ul li a {
  text-decoration: none;
  color: #333;
}

#submenu_wrap ul li a img {
  display: inline-block;
  margin: 0 8px 0 0;
  padding: 0;
}

#submenu_wrap ul li form {
  position: relative;
  width: 100%;
}

#head_search_input {
  position: relative;
  width: 100%;
  padding: 0;
  text-indent: .5em;
  line-height: 30px;
  border: none;
  background-color: #f5f5f5;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  font-family: Arial;
}

#head_search_input:focus {
  outline: none;
}

#head_search_input::placeholder {
  font-size: 12px !important;
  color: #c1c1c1;
  letter-spacing: .1em;
}

#head_search_btn_submit {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 20px;
  height: 20px;
  padding:0;
  border: none;
  cursor: pointer;
}
#head_search_btn_submit img{
  display: block;
  width:100%;
}

@media screen and (max-width:946px) {
  #submenu_wrap ul li a {
    font-size: 15px;
  }

  #submenu_wrap ul li a img {
    margin: 0 4px 0 0;
  }
}

@media screen and (max-width:768px) {

  #s_nav {
    padding: 0;
  }

  #submenu_wrap ul {
    max-width: 420px;
    margin: 0px auto 0;
    padding-top: 5px;
    height: 46px;
  }

  #submenu_wrap ul li {
    min-width: 0 !important;
  }

  #submenu_wrap ul li a {
    display: block;
    font-size: 10px;
    text-align: center;
  }

  #submenu_wrap ul li a img {
    display: block;
    margin: 0 auto;
  }

  #submenu_wrap ul li:last-child {
    display: none;
  }
}

/* スライドナビ */
html.menu_closed #slide_nav {
  background-color: #005d5a;
  color: #fff;
  position: relative;
  display: block;
  width: 100%;
  height: 0vh;
  transition: height .5s ease-in-out .0s;
}

html.menu_active #slide_nav {
  position: relative;
  background-color: #005d5a;
  color: #fff;
  display: block;
  width: 100%;
  height: 160vh;
  transition: height .5s ease-in-out .0s;
}

#slide_nav ul {
  padding: 64px 0 0 0;
}

html.menu_closed #slide_nav ul {
  position: absolute;
  top: -100vh;
  width: 100%;
  opacity: 0;
  transition: opacity .3s ease 0s, top .0s .5s;
  /* CLOSED時の挙動 */
}

html.menu_active #slide_nav ul {
  position: absolute;
  top: 0vh;
  width: 100%;
  opacity: 1;
  transition: opacity .5s ease-in-out .3s;
  /* OPEN時の挙動 */
}

#slide_nav ul li {
  width: 58%;
  max-width: 500px;
  margin: 0 auto 32px;
}

#slide_nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 44px;
  background-color: #fff;
  border-radius: 22px;
  text-decoration: none;
  text-align: center;
}

#slide_nav ul li a img {
  height: 16px;
}

#slide_nav ul li a span {
  display: inline-block;
  width: 138px;
  padding: 0 0 0 20px;
  text-align: left;
  color: #333;
}

#slide_nav ul li:last-child {
  margin-top: 62px;
}

#slide_nav ul li:last-child p {
  margin: 0;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 10px;
  font-size: 14px;
  line-height: 40px;
  text-align: center;
  cursor:pointer;
}
#slide_nav ul li:last-child p:hover{
  background: rgba(255,1255,255,0.2);
}

/* パンクズ */
.breadcrumb {
  /*
  height: 78px;
  */
  padding: 0 25px;
}

.breadcrumb ul {
  width: 100%;
  max-width: 1280px;
  margin: 15px auto 0;
}

.breadcrumb ul li {
  display: inline-block;
}

.breadcrumb ul li:after {
  content: ">";
  display: inline-block;
  padding: 0 7px 0 10px;
  font-size: 12px;
  line-height: 18px;
}

.breadcrumb ul li:last-child:after {
  content: "";
}

.breadcrumb ul li a {
  font-size: 12px;
  line-height: 18px;
}

.breadcrumb ul li span {
  font-size: 12px;
  line-height: 18px;
}

@media screen and (max-width:768px) {
  .breadcrumb {
    /*
    height: 54px;
    */
  }
  .breadcrumb ul {
    margin: 15px auto 0;
  }
}