@charset "UTF-8";
.container {
  padding-top: 0;
}
.container .btn-main {
  transition: opacity 0.3s ease;
}

.home .secTtl {
  width: 100%;
  padding-top: 42px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  position: relative;
  z-index: 1;
}
.home .secTtl .en {
  width: 100%;
  color: #A1C800;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .home .secTtl {
    padding-top: 68px;
    margin-bottom: 50px;
    font-size: 23px;
  }
  .home .secTtl .en {
    font-size: 64px;
  }
}

#secMV {
  width: 100%;
  height: 750px;
  padding-top: 26.6vw;
  background: url(../images/home/mv_bg-sp.jpg) center/cover no-repeat;
  color: #fff;
}
#secMV .txtWrap {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
#secMV .ttl {
  margin-bottom: 45px;
  font-size: 36px;
  font-weight: 700;
  line-height: 0.8889;
}
#secMV .ttl span {
  letter-spacing: -0.36em;
}
#secMV .txt1 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 900;
  line-height: 2;
}
#secMV .txt2 {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 2;
  display: flex;
  align-items: center;
  grid-gap: 15px;
}
#secMV .txt2 .txt {
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
#secMV .txt2 .line {
  width: 100%;
  height: 1px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  #secMV {
    height: 850px;
    padding-top: 0;
    background-image: url(../images/home/mv_bg-pc.jpg);
  }
  #secMV > .inner {
    height: 100%;
    display: flex;
    align-items: center;
  }
  #secMV .txtWrap {
    max-width: 505px;
    padding-top: 16%;
    margin: 0 0 0 auto;
  }
  #secMV .ttl {
    font-size: 70px;
    line-height: 0.4571;
    white-space: nowrap;
  }
  #secMV .txt1, #secMV .txt2 {
    padding-left: 10px;
  }
}

.bnrArea {
  padding: 50px 0 43px;
}
.bnrArea .slider {
  width: 100%;
  margin-bottom: 1px;
}
.bnrArea .slideItem a, .bnrArea .slideItem img {
  width: 100%;
  display: block;
}
.bnrArea .swiper-pagination {
  position: relative;
  bottom: 0;
}
.bnrArea .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 10px;
  background-color: #d9d9d9;
  opacity: 1;
}
.bnrArea .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #A1C800;
}
@media screen and (min-width: 768px) {
  .bnrArea {
    padding: 100px 0 80px;
  }
  .bnrArea > .inner {
    max-width: 793px;
  }
  .bnrArea .slider {
    margin-bottom: 17px;
  }
}

#secProduct {
  padding: 0 0 70px;
}
#secProduct > .inner {
  width: 100%;
}
#secProduct .list {
  width: 100%;
  max-width: 400px;
  padding: 0;
  margin: 0 auto 40px;
  display: grid;
  grid-gap: 5px;
}
#secProduct .listItem {
  height: 170px;
  color: #fff;
  text-decoration: none;
  display: block;
  position: relative;
}
#secProduct .listItem .ttl {
  padding-top: 45px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  position: relative;
  line-height: 20px;
  z-index: 2;
}
#secProduct .listItem .ttl small {
  font-size: 10px;
  font-weight: 700;
  line-height: 20px;
}
#secProduct .listItem .overlay {
  width: 100%;
  height: 60px;
  margin-top: auto;
  background-color: rgba(0, 0, 0, 0.6);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  transform-origin: bottom;
  transition: 0.5s;
}
#secProduct .listItem .overlay p {
  margin-bottom: 0;
  font-size: 10px;
  line-height: 1.6;
}
#secProduct .listItem .overlay span {
  width: 125px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #A1C800;
  font-size: 12px;
  display: none;
  align-items: center;
  justify-content: center;
}
#secProduct .listItem .img {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: absolute;
  top: 0;
  left: 0;
}
#secProduct .listItem .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#secProduct .listItem:hover {
  opacity: 1;
}
#secProduct .listItem:hover .overlay {
  height: 100%;
  padding-top: 88px;
  background-color: rgba(161, 200, 0, 0.8);
}
#secProduct .listItem:hover .overlay p {
  display: none;
}
#secProduct .listItem:hover .overlay span {
  display: flex;
}
@media screen and (min-width: 768px) {
  #secProduct {
    padding: 0 0 100px;
  }
  #secProduct > .inner {
    width: calc(100% - 40px);
  }
  #secProduct .list {
    max-width: 100%;
    margin-bottom: 38px;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 0;
  }
  #secProduct .listItem {
    height: 240px;
  }
  #secProduct .listItem .ttl {
    padding-top: 60px;
    font-size: 20px;
    font-weight: 700;
    line-height: 32px;
  }
  #secProduct .listItem .ttl small {
    font-size: 14px;
    line-height: 32px;
  }
  #secProduct .listItem .overlay {
    height: 100px;
  }
  #secProduct .listItem .overlay p {
    padding: 0 10px;
    font-size: 11px;
    line-height: 1.8571;
  }
  #secProduct .listItem .overlay span {
    width: calc(100% - 20px);
    max-width: 200px;
    height: 40px;
    font-size: 16px;
  }
  #secProduct .listItem:hover .overlay {
    padding: 0 0 45px;
    align-items: flex-end;
  }
}
@media screen and (min-width: 992px) {
  #secProduct .listItem {
    height: 400px;
  }
  #secProduct .listItem .ttl {
    padding-top: 55%;
    font-size: 24px;
  }
  #secProduct .listItem .overlay {
    height: 100px;
  }
  #secProduct .listItem .overlay p {
    font-size: 14px;
  }
  #secProduct .listItem .overlay span {
    height: 60px;
  }
  #secProduct .listItem:hover .overlay {
    padding: 0 0 66px;
  }
}

