/* ==============
layout
============== */
.l_main {
  width: 940px;
}
.l_section__item {
  margin-top: 50px;
  font-size: 16px;
  letter-spacing: normal;
}

/* ==========================
  追加
========================== */
@media screen and (max-width: 768px) {
  .l_main {
    width: 100%;
  }
}

/* ==============
Common
============== */
/* Icon */
.m_hasIco{
  position: relative;
}
.m_hasIco::before{
  content: "";
  display: block;
  position: absolute;
  margin: auto;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  pointer-events: none;
}
.m_hasIco--center::before{
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.m_hasIco--link{
  padding-left: 1.2em;
}
.m_hasIco--link::before{
  content: "\f105";
  font: 20px FontAwesome;
}

/* 繝ｪ繝ｳ繧ｯ */
.m_link{}
.m_link--action{
  display: inline-block;
  color: inherit;
  text-decoration: none;
  transition: .4s opacity, .4s transform
}
.m_link--action:hover{
  color: inherit;
  text-decoration: none;
  opacity: .6;
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}


@media screen and (min-width: 769px){
  .m_secBody.sp {
    display: none;
  }
}

/* ==============
module
============== */
.m_heading__inner{}
.m_heading--primary{
  position: relative;
  margin-bottom: 40px;
}
.m_heading--primary .m_heading__inner{
  position: absolute;
  top: 50%;
  left: 0;
  width: 40%;
  transform: translateY(-50%);
}
.m_heading--primary .m_heading__ttl{
  text-align: center;
  line-height: 1;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: normal;
}
.m_heading--primary .m_heading__ttl + .m_heading__sub{
  margin-top: 12px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  letter-spacing: normal;
}

.m_heading.m_heading--secondary {
  padding-bottom: 2px;
  border-bottom: 1px solid #0A8B4D;
}
.m_heading.m_heading--secondary .m_heading__ttl{
  padding-bottom: 20px;
  border-bottom: 3px solid #0A8B4D;
  font-size: 24px;
  text-align: center;
}
.m_heading.m_heading--pickup {
  border-color: #D1C307;
}
.m_heading.m_heading--pickup .m_heading__ttl {
  border-color: #D1C307;
}
@media screen and (max-width: 768px){
  .m_heading--primary .m_heading__inner{
    top: 26%;
    width: 100%;
  }
  .m_heading--primary .m_heading__ttl{
    font-size: 4.6vw;
  }
  .m_heading--primary .m_heading__ttl + .m_heading__sub{
    margin-top: 1.8vw;
    font-size: 3.2vw;
  }
  .m_heading--tertiary{
    padding: 0;
    border: none;
  }
  .m_heading--tertiary .m_heading__ttl{
    padding: 12px;
    border-bottom: 1px solid;
  }
  .m_heading--tertiary .m_heading__sub{
    position: static;
    -webkit-transform: none;
            transform: none;
  }
  .m_heading--tertiary .m_heading__ttl + .m_heading__sub{
    margin-top: 12px;
  }
}

/* ==========================
  検索ボックス
========================== */
.m_searchBox{
  margin-top: 50px;
}
.m_searchBox__inner {
  padding: 20px;
  border: 1px solid #6EB291;
  background: #fff;
}
@media screen and (max-width: 768px){
  .m_searchBox__inner {
    padding: 5px 15px 15px;
  }
}

/* タブ */
.m_searchBox__tabLst {
  display: flex;
}
.m_searchBox__tabItm {
  position: relative;
  padding: 12px 35px;
  font-weight: bold;
  font-size: 20px;
  background-color: #D5D5D5;
  cursor: pointer;
  transition: color .2s, background-color .2s;
}
.m_searchBox__tabItm.js_crnt,
.m_searchBox__tabItm:hover {
  color: #fff;
  background-color: #0A8B4D;
}
.m_searchBox__tabItm + .m_searchBox__tabItm {
  margin-left: 5px;
}
.m_searchBox__tabItm.js_crnt {
  padding-left: 50px;
}
.m_searchBox__tabItm.js_crnt::before {
  content: '';
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 22px;
  height: 21px;
  background-image: url(../img/leaf/option_pack/ico_search.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 768px){
  .m_searchBox__tabItm {
    padding: 2.667vw 4vw;
    font-size: 3.2vw;
    flex-basis: auto;
    flex-grow: 1;
  }
  .m_searchBox__tabItm.js_crnt {
    padding-left: 10.6vw;
  }
  .m_searchBox__tabItm.js_crnt::before {
    width: 4.2vw;
    height: 4vw;
  }
  .m_searchBox__tabItm + .m_searchBox__tabItm {
    margin-left: 0.8vw;
  }
}

/* カテゴリリスト */
.m_searchBox__catLst {
  display: flex;
  flex-wrap: wrap;
}
.m_searchBox__catItm {
  padding-left: 1.5em;
  margin-top: 15px;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: color .2s;
}
.m_searchBox__catItm.js_cat_crnt,
.m_searchBox__catItm:hover {
  color: #0A8B4D;
}
.m_searchBox__catItm::before {
  content: '#';
  color: #0A8B4D;
  font-weight: bold;
  font-size: 16px;
  top: -1px;
}
.m_searchBox__catItm.js_cat_crnt::before {
  content: '●';
}
.m_searchBox__catLst__purpose .m_searchBox__catItm {
  width: calc(100% / 3);
}
.m_searchBox__catLst__purpose .m_searchBox__catItm:nth-child(1),
.m_searchBox__catLst__purpose .m_searchBox__catItm:nth-child(2),
.m_searchBox__catLst__purpose .m_searchBox__catItm:nth-child(3) {
  margin-top: 0;
}
/* .m_searchBox__catLst__purpose .m_searchBox__catItm::before {
  width: 13px;
  height: 8px;
  top: 0;
  bottom: 0;
  background-image: url(../img/leaf/option_pack/ico_arrow.svg);
} */
.m_searchBox__catLst__industry .m_searchBox__catItm {
  width: calc(100% / 5);
}
.m_searchBox__catLst__industry .m_searchBox__catItm:nth-child(1),
.m_searchBox__catLst__industry .m_searchBox__catItm:nth-child(2),
.m_searchBox__catLst__industry .m_searchBox__catItm:nth-child(3),
.m_searchBox__catLst__industry .m_searchBox__catItm:nth-child(4),
.m_searchBox__catLst__industry .m_searchBox__catItm:nth-child(5) {
  margin-top: 0;
}
@media screen and (max-width: 768px){
  .m_searchBox__catLst.m_searchBox__catLst__purpose {
    display: block;
  }
  .m_searchBox__catItm {
    font-size: 3.2vw;
  }
  .m_searchBox__catLst__purpose .m_searchBox__catItm {
    width: 100%;
    margin-top: 5px!important;
  }
  .m_searchBox__catLst__industry .m_searchBox__catItm {
    width: 50%;
    margin-top: 10px!important;
  }
  .m_searchBox__catItm::before {
    font-size: 3.2vw;
  }
}


/* キーワード検索 */
.m_searchBox__freewordWrap,
.m_searchBox__freewordBox {
  display: flex;
  align-items: center;
}
.m_searchBox__freewordBox {
  width: 70%;
}
.m_searchBox__freewordTtl {
  position: relative;
  display: block;
  height: 100%;
  padding: 0 30px 0 15px;
  color: #fff;
  font-weight: bold;
  line-height: 30px;
  background-color: #0A8B4D;
}
.m_searchBox__freewordTtl::before {
  content: '';
  display: block;
  position: absolute;
  width: 11px;
  height: 28px;
  margin: auto;
  top: 0;
  bottom: 0;
  right: -7px;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  background-image: url(../img/leaf/option_pack/ico_arrow_searchTtl.svg);
  pointer-events: none;
  z-index: 5;
}
.m_searchBox__freewordTtl::after {
  content: '';
  position: absolute;
  right: -9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 9px;
  border-color: transparent transparent transparent #0A8B4D;
}
.m_searchBox__freewordInput {
  width: 100%;
  max-width: 430px;
}
.m_searchBox__freewordInput input {
  display: block;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 1px 30px;
  font-family: "Yu Gothic", YuGothic, sans-serif;
  font-size: 16px;
  border: 1px solid #707070;
  border-left: none;
  border-right: none;
  border-radius: 0;
  background-color: #fff;
}
.m_searchBox__freewordBtn {
  width: 32px;
  height: 30px;
  font-size: 0;
  border: none;
  background-color: #69B08E;
  background-image: url(../img/leaf/option_pack/ico_search.svg);
  background-size: 19px 18px;
  background-repeat: no-repeat;
  background-position: center center;
}
.m_searchBox__freewordResetBtn {
  display: block;
  flex-grow: 1;
  width: 100%;
  margin-left: 20px;
  padding-left: 1em;
  color: #575757;
  font-weight: bold;
  cursor: pointer;
}
.m_searchBox__freewordResetBtn:hover {
  color: #575757;
}
.m_searchBox__freewordResetBtn::before {
  width: 6px;
  height: 11px;
  top: 0;
  bottom: 0;
  left: 0;
  background-image: url(../img/leaf/option_pack/ico_arrow_gray.svg);
}

.m_searchBox__keywordWrap {
  display: flex;
  margin-top: 15px;
  font-weight: bold;
}
.m_searchBox__keywordTtl {
  min-width: calc(40px + 8em);
  padding-left: 40px;
  font-size: 14px;
}
.m_searchBox__keywordTtl::before {
  width: 19px;
  height: 18px;
  top: 3px;
  left: 10px;
  background-image: url(../img/leaf/option_pack/ico_search_gr.svg);
}
.m_searchBox__keywordLst {
  font-size: 0;
  margin-left: 40px;
}
.m_searchBox__keywordItm {
  display: inline-block;
  margin-right: 40px;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.m_searchBox__keywordItm:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px){
  .m_searchBox__freewordWrap {
    display: block;
    margin-top: 10px;
  }
  .m_searchBox__freewordBox {
    width: 100%;
  }
  .m_searchBox__freewordTtl {
    min-width: calc(7em + 8vw);
    padding: 0 5.3vw 0 2.6vw;
    font-size: 3.2vw;
    line-height: 30px;
  }
  .m_searchBox__freewordInput input {
    padding: 1px 5.3vw;
  }
  .m_searchBox__freewordBtn {
    min-width: 32px;
  }
  .m_searchBox__freewordResetBtn {
    margin-left: 0;
    margin-top: 2.6vw;
    font-size: 4vw;
  }
  .m_searchBox__freewordResetBtn::before {
    width: 6px;
    height: 11px;
  }

  .m_searchBox__keywordWrap {
    display: block;
    margin-top: 15px;
    font-weight: bold;
  }
  .m_searchBox__keywordTtl {
    padding-left: 25px;
  }
  .m_searchBox__keywordTtl::before {
    width: 4vw;
    height: 4vw;
    left: 0;
  }
  .m_searchBox__keywordLst {
    margin-left: 0;
    margin-top: 10px;
  }
  .m_searchBox__keywordItm {
    margin-right: 20px;
    font-size: 14px;
  }
}


#outputWrap {
  display: none;
}
#notFound {
  display: none;
  margin-top: 40px;
}
#searchWord {
  display: inline-block;
  margin-right: 1em;
}


