/* common ------------------------------------*/
.header-logo {
  opacity: 0;
}

.scroll .header-logo {
  opacity: 1;
}

/* keyvisual ---------------------------------*/
.kv {
  width: 100%;
  height: 100vh;
  min-height: 640px;
  position: relative;
  z-index: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.kv-main {
  width: calc(100% - 20px);
  height: calc(100% - 200px);
  margin: 0 auto;
  margin-top: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.kv-image {
  width: 200%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  -webkit-animation: slide 200000ms linear infinite normal;
          animation: slide 200000ms linear infinite normal;
}

.kv-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: .85;
}

.kv-logo {
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  z-index: 3;
}

.kv-event {
  width: calc(100% - 100px);
  margin: 0 auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
  .kv-event {
    width: 100%;
    padding: 0 10px;
  }
}

.kv-event-list {
  margin-bottom: 30px;
}

.kv-event-list__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.kv-event-list__item a:hover .title {
  text-decoration: underline !important;
}

.kv-event-list__image {
  max-width: 100px;
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  height: 100px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.kv-event-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
}

a:hover .kv-event-list__image img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
          transform: scale3d(1.1, 1.1, 1.1);
}

@media screen and (max-width: 576px) {
  .kv-event-list__image {
    max-width: 80px;
    -ms-flex-preferred-size: 80px;
        flex-basis: 80px;
    height: 80px;
  }
}

.kv-event-list__wrap {
  max-width: calc(100% - 120px);
  -ms-flex-preferred-size: calc(100% - 120px);
      flex-basis: calc(100% - 120px);
}

@media screen and (max-width: 576px) {
  .kv-event-list__wrap {
    max-width: calc(100% - 90px);
    -ms-flex-preferred-size: calc(100% - 90px);
        flex-basis: calc(100% - 90px);
  }
}

.kv-event-list .category li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.6;
}

.kv-event-list .category li:after {
  content: "/";
  margin: 0 2px;
  color: rgba(0, 0, 0, 0.3);
}

.kv-event-list .category li:last-child:after {
  display: none;
}

.kv-event-list .title {
  margin: 5px 0;
  font-size: 1.8rem;
  line-height: 1.4;
}

