@charset "UTF-8";
/* home common */
.u-sp-show {
  display: none !important;
}

.u-sp-hide {
  display: block !important;
}

@media screen and (max-width: 767px) {
  .u-sp-show {
    display: block !important;
  }
  .u-sp-hide {
    display: none !important;
  }
}
.home .component__btn {
  display: flex;
  justify-content: center;
  margin-top: 70px;
}
.home .component__btn a.btn {
  font-weight: 500;
  line-height: 1;
  min-width: 370px;
  border: 1px solid #333;
  padding: 13px 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .home .component__btn a.btn {
    min-width: 100%;
    width: 100%;
    font-size: 16px;
    padding: 3.714vw 0;
  }
}
.home .component__btn a.btn:hover {
  text-decoration: none;
}
.home .component__btn a.btn span.transition_arrow {
  width: 25px;
  height: 25px;
  background: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 7px;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .home .component__btn a.btn span.transition_arrow {
    width: 5.714vw;
    height: 5.714vw;
  }
}
.home .component__btn a.btn span.transition_arrow > img {
  transition: all 0.3s ease-out;
}
.home .component__btn a.btn span.transition_arrow .arrow_right {
  transition: transform 0.3s ease-out;
  stroke: #fff;
}
.home .component__btn a.btn:hover {
  background-color: #333;
  color: #fff;
}
.home .component__btn a.btn:hover span.transition_arrow {
  background-color: white;
}
.home .component__btn a.btn:hover span.transition_arrow > img {
  opacity: 1;
  transform: translateX(3px);
}
.home .component__btn a.btn:hover span.transition_arrow .arrow_right {
  stroke: #333;
}

.btn_more {
  display: block;
  margin: 0 auto;
}
.btn_more a {
  display: block;
  width: 400px;
  height: 70px;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .btn_more a {
    border-top: 1px #fff solid;
    border-right: 1px #fff solid;
    border-bottom: 1px #fff solid;
    border-left: 1px #fff solid;
    display: block;
    width: 100%;
    height: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .btn_more a .link_cover {
    padding: 0;
  }
}
.btn_more a .link_cover p.text {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_more a .link_cover p.text span {
  display: inline-block;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  font-weight: 500;
  line-height: 70px;
  text-align: center;
  padding-right: 10px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .btn_more a .link_cover p.text span {
    font-weight: bold;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .btn_more a .link_cover p.text span {
    line-height: 50px;
  }
}
@media screen and (min-width: 1024px) {
  .btn_more a:hover .link_cover img {
    opacity: 1;
  }
  .btn_more a:hover::before {
    width: 100%;
    height: 100%;
  }
  .btn_more a:hover::after {
    width: 100%;
    height: 100%;
  }
}
.btn_more a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/home/btn_top_line.png);
  top: 0;
  right: 0;
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.3s;
  transform: translate(15px, -15px);
}
@media screen and (max-width: 1024px) {
  .btn_more a::before {
    content: none;
  }
}
.btn_more a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/home/btn_btm_line.png);
  bottom: 0;
  left: 0;
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.3s;
  transform: translate(-15px, 15px);
}
@media screen and (max-width: 1024px) {
  .btn_more a::after {
    content: none;
  }
}
.btn_more a:hover::before {
  transform: translate(0, 0);
}
.btn_more a:hover::after {
  transform: translate(0, 0);
}

a span.component__circle_hover {
  margin-left: 5px;
  width: 25px;
  height: 25px;
  background: #333;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
a span.component__circle_hover::before {
  transition: all 0.3s;
  content: "";
  position: absolute;
  background-image: url(../images/common/icon-arrow.svg);
  width: 16px;
  height: 9px;
  background-size: cover;
  top: 50%;
  left: 50%;
  transform: translate(-200%, -50%);
  display: block;
}
a span.component__circle_hover::after {
  transition: all 0.3s;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/common/icon-arrow.svg);
  width: 16px;
  height: 9px;
  background-size: cover;
  display: block;
}
a span.component__circle_hover.white {
  background: #fff;
}
@media screen and (max-width: 767px) {
  a span.component__circle_hover.white {
    width: 20px;
    height: 20px;
  }
}
a span.component__circle_hover.white::before {
  background-image: url(../images/common/icon-arrow_bk.png);
}
@media screen and (max-width: 767px) {
  a span.component__circle_hover.white::before {
    width: 12px;
    height: 8px;
  }
}
a span.component__circle_hover.white::after {
  background-image: url(../images/common/icon-arrow_bk.png);
}
@media screen and (max-width: 767px) {
  a span.component__circle_hover.white::after {
    width: 12px;
    height: 8px;
  }
}
a:hover span.component__circle_hover::before {
  transform: translate(-50%, -50%);
}
a:hover span.component__circle_hover::after {
  transform: translate(200%, -50%);
}

.head2_01 {
  line-height: 1;
  color: #fff;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .head2_01 {
    text-align: center;
  }
}
.head2_01 .en {
  display: block;
  font-size: 60px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1080px) {
  .head2_01 .en {
    font-size: 5.556vw;
    margin-bottom: 1.389vw;
  }
}
@media screen and (max-width: 767px) {
  .head2_01 .en {
    line-height: 1.125;
    font-size: 40px;
    margin-bottom: 0;
  }
}
.head2_01 .jp {
  display: block;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .head2_01 .jp {
    font-size: 1.852vw;
  }
}
@media screen and (max-width: 767px) {
  .head2_01 .jp {
    font-size: 20px;
    line-height: 2.25;
  }
}

.home section {
  padding: 0;
}