/* ==========================
  追加
========================== */

.m_lineup_pack {
  margin-top: 30px;
  letter-spacing: 0.2px;
}

.m_heading.m_heading--tertiary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 60px;
  padding-left: 23px;
  border-bottom: 3px solid #0A8B4D;
  border-left: 10px solid #0A8B4D;
  font-size: 22px;
}

.m_lineup_pack_list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
}

.m_lineup_pack_listItem {
  position: relative;
  width: 100%;
  max-width: 445px;
	margin-top: 40px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.m_lineup_pack_listItem::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 55px solid #69B08E;
  border-bottom: 55px solid transparent;
}

.m_lineup_pack_listItem:nth-child(n+3) {
  margin-top: 60px;
}

.m_lineup_pack_card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 25px;
  color: #333333;
  background: #fff;
  transition: opacity .3s;
}

.m_lineup_pack_card:hover {
  color: #333333;
  opacity: .6;
  text-decoration: none;
}

.m_lineup_pack_card_heading {
  text-align: center;
}

.m_lineup_pack_card_heading_ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: 26px;
}

.m_lineup_pack_card_heading_ttl span{
  display: block;
  font-size: 20px;
}

.m_lineup_pack_card_img {
  width: 80%;
  margin: 25px auto 0;
  text-align: center;
  line-height: 0;
}

