@charset "utf-8";


/*  l-mv
--------------------------------------------------*/
.l-mv {
  /* max-width: 1440px; */
  position: relative;
  padding-block: 42px 38px;
  min-height: 100dvh;
}
.mv-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
}
.mv-container {
  /* max-width: 1248px; */
  position: relative;
  width: calc(100% - 96px);
  margin-inline: auto;
  margin-bottom: 40px;
  flex: 1;
}
.mv-container__catch {
  width: 100%;
  text-align: center;
}
.mv-container__catch__item {
  position: relative;
  width: min(calc(660 / 1248 * 100%),660px);
  margin-inline: auto;
  transform: translateX(calc(-70 / 660 * 100%));
  overflow: hidden;
}
.mv-container__catch__item__mask {
  position: absolute;
  top: 0;
  right: 0;
  width: 200%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.mv-container__catch__item__mask span {
  position: absolute;
  left: 0;
  width: 100%;
  transition: left 1s cubic-bezier(0.7, 0, 0.3, 1);
}
.mv-container__catch__item__mask span:nth-of-type(1) {
  top: 0;
  height: 43%;
  transition-delay: 0s;
}
.mv-container__catch__item__mask span:nth-of-type(2) {
  top: 43%;
  height: 30%;
  transition-delay: .3s;
}
.mv-container__catch__item__mask span:nth-of-type(3) {
  top: 73%;
  height: 28%;
  transition-delay: .6s;
}
.commonLoadingEnd .mv-container__catch__item__mask span {
  left: 101%;
}
.mv-container__catch__item__mask span::before ,
.mv-container__catch__item__mask span::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
}
.mv-container__catch__item__mask span::before {
  right: 0;
  background-color: var(--background-base);
}
.mv-container__catch__item__mask span::after {
  right: 50%;
  background-color: var(--brand-color);
}
/* .mv-container__catch img {
  filter: grayscale(1);
  clip-path: inset(0% 100% 0% 0%);
  will-change: clip-path,filter;
}
.commonLoadingEnd .mv-container__catch img {
  animation: mvContainerCatch 1.0s linear both;
}
@keyframes mvContainerCatch {
  0%{
    clip-path: inset(0% 100% 0% 0%);
    filter: grayscale(1);
  }
  50%{
    clip-path: inset(0% 0% 0% 0%);
    filter: grayscale(1);
  }
  100%{
    clip-path: inset(0% 0% 0% 0%);
    filter: grayscale(0);
  }
} */
.mv-container__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: clamp(0.6875rem, 0.5442rem + 0.2981vw, 0.8125rem);
  line-height: 1.75;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--base-color);
  margin-bottom: min(calc(10 / 1248 * 100%),10px);
}
.mv-container__copy span {
  border-bottom: solid 1px var(--brand-color);
}
.mv-container__scroll {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--base-color);
  padding-left: 14px;
  margin-bottom: min(calc(10 / 1248 * 100%),10px);
}
.mv-container__scroll::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: url(../common/img/icon_arrow_under_blue.svg) no-repeat center center/cover;
}
.mv-intro {
  grid-template-columns: repeat(3,1fr);
  gap: clamp(23px, -0.2099rem + 3.4277vw, 46px);
  width: calc(100% - 96px);
  margin-inline: auto;
  margin-top: auto;
}
.mv-intro__item {
  position: relative;
  font-size: clamp(20px, 0.5337rem + 1.4903vw, 30px);
  padding-block: clamp(22px, 0.2289rem + 2.3845vw, 38px) clamp(24px, 0.2107rem + 2.6826vw, 42px);
  border-bottom: solid 1px var(--border-base-dark);
}
.mv-intro__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: calc(14 / 418 * 100%);
  aspect-ratio: 14 / 10;
  border-top: solid 2px var(--brand-color);
  border-left: solid 2px var(--brand-color);
  box-sizing: border-box;
}
.mv-intro__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  width: calc(395 / 418 * 100%);
  height: 1px;
  background: var(--border-base-dark);
}
.mv-intro__item__detail {
  width: min(calc(254 / 416 * 100%),254px);
}
.mv-intro__item__detail__num {
  width: min(100%,37px);
}
.mv-intro__item__detail__txt {
  margin-top: auto;
}
.mv-intro__item__detail__txt__heading {
  font-size: clamp(22px, 0.6587rem + 1.4903vw, 32px);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
  margin-bottom: 9px;
}
.mv-intro__item__detail__txt__desc {
  font-size: clamp(10px, 0.4101rem + 0.4471vw, 13px);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.mv-intro__item__photo {
  /* width: calc(162 / 416 * 100%); */
  max-width: 260px;
  flex: 1;
}
@media screen and (max-width: 1100px){
  .mv-container {    
    gap: 30px;
    justify-content: space-between !important;
  }
  .mv-container__copy {
    position: relative;
    left: auto;
    bottom: auto;
    margin-bottom: 0;
  }
  .mv-container__scroll {
    position: relative;
    right: auto;
    bottom: auto;
    margin-bottom: 5px;
  }
}
@media screen and (max-width: 768px){
  .l-mv {
    padding-block: 105px 55px;
    min-height: auto;
  }
  .mv-container {
    width: calc(340 / 380 * 100%);
    display: flex !important;
    justify-content: space-between !important;
    align-items: flex-end !important;
    flex-wrap: wrap !important;
  }
  .mv-container__copy {
    font-size: 0.6875rem;
  }
  .mv-container__catch__item {
    width: 100%;
    transform: translateX(0);
  }
}




/*  l-promise
--------------------------------------------------*/
.l-promise {
  position: relative;
  padding-top: 100px;
}
.promise-contents {
  position: relative;
  gap: 50px 0;
}
.promise-article {
  position: relative;
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
  overflow: hidden;
}
.promise-article__link {
  width: 100%;
}
.promise-article__detail {
  width: calc(464 / 1344 * 100%);
  padding: calc(50 / 1344 * 100%) calc(50 / 1344 * 100%) calc(56 / 1344 * 100%);
}
.promise-article__detail__num {
  width: min(100%,49px);
  margin-bottom: calc(100 / 364 * 100%);
}
.promise-article__detail__txt {
  width: 100%;
  margin-top: auto;
}
.promise-article__detail__txt__heading {
  position: relative;
  font-size: clamp(30px, 0.1559rem + 3.5768vw, 54px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
  z-index: 1;
}
.promise-article__detail__txt__heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border: solid 20px var(--brand-color);
  box-sizing: border-box;
  z-index: -1;
}
[data-name="article1"] .promise-article__detail__txt__heading::before {
  width: calc(200 / 364 * 100%);
  aspect-ratio: 200 / 130;
  margin-top: calc(-15 / 364 * 100%);
  margin-left: calc(100 / 364 * 100%);
}
[data-name="article2"] .promise-article__detail__txt__heading::before {
  width: calc(150 / 364 * 100%);
  aspect-ratio: 150 / 150;
  margin-top: calc(-27 / 364 * 100%);
  margin-left: calc(185 / 364 * 100%);
}
[data-name="article3"] .promise-article__detail__txt__heading::before {
  width: calc(130 / 364 * 100%);
  aspect-ratio: 130 / 180;
  margin-top: calc(-57 / 364 * 100%);
  margin-left: calc(160 / 364 * 100%);
}
.promise-article__detail__txt__desc {
  /* font-size: clamp(21px, 1.0976rem + 0.4471vw, 24px); */
  font-size: clamp(19px, 0.901rem + 0.5961vw, 23px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
  margin-top: 22px;
}
.promise-article__detail__txt__explain {
  font-size: clamp(12px, 0.5351rem + 0.4471vw, 15px);
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.promise-article__detail__txt__more {
  margin-top: 38px;
}
.promise-article__photo {
  width: calc(880 / 1344 * 100%);
}
.promise-article__photo img {
  object-fit: cover;
  object-position: top right;
  width: 100%;
  height: 100%;
}
[data-name="article2"] .promise-article__photo img {
  object-position: top center;
}
@media (any-hover: hover){
  .promise-article__detail__txt__heading::before {
    transition: transform .3s linear;
  }
  .promise-article__link:hover .promise-article__detail__txt__heading::before {
    transform: scale(1.1);
  }
  .promise-article__detail__txt__more__arrow {
    transition: background-color .3s linear;
  }
  .promise-article__link:hover .promise-article__detail__txt__more__arrow {
    background-color: transparent;
  }
  .promise-article__detail__txt__more__arrow::after {
    filter: invert(0);
    transition: filter .3s linear;
  }
  .promise-article__link:hover .promise-article__detail__txt__more__arrow::after {
    filter: invert(1);
  }
}
@media screen and (max-width: 768px){
  .l-promise {
    padding-top: 0;
  }
  .promise-contents {
    gap: 55px 0;
  }
  .promise-article {
    border-radius: 0;
    background: transparent;
    overflow: visible;
    padding-top: 36px;
  }
  .promise-article::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: calc(14 / 340 * 100%);
    aspect-ratio: 14 / 10;
    border-top: solid 2px var(--brand-color);
    border-left: solid 2px var(--brand-color);
    box-sizing: border-box;
  }
  .promise-article::after {
    content: '';
    position: absolute;
    right: 0;
    top: 1px;
    width: calc(317 / 340 * 100%);
    height: 1px;
    background: var(--border-base-dark);
  }
  .promise-article__link {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .promise-article__detail {
    display: contents;
    width: 100%;
    padding: 0;
  }
  .promise-article__detail__num {
    width: min(100%,36px);
    margin-bottom: 0;
    order: 0;
  }
  .promise-article__detail__txt {
    display: contents;
  }
  .promise-article__detail__txt__heading {
    font-size: 30px;
    width: calc(100% - 44px);
    order: 1;
  }
  .promise-article__detail__txt__heading::before {
    border: solid 12px var(--brand-color);
  }
  [data-name="article1"] .promise-article__detail__txt__heading::before {
    width: min(calc(110 / 296 * 100%),110px);
    aspect-ratio: 110 / 70;
    margin-top: max(calc(-16 / 296 * 100%),-16px);
    margin-left: min(calc(99 / 296 * 100%),99px);
  }
  [data-name="article2"] .promise-article__detail__txt__heading::before {
    width: min(calc(80 / 296 * 100%),80px);
    aspect-ratio: 80 / 80;
    margin-top: max(calc(-22 / 296 * 100%),-22px);
    margin-left: min(calc(181 / 296 * 100%) ,181px) 
  }
  [data-name="article3"] .promise-article__detail__txt__heading::before {
    width: min(calc(70 / 296 * 100%),70px);
    aspect-ratio: 70 / 92;
    margin-top: max(calc(-28 / 296 * 100%),-28px);
    margin-left: min(calc(158 / 296 * 100%),158px);
  }
  .promise-article__detail__txt__box {
    width: 100%;
    order: 3;
  }
  .promise-article__detail__txt__desc {
    font-size: 21px;
    margin-top: 32px;
  }
  .promise-article__detail__txt__explain {
    font-size: 14px;
    margin-top: 6px;
  }
  .promise-article__detail__txt__more {
    margin-top: 32px;
  }
  .promise-article__photo {
    width: 100%;
    margin-top: 40px;
    order: 2;
  }
  .promise-article__photo img {
    object-fit: cover;
    object-position: top right;
    width: 100%;
    height: 100%;
  }
  [data-name="article2"] .promise-article__photo img {
    object-position: top center;
  }
}




/*  l-lifejourney
--------------------------------------------------*/
.l-lifejourney {
  position: relative;
  padding-block: 184px 160px;
}
.lifejourney-head {
  margin-bottom: 40px;
  padding-bottom: 50px;
  border-bottom: solid 1px var(--border-base);
}
.lifejourney-explain {
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-bottom: 80px;
}
.lifejourney-contents {
  position: relative;
  width: 100%;
}
.lifejourney-step {
  position: relative;
  width: 100%;
  z-index: 1;
}
.lifejourney-step__start {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(90 / 1344 * 100%);
  margin-top: calc(-16 / 1344 * 100%);
  margin-left: calc(120 / 1344 * 100%);
  opacity: 0;
  z-index: 1;
}
.lifejourney-step__item {
  position: relative;
  width: 100%;
  opacity: 0;
}
.lifejourney-step__item + .lifejourney-step__item {
  margin-top: calc(8 / 1344 * 100%);
}
.lifejourney-step__item__arrow {
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.lifejourney-step__item[data-num="step1"] .lifejourney-step__item__arrow {
  bottom: 0;
  right: 0;
  width: calc(32 / 1344 * 100%);
  margin-bottom: calc(-35 / 1344 * 100%);
  margin-right: calc(149 / 1344 * 100%);
  clip-path: inset(0% 0% 100% 0%);
}
.lifejourney-step__item[data-num="step2"] .lifejourney-step__item__arrow {
  bottom: 0;
  left: 0;
  width: calc(32 / 1344 * 100%);
  margin-bottom: calc(-35 / 1344 * 100%);
  margin-left: calc(149 / 1344 * 100%);
  clip-path: inset(0% 0% 100% 0%);
}
.lifejourney-step__item[data-num="step3"] .lifejourney-step__item__arrow {
  top: 0;
  right: 0;
  width: calc(80 / 1344 * 100%);
  margin-top: calc(158 / 1344 * 100%);
  margin-right: calc(294 / 1344 * 100%);
  clip-path: inset(0% 100% 0% 0%);
}
.lifejourney-step__item__detail {
  position: relative;
  z-index: -1;
}
.lifejourney-step__fin {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(330 / 1344 * 100%);
  opacity: 0;
  transform: scale(0.9);
  z-index: -1;
}
@media screen and (max-width: 768px){
  .l-lifejourney {
    padding-block: 100px 80px;
  }
  .lifejourney-head {
    margin-bottom: 24px;
    padding-bottom: 28px;
  }
  .lifejourney-explain {
    margin-bottom: 65px;
  }
  .lifejourney-step__start {
    width: calc(75 / 352 * 100%);
    margin-top: calc(-23 / 352 * 100%);
    margin-left: calc(49 / 352 * 100%);
  }
  .lifejourney-step__item + .lifejourney-step__item {
    margin-top: calc(4 / 352 * 100%);
  }
  .lifejourney-step__item[data-num="step1"] .lifejourney-step__item__arrow {
    width: calc(21 / 352 * 100%);
    margin-bottom: calc(-22 / 352 * 100%);
    margin-right: calc(255 / 352 * 100%);
  }
  .lifejourney-step__item[data-num="step2"] .lifejourney-step__item__arrow {
    width: calc(21 / 352 * 100%);
    margin-bottom: calc(-22 / 352 * 100%);
    margin-left: calc(76 / 352 * 100%);
  }
  .lifejourney-step__item[data-num="step3"] .lifejourney-step__item__arrow {
    width: calc(42 / 352 * 100%);
    margin-top: calc(248 / 352 * 100%);
    margin-right: calc(155 / 352 * 100%);
    transform: rotate(180deg);
  }
  .lifejourney-step__fin {
    right: auto;
    left: 0;
    width: calc(174 / 352 * 100%);
  }
}




/*  l-award
--------------------------------------------------*/
.l-award {
  padding-block: 80px;
  border-radius: 20px;
  background: var(--white);
}
.award-detail {
  width: calc(732 / 1344 * 100%);
}
.award-detail__head {       
  width: 100%;
  margin-bottom: clamp(20px, -0.1826rem + 2.9806vw, 40px);
  padding-bottom: clamp(20px, -0.1826rem + 2.9806vw, 40px);
  border-bottom: solid 1px var(--border-base);
}
.award-detail__head__heading {
  font-size: clamp(32px, 0.4242rem + 3.2787vw, 54px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--base-color);
}
.award-detail__head__desc {
  font-size: clamp(12px, 0.5351rem + 0.4471vw, 15px);
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-top: 7px;
}
.award-detail__box {
  width: 100%;
}
.award-detail__box__heading {
  font-size: clamp(12px, 0.5351rem + 0.4471vw, 15px);
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
  margin-bottom: 24px;
}
.award-detail__box__list {
  width: 100%;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
.award-detail__box__list__item {
  position: relative;
  width: 100%;
  gap: 20px;
}
.award-detail__box__list__item__photo {
  width: calc(100 / 354 * 100%);
}
.award-detail__box__list__item__box {
  flex: 1;
}
.award-detail__box__list__item__desc {
  font-size: 11px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: var(--brand-color);
  margin-bottom: 5px;
}
.award-detail__box__list__item__heading {
  font-size: clamp(19px, 0.8294rem + 0.7452vw, 24px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--base-color);
}
.award-detail__box__list__item__heading span {
  display: block;
  font-size: clamp(12px, 0.5351rem + 0.4471vw, 15px);
  line-height: 150%;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.award-photo {
  width: calc(532 / 1344 * 100%);
}
@media screen and (max-width: 768px){
  .l-award {
    padding-block: 80px;
  }
  .award-detail {
    width: 100%;
    display: contents;
  }
  .award-detail__head {       
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 0;
    border-bottom: none;
    order: 0;
  }
  .award-detail__head__heading {
    font-size: 32px;
  }
  .award-detail__head__desc {
    font-size: 15px;
  }
  .award-detail__box {
    width: 100%;
    order: 2;
  }
  .award-detail__box__heading {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .award-detail__box__list {
    gap: 20px 5px;
  }
  .award-detail__box__list__item {
    gap: 6px;
  }
  .award-detail__box__list__item__photo {
    width: calc(52 / 178 * 100%);
  }
  .award-detail__box__list__item__desc {
    font-size: 8px;
    margin-bottom: 2px;
  }
  .award-detail__box__list__item__heading {
    font-size: 18px;
  }
  .award-detail__box__list__item__heading span {
    font-size: 9px;
    margin-bottom: 0;
  }
  .award-photo {
    width: 100%;
    margin-bottom: 30px;
    order: 1;
  }
}




/*  l-recommend
--------------------------------------------------*/
.l-recommend {
  position: relative;
  padding-block: 184px 120px;
}
.recommend-head {
  margin-bottom: 80px;
  padding-bottom: 50px;
  border-bottom: solid 1px var(--border-base);
}
.recommend-list {
  width: 100%;
  grid-template-columns: repeat(3,1fr);
  gap: 24px 20px;
}
.recommend-list__item {
  position: relative;
}
.recommend-list__item__link {
  width: 100%;
  height: 100%;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-radius: 12px;
  overflow: hidden;
}
.recommend-list__item__link__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
}
.recommend-list__item__link__photo img {
  object-position: center center;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.recommend-list__item__link__detail {
  width: 100%;
  padding-inline: 40px;
  padding-block: 42px 38px;
  flex: 1;
}
.recommend-list__item__link__detail__ttl {
  width: 100%;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
}
.recommend-list__item__link__detail__desc {
  width: 100%;
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-top: 12px;
  margin-bottom: 16px;
}
.recommend-list__item__link__detail__btn {
  position: relative;
  width: 24px;
  height: 24px;
  margin-inline: auto 0;
  aspect-ratio: 1 / 1;
  background-color: #EFEFEF;
  border: solid 1px #EFEFEF;
  border-radius: 3px;
  margin-top: auto;
}
.recommend-list__item__link__detail__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%,-50%) rotate(-90deg);
  background: url(../common/img/icon_arrow_under_blue.svg) no-repeat center center/cover;
  z-index: 1;
}
.recommend-more {
  margin-top: 50px;
}
@media (any-hover: hover){
  .recommend-list__item__link {
    transition: transform .3s linear;
  }
  .recommend-list__item__link:hover {
    transform: scale(0.97);
  }
  .recommend-list__item__link__detail__btn::after {
    filter: sepia(0);
    transition: filter .3s linear;
  }
  .recommend-list__item__link:hover .recommend-list__item__link__detail__btn::after {
    filter: sepia(1);
  }
}
@media screen and (max-width: 1100px){
  .recommend-list {
    grid-template-columns: repeat(2,1fr);
  }
}
@media screen and (max-width: 768px){
  .l-recommend {
    padding-block: 100px 80px;
  }
  .recommend-head {
    margin-bottom: 48px;
    padding-bottom: 28px;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .recommend-list {
    grid-template-columns: repeat(1,1fr);
  }
  .recommend-list__item__link {
    height: auto;
  }
  .recommend-list__item__link__detail {
    padding-inline: 24px;
    padding-block: 28px 24px;
    flex: none;
  }
  .recommend-list__item__link__detail__ttl {
    font-size: 20px;
  }
  .recommend-list__item__link__detail__desc {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .recommend-list__item__link__detail__btn {
    width: 20px;
    height: 20px;
  }
  .recommend-more {
    margin-top: 40px;
  }
}




/*  l-works
--------------------------------------------------*/
.l-works {
  position: relative;
  padding-block: 120px 120px;
  border-radius: 20px;
  background: var(--white);
}
.works-inner {
  grid-template-columns: minmax(0, 370fr) minmax(0, 860fr);
  grid-template-rows: auto 1fr;
  gap: 55px 120px;
}
.works-head {
  grid-column: 1;
  grid-row: 1; 
  align-self: start;
}
.works-gallery {
  grid-column: 2;
  grid-row: 1 / span 2; 
}
.works-gallery__list {
  width: 100%;
  gap: 20px 0;
}
.works-gallery__list__item {
  position: relative;
  width: 100%;
  z-index: 1;
}
.works-gallery__list__item__link {
  position: relative;
  width: 100%;
  gap: 0 clamp(16px, -0.7191rem + 3.5768vw, 40px);
}
.works-gallery__list__item__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, rgba(var(--brand-color-rgb), 0.1) 0%, rgba(var(--brand-color-rgb), 0) 100%);
}
.works-gallery__list__item__photo {
  width: 160px;
  border-radius: 6px;
  overflow: hidden;
}
.works-gallery__list__item__photo img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.works-gallery__list__item__detail {
  position: relative;
  flex: 1;
  gap: 12px 0;
}
.works-gallery__list__item__detail__heading {
  font-size: clamp(18px, 0.4087rem + 1.4903vw, 28px);
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
}
.works-gallery__list__item__detail__desc {
  font-size: clamp(10px, -0.0913rem + 1.4903vw, 12px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--base-color);
  gap: 4px;
}
.works-gallery__list__item__detail__desc span {
  padding: 6px 8px 7px;
  background: #EFEFEF;
  border-radius: 4px;
}
.works-gallery__list__item__detail__gooddesign {
  position: absolute;
  right: calc(40 / 560 * 100%);
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(180 / 560 * 100%),180px);
}
.works-gallery__list__item__detail__icon {
  position: absolute;
  right: calc(40 / 560 * 100%);
  top: 50%;
  transform: translateY(-50%);
  width: min(calc(218 / 560 * 100%),218px);
}
.works-gallery__list__item__side {
  width: 56px;
  border-left: solid 1px var(--border-base);
}
.works-gallery__list__item__side__btn {
  position: relative;
  width: 24px;
  height: 24px;
  margin-inline: auto 0;
  aspect-ratio: 1 / 1;
  background-color: #EFEFEF;
  border: solid 1px #EFEFEF;
  border-radius: 3px;
}
.works-gallery__list__item__side__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%,-50%) rotate(-90deg);
  background: url(../common/img/icon_arrow_under_blue.svg) no-repeat center center/cover;
  z-index: 1;
}
.works-more {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
@media (any-hover: hover){
  a.works-gallery__list__item__link::before {
    transition: width .3s linear;
  }
  a.works-gallery__list__item__link:hover::before {
    width: 100%;
  }
  .works-gallery__list__item__side__btn::after {
    filter: sepia(0);
    transition: filter .3s linear;
  }
  a.works-gallery__list__item__link:hover .works-gallery__list__item__side__btn::after {
    filter: sepia(1);
  }
}
@media screen and (max-width: 1100px){
  .works-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-content: normal;
    align-content: normal; 
    gap: 0;
  }
  .works-head {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: solid 1px var(--border-base);
  }
  .works-gallery {
    grid-column: auto;
    grid-row: auto;
  }
  .works-more {
    grid-column: auto;
    grid-row: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px){
  .l-works {
    padding-block: 80px 80px;
  }
  .works-gallery__list {
    gap: 6px 0;
  }
  .works-gallery__list__item__link {
    gap: 0 16px;
  }
  .works-gallery__list__item__photo {
    width: 88px;
  }
  .works-gallery__list__item__detail {
    gap: 6px 0;
  }
  .works-gallery__list__item__detail__heading {
    font-size: 18px;
  }
  .works-gallery__list__item__detail__desc {
    font-size: 9px;
  }
  .works-gallery__list__item__detail__desc span {
    padding: 4px 5px 5px;
  }
  .works-gallery__list__item__detail__gooddesign {
    position: relative;
    right: auto;
    top: auto;
    transform: translateY(0);
    width: min(100%,157px);
    margin-inline: 0 auto;
    margin-top: 2px;
  }
  .works-gallery__list__item__detail__icon {
    position: relative;
    right: auto;
    top: auto;
    transform: translateY(0);
    width: min(100%,148px);
    margin-inline: 0 auto;
    margin-top: 2px;
  }
  .works-gallery__list__item__side {
    width: 40px;
  }
  .works-gallery__list__item__side__btn {
    width: 20px;
    height: 20px;
  }
}




/*  l-report
--------------------------------------------------*/
.l-report {
  position: relative;
  padding-block: 180px 190px;
}
.report-container {
  width: calc(1392 / 1440 * 100%);
  margin-inline: 0 auto;
}
.report-photo {
  width: calc(664 / 1392 * 100%);
  aspect-ratio: 664 / 967;
  border-radius: 0 12px 12px 0;
  overflow: hidden;
}
.report-photo img {
  object-fit: cover;
  object-position: center center;
  width: 100%;
  height: 100%;
}
.report-contents {
  width: calc(648 / 1392 * 100%);
}
.report-head {
  margin-bottom: 40px;
  padding-bottom: 50px;
  border-bottom: solid 1px var(--border-base);
}
.report-explain {
  font-size: 15px;
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-bottom: 60px;
}
.report-list {
  width: 100%;
  gap: 6px 0;
}
.report-list__item {
  width: 100%;
}
.report-list__item__link {
  position: relative;
  padding: calc(40 / 648 * 100%);
  border-radius: 12px;
  background: linear-gradient(148deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
  gap: 0 40px;
  z-index: 1;
}
.report-list__item__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, rgba(var(--brand-color-rgb), 0.1) 0%, rgba(var(--brand-color-rgb), 0.05) 100%);
  z-index: -1;
}
.report-list__item__detail {
  flex: 1;
}
.report-list__item__heading {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
  margin-bottom: 6px;
}
.report-list__item__desc {
  font-size: 13px;
  line-height: 1.75;
  text-align: justify;
  letter-spacing: 0.02em;
}
.report-list__item__info {
  margin-top: 20px;
  gap: 10px 20px;
}
.report-list__item__info__cat {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--base-color);
  padding: 6px 8px 7px;
  background: #EFEFEF;
  border-radius: 4px;
}
.report-list__item__info__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(var(--base-color-rgb), 0.3);
}
.report-list__item__side {
  width: 56px;
  border-left: solid 1px var(--border-base);
}
.report-list__item__side__btn {
  position: relative;
  width: 24px;
  height: 24px;
  margin-inline: auto 0;
  aspect-ratio: 1 / 1;
  background: #EFEFEF;
  border-radius: 3px;
}
.report-list__item__side__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%,-50%) rotate(-90deg);
  background: url(../common/img/icon_arrow_under_blue.svg) no-repeat center center/cover;
  z-index: 1;
}
.report-more {
  margin-top: 48px;
}
@media (any-hover: hover){
  .report-list__item__link::before {
    transition: width .2s linear;
  }
  .report-list__item__link:hover::before {
    width: 100%;
  }
  .report-list__item__side__btn::after {
    filter: sepia(0);
    transition: filter .3s linear;
  }
  .report-list__item__link:hover .report-list__item__side__btn::after {
    filter: sepia(1);
  }
}
@media screen and (max-width: 768px){
  .l-report {
    padding-block: 100px 100px;
  }
  .report-container {
    width: 100%;
    margin-inline: auto;
  }
  .report-photo {
    width: 100%;
    aspect-ratio: 400 / 267;
    border-radius: 0;
    margin-bottom: 80px;
  }
  .report-contents {
    width: min(calc(340 / 380 * 100%),560px);
    margin-inline: auto;
  }
  .report-head {
    margin-bottom: 24px;
    padding-bottom: 28px;
  }
  .report-explain {
    margin-bottom: 45px;
  }
  .report-list__item__link {
    padding: 24px;
    gap: 0 20px;
  }
  .report-list__item__heading {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .report-list__item__info {
    margin-top: 12px;
    gap: 8px 12px;
  }
  .report-list__item__info__cat {
    font-size: 10px;
    padding: 5px 6px 6px;
  }
  .report-list__item__info__date {
    font-size: 10px;
  }
  .report-list__item__side {
    width: 40px;
  }
  .report-list__item__side__btn {
    width: 20px;
    height: 20px;
  }
  .report-more {
    margin-top: 40px;
  }
}




/*  l-bnr
--------------------------------------------------*/
.l-bnr {
  position: relative;
}
.bnr-slide {
  width: 100%;
}
.bnr-slide__item {
  position: relative;
  height: auto;
}
.bnr-slide__item__link {
  display: block;
  height: 100%;
  padding-bottom: 40px;
  border-bottom: solid 1px var(--border-base);
}
.bnr-slide__item__photo {
  position: relative;
  width: 100%;
}
.bnr-slide__item__desc {
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
  margin-top: 20px;
}
.bnr-slide__item__desc span {
  display: inline-block;
}
.bnr-slide__control {
  width: calc(1392 / 1440 * 100%);
  margin-inline: auto;
  margin-top: 20px;
  gap: 4px;
}
:root .bnr-slide .swiper-button-prev,
:root .bnr-slide .swiper-button-next {
  transition: none;
  cursor: pointer;
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  margin: 0;
  transform: none;
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 3px;
  background: var(--brand-color);
}
:root .bnr-slide .swiper-button-prev:after,
:root .bnr-slide .swiper-button-next:after {
  position: absolute;
  content: '';
  right: 0;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  margin: 0 auto;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  transform-origin: center center;
}
:root .bnr-slide .swiper-button-prev:after {
  transform: translate(10%,-50%) rotate(-135deg);
}
:root .bnr-slide .swiper-button-next:after {
  transform: translate(-10%,-50%) rotate(45deg);
}
@media screen and (max-width: 768px){
  .bnr-slide__item__link {
    padding-bottom: 24px;
  }
  .bnr-slide__item__desc {
    font-size: 12px;
    margin-top: 12px;
  }
  .bnr-slide__control {
    width: calc(340 / 380 * 100%);
  }
}




/*  l-news
--------------------------------------------------*/
.l-news {
  position: relative;
  padding-block: 100px 170px;
}
.news-inner {
  grid-template-columns: minmax(0, 280fr) minmax(0, 945fr);
  grid-template-rows: auto 1fr;
  gap: 55px 120px;
}
.news-head {
  grid-column: 1;
  grid-row: 1; 
  align-self: start;
}
.news-article {
  grid-column: 2;
  grid-row: 1 / span 2; 
}
.news-article__list {
  width: 100%;
  gap: 20px 0;
}
.news-article__list__item {
  width: 100%;
}
.news-article__list__item__link {
  position: relative;
  padding-left: 32px;
  border-left: solid 1px var(--border-base);
  gap: 0 40px;
  z-index: 1;
}
.news-article__list__item__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(to right, rgba(var(--brand-color-rgb), 0.1) 0%, rgba(var(--brand-color-rgb), 0) 100%);
  z-index: -1;
}
.news-article__list__item__detail {
  flex: 1;
  padding-block: 20px;
}
.news-article__list__item__heading {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--base-color);
  margin-bottom: 8px;
}
.news-article__list__item__desc {
  font-size: 13px;
  line-height: 1.75;
  text-align: justify;
  letter-spacing: 0.02em;
}
.news-article__list__item__info {
  gap: 10px 20px;
}
.news-article__list__item__info__cat {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--base-color);
  padding: 6px 8px 7px;
  background: var(--white);
  border-radius: 4px;
}
.news-article__list__item__info__date {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(var(--base-color-rgb), 0.3);
}
.news-article__list__item__side {
  width: 56px;
  border-left: solid 1px var(--border-base);
}
.news-article__list__item__side__btn {
  position: relative;
  width: 24px;
  height: 24px;
  margin-inline: auto 0;
  aspect-ratio: 1 / 1;
  background: var(--white);
  border-radius: 3px;
}
.news-article__list__item__side__btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  aspect-ratio: 1 / 1;
  transform: translate(-50%,-50%) rotate(-90deg);
  background: url(../common/img/icon_arrow_under_blue.svg) no-repeat center center/cover;
  z-index: 1;
}
.news-more {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
@media (any-hover: hover){
  .news-article__list__item__link[data-status="link"]::before {
    transition: width .2s linear;
  }
  .news-article__list__item__link[data-status="link"]:hover::before {
    width: 100%;
  }
  .news-article__list__item__side__btn::after {
    filter: sepia(0);
    transition: filter .3s linear;
  }
  .news-article__list__item__link:hover .news-article__list__item__side__btn::after {
    filter: sepia(1);
  }
}
@media screen and (max-width: 1100px){
  .news-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-content: normal;
    align-content: normal; 
    gap: 0;
  }
  .news-head {
    grid-column: auto;
    grid-row: auto;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: solid 1px var(--border-base);
  }
  .news-article {
    grid-column: auto;
    grid-row: auto;
  }
  .news-article__list__item__link {
    padding-left: 0;
    border-left: none;
  }
  .news-more {
    grid-column: auto;
    grid-row: auto;
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px){
  .l-news {
    padding-block: 60px 100px;
  }
  .news-head {
    margin-bottom: 48px;
    padding-bottom: 28px;
  }
  .news-article__list {
    gap: 6px 0;
  }
  .news-article__list__item__link {
    gap: 0 20px;
  }
  .news-article__list__item__detail {
    padding-block: 15px;
  }
  .news-article__list__item__heading {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .news-article__list__item__info {
    gap: 8px 12px;
  }
  .news-article__list__item__info__cat {
    font-size: 10px;
    padding: 5px 6px 6px;
  }
  .news-article__list__item__info__date {
    font-size: 10px;
  }
  .news-article__list__item__side {
    width: 40px;
  }
  .news-article__list__item__side__btn {
    width: 20px;
    height: 20px;
  }
  .news-more {
    margin-top: 40px;
  }
}




/*  l-concept
--------------------------------------------------*/
.l-concept {
  position: relative;
  /* padding-block: 0 180px; */
}
.concept-container {
  width: calc(1392 / 1440 * 100%);
  margin-inline: 0 auto;
}
.concept-photo {
  width: calc(664 / 1392 * 100%);
  aspect-ratio: 664 / 792;
  border-radius: 0 12px 12px 0;
  overflow: hidden;
}
.concept-photo img {
  object-fit: cover;
  object-position: 80% center;
  width: 100%;
  height: 100%;
}
.concept-contents {
  width: calc(648 / 1392 * 100%);
}
.concept-head {
  margin-bottom: 80px;
  padding-bottom: 55px;
  border-bottom: solid 1px var(--border-base);
  z-index: 1;
}
.concept-head::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 55px;
  width: calc(340 / 648 * 100%);
  aspect-ratio: 340 / 222;
  border: solid 32px var(--brand-color);
  box-sizing: border-box;
  z-index: -1;
}
.concept-detail {
  width: 100%;
}
.concept-detail__heading {
  font-size: clamp(32px, 0.9972rem + 2.0864vw, 46px);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--base-color);
  margin-bottom: 55px;
}
.concept-detail__desc {
  font-size: clamp(15px, 0.7942rem + 0.2981vw, 17px);
  line-height: 1.75;
  text-align: justify;
  letter-spacing: 0.02em;
  gap: 40px 0;
}
.concept-detail__desc__item {
  width: 100%;
}
@media screen and (max-width: 768px){
  /* .l-concept {
    padding-block: 0 100px;
  } */
  .concept-container {
    width: 100%;
    margin-inline: auto;
  }
  .concept-photo {
    width: 100%;
    aspect-ratio: 400 / 267;
    border-radius: 0;
    margin-bottom: 80px;
  }
  .concept-contents {
    width: min(calc(340 / 380 * 100%),560px);
    margin-inline: auto;
  }
  .concept-head {
    margin-bottom: 48px;
    padding-bottom: 28px;
  }
  .concept-head::after {
    left: 190px;
    right: auto;
    bottom: 80px;
    width: min(calc(154 / 400 * 100%),154px);
    aspect-ratio: 154 / 110;
    border: solid 18px var(--brand-color);
  }
  .concept-detail {
    width: 100%;
  }
  .concept-detail__heading {
    font-size: clamp(26px, 0.2917rem + 6.6667vw, 30px);
    margin-bottom: 40px;
  }
  .concept-detail__desc {
    font-size: clamp(12px, -0.25rem + 5vw, 15px);
    letter-spacing: 0;
    gap: 24px 0;
  }
}