.secSearch {
  padding: 42px 0 50px;
  margin-bottom: 70px;
  background: url(../images/home/search_bg-sp.jpg) center/cover no-repeat;
}
.secSearch .secTtl {
  color: #fff;
  margin-bottom: 40px;
}
.secSearch .list {
  width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 20px;
}
.secSearch .list a {
  padding: 4.5px 20px;
  background-color: #fff;
  border-radius: 50px;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}
.secSearch .list a:hover {
  background-color: #000;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .secSearch {
    padding: 16px 0 100px;
    margin-bottom: 100px;
    background-image: url(../images/home/search_bg-pc.jpg);
  }
  .secSearch .secTtl {
    padding-top: 90px;
    margin-bottom: 80px;
  }
  .secSearch .list {
    max-width: 790px;
    margin: 0 auto;
    justify-content: center;
    grid-gap: 20px 30px;
  }
  .secSearch .list a {
    padding: 9px 30px;
    font-size: 20px;
  }
}



.secContact {
  padding: 50px 0 68px;
  background-color: #A1C800;
  color: #fff;
  line-height: 1.48;
}
.secContact .ttl {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.secContact .list {
  width: 100%;
  max-width: 400px;
  padding: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  grid-gap: 27px;
}
.secContact .listItem {
  padding: 22px 9px 0;
  background-color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.secContact .listItem .ttl {
  margin-bottom: 20px;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.secContact .listItem img {
  display: block;
}
.secContact .listItem img.img01, .secContact .listItem img.img04 {
  width: 56px;
  margin-bottom: 20px;
}
.secContact .listItem img.img02 {
  width: 118px;
  margin: 10px 0;
}
.secContact .listItem img.img03 {
  width: 58px;
  margin: 9px 0 0;
}
.secContact .listItem .txt {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}
.secContact .listItem .txt strong {
  color: #A1C800;
  font-weight: 700;
}
.secContact .listItem .countList {
  padding: 0 0 0 13px;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 18px;
  counter-reset: contact_list 0;
}
.secContact .listItem .countList li::before {
  counter-increment: contact_list 1;
  content: "STEP" counter(contact_list, decimal-leading-zero);
  margin-bottom: 11px;
  color: #A1C800;
  font-size: 14px;
  font-weight: 700;
  font-family: "Oswald", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: block;
}
.secContact .listItem .countList li p {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3125;
}
.secContact .listItem .countList li p small {
  font-size: 12px;
  line-height: 1.25;
  display: inline-block;
}
.secContact .listItem .btn-main {
  width: 205px;
  height: 36px;
  margin: 0 auto -16px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .secContact {
    padding: 50px 0 100px;
  }
  .secContact .ttl {
    margin-bottom: 34px;
    font-size: 48px;
    line-height: 2.0625;
  }
  .secContact .list {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
  .secContact .listItem:nth-child(2) {
    transition-delay: 0.1s;
  }
  .secContact .listItem:nth-child(3) {
    transition-delay: 0.2s;
  }
  .secContact .listItem .ttl {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.4;
  }
  .secContact .listItem img {
    display: block;
  }
  .secContact .listItem img.img01, .secContact .listItem img.img04 {
    width: 64px;
    margin: 10px auto 40px;
  }
  .secContact .listItem img.img02 {
    width: 135px;
    margin: 8px 0 5px;
  }
  .secContact .listItem img.img03 {
    width: 67px;
  }
  .secContact .listItem .txt {
    font-size: 14px;
    line-height: 1.5;
  }
  .secContact .listItem .countList {
    padding: 0 0 0 6px;
    margin-bottom: 30px;
    grid-gap: 20px;
  }
  .secContact .listItem .countList li p {
    font-size: 14px;
    line-height: 1.7143;
  }
  .secContact .listItem .countList li p small {
    font-size: 10px;
  }
  .secContact .listItem .countList li::before {
    margin-bottom: 0;
    font-size: 16px;
    flex-shrink: 0;
  }
  .secContact .listItem .btn-main {
    width: calc(100% - 20px);
    max-width: 234px;
    height: 41px;
    margin: auto auto -20px;
  }
}
@media screen and (min-width: 992px) {
  .secContact .list {
    grid-gap: 27px;
  }
  .secContact .listItem {
    padding: 30px 16px 0;
  }
  .secContact .listItem .ttl {
    margin-bottom: 26px;
    font-size: 22px;
  }
  .secContact .listItem .countList li {
    display: flex;
    align-items: flex-start;
    grid-gap: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .secContact .listItem .ttl {
    font-size: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .secContact .listItem.item2 {
    padding: 30px 20px 0;
  }
}

.secTopics {
  padding: 40px 0 50px;
  background-color: #EBEBEB;
}
.secTopics > .inner {
  width: 100%;
}
.secTopics .secTtl {
  margin-bottom: 32px;
}
.secTopics .listWrap {
  width: 100%;
  padding: 5px 0 34px;
  background-color: #fff;
}
.secTopics .list {
  width: calc(100% - 40px);
  padding: 0;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}
.secTopics .list li {
  padding: 17px 0 7px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  font-weight: 700;
  position: relative;
}
.secTopics .list li time {
  margin-bottom: 1px;
  color: #C8C8C8;
  font-size: 14px;
  line-height: 1;
  display: block;
}
.secTopics .list li a {
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-gap: 5px;
}
.secTopics .list li a::after {
  content: "";
  width: 21px;
  height: 21px;
  background: url(../images/icon_arrow-bk.svg) center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}
.secTopics .btn-main {
  margin-top: -20px;
}
@media screen and (min-width: 768px) {
  .secTopics {
    padding: 35px 0 80px;
  }
  .secTopics > .inner {
    width: calc(100% - 40px);
    max-width: 900px;
  }
  .secTopics .listWrap {
    padding: 35px 0;
  }
  .secTopics .list {
    max-width: 750px;
  }
  .secTopics .list li {
    padding: 14px 0 15px;
    display: flex;
    align-items: center;
    grid-gap: 30px;
  }
  .secTopics .list li time {
    font-size: 16px;
    flex-shrink: 0;
  }
  .secTopics .list li a {
    width: 100%;
  }
  .secTopics .btn-main {
    width: 234px;
    height: 41px;
  }
}

.secAsite {
  padding: 40px 0 70px;
}
.secAsite .secTtl {
  margin-bottom: 22px;
  text-align: left;
}
.secAsite .secTtl .en {
  text-align: left;
}
.secAsite .list {
  width: 100%;
  padding: 0;
  margin-bottom: 30px;
}
.secAsite .listItem {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  color: #000;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  grid-gap: 17px;
}
.secAsite .listItem:hover {
  color: #000;
}
.secAsite .listItem .img {
  width: 80px;
  height: 64.5px;
  position: relative;
  flex-shrink: 0;
}
.secAsite .listItem .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.secAsite .listItem .txtWrap {
  width: 100%;
}
.secAsite .listItem .txtWrap p {
  margin-bottom: 0;
  font-weight: 700;
}
.secAsite .listItem .txtWrap p.time {
  padding-top: 3px;
  margin-bottom: 3px;
  color: #C8C8C8;
  font-size: 12px;
  line-height: 1;
}
.secAsite .listItem .txtWrap p.ttl {
  font-size: 16px;
  line-height: 1.2;
}
.secAsite .listItem .txtWrap .tags {
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 10px;
}
.secAsite .listItem .txtWrap .tags li {
  padding: 3px 10px;
  background-color: #000;
  border-radius: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .secAsite {
    padding: 84px 0 100px;
  }
  .secAsite > .inner {
    display: flex;
    align-items: flex-start;
    grid-gap: 10px;
  }
  .secAsite .secTtl {
    width: 326px;
    flex-shrink: 0;
  }
  .secAsite .contentsWrap {
    width: 100%;
    padding-top: 30px;
  }
  .secAsite .list {
    margin-bottom: 50px;
  }
  .secAsite .listItem {
    align-items: center;
    grid-gap: 20px;
  }
  .secAsite .listItem .img {
    width: 160px;
    height: 129px;
  }
  .secAsite .listItem .txtWrap p.time {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .secAsite .listItem .txtWrap .tags {
    margin-top: 14px;
    grid-gap: 15px;
  }
  .secAsite .listItem .txtWrap .tags li {
    padding: 5px 20px;
    font-size: 14px;
  }
  .secAsite .btn-main {
    margin-right: 0;
  }
}
@media screen and (min-width: 992px) {
  .secAsite > .inner {
    grid-gap: 100px;
  }
}

.menuArea .list {
  width: 100%;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.menuArea .list li {
  height: 124px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.menuArea .list li.item1 {
  background-image: url(../images/home/menu_img01.jpg);
}
.menuArea .list li.item2 {
  background-image: url(../images/home/menu_img02.jpg);
}
.menuArea .list li.item3 {
  background-image: url(../images/home/menu_img03.jpg);
}
.menuArea .list li.item4 {
  background-image: url(../images/home/menu_img04.jpg);
}
.menuArea .list li a {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.menuArea .list li a small {
  font-size: 9px;
}
.menuArea .list li a:hover {
  background-color: transparent;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4);
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .menuArea .list {
    grid-template-columns: repeat(4, 1fr);
  }
  .menuArea .list li {
    height: 240px;
  }
  .menuArea .list li a {
    font-size: 32px;
    line-height: 0.625;
  }
  .menuArea .list li a small {
    font-size: 15px;
  }
}

.secInfo {
  padding: 50px 0;
  background: url(../images/home/info_bg.jpg) center/cover no-repeat;
}
.secInfo .infoTtl {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}
.secInfo .infoTtl img {
  width: 200px;
  display: block;
}
.secInfo .infoTtl span {
  padding: 9px 10px;
  background-color: #A1C800;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.secInfo .list {
  width: calc(100% + 40px);
  padding: 0;
  margin: 0 0 0 -20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 6px;
}
.secInfo .listItem {
  padding-bottom: 7px;
  background-color: #fff;
}
.secInfo .listItem:nth-child(2n+2) {
  transition-delay: 0.1s;
}
.secInfo .listItem img {
  width: 100%;
  margin-bottom: 10px;
  display: block;
}
.secInfo .listItem a {
  color: #000;
  text-decoration: none;
}
.secInfo .listItem p {
  padding: 0 28px 0 6px;
  margin-bottom: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.17;
  position: relative;
}
.secInfo .listItem p::after {
  content: "";
  width: 23px;
  height: 23px;
  background: #F19900 url(../images/home/info_arrow.svg) center/12px no-repeat;
  position: absolute;
  top: -2px;
  right: 6px;
}
@media screen and (min-width: 768px) {
  .secInfo {
    padding: 100px 0 80px;
  }
  .secInfo .infoTtl {
    margin-bottom: 60px;
    flex-direction: row;
    justify-content: space-between;
    grid-gap: 70px;
  }
  .secInfo .infoTtl img {
    width: 34%;
    max-width: 407px;
    flex-shrink: 0;
  }
  .secInfo .infoTtl span {
    width: 100%;
    padding: 14px 24px 16px;
    font-size: 24px;
    text-align: right;
  }
  .secInfo .list {
    width: 100%;
    margin: 0;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px 10px;
  }
  .secInfo .listItem {
    padding-bottom: 10px;
  }
  .secInfo .listItem:nth-child(3n+1) {
    transition-delay: 0s;
  }
  .secInfo .listItem:nth-child(3n+2) {
    transition-delay: 0.1s;
  }
  .secInfo .listItem:nth-child(3n+3) {
    transition-delay: 0.2s;
  }
  .secInfo .listItem img {
    margin-bottom: 12px;
  }
  .secInfo .listItem p {
    padding: 0 40px 0 8px;
    font-size: 12px;
    line-height: 1.4286;
  }
  .secInfo .listItem p::after {
    width: 35px;
    height: 35px;
    background-size: 15px;
    top: 2px;
  }
}
@media screen and (min-width: 992px) {
  .secInfo .list {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 30px 10px;
  }
}
@media screen and (min-width: 1200px) {
  .secInfo .list {
    grid-gap: 50px 25px;
  }
  .secInfo .listItem:nth-child(4n+1) {
    transition-delay: 0s;
  }
  .secInfo .listItem:nth-child(4n+2) {
    transition-delay: 0.1s;
  }
  .secInfo .listItem:nth-child(4n+3) {
    transition-delay: 0.2s;
  }
  .secInfo .listItem:nth-child(4n+4) {
    transition-delay: 0.3s;
  }
  .secInfo .listItem p {
    padding: 0 43px 0 8px;
    font-size: 14px;
  }
}