.m_lineup_pack_card_img img {
  max-width: 100%;
  height: auto;
}

.m_lineup_pack_card_txt {
  margin-top: 20px;
  font-size: 16px;
}

.m_lineup_pack_card_tag_wrap {
  margin-top: auto;
}

.m_lineup_pack_card_tagList {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.m_lineup_pack_card_tagItem {
  border: 1px solid #0A8B4D;
  border-radius: 15px;
  margin: 5px 15px 0 0;
  padding: 5px 15px;
  color: #0A8B4D;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.m_lineup_pack_list__pick .m_lineup_pack_listItem::after {
  border-left-color: #D1C307;
}
.m_lineup_pack_list__pick .m_lineup_pack_card_tagItem {
  border: 1px solid #D1C307;
  color: #D1C307;
}

@media screen and (max-width: 768px) {
  .m_lineup_pack {
    width: 100%;
  }

  .m_lineup_pack_list {
    flex-direction: column;
  }

  .m_lineup_pack_listItem {
    max-width: none;
  }

  .m_lineup_pack_listItem::after {
    border-width: 50px;
  }

  .m_lineup_pack_listItem:nth-child(n+1) {
    margin-top: 20px;
  }

  .m_lineup_pack_listItem:last-child {
    margin-bottom: 10px;
  }

  .m_lineup_pack_card {
    max-width: none;
    padding: 20px;
  }

  .m_lineup_pack_card_heading_ttl {
    font-size: 14px;
  }

  .m_lineup_pack_card_heading_ttl span {
    font-size: 17px;
  }

  .m_lineup_pack_card_img {
    margin-top: 15px;
  }

  .m_lineup_pack_card_txt {
    margin-top: 15px;
    font-size: 14px;
  }

  .m_lineup_pack_card_tagList {
    margin-top: 15px;
  }

  .m_lineup_pack_card_tagItem {
    font-size: 12px;
  }
}