@charset "utf-8";
:root {
  --header-hight: 100px;
}
@media screen and (max-width: 560px) {
  :root {
    --header-hight: 70px;
  }
}

/*----------------------------------------*/
header{
	display: flex;
	justify-content: space-between;
	width: 100%;
  padding: 0 20px;
  height: var(--header-hight);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: var(--color-wht);
  transition: .5s;
  border-bottom: 1px solid  var(--color-sub1);
}
/*上スクロール表示、下スクロール非表示用*/
/* header.scroll{
  transform: translateY(-100%);
} */
/*----------------------------------------*/
.l-logo{
  flex: 1;
  display: flex;
  align-items: center;
}
.l-logo__img{
  display: flex;
  align-items: center;
}
.l-logo__img img {
  width: 90%;
  min-height: 4rem;
}
@media screen and (max-width: 1080px) {
  .l-logo{
    padding-right: 80px;
  }
  .l-logo__img img {
  width: 65%;
}
}
/*----------------------------------------*/
.l-header__menu {
  display: flex;
  align-items: center;
}
.l-gnav__bg{
  display: flex;
  align-items: center;
}
.l-gnav{
	display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .l-gnav {
    display: none;
    position: fixed;
    width: 100vw;
    max-width: 560px;
    height: calc(100vh - var(--header-hight));
    max-height: 100vh;
    background-color: var(--color-sub2);
    top: var(--header-hight);
    right: 0;
    padding: 20px;
    overflow-y: auto;
    background: var(--color-wht);
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .l-gnav {
    display: none;
    position: fixed;
    width: 100vw;
    height: auto;
    max-height: 80vh;
    background-color: var(--color-sub2);
    top: var(--header-hight);
    right: initial;
    left: 0;
    padding: 20px;
    overflow-y: auto;
    background: var(--color-wht);
    font-size: 16px;
  }
}
/*----------------------------------------*/
.l-gnav__main{
	display: flex;
}
.l-gnav__item{
	margin: 0 15px;
  font-weight: 600;
}
.l-gnav__item a:hover{
  text-decoration: none;
}
.l-gnav__main .l-gnav__item a{
  display: block;
  padding-bottom: .4em;
  color: #00296A;
}
.l-gnav__main .l-gnav__item > a{
  position: relative;
}
.l-gnav__main .l-gnav__item > a::after{
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-main1);
  position: absolute;
  left: 0;
  bottom: -33px;
  transition: all .3s;
}
.l-gnav__main .l-gnav__item > a:hover::after{
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .l-gnav__main{
    display: block;
  }
  .l-gnav__item {
    display: block;
    margin: 15px 0;
    border-bottom: 1px solid var(--color-sub1);
    padding-bottom: 10px;
  }
  .l-gnav__main .l-gnav__item > a:hover::after{
    display: none;
  }
}
/*----------------------------------------*/
.l-subgnav {
  display: flex;
  list-style: none;
  margin-left: 30px;
}
.l-subgnav li a {
  display: block;
  color: var(--color-main2);
  background-color: var(--color-wht);
  font-weight: 700;
  text-align: center;
  border-top: 2px solid var(--color-main2);
  border-bottom: 2px solid var(--color-main2);
  border-right: 2px solid var(--color-main2);
  border-left: none;
  padding: 5px 10px;
  width: 150px;
}
.l-subgnav li a:hover {
  text-decoration: none;
}
.l-subgnav li:first-child a {
  border-left: 2px solid var(--color-main2);
}
.l-subgnav li:last-child a {
  background: var(--color-gr1);
}

@media screen and (max-width: 1080px) {
  .l-subgnav {
    flex-direction: column;
    margin: 0;
  }
  .l-subgnav li a {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
  }
  .l-subgnav li:last-child a {
    border-left: 2px solid var(--color-main2);
  }
}

