@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Noto+Sans+JP:wght@400;700&family=Poppins:wght@500;700&display=swap");
/*-------------------------
  theme colors
-------------------------*/
/* primary
-------------------------*/
/* secondary
-------------------------*/
/*-------------------------
  common color
-------------------------*/
/* テンプレートアイコン
====================================================*/
.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

@-webkit-keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes transY {
  0% {
    margin-top: -16px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes transY {
  0% {
    margin-top: -16px;
  }
  100% {
    margin-top: 0;
  }
}
@-webkit-keyframes ripple {
  0% {
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
  }
  50% {
    -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0);
  }
}
@keyframes ripple {
  0% {
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
  }
  50% {
    -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes rippleRev {
  0% {
    -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0);
  }
  50% {
    -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
  }
}
@keyframes rippleRev {
  0% {
    -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0);
  }
  50% {
    -webkit-box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 0px 12px rgba(0, 0, 0, 0.1);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
    box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0);
  }
}
.benefits-hero__content {
  margin: 3.2rem auto 4.9rem;
}
@media screen and (min-width: 768px) {
  .benefits-hero__content {
    text-align: center;
    margin: 5.6rem auto 8.4rem;
  }
}

.benefits-outline {
  padding: 3.2rem 0;
  background-color: #f8f8f8;
}
.benefits-outline__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .benefits-outline__list {
    grid-template-columns: repeat(3, 1fr);
    font-size: inherit;
  }
}
@media screen and (min-width: 1024px) {
  .benefits-outline__list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.benefits-section + .benefits-section {
  margin-top: 5.6rem;
}
.benefits-section:last-child {
  margin-bottom: 5.6rem;
}
@media screen and (min-width: 768px) {
  .benefits-section:last-child {
    margin-bottom: 12rem;
  }
}
.benefits-section__title {
  text-align: center;
  margin: 2.4rem auto 3.2rem;
}
@media screen and (min-width: 768px) {
  .benefits-section__title {
    margin: 5.6rem auto 8.4rem;
    font-size: 3.6rem;
  }
}
.benefits-section__title--en {
  display: block;
  font-size: 1rem;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .benefits-section__title--en {
    font-size: 1.6rem;
  }
}
.benefits-section--care .benefits-section__title--en {
  color: #fc7498;
}
.benefits-section--care .benefits-box__title--num {
  background-color: #fc7498;
}
.benefits-section--care .benefits-box__content {
  background-color: #fff5f8;
}
.benefits-section--care .benefits-box__photo--left {
  -webkit-box-shadow: #fc7498 -16px 16px 0;
  box-shadow: #fc7498 -16px 16px 0;
}
.benefits-section--care .benefits-box__photo--right {
  -webkit-box-shadow: #fc7498 16px 16px 0;
  box-shadow: #fc7498 16px 16px 0;
}
.benefits-section--refresh .benefits-section__title--en {
  color: #1daccc;
}
.benefits-section--refresh .benefits-box__title--num {
  background-color: #1daccc;
}
.benefits-section--refresh .benefits-box__content {
  background-color: #eaf6f8;
}
.benefits-section--refresh .benefits-box__photo--left {
  -webkit-box-shadow: #1daccc -16px 16px 0;
  box-shadow: #1daccc -16px 16px 0;
}
.benefits-section--refresh .benefits-box__photo--right {
  -webkit-box-shadow: #1daccc 16px 16px 0;
  box-shadow: #1daccc 16px 16px 0;
}
.benefits-section--life .benefits-section__title--en {
  color: #0076c9;
}
.benefits-section--life .benefits-box__title--num {
  background-color: #0076c9;
}
.benefits-section--life .benefits-box__content {
  background-color: #eaf6ff;
}
.benefits-section--life .benefits-box__photo--left {
  -webkit-box-shadow: #0076c9 -16px 16px 0;
  box-shadow: #0076c9 -16px 16px 0;
}
.benefits-section--life .benefits-box__photo--right {
  -webkit-box-shadow: #0076c9 16px 16px 0;
  box-shadow: #0076c9 16px 16px 0;
}
.benefits-section--work .benefits-section__title--en {
  color: #ff7d55;
}
.benefits-section--work .benefits-box__title--num {
  background-color: #ff7d55;
}
.benefits-section--work .benefits-box__content {
  background-color: #fceeea;
}
.benefits-section--work .benefits-box__photo--left {
  -webkit-box-shadow: #ff7d55 -16px 16px 0;
  box-shadow: #ff7d55 -16px 16px 0;
}
.benefits-section--work .benefits-box__photo--right {
  -webkit-box-shadow: #ff7d55 16px 16px 0;
  box-shadow: #ff7d55 16px 16px 0;
}
.benefits-section--training .benefits-section__title--en {
  color: #0ca7a1;
}
.benefits-section--training .benefits-box__title--num {
  background-color: #0ca7a1;
}
.benefits-section--training .benefits-box__content {
  background-color: #e9f7f7;
}
.benefits-section--training .benefits-box__photo--left {
  -webkit-box-shadow: #0ca7a1 -16px 16px 0;
  box-shadow: #0ca7a1 -16px 16px 0;
}
.benefits-section--training .benefits-box__photo--right {
  -webkit-box-shadow: #0ca7a1 16px 16px 0;
  box-shadow: #0ca7a1 16px 16px 0;
}
.benefits-section .grid {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .benefits-section .grid {
    margin-top: 4.8rem;
  }
}
.benefits-section .grid .col {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .benefits-section .grid .col {
    padding: calc(var(--grid-gutter) / 2);
  }
}

.benefits-box {
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .benefits-box {
    height: 100%;
    margin-bottom: 0;
  }
}
.benefits-box__photo {
  width: 182px;
  margin: 0 auto;
}
.benefits-box__content {
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .benefits-box__content {
    height: 100%;
    padding: 4rem;
  }
}
.benefits-box__title {
  margin-bottom: 2rem;
}
.benefits-box__title--num {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  margin-right: 0.8rem;
}

@media screen and (min-width: 768px) {
  .benefits-photo-box {
    position: relative;
  }
  .benefits-photo-box::after {
    content: "";
    display: block;
    clear: both;
  }
  .benefits-photo-box + .benefits-photo-box {
    margin-top: 7.2rem;
  }
  .benefits-photo-box .benefits-box__photo {
    width: 276px;
    height: 276px;
    -webkit-transform: translateY(-32px);
    transform: translateY(-32px);
  }
  .benefits-photo-box .benefits-box__photo--left {
    float: left;
    margin-left: 1.6rem;
  }
  .benefits-photo-box .benefits-box__photo--left + .benefits-box__content {
    position: absolute;
    right: 0;
  }
  .benefits-photo-box .benefits-box__photo--right {
    position: absolute;
    right: 16px;
    z-index: -1;
  }
  .benefits-photo-box .benefits-box__content {
    width: calc(100% - 260px);
    min-height: 276px;
  }
}

.benefits-news {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  display: table;
  padding: 0;
  width: 100%;
  margin: 3.2rem auto 4.9rem;
}
@media screen and (min-width: 768px) {
  .benefits-news {
    margin: 5.6rem auto 8.4rem;
  }
}

.benefits-news-item {
  padding: 0.6rem 0 0.5em;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .benefits-news-item {
    padding: 0;
  }
}
.benefits-news-item + .benefits-news-item {
  border-top: solid 1px #e3e3e3;
}
.benefits-news-item:last-child {
  margin-bottom: 0;
}
.benefits-news-item .news-anchor {
  position: relative;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0 0.5rem 0;
}
@media screen and (min-width: 1024px) {
  .benefits-news-item .news-anchor {
    padding: 1.25rem 0 1.25rem 1.25rem;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}
@media (hover: hover) {
  .benefits-news-item .news-anchor:hover {
    background-color: #f4f5f6;
    color: #212121;
  }
}
.benefits-news-item .date {
  min-width: 10rem;
  color: rgba(33, 33, 33, 0.3);
  font-family: "Poppins", "Montserrat", sans-serif;
  font-size: 1.2rem;
  padding: 1rem 0;
  white-space: nowrap;
  letter-spacing: 1px;
}
@media screen and (min-width: 1024px) {
  .benefits-news-item .date {
    font-size: 0.8125em;
    padding: 1rem 1.4rem;
  }
}
.benefits-news-item .category {
  padding: 0.5em;
}
@media screen and (min-width: 1024px) {
  .benefits-news-item .category {
    padding: 1rem;
  }
}
.benefits-news-item .category .category-label {
  background-color: #e6effa;
  border-radius: 2em;
  color: #212121;
  display: block;
  font-size: 1rem;
  padding: 0.5rem 1.2rem;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .benefits-news-item .category .category-label {
    min-width: 11em;
    font-size: 1.2rem;
  }
}
.benefits-news-item .category .category-label.care {
  background-color: #fff5f8;
}
.benefits-news-item .category .category-label.refresh {
  background-color: #eaf6f8;
}
.benefits-news-item .category .category-label.life {
  background-color: #eaf6ff;
}
.benefits-news-item .category .category-label.work {
  background-color: #fceeea;
}
.benefits-news-item .category .category-label.training {
  background-color: #e9f7f7;
}
.benefits-news-item .title {
  color: #212121;
  display: block;
  padding: 0.5rem 0.5rem 0.5rem 0.5rem;
  width: 100%;
  position: relative;
  font-size: 1.4rem;
}
@media screen and (min-width: 1024px) {
  .benefits-news-item .title {
    font-size: 1.5rem;
    padding: 1rem 1.25rem 1rem 0;
  }
}
/*# sourceMappingURL=../map/pages/benefits.css.map */