@charset "UTF-8";
/* 追加CSS */
.nav ul.wovn-languages {
  display: flex !important;
  padding: 0 !important;
  justify-content: space-between;
  flex-wrap: wrap;
  background: none !important;
  width: 80%;
}
.nav li.wovn-switch {
  width: 20%;
  height: auto !important;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
} 
.nav li.wovn-switch::after {
  background-image: none !important;
}
.nav ul li.wovn_linkList::after {
  display:none;
}

@media screen and (max-width: 950px) {
  .nav ul.wovn-languages {
    display: flex !important;
    padding: 0 !important;
    justify-content: flex-start;
    flex-wrap: wrap;
    background: none !important;
    width: 95%;
    height: auto;
  }
  .nav li.wovn-switch {
    width: calc(100% / 3);
    margin-bottom: 10px;
    text-align: center;
  }
}

/*******************************************************************
GDPR
*******************************************************************/
/*******************************************************************
言語切替ボタン
*******************************************************************/
@media print, screen and (min-width: 768px) {
  .header-inner {
    position: relative;
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 1217px) {
  .header-inner {
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 210px;
  }
}
@media print, screen and (max-width: 767px) {
  .header-inner {
    padding-bottom: 25rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
}
@media print, screen and (min-width: 768px) {
  .header .title {
    width: 100%;
    max-width: 800px;
  }
}
@media print, screen and (max-width: 767px) {
  .header .title {
    width: 90%;
    margin: 0 auto;
  }
}
.langBtn{
  background-color: #009100;
  width: 165px;
  height: 44px;
  text-align: center;
  vertical-align: middle;
  box-sizing: border-box;
  border-radius: 22px;
  color: #fff;
  position: absolute;
  right: 30px;
  font-size: 20px !important;
  font-weight: 600;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .langBtn{
    width: 33vw;
    height: 32px;
    font-size: 1.5rem !important;
    position: relative;
    top: 15px;
    right: 10px;
  }
}
@media print, screen and (min-width: 768px) {
  .langBtn:hover{
    opacity: 0.8;
  }
}
.langBtn_inner{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  height: 100%;
  margin: 0 auto;
  padding-right: 4px;
}
.langBtn_inner::before {
  content: "";
  display: block;
  background: url("/multi/common/img/icon_language.svg") no-repeat;
  width: 20px;
  height: 20px;
  background-size: contain;
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  .langBtn_inner::before {
    margin-right: 2vw;
  }
}
.langBtn_txt{
  display: block;
  white-space: nowrap;
}
@media only screen and (max-width: 767px) {
  .langBtn_txt{
     font-size: 4vw;
  }
}
.langPulldown{
  z-index: 1000;
  position: absolute;
  display: none;
  width: 90%;
  right: 30px;
  top: 67px;
  /* overflow-x: hidden; */
  width: 295px;
  box-sizing: border-box;
  background: #fff;
  padding: 0 28px;
  border-right: 1px solid #009100;
  border-bottom: 1px solid #009100;
  border-left: 1px solid #009100;
  border-top: 1px solid #009100;
}
@media only screen and (max-width: 767px) {
  .langPulldown{
    right: 0px;
    top: 76px;
    padding: 0;
    background: none;
    border: none;
    border-top: 1px solid #ccc;
    margin-right: 0;
    width: 90%;
  }
}
.langPulldownli {
  box-sizing: border-box;
  background: #fff;
  height: 44px;
  line-height: 44px;
  padding-left: 30px;
  position: relative;
  font-size: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .langPulldownli {
    border-left: 10px solid #009100;
    border-bottom: 1px solid #ccc;
    padding-left: 1em;
  }
}
@media print, screen and (min-width: 751px) {
  .langPulldownli:hover{
    color: #009100;
  }
}
.langPulldownli:nth-of-type(n+2) {
  border-top: 1px solid #ccc;
}
@media only screen and (max-width: 767px) {
  .langPulldownli:nth-of-type(n+2) {
    border-top: none;
  }
}
.langPulldownli::before {
  content: "";
  position: absolute;
  background: #009100;
  display: block;
  width: 3px;
  height: 18px;
  left: 10px;
  top: 50%;
  bottom: 50%;
  margin: auto;
}
@media only screen and (max-width: 750px) {
  .langPulldownli::before {
    display: none;
  }
}
.langPulldownli a {
  text-decoration: none;
  display: block;
}
.langPulldownli.close{
  display: none;
  color: #fff;
  border-bottom: 1px solid #ccc;
  padding-left: 0;
  border-left: none;
  text-align: center;
  background: url(/multi/common/img/icon_close_wht.png) #666 no-repeat 20px 50%;
  background-size: 17px 17px;
  font-weight: bold;
  border-right: none;
}
@media only screen and (max-width: 750px) {
  .langPulldownli.close{
    display: block;
  }
}
#rwdTop.langPulldown{
  top: 140px;
}