/* section
================================================== */
.section {
  padding: 60px 0 40px;
  border-top: solid 1px #a4a4a4;
}
.section__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  font-size: 34px;
  line-height: 1.2;
}
.section__title > i {
  margin-right: 15px;
  width: 46px;
}
.section__subtitle {
  margin: 0 0 15px 0;
  padding: 0 .5em .35em;
  border-bottom: solid 1px #333;
  font-size: 16px;
}
.section__linkList {
  padding: 0 10px 15px;
}
.section__linkList > li {
  font-size: 14px;
}
.section__linkList > li + li {
  margin-top: .5em;
}
.section__linkList a {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.section__linkList a::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: #005ab4;
  transform: rotate(-45deg);
  left: 0;
  top: .5em;
}
.section__grid {
  position: relative;
}
@media (min-width: 768px) {
  .section__grid {
    display: flex;
    justify-content: center;
  }
  .section__grid__item {
    flex: 1 0 0%;
    max-width: 100%;
    margin: 0 20px;
  }
  .section__grid__close {
    position: absolute;
    right: 12px;
    top: 12px;
    cursor: pointer;
  }
  .section__grid--col3 {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section__grid--col3 .section__grid__item {
    margin: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .section {
    padding: 50px 0 30px;
  }
  .section__title {
    margin-bottom: 20px;
    font-size: 24px;
  }
  .section__title > i {
    margin-right: 8px;
    width: 26px;
  }
  .section__subtitle, .section__subtitle a {
    font-size: 14px;
  }
  .section__grid__item + .section__grid__item .section__subtitle {
    padding-top: .5em;
  }
  .section__grid__close {
    display: none;
  }
}

/* notice
================================================== */
.notice {
  margin-top: 20px;
}
.notice__topItems {
  margin-bottom: 35px;
  padding: .5em 1em;
  border: solid 1px #ff4b00;
}
.notice__topItems > li + li {
  border-top: solid 1px #e5e5e5;
}
.notice__topItem {
  display: flex;
  padding: .5em;
}
.notice__topItem > i {
  margin-right: 8px;
}
.notice__topItem a {
  font-size: 14px;
}
.notice__items__content__body ul > li + li {
  border-top: solid 1px #e5e5e5;
}
.notice__items__content__body ul a {
  font-size: 14px;
}
.notice__items__content__body ul em {
  color: #ff4b00 !important;
  font-style: normal;
}
.notice__items__content__body p {
  margin-top: 1em;
  text-align: right;
}
.notice__items__content__body p a {
  font-size: 14px;
}

.notice__items__content__body .secrityComment{
  border: solid 1px #a4a4a4;
  padding: 15px 10px;
  margin-bottom:25px;
}

.notice__items__content__body .secrityComment p{
  text-align:left;

}

@media (min-width: 768px) {
  .notice__items__tabs {
    position: relative;
    display: flex;
  }
  .notice__items__tabs > li {
    flex: 1 0 0%;
  }
  .notice__items__tabs > li + li {
    margin-left: 10px;
  }
  .notice__items__tab {
    position: relative;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 54px;
    background: #eee;
    border: solid 1px #a4a4a4;
    font-size: 14px;
    line-height: 1.3;
  }
  .notice__items__tab--important {
    color: #ff4b00 !important;
  }
  .notice__items__tab--important span {
    display: flex;
    align-items: center;
  }
  .notice__items__tab--important span > i {
    margin-right: 5px;
  }
  .notice__items__tab.is-active {
    background: #fff;
    border-bottom-color: #fff;
    z-index: 2;
    pointer-events: none;
  }
  .notice__items__contents {
    position: relative;
    top: -1px;
    z-index: 1;
  }
  .notice__items__contents > div:nth-child(n+2) {
    display: none;
  }
  .notice__items__content {
    padding: 15px 25px;
    border-top: solid 1px #a4a4a4;
  }
  .notice__items__content__title {
    display: none;
  }
  .notice__items__content__body ul > li {
    display: flex;
    padding: .5em .5em;
  }
  .notice__items__content__body ul > li > span:nth-child(1) {
    flex: 0 0 9em;
  }
  .notice__items__content__body ul > li > span:nth-child(2) {
    flex: 1 0 0%;
    max-width: 100%;
  }
 
}
@media only screen and (max-width: 767px) {
  .notice {
    margin-bottom: 50px;
    padding-bottom: 30px;
  }
  .notice__topItem {
    padding: .75em;
  }
  .notice__items__tabs {
    display: none;
  }
  .notice__items__contents > div .notice__items__content__body {
    display: none;
  }
  .notice__items__content {
    margin-top: -1px;
  }
  .notice__items__content__title {
    box-sizing: border-box;
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 10px;
    border: solid 1px #a4a4a4;
    background: #eee;
    font-size: 14px;
    line-height: 1.3;
    color: #005ab4;
  }
  .notice__items__content__title > span {
    display: flex;
    align-items: center;
  }
  .notice__items__content__title > span > i {
    margin-right: 8px;
  }
  .notice__items__content__title > i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 33px;
    height: 33px;
  }
  .notice__items__content__title > i::before, .notice__items__content__title > i::after {
    transition: transform .3s ease;
    position: absolute;
    display: block;
    content: "";
    width: 20px;
    height: 2px;
    background: #005ab4;
    left: 7px;
    top: 15px;
  }
  .notice__items__content__title > i::after {
    transform: rotate(90deg);
  }
  .notice__items__content__title.is-open > i::after {
    transform: rotate(0);
  }
  .notice__items__content__title--important {
    color: #ff4b00;
  }
  .notice__items__content__body ul > li {
    display: block;
    padding: 5px 10px;
  }
  .notice__items__content__body ul > li > span {
    display: block;
  }
  .notice__items__content__body p {
    margin-bottom: 1em;
  }
  
  .notice__items__content__body .secrityComment {
   margin-top: 10px;
}  
  
  .notice__items__content__body .secrityComment p{
  margin-bottom:0;
}
  
  
}

/* search
================================================== */
.search__lead {
  margin-bottom: .2em;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.search__lead em {
  font-size: 24px;
  color: #005ab4;
}
.search__modelNumber {
  margin-bottom: 15px;
  text-align: center;
}
.search__modelNumber a {
  position: relative;
  display: inline-block;
  padding-left: 16px;
  font-size: 14px;
  line-height: 1;
}
.search__modelNumber a::after {
  position: absolute;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: #005ab4;
  transform: rotate(-45deg);
  left: 0;
  top: 2px;
}
.search__form {
  max-width: 600px;
  margin: 0 auto 40px;
}
.search__input {
  display: flex;
}
.search__input .txt {
  flex: 1 0 0%;
}
.search__input .txt input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 50px;
  padding: 0 30px;
  border: solid 2px #f6aa00;
  border-radius: 25px 0 0 25px;
  background: #ffffc7;
  font-size: 16px;
}
.search__input .txt input:focus::-webkit-input-placeholder {
  color: transparent;
}
.search__input .txt input:focus::-moz-placeholder {
  color: transparent;
}
.search__input .txt input:focus::-ms-input-placeholder {
  color: transparent;
}
.search__input .txt input:focus::placeholder {
  color: transparent;
}
.search__input .img {
  flex: 0 0 58px;
}
.search__exception {
  margin-bottom: 40px;
  font-size: 16px;
  text-align: center;
}
.search__exception dt {
  margin-bottom: .25em;
}
.search__listLink {
  font-size: 18px;
  text-align: center;
}
.search__listLink .iLink02 {
  background-position: left center;
}
.search--lower {
  padding: 0;
  border: none;
}
.search--lower h2 {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .search__exception dt br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .search__lead {
    font-size: 18px;
  }
  .search__lead em {
    font-size: 21px;
  }
  .search__form {
    margin-bottom: 20px;
  }
  .search__input .txt input {
    transform: none;
    padding: 0 15px;
    font-size: 14px;
  }
  .search__exception {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .search__exception dd a {
    font-size: 14px;
  }
  .search__listLink a {
    font-size: 15px;
  }
  .search--lower h2 {
    margin-bottom: 30px;
  }
}

/* purpose
================================================== */
.purpose__item__title > span {
  position: absolute;
  display: block;
  background: #e3eff9;
}
.purpose__item__title > span::before, .purpose__item__title > span::after {
  transition: transform .3s ease;
  position: absolute;
  display: block;
  content: "";
  height: 2px;
  background: #005ab4;
}
.purpose__item__title > span::after {
  transform: rotate(90deg);
}
@media (min-width: 768px) {
  .purpose__items {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .purpose__item {
    box-sizing: border-box;
    width: 252px;
    margin: 0 20px 40px;
    border: solid 1px #005ab4;
  }
  .purpose__item__title {
    position: relative;
    cursor: pointer;
  }
  .purpose__item__title > h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 3.5em;
    background: #005ab4;
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
  }
  .purpose__item__title > i {
    transition: background .3s ease;
    display: block;
    padding: 30px 0;
    background: #fff;
    text-align: center;
  }
  .purpose__item__title > i img {
    height: 66px;
    width: auto;
  }
  .purpose__item__title > span {
    right: 1px;
    bottom: 1px;
    width: 24px;
    height: 24px;
  }
  .purpose__item__title > span::before, .purpose__item__title > span::after {
    width: 14px;
    left: 6px;
    top: 12px;
  }
  .purpose__item__title::after {
    transition: opacity .3s esse;
    opacity: 0;
    display: block;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -16px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 14px 20px 14px;
    border-color: transparent transparent #eeeeee transparent;
  }
  .purpose__item__body {
    display: none;
    position: absolute;
    left: 0;
    width: 100%;
    padding-top: 12px;
    background: transparent;
    z-index: 10;
  }
  .purpose__item__body .section__grid {
    padding-top: 45px;
    padding-bottom: 10px;
    background: #eee;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.15);
  }
  .purpose__item.is-active .purpose__item__title > i {
    background: #e3eff9;
  }
  .purpose__item.is-active .purpose__item__title > span::after {
    transform: rotate(0);
  }
  .purpose__item.is-active .purpose__item__title::after {
    opacity: 1;
  }
}
@media only screen and (max-width: 767px) {
  .purpose__item {
    margin-bottom: 2px;
  }
  .purpose__item__title {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 10px;
    background: #e3eff9;
  }
  .purpose__item__title > h3 {
    order: 2;
    margin: 0;
    font-size: 16px;
    color: #005ab4;
  }
  .purpose__item__title > h3 br {
    display: none;
  }
  .purpose__item__title > i {
    order: 1;
    margin-right: 5px;
    width: 40px;
    text-align: center;
  }
  .purpose__item__title > i img {
    height: 20px;
    width: auto;
  }
  .purpose__item__title > span {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 33px;
    height: 33px;
  }
  .purpose__item__title > span::before, .purpose__item__title > span::after {
    width: 20px;
    height: 2px;
    left: 7px;
    top: 15px;
  }
  .purpose__item__title.is-open > span::after {
    transform: rotate(0);
  }
  .purpose__item__body {
    display: none;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}

/* recycle
================================================== */
@media only screen and (max-width: 767px) {
  .recycle {
    padding-bottom: 0;
  }
}

/* modalContents
================================================== */
#modalContentsWrap {
  display: none;
}

/* nenga
================================================== */
.nenga__title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.2;
}
.section.nenga dl dd img{
  max-width:960px;
  width:100%;
  height:auto;
}

