@charset "utf-8";
/* CSS Document */
.ir-section {
  margin: 50px 0 80px;
}
.ir-title {
  position: relative;
  color: #1853B5;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.ir-title::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #1853B5;
  display: block;
  top: calc(50% - 1px);
}
.ir-title span {
  background: #fff;
  position: relative;
  z-index: 1;
  padding: 0 .5em;
  font-weight: bold;
}
.adobe {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.category {
  margin-top: 100px;
}
.category__list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.category__item {
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  width: calc(50% - 20px);
  min-height: 240px;
  overflow: hidden;
  position: relative;
}
.category__item a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: flex;
}
.category__img {
  position: relative;
  width: 240px;
  min-height: 240px;
  position: relative;
  background-color: #bfbfc5;
  background-position: center center;
  background-size: cover;
}
.category__title {
  color: #1853B5;
  min-height: 120px;
  padding: 40px 32px 48px;
  flex: 1 0 0%;
  border-radius: 50%;
  position: relative;
}
.category__title .ja {
  display: block;
  font-weight: bold;
  font-size: 18px;
}
.category__title .en {
  display: block;
  font-size: 12px;
  margin-top: 12px;
}
.category__arrow {
  position: absolute;
  right: 24px;
  bottom: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1853B5;
}
.category__arrow:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background: #fff;
}
.category__arrow:after {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: 12px;
}
.contact {
  text-align: center;
  margin: 100px 0;
}
a.contact__btn {
  background: #EEAB00;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  height: 48px;
  padding: 0 16px;
  border-radius: 2em;
  min-width: 300px;
  font-weight: bold;
}
@media screen and (max-width:768px) {
  .ir-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .adobe {
    display: block;
  }
  .adobe__text {
    margin-top: 10px;
    font-size: 14px;
  }
  .category__item {
    width: 100%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
  .category__item a {
    flex-wrap: wrap;
    width: 100%;
    height: auto;
  }
  .category__img {
    width: 100%;
    min-height: 200px;
  }
  .category__title {
    min-height: 120px;
  }
}