@media screen and (max-width: 1200px) {
  .kv-event-list .title {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 576px) {
  .kv-event-list .title {
    font-size: 1.4rem;
  }
}

.kv-event-list .date {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.kv-event-more {
  margin: 0 20px;
}

.kv-event-more a {
  font-size: 1.2rem;
  line-height: 1.8;
}

.kv-event-more a:hover {
  text-decoration: underline;
}

.kv-event .swiper-button-next,
.kv-event .swiper-button-prev {
  width: 40px;
  height: 20px;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: static;
  top: 0;
  -webkit-transition: border-color 250ms ease;
  transition: border-color 250ms ease;
}

.kv-event .swiper-button-next:hover,
.kv-event .swiper-button-prev:hover {
  border-color: black;
}

.kv-event .swiper-button-next:before,
.kv-event .swiper-button-prev:before {
  content: "";
  width: 15px;
  height: 6px;
  display: block;
  background-repeat: no-repeat;
  background-size: 100% auto;
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
}

.kv-event .swiper-button-next:after,
.kv-event .swiper-button-prev:after {
  display: none;
}

.kv-event .swiper-button-next {
  left: calc(50% + 40px);
  right: auto;
}

.kv-event .swiper-button-next:before {
  background-image: url(../../assets/images/common/icn_arrow_r.png);
}

.kv-event .swiper-button-next:hover:before {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

.kv-event .swiper-button-prev {
  left: auto;
  right: calc(50% + 40px);
}

.kv-event .swiper-button-prev:before {
  background-image: url(../../assets/images/common/icn_arrow_l.png);
}

.kv-event .swiper-button-prev:hover:before {
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}

/* HTD Style ---------------------------------*/
.htds {
  margin: 120px 0;
  padding: 0 50px;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .htds {
    margin: 80px 0;
    padding: 0;
  }
}

.htds__catch {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  margin-bottom: -5vw;
  position: relative;
  z-index: 1;
  font-size: 10vw;
  color: white;
  text-align: center;
  mix-blend-mode: difference;
}

.htds__image {
  width: 100%;
  min-height: 240px;
  margin-bottom: 80px;
  display: -ms-grid;
  display: grid;
  position: relative;
  z-index: 0;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

@media screen and (max-width: 768px) {
  .htds__image {
    margin-bottom: 60px;
    grid-gap: 10px;
  }
}

@media screen and (max-width: 400px) {
  .htds__image {
    margin-bottom: 40px;
  }
}

.htds__image div {
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (max-width: 768px) {
  .htds__image div:first-child {
    border-radius: 0 10px 10px 0;
  }
  .htds__image div:last-child {
    border-radius: 10px 0 0 10px;
  }
}

.htds__image div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.htds__sub {
  margin-bottom: 10px;
  font-size: 2.4rem;
  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .htds__sub {
    font-size: 1.8rem;
  }
}

.htds__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  font-size: 7rem;
  line-height: 1.2;
  text-align: center;
  color: black;
}

@media screen and (max-width: 768px) {
  .htds__title {
    padding: 0 20px;
    font-size: 4.5rem;
  }
}

.htds__text {
  max-width: 800px;
  margin: 50px auto;
  font-size: 1.8rem;
  line-height: 2;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .htds__text {
    margin: 30px auto;
    padding: 0 20px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 400px) {
  .htds__text {
    text-align: left;
  }
  .htds__text br {
    display: none;
  }
}

.htds__btn {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .htds__btn {
    margin-top: 20px;
  }
}

.htds__btn a {
  height: 60px;
  margin: 0 auto;
  padding: 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid black;
  border-radius: 30px;
  font-size: 1.8rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.htds__btn a:hover {
  background-color: black;
  color: white;
}

@media screen and (max-width: 768px) {
  .htds__btn a {
    height: 50px;
    padding: 0 30px;
    font-size: 1.6rem;
  }
}

.htds-works {
  margin-top: 160px;
  border-radius: 10px;
  background-color: #b5c9c6;
}

@media screen and (max-width: 768px) {
  .htds-works {
    margin: 0 10px;
    margin-top: 100px;
  }
}

.htds-works__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  position: relative;
  top: -40px;
  font-size: 6rem;
  line-height: 1.4;
  text-align: center;
  color: black;
}

@media screen and (max-width: 768px) {
  .htds-works__title {
    top: -25px;
    font-size: 4rem;
  }
}

.htds-works__text {
  font-size: 1.6rem;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .htds-works__text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .htds-works__text {
    padding: 0 20px;
  }
}

.htds-works-list {
  width: 100%;
  padding: 80px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .htds-works-list {
    padding: 60px 0;
    display: block;
  }
}

.htds-works-list__item {
  padding: 0 50px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .htds-works-list__item {
    padding: 40px 20px;
  }
  .htds-works-list__item:first-child {
    padding-top: 0;
  }
  .htds-works-list__item:last-child {
    padding-bottom: 0;
  }
}

.htds-works-list__item:first-child:before {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background-color: white;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .htds-works-list__item:first-child:before {
    width: calc(100% - 40px);
    height: 1px;
    right: 20px;
  }
}

.htds-works-list__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  margin-bottom: -2.5vw;
  display: block;
  position: relative;
  z-index: 2;
  font-size: 5.6vw;
  text-align: center;
  color: white;
  mix-blend-mode: difference;
}

@media screen and (max-width: 768px) {
  .htds-works-list__title {
    margin-bottom: -4vw;
    font-size: 8vw;
  }
}

.htds-works-ui {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .htds-works-ui {
    margin-top: 40px;
  }
}

.htds-works-ui-prev, .htds-works-ui-next {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: white;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .htds-works-ui-prev, .htds-works-ui-next {
    width: 30px;
    height: 30px;
  }
}

.htds-works-ui-prev img, .htds-works-ui-next img {
  width: 16px;
  height: 6px;
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
}

.htds-works-ui-prev:hover img {
  -webkit-transform: translateX(-5px);
          transform: translateX(-5px);
}

.htds-works-ui-next:hover img {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.htds-works-ui-more {
  margin: 0 20px;
}

.htds-works-ui-more a {
  height: 40px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid black;
  border-radius: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 1.6;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

@media screen and (max-width: 768px) {
  .htds-works-ui-more a {
    font-size: 1.3rem;
    height: 30px;
  }
}

.htds-works-ui-more a:hover {
  background-color: black;
  color: white;
}

.htds-porters {
  max-width: 1000px;
  margin: 120px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 992px) {
  .htds-porters {
    display: block;
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

@media screen and (max-width: 768px) {
  .htds-porters {
    margin: 60px auto;
  }
}

.htds-porters__wrap, .htds-porters__image {
  max-width: 400px;
  -ms-flex-preferred-size: 400px;
      flex-basis: 400px;
}

@media screen and (max-width: 992px) {
  .htds-porters__wrap, .htds-porters__image {
    margin: 0 auto;
  }
}

.htds-porters__wrap .logo {
  max-width: 100px;
  margin: 0 auto;
}

.htds-porters__wrap .catch {
  margin: 40px 0;
  font-size: 2.8rem;
  line-height: 1.6;
  text-align: center;
  color: black;
}

@media screen and (max-width: 768px) {
  .htds-porters__wrap .catch {
    margin: 20px 0;
    font-size: 2.2rem;
  }
}

.htds-porters__wrap .text {
  margin: 40px 0;
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .htds-porters__wrap .text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .htds-porters__wrap .text {
    margin: 20px 0;
  }
}

.htds-porters__image {
  overflow: hidden;
  border-radius: 10px;
}

@media screen and (max-width: 992px) {
  .htds-porters__image {
    width: 80%;
    margin-bottom: 40px;
  }
}

/* item --------------------------------------*/
.item {
  margin: 100px 0;
}

@media screen and (max-width: 768px) {
  .item {
    margin: 60px 0;
  }
}

.item-kv {
  height: calc(200px + 20vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .item-kv {
    height: calc(150px + 20vw);
  }
}

@media screen and (max-width: 400px) {
  .item-kv {
    height: calc(110px + 8vw);
  }
}

.item-kv li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.item-kv li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.item__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  margin: 40px 0;
  padding: 0 50px;
  font-size: 3.5rem;
  line-height: 1.6;
  color: black;
}

@media screen and (max-width: 768px) {
  .item__title {
    margin: 20px 0;
    padding: 0 20px;
    font-size: 3rem;
  }
}

.item-list {
  margin: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .item-list {
    margin: 0 20px;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}

.item-list__item {
  max-width: calc(50% - 25px);
  -ms-flex-preferred-size: calc(50% - 25px);
      flex-basis: calc(50% - 25px);
  position: relative;
}

@media screen and (max-width: 768px) {
  .item-list__item {
    max-width: none;
  }
}

.item-list__item:first-child:before, .item-list__item:nth-child(2):before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width: 768px) {
  .item-list__item:first-child:before, .item-list__item:nth-child(2):before {
    display: none;
  }
}

.item-list__item a {
  width: 100%;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .item-list__item a {
    height: 50px;
  }
}

.item-list__item a:before {
  content: "";
  width: 15px;
  height: 6px;
  display: block;
  background-image: url(../../assets/images/common/icn_arrow_r.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 5px;
  top: calc(50% - 3px);
  -webkit-transition: -webkit-transform 250ms ease;
  transition: -webkit-transform 250ms ease;
  transition: transform 250ms ease;
  transition: transform 250ms ease, -webkit-transform 250ms ease;
}

.item-list__item a:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  bottom: 0;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}

.item-list__item a:hover:before {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

.item-list__item a:hover:after {
  background-color: black;
}

.item-list__item figure {
  max-width: 50px;
  -ms-flex-preferred-size: 50px;
      flex-basis: 50px;
  margin: 0 10px;
}

@media screen and (max-width: 768px) {
  .item-list__item figure {
    margin: 0;
    margin-right: 10px;
  }
}

.item-list__item .jp {
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .item-list__item .jp {
    font-size: 1.4rem;
  }
}

.item-list__item .en {
  margin-left: auto;
  margin-right: 30px;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.6);
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}

@media screen and (max-width: 768px) {
  .item-list__item .en {
    margin-right: 20px;
  }
}

/* blog --------------------------------------*/
.blog {
  margin: 120px 0;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .blog {
    margin: 60px 0;
  }
}

.blog__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  padding: 0 50px;
  font-size: 3.5rem;
  line-height: 1.6;
  color: black;
}

@media screen and (max-width: 768px) {
  .blog__title {
    padding: 0 20px;
    font-size: 3rem;
  }
}

.blog-more {
  position: absolute;
  right: 50px;
  top: 20px;
}

@media screen and (max-width: 768px) {
  .blog-more {
    top: 10px;
    right: 20px;
  }
}

.blog-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .blog-more a {
    font-size: 1.2rem;
  }
}

.blog-more a:before {
  content: "";
  width: 40px;
  height: 20px;
  margin-right: 10px;
  display: block;
  background-image: url(../../assets/images/common/icn_arrow_r.png);
  background-position: center;
  background-size: 15px auto;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.blog-more a:hover:before {
  border-color: black;
}

.blog-list {
  width: 100%;
  margin-top: 20px;
  padding: 0 50px;
  overflow-x: scroll;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .blog-list {
    padding: 0 20px;
  }
}

.blog-list__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-list__item {
  max-width: 260px;
  min-width: 260px;
  -ms-flex-preferred-size: 260px;
      flex-basis: 260px;
  margin-right: 50px;
}

@media screen and (max-width: 768px) {
  .blog-list__item {
    max-width: 220px;
    min-width: 220px;
    -ms-flex-preferred-size: 220px;
        flex-basis: 220px;
    margin-right: 30px;
  }
}

.blog-list__image {
  width: 100%;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .blog-list__image {
    height: 220px;
  }
}

.blog-list__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-list__title {
  font-size: 1.6rem;
  line-height: 2;
  margin: 10px 0;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .blog-list__title {
    font-size: 1.4rem;
  }
}

.blog-list-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.blog-list-data .image {
  max-width: 40px;
  -ms-flex-preferred-size: 40px;
      flex-basis: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.blog-list-data .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-list-data__wrap {
  max-width: calc(100% - 50px);
  -ms-flex-preferred-size: calc(100% - 50px);
      flex-basis: calc(100% - 50px);
}

.blog-list-data__wrap span {
  display: block;
  line-height: 1.6;
}

.blog-list-data__wrap .name {
  font-size: 1.3rem;
}

.blog-list-data__wrap .date {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.6);
}

/* business ----------------------------------*/
.business {
  margin: 120px 0;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 992px) {
  .business {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .business {
    margin: 80px 0;
    padding: 0 20px;
  }
}

.business__image {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 992px) {
  .business__image {
    max-width: 480px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
}

.business__image li {
  max-width: calc(50% - 2px);
  -ms-flex-preferred-size: calc(50% - 2px);
      flex-basis: calc(50% - 2px);
  margin-bottom: 4px;
  border-radius: 10px;
  overflow: hidden;
}

.business__image li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.business__wrap {
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  padding: 0 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .business__wrap {
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
  }
}

.business__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  font-size: 3.5rem;
  line-height: 1.6;
  text-align: center;
  color: black;
}

@media screen and (max-width: 768px) {
  .business__title {
    font-size: 3rem;
  }
}

.business__text {
  max-width: 400px;
  margin: 30px auto 60px auto;
  font-size: 1.4rem;
  line-height: 2;
}

@media screen and (max-width: 992px) {
  .business__text {
    margin: 10px auto 30px auto;
    font-size: 1.3rem;
  }
}

/* news --------------------------------------*/
.news {
  margin: 120px 0;
  padding: 0 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 992px) {
  .news {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .news {
    margin: 80px 0;
    padding: 0 20px;
  }
}

.news__wrap {
  max-width: 200px;
  -ms-flex-preferred-size: 200px;
      flex-basis: 200px;
}

@media screen and (max-width: 992px) {
  .news__wrap {
    max-width: none;
  }
}

.news__title {
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: -0.05;
  font-size: 3.5rem;
  line-height: 1.6;
  color: black;
}

@media screen and (max-width: 768px) {
  .news__title {
    font-size: 3rem;
  }
}

.news-nav {
  margin: 60px 0;
}

@media screen and (max-width: 992px) {
  .news-nav {
    margin: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news-nav li {
  margin-bottom: 15px;
}

@media screen and (max-width: 992px) {
  .news-nav li {
    margin-bottom: 10px;
    margin-right: 10px;
  }
}

.news-nav li:last-child {
  margin-bottom: 0;
}

.news-nav li a {
  padding-left: 25px;
  display: block;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.4);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 250ms ease;
  transition: color 250ms ease;
}

.news-nav li a:hover {
  color: black;
}

@media screen and (max-width: 992px) {
  .news-nav li a {
    font-size: 1.2rem;
  }
}

.news-nav li a.current {
  color: black;
}

.news-nav li a.current:before {
  content: "";
  width: 15px;
  height: 6px;
  display: block;
  background-image: url(../../assets/images/common/icn_arrow_r.png);
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: calc(50% - 3px);
}

.news-more {
  margin-top: 60px;
}

@media screen and (max-width: 992px) {
  .news-more {
    margin: 0;
    position: absolute;
    top: 20px;
    right: 50px;
  }
}

@media screen and (max-width: 768px) {
  .news-more {
    top: 10px;
    right: 20px;
  }
}

.news-more a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-more a:before {
  content: "";
  width: 40px;
  height: 20px;
  margin-right: 10px;
  display: block;
  background-image: url(../../assets/images/common/icn_arrow_r.png);
  background-repeat: no-repeat;
  background-size: 15px auto;
  background-position: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.news-more a:hover:before {
  border-color: black;
}

.news-list {
  max-width: calc(100% - 400px);
  -ms-flex-preferred-size: calc(100% - 400px);
      flex-basis: calc(100% - 400px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1200px) {
  .news-list {
    max-width: calc(100% - 300px);
    -ms-flex-preferred-size: calc(100% - 300px);
        flex-basis: calc(100% - 300px);
  }
}

@media screen and (max-width: 992px) {
  .news-list {
    max-width: none;
  }
}

.news-list__item a {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-list__item a:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: background-color 250ms ease;
  transition: background-color 250ms ease;
}

.news-list__item a:hover:after {
  background-color: black;
}

@media screen and (max-width: 768px) {
  .news-list__item a {
    padding: 20px 0;
    display: block;
  }
}

.news-list .date {
  max-width: 100px;
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.5);
}

.news-list .title {
  max-width: calc(100% - 100px);
  -ms-flex-preferred-size: calc(100% - 100px);
      flex-basis: calc(100% - 100px);
  font-size: 1.8rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .news-list .title {
    margin: 5px 0;
    max-width: none;
    font-size: 1.6rem;
  }
}

.news-list .category li {
  margin-right: 10px;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.6;
}