/* home-mainVisual */
.home-mainVisual {
  width: 100%;
  background: #000;
  padding-top: 70.9px; /* header height */
  padding-bottom: 2.656vw;
}
@media screen and (max-width: 767px) {
  .home-mainVisual {
    height: 148.533vw;
    margin-top: 54px;
    padding-top: 0;
    /*padding-bottom: 9.867vw;*/
  }
}
.home-mainVisual .mainVisual-slider {
  width: 100%;
  margin-bottom: 2.813vw;
}
@media screen and (max-width: 767px) {
  .home-mainVisual .mainVisual-slider {
    width: 100%;
    margin: 0 auto;
    height: 138.667vw;
  }
}
.home-mainVisual .mainVisual-slider__item {
  width: 100%;
  height: 33.203vw;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home-mainVisual .mainVisual-slider__item {
    height: 138.667vw;
  }
}
.home-mainVisual .mainVisual-slider__item .wrap {
  width: calc(100% - 7.813vw);
  height: 100%;
  margin: 0 0 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home-mainVisual .mainVisual-slider__item .wrap {
    width: 100%;
  }
}
.home-mainVisual .mainVisual-slider__item .wrap a {
  display: block;
  width: 100%;
  height: 100%;
}
.home-mainVisual .mainVisual-slider__item h2 {
  position: absolute;
  top: 2.578vw;
  left: 0;
  color: #fff;
  font-weight: bold;
  text-align: left;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .home-mainVisual .mainVisual-slider__item h2 {
    position: absolute;
    top: 4vw;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    z-index: 1;
  }
}
.home-mainVisual .mainVisual-slider__item h2 .main {
  font-size: 4.063vw;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .home-mainVisual .mainVisual-slider__item h2 .main {
    font-size: 8vw;
    line-height: 1.33;
  }
}
.home-mainVisual .mainVisual-slider__item h2 .main span {
  font-size: 3.594vw;
}
@media screen and (max-width: 767px) {
  .home-mainVisual .mainVisual-slider__item h2 .main span {
    font-size: 6.933vw;
  }
}
.home-mainVisual .mainVisual-slider__item h2 .sub {
  font-size: 1.875vw;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .home-mainVisual .mainVisual-slider__item h2 .sub {
    font-size: 4.267vw;
  }
}
.home-mainVisual .mainVisual-slider__item .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.home-mainVisual .mainVisual-slider__item .image img {
  width: 100%;
}
.home-mainVisual .thumbnail {
  width: 93.125vw;
  margin-left: 3.906vw;
  margin-right: 2.969vw;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .home-mainVisual .thumbnail {
    display: none;
  }
}
.home-mainVisual .thumbnail__item {
  width: 17.656vw;
  height: 8.984vw;
  padding: 1.875vw 1.875vw 0 1.875vw;
  margin-right: 0.938vw;
  border: #fff solid 1px;
  position: relative;
  cursor: pointer;
}
.home-mainVisual .thumbnail__item .text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 4.531vw;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.72) 75%, rgba(255, 255, 255, 0) 100%);
}
.home-mainVisual .thumbnail__item .text p {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #333;
  font-size: 1.25vw;
  font-weight: bold;
  line-height: 1.5;
  padding-left: 1.094vw;
}
.home-mainVisual .thumbnail__item.slick-current {
  position: relative;
}
.home-mainVisual .thumbnail__item.slick-current::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border: #e4007f solid 3px;
  z-index: 100;
}
.home-mainVisual .thumbnail__item.slick-current .text p {
  color: #e4007f;
}
.home-mainVisual .thumbnail__item.slick-current.thumb_01 {
  background-size: cover;
  background-repeat: no-repeat;
}
.home-mainVisual .thumbnail__item.thumb_01 {
  background-size: cover;
  background-repeat: no-repeat;
}
.home-mainVisual .thumbnail__item.thumb_02 {
  background-size: cover;
  background-repeat: no-repeat;
}
.home-mainVisual .thumbnail__item.thumb_03 {
  background-size: cover;
  background-repeat: no-repeat;
}
.home-mainVisual .thumbnail__item.thumb_04 {
  background-size: cover;
  background-repeat: no-repeat;
}
.home-mainVisual .thumbnail__item.thumb_05 {
  background-size: cover;
  background-repeat: no-repeat;
}