/*----------------------------------------*/
.p-sns__link{
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.p-sns__link > a{
  display: block;
  width: calc(1rem);
  height: calc(1rem);
  margin-right: 1rem;
}
.p-sns__link > a:last-child{
  margin-right: 0;
}
.p-sns__link > a > img{
  width: calc(1rem);
}
@media screen and (max-width: 1080px) {
  .p-sns__link > a{
    width: 40px;
    height: 40px;
  }
  .p-sns__link > a > img{
    width: 40px;
  }
}
/*----------------------------------------*/
.p-search__area{
  display: inline-block;
}
.p-search__area form{
  display: flex;
  align-items: center;
  position: relative;
}
.p-search__area input.input__text{
  -webkit-appearance:none;
  width: 130px;
  height: calc(1em * 1.8);
  padding: 0 20px 0 1em;
  border: none;
  border-radius: 50px;
  background:var(--color-sub2) !important;
  background-size: 25px 25px;
  transition: all 0.5s;
  outline: none;
}
.p-search__area input.input__text::placeholder{
  color: var(--color-blk2);
  font-weight: 700;
  line-height: 1;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}
.p-search__area input.input__text:focus{
  width: 200px;
}
.p-search__area input.icon__search{
  width: calc(1em * 1.8 - 6px);
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  margin: auto;
  background: none;
}
.p-search__area input.icon__search:hover{
  opacity: .5;
}
@media screen and (max-width: 1080px) {
  .p-search__area{
    display: block;
    width: 100%;
  }
  .p-search__area input.input__text{
    width: 100%;
    height: calc(1.6em* 1.8);
  }
  .p-search__area input.input__text:focus{
    width: 100%;
  }
  .p-search__area input.icon__search{
    right: 20px;
  }
}
/*----------------------------------------*/
.l-dropmenu01{
  cursor: pointer;
  padding-right: 1em;
  position: relative;
  display: block;
}
.l-dropmenu01::before{
  content: "";
  position: absolute;
  background: url("/img/common/ico_downward_triangle01.svg") no-repeat;
  right: 0;
  top: 0;
  bottom: .4em;
  margin: auto;
  width: 10px;
  height: 8px;
}
.l-dropmenu01::after{
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-main1);
  position: absolute;
  left: 0;
  bottom: -33px;
  transition: all .3s;
}
.l-dropmenu01:hover::after{
  width: 100%;
}
.l-dropmenu01.is-active::after{
  content: "";
  width: 100%;
  height: 2px;
  background: var(--color-main1);
  position: absolute;
  left: 0;
  bottom: -33px;
  transition: all .3s;
}
.l-dropmenu01__bg{
  position: absolute;
  top: var(--header-hight);
  left: 0;
  width: 100%;
  padding: 20px;
  background: var(--color-wht);
}
.l-dropmenu01__close__area{
  position: absolute;
  top: 10px;
  right: 10px;
}
.l-dropmenu01__close{
  cursor: pointer;
  position: relative;
  font-size: 40px;
  line-height: 1;
  display: inline-block;
  font-weight: 400;
  color: var(--color-main1);
}
.l-dropmenu01__close:hover{
  text-decoration: none;
  opacity: .6;
}
@media screen and (max-width: 1080px) {
  .l-dropmenu01__bg{
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
  }
  .l-dropmenu01:hover::after{
    display: none;
  }
  .l-dropmenu01::before{
    content: "＋";
    position: absolute;
    right: 0;
    top: 0;
    bottom: .4em;
    margin: auto;
    font-size: 20px;
    display: inline-block;
    line-height: 1;
    width: 20px;
    height: 20px;
    border-top: none;
    border-right: none;
    transition: all .6s;
    transform: rotate(0deg);
    color: var(--color-main1);
    background: none;
  }
  .l-dropmenu01.is-active::before{
    content: "－";
    transform: rotate(180deg);
  }
  .l-dropmenu01.is-active::after {
    display: none;
  }
  .l-dropmenu01__close__area {
    display: none;
  }
}
.l-dropmenu__list{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.l-dropmenu__list > li{
  margin: 0 20px;
}
@media screen and (max-width: 1080px) {
  .l-dropmenu__list > li{
    width: 100%;
    margin: 5px 0;
  }
}
/*----------------------------------------*/
#navbtn {
  display: none;
}
@media screen and (max-width: 1080px) {
  #navbtn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    outline: none;
    border: none;
    background: none;
    width: var(--header-hight);
    height: var(--header-hight);
    cursor: pointer;
    display: inline-block;
    z-index: 999;
    transition: .3s;
    padding: 0 20px;
  }
  #navbtn:before, #navbtn:after {
    content: "";
    display: block;
    height: 2px;
    background-color: var(--color-main1);
    transform: translateY(6px);
    transition: 0.3s ease-in-out;
  }
  #navbtn:before {
    transform: translateY(-8px);
    box-shadow: 0 8px var(--color-main1);
  }
  #navbtn > span {
    position: absolute;
    right: 0;
    left: 0;
    bottom: -1.5em;
    margin: auto;
    font-size: 0.8em;
    line-height: 1;
    text-align: center;
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  .menuopen {
    overflow: hidden;
  }
  .menuopen body {
    overflow: hidden;
  }
  .menuopen #navbtn:before {
    transform: rotate(-45deg);
    box-shadow: none;
  }
  .menuopen #navbtn:after {
    transform: translateY(-2px) rotate(45deg);
    box-shadow: none;
  }
}
#menu__overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}
/*----------------------------------------*/
.l-gnav__current.current{
  font-weight: 700;
  color: var(--color-main1) !important;
}