.mainVisual-slider .slick-arrow {
  position: absolute;
  top: 19.219vw;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .mainVisual-slider .slick-arrow {
    top: 50%;
    width: 8.571vw;
    height: 8.571vw;
  }
}
.mainVisual-slider .prev-arrow {
  left: 1.563vw;
}
@media screen and (max-width: 767px) {
  .mainVisual-slider .prev-arrow {
    left: 20px;
  }
}
.mainVisual-slider .next-arrow {
  right: 1.563vw;
}
@media screen and (max-width: 767px) {
  .mainVisual-slider .next-arrow {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual-slider .slick-dots {
    bottom: -5.867vw;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual-slider .slick-dots li {
    margin: 0 1.429vw;
    width: 15.3vw;
    height: 1.429vw;
  }
}
@media screen and (max-width: 767px) {
  .mainVisual-slider .slick-dots li button:before {
    content: "";
    width: 15.3vw;
    height: 1.429vw;
    background: #fff;
    opacity: 1;
  }
}
.mainVisual-slider .slick-dots li.slick-active button:before {
  background: #e4007f;
}

.thumbnail .slick-track {
  transform: unset !important;
}

.home-topNews {
  width: 100%;
  height: 50px;
}
@media screen and (max-width: 1080px) {
  .home-topNews {
    height: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-topNews {
    height: auto;
    margin: 12px auto;
    margin-top: 60px;
  }
}
.home-topNews .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .home-topNews .container {
    display: block;
  }
}
.home-topNews .wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .home-topNews .wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
.home-topNews .topNews_head2 {
  width: 180px;
  color: #000;
  font-size: 20px;
  font-weight: 900;
  line-height: 50px;
  text-align: left;
  white-space: nowrap;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .home-topNews .topNews_head2 {
    width: 16.667vw;
    font-size: 1.852vw;
    line-height: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-topNews .topNews_head2 {
    width: 180px;
    font-size: 20px;
    margin-bottom: 0;
    line-height: 50px;
  }
}
.home-topNews .topNews_head2::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  transform: translateY(-50%);
  width: 37px;
  height: 40px;
  background: url(../images/home/news_img_01.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .home-topNews .topNews_head2::after {
    width: 3.426vw;
    height: 3.704vw;
  }
}
.home-topNews .topNews-slider {
  padding-left: 10px;
  width: 665px;
  height: 50px;
}
@media screen and (max-width: 1080px) {
  .home-topNews .topNews-slider {
    padding-left: 0.926vw;
    width: 61.574vw;
    height: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-topNews .topNews-slider {
    padding-left: 0;
    width: 100%;
    height: auto;
  }
}
.home-topNews .topNews-slider__item {
  width: 100%;
  height: 50px;
  line-height: 50px;
}
@media screen and (max-width: 1080px) {
  .home-topNews .topNews-slider__item {
    height: 4.63vw;
    line-height: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-topNews .topNews-slider__item {
    height: auto;
    padding: 10px 0 20px;
  }
}
.home-topNews .topNews-slider__item a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .home-topNews .topNews-slider__item a {
    display: block;
  }
}
.home-topNews .topNews-slider span {
  display: inline-block;
}
@media screen and (max-width: 1080px) {
  .home-topNews .topNews-slider span {
    font-size: 1.481vw;
  }
}
@media screen and (max-width: 767px) {
  .home-topNews .topNews-slider span {
    font-size: 16px;
  }
}
.home-topNews .topNews-slider span.date {
  font-weight: bold;
  margin-right: 1em;
  flex-shrink: 0;
}
.home-topNews .topNews-slider span.category {
  flex-shrink: 0;
  /*width: 118px;
          height: 25px;
          line-height: 25px;*/
  line-height: 1;
  padding: 3px 1em;
  letter-spacing: 0.025em;
  border: #333 solid 1px;
  border-radius: 20px;
  text-align: center;
  margin-right: 1em;
}
@media screen and (max-width: 1080px) {
  .home-topNews .topNews-slider span.category {
    /* width: 10.926vw;
              height: 2.315vw;
              line-height: 2.315vw;*/
  }
}
@media screen and (max-width: 767px) {
  .home-topNews .topNews-slider span.category {
    /*width: 33.714vw;
              height: 7.143vw;
              line-height: 7.143vw;*/
  }
}
.home-topNews .topNews-slider span.text {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  /* ブラウザがサポートしていない場合のフェールセーフ */
}
@media screen and (max-width: 767px) {
  .home-topNews .topNews-slider span.text {
    margin-top: 10px;
    display: block;
    width: 100%;
    line-height: 1.5;
  }
}
.home-topNews .more a {
  display: block;
  width: 187px;
  font-weight: 500;
  line-height: 50px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .home-topNews .more a {
    font-size: 1.481vw;
    width: 17.315vw;
    line-height: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-topNews .more a {
    text-align: right;
    width: auto;
    font-size: 16px;
    line-height: 1.5;
    padding-right: 30px;
  }
}
.home-topNews .more a::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(../images/home/icon_arrow_bk.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .home-topNews .more a::after {
    width: 2.315vw;
    height: 2.315vw;
  }
}
@media screen and (max-width: 767px) {
  .home-topNews .more a::after {
    width: 20px;
    height: 20px;
  }
}

.home-applications {
  width: 100%;
  background: #000 url(../images/home/application_bg_02.jpg) no-repeat center bottom;
  background-size: 100% auto;
  position: relative;
}
.home-applications::before {
  position: absolute;
  top: 0;
  right: 3.906vw;
  content: "";
  width: 41.094vw;
  height: 40.859vw;
  background: url(../images/home/application_bg_01.png) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .home-applications::before {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .home-applications::after {
    position: absolute;
    /*bottom: 32.857vw;*/
    bottom: 115px;
    left: 0;
    content: "";
    width: 100%;
    /*height: 472.571vw;*/
    height: 1654px;
    background: url(../images/home/application_bg_02_sp.png) no-repeat;
    background-size: 100% auto;
  }
}
.home-applications .container {
  padding-top: 145px;
  padding-bottom: 70px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .home-applications .container {
    padding-top: 13.426vw;
    padding-bottom: 6.481vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container {
    padding-top: 20px;
    /*padding-bottom: 15.143vw;*/
    padding-bottom: 53px;
  }
}
.home-applications .container .head2_01 {
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .head2_01 {
    margin-bottom: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .head2_01 {
    /*margin-bottom: 6.857vw;*/
    margin-bottom: 24px;
  }
}
.home-applications .container .lead {
  width: 540px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 50px;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .lead {
    width: 50vw;
    font-size: 1.852vw;
    margin-bottom: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .lead {
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
  }
}
.home-applications .container .box {
  margin-bottom: 70px;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .box {
    margin-bottom: 6.481vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .box {
    /*margin-bottom: 9.714vw;*/
    margin-bottom: 34px;
  }
}
.home-applications .container .box a {
  width: 100%;
  display: flex;
  padding: 30px;
  background: #fff;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1080px) {
  .home-applications .container .box a {
    padding: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .box a {
    display: block;
    padding: 15px;
  }
}
.home-applications .container .box a:hover {
  text-decoration: none;
}
.home-applications .container .box a:hover .link {
  text-decoration: underline;
}
.home-applications .container .box a:hover img {
  opacity: 1;
}
.home-applications .container .box a .thumb {
  width: 320px;
  height: 185px;
  margin-right: 20px;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .box a .thumb {
    width: 29.63vw;
    height: 17.13vw;
    margin-right: 1.852vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .box a .thumb {
    width: 100%;
    /*height: 49.714vw;*/
    height: 174px;
    margin-right: 0;
    /*margin-bottom: 4.286vw;*/
    margin-bottom: 15px;
  }
}
.home-applications .container .box a .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-applications .container .box a .text {
  position: relative;
  width: calc(100% - 320px - 20px);
}
@media screen and (max-width: 1080px) {
  .home-applications .container .box a .text {
    width: calc(100% - 29.63vw - 1.852vw);
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .box a .text {
    width: 100%;
  }
}
.home-applications .container .box a .text h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 15px;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .box a .text h3 {
    font-size: 1.852vw;
    margin-bottom: 1.389vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .box a .text h3 {
    font-size: 20px;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
  }
}
.home-applications .container .box a .text p {
  line-height: 1.875;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .box a .text p {
    font-size: 1.481vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .box a .text p {
    font-size: 16px;
    line-height: 1.5;
    /*margin-bottom: 4.571vw;*/
    margin-bottom: 16px;
  }
}
.home-applications .container .box a .text .link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .home-applications .container .box a .text .link {
    position: relative;
    text-align: right;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
  }
}
.home-applications .container .box a .text .link img {
  margin-left: 5px;
}
.home-applications .container .application-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .application-list {
    margin-bottom: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list {
    flex-direction: column;
  }
}
.home-applications .container .application-list__item {
  width: 330px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  margin-right: 45px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .home-applications .container .application-list__item {
    width: 30%;
    height: 27.778vw;
    margin-right: 4%;
    margin-bottom: 3.704vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item {
    width: 100%;
    /*height: 84.571vw;*/
    height: 296px;
    margin-right: 0;
    /*margin-bottom: 9.714vw;*/
    margin-bottom: 34px;
  }
}
.home-applications .container .application-list__item:nth-child(3n) {
  margin-right: 0;
}
.home-applications .container .application-list__item a {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  width: 100%;
  background: #fff;
  padding: 15px 15px 10px 15px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item a {
    padding: 15px;
  }
}
.home-applications .container .application-list__item a .cat1 {
  position: absolute;
  top: 6px;
  left: 0;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  color: #fff;
  background: #000;
  padding: 0 10px;
  z-index: 2;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .application-list__item a .cat1 {
    font-size: 1.481vw;
    top: 0.556vw;
    height: 2.315vw;
    line-height: 2.315vw;
    padding: 0 0.926vw 0 0.926vw;
    margin-bottom: 3.704vw;
    z-index: 1;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item a .cat1 {
    font-size: 16px;
    /*top: 1.714vw;*/
    top: 6px;
    /*height: 7.143vw;*/
    height: 25px;
    /*line-height: 7.143vw;*/
    line-height: 25px;
    padding: 0 0.5em;
  }
}
.home-applications .container .application-list__item a .cat1::after {
  position: absolute;
  top: 0;
  right: -10px;
  content: "";
  width: 20px;
  height: 25px;
  background: #000;
  transform: skewX(-20deg);
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .home-applications .container .application-list__item a .cat1::after {
    right: -0.926vw;
    width: 1.852vw;
    height: 2.315vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item a .cat1::after {
    right: -10px;
    content: "";
    width: 5.714vw;
    height: 7.143vw;
  }
}
.home-applications .container .application-list__item a .cat2 {
  position: absolute;
  top: 6px;
  right: 0;
  display: inline-block;
  height: 25px;
  line-height: 25px;
  min-width: 4em;
  color: #fff;
  background: #000;
  padding: 0 10px 0 10px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .home-applications .container .application-list__item a .cat2 {
    font-size: 1.481vw;
    top: 0.556vw;
    height: 2.315vw;
    line-height: 2.315vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item a .cat2 {
    font-size: 16px;
    top: 6px;
    height: 25px;
    line-height: 25px;
    padding: 0 0.5em 0 1em;
  }
}
.home-applications .container .application-list__item a .cat2::after {
  position: absolute;
  top: 0;
  left: -10px;
  content: "";
  width: 20px;
  height: 25px;
  background: #000;
  transform: skewX(-20deg);
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .home-applications .container .application-list__item a .cat2::after {
    left: -0.926vw;
    width: 1.852vw;
    height: 2.315vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item a .cat2::after {
    left: -10px;
    content: "";
    width: 20px;
    height: 25px;
  }
}
.home-applications .container .application-list__item a div.item_content {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 1;
}
.home-applications .container .application-list__item a div.item_content .thumb {
  width: 100%;
  height: 170px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1200px) {
  .home-applications .container .application-list__item a div.item_content .thumb {
    height: 15.741vw;
    margin-bottom: 0.37vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item a div.item_content .thumb {
    height: 170px;
    margin-bottom: 5px;
  }
}
.home-applications .container .application-list__item a div.item_content .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-applications .container .application-list__item a div.item_content h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  flex-grow: 1;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .home-applications .container .application-list__item a div.item_content h3 {
    font-size: 1.852vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item a div.item_content h3 {
    font-size: 16px;
  }
}
.home-applications .container .application-list__item a div.item_content p.desc {
  margin-top: 10px;
  margin-bottom: 30px;
}
.home-applications .container .application-list__item a div.item_content .link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .home-applications .container .application-list__item a div.item_content .link {
    bottom: 0.926vw;
    right: 1.389vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .application-list__item a div.item_content .link {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    bottom: 17px;
    right: 17px;
  }
}
.home-applications .container .application-list__item a div.item_content .link img {
  margin-left: 5px;
}
.home-applications .container .application-list__item a div.item_content:hover {
  text-decoration: none;
}
.home-applications .container .application-list__item a div.item_content:hover .link {
  text-decoration: underline;
}
.home-applications .container .application-list__item a div.item_content:hover img {
  opacity: 1;
}
.home-applications .container .more {
  display: block;
  width: 430px;
  height: 100px;
  margin: 0 auto;
  border: #fff solid 2px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .more {
    width: 39.815vw;
    height: 9.259vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .more {
    width: 100%;
    height: 50px;
  }
}
.home-applications .container .more::before {
  position: absolute;
  top: -2px;
  left: -2px;
  content: "";
  width: 30px;
  height: 30px;
  background: #000;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .more::before {
    width: 2.778vw;
    height: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .more::before {
    content: none;
  }
}
.home-applications .container .more::after {
  position: absolute;
  bottom: -2px;
  right: -2px;
  content: "";
  width: 30px;
  height: 30px;
  background: #000;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .more::after {
    width: 2.778vw;
    height: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .more::after {
    content: none;
  }
}
.home-applications .container .more span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  padding-right: 30px;
  white-space: nowrap;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .more span {
    font-size: 1.852vw;
    padding-right: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .more span {
    font-size: 16px;
    padding-right: 7.143vw;
  }
}
.home-applications .container .more span::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background: url(../images/home/icon_arrow_w.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .home-applications .container .more span::after {
    width: 2.315vw;
    height: 2.315vw;
  }
}
@media screen and (max-width: 767px) {
  .home-applications .container .more span::after {
    width: 5.714vw;
    height: 5.714vw;
  }
}

.home-linkAria {
  background-color: rgba(190, 196, 209, 0.2);
  padding: 70px 0 !important;
}
@media screen and (max-width: 1024px) {
  .home-linkAria {
    padding: 35px 0;
  }
}
.home-linkAria .ctas {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .home-linkAria .ctas {
    flex-direction: column;
  }
}
.home-linkAria .ctas .cta a {
  position: relative;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .home-linkAria .ctas .cta a {
    border-top: 1px #e4007f solid;
    border-right: 1px #e4007f solid;
    border-bottom: 1px #333 solid;
    border-left: 1px #333 solid;
    display: block;
    padding: 16px 25px;
  }
}
.home-linkAria .ctas .cta a .link_cover {
  padding: 40px 42px;
}
@media screen and (max-width: 1024px) {
  .home-linkAria .ctas .cta a .link_cover {
    padding: 0;
  }
}
.home-linkAria .ctas .cta a .link_cover p.sub {
  font-weight: 500;
  line-height: 31.5px;
  text-align: center;
}
.home-linkAria .ctas .cta a .link_cover p.text {
  font-weight: bold;
  font-size: 24px;
  line-height: 31.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .home-linkAria .ctas .cta a .link_cover p.text {
    font-weight: bold;
    font-size: 20px;
    line-height: 31.5px;
    justify-content: center;
  }
}
.home-linkAria .ctas .cta a .link_cover p.text .circle {
  width: 25px;
  height: 25px;
  background: #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .home-linkAria .ctas .cta a .link_cover p.text .circle {
    margin-left: 5px;
  }
}
@media screen and (min-width: 1024px) {
  .home-linkAria .ctas .cta a:hover .link_cover img {
    opacity: 1;
  }
  .home-linkAria .ctas .cta a:hover::before {
    width: 100%;
    height: 100%;
  }
  .home-linkAria .ctas .cta a:hover::after {
    width: 100%;
    height: 100%;
  }
}
.home-linkAria .ctas .cta a::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/common/footer_upper_line.svg);
  top: 0;
  right: 0;
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.3s;
  transform: translate(15px, -15px);
}
@media screen and (max-width: 1024px) {
  .home-linkAria .ctas .cta a::before {
    content: none;
  }
}
.home-linkAria .ctas .cta a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/common/footer_bottom_line.svg);
  bottom: 0;
  left: 0;
  position: absolute;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transition: all 0.3s;
  transform: translate(-15px, 15px);
}
@media screen and (max-width: 1024px) {
  .home-linkAria .ctas .cta a::after {
    content: none;
  }
}
.home-linkAria .ctas .cta a:hover::before {
  transform: translate(0, 0);
}
.home-linkAria .ctas .cta a:hover::after {
  transform: translate(0, 0);
}

.home-Products {
  width: 100%;
  background: #fff;
}
.home-Products .container {
  padding-top: 70px;
}
@media screen and (max-width: 1080px) {
  .home-Products .container {
    padding-top: 6.481vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .container {
    padding-top: 70px;
  }
}
.home-Products .container .head2_01 {
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .home-Products .container {
    padding-bottom: 30px;
  }
}
.home-Products .wrap {
  padding-bottom: 100px;
}
@media screen and (max-width: 1080px) {
  .home-Products .wrap {
    padding-bottom: 9.259vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .wrap {
    padding-bottom: 70px;
  }
}
.home-Products .head3_01 {
  width: 100%;
  height: 51px;
  background: url(../images/home/section_tit_bg.jpg) no-repeat;
  background-size: contain;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding-left: 20px;
  line-height: 51px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1080px) {
  .home-Products .head3_01 {
    height: 4.722vw;
    font-size: 2.222vw;
    padding-left: 1.852vw;
    line-height: 4.722vw;
    margin-bottom: 1.389vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .head3_01 {
    height: 10vw;
    line-height: 10vw;
    font-size: 5.714vw;
    padding-left: 2.857vw;
    background: url(../images/home/section_tit_bg_sp.png) no-repeat;
    background-size: contain;
  }
}
.home-Products .head3_01 span {
  color: #e4007f;
}
.home-Products .row {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .home-Products .row {
    flex-direction: column;
  }
}
.home-Products .row .col {
  width: 46.3%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .home-Products .row .col {
    width: 100%;
  }
}
.home-Products .row .col .title {
  width: 100%;
  aspect-ratio: 500/200;
  margin-bottom: 15px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .home-Products .row .col .title {
    margin-bottom: 1.389vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .title {
    aspect-ratio: 335/134;
    margin-bottom: 10px;
  }
}
.home-Products .row .col .title span {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  color: #fff;
  font-size: 50px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .home-Products .row .col .title span {
    left: 3.241vw;
    font-size: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .title span {
    left: 23px;
    font-size: 30px;
  }
}
.home-Products .row .col.left .title {
  background: url(../images/home/products_bg_01.jpg) no-repeat;
  background-size: cover;
}
.home-Products .row .col.right .title {
  background: url(../images/home/products_bg_02.jpg) no-repeat;
  background-size: cover;
}
.home-Products .row .col .detail {
  line-height: 1.875;
  padding-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .detail {
    font-size: 16px;
    padding-bottom: 32px;
  }
}
.home-Products .row .col .about {
  display: inline-block;
  width: fit-content;
  font-weight: 500;
  line-height: 1.875;
  padding-right: 16px;
  text-decoration: underline;
  position: relative;
  margin-bottom: 35px;
}
@media screen and (max-width: 1080px) {
  .home-Products .row .col .about {
    padding-right: 1.481vw;
    margin-bottom: 3.241vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .about {
    font-size: 16px;
    padding-right: 16px;
  }
}
.home-Products .row .col .about::after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 8px;
  height: 8px;
  border-top: #333 solid 1px;
  border-right: #333 solid 1px;
  transform: rotate(45deg) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .about::after {
    width: 8px;
    height: 8px;
  }
}
.home-Products .row .col .linkBtn {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .linkBtn {
    flex-direction: column;
  }
}
.home-Products .row .col .linkBtn .btn {
  width: 48%;
  border: #333333 solid 1px;
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .linkBtn .btn {
    width: 100%;
    margin-bottom: 15px;
  }
}
.home-Products .row .col .linkBtn .btn a {
  display: block;
  width: 100%;
  height: 50px;
  text-align: center;
  transition: 0.3s;
}
@media screen and (max-width: 1080px) {
  .home-Products .row .col .linkBtn .btn a {
    height: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .linkBtn .btn a {
    height: 50px;
  }
}
.home-Products .row .col .linkBtn .btn a span {
  display: inline-block;
  font-weight: 500;
  line-height: 50px;
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .home-Products .row .col .linkBtn .btn a span {
    line-height: 4.63vw;
    padding-right: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .linkBtn .btn a span {
    line-height: 50px;
    font-size: 16px;
    padding-right: 30px;
  }
}
.home-Products .row .col .linkBtn .btn a span::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/home/icon_arrow_bk.svg) no-repeat;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 1080px) {
  .home-Products .row .col .linkBtn .btn a span::after {
    width: 2.315vw;
    height: 2.315vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .row .col .linkBtn .btn a span::after {
    width: 20px;
    height: 20px;
  }
}
.home-Products .row .col .linkBtn .btn a:hover {
  background: #333;
}
.home-Products .row .col .linkBtn .btn a:hover span {
  color: #fff;
}
.home-Products .row .col .linkBtn .btn a:hover span::after {
  background: url(../images/home/icon_arrow_w.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .home-Products .row .col + .col {
    margin-top: 75px;
  }
}
.home-Products .text_01 {
  line-height: 1.875;
}
@media screen and (max-width: 1080px) {
  .home-Products .text_01 {
    font-size: 1.481vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .text_01 {
    font-size: 16px;
  }
}
.home-Products .component__btn {
  margin-top: 50px;
}
@media screen and (max-width: 1080px) {
  .home-Products .component__btn {
    margin-top: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .component__btn {
    margin-top: 33px;
  }
}
.home-Products .bnr {
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .home-Products .bnr {
    margin-top: 3.241vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .bnr {
    flex-direction: column;
    margin-top: 9.429vw;
  }
}
.home-Products .bnr .col {
  width: 45%;
  height: 120px;
  border: #bec4d1 solid 1px;
}
@media screen and (max-width: 1080px) {
  .home-Products .bnr .col {
    height: 11.111vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .bnr .col {
    width: 100%;
    height: 120px;
  }
}
.home-Products .bnr .col a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.3s;
}
.home-Products .bnr .col a:hover {
  opacity: 0.7;
}
.home-Products .bnr .col a .thumb {
  width: 150px;
  height: 100%;
}
@media screen and (max-width: 1080px) {
  .home-Products .bnr .col a .thumb {
    width: 13.889vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .bnr .col a .thumb {
    width: 42.857vw;
  }
}
.home-Products .bnr .col a .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-Products .bnr .col a .text {
  width: calc(100% - 150px);
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .home-Products .bnr .col a .text {
    width: calc(100% - 13.889vw);
  }
}
@media screen and (max-width: 767px) {
  .home-Products .bnr .col a .text {
    width: calc(100% - 42.857vw);
  }
}
.home-Products .bnr .col a .text p {
  width: 306px;
  padding-right: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 1080px) {
  .home-Products .bnr .col a .text p {
    width: 26vw;
    padding-right: 2.778vw;
    left: 2.778vw;
    font-size: 1.852vw;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .bnr .col a .text p {
    width: 40vw;
    left: 5.714vw;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .home-Products .bnr .col + .col {
    margin-top: 18px;
  }
}

.home-about {
  width: 100%;
  background: #fff;
}
.home-about .container {
  padding-bottom: 120px;
}
@media screen and (max-width: 1080px) {
  .home-about .container {
    padding-bottom: 11.111vw;
  }
}
@media screen and (max-width: 767px) {
  .home-about .container {
    padding-bottom: 70px;
  }
}
.home-about .container .head2_01 {
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .home-about .container .head2_01 {
    margin-bottom: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-about .container .head2_01 {
    margin-bottom: 42px;
  }
}
@media screen and (max-width: 767px) {
  .home-about .container .head2_01 .en {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .home-about .container .head2_01 .jp {
    line-height: 1.5;
  }
}
.home-about .container .grid {
  width: 100%;
  display: grid;
  grid-template-rows: 300px 300px;
  grid-template-columns: 180px 180px 180px 180px 180px 180px;
}
@media screen and (max-width: 1200px) {
  .home-about .container .grid {
    grid-template-rows: 25vw 25vw;
    grid-template-columns: 16.6666666667% 16.6666666667% 16.6666666667% 16.6666666667% 16.6666666667% 16.6666666667%;
  }
}
@media screen and (max-width: 767px) {
  .home-about .container .grid {
    display: block;
  }
}
.home-about .container .grid .col a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col a {
    width: 100%;
    height: 71.429vw;
  }
}
.home-about .container .grid .col a:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  z-index: 1;
  transition: 0.3s;
}
.home-about .container .grid .col span.title {
  position: absolute;
  left: 15px;
  bottom: 10px;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  padding-right: 35px;
  white-space: nowrap;
}
@media screen and (max-width: 1080px) {
  .home-about .container .grid .col span.title {
    left: 1.389vw;
    bottom: 0.926vw;
    font-size: 2.222vw;
    padding-right: 3.241vw;
  }
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col span.title {
    font-size: 5.714vw;
    left: 50%;
    bottom: 2.857vw;
    padding-right: 8.571vw;
    transform: translateX(-50%);
  }
}
.home-about .container .grid .col span.title::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  content: "";
  width: 25px;
  height: 25px;
  background: url(../images/home/icon_arrow_tr.svg) no-repeat;
  background-size: contain;
}
@media screen and (max-width: 1080px) {
  .home-about .container .grid .col span.title::after {
    width: 2.315vw;
    height: 2.315vw;
  }
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col span.title::after {
    width: 5.714vw;
    height: 5.714vw;
  }
}
.home-about .container .grid .col span.ruby {
  position: absolute;
  bottom: 42px;
  left: 46px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 1080px) {
  .home-about .container .grid .col span.ruby {
    bottom: 3.889vw;
    left: 4.259vw;
    font-size: 1.296vw;
  }
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col span.ruby {
    font-size: 3.429vw;
    bottom: 10.571vw;
    left: 20.429vw;
  }
}
.home-about .container .grid .col._01 {
  grid-column: 1/4;
  grid-row: 1/2;
  background: url(../images/home/about_img_01.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col._01 {
    background: url(../images/home/about_img_01_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.home-about .container .grid .col._02 {
  grid-column: 4/7;
  grid-row: 1/2;
  background: url(../images/home/about_img_02.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col._02 {
    background: url(../images/home/about_img_02_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.home-about .container .grid .col._03 {
  grid-column: 1/3;
  grid-row: 2/3;
  background: url(../images/home/about_img_03.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col._03 {
    background: url(../images/home/about_img_03_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.home-about .container .grid .col._04 {
  grid-column: 3/5;
  grid-row: 2/3;
  background: url(../images/home/about_img_04.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col._04 {
    background: url(../images/home/about_img_04_sp.jpg) no-repeat;
    background-size: cover;
  }
}
.home-about .container .grid .col._05 {
  grid-column: 5/7;
  grid-row: 2/3;
  background: url(../images/home/about_img_05.jpg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .home-about .container .grid .col._05 {
    background: url(../images/home/about_img_05_sp.jpg) no-repeat;
    background-size: cover;
  }
}

.home-news {
  width: 100%;
  background: #f2f3f6;
}
.home-news .container {
  padding-top: 45px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1080px) {
  .home-news .container {
    padding-top: 4.167vw;
    padding-bottom: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-news .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.home-news .container .row {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .home-news .container .row {
    display: block;
  }
}
.home-news .container .head2_01 {
  color: #333;
}
@media screen and (max-width: 767px) {
  .home-news .container .head2_01 {
    margin-bottom: 25px;
  }
}
.home-news .container .news-list {
  width: 725px;
}
@media screen and (max-width: 1080px) {
  .home-news .container .news-list {
    width: 67.13vw;
  }
}
@media screen and (max-width: 767px) {
  .home-news .container .news-list {
    width: 100%;
  }
}
.home-news .container .news-list li {
  border-bottom: #333 solid 1px;
}
.home-news .container .news-list li a {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 20px;
  text-decoration: none;
}
@media screen and (max-width: 1080px) {
  .home-news .container .news-list li a {
    padding-top: 2.315vw;
    padding-bottom: 1.852vw;
  }
}
@media screen and (max-width: 767px) {
  .home-news .container .news-list li a {
    display: block;
    padding-top: 25px;
    padding-bottom: 15px;
  }
}
.home-news .container .news-list li a:hover .text {
  text-decoration: underline;
}
.home-news .container .news-list li a span {
  display: block;
}
@media screen and (max-width: 767px) {
  .home-news .container .news-list li a span {
    display: inline-block;
  }
}
.home-news .container .news-list li a .date {
  width: 90px;
  margin-right: 15px;
  font-weight: bold;
}
@media screen and (max-width: 1080px) {
  .home-news .container .news-list li a .date {
    font-size: 1.481vw;
    width: 8.333vw;
    margin-right: 1.389vw;
  }
}
@media screen and (max-width: 767px) {
  .home-news .container .news-list li a .date {
    width: auto;
    font-size: 16px;
    margin-right: 15px;
  }
}
.home-news .container .news-list li a .category {
  text-align: center;
  /* width: 120px;
              height: 24px;*/
  /*line-height: 24px;*/
  line-height: 1;
  margin-right: 25px;
  font-weight: 500;
  padding: 3px 1em;
  border: #333333 solid 1px;
  border-radius: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 1080px) {
  .home-news .container .news-list li a .category {
    font-size: 1.481vw;
    /*width: 11.111vw;
                  height: 2.222vw;
                  line-height: 2.222vw;*/
    margin-right: 2.315vw;
  }
}
@media screen and (max-width: 767px) {
  .home-news .container .news-list li a .category {
    font-size: 16px;
  }
}
.home-news .container .news-list li a .text {
  width: 475px;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1080px) {
  .home-news .container .news-list li a .text {
    width: 43.981vw;
    font-size: 1.481vw;
  }
}
@media screen and (max-width: 767px) {
  .home-news .container .news-list li a .text {
    margin-top: 10px;
    width: 100%;
    font-size: 16px;
  }
}
.home-news .container .component__btn {
  margin-top: 50px;
}
@media screen and (max-width: 1080px) {
  .home-news .container .component__btn {
    margin-top: 4.63vw;
  }
}
@media screen and (max-width: 767px) {
  .home-news .container .component__btn {
    margin-top: 33px;
  }
}

.home-column .container {
  padding-top: 100px;
  padding-bottom: 120px;
}
@media screen and (max-width: 1080px) {
  .home-column .container {
    padding-top: 9.259vw;
    padding-bottom: 11.111vw;
  }
}
@media screen and (max-width: 767px) {
  .home-column .container {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.home-column .container .head2_01 {
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 1080px) {
  .home-column .container .head2_01 {
    margin-bottom: 2.778vw;
  }
}
@media screen and (max-width: 767px) {
  .home-column .container .head2_01 {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .home-column .container .head2_01 .jp {
    line-height: 1.5;
  }
}
.home-column .container .column-slider {
  width: 100%;
}
.home-column .container .column-slider__item {
  /*width: 330px;*/
  height: 300px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
  margin: 22.5px;
}
@media screen and (max-width: 1080px) {
  .home-column .container .column-slider__item {
    width: 30%;
    height: 27.778vw;
    margin: 2.083vw;
  }
}
@media screen and (max-width: 767px) {
  .home-column .container .column-slider__item {
    width: 100%;
    height: 300px;
  }
}
.home-column .container .column-slider__item a {
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 15px 15px 10px 15px;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .home-column .container .column-slider__item a {
    padding: 1.389vw 1.389vw 0.926vw 1.389vw;
  }
}
@media screen and (max-width: 767px) {
  .home-column .container .column-slider__item a {
    padding: 4.286vw;
  }
}
.home-column .container .column-slider__item a .thumb {
  width: 100%;
  height: 170px;
  margin-bottom: 4px;
}
@media screen and (max-width: 1080px) {
  .home-column .container .column-slider__item a .thumb {
    height: 15.741vw;
    margin-bottom: 0.37vw;
  }
}
@media screen and (max-width: 767px) {
  .home-column .container .column-slider__item a .thumb {
    height: 170px;
    margin-bottom: 4px;
  }
}
.home-column .container .column-slider__item a .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-column .container .column-slider__item a h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1080px) {
  .home-column .container .column-slider__item a h3 {
    font-size: 1.852vw;
  }
}
@media screen and (max-width: 767px) {
  .home-column .container .column-slider__item a h3 {
    font-size: 16px;
  }
}
.home-column .container .column-slider__item a .link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: absolute;
  bottom: 10px;
  right: 15px;
}
@media screen and (max-width: 1080px) {
  .home-column .container .column-slider__item a .link {
    bottom: 0.926vw;
    right: 1.389vw;
  }
}
@media screen and (max-width: 767px) {
  .home-column .container .column-slider__item a .link {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    bottom: 15px;
    right: 15px;
  }
}
.home-column .container .column-slider__item a .link img {
  margin-left: 5px;
}
.home-column .container .column-slider__item a:hover {
  text-decoration: none;
}
.home-column .container .column-slider__item a:hover .link {
  text-decoration: underline;
}
.home-column .container .column-slider__item a:hover img {
  opacity: 1;
}

.column-slider .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  z-index: 10;
}
@media screen and (max-width: 1080px) {
  .column-slider .slick-arrow {
    width: 3.704vw;
    height: 3.704vw;
  }
}
@media screen and (max-width: 767px) {
  .column-slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.column-slider .prev-arrow {
  left: -18px;
}
@media screen and (max-width: 1080px) {
  .column-slider .prev-arrow {
    left: -1.667vw;
  }
}
@media screen and (max-width: 767px) {
  .column-slider .prev-arrow {
    left: -15px;
  }
}
.column-slider .next-arrow {
  right: -18px;
}
@media screen and (max-width: 1080px) {
  .column-slider .next-arrow {
    right: -1.667vw;
  }
}
@media screen and (max-width: 767px) {
  .column-slider .next-arrow {
    right: -15px;
  }
}/*# sourceMappingURL=home.css.map */